/* ============================================================
   VAPEMART AUSTRALIA — MAIN STYLESHEET v1.0.0
   Design system: Apple × Premium Automotive × Editorial Ecommerce
   ============================================================ */

/* ──────────────────────────────────────────────────────────
   0. DESIGN TOKENS
────────────────────────────────────────────────────────── */
:root {
  /* Surfaces */
  --surface-0: #0A0A0B;
  --surface-1: #111113;
  --surface-2: #1A1A1D;
  --surface-3: #242428;
  --surface-light: #F5F5F5;
  --surface-light-1: #EBEBEB;

  /* Text */
  --text-primary:   #F9FAFB;
  --text-secondary: #9CA3AF;
  --text-tertiary:  #6B7280;
  --text-dark:      #111113;
  --text-dark-2:    #374151;

  /* Brand accent */
  --accent-gold:       #D4A843;
  --accent-gold-muted: #8B6E2F;
  --accent-gold-light: #EAC87A;

  /* Feedback */
  --error:      #EF4444;
  --success:    #10B981;
  --sale-badge: #EF4444;

  /* Spacing scale */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  24px;
  --space-6:  32px;
  --space-7:  48px;
  --space-8:  64px;
  --space-9:  96px;
  --space-10: 128px;
  --space-11: 160px;
  --space-12: 240px;

  /* Layout */
  --container-max:  1440px;
  --content-max:    1200px;
  --gutter:         24px;
  --section-py:     var(--space-10);
  --section-py-sm:  var(--space-8);

  /* Header */
  --header-h: 70px;

  /* Border radius */
  --radius-none: 0px;
  --radius-sm:   2px;
  --radius-pill: 100px;

  /* Motion */
  --ease-standard:   cubic-bezier(0.4, 0, 0.2, 1);
  --ease-decelerate: cubic-bezier(0, 0, 0.2, 1);
  --ease-accelerate: cubic-bezier(0.4, 0, 1, 1);
  --ease-bounce:     cubic-bezier(0.54, 1.5, 0.38, 1.11);
  --ease-silk:       cubic-bezier(0.25, 0.1, 0.25, 1.0);

  --t-instant:  100ms;
  --t-fast:     200ms;
  --t-standard: 300ms;
  --t-slow:     500ms;
  --t-crawl:    700ms;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-primary);
  background-color: var(--surface-0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast) var(--ease-standard);
}

ul, ol { list-style: none; }

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

input, textarea, select {
  font: inherit;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

em { font-family: 'Fraunces', Georgia, serif; font-style: italic; font-weight: 300; }

.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  clip: rect(1px,1px,1px,1px);
  overflow: hidden;
  white-space: nowrap;
}

.skip-link:focus {
  position: fixed;
  top: var(--space-4);
  left: var(--space-4);
  z-index: 9999;
  width: auto; height: auto;
  clip: auto;
  overflow: visible;
  padding: var(--space-3) var(--space-5);
  background: var(--accent-gold);
  color: var(--surface-0);
  font-weight: 600;
  outline: none;
}

/* ──────────────────────────────────────────────────────────
   2. TYPOGRAPHY
────────────────────────────────────────────────────────── */
.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }

p { max-width: 65ch; }

/* ──────────────────────────────────────────────────────────
   3. LAYOUT
────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-py);
}

.section--dark {
  background-color: var(--surface-0);
  color: var(--text-primary);
}

.section--light {
  background-color: var(--surface-light);
  color: var(--text-dark);
}

.section--light .label               { color: var(--text-dark-2); }
.section--light .section__eyebrow    { color: var(--accent-gold-muted); }
.section--light .section__heading    { color: var(--text-dark); }
.section--light .section__heading em { color: var(--text-dark); }

.section__header {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.section__eyebrow {
  color: var(--accent-gold);
}

.section__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.section__header-cta {
  align-self: flex-start;
  margin-top: var(--space-3);
}

/* ──────────────────────────────────────────────────────────
   4. BUTTONS
────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-none);
  border: 1.5px solid transparent;
  transition:
    background-color var(--t-fast) var(--ease-standard),
    color            var(--t-fast) var(--ease-standard),
    border-color     var(--t-fast) var(--ease-standard);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

/* Primary — outline, fills on hover */
.btn--primary {
  border-color: var(--text-primary);
  color: var(--text-primary);
  background: transparent;
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--surface-0);
}

/* Ghost — subtle on dark */
.btn--ghost {
  border-color: var(--surface-3);
  color: var(--text-secondary);
  background: transparent;
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  border-color: var(--text-primary);
  color: var(--text-primary);
}

/* Ghost on light bg */
.section--light .btn--ghost {
  border-color: #D1D5DB;
  color: var(--text-dark-2);
}
.section--light .btn--ghost:hover {
  border-color: var(--text-dark);
  color: var(--text-dark);
}

/* Filled gold */
.btn--gold {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--surface-0);
}
.btn--gold:hover, .btn--gold:focus-visible {
  background: var(--accent-gold-light);
  border-color: var(--accent-gold-light);
}

/* Full width */
.btn--full { width: 100%; }

/* Focus */
.btn:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}

/* ──────────────────────────────────────────────────────────
   5. HEADER & NAVIGATION
────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: transparent;
  transition:
    background-color var(--t-standard) var(--ease-standard),
    backdrop-filter  var(--t-standard) var(--ease-standard),
    box-shadow       var(--t-standard) var(--ease-standard);
  will-change: background-color;
}

/* Scrolled state */
.site-header.is-scrolled {
  background: rgba(10, 10, 11, 0.88);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

/* On light pages start solid */
body.page:not(.is-homepage) .site-header,
body.woo-active .site-header {
  background: rgba(10, 10, 11, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header__inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
  gap: var(--space-6);
}

/* Logo */
.header__logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}

.header__logo-icon {
  display: block;
  flex-shrink: 0;
}

.header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.header__wordmark {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.header__wordmark-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-top: 2px;
}

.mobile-nav__logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

/* Nav */
.site-nav { flex: 1; }

.nav__list {
  display: flex;
  gap: var(--space-2);
}

.nav__item { position: relative; }

.nav__link {
  display: inline-block;
  padding: var(--space-3) var(--space-4);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-secondary);
  transition: color var(--t-fast) var(--ease-standard);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: var(--space-4);
  right: var(--space-4);
  height: 1px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--t-standard) var(--ease-decelerate);
}

.nav__link:hover,
.nav__link:focus-visible {
  color: var(--text-primary);
}

.nav__link:hover::after { transform: scaleX(1); }

/* Sibling fade */
.site-nav:has(.nav__link:hover) .nav__link:not(:hover) {
  opacity: 0.45;
  transition:
    color   var(--t-fast) var(--ease-standard),
    opacity var(--t-fast) var(--ease-standard);
}

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 280px;
  background: var(--surface-1);
  border: 1px solid var(--surface-3);
  padding: var(--space-3) 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity   var(--t-standard) var(--ease-standard),
    transform var(--t-standard) var(--ease-decelerate);
}

.nav__item--has-dropdown:hover .nav__dropdown,
.nav__item--has-dropdown:focus-within .nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav__dropdown-inner {
  display: flex;
  flex-direction: column;
  max-height: 380px;
  overflow-y: auto;
}

.nav__dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-5);
  font-size: 13px;
  color: var(--text-secondary);
  transition: color var(--t-fast) var(--ease-standard), background var(--t-fast) var(--ease-standard);
}

.nav__dropdown-link:hover {
  color: var(--text-primary);
  background: var(--surface-2);
}

.nav__dropdown-count { color: var(--text-tertiary); }

/* Header actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}

.header__action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--text-secondary);
  transition: color var(--t-fast) var(--ease-standard);
  position: relative;
}

.header__action:hover { color: var(--text-primary); }

/* Cart count badge */
.nav__cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--accent-gold);
  color: var(--surface-0);
  font-size: 9px;
  font-weight: 700;
  line-height: 16px;
  border-radius: var(--radius-pill);
  text-align: center;
}

/* Burger */
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.burger__bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-secondary);
  transition:
    transform  var(--t-standard) var(--ease-standard),
    opacity    var(--t-fast)     var(--ease-standard),
    background var(--t-fast)     var(--ease-standard);
}

.nav-open .burger__bar--top { transform: translateY(6.5px) rotate(45deg); background: var(--text-primary); }
.nav-open .burger__bar--mid { opacity: 0; }
.nav-open .burger__bar--bot { transform: translateY(-6.5px) rotate(-45deg); background: var(--text-primary); }

/* ──────────────────────────────────────────────────────────
   6. SEARCH OVERLAY
────────────────────────────────────────────────────────── */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: flex-start;
  background: rgba(10, 10, 11, 0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-standard) var(--ease-standard);
}

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

.search-overlay__inner {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding: var(--space-9) var(--gutter) var(--space-8);
  position: relative;
}

.search-overlay__form {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  border-bottom: 1.5px solid var(--surface-3);
  padding-bottom: var(--space-4);
}

.search-overlay__input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--text-primary);
  caret-color: var(--accent-gold);
}

.search-overlay__input::placeholder { color: var(--text-tertiary); }

.search-overlay__submit {
  color: var(--text-secondary);
  flex-shrink: 0;
  transition: color var(--t-fast) var(--ease-standard);
}
.search-overlay__submit:hover { color: var(--text-primary); }

.search-overlay__close {
  position: absolute;
  top: var(--space-8);
  right: var(--gutter);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--text-tertiary);
  font-size: 11px;
  letter-spacing: 0.1em;
  transition: color var(--t-fast) var(--ease-standard);
}
.search-overlay__close:hover { color: var(--text-primary); }

/* ──────────────────────────────────────────────────────────
   7. MOBILE NAV
────────────────────────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: var(--surface-1);
  transform: translateX(100%);
  transition: transform var(--t-crawl) var(--ease-decelerate);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav__inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: var(--space-6) var(--gutter) var(--space-8);
}

.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-8);
}

.mobile-nav__logo { text-decoration: none; }

.mobile-nav__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

.mobile-nav__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  border-bottom: 1px solid var(--surface-3);
  transition: color var(--t-fast) var(--ease-standard);
}

.mobile-nav__link--sub {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-secondary);
  padding: var(--space-3) 0;
}

.mobile-nav__link:hover { color: var(--accent-gold); }
.mobile-nav__arrow { color: var(--text-tertiary); }

.mobile-nav__footer {
  margin-top: var(--space-7);
}

/* Backdrop */
.overlay-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-standard) var(--ease-standard);
}

.overlay-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* ──────────────────────────────────────────────────────────
   8. HERO
────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__video--mobile { display: none; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,11,0.35) 0%,
    rgba(10,10,11,0.55) 40%,
    rgba(10,10,11,0.80) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  max-width: 780px;
}

.hero__eyebrow {
  color: var(--accent-gold);
}

.hero__headline {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.hero__headline em {
  font-size: 0.95em;
  letter-spacing: -0.01em;
}

.hero__sub {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 48ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

/* Scroll cue */
.hero__scroll-cue {
  position: absolute;
  bottom: var(--space-7);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--text-tertiary);
  transition: color var(--t-fast) var(--ease-standard);
}

.hero__scroll-cue:hover { color: var(--text-secondary); }

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: currentColor;
  animation: scrollPulse 2s var(--ease-standard) infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50%       { transform: scaleY(1.4); opacity: 1; }
}

/* ──────────────────────────────────────────────────────────
   9. TRUST STRIP
────────────────────────────────────────────────────────── */
.trust-strip {
  padding-block: var(--space-5);
  background: var(--surface-1);
  border-bottom: 1px solid var(--surface-3);
}

.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6) var(--space-9);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.trust-item__icon {
  color: var(--accent-gold);
  flex-shrink: 0;
}

/* ──────────────────────────────────────────────────────────
   10. CATEGORY GRID
────────────────────────────────────────────────────────── */
.categories-section {
  background: var(--surface-0);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  aspect-ratio: 4/3;
  overflow: hidden;
  text-decoration: none;
}

.cat-card__img {
  position: absolute;
  inset: 0;
  background-image: var(--cat-bg);
  background-size: cover;
  background-position: center;
  transition: transform var(--t-slow) var(--ease-decelerate);
}

.cat-card:hover .cat-card__img {
  transform: scale(1.05);
}

.cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,11,0.92) 0%,
    rgba(10,10,11,0.45) 50%,
    rgba(10,10,11,0.1)  100%
  );
  transition: opacity var(--t-standard) var(--ease-standard);
}

.cat-card:hover .cat-card__overlay {
  opacity: 0.95;
}

.cat-card__content {
  position: relative;
  z-index: 2;
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.cat-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: color var(--t-fast) var(--ease-standard);
}

.cat-card:hover .cat-card__name { color: var(--accent-gold); }

.cat-card__count {
  color: var(--text-secondary);
}

.cat-card__arrow {
  position: absolute;
  right: var(--space-5);
  bottom: var(--space-5);
  z-index: 2;
  font-size: 1.25rem;
  color: var(--accent-gold);
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity   var(--t-standard) var(--ease-standard),
    transform var(--t-standard) var(--ease-decelerate);
}

.cat-card:hover .cat-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ──────────────────────────────────────────────────────────
   11. PRODUCTS GRID
────────────────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6) var(--space-5);
}

.products-grid[data-cols="4"] { grid-template-columns: repeat(4, 1fr); }
.products-grid[data-cols="2"] { grid-template-columns: repeat(2, 1fr); }

/* ──────────────────────────────────────────────────────────
   12. EDITORIAL BRAND SECTION
────────────────────────────────────────────────────────── */
.editorial-brand {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--surface-1);
}

.editorial-brand::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--editorial-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  transition: opacity var(--t-slow) var(--ease-standard);
}

.editorial-brand:hover::before { opacity: 0.35; }

.editorial-brand__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,11,0.9) 50%, rgba(10,10,11,0.4) 100%);
  z-index: 1;
}

.editorial-brand__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: var(--space-12);
  padding-block: var(--space-11);
}

.editorial-brand__content {
  flex: 1;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.editorial-brand__eyebrow { color: var(--accent-gold); }

.editorial-brand__headline {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
}

.editorial-brand__body {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 48ch;
}

.editorial-brand__stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-7);
  flex-shrink: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.stat-item__number {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1;
}

.stat-item__label { color: var(--text-secondary); }

/* ──────────────────────────────────────────────────────────
   13. PROOF SECTION
────────────────────────────────────────────────────────── */
.proof-section {
  position: relative;
  padding-block: var(--space-12);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--surface-1);
}

.proof-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--proof-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.proof-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,11,0.75);
}

.proof-section__inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.proof-quote {
  max-width: 720px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.proof-quote__mark { color: var(--accent-gold); letter-spacing: 0.2em; }

.proof-quote__text {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 300;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  line-height: 1.35;
  color: var(--text-primary);
  max-width: none;
}

.proof-quote__cite { color: var(--text-secondary); }

/* ──────────────────────────────────────────────────────────
   14. FOOTER
────────────────────────────────────────────────────────── */
.footer-newsletter {
  background: var(--surface-1);
  border-top: 1px solid var(--surface-3);
  padding-block: var(--space-10);
}

.footer-newsletter__inner {
  display: flex;
  align-items: center;
  gap: var(--space-9);
  flex-wrap: wrap;
}

.footer-newsletter__copy { flex: 1; min-width: 280px; }

.footer-newsletter__copy .label { color: var(--accent-gold); margin-bottom: var(--space-2); }

.footer-newsletter__headline {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--text-primary);
}

.footer-newsletter__form { flex: 1; min-width: 280px; }

.footer-newsletter__field {
  display: flex;
  border-bottom: 1px solid var(--surface-3);
  padding-bottom: var(--space-3);
  gap: var(--space-3);
  transition: border-color var(--t-fast) var(--ease-standard);
}

.footer-newsletter__field:focus-within {
  border-color: var(--accent-gold);
}

.footer-newsletter__input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 1rem;
  color: var(--text-primary);
}

.footer-newsletter__input::placeholder { color: var(--text-tertiary); }

.footer-newsletter__legal {
  margin-top: var(--space-3);
  color: var(--text-tertiary);
}

.footer-main {
  background: var(--surface-0);
  padding-block: var(--space-9);
  border-top: 1px solid var(--surface-3);
}

.footer-main__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-7);
}

.footer-col--brand { display: flex; flex-direction: column; gap: var(--space-5); }

.footer__logo { text-decoration: none; }

.footer__tagline {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 36ch;
  line-height: 1.6;
}

.footer__social {
  display: flex;
  gap: var(--space-3);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--surface-3);
  color: var(--text-secondary);
  transition:
    border-color var(--t-fast) var(--ease-standard),
    color        var(--t-fast) var(--ease-standard);
}

.footer__social-link:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.footer-col__title {
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
  display: block;
}

.footer-col__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-col__list a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--t-fast) var(--ease-standard);
}

.footer-col__list a:hover { color: var(--text-primary); }

.footer-col__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-5);
}

.badge-pill {
  padding: 4px 10px;
  border: 1px solid var(--surface-3);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-radius: var(--radius-pill);
}

.footer-base {
  background: var(--surface-0);
  border-top: 1px solid var(--surface-3);
  padding-block: var(--space-5);
}

.footer-base__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.footer-base__copy, .footer-base__payments {
  color: var(--text-tertiary);
}

/* ──────────────────────────────────────────────────────────
   15. SCROLL ENTRANCE ANIMATIONS
────────────────────────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity   var(--t-slow) var(--ease-decelerate),
    transform var(--t-slow) var(--ease-decelerate);
}

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

.reveal-up--delay-1.is-visible { transition-delay: 0.1s; }
.reveal-up--delay-2.is-visible { transition-delay: 0.2s; }
.reveal-up--delay-3.is-visible { transition-delay: 0.3s; }
.reveal-up--delay-4.is-visible { transition-delay: 0.4s; }

/* Products and category cards stagger */
.products-grid   .reveal-up:nth-child(1).is-visible { transition-delay: 0.00s; }
.products-grid   .reveal-up:nth-child(2).is-visible { transition-delay: 0.06s; }
.products-grid   .reveal-up:nth-child(3).is-visible { transition-delay: 0.12s; }
.products-grid   .reveal-up:nth-child(4).is-visible { transition-delay: 0.18s; }
.products-grid   .reveal-up:nth-child(5).is-visible { transition-delay: 0.24s; }
.products-grid   .reveal-up:nth-child(6).is-visible { transition-delay: 0.30s; }
.categories-grid .reveal-up:nth-child(1).is-visible { transition-delay: 0.00s; }
.categories-grid .reveal-up:nth-child(2).is-visible { transition-delay: 0.07s; }
.categories-grid .reveal-up:nth-child(3).is-visible { transition-delay: 0.14s; }
.categories-grid .reveal-up:nth-child(4).is-visible { transition-delay: 0.21s; }
.categories-grid .reveal-up:nth-child(5).is-visible { transition-delay: 0.28s; }
.categories-grid .reveal-up:nth-child(6).is-visible { transition-delay: 0.35s; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .reveal-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__scroll-line { animation: none; }
  .cat-card__img     { transition: none; }
}

/* ──────────────────────────────────────────────────────────
   16. BREADCRUMB
────────────────────────────────────────────────────────── */
.vma-breadcrumb {
  padding: var(--space-4) 0 var(--space-5);
}

.vma-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
  font-size: 12px;
  color: var(--text-tertiary);
}

.vma-breadcrumb a { color: var(--text-secondary); }
.vma-breadcrumb a:hover { color: var(--text-primary); }
.bc-sep { color: var(--surface-3); }

/* ──────────────────────────────────────────────────────────
   17. GENERAL PAGE / POST
────────────────────────────────────────────────────────── */
.woo-main, .page-main {
  padding-top: calc(var(--header-h) + var(--space-6));
  min-height: 60vh;
}

.page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
}

/* ──────────────────────────────────────────────────────────
   18. FORMS
────────────────────────────────────────────────────────── */
.vma-form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.vma-form-field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.vma-form-field input,
.vma-form-field textarea,
.vma-form-field select {
  width: 100%;
  padding: 12px 16px;
  background: var(--surface-2);
  border: 1px solid var(--surface-3);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 14px;
  outline: none;
  transition: border-color var(--t-fast) var(--ease-standard);
}

.vma-form-field input:focus,
.vma-form-field textarea:focus,
.vma-form-field select:focus {
  border-color: var(--accent-gold);
}

/* ──────────────────────────────────────────────────────────
   19. RESPONSIVE — TABLET (≤ 1024px)
────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --gutter: 20px;
    --section-py: var(--space-9);
  }

  .site-nav       { display: none; }
  .header__burger { display: flex; }

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

  .footer-main__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-7) var(--space-6);
  }

  .footer-col--brand { grid-column: 1 / -1; }

  .editorial-brand__inner {
    flex-direction: column;
    gap: var(--space-8);
    padding-block: var(--space-9);
  }

  .editorial-brand__stats {
    flex-direction: row;
    gap: var(--space-7);
  }

  .footer-newsletter__inner {
    flex-direction: column;
    gap: var(--space-7);
  }
}

/* ──────────────────────────────────────────────────────────
   20. RESPONSIVE — MOBILE (≤ 768px)
────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --gutter: 16px;
    --section-py: var(--space-8);
    --header-h: 60px;
  }

  .hero__video--desktop { display: none; }
  .hero__video--mobile  { display: block; }

  .hero__headline { font-size: clamp(2.25rem, 10vw, 3rem); }

  .categories-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .cat-card { aspect-ratio: 3/2; }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4) var(--space-3);
  }

  .footer-main__inner {
    grid-template-columns: 1fr;
    gap: var(--space-7);
  }

  .footer-col--brand { grid-column: auto; }

  .footer-base__inner {
    flex-direction: column;
    text-align: center;
  }

  .trust-strip__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }

  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; max-width: 320px; }

  .proof-section { padding-block: var(--space-9); }

  .editorial-brand__stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-5) var(--space-7);
  }
}

/* ──────────────────────────────────────────────────────────
   21. RESPONSIVE — SMALL MOBILE (≤ 430px)
────────────────────────────────────────────────────────── */
@media (max-width: 430px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* ──────────────────────────────────────────────────────────
   22. SHOP ARCHIVE HEADER
────────────────────────────────────────────────────────── */
.shop-archive-header {
  padding: var(--space-9) 0 var(--space-7);
  position: relative;
}

.shop-archive-header.has-image {
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.shop-archive-header.has-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--cat-header-img);
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.shop-archive-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--surface-0) 0%, transparent 100%);
  z-index: 1;
}

.shop-archive-header__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.shop-archive-header__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
  line-height: 1.1;
}

.shop-archive-header__desc {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 60ch;
}

/* ──────────────────────────────────────────────────────────
   23. SHOP TOOLBAR
────────────────────────────────────────────────────────── */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--surface-3);
  margin-bottom: var(--space-7);
}

/* ──────────────────────────────────────────────────────────
   24. NO PRODUCTS FOUND
────────────────────────────────────────────────────────── */
.vma-no-products {
  padding: var(--space-12) 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.vma-no-products__label { color: var(--accent-gold); }

.vma-no-products__heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text-primary);
}

.vma-no-products__body {
  color: var(--text-secondary);
  max-width: 44ch;
}

/* ──────────────────────────────────────────────────────────
   25. BRAND TICKER (VapeLink-inspired)
────────────────────────────────────────────────────────── */
.brand-ticker {
  background: var(--surface-1);
  border-top: 1px solid var(--surface-3);
  border-bottom: 1px solid var(--surface-3);
  padding-block: var(--space-4);
  overflow: hidden;
  position: relative;
}

.brand-ticker::before,
.brand-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.brand-ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--surface-1), transparent);
}

.brand-ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--surface-1), transparent);
}

.brand-ticker__track {
  display: flex;
  gap: var(--space-8);
  animation: tickerScroll 30s linear infinite;
  width: max-content;
}

.brand-ticker__track:hover { animation-play-state: paused; }

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.brand-ticker__item {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  white-space: nowrap;
  transition: color var(--t-fast) var(--ease-standard);
  flex-shrink: 0;
}

.brand-ticker__item:hover { color: var(--text-secondary); }

/* ──────────────────────────────────────────────────────────
   26. GENERAL WP CONTENT
────────────────────────────────────────────────────────── */
.vma-content {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
}

.vma-content h1, .vma-content h2, .vma-content h3,
.vma-content h4, .vma-content h5, .vma-content h6 {
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  margin-top: var(--space-7);
}

.vma-content p { margin-bottom: var(--space-4); max-width: 68ch; }

.vma-content a {
  color: var(--accent-gold);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--t-fast) var(--ease-standard);
}

.vma-content a:hover { text-decoration-color: var(--accent-gold); }

.vma-content ul, .vma-content ol {
  padding-left: var(--space-5);
  margin-bottom: var(--space-4);
  list-style: disc;
}

.vma-content ol { list-style: decimal; }

.vma-content img {
  max-width: 100%;
  height: auto;
  border: 1px solid var(--surface-3);
  margin-block: var(--space-5);
}

/* ──────────────────────────────────────────────────────────
   27. POST CARD (BLOG)
────────────────────────────────────────────────────────── */
.vma-post-card {
  padding-bottom: var(--space-7);
  margin-bottom: var(--space-7);
  border-bottom: 1px solid var(--surface-3);
}

.vma-post-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.vma-post-card h2 a { color: inherit; }
.vma-post-card h2 a:hover { color: var(--accent-gold); }

.vma-post-card__meta {
  color: var(--accent-gold);
  margin-bottom: var(--space-3);
}

.vma-post-card__excerpt {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}
