/* Add custom JS code below */
document.body.insertAdjacentHTML("afterbegin", `
`);
document.body.style.paddingTop = "40px";
/* Add custom JS code below */
const whatsapp = document.createElement("a");
whatsapp.href = "https://wa.me/966581730643?text=السلام عليكم، أريد الاستفسار عن أحد المنتجات.";
whatsapp.target = "_blank";
whatsapp.rel = "noopener noreferrer";
whatsapp.setAttribute("aria-label", "WhatsApp");
whatsapp.innerHTML = `
`;
Object.assign(whatsapp.style, {
position: "fixed",
bottom: "20px",
right: "20px",
width: "60px",
height: "60px",
background: "#25D366",
borderRadius: "50%",
display: "flex",
alignItems: "center",
justifyContent: "center",
boxShadow: "0 6px 18px rgba(0,0,0,.25)",
zIndex: "999999",
cursor: "pointer",
transition: "transform .2s ease"
});
whatsapp.addEventListener("mouseenter", () => {
whatsapp.style.transform = "scale(1.1)";
});
whatsapp.addEventListener("mouseleave", () => {
whatsapp.style.transform = "scale(1)";
});
document.body.appendChild(whatsapp);