/* Add custom Js code below */ document.addEventListener("DOMContentLoaded", function () { const footerRights = document.querySelector(".footer-rights p"); if (footerRights) { footerRights.innerHTML = ` الحقوق محفوظة © 2025 | BikesZone منطقة الدراجات النارية
تطوير فريق Kareem Elshafei `; } }); document.addEventListener("DOMContentLoaded", () => { // ✅ تأكد إن البوب أب ما اتعرضش قبل كده في الجلسة if (sessionStorage.getItem('discountPopupShown') === 'true') return; setTimeout(() => { const existingPopup = document.getElementById('discount-popup'); if (existingPopup) existingPopup.remove(); const popup = document.createElement("div"); popup.id = 'discount-popup'; popup.innerHTML = ` `; document.body.appendChild(popup); // ✅ سجّل إن البوب أب ظهر sessionStorage.setItem('discountPopupShown', 'true'); popup.querySelector('.copy-code').addEventListener('click', function () { navigator.clipboard.writeText('ZONE10').then(() => { this.innerText = 'تم النسخ!'; this.disabled = true; setTimeout(() => { document.getElementById('discount-popup')?.remove(); }, 1000); }); }); }, 1000); });