/* Add custom Js styles below */ (function () { window.addEventListener("load", function () { // تأخير بسيط لضمان تحميل سلة (SPA) setTimeout(function () { // منع التكرار if (document.getElementById("fenybco-wholesale")) return; // الصفحة الرئيسية فقط const isHome = document.body.classList.contains("index") || document.body.classList.contains("home") || document.body.classList.contains("template-index"); if (!isHome) return; // السكشن اللي عايزين القسم يظهر فوقه const targetSection = document.getElementById("best-offers-10-slider"); if (!targetSection || !targetSection.parentElement) return; const html = `
`; // الإضافة فوق سكشن العروض targetSection.insertAdjacentHTML("beforebegin", html); }, 1200); }); })();