/* Add custom Js code below */ //document.head.appendChild(document.createElement('script')).src = 'https://smartarget.online/loader.js?u=f7fb42223df7caf7ac199a8aa978a411c9e26939'; const contactBtn = document.createElement('div'); const prefilled = encodeURIComponent("السلام عليكم، لدي استفسار بخصوص قطعة غيار."); const waLink = `https://wa.me/966592499658?text=${prefilled}`; function getBottomOffset() { const width = window.innerWidth; if (width <= 480) return '120px'; // Small phones if (width <= 768) return '100px'; // Tablets return '20px'; // Desktop } contactBtn.innerHTML = ` واتساب هل لديك أي استفسار؟ `; document.body.appendChild(contactBtn); window.addEventListener('resize', () => { const link = contactBtn.querySelector('a'); link.style.bottom = getBottomOffset(); });