/** Shopify CDN: Minification failed

Line 141:0 All "@import" rules must come first

**/
header {
    background: transparent !important;
}
body, html {
    margin: 0;
    padding: 0;
}
.cart-drawer {  /* Asegúrate de usar la clase correcta */
    background: transparent !important;  /* Para quitar el fondo blanco */
    margin: 0 !important;  /* Elimina cualquier margen */
    padding: 0 !important;  /* Elimina cualquier relleno extra */
    display: none;  /* Si quieres asegurarte de que se oculta cuando no está activo */
}
.header-custom {
  background: transparent !important;
  box-shadow: none !important;
}
.header-custom {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}
.header-wrapper {
  background: transparent !important;
  box-shadow: none !important;
}
/* Contenedor del menú */
.side-menu {
  position: fixed;
  top: 0;
  left: -25%;
  width: 25%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  transition: left 0.4s ease;
  z-index: 1000;
  padding: 2rem;
  overflow-y: auto;
}

/* Clase activa cuando se abre */
.side-menu.open {
  left: 0;
}

/* Estilo de la lista */
.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-list li {
  margin-bottom: 1.5rem;
}

.menu-list a {
  font-size: 1.6rem;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  padding: 0.5rem;
  border-radius: 6px;
}

.menu-list a:hover {
  background-color: rgba(0,0,0,1);
}

.menu-list .arrow {
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Aparece la flecha en hover */
.menu-list a:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}
@font-face {
  font-family: 'Vollkorn';  /* Nombre que usas para la fuente */
  src: url('{{ 'vollkorn.woff' | asset_url }}') format('woff'),
       url('{{ 'montserrat.woff2' | asset_url }}') format('woff2');
  font-weight: 600;  /* Peso de la fuente */
  font-style: normal; /* Estilo de la fuente */
}

/* Banner: altura menor y fondo */
.banner {
  height: 400px; /* Ajusta según quieras más o menos alto */
  position: relative;
  background: #fff; /* Fondo blanco */
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* Letras brutalistas */
.banner .banner-title {
  font-family: 'Anton', sans-serif; /* Fuente brutalista */
  font-weight: 700;
  color: #222; /* Matte oscuro */
  position: relative;
  z-index: 10;
  text-align: center;
  font-size: 3rem;
  margin: 0;
  padding: 0 1rem;
}

/* Luz difusa desde abajo */
.banner::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 150px;
  background: radial-gradient(circle, rgba(255,255,224,0.4) 0%, transparent 80%);
  filter: blur(40px);
  z-index: 5;
}

/* Importar fuente brutalista */
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');


