/* 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;
}



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


/* ========================================== ESTILOS GENERALES ============================================ */

/* 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;
  }

.contenedor-principal-novedades{
  max-width: 1300px;
  margin: 0 auto;
 }


/* ===== 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 */
 
 }


/* 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 */

/* ======= CONTENEDOR de vinilos ======= */

.contenedor-vinilos {
  width: 1300px;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}


/* ====== DESTACADOS ===== */

.columnas-izq {
  display: flex;
  gap: 20px;            /* separación entre columnas */
  width: 100%;
  margin-top: 40px;
  flex-wrap: nowrap;    /* en desktop, 3 columnas en una fila */
}

.columna-izq1,.columna-izq2,
.columna-izq3 {
  width: 100%;
  height: 400px;
  box-sizing: border-box;
  margin: 0;               /* saca cualquier margen */
  border-radius: 5px;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;  /* para apilar hijos */
  margin-top: 5px;
border: solid 1px rgba(0,0,0,0.1);
}


.destacados-fila {
  height: 60px;
  width: 270px;
  display: flex;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
  
} 

.destacados,
.destacados-2,
.destacados-3 {
  position: sticky;     /* se queda fijo dentro del scroll */
  top: 0;               /* pegado arriba */
  background-color: #5d93bd;    /* para que no se mezcle con el contenido al hacer scroll */
  z-index: 10;          /* que quede por encima del contenido */
  padding: 10px;
  font-size: 20px;
  color: #fff;
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  font-style: normal;
  width: 100%;
  margin: 0;
    box-shadow: 0 3px 6px rgba(200, 200, 200, 0.1); 
}


.destacados-fila.fila-1 {
  
}

.destacados-fila.fila-2 {
  
}

.destacados-fila.fila-3 {
  
}

.destacados-fila.fila-4 {
  
}

.destacados-fila.fila-5 {
  
}

.destacados-fila.fila-6 {
  
}

.destacados-fila.fila-7 {
  
}

.destacados-fila.fila-8 {
  
}

.destacados-fila.fila-9 {
  
}

.destacados-fila.fila-10 {
  
}

.destacados-fila.fila-11 {
  
}

.destacados-fila.fila-12 {
  
}

.destacados-fila.fila-13 {
  
}

.destacados-fila.fila-14 {
  
}

.destacados-fila.fila-15 {
  
}

.destacados-fila.fila-16 {
  
}

.destacados-fila.fila-17 {
  
}

.destacados-fila.fila-18 {
  
}

.destacados-fila.fila-19 {
  
}

.destacados-fila.fila-20 {
  
}

.destacados-fila.fila-21 {
  
}

.destacados-fila.fila-22 {
  
}

.destacados-fila.fila-23 {
  
}

.destacados-fila.fila-24 {
  
}

.destacados-fila.fila-25 {
  
}

.destacados-fila.fila-26 {
  
}

.destacados-fila.fila-27 {
  
}

.destacados-fila.fila-28 {
  
}

.destacados-fila.fila-29 {
  
}

.destacados-fila.fila-30 {
  
}


.destacado-item {
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: "Rajdhani", sans-serif;
  font-weight: 300;
  font-style: normal;
  text-align: left;
  gap: 8px;
  box-sizing: border-box;
}

.destacado-cover {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 4px;
  background: #222;
  flex-shrink: 0;
border: solid 1px #000;
}

.destacado-cover:hover {
  border: 1px solid transparent;
  filter: blur(1px); 
}

.destacado-textos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
}

.destacado-artista,
.destacado-titulo {
  line-height: 1;
  vertical-align: middle;
  
}

.destacado-artista {
  font-weight: bold;
  margin-bottom: 2px;
  color:   #696969;
  margin-left: 5px;
  min-width: 20px;
  width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
}

.destacado-titulo {
  color: #353535;
  margin-left: 5px;
  min-width: 70px;
  width: 145px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
}

.destacado-info {
  display: flex;
  align-items: center;
  gap: 10px; /* espacio entre texto y botón */
}

.cuadrado-play-destacado {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
 
  border-radius: 3px;  
}


.play-btn-destacado {
  background-color: #585858;
  border: none;
  width: 10px;
  height: 10px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  
  flex-shrink: 0;
  
}

.play-btn-destacado:hover {
  background: #e23c3c;
}

.play-btn-destacado:active {
  transform: scale(0.9);
  background: #585858;
}



.ver-mas {
  grid-column: 2;
  grid-row: 5;
  display: flex;
  justify-content: center;   /* centra el botón dentro de los 900px */
  align-items: center;
  width: 1300px;            
  height: 36px;
  margin-top: 50px;
  margin-left: auto;        /* pega el contenedor al lado derecho del padre */
 
  
}

#load-more-btn {
  width: 300px;          /* el botón mide lo necesario */
  height: 100%;
  background: #fff;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;  
  border: solid 0.7px rgba(0,0,0,0.3);
}


/* Efecto hover */
#load-more-btn:hover {
    box-shadow: 0 4px 10px rgba(200, 200, 200, 0.4);
}

/* Opcional: Efecto al hacer clic */
#load-more-btn:active {
    background: #606060;  /* Gris oscuro */
}




.ventas-wsp {
  width: 350px;          
  display: flex;        
  align-items: center;       /* centra verticalmente */
  justify-content: center; /* centra en horizontal */
  gap: 15px;                 /* espacio entre letra y vector */
  padding: 10px;
  margin: 0 auto;
}

.ventas-wsp-novedades {
  width: 350px;          
  display: flex;        
  align-items: center;       /* centra verticalmente */
  justify-content: center; /* centra en horizontal */
  gap: 15px;                 /* espacio entre letra y vector */
  padding: 10px;
  margin: 0 auto;
}

.letra {
  position: relative;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  color: #fff;
  background-color: #27B43E;
  padding: 7px 10px;
  display: inline-block;
}

.letra::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid #27B43E;
}

.vector {
  display: flex; 
  align-items: center;  /* asegura que el ícono quede centrado */
}


.novedades-cajon2 {
  width: 100%;          
  display: flex;        
  align-items: center;       /* centra verticalmente */
  justify-content: center; /* centra en horizontal */
  gap: 15px;                 /* espacio entre letra y vector */
  padding: 10px;
}

.paypal, .merca-pago, .visa-card, .master-card, .bbva, .brubank {
  padding: 2px;
  display: flex; 
  align-items: center;  /* asegura que el ícono quede centrado */
}



/* ============================ ESTILOS DE LOS VINILOS ===================================== */

.vinilo img {
  width: 230px; /* Si esto es el tamaño de la imagen, asegúrate de que .vinilo también lo contenga */
  height: 230px;
  object-fit: cover;
  display: block;
  margin-bottom: 10px;
  border-radius: 2px;
  box-shadow: 4px 4px 10px rgba(0,0,0,0.3);
}

.vinilo img:hover {
  border: 2px solid transparent;
  filter: blur(1px); /* Aplica un desenfoque de 3px */
}

.artist,
.title,
.catalog,
.genre {
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  padding: 0 5px;
  max-width: 100%; /* que no exceda el contenedor */
}

.generos {
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  padding: 5px 5px;
  max-width: 100%; /* que no exceda el contenedor */
  font-family: "Rajdhani", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  margin-bottom: 2px;
  color: #061634;
  
}

.artist {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  font-weight: bold;
  color: #000;
}

.title {
  font-family: "Rajdhani", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
 
  color: #000;
}

.catalog {
  font-family: "Rajdhani", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  margin-bottom: 2px;
  color:  #000;
}

.genre {
font-family: "Rajdhani", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  color: #f78e05;
  margin-bottom: 20px;
}

.badge-verde {
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 13px;
  color: #2e2836;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 4px;
  background-color: orange;
  border-radius: 3px;
  border: solid 0.7 rgba (0,0,0,0.3);
}

.badge-usado {
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 13px;
  color: #2e2836;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 2px;
  background-color: #2989bc;
  border-radius: 3px;
  border: solid 0.7 rgba (0,0,0,0.3);
}


.generos-resaltados {
 margin-left: 10px;
}
 

/* El universal selector box-sizing está bien al inicio del CSS */
/* *, *::before, *::after {
  box-sizing: border-box;
} */

.vinilo {
  width: 100%; /* El vinilo debe ocupar el 100% del espacio de su celda en .vinilos-grid */
  max-width: 230px; /* Esto es el ancho máximo que tendrá cada vinilo */
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px; /* Ajusta este valor según tu contenido */
  margin-bottom: 10px; /* Esto agregará espacio entre filas de vinilos */
  height: autopx;
 
}



.imagen-wrapper {
  position: relative;
  display: inline-block;
}

.divider {
  height: 0.7px;
  background-color: rgb(0, 0, 0,);
  margin-bottom: 6px;
  margin-top: 6px;
  width: 100%; /* Haz que el divider ocupe el 100% del ancho del .vinilo */
}

.price-play-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5px;
  height: 40px; /* asegura altura consistente */
  background: linear-gradient(to top, rgba(255,255,255,0.8), rgba(206, 206, 206,0.4));
  border-radius: 0 20px 20px 0;
 
}

.price {
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 16px;
  color: black;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  padding: 4px;
 
}


.play-btn-wrapper {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: solid 1px #585858;
  display: flex; /* Habilita Flexbox */
  justify-content: center; /* Centra horizontalmente */
  align-items: center; /* Centra verticalmente */
}

/* Botón de play en los vinilos */
.play-btn {
  width: 14px;
  height: 14px;
  background-color: #585858;
  border: none;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  cursor: pointer;
  margin-left: 3px;
}

.play-btn:hover {
  background: #dcdcdc;
}

.play-btn:active {
  transition: transform 0.3s ease;
}

.play-btn.playing {
background: #585858;
width: 12px;
  height: 12px;
margin: auto; 
}


.badge-nuevo {
  position: absolute;
  top: 0.1px;
  width: 90px;
  padding: 4px;
  color: #fff;
  font-size: 12px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-style: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 0 3px 0;
  background-color: #67a55a;
  border: solid 0.7 rgba (0,0,0,0.7);
  box-shadow: inset 0px 0px 7px rgba(40, 107, 44, 0.7);
  
  }

.badge-nuevo2 {
  position: absolute;
  top: 0.1px;
  width: 90px;
  padding: 4px;
  color: #fff;
  font-size: 12px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-style: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 0 3px 0;
  background-color: #67a55a;
  border: solid 0.7 rgba (0,0,0,0.7);
  box-shadow: inset 0px 0px 7px rgba(40, 107, 44, 0.7);
}

.badge-nuevo3 {
  position: absolute;
  top: 0.1px;
  width: 90px;
  padding: 4px;
  background-color: #2c424e;
  color: #fff;
  font-size: 12px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-style: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 0 3px 0;
}


.badge-nuevo-5 {
    position: absolute;
    top: 0.1px;
    right: 0.1px;
    z-index: 10;
    width: 40px;
    height: 40px;
     background-color: rgba(255, 255, 255, 0.2); /* Blanco con 20% de opacidad */
    backdrop-filter: blur(10px); /* Efecto blur de 10px */
    -webkit-backdrop-filter: blur(10px); /* Para compatibilidad con Safari */
  border-radius: 0 0 0 3px;
    
    
}

.badge-nuevo-5 svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.3));
}



/* --- Reproductor Global Principal --- */

.player-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.2); /* Blanco con 20% de opacidad */
    backdrop-filter: blur(10px); /* Efecto blur de 10px */
    -webkit-backdrop-filter: blur(10px); /* Para compatibilidad con Safari */
    height: 80px; /* Alto fijo del reproductor */
    z-index: 1000;
    display: flex; /* Contenedor principal es flex */
    align-items: center; /* Centra verticalmente el player-content */
    justify-content: center; /* Centra horizontalmente el player-content */
    padding: 0 15px; /* Padding horizontal por defecto */
    box-sizing: border-box;
    border-top: solid 0.7px rgba(255, 255, 255, 0.1);
   
}

/* --- Compatibilidad para botones play con clip-path en iOS --- */
.play-btn,
.play-btn.playing {
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.play-btn.playing {
  -webkit-clip-path: polygon(0 0, 50% 0, 50% 100%, 0% 100%);
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0% 100%);
}

.player-content {
    display: flex; /* Convierte el contenido en un contenedor flex */
    align-items: center; /* Alinea los elementos verticalmente al centro */
    justify-content: space-between; /* Distribuye el espacio entre los bloques */
    width: 100%; /* Ocupa todo el ancho disponible */
    max-width: 1200px; /* Límite de ancho para el reproductor completo */
    gap: 15px; /* Espacio entre los bloques principales */
}

/* --- Izquierda: Controles Principales --- */
.player-controls {
    display: flex;
    align-items: center;
    gap: 3px; /* Espacio más junto entre botones */
    flex-shrink: 0; /* Evita que los botones se encojan */
}

.player-controls button {
    background: transparent;
    color: rgb(0, 0, 0);
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
}



.player-controls button:active {
    transform: scale(0.9);
}

#play-btn.playing {
    color: #000000;
}

/* --- Centro Izquierdo: Control de Volumen (icono y slider) --- */
.volume-master {
    position: relative; /* Necesario para posicionar el slider */
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 5px; /* Pequeño espacio con la barra de progreso */
}

.circulo-play-barra {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffb701; /* Fondo del círculo */
  border-radius: 50%; /* Hace que el contenedor sea un círculo */
  
}

.volume-icon {
    /* Estilos para el SVG del parlante */
    width: 24px; /* Tamaño del icono SVG */
    height: 24px;
    color: #ffb701; /* Color del icono SVG (controlado por CSS) */
    cursor: pointer;
    transition: color 0.2s ease;
    display: block; /* Asegura que se muestre correctamente */
}

.volume-icon:hover {
    color: #555555; /* Cambia de color al pasar el cursor */
}

.volume-control {
    position: absolute;
    bottom: 100%; /* Aparece justo encima del icono */
    left: 50%;
    transform: translateX(-50%) translateY(-10px); /* Centra y eleva ligeramente */
    background: #ffffff;
    padding: 10px 8px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(200, 200, 200, 0.4);
    display: none; /* OCULTAR POR DEFECTO */
    flex-direction: column; /* El slider puede estar vertical si se desea */
    transform: translateX(-50%) translateY(-40px) rotate(90deg);
    opacity: 0; /* Para la transición de fade */
    visibility: hidden; /* Para asegurar que no interactúe cuando está oculto */
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    pointer-events: none; /* Permite clicks a través cuando está oculto */
    z-index: 1001; /* Asegura que esté por encima de otros elementos */
}

.volume-master:hover .volume-control {
    display: flex; /* MOSTRAR al pasar el cursor sobre el contenedor padre */
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-30px) rotate(-90deg); /* Vuelve a su posición final */
    pointer-events: all; /* Permite interacción al mostrar */
}

.volume-control input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 80px; /* Ancho del slider */
    height: 3px;
    background: #bbbbbb;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
}

.volume-control input[type="range"]::-webkit-slider-runnable-track {
    height: 4px;
    background: #999;
    border-radius: 5px;
}

.volume-control input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #1e1e1e;
    cursor: pointer;
    margin-top: -4px;
}

.volume-control input[type="range"]::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #aeaeae;
    cursor: pointer;
    border: none;
}

.volume-control input[type="range"]::-moz-range-track {
    background: #999;
    height: 3px;
    border-radius: 5px;
}

/* --- Centro: Barra de Progreso y Tiempos --- */
.progress-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1; /* Permite que la barra de progreso ocupe el espacio central */
    gap: 3px;
    min-width: 150px; /* Ancho mínimo para que no se achique demasiado */
}

#progress-bar {
    width: 100%; /* La barra ocupa el 100% de su contenedor (progress-section) */
    max-width: 700px; /* Límite para que no sea excesivamente larga */
    -webkit-appearance: none;
    appearance: none;
    height: 3px;
    background: linear-gradient(to right, #282828 0%, #2d2d2d 0%, #555 0%, #555 100%);
    outline: none;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
}

#progress-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background-color: #ffb701;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    transition: background-color 0.2s ease;
}

#progress-bar::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background-color: #ffb701;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    transition: background-color 0.2s ease;
    border: none;
}

#progress-bar::-webkit-slider-thumb:hover,
#progress-bar::-moz-range-thumb:hover {
    background-color: #454545;
}

.time-display {
    font-size: 14px;
    color: #353535;
    width: 50px; /* Tiempos ocupan el 100% de su contenedor */
    display: flex;
    justify-content: space-between;
    padding: 0;
}

#current-time {
    color: #353535;
}

/* --- Derecha: Cover e Información del Track --- */
.player-info {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 150px;
    flex-shrink: 0; /* Evita que se encoja */
    max-width: 300px; /* Límite de ancho para que no ocupe demasiado */
    overflow: hidden; /* Oculta el texto que se desborda */
}

.player-cover {
    width: 50px;
    height: 50px;
    border: 1px solid #6f6f6f;
    object-fit: cover;
    display: none; /* Se mostrará con JS cuando haya cover */
    flex-shrink: 0;
}



.track-info {
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #353535;
}

.track-info div:first-child {
    font-weight: bold;
    font-size: 15px;
    color: #353535;
}

#track-count {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 12px;
  color: #353535;
  margin-left: 10px;
  min-width: 36px;
  text-align: right;
  font-weight: bold;
  white-space: nowrap;
  align-self: center; /* Centrado vertical dentro del flex padre */
}


/* PIE DE PAGINA */

.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;

}

 /* 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;
  
}



/* ========================================== FIN DE ESTILOS GENERALES ============================================ */

/* ========================================== ESTILOS PAGINA GENEROS ============================================ */


/* GRILLA DE VINILOS */

.vinilos-grid-2 {
  grid-row: 1;
  display: flex;
  flex-direction: column;
  width: 100%;            /* ancho del contenedor */
  margin-top: 80px;
 
}

.vinilos-grid-inner-2 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  width: 1300px;
  margin-top: 40px;
  
}

/* ========================================== FIN ESTILOS PAGINA GENEROS ============================================ */

/* ========================================== ESTILOS PAGINA INDEX ============================================ */

.vinilos-grid {
  grid-row: 1;
  display: flex;
  flex-direction: column;
  width: 100%;            /* ancho del contenedor */
  margin-bottom: 30px;
  margin-top: 30px;
  }


.vinilos-grid-techno {
 grid-row: 2;
  display: flex;
  flex-direction: column;
  width: 100%;            /* ancho del contenedor */
  margin-bottom: 30px;
 }


.vinilos-grid-classic {
   grid-row: 3;
   display: flex;
   flex-direction: column;
   width: 100%;            /* ancho del contenedor */
   margin-bottom: 30px;
   }

.vinilos-grid-ofertas {
grid-row: 4;
  display: flex;
  flex-direction: column;
  width: 100%;            /* ancho del contenedor */
  margin-bottom: 30px;
  }

.vinilos-grid-usados {
grid-row: 4;
  display: flex;
  flex-direction: column;
  width: 100%;            /* ancho del contenedor */
  margin-bottom: 30px;
  background-color: #eef5fa;
  border-radius: 5px;
  box-shadow: inset 0px 0px 60px rgba(46, 104, 146, 0.2);
  }

.vinilos-grid-accesorios {
  grid-row: 5;
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  padding-bottom: 50px;
  width: 100%;            /* ancho del contenedor */
 }

/* Cada item del carrusel */
.carrusel-item {
  flex: 0 0 auto;
  width: 120px;        /* ancho de cada portada */
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Imagen de portada dentro del carrusel */
.carrusel-portada {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 5px;
}
.titulo-boton-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
}

/* Título arriba */
.nuevos-house {
  font-family: "Lato", sans-serif;
  font-weight: 450;
  font-style: normal;
  font-size: 16px;
  margin-bottom: 0; /* Elimina el margen inferior original */
 
  padding: 0 5px 0 5px;
  height: 50px;
  align-items: center;     /* centra vertical */
  border-radius: 5px;
  color: #313131;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  
}

.ver-mas-house {
  display: flex;
  justify-content: flex-end;
  width: auto;
  align-items: center; /* Añade esta línea para centrar verticalmente */
}

.btn-ver-mas {
  display: inline-flex; /* Cambia a inline-flex para mejor alineación */
  align-items: center; /* Centra verticalmente los elementos internos */
  padding: 7px;
  color: #fff;
  cursor: pointer;
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  background-color: #5d93bd;
  border-radius: 3px;
  /* Añade estas propiedades para responsive: */
  flex-wrap: nowrap; /* Evita que se separen en múltiples líneas */
  white-space: nowrap; /* Evita que el texto se divida */
  border: solid .7px rgba(19, 45, 54, 0.501);
}

.btn-ver-mas svg {
 flex-shrink: 0; /* ¡IMPORTANTE! Evita que SVG se reduzca */
  vertical-align: middle;
}

.btn-ver-mas:hover {
  background-color: #67a55a; /* cambio de color al pasar el cursor */
  color: #fff;
}

/* Contenedor del carrusel */
.vinilos-carrusel {
  position: relative;
  overflow: hidden; /* Oculta scroll nativo */
  width: 1300px;
  padding-bottom: 5px;
  margin-bottom: 0;
}

.vinilos-carrusel-techno {
  position: relative;
  overflow: hidden; /* Oculta scroll nativo */
  width: 1300px;
  padding-bottom: 5px;
}

.vinilos-carrusel-classic {
  position: relative;
  overflow: hidden; /* Oculta scroll nativo */
  width: 1300px;
  padding-bottom: 5px;
}

.vinilos-carrusel-ofertas {
  position: relative;
  overflow: hidden; /* Oculta scroll nativo */
  width: 1300px;
  padding-bottom: 5px;
  
}

.vinilos-carrusel-usados {
  position: relative;
  overflow: hidden; /* Oculta scroll nativo */
  width: 1300px;
  padding-bottom: 5px;
  
}


.accesorios-carrusel {
  position: relative;
  overflow: hidden; /* Oculta scroll nativo */
  width: 1300px;
  padding-bottom: 5px;
 
}


/* Contenedor interno que hace scroll */
.vinilos-grid-inner {
  display: flex;
  gap: 20px; /* separacion entre vinilos */
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
  }

/* Oculta barra de scroll nativa */
.vinilos-grid-inner::-webkit-scrollbar {
  display: none;
}

/* Botones de navegación */
.carrusel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  border: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.4); /* Blanco con 20% de opacidad */
  backdrop-filter: blur(5px); /* Efecto blur de 10px */
  -webkit-backdrop-filter: blur(5px); /* Para compatibilidad con Safari */
  box-shadow: 0 3px 6px rgba(200, 200, 200, 0.5);
}

.carrusel-btn.left {
  left: 5px;
}

.carrusel-btn.right {
  right: 5px;
}


/* Botones de navegación */
.carrusel-btn-techno {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  border: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.2); /* Blanco con 20% de opacidad */
    backdrop-filter: blur(5px); /* Efecto blur de 10px */
    -webkit-backdrop-filter: blur(5px); /* Para compatibilidad con Safari */
  box-shadow: 0 3px 6px rgba(200, 200, 200, 0.5);
}

.carrusel-btn-techno.left {
  left: 5px;
}

.carrusel-btn-techno.right {
  right: 5px;
}

/* Botones de navegación */
.carrusel-btn-classic {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  border: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.2); /* Blanco con 20% de opacidad */
    backdrop-filter: blur(5px); /* Efecto blur de 10px */
    -webkit-backdrop-filter: blur(5px); /* Para compatibilidad con Safari */
  box-shadow: 0 3px 6px rgba(200, 200, 200, 0.5);
}

.carrusel-btn-classic.left {
  left: 5px;
}

.carrusel-btn-classic.right {
  right: 5px;
}

/* Botones de navegación */
.carrusel-btn-ofertas {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  border: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.2); /* Blanco con 20% de opacidad */
    backdrop-filter: blur(5px); /* Efecto blur de 10px */
    -webkit-backdrop-filter: blur(5px); /* Para compatibilidad con Safari */
  box-shadow: 0 3px 6px rgba(200, 200, 200, 0.5);
}

.carrusel-btn-ofertas.left {
  left: 5px;
}

.carrusel-btn-ofertas.right {
  right: 5px;
}

.carrusel-btn-usados {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  border: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.2); /* Blanco con 20% de opacidad */
    backdrop-filter: blur(5px); /* Efecto blur de 10px */
    -webkit-backdrop-filter: blur(5px); /* Para compatibilidad con Safari */
  box-shadow: 0 3px 6px rgba(200, 200, 200, 0.5);
}

.carrusel-btn-usados.left {
  left: 5px;
}

.carrusel-btn-usados.right {
  right: 5px;
}




/* Botones de navegación */
.carrusel-btn-accesorios {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  border: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.2); /* Blanco con 20% de opacidad */
  backdrop-filter: blur(5px); /* Efecto blur de 10px */
    -webkit-backdrop-filter: blur(5px); /* Para compatibilidad con Safari */
  box-shadow: 0 3px 6px rgba(200, 200, 200, 0.5);
}

.carrusel-btn-accesorios.left {
  left: 5px;
}

.carrusel-btn-accesorios.right {
  right: 5px;
}



/* ========================================== FIN DE ESTILOS PAGINA INDEX ============================================ */





/* ============================================= RESPONSIVOS GENERALES =========================================== */

/* MENU BUSQUEDA */

@media (max-width: 1024px) {
    .search-dropdown {
        position: fixed;
        top: 130px;
        left: 50%;
        transform: translateX(-50%);
        width: 95vw;
        max-width: 500px;
        min-width: unset;
        z-index: 2000;
        overflow: visible;
        margin-top: 50px;
       }

    .genres-grid {
        grid-template-columns: repeat(3, 1fr);
        z-index: 2000;
        
    }

 .menu-scroll-container {
    justify-content: flex-start;
  }
}


/* DESTACADOS - GRID GENERAL - ETC */

@media (max-width: 768px) {
.ventas-wsp {
    justify-content: center; /* centrado en pantalla */
    margin-top:70px;
   padding: 0;
   border: 0;
   display: none; 
   
  }

.ventas-wsp-novedades {
    justify-content: center; /* centrado en pantalla */
    margin-top: 5px;
   padding: 0;
   border: 0;
   
  }

  .letra {
    font-size: 16px;    /* un poquito más chica */
    padding: 8px 16px;  /* menos padding */
  }

  .letra::after {
    right: -12px; 
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 12px solid #27B43E;
  }

  .vector img {
    width: 35px;  /* icono WhatsApp más chico */
    height: 35px;
  }

.novedades-cajon2 {
    justify-content: center; /* centrado en pantalla */
    margin-bottom: 5px;
    padding: 5px;
    border: 0;
   margin-top: 70px;
   }


.accesorios-carrusel {
width: 100%;
}

  /* Vinilos grid */
  .vinilos-grid {
    width: 100%;
    display: flex;
    flex-direction: column; /* hijos de arriba hacia abajo */
    align-items: center;    /* centra título y carrusel */
    overflow-x: visible;    /* para que botones no se corten */
    -webkit-overflow-scrolling: touch; /* scroll suave en iOS */
    padding: 10px 0 15px; /* espacio arriba y abajo */
    margin-top: 0;
    margin-bottom: 0;
     background-color: #2c424e;
  }

 .vinilos-grid-techno {
    width: 100%;
    display: flex;
    flex-direction: column; /* hijos de arriba hacia abajo */
    align-items: center;    /* centra título y carrusel */
    overflow-x: visible;    /* para que botones no se corten */
    -webkit-overflow-scrolling: touch; /* scroll suave en iOS */
    padding: 10px 0 15px; /* espacio arriba y abajo */
    margin-bottom: 0;
    background-color: #2c424e;
   
  }

 .vinilos-grid-classic {
    width: 100%;
    display: flex;
    flex-direction: column; /* hijos de arriba hacia abajo */
    align-items: center;    /* centra título y carrusel */
    overflow-x: visible;    /* para que botones no se corten */
    -webkit-overflow-scrolling: touch; /* scroll suave en iOS */
    padding: 10px 0 15px; /* espacio arriba y abajo */
    margin-bottom: 0;
    background-color: #2c424e;
  }

 .vinilos-grid-ofertas {
    width: 100%;
    display: flex;
    flex-direction: column; /* hijos de arriba hacia abajo */
    align-items: center;    /* centra título y carrusel */
    overflow-x: visible;    /* para que botones no se corten */
    -webkit-overflow-scrolling: touch; /* scroll suave en iOS */
    padding: 10px 0 15px; /* espacio arriba y abajo */
    margin-bottom: 0;
    background-color: #2c424e;
  }

 .vinilos-grid-accesorios {
    width: 100%;
    display: flex;
    flex-direction: column; /* hijos de arriba hacia abajo */
    align-items: center;    /* centra título y carrusel */
    overflow-x: visible;    /* para que botones no se corten */
    -webkit-overflow-scrolling: touch; /* scroll suave en iOS */
    padding: 10px 0 15px; /* espacio arriba y abajo */
    margin-bottom: 0;
  }


/* CONTENEDOR GENERAL */


  /* Título "Nuevos Ingresos House" */
  .nuevos-house {
    width: 100%;
    font-size: 20px;
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: normal;
    text-align: left;
    color: #fff;
    padding: 5px 10px; 
    border-radius: 0;
    margin-top: 0;
  }

.titulo-boton-container {
height:45px;
background-color: #2c424e;
width: 100%;
margin: 0;
}


  /* Contenedor del carrusel */
  .vinilos-carrusel {
    width: 100%;           /* ocupa todo el ancho del móvil */
    position: relative;
    overflow: hidden;      /* oculta scroll nativo */
    padding-left: 10px;    /* espacio lateral opcional */
    padding-right: 10px;
    border: none;
     background-color: #fff;
  }

 .vinilos-carrusel-techno {
    width: 100%;           /* ocupa todo el ancho del móvil */
    position: relative;
    overflow: hidden;      /* oculta scroll nativo */
    padding-left: 10px;    /* espacio lateral opcional */
    padding-right: 10px;
    border: none;
     background-color: #fff;
  }

 .vinilos-carrusel-classic {
    width: 100%;           /* ocupa todo el ancho del móvil */
    position: relative;
    overflow: hidden;      /* oculta scroll nativo */
    padding-left: 10px;    /* espacio lateral opcional */
    padding-right: 10px;
    border: none;
     background-color: #fff;
  }

 .vinilos-carrusel-ofertas {
    width: 100%;           /* ocupa todo el ancho del móvil */
    position: relative;
    overflow: hidden;      /* oculta scroll nativo */
    padding-left: 10px;    /* espacio lateral opcional */
    padding-right: 10px;
    border: none;
     background-color: #fff;
  }

 .vinilos-carrusel-usados {
    width: 100%;           /* ocupa todo el ancho del móvil */
    position: relative;
    overflow: hidden;      /* oculta scroll nativo */
    padding-left: 10px;    /* espacio lateral opcional */
    padding-right: 10px;
    border: none;
  }

 .vinilos-carrusel-accesorios {
    width: 100%;           /* ocupa todo el ancho del móvil */
    position: relative;
    overflow: hidden;      /* oculta scroll nativo */
    padding-left: 10px;    /* espacio lateral opcional */
    padding-right: 10px;
  }



  /* Contenedor interno con scroll horizontal */
  .vinilos-grid-inner {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0;
  }

  /* Oculta scroll nativo */
  .vinilos-grid-inner::-webkit-scrollbar {
    display: none;
  }

  /* Botones del carrusel más pequeños en móvil */
  .carrusel-btn {
    width: 30px;
    height: 30px;
  }

 .carrusel-btn-techno {
    width: 30px;
    height: 30px;
  }

 .carrusel-btn-classic {
    width: 30px;
    height: 30px;
  }

 .carrusel-btn-ofertas {
    width: 30px;
    height: 30px;
  }

 .carrusel-btn-usados {
    width: 30px;
    height: 30px;
  }

  .carrusel-btn.left {
    left: 5px;
  }

  .carrusel-btn.right {
    right: 5px;
  }

.carrusel-btn-techno.left {
    left: 5px;
  }

  .carrusel-btn-techno.right {
    right: 5px;
  }

.carrusel-btn-classic.left {
    left: 5px;
  }

  .carrusel-btn-classic.right {
    right: 5px;
  }

.carrusel-btn-ofertas.left {
    left: 5px;
  }

  .carrusel-btn-ofertas.right {
    right: 5px;
  }

.carrusel-btn-usados.left {
    left: 5px;
  }

  .carrusel-btn-usados.right {
    right: 5px;
  }


.carrusel-btn-accesorios.left {
    left: 5px;
  }

  .carrusel-btn-accesorios.right {
    right: 5px;
  }

  /* Botón "Ver más House" */
  .ver-mas-house {
    width: 100%;
    text-align: left;
    padding-left: 10px;
    margin-top: 1px;
    
  }

  .btn-ver-mas {
    color: #fff;
    cursor: pointer;
    font-family: "Lato", sans-serif;
    font-size: 16px;
    transition: background-color 0.3s ease;
    display: inline-block;
    margin-right: 5px;
   background-color: transparent;
   margin-top: 20px;
  }
 
.btn-ver-mas:hover {
background-color: transparent;

}


/* 4. Grid de vinilos en 2 columnas alineadas */
   /* Grilla: 2 columnas */
  .vinilos-grid-inner-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    justify-content: center;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    margin-top: 5px;
  }

  .vinilo {
    margin: 5px 5px; /* Centrado horizontal */
    }


 .destacados {
 padding: 17px;
 border-radius: 0;
 background-color: #2c424e;
 color: #fff;
 height: 40px;
 padding: 10px
}

.destacados-2 {
 padding: 17px;
 border-radius: 0;
 background-color: #2c424e;
 color: #fff;
 height: 40px;
 padding: 10px
}

.destacados-3 {
 padding: 17px;
 border-radius: 0;
 background-color: #2c424e;
 color: #fff;
 height: 40px;
 padding: 10px
}


.vinilos-grid-2 {
 width: 100%;
margin-top: 0;
}

}

/* --- REPRODUCTOR Y DEMAS --- */

 @media (max-width: 767px) {
  .player-container {
    height: 100px;
    padding: 8px 0 4px 0;
    flex-direction: column;
  }

  .player-content {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 0 8px;
    max-width: 100vw;
  }

  .player-controls {
    order: 1;
  }

  .time-display {
    order: 2;
  }

  .player-info {
    order: 3;
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    gap: 6px;
  }

  .player-cover {
    display: block;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    margin-right: 4px;
    border-radius: 3px;

  }

.player-cover[src=""] {
  display: none !important;
}


  .track-info {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .progress-section {
    order: 4;
    width: 100%;
    padding: 6px 8px;
  }

  .volume-master {
    display: none !important;
  }
}


/* Tabletas (desde 767px hasta 991px) - Muestra el control de volumen en hover */
@media (min-width: 767px) and (max-width: 991px) {
    .player-container {
        padding: 0 15px;
        height: 100px;
    }


    .player-content {
        gap: 20px; 
    }
    
    .player-controls button {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .player-info {
        min-width: 200px;
        max-width: 250px;
    }
}

/* Escritorio (desde 992px en adelante) - Comportamiento normal */
@media (min-width: 992px) {
    .player-container {
        padding: 0 15px;
        height: 80px;
    }

    .player-controls button {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
}


@media (max-width: 767px) {
  .track-info {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90px; /* Ajusta este valor según el espacio disponible */
    display: block;
  }
}


@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;
  }

/* responsivo final */

@media (max-width: 768px) {

 .ver-mas { 
width: 100%;
padding: 10px;
margin-top: 20px;
margin-bottom: 20px;
}

#load-more-btn {
padding: 10px;
width: 120px;
height: 40px;
}

/* 2. Reubicar y expandir columnas-izq */

  .contenedor-vinilos {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0;
  }

  .columnas-izq {
    order: 3;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0;
  }

  .columna-izq1,
  .columna-izq2,
  .columna-izq3 {
    width: 100%;
    border-radius: 0;
    box-sizing: border-box;
    gap: 20px;
  }

  .destacados,
  .destacados-2,
  .destacados-3 {
    font-size: 25px;
    font-weight: 300;
    margin: 10px 0 10px;
    text-align: center;
    background-color: #2989bc;
    width: 100%;
    border-radius: 0;
  }

  .destacados-fila {
    display: flex;
    justify-content: center;
    width: 100%;
  }

.destacado-titulo { 
 width: 220px;
}

.destacado-cover {
  width: 70px;
  height: 70px;
}

destacado-item {

height: 70px;
}

}


/* Tablets y pantallas medianas */
/* Móvil - Mantenemos comportamiento original */
@media (max-width: 768px) {
  .vinilos-grid-ingresos {
    overflow-x: auto; /* Scroll normal en móvil */
    -webkit-overflow-scrolling: touch;
  }
  
  .scroll-btn {
    display: none; /* Ocultamos inicialmente en móvil */
  }
  
  .scroll-btn.active {
    display: flex; /* Solo mostramos cuando hay scroll disponible */
  }
}
/* nodevades */


@media (max-width: 768px) {

   .novedades-cajon {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    margin-top: 0;       /* Centra horizontalmente */
    margin-left: 0;       /* Anula margen de escritorio */
  }

  }

  .novedades-cajon .nombre-pagina {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 0;
    margin-left: 0; 
   
  }

.nombre-pagina2, .nombre-pagina3, .nombre-pagina6, .nombre-pagina7{
font-size: 10px;
}

.nombre-pagina4, .nombre-pagina5 {
display: none;
}

}


/* agregado responsivo */


@media (max-width: 768px) {


  /* Aumentar tamaño visual de los vinilos del grid */
  .vinilo {
    max-width: 175px;
    min-height: 260px;
  }

  .vinilo img {
    width: 175px;
    height: 175px;
  }

  /* Hacer que los destacados ocupen más ancho */


 

  .destacado-info {
    width: 100%;
}

.play-btn-destacado {
   margin-left: 20px;
}
}


@media (max-width: 768) {
       .contenedor-principal {
       max-width: 100%;
      
        }
}


/* --- 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;
}
}



/* Añade esto al final de tu CSS */
.scroll-btn {
  display: flex; /* Cambia de 'none' a 'flex' inicialmente */
  opacity: 0; /* Inicia transparente */
  transition: opacity 0.3s ease;
}

.scroll-btn.show {
  opacity: 0.8; /* Aparece cuando es necesario */
}

/* Modifica tu función checkButtons para usar clases */
.btnLeft.classList.toggle('show', hasOverflow && !atStart);
btnRight.classList.toggle('show', hasOverflow && !atEnd);
    <div class="vinilos-grid-inner-2" id="vinilos">
      <!-- items de vinilos -->
    </div>
  </div>