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

.detail_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) {
  .detail_columna-central {
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
  }
}

.detail_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: #0000FF;
  text-align: left;
}

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

.detail_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) {
  .detail_titulo-producto {
    font-size: clamp(1px, 6vw, 5.4rem);
  }
}

.detail_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) {
  .detail_precio {
    font-size: clamp(1px, 7vw, 6.3rem);
  }
}

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

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

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

.detail_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) {
  .detail_titulos-informacion {
    font-size: 4vw;
  }
}

.detail_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) {
  .detail_stock {
    display: none;
  }
}

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

.detail_envioGratis {
  font-family: "Work Sans", sans-serif;
  font-size: clamp(4px, 1.1vw, 0.99rem);
  color: #25d366;
  margin-top: 0.8vh;
}

.detail_noEnvioGratis {
  font-family: "Work Sans", sans-serif;
  font-size: clamp(4px, 1.1vw, 0.99rem);
  color: #d32525;
  margin-top: 0.8vh;
}

.detail_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) {
  .detail_descr {
    font-size: 2.9vw;
  }
}

.detail_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: #0000FF;
  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) {
  .detail_boton-agregar {
    margin-top: 6vh;
    width: 100%;
    font-size: 5vw;
  }
}

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

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

.detail_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) {
  .detail_inputAtributo {
    width: clamp(1px, 30vw, 27rem);
  }
}

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

.detail_carrusel .detail_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) {
  .detail_carrusel .detail_grande {
    height: 90%;
  }
}

.detail_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) {
  .detail_productoSinImagen {
    height: auto;
    width: 90%;
    margin-top: 4vh;
  }
}

.detail_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) {
  .detail_imagenProducto {
    height: auto;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.detail_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;
}
*/
/*------------------------------------------------------------------------------------------------------------------*/
.detail_divPuntos {
  width: 100%;
  padding: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-wrap: wrap;
}

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

.detail_carrusel .detail_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;
}

.detail_carrusel .detail_punto.detail_activo {
  background-color: #000000;
}

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

#detail_flechaIzq {
  left: 0.5em;
}

#detail_flechaDer {
  right: 0.5em;
}

/*------------------------------------------------------------------------------------------------------------------*/
.detail_div-descuento {
  display: flex;
  align-items: center;
}
.detail_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) {
  .detail_precioViejo {
    font-size: clamp(1px, 3.5vw, 3.15rem);
  }
}

.detail_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) {
  .detail_descuento {
    font-size: clamp(1px, 3.5vw, 3.15rem);
  }
}

.detail_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) {
  .detail_btn-wsp {
    font-size: 6.4vw;
  }
}

.detail_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);
}

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

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

.detail_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) {
  .detail_zoomImg {
    height: 0px;
    width: 0px;
  }
}

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

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

.detail_zoomImg i:hover {
  cursor: pointer;
}

.detail_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);
}
.detail_ruta-categoria a, .detail_ruta-categoria p {
  text-decoration: none;
  color: #0000FF;
  margin: 1vh clamp(1px, 0.5vw, 0.45rem);
  font-family: "Work Sans", sans-serif;
}
@media (min-width: 320px) and (max-width: 900px) {
  .detail_ruta-categoria {
    font-size: clamp(1px, 2.4vw, 2.16rem);
    margin: 2vh 3vw;
    padding: 1vh 3.5vw;
  }
  .detail_ruta-categoria a, .detail_ruta-categoria p {
    margin: 1vh 0.5vw;
  }
}

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

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

.detail_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) {
  .detail_inputCantidad {
    font-size: 3vw;
    width: 8vw;
  }
}

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

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

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

.detail_flechaMenos, .detail_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) {
  .detail_flechaMenos, .detail_flechaMas {
    font-size: 3vw;
  }
}

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

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

.detail_flechaAbajo:hover {
  cursor: pointer;
}

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

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

.detail_acordeonInformacion .detail_bloque .detail_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) {
  .detail_acordeonInformacion .detail_bloque .detail_contenido {
    flex-direction: column;
  }
}

.detail_acordeonInformacion .detail_bloque.detail_activo .detail_contenido {
  height: auto;
}

.detail_acordeonInformacion .detail_bloque.detail_activo .detail_flechaAbajo {
  transform: rotate(-90deg);
}

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

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

.detail_tablaDatos td {
  background-color: #f4f4f6;
}
.detail_tablaDatos .detail_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) {
  .detail_tablaDatos .detail_nombreDato {
    font-size: 4vw;
  }
}
.detail_tablaDatos .detail_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) {
  .detail_tablaDatos .detail_infoDato {
    font-size: 4vw;
  }
}

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