@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

main {
  display: flex;
  justify-content: center;
  background-color: #f4f4f6;
  position: relative;
  width: 100%; /* Hace que el contenido dentro ocupe el 100% del ancho del body */
  box-sizing: border-box;
}

.columna-central {
  width: 85%;
  height: 100%;
  background-color: #f4f4f6;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
@media (min-width: 320px) and (max-width: 900px) {
  .columna-central {
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
  }
}

.mjs-noproductos {
  width: 90%;
  font-family: "Work Sans", sans-serif;
  font-weight: 900;
  font-size: 20px;
  margin: 10vh clamp(1px, 4vw, 3.6rem);
  padding: 2vh clamp(1px, 2vw, 1.8rem);
  background-color: #000000;
  color: #f4f4f6;
  text-align: left;
}

.info-producto {
  display: flex;
  flex-direction: column;
  width: 35%;
  margin-bottom: 3vh;
}
@media (min-width: 320px) and (max-width: 900px) {
  .info-producto {
    width: 100%;
    padding: 1em;
  }
}

.titulo-producto {
  padding: 2vh 0 4vh 0;
  font-family: "Work Sans", sans-serif;
  font-size: clamp(10px, 2vw, 1.8rem);
  font-weight: 550;
}
@media (min-width: 320px) and (max-width: 900px) {
  .titulo-producto {
    font-size: clamp(1px, 6vw, 5.4rem);
  }
}

.precio {
  font-family: "Work Sans", sans-serif;
  font-size: clamp(10px, 2.5vw, 2.25rem);
  font-weight: 300;
  margin-right: clamp(1px, 1vw, 0.9rem);
}
@media (min-width: 320px) and (max-width: 900px) {
  .precio {
    font-size: clamp(1px, 7vw, 6.3rem);
  }
}

.div-precio {
  margin-bottom: 8vh;
}

.div-variante, .div-cantidad {
  display: flex;
  padding: 1vh 0 1vh 0;
  align-items: center;
  justify-content: space-between;
}

.div-cantidad {
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  padding: 4vh 0;
}

.titulos-informacion {
  font-family: "Work Sans", sans-serif;
  font-size: clamp(4px, 1.1vw, 0.99rem);
  font-weight: 600;
}
@media (min-width: 320px) and (max-width: 900px) {
  .titulos-informacion {
    font-size: 4vw;
  }
}

.stock {
  font-family: "Work Sans", sans-serif;
  font-size: clamp(4px, 0.7vw, 0.63rem);
  color: rgb(163, 162, 162);
  margin: 0 0 0 clamp(1px, 1.5vw, 1.35rem);
}
@media (min-width: 320px) and (max-width: 900px) {
  .stock {
    display: none;
  }
}

.sinStock {
  font-family: "Work Sans", sans-serif;
  font-size: clamp(4px, 1.1vw, 0.99rem);
  font-weight: bold;
  color: rgb(0, 0, 0);
}

.descr {
  font-family: "Work Sans", sans-serif;
  font-size: clamp(4px, 0.9vw, 0.81rem);
  margin: 2vh 0 0 0;
  white-space: break-spaces;
}
@media (min-width: 320px) and (max-width: 900px) {
  .descr {
    font-size: 2.9vw;
  }
}

.boton-agregar {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #000000;
  border: 1px solid #000000;
  border-radius: 5px;
  box-sizing: border-box;
  color: #f4f4f6;
  cursor: pointer;
  display: inline-block;
  font-family: "Work Sans", sans-serif;
  font-size: clamp(4px, 1.1vw, 0.99rem);
  font-weight: 600;
  line-height: normal;
  margin: 0;
  min-width: 0;
  outline: none;
  width: 50%;
  padding: 0.5em 2.3em;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  will-change: transform;
}
@media (min-width: 320px) and (max-width: 900px) {
  .boton-agregar {
    margin-top: 6vh;
    width: 100%;
    font-size: 5vw;
  }
}

.boton-agregar:hover {
  color: #fff;
  background-color: #1A1A1A;
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

.boton-agregar:active {
  box-shadow: none;
  transform: translateY(0);
}

.inputAtributo {
  color: #000000;
  font-family: "Work Sans", sans-serif;
  width: 27%;
  height: 4vh;
  outline: none;
  border-radius: 5px;
  border-color: #000000;
}
@media (min-width: 320px) and (max-width: 900px) {
  .inputAtributo {
    width: clamp(1px, 30vw, 27rem);
  }
}

.carrusel {
  width: 35%;
  max-width: 35%;
  height: 50%;
  /* padding: 5vh 0; */
  overflow: hidden;
}
@media (min-width: 320px) and (max-width: 900px) {
  .carrusel {
    width: 90%;
    max-width: 94%;
  }
}

.carrusel .grande {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
  height: 90%;
}
@media (min-width: 320px) and (max-width: 900px) {
  .carrusel .grande {
    height: 90%;
  }
}

.productoSinImagen {
  padding: 0 clamp(1px, 1vw, 0.9rem);
  margin-top: 4vh;
  width: 35%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 320px) and (max-width: 900px) {
  .productoSinImagen {
    height: auto;
    width: 90%;
    margin-top: 4vh;
  }
}

.imagenProducto {
  height: 100%;
  max-width: 100%;
  padding: 0 clamp(1px, 1vw, 0.9rem);
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 320px) and (max-width: 900px) {
  .imagenProducto {
    height: auto;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.imagenProducto:hover {
  cursor: zoom-in;
}

/*
.divPuntos{
    width: 100%;
    padding: 1em;
    height: 5vh;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    height: 10%;
}

.carrusel .puntos{
    //width: 100%;
    padding: 1em; 
    //height: 5vh;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;

}

.carrusel .punto{
    width: .5em;
    height: .5em;
    margin: 10px;
    @include neoColores(1, 50px, 5px, #e0e0e0);
}

.carrusel .punto.activo{
    background-color: $color2;
}

#flechaIzq, #flechaDer:hover{
    cursor: pointer;
}
*/
/*------------------------------------------------------------------------------------------------------------------*/
.divPuntos {
  width: 100%;
  padding: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-wrap: wrap;
}

.carrusel .puntos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0 3em;
  padding: 0;
  list-style: none;
}

.carrusel .punto {
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  transition: all 0.4s ease;
  border-radius: 50px;
  background-color: #e0e0e0;
  box-shadow: 5px 5px 10px #c9c9c9, -5px -5px 10px #ffffff, inset 0 0 0 transparent, inset 0 0 0 transparent;
}

.carrusel .punto.activo {
  background-color: #000000;
}

/* Flechas */
#flechaIzq, #flechaDer {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  cursor: pointer;
  color: #333;
}

#flechaIzq {
  left: 0.5em;
}

#flechaDer {
  right: 0.5em;
}

/*------------------------------------------------------------------------------------------------------------------*/
.div-descuento {
  display: flex;
  align-items: center;
}
.precioViejo {
  font-family: "Work Sans", sans-serif;
  text-decoration: line-through;
  font-size: clamp(4px, 1.5vw, 1.35rem);
  color: rgb(138, 138, 138);
}
@media (min-width: 320px) and (max-width: 900px) {
  .precioViejo {
    font-size: clamp(1px, 3.5vw, 3.15rem);
  }
}

.descuento {
  font-family: "Work Sans", sans-serif;
  font-size: clamp(4px, 1.5vw, 1.35rem);
  color: rgb(0, 190, 0);
}
@media (min-width: 320px) and (max-width: 900px) {
  .descuento {
    font-size: clamp(1px, 3.5vw, 3.15rem);
  }
}

.btn-wsp {
  position: fixed;
  width: 60px;
  height: 60px;
  line-height: 63px;
  bottom: 25px;
  right: 25px;
  color: #FFF;
  text-align: center;
  font-size: 2.4vw;
  z-index: 100;
  border-radius: 50px;
  transition: all 300ms ease;
  transition: all 0.4s ease;
  border-radius: 50px;
  background-color: #25d366;
  box-shadow: 2px 2px 4px #c9c9c9, -2px -2px 4px #ffffff, inset 0 0 0 transparent, inset 0 0 0 transparent;
}
@media (min-width: 320px) and (max-width: 900px) {
  .btn-wsp {
    font-size: 6.4vw;
  }
}

.btn-wsp:active {
  transition: all 0.4s ease;
  border-radius: 50px;
  background-color: #25d366;
  box-shadow: 0 0 0 transparent, 0 0 0 transparent, inset 2px 2px 4px rgb(30.152016129, 171.947983871, 83.1217741935), inset -2px -2px 4px rgb(71.1407258065, 222.7592741935, 127.7798387097);
}

.mensajeWpp {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 1.5em 0;
  text-align: center;
}

.msj {
  padding: 2em 0;
  width: 100%;
  font-size: clamp(4px, 1.1vw, 0.99rem);
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
  color: #f4f4f6;
  border-radius: 5px;
  background-color: #000000;
}

.zoomImg {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(71, 71, 71, 0.7987570028) 0%, rgba(71, 71, 71, 0.731530112) 100%);
  position: absolute;
}
@media (min-width: 320px) and (max-width: 900px) {
  .zoomImg {
    height: 0px;
    width: 0px;
  }
}

.zoomImg img {
  height: 70%;
  width: auto;
}
@media (min-width: 320px) and (max-width: 900px) {
  .zoomImg img {
    height: 0px;
    width: 0px;
  }
}

.zoomImg i {
  color: white;
  right: 5%;
  top: 5%;
  font-size: 2.5em;
  position: absolute;
}
@media (min-width: 320px) and (max-width: 900px) {
  .zoomImg i {
    height: 0px;
    width: 0px;
    font-size: 0em;
  }
}

.zoomImg i:hover {
  cursor: pointer;
}

.ruta-categoria {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  margin: 2vh clamp(1px, 3vw, 2.7rem);
  padding: 1vh clamp(1px, 1.5vw, 1.35rem);
  background-color: #000000;
  border-radius: 10px;
  font-size: clamp(4px, 1.1vw, 0.99rem);
}
.ruta-categoria a, .ruta-categoria p {
  text-decoration: none;
  color: #f4f4f6;
  margin: 1vh clamp(1px, 0.5vw, 0.45rem);
  font-family: "Work Sans", sans-serif;
}
@media (min-width: 320px) and (max-width: 900px) {
  .ruta-categoria {
    font-size: clamp(1px, 2.4vw, 2.16rem);
    margin: 2vh 3vw;
    padding: 1vh 3.5vw;
  }
  .ruta-categoria a, .ruta-categoria p {
    margin: 1vh 0.5vw;
  }
}

.manejo-cantidades {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  align-items: center;
  flex-direction: row;
}
@media (min-width: 320px) and (max-width: 900px) {
  .manejo-cantidades {
    width: 25%;
  }
}

.cantidadDisponible {
  font-size: clamp(4px, 0.7vw, 0.63rem);
  color: gray;
  text-align: center;
  width: 100%;
}

.inputCantidad {
  padding: 0.5em 0em;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  border-left: 0px;
  border-right: 0px;
  border-radius: 0px;
  color: #000000;
  font-size: clamp(4px, 1.1vw, 0.99rem);
  letter-spacing: 0.1ch;
  width: clamp(4px, 2.4vw, 2.16rem);
  text-align: center;
  font-family: "Work Sans", sans-serif;
}
@media (min-width: 320px) and (max-width: 900px) {
  .inputCantidad {
    font-size: 3vw;
    width: 8vw;
  }
}

.inputCantidad:is(:disabled, :-moz-read-only) {
  --c-border: rgb(150, 150, 150);
  --c-text: rgb(170, 170, 170);
}

.inputCantidad:is(:disabled, :read-only) {
  --c-border: rgb(150, 150, 150);
  --c-text: rgb(170, 170, 170);
}

.inputCantidad:is(:focus, :focus-visible) {
  outline: 2px solid var(--c-outline);
  outline-offset: 2px;
}

.flechaMenos, .flechaMas {
  padding: 0.5em 0;
  font-size: clamp(4px, 1.1vw, 0.99rem);
  width: 20px;
  text-align: center;
  cursor: pointer;
  font-family: "Work Sans", sans-serif;
  font-weight: 300;
}
@media (min-width: 320px) and (max-width: 900px) {
  .flechaMenos, .flechaMas {
    font-size: 3vw;
  }
}

.manejo-cantidades .flechaMenos {
  border-radius: 5px 0 0 5px;
  border: 1px solid #000000;
  border-right: 0px;
}

.manejo-cantidades .flechaMas {
  border-radius: 0 5px 5px 0;
  border: 1px solid #000000;
  border-left: 0px;
}

.flechaAbajo:hover {
  cursor: pointer;
}

.acordeonInformacion {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 1.5vh 0 3vh;
  background-color: #000000;
  border-radius: 5px;
  padding: 0.2em;
}

.acordeonInformacion .bloque {
  background-color: #f4f4f6;
  color: #000000;
  padding: 1em;
  border-radius: 5px;
  width: 100%;
}

.acordeonInformacion .bloque .contenido {
  height: 0;
  width: 100%;
  margin-top: 2.5vh;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  padding: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}
@media (min-width: 320px) and (max-width: 900px) {
  .acordeonInformacion .bloque .contenido {
    flex-direction: column;
  }
}

.acordeonInformacion .bloque.activo .contenido {
  height: auto;
}

.acordeonInformacion .bloque.activo .flechaAbajo {
  transform: rotate(-90deg);
}

.div-descripcion, .div-caracteristicas {
  width: 45%;
}
@media (min-width: 320px) and (max-width: 900px) {
  .div-descripcion, .div-caracteristicas {
    width: 100%;
    padding-bottom: 1.5vh;
  }
}

.tablaDatos {
  width: 100%;
  margin-top: 2vh;
  border: 0px solid #000000;
  background-color: #000000;
}

.tablaDatos td {
  background-color: #f4f4f6;
}
.tablaDatos .nombreDato {
  padding-left: 1em;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: clamp(4px, 0.9vw, 0.81rem);
}
@media (min-width: 320px) and (max-width: 900px) {
  .tablaDatos .nombreDato {
    font-size: 4vw;
  }
}
.tablaDatos .infoDato {
  font-family: "Work Sans", sans-serif;
  font-size: clamp(4px, 0.9vw, 0.81rem);
  padding: 1em;
}
@media (min-width: 320px) and (max-width: 900px) {
  .tablaDatos .infoDato {
    font-size: 4vw;
  }
}

.contenedorImagen {
  height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}/*# sourceMappingURL=detail.css.map */