/*html {
    font-family: "Montserrat", sans-serif;
    color: rgb(34 34 34);
    background: linear-gradient(rgb(255, 255, 255), rgb(250, 250, 250));
  }*/
  
  html, body{
    max-width: 100% !important;
    overflow-x: hidden !important;
    min-height: auto;    
}
  .container {
    border-radius: 30px;
  }
  
  .container > * {
    padding: 40px 15px;
  }
  
  .article {
    display: flex;
    flex-wrap: wrap;
  }
  
  .article > * {
    margin: 0 auto;
    width: clamp(400px, 40%, 100%);
    text-align: center;
  }
  
  .dot {
    height: 15px;
    width: 15px;
    background-color: rgb(34 34 34);
    border-radius: 50px;
    display: inline-block;
    margin: 15px;
    cursor: pointer;
    transition: 0.5s;
  }
  
  .carousel {
    position: relative;
  }

  .carousel,
  .achats {
    width: clamp(200px, 100%, 550px);
    margin: 0 auto;
  }
  
  .carousel > .img {
    position: relative;
    width: 100%;
    height: calc(100vh - 200px); /* Altura dinámica */
    max-height: 700px; /* Altura máxima */
    overflow: hidden;
  }
  
  .carousel > .img > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0; /* Ocultar todas las imágenes inicialmente */
    visibility: hidden; /* Asegurar que solo la imagen activa esté visible */
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .carousel > .img > img.active {
    opacity: 1; /* Mostrar solo la imagen activa */
    visibility: visible; /* Hacerla visible */
    z-index: 1; /* Asegurar que esté encima de otras imágenes */
  }

  .span-cont-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    position: relative;
  }

  .arrow-left,
  .arrow-right {
    background: none;
    border: none;
    font-size: 20px;
    color: #d9fe00;
    cursor: pointer;
    padding: 0 10px;
  }
  
  .span-cont {
    display: flex;
    overflow-x: scroll;
    gap: 10px;
    flex-grow: 1;
    scrollbar-width: none; /* Ocultar scrollbar en navegadores compatibles */
  }
  
  .span-cont::-webkit-scrollbar {
    display: none; /* Ocultar scrollbar en navegadores webkit */
  }
  
  .thumbnail {
    min-width: 70px;
    min-height: 70px;
    background-size: cover;
    background-position: center;
    border: 2px solid rgb(34, 34, 34);
    transition: border 0.3s;
    cursor: pointer;
  }
  
  .zoom-container {
    position: absolute; /* Encimado */
    top: 80px; /* Ajusta según la posición deseada */
    left: 830px; /* Para colocarlo a la derecha del contenido */
    width: 700px; /* Ancho del contenedor del zoom */
    height: 700px; /* Alto del contenedor del zoom */
    overflow: hidden;
    border: 2px solid #ccc;
    background: #000;
    z-index: 1000; /* Asegura que esté encima de todo */
    display: none; /* Por defecto, oculto */
  }

  @media (max-width: 1366px) {
    /* Estilos para laptops con resolución 1366px o menor */
    .zoom-container{
      left: 720px;
      width: 600px; /* Ancho del contenedor del zoom */
      height: 500px; /* Alto del contenedor del zoom */
    }
  }
  
  .zoom-view {
    width: 100%;
    height: 100%;
    transform: scale(0);
    background-size: 200%;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
  }

  /*Ventana modal con zoom product page*/
  .dxt-modal{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  .dxt-modal-content{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    width: 70%;
    height: 97%;
  }
  
  .modal-zoom-container {
    position: relative;
    overflow: hidden;
    width: 90%;
    height: 90%;
  }
  
  .modal-img {
    transition: transform 0.3s ease;
    cursor: zoom-in;
    max-width: 90%;
    max-height: 90%;
  }
  
  .modal-zoom-container.zooming .modal-img {
    transform: scale(1.5);
  }
  
  .dxt-modal .closedxt{
    position: absolute;
    top: 10px;
    right: 20px;
    color: white;
    font-size: 24px;
    cursor: pointer;
  }
  
  .dxt-modal .prev, .dxt-modal .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 2px solid #d9fe00;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px 10px;
    color: #d9fe00;
  }
  
  .dxt-modal .prev {
    left: 10px;
  }
  
  .dxt-modal .next {
    right: 10px;
  }
  
  /* Desactivar hover zoom en móviles */
  @media (max-width: 768px) {
    .carousel > .img{
      height: calc(80vh - 200px);
    }
    .span-cont-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
    }
    
    .span-cont {
      display: flex;
      overflow-x: scroll;
      gap: 5px;
      padding: 0 10px;
      scrollbar-width: none; /* Ocultar scrollbar */
    }
    
    .span-cont::-webkit-scrollbar {
      display: none;
    }
    
    .thumbnail {
      min-width: 60px; /* Reducir tamaño */
      min-height: 60px;
    }
    
    .arrow-left,
    .arrow-right {
      font-size: 16px; /* Reducir tamaño */
    }
  
    .zoom-container {
      display: none !important;
    }
  
    .dxt-modal-content{
      width: 95%;
    }
  
    .modal-zoom-container {
      margin: auto 0;
      width: 90%;
      height: 60%;
    }
  
    .dxt-modal .prev, .dxt-modal .next{
      top: 65%
    }
  
    .container-link{
      max-width: 100%;
    }
  
    .letterdxt{
      margin-top: 22px!important;
      font-size: 20px!important;
    }
  
    .description{
      font-size: 2.8vw!important;
    }
  
    .description2{
      padding: 0 10px!important;
    }
  
    .logo-section{
      margin: 0 0 30px!important;
    }
  
    .cards1{
      margin: 50px auto!important;
    }
  
    .sku{
      font-size: 16px!important;
    }
  
    .letterprice{
      font-size: 20px!important;
    }
  
    .mobile-only {
      display: block!important; /* Mostrar el botón duplicado */
    }
    
    .desktop-only {
      display: none!important; /* Ocultar el botón original */
    }
  
    .btn-pdf > img {
      width: 15%!important;
    }
  
    .btn-pdf > span{
      font-size: 16px;
    }
  }
  /*termina el estilo de la ventana modal*/

  .stars > * {
    fill: #5397b4;
    width: 20px;
  }

  .sku{
    color: #8c8c8c; 
    text-align: left; 
    font-size: 20px;
  }

  .letterprice{
    font-size: 32px; 
    color: white; 
    text-align: left;
  }
  
  button {
    padding: 10px 20px;
    border: 2px solid #d9fe00;
    background: #d9fe00;
    color: #000;
    font-size: 15px;
    transition: 0.5s ease;
    margin: 20px 0;
    font-weight: 500;
  }
  
  button:hover {
    transition: 0.5s ease;
    background: none;
    border: 2px solid #d9fe00;
    color: #fff;
  }
  
  .tech {
    border-top: 1px solid rgb(200 200 200);
    display: block;
    text-align: center;
  }
  
  .tech > .grid > svg {
    height: 80px;
    width: 80px;
    fill: rgb(34 34 34);
  }
  
  .tech > .grid {
    display: grid;
    grid-gap: 30px;
    grid: auto auto auto / auto auto auto auto;
    width: clamp(100px, 100%, 700px);
    margin: auto;
    overflow: auto;
  }
  .tech > .grid > * {
    margin: auto;
  }
  
  ::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  
  ::-webkit-scrollbar-track {
    background: rgb(200, 200, 200);
  }
  
  ::-webkit-scrollbar-thumb {
    background: rgb(60, 60, 60);
    border-radius: 360px;
  }

  .description2{
    padding: 0 65px;
  }
  
  .description > p {
    line-height: 30px;
    text-align: justify;
  }
  
  .description > h2 {
    line-height: 40px;
  }
  
  .letterdxt{
    color: #d9fe00;
    text-align: left;
    margin-top: 75px;
    font-size: 32px;
  }
  
  .letterdxt2{
      color: #d9fe00;
      text-align: center;
      margin: 70px 0;
  }
  
  .titlemkp{
    width: 100%;
    padding: 50px 0;
    color: #fff;
    text-align: center;
  }
  
  .mkp{
    width: 100%;
  }
  
  .cases {
    color: #e4e4e4;
    margin: 90px 0;
    display: flex;
    flex-direction: column; /* Apila las partes en columna */
    height: 80vh; /* Ocupa toda la altura de la pantalla */
    overflow-y: scroll; /* Permite el desplazamiento vertical */
    scroll-snap-type: y mandatory; /* Hace que el scroll se detenga en cada parte */
    scroll-behavior: smooth; /* Desplazamiento suave */
  }
  
  .slid1, .slid2, .slid3 {
    flex: 0 0 100%; /* Cada parte ocupa el 100% del contenedor */
    scroll-snap-align: start; /* Alinea al principio de la vista */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .titlecases, .titlecases2 {
    font-family: Montserrat;
    margin: 0;
    color: #e4e4e4;
    padding: 50px;
    
    /* Centramos horizontal y verticalmente */
    display: flex; 
    align-items: center; 
    justify-content: center;
  
    /* Altura completa del contenedor padre */
    height: 100%;
    text-align: left; /* Opcional: centra el texto dentro del párrafo */
  }
  
  .imgcases {
    margin: 50px 0;
    width: 80%;
  }
  
  .btncases1, .btncases2 {
    margin: 10px 0;
  }
  
  .cases::-webkit-scrollbar {
    display: none; /* Oculta la barra de desplazamiento */
  }
  
 /* Contenedor Principal */
 .image-container {
  position: relative;
  max-width: 800px; /* Máximo ancho para la imagen */
  margin: 0 auto;
  width: 100%; /* Se ajusta al contenedor */
  opacity: 0; /* Oculta inicialmente */
  transform: translateY(20px); /* Desplazamiento inicial */
  transition: opacity 0.6s ease, transform 0.6s ease; /* Transición */
}

.image-container.visible {
  opacity: 1; /* Visible cuando entra al viewport */
  transform: translateY(0); /* Vuelve a la posición original */
}


.pc-image {
  width: 100%;
  height: auto; /* Mantiene la proporción */
  display: block;
}

/* Texto */
  .description {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7); /* Fondo semitransparente */
    color: #fff!important;
    font-weight: 600;
    padding: 1%; /* Relativo al tamaño del contenedor */
    font-size: 1vw; /* Relativo al ancho de la ventana */
    opacity: 0;
    transform: scaleX(0); /* Animación inicial */
    transform-origin: left; /* Punto de inicio para la animación */
    transition: opacity 0.5s ease, transform 0.8s ease;
    z-index: 20;
  }

.image-container.visible .description {
  opacity: 1; /* Hacerlo visible */
  transform: scaleX(1); /* Expandir horizontalmente como las flechas */
  transition-delay: 1.5s; /* Aparece después de las flechas */
}

/* Animación para el texto */
@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Posiciones del texto (ahora proporcionales) */
.description[data-spot="cpu"] {
  top: 24.5%;
  left: 9%;
  width: 46%;
  height: 59%;
  align-content: center;
  background-color:  rgba(76, 76, 76, 0.5);
    border: 2px solid #4c4c4c;
}

.description[data-spot="gpu"] {
  top: 69%;
  left: 8.2%;
  width: 75%;
  height: 11%;
  align-content: center;
  background-color:  rgba(76, 76, 76, 0.5);
    border: 2px solid #4c4c4c;
}

.description[data-spot="ram"] {
  top: 20.5%;
  left: 85%;
  width: 9%;
  height: 33%;
  align-content: center;
  background-color:  rgba(76, 76, 76, 0.5);
    border: 2px solid #4c4c4c;
}

.description[data-spot="ventilador"] {
  top: 53.8%;
  left: 85%;
  width: 9%;
  height: 34%;
  align-content: center;
  background-color:  rgba(76, 76, 76, 0.5);
    border: 2px solid #4c4c4c;
}

.description[data-spot="radiador2"] {
  top: 90.5%;
  left: 97%;
  width: 79%;
  height: 5%;
  align-content: center;
  transform: rotate(-90deg)!important;
  background-color:  rgba(76, 76, 76, 0.5);
    border: 2px solid #4c4c4c;
}

.description[data-spot="ssd"] {
  top: 6.1%;
  left: 9%;
  width: 81%;
  height: 9%;
  align-content: center;
  background-color:  rgba(76, 76, 76, 0.5);
    border: 2px solid #4c4c4c;
}

.description[data-spot="psu"] {
  top: 19.5%;
  left: 5.2%;
  width: 7.7%;
  height: 36.3%;
  align-content: center;
  background-color:  rgba(76, 76, 76, 0.5);
    border: 2px solid #4c4c4c;
}

  /*estilos del titulo y el separador*/
  .custom-separator {
    width: 100%; /* Ancho completo */
    border-bottom: 1px solid rgba(255, 255, 255, 0.5); /* Grosor de 1px con menor opacidad */
  }

  /*Estilo separador 2*/
  .custom-separator2 {
    width: 100%; /* Ancho completo */
    border-top: 1px solid rgba(255, 255, 255, 0.5); /* Grosor de 1px con menor opacidad */
  }
  
  /*Imagen comienza efecto parallax*/
  /* Contenedor principal */
  .scale-img-wrapper {
    position: relative;
    overflow: hidden; /* Oculta la parte que se desborda de la imagen */
    height: 1000px; /* Ajusta la altura del contenedor */
  }
  
  /* Imagen */
  .scale-img-wrapper img {
    position: absolute; /* La imagen se posiciona relativa al contenedor */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Mantiene el aspecto de la imagen */
  }
  
  .zoom{
    margin: 0;
  }
  
  .aditional{
    width: 100%;
    display: flex; /* Activa flexbox */
    gap: 80px; /* Espacio entre imágenes (ajústalo a tu gusto) */
    align-items: center; /* Centra las imágenes verticalmente */
    justify-content: center;
    margin-bottom: 70px; /* Espacio arriba y abajo */
  }
  
  .title-espec {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600; /* Semibold */
    font-size: 3rem; /* Ajusta el tamaño según lo necesites */
    color: #d9fe00; /* Color del texto, ajusta a tu estilo */
    text-align: center; /* Opcional: centra el título */
    margin: 70px 0; /* Espacio arriba y abajo */
    width: 100%;
  }
  .technical-img{
    width: 100%;
    margin: 0px 0;
  }

  .btn-pdf {
    /*display: inline-flex;*/
    align-items: center;
    justify-content: center;
    padding: 1px 1px;
    background: none;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    /*font-weight: bold;*/
    /*border-radius: 5px;*/
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    margin: 3px 13px;
    border:none;
    text-align: left;
  }
  
  .btn-pdf:hover {
    background-color: none; /* Rojo más oscuro al pasar el mouse */
    color: #555!important;
  }
  
  .btn-pdf i {
    margin-right: 8px; /* Espaciado entre el ícono y el texto */
    font-size: 20px;
  }

  .technical-sheet {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columnas */
    gap: 20px; /* Espaciado entre elementos */
    background-color: #000; /* Fondo oscuro */
    padding: 20px;
    border-radius: 10px;
    color: #ffffff;
    margin-top: 16px;
  }
  
  .technical-sheet .item {
    display: flex; /* Alineación del ícono y texto en fila */
    align-items: center;
    gap: 10px; /* Espaciado entre ícono y texto */
  }
  
  .technical-sheet .item img {
    width: 65px; /* Tamaño del ícono */
  }
  
  .technical-sheet .item p {
    font-size: 20px; /* Tamaño del texto */
    line-height: 1.5;
    margin: 0;
    color: #ffffff;
    text-align: left;
  }
  
  @media (max-width: 768px) {
    .technical-sheet {
      grid-template-columns: 1fr; /* 1 columna */
      padding: 0!important;
      margin-top: 25px!important;
    }

    .technical-sheet .item > p{
      font-size: 16px!important;
    }

    .technical-sheet .item > img{
      max-width: 40px;
    }

    /*Estilos de las specs moviles (borde no tan pronunciado)*/
    .description[data-spot="cpu"] {
      border: 0.07px solid #4c4c4c;
    }
  
    .description[data-spot="gpu"] {
      border: 0.1px solid #4c4c4c;
    }
  
    .description[data-spot="ram"] {
      border: 0.1px solid #4c4c4c;
    }
  
    .description[data-spot="ssd"] {
      border: 0.1px solid #4c4c4c;
    }
  
    .description[data-spot="psu"] {
      border: 0.1px solid #4c4c4c;
    }

    button:hover{
      border: none;
    }
  }

  .prrf2{
    color: #fff;
    text-align: left;
    font-size: 18px;
    line-height: 1.3;
    font-family: "Montserrat", serif;
    font-weight: 300;
  }

  .filas{
    margin-top: 80px;
    width: 100%;
  }


  /* Estilos responsivos */
  @media screen and (max-width: 768px) {
    .dos:first-child {
      order: 2; /* Mueve el texto debajo de la imagen */
    }
  
    .uno:last-child {
      order: 1; /* Mueve la imagen arriba */
    }
  }

  .txt{
    padding: 50px;
  }

  /*Medidor FPS*/
  .meter {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 2em auto;
    font-size: 10px;
    transform: scale(.8);
   }
  
  .scale { 
    position: absolute;
    transform-origin: 8em 8em;
    animation: needle-ani 2000ms ease-in-out infinite alternate;
  }
  
  .scale1, .scale2, .scale3 { 
    position: absolute;
    width: 16em;
    height: 16em;
    border-radius: 50%;
    border: 1em green solid;
    transform: rotateZ(-35deg);
  }
  
  .scale1 {
    animation: gauge-color-ani 2000ms linear infinite alternate;
  }
   
  .scale2 {
    border-color: transparent;
    border-top-color: white;
    border-right-color: white;
    transform: rotateZ(44deg);
  }
  
  .scale3 {
    border-color: transparent;
    border-top-color: gray;
    border-right-color: gray;
    transform: rotateZ(48deg);
  }
  
  .scale-mask {
    position:absolute;
    top: 10em;
    background: #000;
    width: 16em;
    height: 7em;
  }
  .needle {
    width: 6em;
    margin: 0 auto;
    animation: needle-ani 2000ms ease-in-out infinite alternate;
    transform-origin: 1em 8.5em;
    transform: rotateZ(-85deg);
  }
  
  .pointer {
    position: absolute;
    top: 3em;
    left: 0;
    width: 2em;
    height: 5em;
    background: gray;
  }
  
  .pointer:after, .pointer:before {
    content: "";
    display: block;
    position: absolute;  
    top: -0.2em;
    width: 1em;
    height: 6.2em;
    background: #000;
  }
  
  .pointer:after {
    left: -0.5em; 
    transform: rotateZ(8deg);
  }
  
  .pointer:before { 
    left: 1.5em; 
    transform: rotateZ(-8deg);
  }
  
  .pivot {
    position: relative;
    top: 7.5em;
    width: 2em;
    height: 2em;
    border: .6em solid gray;
    border-radius: 50%;
  }
  
  @keyframes needle-ani {
    0% {transform: rotateZ(-60deg);}
    45% {transform: rotateZ(20deg);}
    70% {transform: rotateZ(50deg);}
    100% {transform: rotateZ(40deg);}
  }
  
  @keyframes gauge-color-ani {
    0% {border-color: #e68a00;}
    20% {border-color: #e68a00;}
    20.001% {border-color: #cccc00;}
    55% {border-color: #cccc00;}
    55.001% {border-color: green;}
    100% {border-color: green;}
  }

  /*Estilos para las garantías*/
  .warranty-section {
    font-family: 'Montserrat', serif;
    color: #fff;
    background: none;
    padding: 16px 0 0;
    border-radius: 8px;
    max-width: 100%;
    margin: auto;
  }
  
  /* Título */
  .warranty-title {
    margin-bottom: 12px;
    font-size: 20px;
    text-align: left;
  }
  
  /* Contenedor de botones */
  .warranty-options {
    display: flex;
    gap: 8px;
    width: 100%;
  }
  
  /* Botones */
  .warranty-option {
    flex-grow: 1; /* Hace que cada botón crezca uniformemente */
    text-align: center;
    padding: 8px 16px;
    border: 1px solid #555;
    background-color: transparent;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: none;
    position: relative; /* Necesario para ::after */
    overflow: hidden;
  }
  
  /* Botón seleccionado */
  .warranty-option.selected {
    background-color: #444;
    border-color: #444;
  }
  
  /* Hover */
  .warranty-option:hover {
    background-color: #555;
    border: 2px solid #555;
  }

  /* Hover: Cambia el texto del botón al precio */
  .warranty-option:hover::after {
    content: attr(data-price); /* Muestra el precio del atributo data-price */
    position: absolute;
    inset: 0; /* Ocupa todo el botón */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #555;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    transition: opacity 0.3s;
  }

  /*Estilos vídeo debajo del producto*/
  .container-link {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 30px auto;
    border: 2px solid #4c4c4c;
  }
  
  /* Fondo animado del enlace */
  .animated-link {
    display: block;
    width: 100%;
    height: 100%;
    background: url('https://cdn.shopify.com/s/files/1/0254/2144/7246/files/GuBZ-min.gif?v=1736528952') center/cover no-repeat;
    position: relative;
    text-align: center;
  }
  
  .animated-link::before {
    content: '';
    position: absolute; /* Fijo en la pantalla, no se mueve al hacer scroll */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Se asegura de que quede encima del fondo pero debajo de cualquier contenido adicional */
    pointer-events: none; /* Permite hacer clic en los elementos debajo de este overlay */
}
  /* Botón de Play */
  .play-btn {
    position: absolute;
    top: 36%;
    left: 13%;
    transform: translate(-50%, -50%);
    padding: 0;
    font-size: 17px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 3;
    width: 15%;
  }
  
  .play-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
    border: none;
  }
  
  /* Modal */
  .custom-modal {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
  }
  
  /* Contenido del Modal */
  .custom-modal-content {
    position: relative;
    width: 80%;
    max-width: 600px;
    /*background-color: #fff;
    border-radius: 10px;*/
    overflow: hidden;
    margin: auto;
    display: flex; /* Activa flexbox */
    justify-content: center; /* Centra horizontalmente */
    align-items: center; /* Centra verticalmente */
  }
  
  .custom-video {
    height: 100vh;
  }
  
  /* Botón de Cerrar */
  .custom-close {
    position: absolute;
    top: 0px;
    right: 0px;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 99;
  }
  
  .custom-close:hover {
    color: #d9fe00;
  }

  .productcontainer{
    width: clamp(200px, 100%, 550px);
    margin: 0 auto;
  }

  /*Estilos para botones de share*/ 
  .tittleshare{
    margin: auto 0;
    font-size: 20px;
  }

  .titlesugerencias{
    font-size: 20px; 
    color: #fff; 
    font-family: 'Montserrat'; 
    text-align: left;
  }

  .frame{
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    height: auto;
    width: 100%;
    position: relative;
    transition:box-shadow 0.6s cubic-bezier(.79,.21,.06,.81);
    border-radius: 10px;
    padding: 16px 0;
  }
  
  .btn1802{
    height: 35px;
    width: 35px;
    border-radius: 3px;
    /*background: #e0e5ec;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-tap-highlight-color: transparent;
    transition:box-shadow 0.6s cubic-bezier(.79,.21,.06,.81);
    font-size: 16px;
    color: #fff!important;
    text-decoration: none;
    
  }
  .btn1802:active{
    box-shadow:  4px 4px 6px 0 rgba(255,255,255,.5),
                -4px -4px 6px 0 rgba(116, 125, 136, .2), 
      inset -4px -4px 6px 0 rgba(255,255,255,.5),
      inset 4px 4px 6px 0 rgba(116, 125, 136, .3);
  }

  /*Empieza estilo sugerencias*/

  .cards1{
    width: 90%;
    position: relative;
    margin: 50px auto 0;
  }

  .card-container {
    background: none;
    border-radius: 10px;
    padding: 0 20px 0 0;
    margin: 0 auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 90%;
    position: relative;
  }

  .card {
    flex: 0 0 80%;
    max-width: 750px;
    min-height: 100px;
    margin-right: 20px;
    border-radius: 10px;
    scroll-snap-align: start;
    padding: 10px;
    text-align: left;
    color: white;
    font-size: 18px;
    background-color: #000;
    border: 2px solid #d9fe00;
  }

  .card-slider {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px; /* Asegura espacio suficiente para las flechas */
    }

  /*Estilos de los sliders productos de sugerencias*/
  .maybe{
    width: 140px;
    height: 140px;
    margin: auto;
  }

  .maytitle{
    font-size: 20px;
    color: #fff;
    text-align: left;
    margin-bottom: 3px;
    /* Nuevas propiedades para limitar a 2 líneas */
    display: -webkit-box; /* Necesario para line-clamp */
    -webkit-box-orient: vertical; /* Necesario para line-clamp */
    -webkit-line-clamp: 2; /* Limita el texto a 2 líneas */
    overflow: hidden; /* Oculta el texto que excede */
    text-overflow: ellipsis; /* Añade "..." al final del texto truncado */
    line-height: 1.5; /* Ajusta el interlineado para que el texto quede bien */
    max-height: 3em; /* Asegura que solo se muestren 2 líneas (1.5 * 2) */
  }

  .mayprice{
    font-size: 20px;
    color: #fff;
    text-align: left;
    margin-bottom: 0;
  }

  .br{
    padding: 6px;
    color: #000;
    background-color: #d9fe00;
    border: 2px solid #d9fe00;
    font-size: 18px;
    font-weight: 500;
    margin: 7px 0 0;
  }

  .arrows {
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #d9fe00;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    padding: 5px 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .left-arrow {
    position: absolute;
    left: 22px;
  }
  
  .right-arrow {
    position: absolute;
    right: 32px;
  }

  .arrow:hover, .arrow:active  {
    transition: 0.5s ease;
    background: none;
    border: none;
    color: #fff;
  }

  .buybtn{
    padding: 10px 20px;
    border: 2px solid #d9fe00;
    background: #d9fe00;
    color: #000;
    font-size: 18px;
    transition: 0.5s ease;
    margin: 20px 0;
    font-weight: 500;
    width: 100%;
  }

  .buybtn:hover {
    transition: 0.5s ease;
    background: none;
    border: 2px solid #d9fe00;
    color: #fff;
  }

  .icon-meters{
    font-size: 26px;
  }

  .ft{
    font-size: 18px;
  }

  /*estilos seccion de los logos*/
  .logo-section {
    display: grid;
    gap: 20px;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    margin: 30px 0;
  }
  
  /* Para las filas de los logos */
  .logo-row {
    display: grid;
    gap: 20px;
    justify-items: center; /* Centra los logos dentro de las celdas */
  }
  
  /* Para la fila 1 con 5 logos */
  .row-1 {
    grid-template-columns: repeat(5, 1fr); /* 5 columnas en la fila superior */
  }
  
  /* Para la fila 2 con 4 logos */
  .row-2 {
    grid-template-columns: repeat(4, 1fr); /* 4 columnas en la fila inferior */
    width: 80%;
    margin: 0 auto;
  }
  
  /* Contenedor de cada logo */
  .logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  
  /* Imagen de los logos */
  .logo-container img {
    width: 100%; /* Se adapta al contenedor */
    max-width: 200px; /* Establece un tamaño máximo */
    height: auto;
    object-fit: contain;
  }
  
  /* Para pantallas grandes (laptop o más grandes) */
  @media (min-width: 1024px) {
    .logo-section {
      grid-template-columns: 1fr; /* Una sola columna para la sección */
    }
  
    /* Se asegura que los logos se mantengan centrados */
    .row-1, .row-2 {
      justify-items: center;
    }
  
    /* Ajuste adicional para mantener las filas separadas */
    .row-1 {
      grid-template-columns: repeat(5, 1fr); /* 5 logos en la primera fila */
    }
  
    .row-2 {
      grid-template-columns: repeat(4, 1fr); /* 4 logos en la segunda fila */
      width: 80%;
      margin: 0 auto;
    }
  }
  
  /* Para pantallas móviles */
  @media (max-width: 768px) {
    .logo-section {
      grid-template-columns: 1fr; /* Una sola columna para la sección */
    }
  
    /* Ajuste de filas para dispositivos móviles */
    .row-1, .row-2 {
      grid-template-columns: repeat(3, 1fr); /* 3 logos por fila */
      gap: 10px;
    }
  
    /* Mover el primer logo de la segunda fila a la última fila de la primera fila */
    .row-2 .logo-container:nth-child(1) {
      grid-column: span 1;
    }
    
    /* Ajustar tamaño de las imágenes en móviles */
    .logo-container img {
      max-width: 100px; /* Reducir tamaño en dispositivos móviles */
    }

    .warranty-section{
      margin: 20px auto 0;;
    }

    .warranty-title{
      font-size: 16px!important;
    }

    .warranty-options{
      gap: 3px;
    }
    .warranty-option {
      font-size: 14px!important;
    }

    .buybtn{
      font-size: 18px!important;
      width: 100%;
      margin: 10px 0;
    }

    .icon-meters{
      font-size: 18px;
    }

    .arrows{
      top: 100%;
    }

    .left-arrow{
      left: 35%;
    }

    .right-arrow{
      right: 35%;
    }

    .tittlelogos{
      font-size: 18px;
    }

    .video-container{
      margin: 15px auto;
    }

    .cards1{
      margin: 30px auto;
    }

    .image-container {
      margin: 0 12px;
    }

  }

  .tittlelogos{
    color: #fff!important;
    margin: 30px;;
  }

  .percent{
    width: 100%;
  }

  .mobile-only {
    display: none; /* Oculto por defecto */
  }
  
  .desktop-only {
    display: block; /* Visible por defecto */
  }

  /*estilos del vídeo en versión mobile*/
  /* Estilos del contenedor de vídeo debajo del producto */
.video-container {
  position: relative;
  width: 100%;
  height: 120px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin: 30px auto;
  border: 2px solid #4c4c4c;
}

/* Fondo animado del enlace */
.video-trigger {
  display: block;
  width: 100%;
  height: 100%;
  background: url('https://cdn.shopify.com/s/files/1/0254/2144/7246/files/GuBZ-min.gif?v=1736528952') center/cover no-repeat;
  position: relative;
  text-align: center;
}

.video-trigger::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Botón de Play */
.video-play-btn {
  position: absolute;
  top: 36%;
  left: 13%;
  transform: translate(-50%, -50%);
  padding: 0;
  font-size: 17px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 3;
  width: 15%;
}

.video-play-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
  border: none;
}

/* Modal */
.video-modal {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
}

/* Contenido del Modal */
.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 600px;
  overflow: hidden;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-element {
  width: 90%;
}

/* Botón de Cerrar */
.video-close-btn {
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;
}

.video-close-btn:hover {
  color: #d9fe00;
}

.videoc{
  width: 100%;
  margin: 0 10px;
}

.letragab{
  color: #fff; 
  text-align: left; 
  font-size: 22px; 
  line-height: 1.3; 
  font-weight: 300;
}

.titulogab{
  color: #fff; 
  text-align: left; 
  font-size: 30px; 
  line-height: 1.3; 
  font-weight: 500;
}

@media (max-width: 768px){
  .letragab{
    font-size: 18px;
  }

  .titulogab{
    font-size: 28px;
  }
}

.upc{
  color: #8c8c8c; 
  text-align: left; 
  font-size: 20px;
}

@media(max-width: 768px){
  .upc{
    font-size: 16px!important;
  }
  .disponibilidad{
    font-size: 16px!important;
  }
  .warning{
    font-size: 16px!important;
    margin-top: 20px;
  }
}

.disponibilidad{
  color: #8c8c8c; 
  text-align: left; 
  font-size: 20px;
}

.warning{
  color: #8c8c8c; 
  text-align: left; 
  font-size: 20px;
}