window.addEventListener('load', function () { setTimeout(function () { var el = document.querySelector('.header-buttons'); var target = document.querySelector('salla-cart-summary'); if (el && target && el.parentNode !== target.parentNode) { target.before(el); } }, 1500); }); (function () { if (window.__sallaWhatsappLoaded) return; window.__sallaWhatsappLoaded = true; const whatsappNumber = '966583909522'; // رقمك function createButton() { if (document.getElementById('salla-whatsapp-float')) return; // FontAwesome if (!document.querySelector('#wa-fa-css')) { const fa = document.createElement('link'); fa.id = 'wa-fa-css'; fa.rel = 'stylesheet'; fa.href = 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css'; document.head.appendChild(fa); } // CSS if (!document.querySelector('#wa-float-style')) { const style = document.createElement('style'); style.id = 'wa-float-style'; style.textContent = ` #salla-whatsapp-float{ position:fixed; bottom:25px; right:25px; z-index:999999; display:flex; align-items:center; justify-content:center; } #salla-whatsapp-float a{ width:60px; height:60px; border-radius:50%; background:#25D366; color:#fff; display:flex; align-items:center; justify-content:center; font-size:30px; text-decoration:none; box-shadow:0 0 0 rgba(37,211,102,.4); animation:waPulse 2s infinite; } @keyframes waPulse{ 0%{box-shadow:0 0 0 0 rgba(37,211,102,.5)} 70%{box-shadow:0 0 0 18px rgba(37,211,102,0)} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0)} } @media(max-width:768px){ #salla-whatsapp-float{ right:20px; bottom:20px; } } `; document.head.appendChild(style); } const btn = document.createElement('div'); btn.id = 'salla-whatsapp-float'; btn.innerHTML = ` `; document.body.appendChild(btn); } if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', createButton); } else { createButton(); } window.addEventListener('load', createButton); })();