/* Add custom Js code below */ document.addEventListener("DOMContentLoaded", function () { const footer = document.querySelector(".store-footer"); if (!footer) return; const container = document.createElement("div"); container.className = "alzaiem-copy-rights"; const link = document.createElement("a"); link.href = "https://api.whatsapp.com/send/?phone=966562848137&text&type=phone_number&app_absent=0"; link.target = "_blank"; link.className = "alzaiem-footer-link"; link.textContent = "برمجة وتطوير alzaiem1.com"; container.appendChild(link); footer.appendChild(container); }); const copyrightSpan = document.querySelector('span.copyright-text'); if (copyrightSpan) { copyrightSpan.innerHTML = ` الحقوق محفوظة ل ون مور بوتيك; ONE MORE BUTIUQE 💻 `; } else { console.error('Copyright element (span.copyright-text) not found.'); } /* ------------------------------------------------ */ /* كود JavaScript لزر الواتساب (أيقونة فقط - موقع مخصص) */ /* ------------------------------------------------ */ var link = document.createElement('a'); link.href = 'https://wa.me/+966555818121'; link.target = '_blank'; link.className = 'whatsapp-me whatsapp-final-button whatsapp-custom-pop'; link.style.cssText = ` position: fixed !important; /* تم رفع الأيقونة لتكون فوق الفوتر وبجانب أزرار الشراء */ bottom: 120px !important; right: 5px !important; z-index: 9999 !important; display: flex !important; align-items: center !important; justify-content: center !important; text-decoration: none !important; background-color: transparent !important; /* شفافة تماماً */ width: 50px !important; height: 50px !important; border-radius: 50% !important; transition: all 0.4s ease !important; padding: 0 !important; box-shadow: none !important; /* إزالة أي ظل قديم */ `; var img = document.createElement('img'); img.src = 'https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg'; img.style.width = '100%'; img.style.height = '100%'; img.style.display = 'block'; link.appendChild(img); document.body.appendChild(link);