/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}

/*Globales*/
img {
  width: 100%;
  margin: 0 auto;
}
a {
  display: block;
  text-decoration: none;
}
p {
  margin: 0;
}

/* Utilidades*/
.banner-desk {
  display: none;
}

@media (min-width: 768px) {
  .banner-desk {
    display: block;
  }
  .banner-mob {
    display: none;
  }
}

/*Banner Principal*/
.contenedor-banner-claro {
  width: 100%;
  margin: 10px auto;
}

/*Cuadrantes*/
.cuadrantes {
  width: 99%;
  margin: 10px auto;
}
.cuadrante1,
.cuadrante2,
.cuadrante3,
.cuadrante4 {
  margin: 5px auto;
  border-bottom: 2px solid #cacaca;
}
.cuadrante-titulo {
  width: 100%;
  margin: 10px auto;
}
.cuadrante-titulo p {
  text-align: center;
  font-size: 1em;
  font-weight: bold;
  color: #444;
}
.grid-container {
  width: 100%;
  margin: 10px auto;
  padding: 20px 5px;
  display: grid;
  grid-template-columns: [x0] 3fr [x1] 2fr [x2] 1fr [x3];
  grid-template-rows: [y0] 1fr [y1] 1fr [y2] 1fr [y3];
}
.grid-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.grid-item:nth-child(1) {
  grid-column: x0 / x2;
  grid-row: y0 / y3;
}
.grid-item:nth-child(2) {
  grid-row: y0 / y1;
}
.grid-item:nth-child(3) {
  grid-row: y1 / y2;
}
.grid-item:nth-child(4) {
  grid-row: y2 / y3;
}
.grid-precio {
  font-weight: bold;
  font-size: 0.8em;
  color: #444;
}
@media (min-width: 390px) {
  .cuadrante-titulo p {
    font-size: 1.1em;
  }
  .grid-precio {
    font-size: 0.9em;
  }
}
@media (min-width: 448px) {
  .cuadrante-titulo p {
    font-size: 1.2em;
  }
  .grid-precio {
    font-size: 1em;
  }
}
@media (min-width: 768px) {
  .cuadrantes {
    width: 95%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0px;
  }
  .cuadrante1,
  .cuadrante2,
  .cuadrante3,
  .cuadrante4 {
    flex: 0 0 calc(50%);
    border: none;
    margin: 0 auto;
  }
  .cuadrante2,
  .cuadrante4 {
    border-left: 2px solid #cacaca;
  }
  .cuadrante-titulo p {
    font-size: 1.4em;
  }
  .grid-precio {
    font-size: 1.1em;
  }
  .linea {
    width: 100%;
    border-bottom: 2px solid #cacaca;
    margin: 15px auto;
  }
}
@media (min-width: 1200px) {
  .cuadrantes {
    width: 90%;
  }
  .cuadrante-titulo p {
    font-size: 1.5em;
  }
}

.boton-carrito {
  width: 75%;
  margin: 10px auto;
  display: none;
}
.boton-carrito button {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  background-color: #eb0028;
  color: #fff;
  font-weight: bold;
  font-size: 0.8em;
  padding: 8px 0;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}
@media (min-width: 390px) {
  .boton-carrito {
    width: 70%;
  }
  .boton-carrito button {
    font-size: 0.9em;
  }
}
@media (min-width: 448px) {
  .boton-carrito {
    width: 60%;
  }
  .boton-carrito button {
    font-size: 1em;
  }
}
@media (min-width: 900px) {
  .boton-carrito {
    width: 45%;
  }
  .boton-carrito button {
    font-size: 1.1em;
  }
}
.carrito {
  color: #eb0028;
  font-size: 1.1em;
  background-color: transparent;
  border: none;
  position: absolute;
  cursor: pointer;
  display: none;
}
.grid-item:nth-child(1) .carrito {
  top: 10px;
  left: 20px;
}
.grid-item:nth-child(2) .carrito,
.grid-item:nth-child(3) .carrito,
.grid-item:nth-child(4) .carrito {
  top: 5px;
  left: -20px;
}

/*Marcas destacadas*/
.contenedor-marcas-destacadas {
  width: 98%;
  margin: 20px auto;
  padding: 10px 0;
}
.titulo-marcas-destacadas {
  text-align: center;
  font-weight: bold;
  font-size: 1em;
  color: #444;
  padding: 20px 0;
  margin-bottom: 15px;
}
.carosel-marcas {
  width: 95%;
  margin: 5px auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 10px;
  overflow-x: auto;
}
.carosel-item {
  flex: 0 0 calc(45%);
}
.marca-img img {
  border: solid 1px #e3e3e3;
  border-radius: 50%;
  padding: 8px;
}
.marca-titulo {
  font-weight: bold;
  font-size: 0.8em;
  color: #444;
  text-align: center;
  padding: 10px 0;
}
@media (min-width: 330px) {
  .titulo-marcas-destacadas {
    font-size: 1.1em;
  }
  .carosel-item {
    flex: 0 0 calc(35%);
  }
  .marca-titulo {
    font-size: 0.9em;
  }
}
@media (min-width: 448px) {
  .titulo-marcas-destacadas {
    font-size: 1.2em;
  }
  .carosel-item {
    flex: 0 0 calc(25%);
  }
  .marca-titulo {
    font-size: 0.9em;
  }
}
@media (min-width: 600px) {
  .titulo-marcas-destacadas {
    font-size: 1.3em;
  }
  .carosel-item {
    flex: 0 0 calc(18%);
  }
  .marca-titulo {
    font-size: 1em;
  }
}
.carosel-root.marcas .carosel-nav {
  display: none;
}

@media (min-width: 768px) {
  .carosel-root.marcas {
    position: relative;
  }
  .carosel-root.marcas .carosel-nav {
    display: block;
    background: transparent;
    position: absolute;
    text-align: center;
    padding: 5px 10px;
    border: 0;
    border-radius: 50%;
    top: calc(50% - 15px);
    color: #444;
    cursor: pointer;
  }
  .carosel-root.marcas .carosel-nav-right-marcas {
    right: 3px !important;
  }
  .carosel-root.marcas .carosel-nav-left-marcas {
    left: 3px !important;
  }
  .carosel-item {
    margin: 5px;
  }
  .contenedor-marcas-destacadas {
    width: 95%;
    padding: 20px 0;
  }
}

/*Te puede interesar*/
.contenedor-intereses {
  width: 99%;
  margin: 10px auto;
  padding: 10px 0;
}
.titulo-interes {
  text-align: center;
  padding: 20px 0;
  color: #444;
  font-weight: bold;
  font-size: 1em;
}
.texto-interes {
  padding: 10px 0;
  text-align: center;
  color: #444;
  font-weight: bold;
  font-size: 0.8em;
}
.texto-interes p span {
  color: #eb0028;
}

.categorias-interes {
  width: 100%;
  margin: 10px auto;
  flex-wrap: nowrap;
  display: flex;
  justify-content: space-between;
  overflow: auto;
}

.catego-interes {
  flex: 0 0 calc(45% - 10px);
}
@media (min-width: 330px) {
  .catego-interes {
    flex: 0 0 calc(35% - 10px);
  }
  .titulo-interes {
    font-size: 1.2em;
  }
}
@media (min-width: 448px) {
  .catego-interes {
    flex: 0 0 calc(25% - 10px);
  }
  .titulo-interes {
    font-size: 1.3em;
  }
}
@media (min-width: 600px) {
  .catego-interes {
    flex: 0 0 calc(18% - 10px);
  }
  .titulo-interes {
    font-size: 1.4em;
  }
}
@media (min-width: 768px) {
  .contenedor-intereses {
    width: 95%;
    border-top: 2px solid #cacaca;
  }
  .catego-interes {
    flex: 0 0 calc(12.5% - 10px);
  }
}
@media (min-width: 1200px) {
  .contenedor-intereses {
    width: 90%;
  }
}
