@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 {
  background-color: #f4f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; /* Hace que el contenido dentro ocupe el 100% del ancho del body */
  box-sizing: border-box;
}

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

.columna-categorias {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 30%;
}
@media (min-width: 320px) and (max-width: 900px) {
  .columna-categorias {
    width: 100%;
    align-items: center;
  }
}

.div-tituloCategorias {
  display: flex;
  flex-direction: row;
  width: 100%;
}
@media (min-width: 320px) and (max-width: 900px) {
  .div-tituloCategorias {
    margin: 3vh 0 1vh 0vw;
    text-align: center;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
}

.titulo-categorias {
  font-family: "Work Sans", sans-serif;
  margin: 3vh 0 1vh clamp(4px, 4vw, 3.6rem);
}
@media (min-width: 320px) and (max-width: 900px) {
  .titulo-categorias {
    margin: 0px;
  }
}

#icono-menu {
  display: none;
}
@media (min-width: 320px) and (max-width: 900px) {
  #icono-menu {
    display: block;
    margin-left: clamp(4px, 1vw, 0.9rem);
  }
}

/*#lista_categorias{

}*/
#lista_categorias .nivelUno {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  margin-top: 1.5vh;
  flex-wrap: wrap;
  padding: 0.5vh clamp(4px, 0.5vw, 0.45rem);
}

#lista_categorias div a {
  text-decoration: none;
  color: #ffffff;
  font-family: "Lato", sans-serif;
}

.cantidad-productos {
  color: gray;
  font-size: clamp(4px, 0.7vw, 0.63rem);
  margin-left: clamp(4px, 0.4vw, 0.36rem);
  padding-bottom: 2px;
}

.columna-productos {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
}
@media (min-width: 320px) and (max-width: 900px) {
  .columna-productos {
    width: 100%;
    justify-content: space-evenly;
  }
}

.recuadro-producto {
  margin: 1em;
  width: 25%;
  height: 34vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Work Sans", sans-serif;
  color: #000000;
  justify-content: space-between;
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0px 0px 5px 0px #000000;
}
@media (min-width: 320px) and (max-width: 900px) {
  .recuadro-producto {
    width: 47%;
    margin: 0.5em 0.2em;
    height: 45vh;
    max-height: 320px;
    background-color: #f4f4f6;
    border-radius: 5px;
    box-shadow: 0px 0px 5px 0px #000000;
  }
}
.recuadro-producto a {
  width: 100%;
  height: 100%;
}
@media (min-width: 320px) and (max-width: 900px) {
  .recuadro-producto a {
    display: flex;
    flex-direction: column;
  }
}

.recuadro-producto a:link,
.recuadro-producto a:visited,
.recuadro-producto a:active {
  text-decoration: none;
}

.info-oferta {
  width: 100%;
  height: 30%;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-around;
  padding: 0 clamp(1px, 1.5vw, 1.35rem);
  margin: 1vh 0 2vh 0;
  align-items: center;
}
@media (min-width: 320px) and (max-width: 900px) {
  .info-oferta {
    height: 90%;
    justify-content: space-between;
    padding: 2vh clamp(1px, 1.5vw, 1.35rem);
    align-items: center;
  }
}

.info-oferta > #tituloProducto {
  text-decoration: none;
  color: #000000;
  font-size: clamp(4px, 0.9vw, 0.81rem);
  margin-bottom: 1vh;
}
@media (min-width: 320px) and (max-width: 900px) {
  .info-oferta > #tituloProducto {
    font-size: clamp(4px, 3.2vw, 3.15rem);
  }
}

.precios > div > #precioOriginal {
  text-decoration: line-through;
  font-size: clamp(4px, 1vw, 0.9rem);
  margin: 1vh 0 0.5vh 0;
  color: rgb(138, 138, 138);
}
@media (min-width: 320px) and (max-width: 900px) {
  .precios > div > #precioOriginal {
    font-size: clamp(4px, 2.7vw, 2.43rem);
  }
}

.precios > div > #mnsSinStock {
  font-size: clamp(4px, 1vw, 0.9rem);
  margin: 1vh 0 0.5vh 0;
  color: rgb(255, 0, 0);
}
@media (min-width: 320px) and (max-width: 900px) {
  .precios > div > #mnsSinStock {
    font-size: clamp(4px, 2.7vw, 2.43rem);
  }
}

.precios > #nuevoPrecioSinImpuesto {
  font-weight: 600;
  text-decoration: none;
  color: #000000;
  font-size: clamp(1px, 0.6vw, 0.54rem);
  text-align: center;
}
@media (min-width: 320px) and (max-width: 900px) {
  .precios > #nuevoPrecioSinImpuesto {
    font-size: clamp(1px, 1.5vw, 1.35rem);
  }
}

.precios > div > #porcentajeDescuento {
  font-size: clamp(4px, 1.1vw, 0.99rem);
  margin: 1vh 0 0.5vh clamp(1px, 0.5vw, 0.45rem);
  padding: 0.2em;
  color: rgb(0, 190, 0);
  background-color: rgba(0, 190, 0, 0.411);
  border-radius: 5px;
}
@media (min-width: 320px) and (max-width: 900px) {
  .precios > div > #porcentajeDescuento {
    margin: 1vh 0 0.5vh clamp(1px, 2vw, 1.8rem);
    font-size: clamp(4px, 3vw, 2.7rem);
  }
}

.precios > #nuevoPrecio {
  font-weight: 450;
  text-decoration: none;
  color: #000000;
  font-size: clamp(4px, 1.5vw, 1.35rem);
  text-align: center;
}
@media (min-width: 320px) and (max-width: 900px) {
  .precios > #nuevoPrecio {
    font-size: clamp(4px, 5vw, 4.5rem);
  }
}

.imagen-producto {
  width: 100%;
  max-height: 60%;
  min-height: 58%;
  padding: 5px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 320px) and (max-width: 900px) {
  .imagen-producto {
    min-height: 190px;
    -o-object-fit: contain;
       object-fit: contain;
    border-radius: 10px;
  }
}

#barra-ordenar {
  width: 100%;
  margin: 3vh 0;
  display: flex;
  align-items: center;
}
@media (min-width: 320px) and (max-width: 900px) {
  #barra-ordenar {
    margin: 3vh 1em;
  }
}

.combo-ordenar {
  background-size: 24px;
  width: clamp(4px, 16vw, 14.4rem);
  padding: 5px 5px 5px 25px;
  margin-left: clamp(1px, 1.1vw, 0.99rem);
  outline: none;
  color: #000000;
  font-family: "Work Sans", sans-serif;
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0px 0px 5px 0px #000000;
}
@media (min-width: 320px) and (max-width: 900px) {
  .combo-ordenar {
    width: 70%;
    margin-left: 0;
  }
}

#btnOrdenar {
  min-width: 78px;
  height: 28px;
  color: #FBD300;
  padding: 5px 10px;
  font-weight: bold;
  cursor: pointer;
  font-family: "Work Sans", sans-serif;
  transition: all 0.3s ease;
  margin-left: clamp(1px, 3vw, 2.7rem);
  display: inline-block;
  outline: none;
  border: none;
  background-color: #000000;
  border: 1px solid #000000;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
}
@media (min-width: 320px) and (max-width: 900px) {
  #btnOrdenar {
    width: 30%;
  }
}

.links-paginas {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4vh 0;
}

.linkPagina:link,
.linkPagina:visited,
.linkPagina:active {
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: clamp(4px, 1.4vw, 1.26rem);
  margin-right: clamp(1px, 1vw, 0.9rem);
  text-decoration: none;
  color: #000000;
}
@media (min-width: 320px) and (max-width: 900px) {
  .linkPagina:link,
  .linkPagina:visited,
  .linkPagina:active {
    margin-right: clamp(1px, 3vw, 2.7rem);
    font-size: 4vw;
  }
}

.puntosPaginas {
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: clamp(4px, 1.4vw, 1.26rem);
  margin-right: clamp(1px, 1vw, 0.9rem);
  text-decoration: none;
  color: #000000;
}

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

/*--------------------------------------------------*/
#listaCategorias {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Work Sans", sans-serif;
  width: 70%;
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0px 0px 10px 0px #000000;
  padding: 1.5vh 0 1.5vh clamp(1px, 1vw, 0.9rem);
  margin: 3vh 0 3vh clamp(1px, 4vw, 3.6rem);
}
@media (min-width: 320px) and (max-width: 900px) {
  #listaCategorias {
    background-color: transparent;
    border-radius: 0px;
    box-shadow: none;
    margin-left: 0px;
    width: 90%;
    display: none;
  }
}

.titulo {
  width: 80%;
  margin-bottom: 1vh;
}

.flecha {
  width: 20%;
  cursor: pointer;
  text-align: center;
}

.nivelUno, .nivelDos, .nivelTres {
  flex-direction: column;
  justify-content: center;
  text-align: left;
  width: 100%;
}

.nivelUno {
  display: flex;
  margin-bottom: 1vh;
}

.nivelDos {
  display: none;
}
.nivelDos .active {
  font-weight: 800;
}
.nivelDos .active .nivelTres {
  display: flex;
  margin-left: clamp(1px, 2vw, 1.8rem);
}

.active {
  font-weight: 800;
}
.active .nivelDos {
  display: flex;
}
.active .nivelDos .titulo {
  padding-left: clamp(1px, 1vw, 0.9rem);
}

.nivelTres {
  display: none;
}

.item {
  padding-top: 1vh;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.item a {
  text-decoration: none;
  color: black;
}/*# sourceMappingURL=secundario.css.map */