This is the header with your store's logo and navigation links.

Welcome to Burmungos Store

Explore bold and modern designs that stand out.

google-site-verification: google01fe13078e6cc245.html ddescuento.online4u
Burmungos
Skip to content
const searchBar = document.getElementById('search-bar'); burgerMenu.addEventListener('click', function (event) { event.stopPropagation(); // Evita que el clic se propague if (sidebarMenu.style.display === 'none' || sidebarMenu.style.display === '') { sidebarMenu.style.display = 'block'; burgerMenu.style.color = '#ff6347'; // Cambia a rojo al abrir } else { sidebarMenu.style.display = 'none'; burgerMenu.style.color = '#ff1493'; // Regresa a rosa al cerrar } }); // Cambiar color al interactuar con el campo de búsqueda searchBar.addEventListener('focus', function () { searchBar.style.borderColor = '#00bfff'; // Cambia a azul al enfocarse }); searchBar.addEventListener('blur', function () { searchBar.style.borderColor = '#ff1493'; // Regresa a rosa al salir }); // Cerrar el menú cuando se haga clic fuera de él document.addEventListener('click', function (event) { const isClickInsideMenu = sidebarMenu.contains(event.target); const isClickInsideButton = burgerMenu.contains(event.target); if (!isClickInsideMenu && !isClickInsideButton) { sidebarMenu.style.display = 'none'; burgerMenu.style.color = '#ff1493'; // Regresa a rosa } }); Skip to content