/* ═══════════════════════════════════════════════════════
   AstroKamya™ · Premium Checkout v3 — Enterprise Grade
   Google-tier spacing, zero overlaps, tight density
   ═══════════════════════════════════════════════════════ */

/* ─── Cart Drawer Overlay ────────────────────────────── */
.cart-drawer-overlay {
  position: fixed; inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-drawer-overlay.cart-drawer-visible {
  opacity: 1;
}

/* ─── Cart Drawer Panel (2-column centered modal) ───── */
.cart-drawer {
  position: relative;
  width: 860px;
  max-width: 96vw;
  max-height: 92vh;
  background: linear-gradient(175deg, #100D1C 0%, #0C0A14 40%, #08070E 100%);
  border: 1px solid rgba(224,165,38,0.08);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.03);
  overflow: hidden;
}
.cart-drawer-visible .cart-drawer {
  transform: translateY(0) scale(1);
}

/* ─── Cosmic BG (stars + orbs) ───────────────────────── */
.cart-cosmos {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  overflow: hidden;
}
.cart-star {
  position: absolute;
  width: 2px; height: 2px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  animation: csTwinkle 3s ease-in-out infinite;
}
.cart-star-1 { top: 8%; left: 15%; animation-delay: 0s; }
.cart-star-2 { top: 22%; right: 20%; animation-delay: 0.8s; width: 3px; height: 3px; }
.cart-star-3 { top: 45%; left: 8%; animation-delay: 1.5s; }
.cart-star-4 { top: 65%; right: 12%; animation-delay: 0.4s; }
.cart-star-5 { top: 85%; left: 25%; animation-delay: 2.1s; }
.cart-star-6 { top: 35%; left: 60%; animation-delay: 1s; width: 2.5px; height: 2.5px; }
.cart-star-7 { top: 75%; right: 35%; animation-delay: 2.5s; }
@keyframes csTwinkle {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50% { opacity: 0.65; transform: scale(1.5); }
}
.cart-orb {
  position: absolute; border-radius: 50%;
  filter: blur(60px); pointer-events: none;
}
.cart-orb-1 {
  width: 180px; height: 180px; top: -50px; right: -40px;
  background: radial-gradient(circle, rgba(224,165,38,0.07), transparent 70%);
  animation: csOrb 12s ease-in-out infinite;
}
.cart-orb-2 {
  width: 140px; height: 140px; bottom: 10%; left: -30px;
  background: radial-gradient(circle, rgba(124,92,252,0.05), transparent 70%);
  animation: csOrb 15s ease-in-out infinite reverse;
}
@keyframes csOrb {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(8px, -12px); }
  66% { transform: translate(-6px, 8px); }
}

/* ─── Header ─────────────────────────────────────────── */
.cart-header {
  position: relative; z-index: 2;
  padding: 16px 24px 0;
  flex-shrink: 0;
}
.cart-header-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.cart-header-left {
  display: flex; align-items: center; gap: 10px;
}
.cart-header-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(224,165,38,0.1), rgba(252,92,124,0.05));
  border: 1px solid rgba(224,165,38,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cart-header h3 {
  font-family: 'Outfit', 'Space Grotesk', sans-serif;
  font-size: 16px; font-weight: 700;
  letter-spacing: -0.02em;
  color: #FAFAFA; margin: 0; line-height: 1.2;
}
.cart-header-sub {
  font-size: 10px; font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.02em;
}
.cart-ht-secure {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 7px;
  font-weight: 800;
  color: #22C55E;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 1px 5px;
  border-radius: 3px;
  background: rgba(34,197,94,0.06);
  border: 1px solid rgba(34,197,94,0.12);
  animation: securePulse 3s ease-in-out infinite;
}
.cart-ht-secure svg {
  flex-shrink: 0;
}
@keyframes securePulse {
  0%, 100% { box-shadow: 0 0 0 rgba(34,197,94,0); }
  50% { box-shadow: 0 0 6px rgba(34,197,94,0.15); }
}
.cart-close {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.cart-close:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.12);
  transform: rotate(90deg);
}

/* ─── Steps ──────────────────────────────────────────── */
.cart-steps {
  display: flex; align-items: center; justify-content: center; gap: 0;
  padding: 10px 16px 14px;
}
.cart-step {
  display: flex; align-items: center; gap: 5px;
}
.cart-step-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.12);
  transition: all 0.3s ease;
}
.cart-step span {
  font-size: 10px; font-weight: 600;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cart-step-active .cart-step-dot {
  background: #E0A526;
  border-color: #E0A526;
  box-shadow: 0 0 8px rgba(224,165,38,0.4);
}
.cart-step-active span { color: #E0A526; }
.cart-step-line {
  width: 32px; height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  margin: 0 6px;
}
.cart-header-glow {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224,165,38,0.2), rgba(252,92,124,0.12), transparent);
}

/* ─── 2-Column Layout ────────────────────────────────── */
.cart-columns {
  flex: 1;
  display: flex;
  min-height: 0;
  position: relative;
  z-index: 2;
}
.cart-col-left {
  flex: 0 0 55%;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(224,165,38,0.12) transparent;
}
.cart-col-left::-webkit-scrollbar { width: 4px; }
.cart-col-left::-webkit-scrollbar-track { background: transparent; }
.cart-col-left::-webkit-scrollbar-thumb {
  background: rgba(224,165,38,0.12);
  border-radius: 4px;
}
.cart-col-right {
  flex: 0 0 45%;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 1px solid rgba(255,255,255,0.04);
  scrollbar-width: thin;
  scrollbar-color: rgba(224,165,38,0.12) transparent;
}
.cart-col-right::-webkit-scrollbar { width: 4px; }
.cart-col-right::-webkit-scrollbar-track { background: transparent; }
.cart-col-right::-webkit-scrollbar-thumb {
  background: rgba(224,165,38,0.12);
  border-radius: 4px;
}
/* Inline footer in right column */
.cart-footer-inline {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ─── Section Labels ─────────────────────────────────── */
.cart-section-label {
  display: flex; align-items: center; gap: 5px;
  font-size: 9px; font-weight: 700;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.cart-section-label svg { opacity: 0.5; }

/* ═══════════════════════════════════════════════════════
   PLAN CARD — No clipping, proper icon sizing
   ═══════════════════════════════════════════════════════ */
.cart-plan-card {
  position: relative;
  padding: 16px 18px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(224,165,38,0.05), rgba(124,92,252,0.02));
  border: 1px solid rgba(224,165,38,0.1);
  overflow: visible; /* ← KEY: prevent icon clipping */
}
.cart-plan-glow {
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,165,38,0.1), transparent 65%);
  pointer-events: none;
  animation: cpGlow 4s ease-in-out infinite;
}
@keyframes cpGlow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.15); }
}
.cart-plan-top {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.cart-plan-icon-ring {
  width: 44px; height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(224,165,38,0.1), rgba(124,92,252,0.05));
  border: 1px solid rgba(224,165,38,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cart-plan-icon {
  font-size: 22px;
  line-height: 1;
}
.cart-plan-info {
  flex: 1;
  min-width: 0;
}
.cart-plan-info strong {
  display: block;
  font-family: 'Outfit', 'Space Grotesk', sans-serif;
  font-size: 15px; font-weight: 700;
  color: #FAFAFA;
  letter-spacing: -0.01em;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-plan-info span {
  font-size: 11px; color: rgba(255,255,255,0.45);
  font-weight: 400;
}
.cart-plan-price-col {
  text-align: right;
  flex-shrink: 0;
  min-width: 70px;
}
.cart-item-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #FFD700, #E0A526);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.cart-plan-period {
  font-size: 10px;
  color: rgba(255,255,255,0.42);
  font-weight: 500;
}

/* ── Feature grid (2 cols) ───────────────────────────── */
.cart-plan-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 12px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.04);
  position: relative; z-index: 1;
}
.cart-plan-feat {
  display: flex; align-items: center; gap: 5px;
}
.cart-plan-feat span {
  font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ═══════════════════════════════════════════════════════
   UPSELL CARD — Switch to higher plan (conversion engine)
   ═══════════════════════════════════════════════════════ */
.cart-upsell {
  position: relative;
  margin-top: 10px;
  padding: 14px 16px 12px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(124,92,252,0.06), rgba(224,165,38,0.04));
  border: 1px solid rgba(124,92,252,0.15);
  overflow: hidden;
}
.cart-upsell-shimmer {
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(124,92,252,0.06), rgba(224,165,38,0.04), transparent);
  animation: upsellShimmer 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes upsellShimmer {
  0% { left: -100%; }
  50% { left: 200%; }
  100% { left: 200%; }
}
.cart-upsell-tag {
  display: inline-block;
  font-size: 8px; font-weight: 800;
  color: #FFD700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(255,215,0,0.06);
  border: 1px solid rgba(255,215,0,0.12);
  margin-bottom: 8px;
}
.cart-upsell-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.cart-upsell-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.cart-upsell-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
  animation: upsellFloat 3s ease-in-out infinite;
}
@keyframes upsellFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.08); }
}
.cart-upsell-info {
  min-width: 0;
}
.cart-upsell-info strong {
  display: block;
  font-family: 'Outfit', 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 700;
  color: #FAFAFA;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.cart-upsell-info span {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  font-weight: 400;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  max-width: 200px;
}
.cart-upsell-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  flex-shrink: 0;
}
.cart-upsell-badge {
  font-size: 9px; font-weight: 800;
  color: #0A0A0F;
  padding: 2px 8px;
  border-radius: 5px;
  background: linear-gradient(135deg, #FFD700, #E0A526);
  box-shadow: 0 2px 8px rgba(224,165,38,0.2);
  animation: upsellBadgePulse 2.5s ease-in-out infinite;
  white-space: nowrap;
}
@keyframes upsellBadgePulse {
  0%, 100% { box-shadow: 0 2px 8px rgba(224,165,38,0.15); transform: scale(1); }
  50% { box-shadow: 0 3px 14px rgba(224,165,38,0.35); transform: scale(1.04); }
}
.cart-upsell-prices {
  display: flex; align-items: center; gap: 5px;
}
.cart-upsell-old {
  font-size: 11px;
  color: rgba(255,255,255,0.38);
  text-decoration: line-through;
  font-weight: 400;
}
.cart-upsell-new {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px; font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #FFD700, #4CDBC4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cart-upsell-quote {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 11px;
  font-style: italic;
  color: rgba(255,255,255,0.3);
  line-height: 1.45;
  margin: 8px 0 10px;
  padding: 0;
  position: relative;
  z-index: 1;
}
.cart-upsell-btn {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 10px 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(124,92,252,0.12), rgba(224,165,38,0.08));
  border: 1px solid rgba(124,92,252,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #FAFAFA;
  font-family: 'Outfit', 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
}
.cart-upsell-btn:hover {
  background: linear-gradient(135deg, rgba(124,92,252,0.2), rgba(224,165,38,0.12));
  border-color: rgba(124,92,252,0.35);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(124,92,252,0.12);
}
.cart-upsell-btn svg {
  transform: rotate(180deg);
  opacity: 0.7;
}
.cart-upsell-btn-shimmer {
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  animation: csShimmer 3s ease-in-out infinite;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════
   URGENCY COUNTDOWN — compact row
   ═══════════════════════════════════════════════════════ */
.cart-urgency {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(252,92,124,0.05), rgba(224,165,38,0.03));
  border: 1px solid rgba(252,92,124,0.12);
}
.cart-urgency-icon {
  font-size: 16px;
  flex-shrink: 0;
  animation: csShake 2s ease-in-out infinite;
}
@keyframes csShake {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-6deg); }
  50% { transform: rotate(6deg); }
  75% { transform: rotate(-3deg); }
}
.cart-urgency-text {
  flex: 1;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  line-height: 1.35;
}
.cart-urgency-text strong {
  color: #FC5C7C;
  font-weight: 700;
}
.cart-countdown {
  display: flex; gap: 3px;
  flex-shrink: 0;
}
.cart-countdown-unit {
  display: flex; flex-direction: column; align-items: center;
  min-width: 28px;
  padding: 3px 5px;
  border-radius: 5px;
  background: rgba(252,92,124,0.06);
  border: 1px solid rgba(252,92,124,0.1);
}
.cart-countdown-num {
  font-family: 'Space Grotesk', monospace;
  font-size: 13px; font-weight: 800;
  color: #FC5C7C;
  line-height: 1.1;
}
.cart-countdown-lbl {
  font-size: 6px; font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════
   SAVINGS CALLOUT
   ═══════════════════════════════════════════════════════ */
.cart-savings {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,215,0,0.04), rgba(34,197,94,0.03));
  border: 1px solid rgba(255,215,0,0.08);
}
.cart-savings span {
  font-size: 12px; color: rgba(255,255,255,0.5);
  line-height: 1.3;
}
.cart-savings strong {
  color: #FFD700;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════
   SOCIAL PROOF — compact, no clip
   ═══════════════════════════════════════════════════════ */
.cart-social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  min-height: 52px;
}
.cart-sp-avatar {
  width: 32px; height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(124,92,252,0.18), rgba(224,165,38,0.12));
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  border: 1.5px solid rgba(124,92,252,0.18);
}
.cart-sp-content {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.cart-sp-quote {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.cart-sp-author {
  font-size: 9px;
  color: rgba(255,255,255,0.42);
  margin-top: 2px;
  font-weight: 600;
}
.cart-sp-stars {
  font-size: 9px;
  letter-spacing: 1px;
  flex-shrink: 0;
  color: #FFD700;
}
.cart-sp-fade-out {
  opacity: 0;
  transform: translateY(-6px);
  transition: all 0.25s ease;
}
.cart-sp-fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.25s ease;
}

/* ═══════════════════════════════════════════════════════
   COUPON — compact
   ═══════════════════════════════════════════════════════ */
.cart-coupon-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cart-coupon-input-wrap {
  display: flex; gap: 6px;
}
.cart-coupon-field {
  flex: 1;
  position: relative;
  display: flex; align-items: center;
}
.cart-coupon-tag {
  position: absolute; left: 10px;
  color: rgba(255,255,255,0.32);
  pointer-events: none;
}
.cart-coupon-input {
  width: 100%;
  padding: 9px 10px 9px 30px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  color: #FAFAFA;
  font-size: 12px; font-weight: 600;
  font-family: 'Inter', 'Space Grotesk', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  outline: none;
  transition: all 0.25s ease;
}
.cart-coupon-input:focus {
  border-color: rgba(224,165,38,0.3);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 0 0 2px rgba(224,165,38,0.05);
}
.cart-coupon-input::placeholder {
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255,255,255,0.32);
  font-weight: 400;
}
.cart-coupon-apply {
  padding: 9px 16px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(224,165,38,0.1), rgba(224,165,38,0.05));
  border: 1px solid rgba(224,165,38,0.18);
  color: #E0A526;
  font-size: 11px; font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.cart-coupon-apply:hover {
  background: linear-gradient(135deg, rgba(224,165,38,0.18), rgba(224,165,38,0.08));
  border-color: rgba(224,165,38,0.35);
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(224,165,38,0.08);
}
.cart-coupon-status {
  font-size: 11px;
  min-height: 14px;
}

/* ═══════════════════════════════════════════════════════
   PRICE BREAKDOWN — clean rows
   ═══════════════════════════════════════════════════════ */
.cart-breakdown-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cart-breakdown {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
}
.cart-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.42);
  font-weight: 400;
}
.cart-row-discount { color: #22C55E; }
.cart-discount-val { font-weight: 600; }
.cart-breakdown-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  margin: 2px 0;
}
.cart-row-total {
  font-size: 14px;
  padding-top: 4px;
}
.cart-row-total strong {
  color: #FAFAFA;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.cart-row-total strong:first-child {
  font-family: 'Outfit', 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.55);
}

@keyframes cartPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

/* ═══════════════════════════════════════════════════════
   PAYMENT METHODS — tight, no overlap
   ═══════════════════════════════════════════════════════ */
.cart-pay-methods {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cart-pay-options {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cart-pay-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 44px;
  box-sizing: border-box;
}
.cart-pay-opt input { display: none; }
.cart-pay-opt-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
}
.cart-pay-svg {
  width: 20px; height: 20px;
  color: rgba(255,255,255,0.42);
  transition: color 0.2s ease;
  flex-shrink: 0;
}
.cart-pay-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s ease;
}
.cart-pay-sub {
  font-size: 10px; font-weight: 400;
  color: rgba(255,255,255,0.35);
  margin-left: 4px;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.cart-pay-check {
  color: rgba(255,255,255,0.15);
  transition: all 0.25s ease;
  opacity: 0;
  transform: scale(0.7);
  flex-shrink: 0;
}

.cart-pay-opt:hover {
  background: rgba(255,255,255,0.035);
  border-color: rgba(255,255,255,0.08);
}
.cart-pay-opt:hover .cart-pay-svg { color: rgba(255,255,255,0.45); }
.cart-pay-opt:hover .cart-pay-name { color: rgba(255,255,255,0.65); }

/* Active state */
.cart-pay-opt-active {
  background: linear-gradient(135deg, rgba(224,165,38,0.05), rgba(224,165,38,0.02)) !important;
  border-color: rgba(224,165,38,0.2) !important;
  box-shadow: 0 0 12px rgba(224,165,38,0.03);
}
.cart-pay-opt-active .cart-pay-svg { color: #E0A526 !important; }
.cart-pay-opt-active .cart-pay-name { color: #FAFAFA !important; }
.cart-pay-opt-active .cart-pay-sub { color: rgba(255,255,255,0.32) !important; }
.cart-pay-opt-active .cart-pay-check {
  color: #E0A526;
  opacity: 1;
  transform: scale(1);
}

/* ═══════════════════════════════════════════════════════
   RAZORPAY TRUST BAR — clean, no overlap
   ═══════════════════════════════════════════════════════ */
.cart-rzp-trust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(34,197,94,0.02);
  border: 1px solid rgba(34,197,94,0.06);
  margin-top: 2px;
}
.cart-rzp-left {
  display: flex; align-items: center; gap: 5px;
}
.cart-rzp-left span {
  font-size: 10px; color: rgba(255,255,255,0.35);
  font-weight: 400;
}
.cart-rzp-left strong {
  color: rgba(34,197,94,0.75);
  font-weight: 700;
}
.cart-rzp-badges {
  display: flex; gap: 4px;
}
.cart-rzp-badge {
  font-size: 8px; font-weight: 700;
  color: rgba(34,197,94,0.55);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 6px;
  border-radius: 3px;
  background: rgba(34,197,94,0.04);
  border: 1px solid rgba(34,197,94,0.08);
}
.cart-rzp-secure {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #22C55E;
  font-weight: 800;
  background: rgba(34,197,94,0.06);
  border-color: rgba(34,197,94,0.15);
  animation: securePulse 3s ease-in-out infinite;
}
.cart-rzp-secure svg {
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   FOOTER — sticky bottom, no overlap
   ═══════════════════════════════════════════════════════ */
.cart-footer {
  padding: 12px 24px 20px;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  background: linear-gradient(180deg, rgba(8,7,14,0), rgba(8,7,14,0.98) 25%);
}

/* Live ticker */
.cart-footer-live {
  display: flex; align-items: center; gap: 6px;
  justify-content: center;
}
.cart-live-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 6px rgba(34,197,94,0.4);
  animation: csLive 2s ease-in-out infinite;
}
@keyframes csLive {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
.cart-footer-live span {
  font-size: 10px; color: rgba(255,255,255,0.3);
  font-weight: 400;
}
.cart-footer-live strong {
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}

/* Pay button */
.cart-pay-btn {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #E0A526, #D4942A, #FC5C7C, #E0A526);
  background-size: 300% 100%;
  animation: csBgSlide 4s ease infinite;
  border: none;
  cursor: pointer;
  box-shadow:
    0 6px 24px rgba(224,165,38,0.18),
    0 2px 6px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.12);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-pay-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 36px rgba(224,165,38,0.25),
    0 3px 10px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.15);
}
.cart-pay-btn:active { transform: translateY(0); }
.cart-pay-btn-text {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  font-family: 'Outfit', 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 700;
  color: #0A0A0F;
}
.cart-pay-btn-text svg { opacity: 0.7; }
.cart-pay-btn-text strong {
  font-size: 18px; font-weight: 800;
  letter-spacing: -0.02em;
}
.cart-pay-btn-shimmer {
  position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: csShimmer 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes csBgSlide {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes csShimmer {
  0% { left: -100%; }
  60% { left: 200%; }
  100% { left: 200%; }
}

/* Refund line */
.cart-footer-refund {
  display: flex; align-items: center; justify-content: center; gap: 4px;
}
.cart-footer-refund svg {
  color: rgba(255,255,255,0.32);
  flex-shrink: 0;
}
.cart-footer-refund span {
  font-size: 9px; color: rgba(255,255,255,0.38);
  font-weight: 400;
}


/* ═══════════════════════════════════════════════════════
   EXIT-INTENT RETENTION MODAL
   ═══════════════════════════════════════════════════════ */
.cart-exit-overlay {
  position: fixed; inset: 0;
  z-index: 10001;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-exit-overlay.cart-exit-visible { opacity: 1; }

.cart-exit-modal {
  position: relative;
  width: 420px; max-width: 92vw;
  border-radius: 24px;
  background: linear-gradient(180deg, #14112A 0%, #0C0A14 100%);
  border: 1px solid rgba(224,165,38,0.12);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.55),
    0 0 60px rgba(224,165,38,0.04);
  overflow: hidden;
  transform: scale(0.88) translateY(24px);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.cart-exit-visible .cart-exit-modal {
  transform: scale(1) translateY(0);
}

.cart-exit-cosmic {
  position: absolute; top: -50px; left: 50%; transform: translateX(-50%);
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,165,38,0.1), rgba(124,92,252,0.04), transparent 70%);
  pointer-events: none;
  animation: exitPulse 4s ease-in-out infinite;
}
@keyframes exitPulse {
  0%, 100% { opacity: 0.35; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.9; transform: translateX(-50%) scale(1.15); }
}

.cart-exit-body {
  padding: 36px 28px 28px;
  text-align: center;
  position: relative; z-index: 2;
}
.cart-exit-zodiac {
  font-size: 42px;
  margin-bottom: 12px;
  display: inline-block;
  animation: exitFloat 3s ease-in-out infinite;
}
@keyframes exitFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(4deg); }
}
.cart-exit-title {
  font-family: 'Outfit', 'Space Grotesk', sans-serif;
  font-size: 20px; font-weight: 800;
  letter-spacing: -0.03em;
  color: #FAFAFA;
  margin-bottom: 6px;
  line-height: 1.3;
}
.cart-exit-quote {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 14px; font-style: italic;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
  margin: 6px 0 2px;
  padding: 0 8px;
}
.cart-exit-quote-mark {
  font-size: 24px;
  color: rgba(224,165,38,0.25);
  font-family: 'Georgia', serif;
  line-height: 1;
  display: block;
  margin-bottom: 3px;
}
.cart-exit-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  margin-top: 4px;
}
.cart-exit-offer {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(224,165,38,0.08), rgba(252,92,124,0.04));
  border: 1px solid rgba(224,165,38,0.15);
  margin: 14px 0 16px;
  animation: exitGlow 2s ease-in-out infinite;
}
@keyframes exitGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(224,165,38,0); }
  50% { box-shadow: 0 0 16px rgba(224,165,38,0.08); }
}
.cart-exit-offer-icon { font-size: 18px; }
.cart-exit-offer-text {
  font-size: 13px; font-weight: 700;
  background: linear-gradient(135deg, #FFD700, #E0A526);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cart-exit-actions {
  display: flex; flex-direction: column; gap: 8px;
}
.cart-exit-stay {
  width: 100%; padding: 12px 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #E0A526, #D4942A);
  border: none; cursor: pointer;
  font-family: 'Outfit', 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 700;
  color: #0A0A0F;
  box-shadow: 0 5px 20px rgba(224,165,38,0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.cart-exit-stay:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(224,165,38,0.3);
}
.cart-exit-stay::after {
  content: '';
  position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  animation: csShimmer 3s ease-in-out infinite;
}
.cart-exit-leave {
  background: none;
  border: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.25);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 11px; font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cart-exit-leave:hover {
  color: rgba(255,255,255,0.45);
  border-color: rgba(255,255,255,0.1);
}
.cart-exit-celestial {
  display: flex; justify-content: center; gap: 16px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.cart-exit-stat { text-align: center; }
.cart-exit-stat-val {
  font-family: 'Space Grotesk', monospace;
  font-size: 16px; font-weight: 800;
  background: linear-gradient(135deg, #FFD700, #4CDBC4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cart-exit-stat-label {
  font-size: 8px;
  color: rgba(255,255,255,0.22);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-top: 1px;
}


/* ═══════════════════════════════════════════════════════
   PAYMENT SUCCESS MODAL
   ═══════════════════════════════════════════════════════ */
.pay-modal-overlay {
  position: fixed; inset: 0;
  z-index: 10001;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.pay-modal-overlay.pay-modal-visible { opacity: 1; }

.pay-modal {
  position: relative;
  width: 400px; max-width: 92vw;
  border-radius: 20px;
  background: linear-gradient(180deg, #12101F 0%, #0A0A0F 100%);
  border: 1px solid rgba(34,197,94,0.18);
  box-shadow: 0 30px 70px rgba(0,0,0,0.45), 0 0 50px rgba(34,197,94,0.04);
  overflow: hidden;
  transform: scale(0.9) translateY(16px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.pay-modal-visible .pay-modal {
  transform: scale(1) translateY(0);
}
.pay-modal-cosmic-ring {
  position: absolute; top: -70px; left: 50%; transform: translateX(-50%);
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.12), transparent 70%);
  pointer-events: none;
  animation: payRing 3s ease-in-out infinite;
}
@keyframes payRing {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.9; transform: translateX(-50%) scale(1.1); }
}
.pay-modal-body {
  padding: 36px 28px 28px;
  text-align: center;
  position: relative; z-index: 2;
}
.pay-success-icon {
  width: 70px; height: 70px;
  margin: 0 auto 16px;
}
.pay-success-icon svg { width: 100%; height: 100%; }
.pay-check-draw {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: payCheck 0.6s 0.3s ease-out forwards;
}
@keyframes payCheck { to { stroke-dashoffset: 0; } }

.pay-modal-title {
  font-family: 'Outfit', 'Space Grotesk', sans-serif;
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #22C55E, #4CDBC4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.pay-modal-plan {
  font-size: 13px; color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.pay-modal-details {
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 16px;
}
.pay-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
}
.pay-detail-row + .pay-detail-row {
  border-top: 1px solid rgba(255,255,255,0.035);
}
.pay-detail-row span {
  font-size: 11px; color: rgba(255,255,255,0.38);
}
.pay-detail-row strong {
  font-size: 12px; color: #FAFAFA;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.pay-modal-message { margin-bottom: 20px; }
.pay-modal-message p {
  font-size: 13px; color: rgba(255,255,255,0.65);
  line-height: 1.45; margin: 0;
}
.pay-modal-sub {
  font-size: 11px !important;
  color: rgba(255,255,255,0.3) !important;
  margin-top: 3px;
}
.pay-modal-cta {
  width: 100%; padding: 12px 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #22C55E, #16A34A);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-family: 'Outfit', 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 700;
  color: #fff;
  box-shadow: 0 5px 20px rgba(34,197,94,0.2);
  transition: all 0.3s ease;
}
.pay-modal-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(34,197,94,0.3);
}


/* ═══════════════════════════════════════════════════════
   ERROR TOAST
   ═══════════════════════════════════════════════════════ */
.pay-error-toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  z-index: 10002;
  display: flex; align-items: flex-start; gap: 10px;
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(30,15,15,0.95), rgba(20,10,10,0.98));
  border: 1px solid rgba(252,92,124,0.25);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45), 0 0 24px rgba(252,92,124,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  max-width: 440px;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pay-error-toast.pay-toast-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.pay-toast-icon { font-size: 20px; flex-shrink: 0; }
.pay-toast-msg strong {
  display: block;
  font-family: 'Outfit', 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 700;
  color: #FC5C7C; margin-bottom: 3px;
}
.pay-toast-msg p {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  line-height: 1.45;
  margin: 0;
}
.pay-toast-close {
  background: none; border: none;
  color: rgba(255,255,255,0.25);
  font-size: 13px; cursor: pointer;
  padding: 3px;
  transition: color 0.2s;
  flex-shrink: 0;
}
.pay-toast-close:hover { color: #fff; }


/* ═══════════════════════════════════════════════════════
   STAGGER ANIMATION (opt-in via JS class)
   ═══════════════════════════════════════════════════════ */
.cart-stagger > * {
  opacity: 0;
  transform: translateY(10px);
  animation: csReveal 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.cart-stagger > *:nth-child(1) { animation-delay: 0.04s; }
.cart-stagger > *:nth-child(2) { animation-delay: 0.08s; }
.cart-stagger > *:nth-child(3) { animation-delay: 0.12s; }
.cart-stagger > *:nth-child(4) { animation-delay: 0.16s; }
.cart-stagger > *:nth-child(5) { animation-delay: 0.20s; }
.cart-stagger > *:nth-child(6) { animation-delay: 0.24s; }
.cart-stagger > *:nth-child(7) { animation-delay: 0.28s; }
.cart-stagger > *:nth-child(8) { animation-delay: 0.32s; }
.cart-stagger > *:nth-child(9) { animation-delay: 0.36s; }
@keyframes csReveal {
  to { opacity: 1; transform: translateY(0); }
}


/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .cart-drawer {
    width: 100vw;
    max-width: 100vw;
    max-height: 100vh;
    border-radius: 0;
  }
  .cart-columns {
    flex-direction: column;
  }
  .cart-col-left,
  .cart-col-right {
    flex: none;
    overflow-y: visible;
  }
  .cart-col-right {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.04);
  }
  .cart-header { padding: 14px 16px 0; }
  .cart-col-left { padding: 14px 16px 16px; gap: 10px; }
  .cart-col-right { padding: 14px 16px 16px; gap: 10px; }
  .cart-plan-features {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .cart-exit-modal { width: 95vw; }
  .cart-exit-body { padding: 28px 20px 22px; }
}

@media (max-width: 480px) {
  .cart-pay-sub { display: none; }
  .pay-modal { width: 95vw; }
  .pay-modal-body { padding: 28px 16px 20px; }
  .cart-steps { padding: 8px 12px 10px; }
  .cart-step-line { width: 20px; }
  .cart-countdown-unit { min-width: 24px; padding: 2px 4px; }
  .cart-countdown-num { font-size: 11px; }
}

/* ═══════════════════════════════════════════════════════
   CROSS-SELL PRODUCTS — Add-on upsell for other products
   ═══════════════════════════════════════════════════════ */
.cart-crosssell {
  margin-top: 2px;
}
.cart-crosssell-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cart-xs-card {
  position: relative;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}
.cart-xs-card:hover {
  border-color: rgba(224,165,38,0.12);
  background: rgba(255,255,255,0.03);
}
.cart-xs-card.cart-xs-added {
  border-color: rgba(34,197,94,0.2);
  background: rgba(34,197,94,0.03);
}
.cart-xs-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-xs-icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(224,165,38,0.06), rgba(124,92,252,0.04));
  border: 1px solid rgba(224,165,38,0.08);
}
.cart-xs-info {
  flex: 1;
  min-width: 0;
}
.cart-xs-info strong {
  display: block;
  font-family: 'Outfit', 'Space Grotesk', sans-serif;
  font-size: 12px; font-weight: 700;
  color: #FAFAFA;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.cart-xs-info span {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  line-height: 1.3;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-xs-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 700;
  color: #E0A526;
  flex-shrink: 0;
  letter-spacing: -0.01em;
}
.cart-xs-add {
  margin-top: 8px;
  width: 100%;
  padding: 7px 12px;
  border-radius: 7px;
  background: rgba(224,165,38,0.06);
  border: 1px solid rgba(224,165,38,0.12);
  color: #E0A526;
  font-size: 11px; font-weight: 700;
  font-family: 'Outfit', 'Space Grotesk', sans-serif;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
}
.cart-xs-add:hover {
  background: rgba(224,165,38,0.12);
  border-color: rgba(224,165,38,0.25);
  transform: translateY(-1px);
}
.cart-xs-added .cart-xs-add {
  background: rgba(34,197,94,0.08);
  border-color: rgba(34,197,94,0.2);
  color: #22C55E;
}
.cart-xs-added .cart-xs-add:hover {
  background: rgba(252,92,124,0.08);
  border-color: rgba(252,92,124,0.2);
  color: #FC5C7C;
}
