Skip to content
-
$100.00
-
$200.00
document.addEventListener('DOMContentLoaded', function() {
const closeButton = document.querySelector('.close-btn');
const stickySection = document.querySelector('.sticky-section');
if (closeButton && stickySection) {
closeButton.addEventListener('click', function() {
stickySection.style.display = 'none'; // Hide the sticky section
});
}
});