/* Victory CI — Public Website */

/* Neutralize Bootstrap 4 element defaults (loaded before this file) so
   existing typography/links are unaffected by Bootstrap's reboot.css */
body h1, body h2, body h3, body h4, body h5, body h6,
body p { margin: 0; font-weight: inherit; }
body a { color: inherit; text-decoration: none; }
body .btn:focus, body .form-control:focus { box-shadow: none; }

:root {
  --ivory:      #FFFFF0;
  --gold:       #C8960C;
  --gold-pale:  #E8D48B;
  --gold-deep:  #A07508;
  --navy:       #1A2744;
  --navy-mid:   #2B4080;
  --blue:       #00AAFF;
  --blue-deep:  #0080CC;
  --muted:      #7A6A3A;
  --surface:    #FFFDF0;
  --border:     #E8D48B;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-pill: 100px;

  --shadow-card: 0 2px 16px rgba(26,39,68,.10);
  --shadow-lift: 0 4px 24px rgba(200,150,12,.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Sarabun', 'Segoe UI', sans-serif;
  background: var(--ivory);
  color: var(--navy);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Nav ─────────────────────────────── */
.v-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,240,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1.5px solid var(--border);
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.v-nav-logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.v-nav-logo span { color: var(--gold); }
.v-nav-logo-icon { width: 30px; height: 30px; object-fit: contain; image-rendering: pixelated; flex-shrink: 0; }
.v-nav-links { display: flex; gap: 4px; flex: 1; }
.v-nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--r-sm);
  transition: color .15s, background .15s;
}
.v-nav-links a:hover { color: var(--navy); background: rgba(200,150,12,.08); }
.v-nav-actions { margin-left: auto; display: flex; gap: 8px; align-items: center; }

.v-vcoin-pill {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: rgba(200,150,12,.1);
  border: 1.5px solid var(--border);
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color .15s, background .15s, transform .15s;
}
.v-vcoin-pill:hover { border-color: var(--gold); background: rgba(200,150,12,.16); transform: translateY(-1px); color: var(--gold-deep); }
.v-vcoin-pill:active { transform: translateY(0); }

.v-nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--border);
  color: var(--navy);
  font-size: 1.05rem;
  width: 38px; height: 38px;
  align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  cursor: pointer;
  margin-right: 8px;
}
.v-nav-toggle:hover { background: rgba(200,150,12,.08); border-color: var(--gold); }
.v-nav-mobile-auth { display: none; }

.v-user-menu { position: relative; }
.v-user-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px 6px 8px;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--navy);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: border-color .15s, background .15s, transform .15s;
}
.v-user-chip i { font-size: 1.2rem; color: var(--gold); }
.v-user-chip i.fa-chevron-down { font-size: 10px; transition: transform .15s; }
.v-user-chip[aria-expanded="true"] i.fa-chevron-down { transform: rotate(180deg); }
.v-user-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px); right: 0;
  min-width: 200px;
  flex-direction: column;
  gap: 2px;
  background: var(--ivory);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-card);
  padding: 8px;
  z-index: 110;
}
.v-user-dropdown.open { display: flex; }
.v-user-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px;
  border-radius: var(--r-sm);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.v-user-dropdown a i { width: 16px; text-align: center; color: var(--gold); font-size: 13px; }
.v-user-dropdown a:hover { background: rgba(200,150,12,.08); color: var(--gold-deep); }
.v-user-bust {
  width: 22px; height: 22px;
  border-radius: 50%;
  object-fit: cover;
  image-rendering: pixelated;
  flex-shrink: 0;
}
.v-user-chip:hover { border-color: var(--gold); background: #fff; transform: translateY(-1px); }
.v-user-chip.active { border-color: var(--gold); background: rgba(200,150,12,.1); color: var(--gold-deep); }
.v-user-chip:active { transform: translateY(0); }

/* ── Buttons ─────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  padding: 10px 20px;
  transition: background .15s, transform .15s, box-shadow .15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover { background: var(--gold-deep); box-shadow: var(--shadow-lift); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-ghost:hover { background: rgba(200,150,12,.08); }
.btn-navy {
  background: var(--navy);
  color: var(--ivory);
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); }
.btn-donate {
  background: var(--blue);
  color: #fff;
}
.btn-donate:hover { background: var(--blue-deep); box-shadow: 0 4px 24px rgba(0,170,255,.28); transform: translateY(-1px); }
.btn-lg { padding: 14px 32px; font-size: 14px; border-radius: var(--r-md); }
.btn-sm { padding: 7px 14px; font-size: 11px; }

/* Primary "buy" action button — used on shop.php and checkout.php (was only
   locally defined in shop.php's own <style>, leaving checkout.php's buy
   buttons unstyled on production; centralized here so both pages share it). */
.btn-buy { width: 100%; min-height: 46px; padding: 12px; font-size: 13px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; background: var(--gold); color: var(--navy); border: none; border-radius: var(--r-sm); cursor: pointer; text-align: center; transition: background .15s, transform .1s; margin-top: auto; }
.btn-buy:hover { background: var(--gold-deep); color: #fff; }
.btn-buy:active { transform: scale(.96); }
.btn-buy.disabled, .btn-buy:disabled { background: var(--border); color: var(--muted); cursor: not-allowed; pointer-events: none; }

/* ── Donate CTA block (reused on index/shop/orders/account) ──────────── */
.donate-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.donate-cta-text { flex: 1; min-width: 200px; }
.donate-cta-title { font-size: 1.05rem; font-weight: 900; margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
.donate-cta-sub { font-size: 12.5px; color: rgba(255,255,255,.6); }
.donate-cta-sub a { color: var(--gold-pale); font-weight: 700; text-decoration: none; }
.donate-cta-sub a:hover { text-decoration: underline; }
.donate-cta .btn-donate { flex-shrink: 0; padding: 13px 26px; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; border-radius: var(--r-sm); }

/* ── Anonymous recent-supporter ticker ────────────────────────────────── */
.donor-ticker { max-width: 620px; margin: 0 auto; }
.donor-ticker-row {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.donor-card {
  flex: 1;
  max-width: 280px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity .4s ease;
}
.donor-card-icon { font-size: 1.6rem; flex-shrink: 0; }
.donor-card-label { font-size: 13px; font-weight: 800; color: var(--navy); }
.donor-card-time { font-size: 11px; color: var(--muted); margin-top: 1px; }
.donor-ticker.is-fading .donor-card { opacity: 0; }
@media (prefers-reduced-motion: reduce) {
  .donor-card { transition: none; }
}
@media (max-width: 640px) {
  .donor-ticker-row { flex-direction: column; align-items: center; }
  .donor-card { width: 100%; max-width: 340px; }
}

/* ── Hero ────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(200,150,12,.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 80%, rgba(0,170,255,.06) 0%, transparent 60%);
}
.hero-inner { position: relative; max-width: 720px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(200,150,12,.15);
  border: 1px solid rgba(200,150,12,.3);
  color: var(--gold-pale);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--ivory);
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 16px;
  text-wrap: balance;
}
.hero-title em { color: var(--gold); font-style: normal; }
.hero-title-img { width: min(88vw, 620px); height: auto; display: block; margin: 0 auto; filter: drop-shadow(0 12px 32px rgba(0,0,0,.35)); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,240,.6);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-ip {
  margin-top: 48px;
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,240,.06);
  border: 1px solid rgba(200,150,12,.2);
  border-radius: var(--r-sm);
  padding: 10px 20px;
  font-size: 13px;
  color: rgba(255,255,240,.5);
}
.hero-ip strong { color: var(--gold-pale); font-family: monospace; font-size: 14px; }

/* ── Section ─────────────────────────── */
.section { padding: 80px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-alt { background: var(--surface); }
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.section-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
}

/* ── Feature Grid ────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.feature-card {
  background: var(--ivory);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 24px;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.feature-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
}
.feature-icon {
  width: 44px; height: 44px;
  background: rgba(200,150,12,.12);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.feature-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.feature-desc  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── Steps ───────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 48px;
  counter-reset: step;
}
.step {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}
.step-num {
  width: 48px; height: 48px;
  background: var(--gold);
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-desc  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── Auth Card (login/register) ─────── */
.auth-page {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 40px;
  position: relative;
}
.auth-page::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(200,150,12,.1) 0%, transparent 70%);
}
.auth-card {
  position: relative;
  background: var(--ivory);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 8px 48px rgba(26,39,68,.3);
}
.auth-logo {
  text-align: center;
  margin-bottom: 32px;
}
.auth-logo-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -.02em;
}
.auth-logo-title em { color: var(--gold); font-style: normal; }
.auth-logo-sub { font-size: 13px; color: var(--muted); margin-top: 4px; }

.auth-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -.01em;
}

/* ── Form ────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  background: var(--ivory);
  color: var(--navy);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.form-input::placeholder { color: var(--muted); opacity: .6; }
.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,150,12,.15);
}
.form-hint { font-size: 11px; color: var(--muted); margin-top: 4px; }
.form-divider {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin: 20px 0;
  position: relative;
}
.form-divider::before, .form-divider::after {
  content: '';
  position: absolute; top: 50%;
  width: calc(50% - 40px);
  height: 1px;
  background: var(--border);
}
.form-divider::before { left: 0; }
.form-divider::after  { right: 0; }

/* ── Alert ───────────────────────────── */
.alert {
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.alert-error {
  background: rgba(139,26,26,.08);
  border: 1.5px solid rgba(139,26,26,.2);
  color: #8B1A1A;
}
.alert-success {
  background: rgba(200,150,12,.1);
  border: 1.5px solid rgba(200,150,12,.3);
  color: var(--gold-deep);
}

/* ── Footer ──────────────────────────── */
.v-footer {
  background: var(--navy);
  color: rgba(255,255,240,.4);
  text-align: center;
  padding: 32px 24px;
  font-size: 13px;
}
.v-footer a { color: var(--gold-pale); text-decoration: none; }
.v-footer strong { color: rgba(255,255,240,.7); }

/* ── Motion ──────────────────────────── */
:root {
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes v-fade-in     { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes v-fade-out-kf { to   { opacity: 0; transform: translateY(-4px); } }
@keyframes v-pop         { 0% { transform: scale(1); } 45% { transform: scale(1.3); } 100% { transform: scale(1); } }
@keyframes v-pulse-ring  { 0%, 100% { box-shadow: 0 0 0 0 rgba(200,150,12,.35); } 50% { box-shadow: 0 0 0 7px rgba(200,150,12,0); } }
@keyframes v-success-ring-kf { from { transform: scale(.5); opacity: .7; } to { transform: scale(2); opacity: 0; } }
@keyframes v-shimmer-kf  { from { background-position: -140% 0; } to { background-position: 140% 0; } }

.v-anim-in  { animation: v-fade-in .35s var(--ease-out-quart) both; }
.v-fade-out { animation: v-fade-out-kf .15s var(--ease-out-quart) both; }
.v-badge-pop { animation: v-pop .35s var(--ease-out-quart); }

.v-success-wrap { position: relative; display: inline-flex; align-items: center; justify-content: center; }
.v-success-ring { position: absolute; inset: -14px; border-radius: 50%; border: 2px solid var(--gold); animation: v-success-ring-kf .7s var(--ease-out-quart) both; pointer-events: none; }
.v-success-icon { display: inline-block; animation: v-pop .55s var(--ease-out-quart) .1s both; }

/* ── Skeleton (loading placeholder) ─────────────── */
@keyframes v-skeleton-sweep { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.v-skeleton { position: relative; overflow: hidden; background: var(--surface); }
.v-skeleton::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(200,150,12,.22) 45%, rgba(200,150,12,.22) 55%, transparent 100%);
  background-size: 200% 100%;
  animation: v-skeleton-sweep 1.5s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .v-skeleton::after { animation: none; background: rgba(200,150,12,.14); }
}

/* ── Page transition progress bar (full-page nav feedback — MPA, not SPA) ── */
.v-page-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%;
  background: var(--gold);
  z-index: 200;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-out-quart), opacity .25s var(--ease-out-quart) .1s;
  box-shadow: 0 0 8px rgba(200,150,12,.6);
  pointer-events: none;
  opacity: 0;
}
.v-page-progress.is-active { transform: scaleX(.78); opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .v-page-progress { display: none; }
}

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

/* ── Payment UI (shared by cart.php + checkout.php) ─────────────────────
   Extracted from two independently-maintained copies — see
   logs/reflections/noa-2026-07-15-css-js-dedup-analysis.html for the full
   duplication inventory. Deliberately does NOT include .form-group and its
   descendants: that's a Bootstrap 4 built-in class name also used by
   login.php/register.php/account.php, so styling it globally would leak
   into unrelated forms sitewide — kept local to each payment page instead. */
.pay-tabs { display: flex; gap: 8px; justify-content: center; margin-top: 8px; }
.pay-tab { min-height: 36px; padding: 8px 18px; border: 1.5px solid var(--border); border-radius: var(--r-pill); background: #fff; color: var(--muted); font-size: 13px; font-weight: 700; cursor: pointer; transition: all .15s; }
.pay-tab.active { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.qr-section { text-align: center; transition: opacity .15s var(--ease-out-quart); }
#qrcode { display: inline-block; position: relative; min-width: 200px; min-height: 200px; padding: 12px; background: #fff; border-radius: var(--r-sm); border: 1.5px solid var(--border); margin-bottom: 16px; }
#qrcode:empty::before { content: ''; position: absolute; inset: 12px; border-radius: 6px; background: var(--surface); }
#qrcode:empty::after { content: ''; position: absolute; inset: 12px; border-radius: 6px; background: linear-gradient(90deg, transparent 0%, rgba(200,150,12,.22) 45%, rgba(200,150,12,.22) 55%, transparent 100%); background-size: 200% 100%; animation: v-skeleton-sweep 1.5s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { #qrcode:empty::after { animation: none; background: rgba(200,150,12,.14); } }
.qr-amount { font-weight: 900; color: var(--gold); letter-spacing: -.03em; }
.upload-zone { border: 2px dashed var(--border); border-radius: var(--r-md); text-align: center; cursor: pointer; transition: border .15s; position: relative; }
.upload-zone:hover, .upload-zone.dragover { border-color: var(--gold); }
.upload-zone input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.upload-preview { max-width: 100%; border-radius: var(--r-sm); margin: 12px auto 0; display: none; }
.status-box { padding: 20px; border-radius: var(--r-md); text-align: center; display: none; transition: background-color .2s var(--ease-out-quart), border-color .2s var(--ease-out-quart); }
.status-box.verifying { background: #E3F2FD; border: 1.5px solid #90CAF9; color: #1565C0; }
.status-box.success { background: #E8F5E9; border: 1.5px solid #A5D6A7; color: #2E7D32; }
.status-box.error { background: #FFEBEE; border: 1.5px solid #EF9A9A; color: #C62828; }
.error-msg { background: #FFEBEE; border: 1.5px solid #EF9A9A; border-radius: var(--r-sm); padding: 12px 16px; color: #C62828; font-size: 14px; }
.order-summary-row { display: flex; justify-content: space-between; font-size: 14px; }

/* ── Responsive ──────────────────────── */

@media (max-width: 640px) {
  .v-nav-toggle { display: flex; }
  .v-nav-actions { display: none; }
  .v-nav-links {
    display: none;
    position: absolute;
    top: 60px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--ivory);
    border-bottom: 1.5px solid var(--border);
    padding: 8px 16px 16px;
    box-shadow: 0 12px 24px rgba(26,39,68,.15);
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }
  .v-nav-links.open { display: flex; }
  .v-nav-links a {
    padding: 13px 8px;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }
  .v-nav-links > a:last-of-type { border-bottom: none; }
  .v-nav-mobile-auth {
    flex-direction: column;
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1.5px solid var(--border);
  }
  .v-nav-links.open .v-nav-mobile-auth { display: flex; }
  .v-nav-mobile-auth a:last-child { border-bottom: none; }
  .hero-actions { flex-direction: column; align-items: center; }
  .auth-card { padding: 28px 20px; }
}
