/* ===== Tokens ===== */
:root {
  --black: #0a0a0a;
  --black-soft: #131313;
  --surface: #1a1a1a;
  --surface-2: #212121;
  --border: rgba(255,255,255,0.12);
  --border-soft: rgba(255,255,255,0.08);
  --white: #f7f6f3;
  --white-dim: rgba(247,246,243,0.68);
  --white-faint: rgba(247,246,243,0.42);
  --accent: #f7f6f3;

  --font-display: 'Bodoni Moda', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 96px;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;

  --ease-out: cubic-bezier(.16,1,.3,1);
  --dur-fast: 180ms;
  --dur-med: 300ms;

  --header-h: 108px;
  --z-header: 100;
  --z-drawer: 200;
  --z-modal: 210;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ===== Reset ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input { font: inherit; color: inherit; }
ul { list-style: none; }
.visually-hidden { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); }

::selection { background: var(--white); color: var(--black); }

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

/* ===== Layout helpers ===== */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: var(--space-3);
}
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
  border: 1.5px solid transparent;
  min-height: 44px;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--white); color: var(--black); }
.btn-primary:hover { background: #ffffff; opacity: 0.9; }
.btn-ghost { background: transparent; color: var(--white); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--white); }
.btn-small { padding: 10px 18px; font-size: 12px; border: 1.5px solid var(--white); background: transparent; color: var(--white); border-radius: 999px; }
.btn-small:hover { background: var(--white); color: var(--black); }
.btn-full { width: 100%; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ===== Announcement bar ===== */
.announcement-bar {
  background: var(--white);
  color: var(--black);
  text-align: center;
  padding: 9px var(--space-3);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(10,10,10,0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: var(--space-3) var(--space-4);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-3);
}
.main-nav { display: flex; gap: var(--space-5); }
.main-nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color var(--dur-fast) var(--ease-out);
  padding: var(--space-2);
}
.main-nav a:hover { color: var(--white); }

.brand-mark { display: flex; align-items: center; justify-content: center; gap: var(--space-2); }
.brand-logo { width: 52px; height: 52px; border-radius: 50%; }
.brand-name { font-family: var(--font-display); font-size: 20px; letter-spacing: 0.06em; display: none; }

.header-actions { display: flex; justify-content: flex-end; gap: var(--space-2); }
.icon-btn {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--white);
  position: relative;
  transition: background var(--dur-fast) var(--ease-out);
}
.icon-btn:hover { background: var(--surface); }
.menu-toggle { display: none; }
.cart-count {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--white);
  color: var(--black);
  font-size: 10px;
  font-weight: 800;
  width: 17px; height: 17px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--dur-fast) var(--ease-out);
}
.cart-count.bump { transform: scale(1.3); }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: var(--space-2) var(--space-4) var(--space-4);
  border-top: 1px solid var(--border-soft);
}
.mobile-nav a { padding: var(--space-3) 0; font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 1px solid var(--border-soft); }
.mobile-nav.open { display: flex; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 92vh;
  min-height: 92dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: var(--space-7) var(--space-4);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.35) 40%, rgba(10,10,10,0.85) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero h1 {
  font-size: clamp(48px, 9vw, 92px);
  line-height: 0.98;
  margin-bottom: var(--space-4);
  text-wrap: balance;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--white-dim);
  max-width: 520px;
  margin: 0 auto var(--space-5);
}
.hero-actions { display: flex; gap: var(--space-3); justify-content: center; flex-wrap: wrap; }
.scroll-cue {
  position: absolute; bottom: var(--space-5); left: 50%; transform: translateX(-50%);
  z-index: 1; color: var(--white-dim);
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%,0);} 50% { transform: translate(-50%,8px);} }
@media (prefers-reduced-motion: reduce) { .scroll-cue { animation: none; } }

/* ===== Trust strip ===== */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border-soft);
  border-top: 1px solid var(--border-soft);
}
.trust-item {
  display: flex; align-items: center; justify-content: center; gap: var(--space-2);
  padding: var(--space-4) var(--space-2);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-align: center;
  border-right: 1px solid var(--border-soft);
}
.trust-item:last-child { border-right: none; }
.trust-item svg { flex-shrink: 0; color: var(--white); }

/* ===== Section shared ===== */
section { padding: var(--space-8) var(--space-4); max-width: 1320px; margin: 0 auto; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto var(--space-6); }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: var(--space-3); }
.section-sub { color: var(--white-dim); font-size: 16px; }

/* ===== Shop / Products ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out);
}
.product-card:hover { transform: translateY(-4px); border-color: var(--border); }

.product-media {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #efeeea;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.product-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity var(--dur-med) var(--ease-out);
}
.img-hover { opacity: 0; }
.product-media:hover .img-hover { opacity: 1; }
.product-media:hover .img-front { opacity: 0; }
.product-tag {
  position: absolute; top: var(--space-3); left: var(--space-3);
  background: var(--black); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  z-index: 1;
}

.product-info { padding: var(--space-4); }
.product-info h3 { font-size: 21px; margin-bottom: var(--space-2); }
.product-desc { color: var(--white-dim); font-size: 14px; margin-bottom: var(--space-4); }
.product-row { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); }
.price { font-family: var(--font-display); font-size: 20px; font-weight: 700; }

/* ===== Mission ===== */
.mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  align-items: center;
}
.mission-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.mission-media img { width: 100%; height: 100%; object-fit: cover; }
.mission-content h2 { font-size: clamp(30px, 3.6vw, 42px); margin-bottom: var(--space-4); }
.mission-content blockquote {
  border-left: 2px solid var(--white);
  padding-left: var(--space-4);
  margin: var(--space-4) 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--white);
}
.mission-content blockquote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-faint);
  margin-top: var(--space-2);
}
.mission-content p { color: var(--white-dim); margin-bottom: var(--space-4); max-width: 52ch; }

/* ===== FAQ ===== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: var(--space-4);
}
.faq-item h4 { font-size: 15px; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: var(--space-2); font-family: var(--font-body); font-weight: 700; }
.faq-item p { color: var(--white-dim); font-size: 14px; }

/* ===== Newsletter ===== */
.newsletter { background: var(--white); color: var(--black); border-radius: var(--radius-lg); max-width: 1320px; margin: 0 auto var(--space-8); padding: var(--space-7) var(--space-4); }
.newsletter-inner { max-width: 520px; margin: 0 auto; text-align: center; }
.newsletter .eyebrow { color: rgba(10,10,10,0.6); }
.newsletter h2 { font-size: clamp(28px, 4vw, 38px); margin-bottom: var(--space-4); }
.newsletter-form { display: flex; gap: var(--space-2); }
.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(10,10,10,0.2);
  background: transparent;
  font-size: 15px;
  min-height: 44px;
}
.newsletter-form input:focus-visible { outline: 2px solid var(--black); outline-offset: 2px; }
.newsletter-form .btn-primary { background: var(--black); color: var(--white); }
.newsletter-note { margin-top: var(--space-3); font-size: 13px; font-weight: 600; min-height: 1em; }

/* ===== Footer ===== */
.site-footer { border-top: 1px solid var(--border-soft); padding-top: var(--space-7); }
.footer-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 0 var(--space-4) var(--space-6);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-5);
}
.footer-brand { display: flex; flex-direction: column; gap: var(--space-3); max-width: 320px; }
.footer-logo { width: 56px; height: 56px; border-radius: 50%; }
.footer-brand p { color: var(--white-faint); font-size: 14px; }
.footer-col h5 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--white-faint); margin-bottom: var(--space-3); }
.footer-col a { display: block; padding: var(--space-1) 0; color: var(--white-dim); font-size: 14px; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--border-soft); padding: var(--space-4); text-align: center; }
.footer-bottom p { color: var(--white-faint); font-size: 13px; }

/* ===== Modal (product quick view) ===== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: var(--z-modal);
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-4);
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur-med) var(--ease-out);
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--surface);
  border-radius: var(--radius-lg);
  max-width: 880px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(16px) scale(0.98);
  opacity: 0;
  transition: transform var(--dur-med) var(--ease-out), opacity var(--dur-med) var(--ease-out);
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); opacity: 1; }
.modal-close {
  position: absolute; top: var(--space-3); right: var(--space-3);
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface-2);
  font-size: 24px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.modal-close:hover { background: var(--border); }

.product-modal-body { display: grid; grid-template-columns: 1fr 1fr; }
.pm-gallery { padding: var(--space-4); background: #efeeea; border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.pm-main-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius-md); background: #efeeea; }
.pm-thumbs { display: flex; gap: var(--space-2); margin-top: var(--space-3); }
.pm-thumbs img { width: 64px; height: 64px; object-fit: cover; border-radius: var(--radius-sm); cursor: pointer; border: 2px solid transparent; opacity: 0.65; transition: opacity var(--dur-fast), border-color var(--dur-fast); }
.pm-thumbs img:hover { opacity: 1; }
.pm-thumbs img.active { opacity: 1; border-color: var(--black); }

.pm-details { padding: var(--space-5); display: flex; flex-direction: column; }
.pm-details h3 { font-size: 26px; margin-bottom: var(--space-2); }
.pm-details .price { font-size: 20px; margin-bottom: var(--space-3); }
.pm-desc { color: var(--white-dim); font-size: 14px; margin-bottom: var(--space-4); }

.pm-field { margin-bottom: var(--space-4); }
.pm-label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white-faint); margin-bottom: var(--space-2); }
.size-options { display: flex; gap: var(--space-2); flex-wrap: wrap; }
.size-options button {
  min-width: 48px; min-height: 44px; padding: 0 var(--space-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600;
  transition: border-color var(--dur-fast), background var(--dur-fast), color var(--dur-fast);
}
.size-options button:hover { border-color: var(--white-dim); }
.size-options button.selected { background: var(--white); color: var(--black); border-color: var(--white); }

.qty-stepper { display: inline-flex; align-items: center; border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.qty-stepper button { width: 44px; height: 44px; font-size: 18px; }
.qty-stepper button:hover { background: var(--surface-2); }
.qty-stepper input { width: 46px; text-align: center; background: transparent; border: none; border-left: 1.5px solid var(--border); border-right: 1.5px solid var(--border); height: 44px; font-size: 15px; }

.pm-size-warning { display: none; color: #ff8a8a; font-size: 13px; margin-bottom: var(--space-2); font-weight: 600; }
.pm-size-warning.show { display: block; }

.pm-meta { margin-top: var(--space-5); border-top: 1px solid var(--border-soft); padding-top: var(--space-4); display: flex; flex-direction: column; gap: var(--space-2); }
.pm-meta li { font-size: 13px; color: var(--white-faint); position: relative; padding-left: var(--space-3); }
.pm-meta li::before { content: '\2713'; position: absolute; left: 0; color: var(--white-dim); }

/* ===== Cart Drawer ===== */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: var(--z-drawer);
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur-med) var(--ease-out);
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(440px, 100vw);
  background: var(--black-soft);
  border-left: 1px solid var(--border);
  z-index: calc(var(--z-drawer) + 1);
  transform: translateX(100%);
  transition: transform var(--dur-med) var(--ease-out);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.cart-drawer.open { transform: translateX(0); }

.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-4);
  border-bottom: 1px solid var(--border-soft);
  gap: var(--space-2);
}
.drawer-header h3 { font-size: 20px; flex: 1; }
.back-btn { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.back-btn:hover { background: var(--surface); }

.cart-view, .checkout-view { display: flex; flex-direction: column; height: 100%; overflow: hidden; }
.checkout-view { display: none; }
.cart-drawer.checkout-mode .cart-view { display: none; }
.cart-drawer.checkout-mode .checkout-view { display: flex; }

.cart-items { flex: 1; overflow-y: auto; padding: var(--space-3) var(--space-4); }
.cart-line {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--border-soft);
}
.cart-line img { width: 72px; height: 72px; object-fit: cover; border-radius: var(--radius-sm); background: #efeeea; }
.cart-line-info h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; font-family: var(--font-body); }
.cart-line-meta { font-size: 12px; color: var(--white-faint); margin-bottom: var(--space-2); }
.cart-line-controls { display: flex; align-items: center; gap: var(--space-2); }
.line-qty { display: inline-flex; align-items: center; border: 1px solid var(--border); border-radius: var(--radius-sm); }
.line-qty button { width: 26px; height: 26px; font-size: 14px; }
.line-qty span { width: 22px; text-align: center; font-size: 13px; }
.remove-line { font-size: 12px; color: var(--white-faint); text-decoration: underline; padding: var(--space-1); }
.remove-line:hover { color: var(--white); }
.cart-line-price { font-size: 14px; font-weight: 700; white-space: nowrap; }

.cart-empty { display: none; flex: 1; flex-direction: column; align-items: center; justify-content: center; gap: var(--space-3); padding: var(--space-6); text-align: center; color: var(--white-dim); }

.cart-summary { padding: var(--space-4); border-top: 1px solid var(--border-soft); }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--white-dim); padding: var(--space-1) 0; }
.summary-total { font-size: 16px; font-weight: 700; color: var(--white); padding-top: var(--space-2); margin-top: var(--space-2); border-top: 1px solid var(--border-soft); }
.summary-total span:last-child { font-family: var(--font-display); font-size: 20px; }
#checkout-btn { margin-top: var(--space-3); }

/* Checkout view */
.checkout-form { flex: 1; overflow-y: auto; padding: var(--space-4); display: flex; flex-direction: column; gap: var(--space-4); }
.checkout-order-summary { display: flex; flex-direction: column; gap: var(--space-2); }
.checkout-order-summary .co-line { display: flex; justify-content: space-between; font-size: 13px; color: var(--white-dim); }
.checkout-summary { border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); padding: var(--space-3) 0; }
.checkout-h4 { font-family: var(--font-body); font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--white-faint); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.form-field { display: flex; flex-direction: column; gap: 6px; font-size: 12px; color: var(--white-faint); font-weight: 600; }
.form-field.span-2 { grid-column: span 2; }
.form-field input {
  min-height: 44px;
  padding: 0 var(--space-3);
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--white);
  font-size: 14px;
}
.form-field input:focus-visible { outline: 2px solid var(--white); outline-offset: 1px; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .header-inner { grid-template-columns: auto 1fr auto; }
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .brand-name { display: none; }
  .mission { grid-template-columns: 1fr; }
  .mission-media { aspect-ratio: 16/10; }
  .faq-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .product-grid { grid-template-columns: 1fr; }
  .product-modal-body { grid-template-columns: 1fr; }
  .pm-gallery { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.span-2 { grid-column: span 1; }
  .newsletter-form { flex-direction: column; }
  section { padding: var(--space-7) var(--space-3); }
  .cart-drawer { width: 100vw; }
}

@media (max-width: 480px) {
  .faq-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* ===== Checkout (secure redirect state) ===== */
.checkout-secure-note {
  font-size: 13px;
  color: var(--white-faint);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.checkout-error {
  color: #ff8a8a;
  font-size: 13px;
  font-weight: 600;
  min-height: 1em;
}

/* ===== Success page ===== */
.success-page {
  min-height: 70vh;
  min-height: 70dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6) var(--space-4);
}
.success-card {
  max-width: 460px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}
.success-icon { color: var(--white); margin-bottom: var(--space-2); }
.success-card h1 { font-size: clamp(28px, 4vw, 36px); }
.success-card p { color: var(--white-dim); }
.success-total { font-family: var(--font-display); font-size: 22px; color: var(--white) !important; }
.success-card .btn { margin-top: var(--space-3); }
.success-spinner {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 3px solid var(--border);
  border-top-color: var(--white);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .success-spinner { animation: none; }
}
