document.addEventListener("DOMContentLoaded", function() {
const checkFooter = setInterval(() => {
const footer = document.querySelector("footer.store-footer");
if (footer && footer.querySelector(".store-footer__inner")) {
clearInterval(checkFooter);
// إنشاء العنصر الجديد
const newText = document.createElement("div");
newText.style.cssText = `
text-align: center;
font-size: 14px;
color: #ffffff;
margin-top: 10px;
opacity: 0.9;
line-height: 1.6;
`;
// إدخال النص مع الرابط
newText.innerHTML = `
المتجر تحت إدارة
شركة رؤيا الغد
`;
// إدخاله أسفل الفوتر
footer.appendChild(newText);
}
}, 500);
});
document.addEventListener("DOMContentLoaded", function () {
const footer = document.querySelector("footer") || document.querySelector(".footer") || document.querySelector(".app-inner");
if (footer && !document.querySelector(".nadee-footer-info")) {
const infoDiv = document.createElement("div");
infoDiv.className = "nadee-footer-info";
infoDiv.innerHTML = `
معلومات إضافية
العنوان الوطني: 8108 - شارع عبد الله العريف - حي الرصيفة - مكة المكرمة
رقم التسجيل الضريبي: 311219737400003
رقم السجل التجاري: 4031082080
`;
const footerContainer = footer.querySelector(".container, .grid, .footer-columns");
if (footerContainer) {
footerContainer.appendChild(infoDiv);
const style = document.createElement("style");
style.textContent = `
@media (min-width: 992px) {
.nadee-footer-info {
position: absolute;
left: 5%;
bottom: 240px; /* تم رفعه أكثر */
max-width: 320px;
}
}
@media (max-width: 991px) {
.nadee-footer-info {
margin-top: 25px;
text-align: right;
}
.nadee-footer-info h3 {
text-align: right;
}
}
`;
document.head.appendChild(style);
} else {
footer.appendChild(infoDiv);
}
}
});
document.addEventListener('DOMContentLoaded', () => {
const checkExist = setInterval(() => {
// نمسك كل الـwidgets اللي فيها زر "اشتري الآن"
document.querySelectorAll('salla-mini-checkout-widget').forEach(widget => {
const shadow = widget.shadowRoot;
if (shadow) {
// الزر المقصود فقط
const buyNowButton = shadow.querySelector('button.s-fast-checkout-button.outline.rtl');
if (buyNowButton) {
// نحذف أي استايل سابق عشان ما يتعارض
shadow.querySelectorAll('style[data-buy-now-style]').forEach(s => s.remove());
// نضيف الاستايل الجديد داخل الشادو
const style = document.createElement('style');
style.setAttribute('data-buy-now-style', '');
style.textContent = `
button.s-fast-checkout-button.outline.rtl {
background-color: #104682 !important;
color: #ffffff !important;
border: 1px solid #104682 !important;
transition: all 0.3s ease !important;
}
button.s-fast-checkout-button.outline.rtl:hover {
background-color: #0f66c0 !important;
color: #ffffff !important;
}
`;
shadow.appendChild(style);
}
}
});
}, 1000);
});