/* Add custom Js styles below */ document.addEventListener("DOMContentLoaded", function () { // 👇 الصورة var popupImage = "https://i.ibb.co/V0518DBy/popup.webp"; // 👇 شرط الصفحة الرئيسية فقط var isHomePage = (window.location.pathname === "/" || window.location.pathname === "/home"); if (!isHomePage) return; // إنشاء البوب أب var popupHTML = `
× تصفح العروض
`; document.body.insertAdjacentHTML("beforeend", popupHTML); // يختفي بعد 5 ثواني setTimeout(function () { var popup = document.getElementById("custom-popup"); if (popup) popup.style.display = "none"; }, 5000); // إغلاق يدوي document.addEventListener("click", function (e) { if (e.target.id === "close-popup" || e.target.id === "custom-popup") { document.getElementById("custom-popup").style.display = "none"; } }); });