/* =========================================================
   FORMATION CIGARS — Main CSS Design System
   Transposed from Formation Brand Guide v3
   ========================================================= */

/* ── FONT FACE ── */
/* DAMKAR.ttf lives at site/DAMKAR.ttf; this CSS is at site/styles/main.css, so ../ goes up to site/ */
@font-face {
  font-family: 'DAMKAR';
  src: url('../DAMKAR.ttf') format('truetype'),
    url('../DAMKAR.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* ── GOOGLE FONTS ── */
/* Loaded inline in HTML: Bebas Neue, Montserrat, Cormorant Garamond */

/* ── DESIGN TOKENS ── */
:root {
  /* Core palette */
  --gold: #C49A2E;
  --gold-light: #E8C456;
  --gold-dim: #8A6B1E;
  --gold-subtle: rgba(196, 154, 46, 0.08);
  --black: #0A0A0A;
  --near-black: #111111;
  --surface1: #161616;
  --surface2: #1A1A1A;
  --surface3: #222222;
  --text: #E8E0D0;
  --text-muted: #8A8070;
  --text-dim: rgba(232, 224, 208, 0.65);
  --white: #FAFAF8;
  --border: rgba(196, 154, 46, 0.18);
  --border-dim: rgba(196, 154, 46, 0.08);

  /* Tier colors */
  --olive: #4A5D3A;
  --olive-dark: #2E3A24;
  --navy: #1B2A47;
  --navy-dark: #101C30;
  --burgundy: #6B1A2A;
  --burgundy-dark: #44111B;

  /* Typography */
  --font-display: 'DAMKAR', 'Bebas Neue', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --font-serif: 'Cormorant Garamond', 'Georgia', serif;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 60px;
  --space-xl: 100px;
  --space-2xl: 140px;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;
}

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

/* ── BASE ── */
html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Force specific antialiasing on display text to preserve stencil details */
h1,
h2,
h3,
h4,
.hero-brand,
.section-title,
.card-name,
.tier-pill-lg,
.product-hero-name,
.buy-price,
.tier-link-name,
.story-chapter-label {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: normal;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dim);
  border-radius: 3px;
}

/* ========================================================
   NAVIGATION
   ======================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 25px;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.nav-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}

.centered-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
}

/* Base dynamic logo hidden state */
#dynamic-nav-logo {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Standard opacity fade */
#dynamic-nav-logo.visible-fade {
  opacity: 1;
  pointer-events: auto;
}

/* Alternate slide up effect */
#dynamic-nav-logo.slide-mode {
  transform: translateY(20px);
}

#dynamic-nav-logo.slide-mode.visible-slide {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Always visible logo on subpages */
.nav-logo.nav-logo-static {
  opacity: 1;
  pointer-events: auto;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.15em;
  color: var(--white);
  line-height: 1;
  transition: color 0.2s;
}

.nav-logo:hover {
  color: var(--gold);
}

.nav-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.nav-links a.active {
  color: var(--gold-light);
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 10px 24px;
  border-radius: 1px;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.nav-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.show-mobile { display: none; }
.hide-mobile { display: block; }

/* ========================================================
   HERO
   ======================================================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

/* Gold grid texture */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 154, 46, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 154, 46, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Radial gold glow */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 45%, rgba(196, 154, 46, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--space-md);
}

.hero-logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin: 0 auto var(--space-md);
  mix-blend-mode: screen;
  filter: brightness(1.1);
}

.hero-rule {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  margin: 0 auto var(--space-md);
}

/* ========================================================
   PARALLAX DIVIDER
   ======================================================== */
.parallax-divider {
  width: 100%;
  height: 35vh;
  min-height: 300px;
  background-attachment: fixed;
  background-size: 150% auto !important;
  background-position: center center;
  border-top: 1px solid rgba(196, 154, 46, 0.15);
  border-bottom: 1px solid rgba(196, 154, 46, 0.15);
  position: relative;
  z-index: 10;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8) inset;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 108px);
  letter-spacing: 0.15em;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 16px;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.6em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 48px;
}

.hero-divider {
  width: 200px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0 auto 40px;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 56px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 10;
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@media (max-width: 768px) {
  .hero-scroll-hint {
    display: none; /* Prevent overlap with "Our Story" buttons on mobile */
  }
}

.hero-scroll-hint span {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.4em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.hero-scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(6px);
  }
}

/* ========================================================
   MIRRORED SCROLL LINE
   ======================================================== */
.hero-rule-mirrored {
  width: 1px;
  height: 36px;
  background: linear-gradient(to top, var(--gold-dim), transparent);
  margin: 0 auto 8px;
  /* 8px matches the top gap */
}

/* ========================================================
   BUTTONS
   ======================================================== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 1px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 154, 46, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: rgba(196, 154, 46, 0.08);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(196, 154, 46, 0.3);
  font-size: 9px;
  letter-spacing: 0.4em;
  padding: 11px 24px;
}

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

/* ========================================================
   SECTION UTILITIES
   ======================================================== */
.section-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 72px);
  line-height: 0.92;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.section-title .gold {
  color: var(--gold);
}

.section-body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.95;
  color: var(--text-dim);
  font-weight: 300;
  max-width: 540px;
}

.gold-rule {
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: var(--space-md) 0;
}

.gold-rule-center {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold) 50%, transparent);
  width: 240px;
  margin: var(--space-md) auto;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ========================================================
   PRODUCTS GRID
   ======================================================== */
.products-section {
  background: var(--near-black);
  padding: var(--space-xl) 0 var(--space-2xl);
}

.products-section .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

/* Sampler spans full row */
.product-card.card-sampler {
  grid-column: 1 / -1;
}

.product-card {
  position: relative;
  background: var(--surface1);
  border: 1px solid var(--border-dim);
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--tier-color, var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.product-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card .tier-pill {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--tier-color, var(--gold));
  margin-bottom: 10px;
  display: block;
}

.product-card .card-name {
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: 0.1em;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 8px;
}

.product-card .card-vitola {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.product-card .card-description {
  font-size: 12.5px;
  line-height: 1.85;
  color: var(--text-dim);
  font-weight: 300;
  flex: 1;
  margin-bottom: 28px;
}

.product-card .card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.strength-badge {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--tier-color, var(--gold));
  border: 1px solid currentColor;
  padding: 4px 10px;
  border-radius: 1px;
}

.card-size {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.card-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border-dim);
}

/* ========================================================
   CIGAR IMAGE STRIP (product cards — Recruit / NCO / E-9)
   ======================================================== */
.cigar-img-strip {
  /* Bleed flush to card's left border (cancels 36px card padding).
     overflow:hidden clips any transparent overhang — cigar bodies stay visible. */
  margin-left: -36px;
  width: calc(100% + 36px);
  overflow: hidden;
  /* Height is set individually per card below — no shared height here */
  margin-bottom: 12px;
  position: relative;
}

.cigar-strip--recruit {
  height: 60px;
}

.cigar-strip--nco {
  height: 60px;
}

.cigar-strip--e9 {
  height: 60px;
}

.cigar-strip--commander {
  height: 60px;
}

.cigar-strip-img {
  /* Absolute + vertical centering — images render at natural dimensions,
     transparent overhangs on taller images get clipped symmetrically. */
  position: absolute;
  left: -28px;
  top: 50%;
  /* Override global img { max-width: 100% } — without this, wider images
     get scaled DOWN to fit the strip width, making taller cigars appear
     thinner as a side-effect of the proportional shrink. */
  max-width: none;
  mix-blend-mode: screen;
  filter: brightness(1.05);
  will-change: transform, opacity;
  transform: translateY(-50%) translateX(-140px);
  opacity: 0;
  transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 1.3s ease;
}

/* JS adds .cigar-ready to trigger the animation */
.cigar-img-strip.cigar-ready .cigar-strip-img {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}

/* ========================================================
   COMMANDER CIGAR VIEWPORT
   60×380px window, centered horizontally, bottom flush with tile.
   Uses dedicated classes — .cigar-strip-img and the three strip
   rules above are completely untouched.
   .cigar-img-strip is kept on the container ONLY so the existing
   JS cigarObserver picks it up without any JS changes.
   ======================================================== */
.commander-viewport {
  position: absolute;
  width: 60px;
  height: 380px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  margin-left: 0;
  /* cancel .cigar-img-strip's -36px bleed */
  margin-bottom: 0;
  /* cancel .cigar-img-strip's 12px margin  */
  overflow: hidden;
  /* cigar is clipped to the 60×380 window  */
}

.commander-cigar-img {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  /* fills the 60px viewport width exactly  */
  max-width: none;
  mix-blend-mode: screen;
  filter: brightness(1.05);
  will-change: transform, opacity;
  transform: translateY(400px);
  /* starts below the viewport, hidden */
  opacity: 0;
  transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 1.3s ease;
}

.commander-viewport.cigar-ready .commander-cigar-img {
  transform: translateY(0);
  opacity: 1;
}

.card-price {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.08em;
  color: var(--white);
}

.card-price .price-unit {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-left: 4px;
  vertical-align: middle;
}

/* Sampler card special layout */
.card-sampler {
  flex-direction: row;
  align-items: center;
  gap: 60px;
  padding: 48px 56px;
}

.card-sampler .card-content {
  flex: 1;
}

.card-sampler .card-visual {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sampler-band-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.sampler-band-row img {
  height: 28px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(0.9);
  flex: 1;
}

/* coming-soon card */
.product-card.coming-soon {
  opacity: 0.6;
  cursor: default;
}

.product-card.coming-soon:hover {
  transform: none;
  box-shadow: none;
}

.coming-soon-badge {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid rgba(138, 128, 112, 0.4);
  padding: 4px 12px;
  border-radius: 1px;
  display: inline-block;
}

/* ========================================================
   NARRATIVE / PHILOSOPHY SECTION
   ======================================================== */
.narrative-section {
  position: relative;
  background-image:
    /* Simple dark overlay to ensure readability without competing with the crop */
    linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.85)),
    url('../mockups/briefing_room_16_9.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  padding: 50px 0;
  overflow: hidden;
}

/* Add a subtle vignette for extra depth */
.narrative-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

.narrative-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.narrative-left {
  position: sticky;
  top: 120px;
}

.narrative-right p {
  font-size: 14px;
  line-height: 1.95;
  color: var(--text-dim);
  font-weight: 300;
  margin-bottom: 20px;
}

.narrative-right p:last-child {
  margin-bottom: 0;
}

.narrative-right em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-light);
  font-size: 17px;
}

/* ========================================================
   LINEUP SHOWCASE (homepage footer section)
   ======================================================== */
.lineup-section {
  background: var(--surface1);
  padding: var(--space-xl) 0;
}

.lineup-header {
  text-align: center;
  margin-bottom: 56px;
}

.lineup-header .section-title {
  font-size: clamp(44px, 6vw, 64px);
  letter-spacing: 0.12em;
}

.lineup-header .section-title .italic {
  font-family: var(--font-serif);
  font-size: 0.7em;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.05em;
  display: block;
  margin-top: 8px;
}

.lineup-table {
  width: 100%;
  border-collapse: collapse;
}

.lineup-table th {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(196, 154, 46, 0.35);
}

.lineup-table td {
  padding: 20px 16px;
  font-size: 13px;
  color: var(--text);
  border-bottom: 1px solid var(--border-dim);
  font-weight: 300;
  vertical-align: middle;
}

.lineup-table tr:last-child td {
  border-bottom: none;
}

.lineup-table tr {
  transition: background 0.2s;
}

.lineup-table tbody tr:hover {
  background: var(--surface2);
}

.tier-pill-lg {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.15em;
  display: inline-block;
  color: var(--white) !important;
  background: var(--tier-accent, var(--surface3));
  padding: 6px 16px;
  border-radius: 2px;
}

/* ========================================================
   BAND STRIP (homepage)
   ======================================================== */
.bands-section {
  background: var(--near-black);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--border);
}

.bands-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.band-cell {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.band-shelf {
  background: var(--surface2);
  border: 1px solid var(--border-dim);
  padding: 18px 20px;
  border-radius: 2px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  transition: border-color 0.3s, transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s;
}

.bands-section .band-shelf:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.band-shelf img {
  width: 100%;
  object-fit: contain;
  max-height: 70px;
  mix-blend-mode: screen;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bands-section .band-shelf:hover img {
  transform: scale(1.1);
}

.band-label {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-align: center;
}

/* ========================================================
   FOOTER
   ======================================================== */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 16px;
  display: block;
}

.footer-brand .footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-compliance {
  font-size: 10px;
  line-height: 1.8;
  color: var(--text-muted);
  opacity: 0.7;
  max-width: 300px;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: var(--gold-dim);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 12.5px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

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

.footer-bottom {
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-dim);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-copyright {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  opacity: 0.6;
  text-transform: uppercase;
  text-align: center;
}

/* Copyright Separator & Mobile Break */
.footer-sep { display: inline; }
.footer-rights { display: inline; }

@media (max-width: 480px) {
  .footer-sep { display: none !important; }
  .footer-rights { 
    display: block !important; 
    margin-top: 5px;
  }
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.6;
  transition: opacity 0.2s, color 0.2s;
}

.footer-legal-links a:hover {
  opacity: 1;
  color: var(--gold);
}

/* ========================================================
   PRODUCT PAGE STYLES
   ======================================================== */
.product-hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--space-lg) var(--space-lg);
  position: relative;
  overflow: hidden;
}

.product-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 154, 46, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 154, 46, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.product-hero-glow {
  position: absolute;
  inset: 0;
  /* overridden by tier */
  background: radial-gradient(ellipse 70% 60% at 30% 60%, rgba(196, 154, 46, 0.06) 0%, transparent 70%);
}

.product-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding-top: 140px;
}

.product-hero-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--tier-accent, var(--gold));
  margin-bottom: 16px;
}

.product-hero-name {
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 130px);
  line-height: 0.88;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 12px;
}

.product-hero-vitola {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}

.product-hero-divider {
  height: 3px;
  background: linear-gradient(to right, var(--tier-accent, var(--gold)), transparent);
  max-width: 400px;
}

/* ── HERO CIGAR ANIMATION (REVISED HORIZONTAL) ── */
.hero-cigar-track {
  position: absolute;
  bottom: 330px; /* Positioned approx 100px above the h1 name */
  left: 0;
  width: 100%;
  height: 160px; /* Room for full size cigars */
  pointer-events: none;
  z-index: 3;
}

.hero-cigar-img {
  position: absolute;
  top: 50%;
  left: -40vw; /* Reduced offset to make the 4s travel feel much slower/smoother */
  transform: translateY(-50%);
  height: auto;
  width: auto;
  max-width: none; /* Allow full intrinsic size */
  opacity: 0;
  will-change: left, opacity;
  transition: left 4s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 4s ease-in-out;
  mix-blend-mode: screen;
  filter: brightness(1.1) contrast(1.05);
}

.cigar-img-strip.cigar-ready .hero-cigar-img {
  left: 0; /* Stop right at the left edge of the screen */
  opacity: 1;
}

/* Responsive: scale down slightly on mobile if needed, though user requested full size */
@media (max-width: 768px) {
  .hero-cigar-track {
    top: 40px;
    height: 100px;
  }
  .hero-cigar-img {
    height: 80px; /* Slight scale down for mobile viewports */
  }
}

/* ── SPECS BAR ── */
.specs-bar {
  background: var(--surface1);
  border: 1px solid var(--border);
  display: flex;
}

.spec-item {
  flex: 1;
  padding: 18px 20px;
  border-right: 1px solid var(--border-dim);
}

.spec-item:last-child {
  border-right: none;
}

.spec-label {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 6px;
}

.spec-value {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 0.08em;
  color: var(--white);
}

/* ── PRODUCT CONTENT ── */
.product-body {
  background: var(--black);
  padding: var(--space-xl) 0;
}

.product-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border-dim);
  padding-top: var(--space-lg);
}

.content-col {
  padding: 0 var(--space-md);
}

.content-col:first-child {
  padding-left: 0;
}

.content-col:last-child {
  padding-right: 0;
}

.content-col:not(:last-child) {
  border-right: 1px solid var(--border-dim);
}

.content-col-title {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.45em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.content-col-body {
  font-size: 13px;
  line-height: 1.9;
  color: var(--text-dim);
  font-weight: 300;
}

/* ── BAND SHOWCASE ── */
.band-showcase {
  background: var(--surface1);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 24px 28px;
  margin: var(--space-md) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 130px;
}

.band-showcase img {
  max-height: 110px;
  width: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
}

/* ── BUY SECTION ── */
.buy-section {
  background: var(--surface1);
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  padding: var(--space-lg) 0;
}

.buy-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.buy-info .buy-price {
  font-family: var(--font-display);
  font-size: 64px;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
}

.buy-info .buy-format {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.4em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 8px;
}

.buy-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.buy-compliance {
  font-size: 10px;
  color: var(--text-muted);
  opacity: 0.6;
  text-align: right;
  line-height: 1.6;
  max-width: 280px;
}

/* ── OTHER TIERS ── */
.other-tiers {
  background: var(--near-black);
  padding: var(--space-xl) 0;
}

.other-tiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.tier-link-card {
  background: var(--surface1);
  border: 1px solid var(--border-dim);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.3s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.tier-link-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--tier-accent, var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.tier-link-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
}

.tier-link-card:hover::after {
  transform: scaleX(1);
}

.tier-link-name {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 0.95;
}

.tier-link-vitola {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--text-muted);
}

.tier-link-arrow {
  margin-top: auto;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--tier-accent, var(--gold));
  text-transform: uppercase;
  font-weight: 500;
}

/* ========================================================
   STORY PAGE
   ======================================================== */
.story-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.story-body {
  background: var(--black);
  padding: var(--space-xl) 0;
}

.story-intro {
  padding: var(--space-2xl) 0;
  text-align: center;
  border-bottom: 1px solid var(--border-dim);
  margin-bottom: 0; /* Clear space for the divider below */
}

@media (max-width: 768px) {
  .story-intro {
    padding-bottom: 80px; /* Ensure button doesn't sit on divider */
  }
}

.story-chapter {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--border-dim);
  align-items: start;
}

.story-chapter:last-child {
  border-bottom: none;
}

.story-chapter-label {
  font-family: var(--font-display);
  font-size: 56px;
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 0.9;
  position: sticky;
  top: 100px;
}

.story-chapter-text p {
  font-size: 14.5px;
  line-height: 2;
  color: var(--text-dim);
  font-weight: 300;
  margin-bottom: 20px;
}

.story-chapter-text em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-light);
  font-size: 18px;
}

/* ========================================================
   SPECIAL RELEASE PAGE
   ======================================================== */
.special-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.special-hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-md);
}

.special-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 8px 20px;
  margin-bottom: var(--space-md);
}

/* ========================================================
   AGE GATE OVERLAY
   ======================================================== */
#age-gate {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s ease;
}

#age-gate::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 154, 46, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 154, 46, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

#age-gate.hidden {
  opacity: 0;
  pointer-events: none;
}

.age-gate-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  background: var(--surface1);
  border: 1px solid var(--border-dim);
  padding: 60px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}

.age-gate-logo {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  opacity: 0.8;
}

.age-gate-title {
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: 0.1em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
}

.age-gate-desc {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 40px;
  line-height: 1.8;
}

.age-gate-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* ========================================================
   PRODUCT BAND FADE
   ======================================================== */
/* Duplicate removed */

@media (max-width: 1024px) {
  .parallax-divider {
    background-attachment: scroll;
    height: 300px;
    background-position: center center;
  }
}

@media (max-width: 768px) {
  .hero-cta-group {
    gap: 10px;
  }
  .hero-cta-group .btn {
    padding: 11px 18px;
    font-size: 9px;
    letter-spacing: 0.25em;
    min-width: 130px;
  }
  
  .parallax-divider {
    background-attachment: scroll;
    height: 300px;
    background-position: center center;
  }
}
.band-fade-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.25;
  mix-blend-mode: screen;
  mask-image: linear-gradient(to right, transparent, black 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 80%);
  pointer-events: none;
  transform: translateX(50%);
}

/* ========================================================
   ANIMATIONS
   ======================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 {
  transition-delay: 0.1s;
}

.fade-up-delay-2 {
  transition-delay: 0.2s;
}

.fade-up-delay-3 {
  transition-delay: 0.3s;
}

.fade-up-delay-4 {
  transition-delay: 0.4s;
}

.fade-up-delay-5 {
  transition-delay: 0.5s;
}

/* ========================================================
   RESPONSIVE
   ======================================================== */

/* iPad / Tablet (1024px) */
@media (max-width: 1024px) {
  :root {
    --space-lg: 32px;
    --space-xl: 60px;
  }

  .nav {
    padding: 0 20px;
  }

  .hero-brand {
    font-size: clamp(48px, 10vw, 84px);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hide-mobile { display: none !important; }
  .show-mobile { display: block !important; }

  .narrative-section {
    background-attachment: scroll !important;
    background-size: cover !important;
  }
  
  .card-commander {
    flex-direction: column !important;
    padding: 32px 24px 24px !important;
  }
  .card-commander .commander-side-actions {
    flex-direction: row !important;
    width: 100%;
    justify-content: space-between !important;
    align-items: center !important;
    border-top: 1px solid rgba(196, 154, 46, 0.1);
    padding-top: 20px !important;
    margin-top: 20px !important;
  }
  .card-commander .card-footer {
    flex-direction: row !important;
    align-items: center !important;
  }



  .commander-viewport { display: none !important; }

  .cigar-img-strip {
    margin-left: -24px;
    width: calc(100% + 24px);
  }

  .card-sampler {
    grid-column: 1 / -1; /* Keep it full width on iPad, just simpler columns */
  }

  .narrative-inner,
  .story-chapter {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .narrative-left {
    position: static !important;
    margin-bottom: 24px;
  }

  .other-tiers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Standard Mobile / Large Phone (768px) */
@media (max-width: 768px) {
  :root {
    --space-lg: 20px;
    --space-xl: 48px;
    --space-2xl: 60px;
    --nav-height: 60px;
  }

  .nav {
    padding: 0 15px;
  }

  /* Hide desktop links, but keep nav-right (Cart) visible */
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-menu-toggle {
    display: flex;
  }

  /* The mobile links are injected into the DOM via JS in some cases, 
     or we use the existing .nav-links with 'open' class */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    height: calc(100vh - var(--nav-height));
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 40px;
    gap: 32px;
    border-top: 1px solid var(--border-dim);
    z-index: 1000;
  }

  .nav-links.open a {
    font-size: 16px; /* Larger touch targets */
    color: var(--white);
  }

  .hero-brand {
    font-size: clamp(40px, 12vw, 64px);
    letter-spacing: 0.1em;
  }

  .hero-logo {
    width: 140px;
    height: 140px;
    margin-bottom: 24px;
  }

  .hero-tagline {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 42px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .product-card {
    border-left: none;
    border-right: none;
  }

  .card-sampler {
    grid-column: auto;
  }

  .product-content-grid {
    grid-template-columns: 1fr;
  }

  .content-col {
    padding: 32px 0;
    border-right: none !important;
    border-bottom: 1px solid var(--border-dim);
  }

  .specs-bar {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    gap: 16px;
  }

  .buy-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .buy-cta {
    align-items: stretch;
  }

  .buy-compliance {
    text-align: center;
    max-width: none;
    margin-top: 20px;
  }

  .bands-row {
    grid-template-columns: 1fr 1fr;
  }

  .lineup-table-wrapper {
    overflow-x: auto;
    width: 100%;
    margin-bottom: 24px;
    -webkit-overflow-scrolling: touch;
  }

  .lineup-table {
    min-width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
  }

  /* Force table to behave like cards */
  .lineup-table, 
  .lineup-table thead, 
  .lineup-table tbody, 
  .lineup-table th, 
  .lineup-table td, 
  .lineup-table tr { 
    display: block; 
  }

  /* Hide table headers */
  .lineup-table thead tr { 
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .lineup-table tr { 
    border: 1px solid var(--border-dim);
    margin-bottom: 24px;
    background: rgba(13, 13, 13, 0.5);
    padding: 20px;
    border-radius: 4px;
  }

  .lineup-table td { 
    border: none;
    border-bottom: 1px solid rgba(196, 154, 46, 0.08);
    position: relative;
    padding-left: 40% !important; 
    padding-right: 0 !important;
    min-height: 48px;
    display: flex;
    align-items: center;
    width: 100% !important;
    text-align: right;
    justify-content: flex-end;
  }

  .lineup-table td:last-child {
    border-bottom: none;
    padding-top: 24px;
    justify-content: center;
    padding-left: 0 !important;
  }

  .lineup-table td::before { 
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 35%;
    color: var(--text-muted);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }





  /* ── LINEUP TABLE TO CARDS (UX FIX) ── */
  .lineup-table-wrapper {
    overflow: visible;
  }
  .lineup-table, 
  .lineup-table thead, 
  .lineup-table tbody, 
  .lineup-table tr, 
  .lineup-table td {
    display: block;
    width: 100%;
  }
  .lineup-table thead {
    display: none; /* Hide headers on mobile */
  }
  .lineup-table tr {
    margin-bottom: 24px;
    border: 1px solid var(--border-dim);
    padding: 24px;
    background: rgba(255,255,255,0.03);
    border-radius: 4px;
  }
  .lineup-table td {
    border: none;
    padding: 8px 0;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .lineup-table td:last-child {
    border-bottom: none;
    padding-top: 16px;
    justify-content: center;
  }
  .lineup-table td::before {
    content: attr(data-label);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    opacity: 0.8;
  }
  .lineup-table td:last-child::before {
    display: none;
  }

  /* ── COMMANDER CARD REDESIGN (MOBILE) ── */
  .card-commander {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    padding: 40px 24px 0 !important;
    gap: 0 !important;
  }
  .commander-content {
    flex: none;
    padding: 0;
    text-align: center;
    z-index: 10;
  }
  .card-commander .card-name {
    font-size: 32px !important;
    margin-bottom: 8px;
  }
  .commander-viewport {
    position: relative !important;
    top: 0 !important;
    right: 0 !important;
    left: 50% !important;
    width: 100% !important;
    height: 300px !important;
    margin-top: -20px;
    margin-left: 0 !important;
    transform: translateX(-50%) !important;
  }
  .commander-viewport .commander-cigar-large {
    max-width: 70% !important;
    left: 50% !important;
    transform: translateX(-50%) rotate(0deg) !important;
  }

  /* ── SAMPLER CARD REFINE (MOBILE) ── */
  .card-sampler {
    display: flex !important;
    flex-direction: column !important;
    padding: 48px 24px !important;
    text-align: center;
    gap: 32px !important;
  }
  .card-sampler .card-content {
    flex: none !important;
    padding: 0;
  }
  .card-sampler .card-name {
    font-size: 32px !important;
  }
  .card-sampler .card-description {
    margin: 0 auto;
  }
  .card-sampler .card-visual {
    flex: none !important;
    width: 100% !important;
    margin: 0 auto;
  }
  .sampler-visual {
    margin: 0;
  }
  .sampler-bands {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  .sampler-bands img {
    height: 60px !important;
  }

  /* ── NARRATIVE OVERLAP FIX ── */
  .narrative-inner {
    display: flex;
    flex-direction: column;
    padding-bottom: 60px;
    text-align: center;
  }
  .narrative-left {
    position: static !important;
    padding: 0;
    margin-bottom: 32px;
  }
  .narrative-cta {
    position: relative;
    margin-top: 32px;
    bottom: 0;
    left: 0;
    transform: none;
    display: inline-block;
  }

  /* ── BANDS SYMMETRY FIX ── */
  .bands-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 0 10px;
  }
  .band-cell {
    width: 100%;
    margin: 0;
  }
}

/* Small Device Polish (480px) */
@media (max-width: 480px) {
  .hero-brand {
    font-size: 42px;
  }

  .section-title {
    font-size: 36px;
  }

  .age-gate-inner {
    padding: 32px 20px;
  }

  .age-gate-title {
    font-size: 32px;
  }

  .buy-info .buy-price {
    font-size: 48px;
  }
}

/* ========================================================
   CART DRAWER & UI
   ======================================================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: var(--near-black);
  border-left: 1px solid var(--border);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cart-drawer.open {
  right: 0;
}

.cart-header {
  padding: 24px;
  border-bottom: 1px solid var(--border-dim);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-header h2 {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.1em;
  margin: 0;
}
.cart-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 24px;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}
.cart-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cart-item-img {
  width: 60px;
  height: 60px;
  background: var(--black);
  border: 1px solid var(--border-dim);
  object-fit: contain;
}
.cart-item-info { flex: 1; }
.cart-item-name {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.cart-item-price {
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 8px;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}
.qty-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dim);
  color: var(--white);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
}
.cart-item-remove {
  margin-left: auto;
  background: none;
  border: none;
  color: #ff4444;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  opacity: 0.6;
}
.cart-item-remove:hover { opacity: 1; }

.cart-footer {
  padding: 24px;
  background: var(--black);
  border-top: 1px solid var(--border-dim);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-family: var(--font-display);
}
.cart-total-label { color: var(--text-muted); letter-spacing: 0.1em; }
.cart-total-value { color: var(--gold); font-size: 20px; }

.nav-cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px; 
  border: none !important;
  background: none !important;
  box-shadow: none !important;
}
.cart-icon-svg { width: 20px; height: 20px; fill: currentColor; }
.cart-count-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gold);
  color: var(--black);
  font-size: 9px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(25%, -25%);
}

.empty-cart-msg {
  text-align: center;
  padding: 40px 0;
  color: var(--text-muted);
  font-style: italic;
}
/* --- PHONE ONLY (COPYRIGHT BREAK) --- */
@media (max-width: 480px) {
  .hide-mobile { display: none !important; }
  .show-mobile-block { display: block !important; margin-top: 5px; }
  .footer-copyright {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px;
    align-items: center;
  }
}

/* --- IPHONE ONLY FOOTER RESTACK --- */
@media (max-width: 767px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr !important;
    gap: var(--space-lg) !important;
  }
  .footer-brand {
    grid-column: 1 / -1 !important;
    text-align: left !important;
    margin-bottom: var(--space-xs);
  }
  /* Place Shop on left, Company top-right, Compliance bottom-right */
  .footer-inner > div:nth-child(2) { grid-row: span 2; }
  .footer-inner > div:nth-child(4) { margin-top: 32px; }
  .footer-inner > div:not(.footer-brand) {
    text-align: left !important;
  }
}
