/* =============================================
   CART PAGE
   ============================================= */
.goyo-cart__header {
  background: var(--goyo-primary);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.goyo-cart__items {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.goyo-cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--goyo-border);
}
.goyo-cart-item:last-child { border-bottom: none; }

.goyo-cart-item__img {
  background: var(--goyo-primary-light);
  border-radius: var(--goyo-radius-sm);
  width: 44px;
  height: 44px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.goyo-cart-item__img img { width: 100%; height: 100%; object-fit: cover; }

.goyo-cart-item__info { flex: 1; }
.goyo-cart-item__name {
  font-size: 12px;
  font-weight: 700;
  color: var(--goyo-text);
}
.goyo-cart-item__qty { color: var(--goyo-muted); font-weight: 400; }
.goyo-cart-item__detail { font-size: 10px; color: var(--goyo-muted); }
.goyo-cart-item__price {
  font-size: 13px;
  font-weight: 800;
  color: var(--goyo-primary);
  flex-shrink: 0;
}

/* Totals */
.goyo-cart__totals {
  padding: 14px 16px;
  background: var(--goyo-surface);
  border-top: 1px solid var(--goyo-border);
  border-bottom: 1px solid var(--goyo-border);
}
.goyo-cart__total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--goyo-muted);
  margin-bottom: 8px;
}
.goyo-cart__total-row:last-child { margin-bottom: 0; }
.goyo-cart__total-row--discount { color: var(--goyo-offer); font-weight: 700; }
.goyo-cart__total-row--main {
  font-size: 16px;
  font-weight: 900;
  color: var(--goyo-text);
  padding-top: 10px;
  margin-top: 4px;
  border-top: 1px solid var(--goyo-border);
}
.goyo-cart__total-row--main span:last-child { color: var(--goyo-primary); }

/* CTAs */
.goyo-cart__actions {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.goyo-cart__checkout-btn {
  width: 100%;
  padding: 14px;
  font-size: 14px;
  font-weight: 800;
  border-radius: var(--goyo-radius-md);
  justify-content: center;
}
.goyo-cart__whatsapp-btn {
  width: 100%;
  padding: 12px;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--goyo-radius-md);
  justify-content: center;
  background: #25d366;
  color: #fff;
  border: none;
  cursor: pointer;
}
.goyo-cart__whatsapp-btn:hover { background: #1ebe5c; }

/* ── DESKTOP (≥ 1024px) ──────────────────── */
@media (min-width: 1024px) {
  .goyo-cart-wrapper {
    padding: 40px 20px;
    background: var(--goyo-surface);
    min-height: 60vh;
  }
  .goyo-cart {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--goyo-radius-md);
    box-shadow: var(--goyo-shadow);
    overflow: hidden;
  }
}
