/* ================================================================
   NOBLE HOMEPAGE — style.css
   Desktop-first, fully responsive
   Sections: Variables → Reset → Utility → Typography → Buttons →
             Header → Hero → Products → Lookbook → Trust → Footer →
             Reveal Animation → Responsive
   ================================================================ */


/* ----------------------------------------------------------------
   DESIGN TOKENS
   ---------------------------------------------------------------- */
:root {
  /* Color palette */
  --navy-deep:      #08163a;
  --navy-mid:       #0f2560;
  --royal:          #1a3a8f;
  --gold:           #c9982a;
  --gold-hover:     #dba930;
  --gold-dim:       rgba(201, 152, 42, 0.15);
  --gold-border:    rgba(201, 152, 42, 0.22);
  --white:          #ffffff;
  --off-white:      #f1f3f9;
  --text-muted:     #8a9bc0;
  --text-light:     rgba(255, 255, 255, 0.55);

  /* Typography */
  --font-serif:     'Cormorant Garamond', Georgia, serif;
  --font-display:   'Montserrat', sans-serif;
  --font-body:      'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --section-v:      132px;
  --container-w:    1240px;
  --gutter:         48px;
  --gap:            28px;

  /* Shape */
  --radius:         8px;
  --radius-lg:      14px;

  /* Motion */
  --ease:           cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur:            0.28s;
}


/* ----------------------------------------------------------------
   RESET & BASE
   ---------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  background: var(--navy-deep);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul { list-style: none; }
a  { text-decoration: none; color: inherit; }


/* ----------------------------------------------------------------
   UTILITY: CONTAINER
   ---------------------------------------------------------------- */
.container {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}


/* ----------------------------------------------------------------
   TYPOGRAPHY
   ---------------------------------------------------------------- */
h1, h2, h3, h4 {
  line-height: 1.05;
  letter-spacing: -0.02em;
}

/* Gold italic accent used inside headings */
em {
  font-style: italic;
  color: var(--gold);
}

/* Uppercase label above section headings */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

/* Section headings used on light bg (products) */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.4vw, 3.2rem);
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: #5a6a8a;
  max-width: 500px;
  line-height: 1.8;
}

/* Centered section header block (products) */
.section-header {
  text-align: center;
  margin-bottom: 72px;
}

/* On the light products bg, eyebrow is deep navy for readability */
.section-header .eyebrow  { color: var(--navy-mid); }
.section-header .section-sub { margin-inline: auto; }


/* ----------------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 17px 44px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background var(--dur) var(--ease),
    color      var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    transform  var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 152, 42, 0.38);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.32);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* Compact button variant for product cards */
.btn-sm {
  padding: 12px 24px;
  font-size: 0.64rem;
}


/* ----------------------------------------------------------------
   HEADER
   ---------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  padding-block: 22px;
  /* Starts transparent, JS adds .scrolled */
  transition:
    background     var(--dur) var(--ease),
    padding        var(--dur) var(--ease),
    box-shadow     var(--dur) var(--ease);
}

.site-header.scrolled {
  background: rgba(8, 22, 58, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding-block: 14px;
  box-shadow: 0 1px 0 var(--gold-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.header-logo img {
  height: 69px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.45));
  transition: transform var(--dur) var(--ease);
}
.header-logo:hover img { transform: scale(1.05); }

/* Desktop nav */
.header-nav ul {
  display: flex;
  align-items: center;
  gap: 44px;
}

.header-nav a {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  position: relative;
  transition: color var(--dur) var(--ease);
}

.header-nav a::after {
  content: '';
  position: absolute;
  inset-block-end: -5px;
  inset-inline: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}

.header-nav a:hover          { color: var(--gold); }
.header-nav a:hover::after   { transform: scaleX(1); }

/* Active state — set by JS on scroll */
.header-nav a.active         { color: var(--gold); }
.header-nav a.active::after  { transform: scaleX(1); }

/* Hamburger — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

/* Animated X state */
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ----------------------------------------------------------------
   MOBILE NAV OVERLAY
   ---------------------------------------------------------------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 36px;
  text-align: center;
}

.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--dur) var(--ease);
}
.mobile-nav a:hover { color: var(--gold); }


/* ----------------------------------------------------------------
   HERO
   ---------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-block-start: 100px;  /* clear sticky header */
  padding-block-end: 80px;
  position: relative;
  overflow: hidden;

  /* Layered gradient — no image required */
  background:
    radial-gradient(ellipse at 75% 40%, rgba(26,58,143,0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(201,152,42,0.07) 0%, transparent 50%),
    linear-gradient(150deg, #08163a 0%, #0b1d4a 55%, #0f2560 100%);
}

/* Fine diagonal line texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -52deg,
    transparent,
    transparent 58px,
    rgba(201, 152, 42, 0.028) 58px,
    rgba(201, 152, 42, 0.028) 59px
  );
  pointer-events: none;
}

/* Gold top rule */
.hero::after {
  content: '';
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 40%, var(--gold) 60%, transparent 100%);
}

/* Two-column split */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ── Hero Left ── */
.hero-left { padding-inline-end: 20px; }

.hero-left .eyebrow {
  color: var(--gold);
  margin-bottom: 24px;
}

/* Small decorative rule before eyebrow text */
.hero-left .eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(4.2rem, 6.4vw, 7rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 32px;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(160, 185, 225, 0.88);
  line-height: 1.85;
  max-width: 430px;
  margin-bottom: 48px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* Small credential tags below CTAs */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges span {
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(201, 152, 42, 0.65);
  padding: 7px 16px;
  border: 1px solid rgba(201, 152, 42, 0.2);
  border-radius: 2px;
}

/* ── Hero Right ── */
.hero-right {
  position: relative;
  /* Leave room for the corner accents */
  padding: 22px;
}

/* Editorial image frame */
.hero-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.65),
    0 0 0 1px var(--gold-border);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* hero-campaign.png is a landscape studio shot; model occupies the right half.
     This crop focuses the portrait frame on her face and upper body.
     Adjust horizontal % if the framing shifts after any image replacement. */
  object-position: 82% 12%;
  filter: brightness(0.9) contrast(1.03);
  transition: transform 0.7s var(--ease);
}
.hero-frame:hover .hero-img { transform: scale(1.04); }

/* Floating badge overlay on image */
.hero-credential {
  position: absolute;
  inset-block-end: 28px;
  inset-inline-start: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: rgba(6, 16, 42, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 152, 42, 0.3);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.hero-cred-logo {
  width: 45px;
  height: 45px;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-cred-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-cred-text strong {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-cred-text span {
  font-family: var(--font-display);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(138, 155, 192, 0.8);
}

/* Decorative corner accents (CSS only) */
.corner {
  position: absolute;
  width: 56px;
  height: 56px;
  pointer-events: none;
}

.corner--tl {
  inset-block-start: 0;
  inset-inline-end: 0;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-radius: 0 var(--radius-lg) 0 0;
  opacity: 0.45;
}

.corner--br {
  inset-block-end: 0;
  inset-inline-start: 0;
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  border-radius: 0 0 0 var(--radius-lg);
  opacity: 0.25;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  inset-block-end: 36px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.scroll-hint span {
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
}

.scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.75; }
}


/* ----------------------------------------------------------------
   ANNIVERSARY STRIP
   ---------------------------------------------------------------- */
.anniversary-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 32px;
  background: var(--navy-deep);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.anniversary-strip__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.anniversary-strip__text {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
  text-align: center;
}

@media (max-width: 480px) {
  .anniversary-strip { padding: 14px 20px; gap: 12px; }
  .anniversary-strip__text { font-size: 0.7rem; letter-spacing: 0.1em; }
}

/* ----------------------------------------------------------------
   PRODUCTS SECTION
   ---------------------------------------------------------------- */
.products-section {
  padding-block: var(--section-v);
  background: var(--off-white);
  position: relative;
}

/* Gold rule at top */
.products-section::before {
  content: '';
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ── Row 0: single spotlight card (focal product) ── */
.products-row--spotlight {
  display: flex;
  justify-content: center;
  margin-bottom: calc(var(--gap) + 8px);
}

.products-row--spotlight .product-card {
  width: 100%;
  max-width: 520px;
}

.products-row--spotlight .product-img-wrap {
  aspect-ratio: 4 / 5;
}

/* Gold top-accent for spotlight card */
.products-row--spotlight .product-card {
  border-top: 3px solid var(--gold);
}

/* ── Row 1 + 2: all standard cards (3-col grid) ── */
/* products-row--featured is no longer used; blazer spotlight is the only
   elevated product. Birdie Polo and Heritage Jacket now share the same
   standard grid as the rest of the collection. */
.products-row--standard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

/* ── Product Card ── */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(15, 37, 96, 0.07);
  box-shadow:
    0 2px 8px rgba(8, 22, 58, 0.05),
    0 8px 32px rgba(8, 22, 58, 0.07);
  display: flex;
  flex-direction: column;
  transition:
    transform  0.32s var(--ease),
    box-shadow 0.32s var(--ease),
    border-color 0.32s var(--ease);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 4px 12px rgba(8, 22, 58, 0.06),
    0 24px 60px rgba(8, 22, 58, 0.16);
  border-color: rgba(201, 152, 42, 0.42);
}

/* Image wrapper — defines aspect ratio */
.product-img-wrap {
  position: relative;
  overflow: hidden;
}

/* All standard cards — uniform aspect ratio */
.products-row--standard .product-img-wrap {
  aspect-ratio: 4 / 5;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Images are pre-cropped — center keeps the subject in frame.
     Adjust per card with an inline style if a specific crop needs nudging. */
  object-position: center center;
  transition: transform 0.6s var(--ease);
}

.product-card:hover .product-img { transform: scale(1.06); }

/* Badge label on image */
.product-badge {
  position: absolute;
  inset-block-start: 18px;
  inset-inline-start: 18px;
  padding: 6px 14px;
  font-family: var(--font-display);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(8, 22, 58, 0.92);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(201, 152, 42, 0.28);
  border-radius: 2px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.product-badge--gold {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: transparent;
  backdrop-filter: none;
}

/* Card content */
.product-info {
  padding: 28px 30px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-name {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-deep);
  margin-bottom: 14px;
}

.product-bullets {
  flex: 1;
  margin-bottom: 24px;
}

.product-bullets li {
  font-size: 0.83rem;
  color: #697a99;
  line-height: 1.6;
  padding-block: 5px;
  padding-inline-start: 18px;
  position: relative;
}

/* Gold dash bullet */
.product-bullets li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 1px;
  background: var(--gold);
}

/* Price + button row */
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-block-start: 20px;
  border-top: 1px solid rgba(15, 37, 96, 0.07);
}

.product-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy-deep);
  line-height: 1;
}


/* ----------------------------------------------------------------
   LOOKBOOK SECTION
   ---------------------------------------------------------------- */
.lookbook-section {
  padding-block: var(--section-v);
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

/* Ambient glow */
.lookbook-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 85% 50%, rgba(26, 58, 143, 0.35) 0%, transparent 60%);
  pointer-events: none;
}

/* Two-column grid: wide left image + right content */
.lookbook-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

/* ── Primary image ── */
.lookbook-primary {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 620px;
  border: 1px solid var(--gold-border);
}

.lookbook-primary-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Centers on models 2 & 3 (woman in polo + man in tee) so both are
     fully visible within the portrait crop. */
  object-position: 18% 20%;
  filter: brightness(0.92) contrast(1.04) saturate(0.95);
  transition: transform 0.7s var(--ease);
}

.lookbook-primary:hover .lookbook-primary-img { transform: scale(1.04); }

/* Gradient overlay */
.lookbook-primary-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 22, 58, 0.88) 0%,
    rgba(8, 22, 58, 0.08) 50%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 44px;
}

.lookbook-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-style: italic;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  max-width: 300px;
  border-left: 2px solid var(--gold);
  padding-inline-start: 22px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

/* ── Right column ── */
.lookbook-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
}

/* Copy block */
.lookbook-copy .eyebrow { color: var(--gold); }

.lookbook-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 3.6vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}

.lookbook-body {
  font-size: 1rem;
  color: rgba(138, 155, 192, 0.9);
  line-height: 1.88;
  margin-bottom: 18px;
}

.lookbook-copy .btn { margin-block-start: 14px; }

/* Secondary image */
.lookbook-secondary {
  border-radius: var(--radius);
  overflow: hidden;
  flex: 1;
  min-height: 200px;
  border: 1px solid var(--gold-border);
}

.lookbook-secondary-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.96) contrast(1.03);
  transition: transform 0.55s var(--ease);
}

.lookbook-secondary:hover .lookbook-secondary-img { transform: scale(1.04); }


/* ----------------------------------------------------------------
   TRUST STRIP
   ---------------------------------------------------------------- */
.trust-section {
  padding-block: 88px;
  background: var(--navy-mid);
  border-block: 1px solid var(--gold-border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  padding: 40px 36px;
  text-align: center;
  border-inline-end: 1px solid var(--gold-border);
  transition: background var(--dur) var(--ease);
}

.trust-item:last-child { border-inline-end: none; }

.trust-item:hover { background: rgba(255, 255, 255, 0.025); }

.trust-icon {
  width: 48px;
  height: 48px;
  margin-inline: auto;
  margin-bottom: 20px;
  color: var(--gold);
  opacity: 0.9;
}

.trust-icon svg { width: 100%; height: 100%; }

.trust-title {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.trust-desc {
  font-size: 0.83rem;
  color: rgba(138, 155, 192, 0.85);
  line-height: 1.7;
}


/* ----------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------- */
.site-footer {
  background: var(--navy-deep);
  border-block-start: 1px solid var(--gold-border);
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: 52px;
}

/* Brand lockup */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.footer-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: rgba(138, 155, 192, 0.7);
  letter-spacing: 0.01em;
}

/* Footer nav */
.footer-nav ul {
  display: flex;
  gap: 36px;
}

.footer-nav a {
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--dur) var(--ease);
}
.footer-nav a:hover { color: var(--gold); }

/* Social icons */
.footer-social {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  transition:
    border-color var(--dur) var(--ease),
    color        var(--dur) var(--ease);
}

.social-btn svg { width: 14px; height: 14px; }
.social-btn:hover { border-color: var(--gold); color: var(--gold); }

/* Bottom bar */
.footer-bottom {
  border-block-start: 1px solid rgba(255, 255, 255, 0.06);
  padding-block: 18px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom p {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.26);
  line-height: 1.5;
}

.footer-policies {
  display: flex;
  gap: 28px;
  flex-shrink: 0;
}

.footer-policies a {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.26);
  transition: color var(--dur) var(--ease);
}
.footer-policies a:hover { color: var(--gold); }


/* ----------------------------------------------------------------
   SCROLL REVEAL ANIMATION
   Elements with class .reveal start hidden and fade up into place.
   JS adds .is-visible when they enter the viewport.
   ---------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity  0.6s var(--ease),
    transform 0.6s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay for grid children */
.products-row .product-card.reveal:nth-child(2) { transition-delay: 0.08s; }
.products-row .product-card.reveal:nth-child(3) { transition-delay: 0.16s; }
.products-row--standard .product-card.reveal:nth-child(2) { transition-delay: 0.08s; }
.products-row--standard .product-card.reveal:nth-child(3) { transition-delay: 0.16s; }

.trust-item.reveal:nth-child(2) { transition-delay: 0.07s; }
.trust-item.reveal:nth-child(3) { transition-delay: 0.14s; }
.trust-item.reveal:nth-child(4) { transition-delay: 0.21s; }


/* ----------------------------------------------------------------
   RESPONSIVE — TABLET (≤ 1024px)
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
  :root {
    --section-v: 88px;
    --gutter: 32px;
  }

  .hero-grid       { gap: 48px; }
  .hero-headline   { font-size: clamp(3rem, 5.5vw, 4.6rem); }

  .lookbook-grid   { grid-template-columns: 1fr 1fr; gap: 40px; }
  .lookbook-primary { min-height: 500px; }

  /* Trust: 2×2 */
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2)  { border-inline-end: none; }
  .trust-item:nth-child(3)  { border-block-start: 1px solid var(--gold-border); }
  .trust-item:nth-child(4)  { border-inline-end: none; border-block-start: 1px solid var(--gold-border); }

  .footer-main { flex-wrap: wrap; gap: 28px; }
}


/* ----------------------------------------------------------------
   RESPONSIVE — TABLET NARROW (≤ 900px)
   Standard product row drops to 2-col before cards get too cramped
   ---------------------------------------------------------------- */
@media (max-width: 900px) {
  .products-row--standard {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Centre the orphaned 5th card */
  .products-row--standard .product-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - var(--gap) / 2);
    margin-inline: auto;
  }
}


/* ----------------------------------------------------------------
   RESPONSIVE — MOBILE (≤ 768px)
   ---------------------------------------------------------------- */
@media (max-width: 768px) {
  :root {
    --section-v: 68px;
    --gutter: 20px;
  }

  /* Header: show hamburger, hide desktop nav */
  .header-nav  { display: none; }
  .nav-toggle  { display: flex; }

  /* Logo: step back slightly on mobile so header stays balanced */
  .header-logo img { height: 57px; }

  /* Hero: reduce top padding so header clearance isn't doubled on mobile */
  .hero {
    padding-block-start: 80px;
    padding-block-end: 48px;
  }

  /* Hero: stack vertically, image first on mobile */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-block-start: 0;
    padding-block-end: 0;
  }

  /* Hide scroll hint — overlaps content when hero is stacked */
  .scroll-hint { display: none; }

  .hero-right {
    order: -1;
    max-width: 340px;
    margin-inline: auto;
    width: 100%;
  }

  .hero-left {
    text-align: center;
    padding-inline-end: 0;
  }

  .hero-left .eyebrow  { justify-content: center; }
  .hero-ctas           { justify-content: center; }
  .hero-badges         { justify-content: center; }
  .hero-sub            { margin-inline: auto; }
  .corner              { display: none; }

  /* Products: single column, capped width */
  .products-row--standard {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  /* Lookbook: stack */
  .lookbook-grid { grid-template-columns: 1fr; }
  .lookbook-primary { min-height: 380px; }
  .lookbook-secondary { min-height: 240px; }

  /* Footer: stack */
  .footer-main         { flex-direction: column; align-items: flex-start; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-nav ul       { flex-wrap: wrap; gap: 16px 28px; }
}


/* ----------------------------------------------------------------
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ---------------------------------------------------------------- */
@media (max-width: 480px) {
  .hero-headline { font-size: 2.9rem; }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn { text-align: center; width: 100%; }

  /* Trust: single column on very small screens */
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item {
    border-inline-end: none !important;
    border-block-start: none !important;
    border-block-end: 1px solid var(--gold-border);
  }
  .trust-item:last-child { border-block-end: none; }

  .footer-policies { flex-wrap: wrap; gap: 12px 20px; }
}


/* ----------------------------------------------------------------
   PRODUCT CARD ADDITIONS — desc line + view-details trigger
   ---------------------------------------------------------------- */

/* Short premium description under the product name */
.product-desc {
  font-size: 0.82rem;
  color: #6b7b9a;
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 10px;
}

/* "View Details" text-only trigger — gold, uppercase, subtle */
.btn-view-details {
  display: inline-block;
  margin-bottom: 16px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.82;
  transition:
    opacity var(--dur) var(--ease),
    letter-spacing var(--dur) var(--ease);
}

.btn-view-details:hover {
  opacity: 1;
  letter-spacing: 0.28em;
}


/* ----------------------------------------------------------------
   PRODUCT MODAL SYSTEM
   ---------------------------------------------------------------- */

/* ── Overlay ── */
.product-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(8, 22, 58, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;

  /* Hidden by default */
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.28s var(--ease);
}

.product-modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* ── Modal panel ── */
.product-modal {
  position: relative;
  background: #f8f9fc;
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;

  /* Entry animation */
  transform: scale(0.96) translateY(10px);
  transition:
    transform 0.32s var(--ease),
    opacity   0.32s var(--ease);
  opacity: 0;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px var(--gold-border);
}

.product-modal-overlay.is-open .product-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* ── Close button ── */
.modal-close {
  position: absolute;
  inset-block-start: 16px;
  inset-inline-end: 18px;
  z-index: 10;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--gold);
  opacity: 0.75;
  padding: 8px;
  line-height: 1;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.modal-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

/* ── Modal body: image left + info right ── */
.modal-body {
  display: flex;
  flex-direction: row;
  flex: 1;
  overflow: hidden;
}

/* ── Image column (~45%) ── */
.modal-img-col {
  flex: 0 0 44%;
  overflow: hidden;
  background: var(--navy-deep);
}

.modal-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── Info column (~55%) ── */
.modal-info-col {
  flex: 1;
  padding: 36px 40px 36px 36px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Eyebrow above name */
.modal-eyebrow {
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

/* Product name */
.modal-product-name {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
}

/* Description */
.modal-desc {
  font-size: 0.9rem;
  color: #5a6a8a;
  line-height: 1.78;
  margin-bottom: 24px;
}

/* ── Meta table (Colors / Sizes / Logo) ── */
.modal-meta {
  border-top: 1px solid rgba(15, 37, 96, 0.1);
  margin-bottom: 24px;
}

.modal-meta-row {
  display: flex;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(15, 37, 96, 0.07);
  align-items: flex-start;
}

.modal-meta-label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-mid);
  flex: 0 0 56px;
  padding-top: 2px;
}

.modal-meta-value {
  font-size: 0.84rem;
  color: #5a6a8a;
  line-height: 1.5;
  flex: 1;
}

/* ── Price row ── */
.modal-price-row {
  margin-bottom: 24px;
}

.modal-price {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}

/* ── Action buttons ── */
.modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.modal-buy-btn {
  flex: 1;
  min-width: 130px;
  text-align: center;
}

.modal-cart-btn {
  flex: 1;
  min-width: 130px;
  /* On the light modal background, override the default white text */
  color: var(--navy-deep);
  border-color: rgba(15, 37, 96, 0.28);
}

.modal-cart-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Tiny disclaimer under buttons */
.modal-cart-note {
  font-size: 0.68rem;
  color: #9aaac8;
  font-style: italic;
  line-height: 1.5;
  margin-top: 0;
}

/* Inline cart-soon message (injected by JS) */
.modal-cart-soon {
  display: inline-block;
  font-size: 0.72rem;
  color: var(--gold);
  font-style: italic;
  margin-top: 6px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.modal-cart-soon.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Size selector ── */
.modal-size-select {
  margin: 20px 0 4px;
}

.modal-size-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}

.modal-size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.size-btn {
  padding: 5px 13px;
  border: 1.5px solid rgba(15, 37, 96, 0.2);
  background: transparent;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--navy-deep);
  cursor: pointer;
  transition: border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
  line-height: 1;
}

.size-btn:hover {
  border-color: var(--gold);
  background: rgba(201, 152, 42, 0.07);
}

.size-btn.selected {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: #fff;
}

.modal-size-error {
  font-size: 0.7rem;
  color: #b0302a;
  font-style: italic;
  margin: 8px 0 0;
  min-height: 1em;
  transition: opacity 0.18s ease;
}


/* ----------------------------------------------------------------
   MODAL RESPONSIVE
   ---------------------------------------------------------------- */

/* Tablet: image column slightly narrower */
@media (max-width: 860px) {
  .modal-img-col { flex: 0 0 38%; }
  .modal-info-col { padding: 28px 28px 28px 24px; }
}

/* Mobile: full-screen, image hidden or stacked above */
@media (max-width: 640px) {
  .product-modal-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .product-modal {
    max-height: 94vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    max-width: 100%;
  }

  .modal-body {
    flex-direction: column;
    overflow-y: auto;
  }

  .modal-img-col {
    flex: 0 0 auto;
    height: 220px;
  }

  .modal-product-img {
    height: 220px;
    object-position: center 20%;
  }

  .modal-info-col {
    padding: 24px 20px 32px;
    overflow-y: visible;
  }

  .modal-actions { flex-direction: column; }
  .modal-buy-btn,
  .modal-cart-btn { flex: none; width: 100%; }
}


/* ================================================================
   CHECKOUT PAGE — checkout.html
   Shares all design tokens and base styles from this file.
   ================================================================ */

/* ── Body override ── */
.checkout-body {
  background: var(--off-white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Checkout Header ── */
.checkout-header {
  background: var(--navy-deep);
  border-bottom: 1px solid var(--gold-border);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.checkout-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkout-logo img {
  height: 52px;
  width: auto;
}

.checkout-secure-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.checkout-lock-icon {
  width: 15px;
  height: 15px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ── Main area ── */
.checkout-main {
  flex: 1;
  padding: 48px 0 80px;
}

/* ── Breadcrumb ── */
.checkout-breadcrumb {
  margin-bottom: 32px;
}

.checkout-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-mid);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

.checkout-back-link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--dur) var(--ease);
}

.checkout-back-link:hover {
  color: var(--gold);
}

.checkout-back-link:hover svg {
  transform: translateX(-3px);
}

/* ── Page header ── */
.checkout-page-header {
  text-align: center;
  margin-bottom: 44px;
}

.checkout-title {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.12;
  margin: 6px 0 12px;
}

.checkout-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-inline: auto;
  line-height: 1.6;
}

/* ── Two-column checkout grid ── */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  max-width: 960px;
  margin-inline: auto;
}

/* ── Shared card shell ── */
.checkout-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 37, 96, 0.07);
  box-shadow:
    0 2px 8px rgba(8, 22, 58, 0.05),
    0 8px 32px rgba(8, 22, 58, 0.07);
  padding: 32px;
}

.checkout-card-title {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-deep);
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(15, 37, 96, 0.08);
}

.checkout-card-lock {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ── Order Summary card ── */
.checkout-summary-inner {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.checkout-img-wrap {
  flex: 0 0 130px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(15, 37, 96, 0.08);
  background: var(--off-white);
}

.checkout-product-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.checkout-details {
  flex: 1;
  min-width: 0;
}

.checkout-collection-eyebrow {
  font-family: var(--font-display);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 6px;
}

.checkout-product-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.2;
  margin: 0 0 14px;
}

.checkout-detail-list {
  margin: 0 0 16px;
  padding: 0;
}

.checkout-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.checkout-detail-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.checkout-detail-value {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-deep);
}

.checkout-divider {
  height: 1px;
  background: rgba(15, 37, 96, 0.08);
  margin: 14px 0;
}

.checkout-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
}

.checkout-total-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-deep);
}

.checkout-total-price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
}

.checkout-edit-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-display);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

.checkout-edit-link svg {
  width: 12px;
  height: 12px;
  transition: transform var(--dur) var(--ease);
}

.checkout-edit-link:hover {
  color: var(--gold);
}

.checkout-edit-link:hover svg {
  transform: translateX(-2px);
}

/* ── Payment card ── */
.checkout-trust-line {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: -12px 0 24px;
  line-height: 1.5;
}

/* Whop container */
.whop-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

/* Placeholder — remove when Whop embed is active */
.whop-placeholder {
  border: 1.5px dashed rgba(15, 37, 96, 0.18);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  background: rgba(15, 37, 96, 0.02);
}

.whop-placeholder-icon {
  width: 36px;
  height: 36px;
  color: var(--text-muted);
  margin: 0 auto 12px;
}

.whop-placeholder-icon svg {
  width: 100%;
  height: 100%;
}

.whop-placeholder-heading {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-deep);
  margin: 0 0 6px;
}

.whop-placeholder-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Shown when a real Whop URL is active (Path A live state) */
.whop-live-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
  padding: 14px 16px;
  background: rgba(15, 37, 96, 0.03);
  border-radius: var(--radius);
  border: 1px solid rgba(15, 37, 96, 0.08);
  margin: 0;
}

/* Complete Purchase / Whop redirect button */
.btn-checkout {
  width: 100%;
  text-align: center;
  padding: 15px 24px;
  font-size: 0.84rem;
  letter-spacing: 0.1em;
}

/* Coming-soon note (shown when buyLink is still "#") */
.checkout-coming-soon {
  font-size: 0.75rem;
  color: var(--gold);
  font-style: italic;
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

/* Trust badges */
.checkout-trust-list {
  list-style: none;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(15, 37, 96, 0.07);
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.checkout-trust-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: var(--text-muted);
}

.checkout-trust-list svg {
  width: 13px;
  height: 13px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ── Empty / fallback state ── */
.checkout-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 24px;
  max-width: 480px;
  margin-inline: auto;
}

.checkout-empty-msg {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--navy-deep);
  margin-bottom: 28px;
}

/* ── Checkout Footer ── */
.checkout-footer {
  background: var(--navy-deep);
  padding: 20px 0;
  border-top: 1px solid var(--gold-border);
  margin-top: auto;
}

.checkout-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.checkout-footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
  line-height: 1.5;
}

.checkout-footer-links {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}

.checkout-footer-links a {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

.checkout-footer-links a:hover {
  color: var(--gold);
}


/* ----------------------------------------------------------------
   CHECKOUT RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 820px) {
  .checkout-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .checkout-title {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .checkout-main {
    padding: 32px 0 60px;
  }

  .checkout-card {
    padding: 24px 20px;
  }

  .checkout-summary-inner {
    flex-direction: column;
  }

  .checkout-img-wrap {
    flex: none;
    width: 100%;
  }

  .checkout-product-img {
    height: 200px;
    object-position: center 15%;
  }

  .checkout-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .checkout-footer-links {
    gap: 16px;
  }
}
