(function () { const updateCopyright = () => { const e = document.querySelector('.copyright-text'); if (e) { const year = new Date().getFullYear(); e.innerHTML = 'صنع ' + year + ' | بواسطة شركة اكس كير'; } }; const createWhatsAppButton = () => { if (document.getElementById('whatsappButton')) return; const a = document.createElement('div'); a.id = 'whatsappButton'; a.style.position = 'fixed'; a.style.bottom = '20px'; a.style.right = '20px'; a.style.zIndex = '1000'; a.style.fontSize = '28px'; a.style.cursor = 'pointer'; a.innerHTML = ` `; a.addEventListener('click', () => { window.open(a.querySelector('a').href, '_blank'); }); document.body.appendChild(a); }; const addSocialMediaColumn = () => { const container = document.querySelector('.store-footer__inner .container'); if (!container) { console.warn('لم أجد العنصر .store-footer__inner .container'); return; } if (document.getElementById('social-media-col')) return; const col = document.createElement('div'); col.className = 'col'; col.id = 'social-media-col'; col.innerHTML = `