Your cart is currently empty.
let seconds = 10; // Set the countdown duration in seconds const countdownElement = document.getElementById('countdown'); const countdown = setInterval(() => { seconds--; countdownElement.textContent = seconds; if (seconds <= 0) { clearInterval(countdown); window.location.href = "https://www.dammos.com/shop-dammos/"; // Replace with your target URL } }, 1000);