document.addEventListener('click', function(event) {
if (event.target.matches('[data-action="add-to-cart"]')) {
setTimeout(function() {
window.location.href = '/checkout'; // Redirect to the checkout page
}, 500); // Small delay to ensure the item is added to the cart
}
});