Explore our latest collection of stylish jeans, featuring a variety of fits, washes, and designs to suit every taste. Perfect for any occasion, our jeans are crafted with quality and comfort in mind.
Choosing a selection results in a full page refresh.
Opens in a new window.
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
Collection: STYLISH JEANS COLLECTION
Explore our latest collection of stylish jeans, featuring a variety of fits, washes, and designs to suit every taste. Perfect for any occasion, our jeans are crafted with quality and comfort in mind.