/* Add custom Js styles below */ let esm = "ورقة"; let link = "https://warrqa.com"; document.addEventListener("DOMContentLoaded", function () { document.querySelector(".copyright-text p").innerHTML = ` صنع بإتقان على ${esm} | 2025 `; }); document.addEventListener("DOMContentLoaded", function () { const url = window.location.href; // تأكد إننا في صفحة التصنيف دي تحديدًا if (url.includes("c1646683750")) { const checkHeader = setInterval(() => { const header = document.querySelector("header.store-header"); if (header) { clearInterval(checkHeader); // إنشاء الرابط اللي هيلف الصورة const link = document.createElement("a"); link.href = "https://artstoryksa.com/"; link.target = "_blank"; link.style.display = "block"; link.style.margin = "20px auto"; link.style.textAlign = "center"; // الصورة نفسها const img = document.createElement("img"); img.src = "https://cdn.salla.sa/form-builder/Uh6J4HCI2gKVW3jVqlTofdSOs6f0qulqI68SDXmF.webp"; img.style.width = window.innerWidth <= 767 ? "20rem" : "80rem"; img.style.height = window.innerWidth <= 767 ? "10rem" : "100%"; img.style.objectFit = "contain"; img.style.maxWidth = "100%"; link.appendChild(img); header.insertAdjacentElement("afterend", link); } }, 300); } });