0
document.addEventListener('DOMContentLoaded', function () { const openButtons = document.querySelectorAll('.more-info'); const closeButtons = document.querySelectorAll('.close');// Open the modal when the "More Info" button is clicked openButtons.forEach(button => { const modalId = button.getAttribute('data-modal'); const modal = document.getElementById(modalId);button.addEventListener('click', function () { modal.style.display = 'flex'; // Show the modal }); });// Close the modal when the "Close" button is clicked closeButtons.forEach(button => { button.addEventListener('click', function () { const modal = this.closest('.modal'); modal.style.display = 'none'; // Hide the modal }); });// Close the modal if the user clicks outside of it window.addEventListener('click', function (e) { const modals = document.querySelectorAll('.modal'); modals.forEach(modal => { if (e.target === modal) { modal.style.display = 'none'; // Close the modal if clicked outside } }); }); });
0
    0
    Your basket
    Your basket is emptyReturn to Shop