/** Shopify CDN: Minification failed

Line 103:1 Expected "}" to go with "{"

**/
/* === ESTILO GENERAL DEL CARRITO === */
.cart-items {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  background-color: #F5F1EB; /* fondo neutro claro */
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.04);
}

/* === TITULARES DEL CARRITO === */
.cart-items th {
  font-weight: 600;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: #1C1B19;
}

/* === AJUSTE DE BOTONES DE CANTIDAD === */
.quantity__button {
  background-color: #79a647;
  color: white;
  border: none;
  font-size: 1.8rem;
  width: 2.8rem;
  height: 2.8rem;
  line-height: 1;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
}

.quantity__button:hover {
  background-color: #6a933c;
}

.quantity__input {
  font-size: 1.6rem;
  width: 3.2rem;
  text-align: center;
  border: 1px solid #D2B48C;
  border-radius: 6px;
  padding: 0.3rem;
}

/* === SUBTOTALES Y TOTAL FINAL === */
.cart-item__totals,
.cart-footer__totals {
  font-size: 1.6rem;
  font-weight: 500;
  color: #1C1B19;
  padding-top: 1rem;
  text-align: right;
}

.cart__footer .totals__subtotal-value {
  font-size: 1.8rem;
  font-weight: bold;
  color: #79a647;
}

/* === BOTÓN DE CHECKOUT === */
.cart__footer .cart__ctas .button {
  background-color: #79a647;
  color: white;
  font-size: 1.6rem;
  padding: 1.2rem 2.4rem;
  border-radius: 10px;
  border: none;
  text-align: center;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cart__footer .cart__ctas .button:hover {
  background-color: #6a933c;

@media screen and (max-width: 749px) {
  .cart-item {
    display: grid;
    grid-template: repeat(2, auto) / repeat(4, 1fr);
    gap: 0.6rem; /* reducido de 1.5rem */
    margin-bottom: 1.8rem; /* reducido para menor espacio entre productos */
  }

  .cart-item:last-child {
    margin-bottom: 0;
  }

  .cart-item__details,
  .cart-item__quantity,
  .cart-item__totals {
    padding: 0 !important;
    margin: 0 !important;
  }
}