/* Add custom Js styles below */
document.addEventListener("DOMContentLoaded", function() {
// بنجيب العنصر اللي بعده هنضيف الزر
const target = document.querySelector(".product-single .product__description");
if (target) {
const whatsappButton = `
حاب تستفسر عن شيء؟ حياك واتس
`;
// نضيف الزر بعد العنصر
target.insertAdjacentHTML("afterend", whatsappButton);
}
});
(function(){
var phone = "966530006071"; // << حط رقمك هنا
var message = "أهلًا! عندي استفسار.";
var ua = navigator.userAgent || navigator.vendor || window.opera;
var isMobile = /Android|iPhone|iPad|iPod|Opera Mini|IEMobile|WPDesktop/i.test(ua);
var encodedMsg = encodeURIComponent(message);
var href = isMobile
? "https://wa.me/" + phone + "?text=" + encodedMsg
: "https://web.whatsapp.com/send?phone=" + phone + "&text=" + encodedMsg;
var link = document.createElement("a");
link.href = href;
link.target = "_blank";
link.rel = "noopener noreferrer";
link.className = "salla-wa-box";
link.innerHTML = `
تواصل معنا
`;
document.addEventListener("DOMContentLoaded", function(){
if (!document.querySelector(".salla-wa-box")) {
document.body.appendChild(link);
}
});
})();