/* Add custom JS code below */ function handleMobileBg() { const bgImageProduct = document.querySelector(".s-block--slider-with-bg .slider-bg"); if (!bgImageProduct) return; const mobileBgUrl = "https://cdn.files.salla.network/other/1185714805/ef582e00-31fd-4eda-86ae-6218ac0e66b3-original.webp"; if (!bgImageProduct.dataset.originalBg) { bgImageProduct.dataset.originalBg = bgImageProduct.style.backgroundImage; } if (window.innerWidth < 768) { bgImageProduct.style.backgroundImage = `url("${mobileBgUrl}")`; } else { bgImageProduct.style.backgroundImage = bgImageProduct.dataset.originalBg; } } function changeSallaName() { const companyName = "Tiseen"; const companyUrl = "https://tiseen.com/"; const copyright = document.querySelector("footer .copyright-text"); if (copyright) { copyright.outerHTML = `

صنع بإتقان على | 2026 ${companyName}

`; } } if (document.readyState === "loading") { document.addEventListener("DOMContentLoaded", handleMobileBg); } else { handleMobileBg(); changeSallaName(); } window.addEventListener("resize", handleMobileBg);