// Popup otomatis muncul saat website dibuka window.onload = function () { document.getElementById("popup").style.display = "flex"; }; // Menutup popup function tutupPopup() { document.getElementById("popup").style.display = "none"; } // Tombol Beli Sekarang const tombolBeli = document.querySelectorAll(".produk-card button"); tombolBeli.forEach(function(btn){ btn.addEventListener("click", function(){ window.open( "https://wa.me/6281264628944?text=Halo%20ALWAYS%20STORE,%20saya%20ingin%20membeli%20produk.", "_blank" ); }); });