document.addEventListener("DOMContentLoaded", function () { if (!document.body.classList.contains("product-single")) return; const priceDiv = document.querySelector( '.bg-storeBG.p-5.rounded-md.rounded-b-none.flex.sm\\:pb-0.product-price.product-price-bottom' ); if (!priceDiv) return; const productTitle = (document.querySelector("h1, .product-title, [data-product-title]") || {}).textContent || ""; const msg = `مرحباً، أودّ الاستفسار عن${productTitle ? ":\n" + productTitle.trim() : ""}\n${window.location.href}`; const phone = "966599195056"; // KSA format without '+' or leading zeros const waLink = `https://wa.me/${phone}?text=${encodeURIComponent(msg)}`; // works on mobile & desktop const whatsappBtn = `
عندك استفسار؟ أو عرض سعر؟ فريقنا جاهز على واتساب
WhatsApp
`; priceDiv.insertAdjacentHTML("afterend", whatsappBtn); }); // Make icons horizontal document.addEventListener('DOMContentLoaded', () => { const mount = document.querySelector('section.product-features--wrapper'); if (!mount) return; // build new horizontal content const html = `
وسائل الدفع اللي عندنا
تابي – تمارا – مدفوع – إمكان – مس باي -كذلك ابل بي - حوالة بنكية - فيزا- مدى
الشحن والتوصيل
تكلفة الشحن عندنا 21 ريال — ونشحن لكل مناطق المملكة - شحن مجاني للطلبات فوق 499 ريال
تواصل معنا
نخدمك بعيوننا على الواتساب
`; const grid = mount.querySelector('.grid'); if (grid) { grid.outerHTML = html; } else { mount.insertAdjacentHTML('beforeend', html); } });