/* Base Styles */ .hamburger-menu { position: relative; display: none; cursor: pointer; z-index: 1001; margin-left: 10px; } .hamburger-menu div { width: 20px; height: 2px; background-color: #fff; margin: 4px 0; transition: 0.4s; } .mobile-nav { position: fixed; top: 0; left: -100%; width: 75%; max-width: 260px; height: 100%; background-color: #693bff; /* purple from xdpk2rmu */ color: #fff; z-index: 1000; padding: 18px; transition: left 0.3s ease; overflow-y: auto; box-shadow: 2px 0 6px rgba(0,0,0,0.3); font-family: "Helvetica Neue", sans-serif; } .mobile-nav.open { left: 0; } .mobile-nav h3 { margin-top: 18px; font-size: 14px; color: #dddddd; /* slight grey */ border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 6px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; font-family: "Helvetica Neue Bold", "Helvetica Neue", sans-serif; } .mobile-nav ul { list-style: none; padding: 0; margin: 0; } .mobile-nav li { margin: 10px 0; } .mobile-nav a { color: #ffffff; text-decoration: none; font-size: 14px; font-family: "Helvetica Neue", sans-serif; } .mobile-nav a:hover { text-decoration: underline; } .overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 999; } .overlay.show { display: block; } @media (max-width: 768px) { .hamburger-menu { display: block; } }
const hamburger = document.getElementById('hamburger'); const mobileNav = document.getElementById('mobileNav'); const overlay = document.getElementById('overlay'); hamburger.addEventListener('click', () => { mobileNav.classList.toggle('open'); overlay.classList.toggle('show'); }); overlay.addEventListener('click', () => { mobileNav.classList.remove('open'); overlay.classList.remove('show'); });

Contact Us

Contact Us for Any Questions

Please enable JavaScript in your browser to complete this form.
Name

Subscribe Newsletter

Join our mailing list to receive any latest updates and promotions.

Safety Payments

0
    0
    Your Cart
    Your cart is empty
    Scroll to Top