/* Preloader full pantalla */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Spinner animado */
.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #ccc;
  border-top-color: #00c3ff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}

/* Animación de rotación */
@keyframes spin {
  to { transform: rotate(360deg); }
}


 .whatsapp-container {
            position: fixed;
            bottom: 150px;
            right: 0;
            z-index: 1000;
        }

        .whatsapp-float {
            position: relative;
            width: 60px;
            height: 60px;
            background-color: #25d366;
            border-radius: 3px 0 0 3px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
            transition: transform 0.2s ease;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
        }

        .whatsapp-float img {
            width: 35px;
            height: 35px;
        }

        /* Mensaje emergente */
        .whatsapp-tooltip {
            position: absolute;
            right: 70px; /* Se posiciona a la izquierda del botón */
            top: 50%;
            transform: translateY(-50%);
            background-color: #25d366;
            color: white;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

        /* Flecha del tooltip */
        .whatsapp-tooltip::after {
            content: '';
            position: absolute;
            left: 100%;
            top: 50%;
            transform: translateY(-50%);
            border: 6px solid transparent;
            border-left-color: #25d366;
        }

        /* Mostrar tooltip al hover */
        .whatsapp-container:hover .whatsapp-tooltip {
            opacity: 1;
            visibility: visible;
            transform: translateY(-50%) translateX(-5px);
        }

        /* Animación de entrada automática */
        .whatsapp-tooltip.show-auto {
            opacity: 1;
            visibility: visible;
            transform: translateY(-50%) translateX(-5px);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: translateY(-50%) translateX(-5px) scale(1); }
            50% { transform: translateY(-50%) translateX(-5px) scale(1.05); }
            100% { transform: translateY(-50%) translateX(-5px) scale(1); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .whatsapp-float {
                width: 50px;
                height: 50px;
            }
            
            .whatsapp-float img {
                width: 28px;
                height: 28px;
            }
            
            .whatsapp-tooltip {
                right: 60px;
                font-size: 12px;
                padding: 6px 10px;
            }
        }





.lato-thin {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.lato-thin-italic {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.lato-light-italic {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.lato-regular-italic {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.lato-black-italic {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.raleway-dots-regular {
  font-family: "Raleway Dots", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.zilla-slab-highlight-regular {
  font-family: "Zilla Slab Highlight", serif;
  font-weight: 400;
  font-style: normal;
}

.zilla-slab-highlight-bold {
  font-family: "Zilla Slab Highlight", serif;
  font-weight: 700;
  font-style: normal;
}


.loading {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Raleway Dots", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  color: #ededed;
}

body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  margin: 0;
  padding: 0;
  background: #fff;
  
}
/* comienzo del header */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

.main-header {
  height: 60px;
  width: 100%;
  background-color: #dfdfdf;
  display: flex;
  align-items: center;
  padding: 0 30px;
  position: fixed;
  top: 0;
  z-index:1000;
  background-color: rgba(255, 255, 255, 0.4); /* Blanco con 20% de opacidad */
  backdrop-filter: blur(10px); /* Efecto blur de 10px */
  -webkit-backdrop-filter: blur(10px); /* Para compatibilidad con Safari */
  
}


.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1300px;
  margin: 0 auto;
}

/* Que el logo quede fijo a la izquierda */
.logo-container {
  flex-shrink: 0;
}

/* Este contenedor empujado a la derecha */
.right-section2 {
  display: flex;
  justify-content: flex-end;
  margin-left: auto;
  margin-right: 10px; /* Ajustá este valor si querés separarlo un poco del buscador */
}

.social-icons {
  display: flex;
  gap: 15px; 
}



.logo-2 {
    height: 40px;
    width: auto;
    margin-left: 10px;
    filter: invert(1);
    
}


.social-icon {
    color: #353535;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

.social-icon svg {
    width: 100%;
    
}

.social-icon svg path {
  fill: #353535;
}


/* fin del header */


.contenedor-principal{

  max-width: 1300px;
  margin: 0 auto;
padding-top: 110px;
}


/* ===== MENU BUSQUEDAS ===== */


.menu-scroll-container {
  position: relative;
  overflow-x: auto; /* sigue permitiendo scroll horizontal */
  background-color: #2c424e;
  margin-top: 60px;
  display: flex;
  justify-content: center; /* centra horizontalmente */
  border-bottom: solid 0.7px rgba(0,0,0,0.4);
    
}


/* OCULTAR SCROLLBAR EN ESCRITORIO */
@media (min-width: 1025px) {
    .menu-scroll-container {
        overflow-x: visible;
        padding-bottom: 0;
        
   
    }
}


/* MENÚ PRINCIPAL */
.menu-busqueda {
    display: inline-flex;
    gap: 20px;
    height: 50px;
    position: relative; 
   
}


/* ELEMENTOS DEL MENÚ */
.menu-item-container {
    position: relative;
    display: inline-block;
    
   
}

.menu-item {
    font-size: 16px;
    color: #e2e2e2;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px 12px;
    white-space: nowrap;
    font-family: "Rajdhani", sans-serif;
  font-weight: 500;
  font-style: normal;
    touch-action: manipulation;
    -webkit-user-select: none;
    user-select: none;
    transition: all 0.5s ease; /* duración y efecto */
    height: 50px;
}


.menu-item:hover {
background-color: #fff;
color: #000;
height: 50px;
}

.menu-item.with-arrow::after {
    content: "▼";
    font-size: 10px;
    margin-left: 5px;
}

.menu-vinylfuture {
  color: #00BFFF; /* celeste */
  font-family: "Rajdhani", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
}

/* MENÚS DESPLEGABLES */

.search-dropdown {
    position: absolute;
    left: 0;
    z-index: 2000;
    max-height: 70vh;
    overflow-y: auto;
    display: none;
    min-width: 450px;     /* ancho amplio en escritorio */
    box-sizing: border-box;
    touch-action: manipulation;
    -webkit-user-select: none;
     background-color: #fff;
    
}

/* CLASE ACTIVA PARA MOSTRAR EN MÓVIL */
.search-dropdown.show {
    display: block !important;
}




/* GRILLA DE GÉNEROS */
.genres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    width: 100%;
}

/* ITEMS DE MENÚ */
    .genre-item, .offer-item {
    color: #353535;
    padding: 8px 12px;
    display: block;
    font-size: 14px;
    font-family: "Lato", sans-serif;
    text-decoration: none;
    border-bottom: 0.7px solid rgba(255,255,255,0.05);
    transition: all 0.4s ease;
}

.genre-item:hover, .offer-item:hover {
    background: #2989bc;
    color: #fff;
}

/* AJUSTES RESPONSIVE */
@media (max-width: 1024px) {

.menu-scroll-container {
    display: none;
  }

}

/* FIN MENU BUSQUEDA */




/* slipmat) */

.slipmats-section {
  max-width: 100%;         /* elimina el límite de 1300px */
  padding: 1px 0 100px 0;  /* sin padding izquierdo/derecho */
  margin: 0;               /* sin margen automático */
}

.slipmats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* exactamente 6 por fila */
  gap: 30px;
  padding-top: 40px;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* Contenedor general del slipmat */
.slipmat {
  overflow: hidden;
  position: relative;
  height: 370px;
  width: 236px;
  border-radius: 10px;
  border: solid 0.7px rgba(0,0,0,0.4);
  background-color: #fff;
  cursor: pointer; /* Agregado para indicar que es clickeable */
}

/* ESTILO BASE DE LA IMAGEN */
.slipmat img {
  width: 236px;
  height: 236px;
  object-fit: cover;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-bottom: solid 0.7px rgba(0,0,0,0.2);
  transition: transform 0.3s ease; /* Transición solo para hover */
}

/* Hover normal */
.slipmat:hover img {
  transform: scale(1.02);
}

/* Loading y error styles */
.loading, .error {
  text-align: center;
  padding: 40px;
  font-family: "Lato", sans-serif;
}

.error button {
  margin-top: 15px;
  padding: 10px 20px;
  background: #da7f00;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.error button:hover {
  background: #c57100;
}

/* INFO SLIPMATS*/
.slipmat-info {
  width: 100%;
 font-family: "Rajdhani", sans-serif;
  font-weight: 300;
  font-style: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-height: 1.3em;
  padding: 20px;
}

.slipmat-info .description,
.slipmat-info {
  display: block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-style: normal;
  font-weight: 300;
  color: #353535;
  font-size: 15px;
  margin-bottom: 20px;
}

.price {
  display: block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: #da7f00;
  padding: 7px;
  border-radius: 20px 20px 0 20px;
  width: 100%;
  margin-top: 10px;
  font-weight: 600;
  font-style: normal;
  color: #fff;
  font-size: 16px;
}

/* RESPONSIVE CORREGIDO */
@media (max-width: 767px) {
  .slipmats-grid {
    grid-template-columns: 1fr !important; /* Una sola columna en móviles */
    gap: 20px;
    margin-top: 50px;
   
  justify-content: center; /* centra horizontal */
  align-items: center;     /* centra vertical */
  }
  
  
}




/* Estilos responsivos */
@media (max-width: 768px) {
    .main-header {
        padding: 0 15px;
    }
    
    .logo {
        height: 50px;
    }
    
    .logo-container {
        margin-left: 15px;
    }
    
    .right-section {
        gap: 15px;
        margin-right: 15px;
    }
    
    .social-icons {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .main-header {
        height: 80px;
    }
    
    .logo {
        height: 40px;
    }
    
    .social-icon {
        width: 20px;
        height: 20px;
    }
    
    .dropdown-button svg {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .filter-buttons {
        gap: 10px;
    }
    
    .filter-button {
        width: 150px;
        height: 35px;
        font-size: 10px;
    }
}

/* banner */
/* Contenedor para desktop */
.banner-desktop {
  width: 1300px;
  height: 400px;
  margin: 5px auto; /* Centrado con margen vertical */
  overflow: hidden; /* Recorta excesos de la imagen */
  margin-top: 0px;
}

.banner-desktop img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cubre el espacio sin deformarse */
  display: block; /* Elimina espacio fantasma debajo */
}

/* Oculta en móviles */
@media (max-width: 768px) {
  .banner-desktop {
    display: none;
      }
}

.sin-stock-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 80px;
  color: #fff;
  font-weight: 500;
  padding: 10px;
  font-size: 15px;
  z-index: 10;
  pointer-events: none;
  border-radius: 20px 0 20px 20px;
  background-color: rgba(5, 43, 91, 0.636); /* Blanco con 20% de opacidad */
  backdrop-filter: blur(10px); /* Efecto blur de 10px */
  -webkit-backdrop-filter: blur(10px); /* Para compatibilidad con Safari */
}



.image-wrapper {
  position: relative;
}



/* Vinilos en Stcok */

.vinilos-stock {
  width: 100%;
  margin: 0 auto;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #cbcbcb;
  font-size: 13px;
  margin-top: 50px;
  background-color: #1f3745;
 }


.tres-columnas {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  margin: 0 auto;
  max-width: 1300px;
  width: 100%;
  box-sizing: border-box;
}

.columna {
  flex: 1; /* cada una ocupa el mismo ancho */
  padding: 20px;
  border-radius:10px;
  margin-left:10px;
  height:800px;
}

ol {
  list-style-position: inside; /* número queda alineado al texto */
}

ol li::marker {
  font-weight: bold;
}

.mapa-google {
  margin-top: 20px;

}


@media (max-width: 768px) {
  .tres-columnas {
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
  }

  .columna {
    width: 100%;
    max-width: 100%;
    margin: 10px 0;
    padding: 15px;
    font-size: 13px;
    height: auto;
    box-sizing: border-box;
  }

  .vinilos-stock {
    font-size: 13px;
    padding: 20px 10px;
    width: 100%;
    box-sizing: border-box;
  }

  .mapa-google iframe {
    width: 100% !important;
    height: auto;
  }



}


 /* header y buscador */

/* Estilo base: escritorio */
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap; /* No envuelve */
  width: 1300px;
  margin: 0 auto;
  
}

/* --- MÓVIL --- */
/* Nuevos estilos responsive */
@media (max-width: 768px) {
    .main-header {
        height: auto;
        padding: 10px 15px;
    }
    
    .header-content {
        width: 100%;
        flex-wrap: wrap;
        padding-top: 10px;
    }
    
    .logo-container {
        order: 1; /* Posición 1 */
        width: auto;
    }
    
    .right-section2 {
        order: 2; /* Posición 2 */
        margin-left: auto; /* Lo empuja a la derecha */
        margin-right: 60px;
    }
    
    .search-container {
        order: 3; /* Posición 3 (debajo de los otros) */
        width: 100%;
        max-width: 100%;
        margin-top: 15px;
    }

.menu-busqueda { 
margin-top: 70px;
}


}


/* Responsive: móviles y tablets */
@media (max-width: 768px) {
  .slipmat {
   z-index: 100; /* Asegura que esté encima */
    item-content: center;
     border-bottom: solid 0.7px rgba(0,0,0,0.4); 
    margin-bottom: 10px;
    background-color: transparent;
    height: 500px;
    width: 350px;
    margin: 0 auto;
  }

.slipmat img {
     width: 350px;
     height: 350px;
   
}

}


@media (hover: hover) {
  .slipmat img:hover {
    z-index: 10;
  }
}



/* CONTENEDOR PRINCIPAL DE EQUIPAMIENTO */

.equipamiento-wrapper {
  display: flex;
  gap: 20px; /* Espacio entre la imagen y descripción */
}

/* COLUMNA IZQUIERDA */
.equipamiento-section-fotos {
  width: 700px;
  height: 900px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

/* IMAGEN PRINCIPAL */
.equipamiento-container-foto {
  width: 100%;
  height: 700px;
  box-sizing: border-box;
}

/* MINIATURAS O IMÁGENES SECUNDARIAS */
.equipemiento-imgagenes {
  width: 100%;
  height: 100px;
  box-sizing: border-box;
}

/* COLUMNA DERECHA */
.equipamiento-cajon-descripcion {
  width: 500px;
  height: 900px;
  box-sizing: border-box;
 font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.precio {
background: #dfdfdf;
border-radius: 5px;
font-weight: 400;
}


/* Estructura principal para escritorio (ya existente) */
.equipamiento-wrapper {
  display: flex;
  gap: 20px;
  max-width: 1400px; /* 800px + 500px + gaps */
  margin: 0 auto;
  padding: 20px;
}

/* Estilos responsive para móviles */
@media (max-width: 1024px) {
  .equipamiento-wrapper {
    flex-direction: column;
    padding: 15px;
    margin-bottom: 20px;
    margin-top: 50px;
    
  }
  
  .equipamiento-section-fotos {
    width: 100% !important;
    height: auto !important;
    order: 1;
  }
  
  .equipamiento-container-foto {
    width: 100% !important;
    height: 70vh !important;
    max-height: 500px;
    min-height: 300px;
    order: 1;
  }
  
  .equipemiento-imgagenes {
    width: 100% !important;
    height: auto !important;
    min-height: 80px;
    order: 2;
  }
  
  .equipamiento-cajon-descripcion {
    width: 100% !important;
    height: auto !important;
    min-height: 300px;
    order: 3;
    
   }

}
  /* Ajustes específicos para móviles pequeños */
  @media (max-width: 480px) {
    .equipamiento-container-foto {
      height: 50vh !important;
      max-height: 400px;
    }
    
    .equipemiento-imgagenes img {
      width: 60px;
      height: 60px;
    }
  }


@media (max-width: 768px) {
  .sin-stock-badge {
    font-weight: 600;
    padding: 15px;
  font-size: 18px;
    width: 120px;
    height: 50px;
  }
}