/* ── Página do carrinho ─────────────────────────────── */
.cart-section { padding: 48px 0 80px; }
.cart-title { font-size: 28px; font-weight: 800; color: var(--text-dark); margin-bottom: 32px; }

/* Vazio */
.cart-empty { text-align: center; padding: 80px 20px; color: #888; }
.cart-empty svg { margin-bottom: 16px; }
.cart-empty p { font-size: 16px; margin-bottom: 24px; }

/* Layout */
.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }
@media (max-width: 768px) { .cart-layout { grid-template-columns: 1fr; } }

/* Itens */
.cart-item { display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px; background: #fff; border: 1px solid #eee; border-radius: 12px; margin-bottom: 12px; }
.cart-item-cat { font-size: 11px; font-weight: 600; color: #C0392B; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.cart-item-titulo { font-size: 16px; font-weight: 700; color: var(--text-dark); margin: 0; }
.cart-item-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.cart-item-price { font-size: 18px; font-weight: 800; color: #C0392B; }
.cart-item-remove { background: none; border: none; cursor: pointer; color: #aaa; padding: 6px; border-radius: 6px; transition: color .2s, background .2s; }
.cart-item-remove:hover { color: #C0392B; background: #fdecea; }

/* Resumo */
.cart-aside { position: sticky; top: 100px; }
.cart-summary { background: #fff; border: 1px solid #eee; border-radius: 16px; padding: 28px; }
.cart-summary h3 { font-size: 18px; font-weight: 800; color: var(--text-dark); margin-bottom: 20px; }
.cart-sum-row { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; color: #555; margin-bottom: 10px; }
.cart-summary-total { display: flex; justify-content: space-between; font-size: 20px; font-weight: 800;
  color: var(--text-dark); border-top: 2px solid #f0f0f0; padding-top: 16px; margin: 16px 0; }
.cart-obs-txt { font-size: 12px; color: #888; background: #f9f9f9; padding: 10px 12px; border-radius: 8px; margin-bottom: 16px; }
.cart-checkout-btn { width: 100%; justify-content: center; gap: 8px; display: flex; align-items: center;
  padding: 14px; font-size: 15px; font-weight: 700; background: #25D366; border: none; border-radius: 10px;
  color: #fff; cursor: pointer; transition: background .2s; }
.cart-checkout-btn:hover { background: #1ebe5c; }
.cart-continue { display: block; text-align: center; margin-top: 14px; font-size: 13px; color: #888; text-decoration: none; }
.cart-continue:hover { color: #C0392B; }

/* Botão in-cart */
.btn-add-cart.in-cart { background: #fdecea; color: #C0392B; border-color: #C0392B; }
