(function() {
/* =========================================
1. شاشة التحميل (تظهر مع كل ريفريش)
========================================= */
if (!document.getElementById("vip-sleephome-preloader")) {
let preloader = document.createElement("div");
preloader.id = "vip-sleephome-preloader";
preloader.innerHTML = `
متجر سليب هوم يرحب بكم ...
👑
تم التصميم بواسطة المهندس : إسلام الشيخ
👑
`;
document.documentElement.appendChild(preloader);
setTimeout(function() {
preloader.style.opacity = "0";
preloader.style.visibility = "hidden";
setTimeout(function() {
if (preloader.parentNode) preloader.parentNode.removeChild(preloader);
}, 800);
}, 3000); // 3 ثواني
}
window.addEventListener('load', function() {
/* =========================================
2. إخفاء أيقونة واتساب سلة المزعجة تماماً
========================================= */
let hideStyle = document.createElement('style');
hideStyle.innerHTML = `salla-whatsapp-button, .salla-whatsapp-btn, .whatsapp-button, #whatsapp-btn { display: none !important; }`;
document.head.appendChild(hideStyle);
/* =========================================
3. البار السفلي (مدمج فيه الواتس والاتصال)
========================================= */
if (!document.getElementById("sleephome-bottom-nav")) {
let bottomNav = document.createElement("div");
bottomNav.id = "sleephome-bottom-nav";
bottomNav.innerHTML = `
الرئيسية
واتساب
اتصال
من نحن
`;
document.body.appendChild(bottomNav);
}
/* =========================================
4. إجبار سلة (بالعافية) على ترتيب السوشيال والدفع وتغيير الحقوق
========================================= */
setInterval(function() {
// إجبار السوشيال ميديا (جنب بعض)
document.querySelectorAll('.footer-social ul, .social-icons, ul.social-icons').forEach(ul => {
ul.style.setProperty('display', 'flex', 'important');
ul.style.setProperty('flex-direction', 'row', 'important');
ul.style.setProperty('justify-content', 'center', 'important');
ul.style.setProperty('gap', '15px', 'important');
Array.from(ul.children).forEach(li => li.style.setProperty('display', 'inline-block', 'important'));
});
// إجبار الدفع (جنب بعض)
document.querySelectorAll('.footer-payments, .payment-methods, ul.payment-methods').forEach(ul => {
ul.style.setProperty('display', 'flex', 'important');
ul.style.setProperty('flex-direction', 'row', 'important');
ul.style.setProperty('justify-content', 'center', 'important');
ul.style.setProperty('flex-wrap', 'wrap', 'important');
ul.style.setProperty('gap', '10px', 'important');
Array.from(ul.children).forEach(li => li.style.setProperty('display', 'inline-block', 'important'));
});
// إجبار تغيير الحقوق
document.querySelectorAll('.footer-copyright, .copyright, .footer-copyright p, .copyright p').forEach(el => {
if (el.innerText.includes("الحقوق") && !el.innerText.includes("جميع الحقوق محفوظة لدى | سليب هوم 2026")) {
el.innerHTML = "جميع الحقوق محفوظة لدى | سليب هوم 2026";
}
});
}, 1000); // بيضرب كل ثانية عشان قالب سلة ميرجعهمش
/* =========================================
5. التوقيع تحت الفوتر
========================================= */
let footerSection = document.querySelector('footer, .salla-footer');
if (footerSection && !document.getElementById("engineer-footer-sig")) {
let sigDiv = document.createElement("div");
sigDiv.id = "engineer-footer-sig";
sigDiv.innerHTML = `
`;
footerSection.appendChild(sigDiv);
}
});
})();