Акция PyroWB

Повышение цен начинается 16 декабря
Успейте купить салюты выгодно!

--:--:--:--

Акция PyroWB

Повышение цен начинается 16 декабря
Успейте купить салюты выгодно!

--:--:--:--

Дневные салюты разноцветный салют

Сұрыптау:
Сүзгі

Тауар таусылды

Тауар таусылды

(function() { const mobile = document.getElementById('mobilePromoPopup'); const desktop = document.getElementById('desktopPromoPopup'); const deadline = new Date("2025-12-16T00:00:00"); // Не показывать на важных страницах const hiddenPages = ['/cart', '/order', '/checkout']; if (hiddenPages.includes(window.location.pathname)) return; // Авто-отключение после дедлайна if (new Date() > deadline) return; // Не показывать повторно if (sessionStorage.getItem('promoClosed')) { mobile.style.display = 'none'; desktop.style.display = 'none'; return; } function updateTimer() { const now = new Date(); const diff = deadline - now; if (diff <= 0) return; const d = Math.floor(diff / (1000 * 60 * 60 * 24)); const h = Math.floor((diff / (1000 * 60 * 60)) % 24); const m = Math.floor((diff / (1000 * 60)) % 60); const s = Math.floor((diff / 1000) % 60); const text = `${d}д : ${h}ч : ${m}м : ${s}с`; document.getElementById('promoTimerMobile').innerText = text; document.getElementById('promoTimerDesktop').innerText = text; } setInterval(updateTimer, 1000); updateTimer(); // Показываем через задержку 4 сек setTimeout(() => { mobile.style.display = 'block'; desktop.style.display = 'block'; }, 4000); // Закрытие по клику вне window.addEventListener('click', (e) => { if (!e.target.closest('.promoPopup')) { mobile.style.display = 'none'; desktop.style.display = 'none'; sessionStorage.setItem('promoClosed', '1'); } }); })();