html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}

/*Globales*/
img {
  width: 100%;
  margin: 0 auto;
}
a {
  text-decoration: none;
}
/*Utilidades*/
.banner-desk {
  display: none !important;
}

@media (min-width: 780px) {
  .banner-desk {
    display: block !important;
  }
  .banner-mob {
    display: none !important;
  }
}

/*Banner Principal*/
.banner-principal-sn {
  width: 100%;
  margin: 0 auto;
}
.texto-titular-sn h1 {
  margin: 1% auto;
  width: 90%;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 1.2em;
  font-weight: 900;
}
.linea-roja-sn {
  width: 90%;
  margin: 1.5% auto;
  border-bottom: 2px solid #eb1d2a;
}
@media (min-width: 330px) {
  .texto-titular-sn h1 {
    font-size: 1.4em;
  }
}
@media (min-width: 448px) {
  .texto-titular-sn h1 {
    font-size: 1.6em;
  }
}
@media (min-width: 600px) {
  .texto-titular-sn h1 {
    font-size: 1.8em;
  }
}
@media (min-width: 900px) {
  .texto-titular-sn h1 {
    font-size: 2em;
  }
  .linea-roja-sn {
    width: 80%;
    margin: 1% auto;
    border-bottom: 3px solid #eb1d2a;
  }
}
@media (min-width: 1200px) {
  .texto-titular-sn h1 {
    font-size: 2.2em;
  }
  .linea-roja-sn {
    width: 75%;
    border-bottom: 3.5px solid #eb1d2a;
  }
}
/*Descuento en producto*/
.contenedor-productos-google-sn {
  box-sizing: content-box !important;
}
/* Mobile first: 2 por línea */
.contenedor-productos-sn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 95%;
  margin: auto;
}
.tarjeta-producto {
  width: calc(50% - 10px);
  background: white;
  border: 1px solid #ebecec;
  border-radius: 5px;
  margin: 5px;
  padding: 10px 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Imagen del producto */
.tarjeta-producto .img-producto {
  width: 90%;
  margin: 0 auto;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tarjeta-producto .img-producto img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain; /* Mantiene proporciones sin deformar ni recortar */
  display: block;
}
@media (min-width: 900px) {
  .tarjeta-producto .img-producto {
    height: 250px;
  }
}

/* Info del producto */
.informacion-producto {
  width: 90%;
  margin: 0 auto;
  text-align: left;
  flex-direction: column;
  justify-content: space-between;
}
.product-name {
  font-size: 14px;
  color: #333;
  margin: 8px 0;
  line-height: 1.2em;
  max-height: 2.4em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.product-brand {
  font-size: 16px;
  font-weight: bold;
  color: #ff3c3c;
  margin: 5px 0;
}
.price-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 5px;
}
.sale-price-product {
  font-size: 1em;
  font-weight: bold;
  color: #000;
}
.price-product {
  font-size: 13px;
  color: #888;
  text-decoration: line-through;
}
.discount {
  background: #117c00;
  color: #fff;
  font-size: 13px;
  padding: 2px 5px;
  border-radius: 4px;
}

/* Envío */
.precio-envio {
  display: flex;
  flex-wrap: wrap;
  margin-top: 8px;
}
.envio {
  color: #10c156;
  font-size: 11px;
  display: flex;
  gap: 4px;
  align-items: center;
}

/* Tablets pequeñas: 3 tarjetas */
@media (min-width: 600px) {
  .tarjeta-producto {
    width: calc(33.333% - 10px);
  }
}

/* Tablets grandes: 4 tarjetas */
@media (min-width: 780px) {
  .tarjeta-producto {
    width: calc(25% - 10px);
  }
}

/* Desktop: 5 tarjetas */
@media (min-width: 900px) {
  .tarjeta-producto {
    width: calc(20% - 10px);
  }
}
.contador-tiempo {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 95%;
  margin: 2% auto;
}
.texto-quedan {
  margin: 0% 5% 0 0;
  color: #f00;
  font-family: 'Bebas Neue';
  font-size: 0.8em;
}
.contador-digito {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contador-digito p:first-child {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-family: 'Bebas Neue', 'arial';
  padding: 3px;
  color: #f00;
  font-size: 0.8em;
}
.envioExpressLanding {
  width: 50%;
}
.envioExpressLanding img {
  width: 75%;
}
.envioExpressLanding.sinEnvio {
  width: 100%;
}
.envioExpressLandingSinEnvio img {
  width: 90%;
}
@media (min-width: 330px) {
  .texto-quedan {
    font-size: 0.85em;
  }
  .contador-digito p:first-child {
    font-size: 0.85em;
  }
}
@media (min-width: 448px) {
  .texto-quedan {
    font-size: 1.1em;
  }
  .contador-digito p:first-child {
    font-size: 1.1em;
  }
  .sale-price-product {
    font-size: 1.2em;
  }
  .discount {
    font-size: 14px;
  }
  .price-product {
    font-size: 14px;
  }
  .product-name {
    font-size: 15px;
  }
}
@media (min-width: 500px) {
  .texto-quedan {
    font-size: 1.25em;
  }
  .contador-digito p:first-child {
    font-size: 1.25em;
  }
}
@media (min-width: 600px) {
  .texto-quedan {
    font-size: 1em;
  }
  .contador-digito p:first-child {
    font-size: 1em;
  }
  .sale-price-product {
    font-size: 1.1em;
  }
  .discount {
    font-size: 13px;
  }
  .price-product {
    font-size: 13px;
  }
  .product-name {
    font-size: 14px;
  }
}
@media (min-width: 780px) {
  .tarjeta-producto:hover {
    transform: translateY(-4px);
    transition: 1s;
  }
}
@media (min-width: 900px) {
  .texto-quedan {
    font-size: 0.9em;
  }
  .contador-digito p:first-child {
    font-size: 0.9em;
  }
  .sale-price-product {
    font-size: 1em;
  }
  .discount {
    font-size: 12px;
  }
  .price-product {
    font-size: 12px;
  }
  .product-name {
    font-size: 13px;
  }
}
@media (min-width: 900px) {
  .texto-quedan {
    font-size: 1.4em;
  }
  .contador-digito p:first-child {
    font-size: 1.4em;
  }
  .sale-price-product {
    font-size: 1.3em;
  }
  .discount {
    font-size: 16px;
  }
  .price-product {
    font-size: 16px;
  }
  .product-name {
    font-size: 18px;
  }
}
@media (min-width: 1400px) {
  .texto-quedan {
    font-size: 1.5em;
  }
  .contador-digito p:first-child {
    font-size: 1.5em;
  }
}
