Cart

Your cart is currently empty.

Return to shop

document.addEventListener("DOMContentLoaded", function() { var whatsappButton = document.querySelector(".whatsapp-btn a"); // Targets the WhatsApp buttonif (whatsappButton) { whatsappButton.addEventListener("click", function(event) { event.preventDefault(); // Prevents the default link behaviorvar phoneNumber = "97148818426"; // Your WhatsApp number var message = encodeURIComponent("Hi, I'm interested in this: " + window.location.href); var whatsappUrl = "https://wa.me/" + phoneNumber + "?text=" + message; window.open(whatsappUrl, "_blank"); // Opens WhatsApp with the custom message }); } });