/****/ const href = window.location.href; if (href.includes('cart')) { document.addEventListener("DOMContentLoaded", () => { // Create the popup HTML const pop = ` `; // Insert the popup HTML into the page document.body.insertAdjacentHTML("afterbegin", pop); // Function to show the popup const container = document.getElementById('popupContainer'); container.style.cssText = ` opacity: 1; visibility: visible; `; // Function to hide the popup function hidePopup() { container.style.cssText = ` opacity: 0; visibility: hidden; `; } // Add event listener to close button const closeBtn = document.querySelector('.popup-container'); closeBtn.addEventListener('click', hidePopup); }); }