/* Cart Page Styles */
.cart-hero {
  background: linear-gradient(135deg, #6d28d9, #8b5cf6);
  color: #fff;
  padding: 60px 0;
}
.cart-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.cart-hero-content { text-align: center; }
.cart-title { font-size: 36px; font-weight: 700; margin-bottom: 8px; }
.cart-subtitle { font-size: 16px; opacity: 0.9; }
.cart-actions { margin-top: 20px; display: flex; gap: 12px; justify-content: center; }

.cart-section { padding: 40px 0; }

.notice { padding: 12px 14px; border-radius: 8px; margin-bottom: 16px; }
.notice-success { background: #ecfdf5; color: #065f46; }
.notice-error { background: #fef2f2; color: #991b1b; }

.empty-state { color: #64748b; padding: 20px; }

.cart-list { display: flex; flex-direction: column; gap: 16px; }
.cart-item { display: flex; gap: 16px; padding: 16px; background: #fff; border-radius: 12px; box-shadow: 0 6px 16px rgba(16, 24, 40, 0.06); }
.cart-item-image { width: 80px; height: 80px; border-radius: 8px; overflow: hidden; background: #f8fafc; display:flex; align-items:center; justify-content:center; }
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.image-fallback { color: #94a3b8; font-size: 12px; }
.cart-item-info { flex: 1; }
.cart-item-header { display: flex; align-items: center; justify-content: space-between; }
.item-name { font-weight: 600; color: #0f172a; }
.item-price { color: #64748b; font-size: 14px; }
.item-subtotal { color: #0f172a; font-weight: 600; }

.cart-item-actions { display: flex; align-items: center; gap: 12px; margin-top: 10px; }
.qty-form { display: inline-flex; align-items: center; gap: 8px; }
.qty-label { font-size: 12px; color: #64748b; }
.qty-input { width: 80px; padding: 8px 10px; border: 1px solid #cbd5e1; border-radius: 8px; font-size: 14px; }

.btn-primary, .btn-secondary, .btn-danger {
  display: inline-flex; align-items: center; gap: 8px; border-radius: 8px; padding: 10px 14px; font-size: 14px; text-decoration: none; border: none;
}
.btn-primary { background: #6d28d9; color: #fff; }
.btn-primary:hover { background: #5b21b6; }
.btn-secondary { background: #fff; color: #0f172a; border: 1px solid #cbd5e1; }
.btn-secondary:hover { background: #f8fafc; }
.btn-danger { background: #fff; color: #991b1b; border: 1px solid #fecaca; }
.btn-danger:hover { background: #fef2f2; }
.btn-sm { padding: 8px 12px; font-size: 13px; }

.cart-summary { margin-top: 20px; display: flex; align-items: center; justify-content: space-between; padding: 16px; background: #fff; border-radius: 12px; box-shadow: 0 6px 16px rgba(16, 24, 40, 0.06); }
.cart-total { font-size: 18px; font-weight: 600; color: #0f172a; }