/*
Theme Name: VapeLife
Theme URI:
Author: VapeLife
Description: Custom dark theme for VapeLife smoke and vape shop
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: vapelife
*/

/* =============================================================
   VapeLife — style.css  v2  (Dark Luxury Edition)
   Design: deep green-black · bright green accent · gold prices
============================================================= */

/* ─── 1. DESIGN TOKENS ──────────────────────────────────────── */
:root {
  --bg-base:       #060D09;
  --bg-surface:    #0B1610;
  --bg-elevated:   #0F1E14;

  --green:         #3DFF8F;
  --green-dim:     #1A9B54;
  --green-glow:    rgba(61,255,143,.12);
  --green-border:  rgba(61,255,143,.20);

  --gold:          #C8A84B;
  --gold-dim:      rgba(200,168,75,.15);
  --gold-border:   rgba(200,168,75,.30);

  --t1:            #F0EDE6;
  --t2:            #B8C4BC;
  --t3:            #E2E2E2;
  --t4:            #B0B0B0;

  --glass-bg:      rgba(15,30,20,.60);
  --glass-border:  rgba(61,255,143,.10);

  --fd: 'Space Grotesk', sans-serif;
  --fb: 'Inter', sans-serif;

  --container:     1280px;
  --cpad:          clamp(20px,5vw,80px);
  --section-gap:   clamp(80px,10vw,140px);

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

  --ease-out: cubic-bezier(0.16,1,0.3,1);
  --tr-fast:  150ms;
  --tr-med:   300ms;
  --tr-slow:  600ms;

  --shadow-card: 0 1px 1px rgba(0,0,0,.5), 0 4px 16px rgba(0,0,0,.4);
  --shadow-glow: 0 0 40px rgba(61,255,143,.08);

  /* --vl-* aliases for redesign CSS compatibility */
  --vl-bg-base:        var(--bg-base);
  --vl-bg-surface:     var(--bg-surface);
  --vl-bg-elevated:    var(--bg-elevated);
  --vl-green:          var(--green);
  --vl-green-dim:      var(--green-dim);
  --vl-green-glow:     var(--green-glow);
  --vl-green-border:   var(--green-border);
  --vl-gold:           var(--gold);
  --vl-gold-dim:       var(--gold-dim);
  --vl-gold-border:    var(--gold-border);
  --vl-text-primary:   var(--t1);
  --vl-text-secondary: var(--t2);
  --vl-text-tertiary:  var(--t3);
  --vl-glass-bg:       var(--glass-bg);
  --vl-glass-border:   var(--glass-border);
  --vl-glass-blur:     blur(20px);
  --vl-font-display:   var(--fd);
  --vl-font-body:      var(--fb);
  --vl-container:      var(--container);
  --vl-container-pad:  var(--cpad);
  --vl-section-gap:    var(--section-gap);
  --vl-radius-sm:      var(--r-sm);
  --vl-radius-md:      var(--r-md);
  --vl-radius-lg:      var(--r-lg);
  --vl-radius-xl:      var(--r-xl);
  --vl-radius-pill:    var(--r-pill);
  --vl-ease-out:       var(--ease-out);
  --vl-duration-fast:  var(--tr-fast);
  --vl-duration-med:   var(--tr-med);
  --vl-duration-slow:  var(--tr-slow);
  --vl-shadow-card:    var(--shadow-card);
  --vl-shadow-glow:    var(--shadow-glow);

  /* legacy aliases kept for header/footer PHP templates */
  --g400: var(--green);
  --g500: var(--green-dim);
  --g600: #16a34a;
  --hh: 64px;
  --ticker-h: 34px;
  --border: var(--glass-border);
  --glowm: var(--green-glow);
}

/* ─── 2. GLOBAL BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg-base);
  color: var(--t1);
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
img { max-width: 100%; display: block; }

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

/* ─── 3. SCROLL PROGRESS BAR ─────────────────────────────────── */
.vl-scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;          /* full width — JS drives scaleX not width (no reflow) */
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  z-index: 99999;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

/* ─── 4. CUSTOM CURSOR ───────────────────────────────────────── */
body { cursor: none; }

.vl-cursor-dot {
  position: fixed;
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  will-change: transform;
}

.vl-cursor-ring {
  position: fixed;
  width: 34px; height: 34px;
  border: 1px solid rgba(61,255,143,.40);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99997;
  will-change: transform;
  transition: width var(--tr-med) var(--ease-out),
              height var(--tr-med) var(--ease-out),
              border-color var(--tr-med);
}

.vl-cursor-ring.vl-cursor-expand {
  width: 52px; height: 52px;
  border-color: rgba(61,255,143,.70);
}

@media (hover: none), (max-width: 768px) {
  body { cursor: auto; }
  .vl-cursor-dot, .vl-cursor-ring { display: none !important; }
}

/* ─── 5. TICKER BAR ──────────────────────────────────────────── */
.ticker-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  background: var(--green-dim);
  overflow: hidden;
  height: var(--ticker-h);
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  will-change: transform; /* continuous GPU animation */
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: #fff;
}

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

/* ─── 6. HEADER ──────────────────────────────────────────────── */
.header {
  position: fixed;
  top: var(--ticker-h); left: 0; right: 0;
  z-index: 100;
  height: var(--hh);
}

.header::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(6,13,9,.82);
  border-bottom: 1px solid transparent;
  transition: background var(--tr-med) var(--ease-out),
              border-color var(--tr-med) var(--ease-out);
}

.header.scrolled::before {
  background: rgba(6,13,9,.96);
  border-bottom-color: var(--glass-border);
}

.header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 40px;
  position: relative;
}

/* ── Animated Logo ── */
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  animation: logoGlowPulse 9s ease-in-out 1.2s infinite;
  will-change: transform; /* logo has filter animation — promote to compositor layer */
}

@keyframes logoGlowPulse {
  0%, 100% { filter: drop-shadow(0 0 0px rgba(61,255,143,0)); }
  50%       { filter: drop-shadow(0 0 6px rgba(61,255,143,.9))
                      drop-shadow(0 0 18px rgba(61,255,143,.5))
                      drop-shadow(0 0 36px rgba(61,255,143,.2)); }
}

.logo__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Outer ring draws in — glow handled by parent .logo filter */
.logo-ring {
  stroke-dasharray: 73;
  stroke-dashoffset: 73;
  animation: logoRingDraw .9s var(--ease-out) .1s forwards;
  transform-origin: center;
}

/* V shape draws up from centre */
.logo-v {
  stroke-dasharray: 28;
  stroke-dashoffset: 28;
  animation: logoVDraw .6s var(--ease-out) .6s forwards;
}

.logo-v2 {
  stroke-dasharray: 18;
  stroke-dashoffset: 18;
  animation: logoVDraw .6s var(--ease-out) .8s forwards;
}

/* Dot pops in */
/* Dot pops in — glow handled by parent .logo filter */
.logo-dot {
  opacity: 0;
  animation: logoDotPop .3s var(--ease-out) 1.0s forwards;
}

@keyframes logoRingDraw {
  to { stroke-dashoffset: 0; }
}
@keyframes logoVDraw {
  to { stroke-dashoffset: 0; }
}
@keyframes logoDotPop {
  0%   { opacity: 0; transform: scale(0); }
  70%  { transform: scale(1.3); }
  100% { opacity: 1; transform: scale(1); }
}

/* Wordmark */
.logo__wordmark {
  font-family: var(--fb);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--t1);
  letter-spacing: -.02em;
  line-height: 1;
}

/* "Vape" span — no individual animation needed, parent .logo handles glow */
.logo__vape {
  display: inline;
}

/* "Life" — green shimmer only, glow comes from parent .logo filter */
.logo__wordmark em {
  font-style: normal;
  background: linear-gradient(90deg, #3DFF8F 0%, #90FFD0 50%, #3DFF8F 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: logoShimmer 12s linear 1.5s infinite;
}

@keyframes logoShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Hover lift */
.logo:hover .logo__icon svg { transform: translateY(-1px); transition: transform .2s var(--ease-out); }

/* Legacy .logo span (footer) */
.logo span { color: var(--green); }

/* Desktop Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  position: relative;
  z-index: 1;
}

.nav__link {
  font-size: .875rem;
  font-weight: 400;
  color: var(--t3);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  transition: color var(--tr-fast) var(--ease-out);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.nav__link:hover { color: #89B891; }

/* Dropdown container */
.nav__dropdown { position: relative; }

/* Invisible bridge fills the gap between button and menu so
   hover is never lost while the mouse travels down */
.nav__dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 18px; /* must be >= gap below */
  display: block;
}

/* Dropdown panel — hidden by default */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(6,13,9,.97);
  border: .5px solid var(--glass-border);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,.7);
  padding: 16px;
  min-width: 380px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--tr-fast) var(--ease-out), visibility var(--tr-fast) var(--ease-out), transform var(--tr-fast) var(--ease-out);
  transform: translateX(-50%) translateY(6px);
  z-index: 200;
}

.nav__dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.drop-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: var(--r-md);
  color: var(--t2);
  text-decoration: none;
  transition: background var(--tr-fast) var(--ease-out), color var(--tr-fast) var(--ease-out);
}

.drop-item:hover { background: rgba(61,255,143,.06); color: var(--t1); }

.drop-item strong { display: block; font-size: .825rem; font-weight: 600; color: var(--t1); }
.drop-item span   { display: block; font-size: .72rem; color: var(--t3); }

.drop-icon {
  width: 32px; height: 32px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.dropdown-footer {
  margin-top: 10px;
  padding-top: 10px;
  border-top: .5px solid var(--glass-border);
}

.dropdown-footer a {
  font-size: .8rem;
  color: #89B891;
  font-weight: 500;
  text-decoration: none;
  transition: opacity var(--tr-fast) var(--ease-out);
}

.dropdown-footer a:hover { opacity: .75; }

/* Header right side */
.header__right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 16px;
  position: relative;
  z-index: 1;
}

.icon-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t3);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--tr-fast) var(--ease-out);
}

.icon-btn:hover { color: var(--t1); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--t1);
  border-radius: 2px;
  transition: transform var(--tr-med) var(--ease-out),
              opacity var(--tr-med) var(--ease-out);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: calc(var(--ticker-h) + var(--hh));
  left: 0; right: 0;
  background: rgba(6,13,9,.98);
  border-bottom: 1px solid var(--glass-border);
  padding: 16px var(--cpad) 24px;
  z-index: 99;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--tr-med);
}

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

.mobile-nav a {
  display: block;
  padding: 11px 14px;
  border-radius: var(--r-md);
  font-weight: 500;
  color: var(--t2);
  transition: color var(--tr-fast) var(--ease-out),
              background var(--tr-fast) var(--ease-out);
}

.mobile-nav a:hover { color: var(--t1); background: rgba(61,255,143,.05); }

/* Age Gate */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(6,13,9,.97);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: opacity var(--tr-slow) var(--ease-out);
}

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

.age-gate__inner {
  background: var(--bg-elevated);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: 52px 44px;
  max-width: 420px;
  width: 100%;
  text-align: center;
}

.age-gate__logo {
  font-family: var(--fd);
  font-size: 2rem;
  font-weight: 400;
  color: var(--t1);
  margin-bottom: 24px;
}

.age-gate__logo em { font-style: italic; color: var(--green); }

.age-gate__inner h2 {
  font-family: var(--fd);
  font-size: 1.625rem;
  margin-bottom: 10px;
}

.age-gate__inner > p { color: var(--t3); font-size: .9375rem; margin-bottom: 32px; }

.age-gate__buttons { display: flex; gap: 12px; justify-content: center; margin-bottom: 20px; }
.age-gate__fine { font-size: .75rem; color: var(--t4); }
.age-gate__fine a { color: #89B891; }

/* ─── 7. BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fb);
  font-size: .875rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: .01em;
  position: relative;
  overflow: hidden;
  transition: transform var(--tr-fast) var(--ease-out),
              box-shadow var(--tr-fast) var(--ease-out);
}

.btn--primary {
  background: var(--green);
  color: #060D09;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(61,255,143,.30);
  color: #060D09;
}

.btn--outline {
  background: transparent;
  color: var(--t1);
  border: 1px solid rgba(240,237,230,.20);
}

.btn--outline:hover {
  border-color: rgba(240,237,230,.50);
  background: rgba(240,237,230,.05);
  transform: translateY(-2px);
}

.btn--lg  { padding: 15px 32px; font-size: .9375rem; }
.btn--sm  { padding: 9px 18px;  font-size: .8125rem; }
.btn--full { width: 100%; justify-content: center; }

/* ─── 8. SCROLL REVEAL ───────────────────────────────────────── */
[data-vl-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

[data-vl-reveal="left"]  { transform: translateX(-24px); }
[data-vl-reveal="right"] { transform: translateX(24px); }
[data-vl-reveal="scale"] { transform: scale(.96); opacity: 0; }

[data-vl-reveal].vl-revealed { opacity: 1; transform: none; }

[data-vl-reveal][data-vl-delay="1"] { transition-delay:  80ms; }
[data-vl-reveal][data-vl-delay="2"] { transition-delay: 160ms; }
[data-vl-reveal][data-vl-delay="3"] { transition-delay: 240ms; }
[data-vl-reveal][data-vl-delay="4"] { transition-delay: 320ms; }
[data-vl-reveal][data-vl-delay="5"] { transition-delay: 400ms; }
[data-vl-reveal][data-vl-delay="6"] { transition-delay: 480ms; }
[data-vl-reveal][data-vl-delay="7"] { transition-delay: 560ms; }
[data-vl-reveal][data-vl-delay="8"] { transition-delay: 640ms; }

/* legacy .fade-up compat */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.fade-up.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-vl-reveal], .fade-up { opacity: 1; transform: none; transition: none; }
}

/* ─── 9. HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--ticker-h) + var(--hh) + 60px) 0 80px;
  overflow: hidden;
  background-image: url('hero-bg.webp');
  background-size: cover;
  background-position: 60% center;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(6,13,9,.94) 45%, rgba(6,13,9,.35) 100%),
    linear-gradient(to top, rgba(6,13,9,.97) 0%, transparent 50%),
    linear-gradient(135deg, rgba(61,255,143,.04) 0%, transparent 50%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg-base));
  z-index: 1;
  pointer-events: none;
}

/* particle canvas */
#vlHeroCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: .45;
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--cpad);
}

/* Eyebrow badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-glow);
  border: 1px solid var(--green-border);
  padding: 7px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(10px);
  animation: vlFadeUp .8s var(--ease-out) .2s forwards;
}

.pulse-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: vlPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* Headline */
.hero__title {
  font-family: var(--fd);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -.03em;
  color: var(--t1);
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
}

.hero__title .vl-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: vlFadeUp .9s var(--ease-out) forwards;
}

.hero__title .vl-line:nth-child(1) { animation-delay: .3s; }
.hero__title .vl-line:nth-child(2) { animation-delay: .45s; color: var(--green); font-style: italic; }
.hero__title .vl-line:nth-child(3) { animation-delay: .6s; }

/* Subtext */
.hero__sub {
  font-size: 1.0625rem;
  color: var(--t3);
  max-width: 460px;
  line-height: 1.72;
  margin-bottom: 40px;
  opacity: 0;
  animation: vlFadeUp .8s var(--ease-out) .75s forwards;
}

/* Buttons */
.hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  opacity: 0;
  animation: vlFadeUp .8s var(--ease-out) .9s forwards;
}

/* Stats */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  opacity: 0;
  animation: vlFadeUp .8s var(--ease-out) 1.05s forwards;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat strong {
  font-family: var(--fd);
  font-size: 26px;
  font-weight: 400;
  color: var(--t1);
  line-height: 1;
}

.stat span {
  font-size: .75rem;
  color: var(--t3);
  letter-spacing: .05em;
}

.stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(240,237,230,.12);
}

/* Scroll hint */
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  animation: vlFadeIn 1s var(--ease-out) 1.5s forwards;
}

.hero__scroll span {
  font-size: .625rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--t4);
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--green), transparent);
  animation: vlScrollPulse 2s ease-in-out infinite;
}

/* ─── 10. SECTION SHARED ──────────────────────────────────────── */
/* .vl-section padding is defined in the V2 component block below */

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

.label-tag {
  display: inline-block;
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #89B891;
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--fd);
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 400;
  letter-spacing: -.02em;
  color: var(--t1);
  line-height: 1.1;
  margin-bottom: 12px;
}

.section-header h2 em { font-style: italic; color: #89B891; }

.section-header p { font-size: 1rem; color: var(--t3); max-width: 540px; margin: 0 auto; }

/* ─── 11. CATEGORY STRIP ─────────────────────────────────────── */
.cat-strip {
  background: var(--bg-surface);
  border-bottom: .5px solid var(--glass-border);
  padding: 14px 0;
  position: sticky;
  top: calc(var(--ticker-h) + var(--hh));
  z-index: 50;
}

.cat-strip__inner {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}

.cat-strip__inner::-webkit-scrollbar { display: none; }

.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--t3);
  background: transparent;
  border: .5px solid rgba(240,237,230,.10);
  border-radius: var(--r-pill);
  padding: 7px 16px;
  white-space: nowrap;
  cursor: pointer;
  transition: color var(--tr-fast) var(--ease-out), background var(--tr-fast) var(--ease-out), border-color var(--tr-fast) var(--ease-out);
}

.cat-pill:hover {
  color: var(--t1);
  border-color: rgba(240,237,230,.25);
}

/* ─── 12. PRODUCTS ───────────────────────────────────────────── */

/* ─── 13. CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
  background: var(--bg-surface);
  border-top: .5px solid var(--glass-border);
  border-bottom: .5px solid var(--glass-border);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner__bg { position: absolute; inset: 0; pointer-events: none; }
.cta-banner__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.cta-banner__orb--l {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(61,255,143,.06) 0%, transparent 70%);
  top: -100px; left: -80px;
}
.cta-banner__orb--r {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(200,168,75,.05) 0%, transparent 70%);
  bottom: -80px; right: -60px;
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.cta-banner__text h2 {
  font-family: var(--fd);
  font-size: clamp(28px,4vw,44px);
  font-weight: 400;
  letter-spacing: -.02em;
  color: var(--t1);
  margin: 12px 0 10px;
}

.cta-banner__text p { color: var(--t3); max-width: 400px; font-size: .9375rem; }

.cta-banner__action {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ─── 14. DAILY DEALS ────────────────────────────────────────── */
.deals {
  padding: var(--section-gap) 0;
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
}

.deals::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(61,255,143,.04) 0%, transparent 70%);
  pointer-events: none;
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px,1fr));
  gap: 16px;
}

.deal {
  position: relative;
  background: var(--glass-bg);
  border: .5px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  overflow: hidden;
  transition: transform var(--tr-med) var(--ease-out), border-color var(--tr-med);
}

.deal:hover { transform: translateY(-4px); }

.deal--featured {
  border-color: var(--green) !important;
  box-shadow: 0 0 0 1px var(--green-border), var(--shadow-glow);
}

.deal--featured::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(61,255,143,.05) 0%, transparent 60%);
  pointer-events: none;
}

.deal__day {
  position: absolute;
  bottom: -16px; right: -8px;
  font-family: var(--fd);
  font-size: 80px;
  font-weight: 400;
  color: rgba(240,237,230,.03);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.deal--featured .deal__day { color: rgba(61,255,143,.06); }

.deal__icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.deal h3 {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--t1);
  margin-bottom: 8px;
}

.deal p {
  font-size: .8125rem;
  color: var(--t3);
  line-height: 1.6;
  margin-bottom: 16px;
}

.deal__pill {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-dim);
}

.deal--featured .deal__pill {
  background: var(--green);
  color: #060D09;
  padding: 3px 9px;
  border-radius: var(--r-pill);
}

/* ─── 15. RESERVATION ────────────────────────────────────────── */
.reserve {
  padding: var(--section-gap) 0;
  background: var(--bg-surface);
}

.reserve__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.reserve__info h2 {
  font-family: var(--fd);
  font-size: clamp(30px,4vw,48px);
  font-weight: 400;
  letter-spacing: -.02em;
  color: var(--t1);
  line-height: 1.1;
  margin: 12px 0 24px;
}

.reserve__info h2 em { font-style: italic; color: #89B891; }

.reserve__info > p {
  font-size: 1rem;
  color: var(--t3);
  line-height: 1.7;
  margin-bottom: 32px;
}

.perk-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.perk-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--t3);
}

.perk-dot {
  color: #89B891;
  font-weight: 700;
  font-size: .875rem;
  flex-shrink: 0;
}

/* Form card */
.reserve__form {
  background: var(--glass-bg);
  border: .5px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: 40px;
}

.reserve__form h3 {
  font-family: var(--fd);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--t1);
  margin-bottom: 28px;
}

.fgroup {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.fgroup label {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--t3);
  transition: color var(--tr-fast) var(--ease-out);
}

.fgroup:focus-within label { color: var(--green); }

.finput {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(240,237,230,.12);
  border-radius: 0;
  color: var(--t1);
  font-family: var(--fb);
  font-size: .9375rem;
  padding: 10px 0;
  outline: none;
  width: 100%;
  transition: border-color var(--tr-fast) var(--ease-out);
}

.finput:focus { border-bottom-color: var(--green); }

.finput::placeholder { color: var(--t4); font-size: .875rem; }

.finput[type="date"] { color-scheme: dark; }

.ftextarea { resize: vertical; min-height: 80px; }

/* ─── 16. WHY US ─────────────────────────────────────────────── */
.why {
  padding: var(--section-gap) 0;
  background: var(--bg-base);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 20px;
}

.why-card {
  background: var(--glass-bg);
  border: .5px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: transform var(--tr-med) var(--ease-out), border-color var(--tr-med);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--green-border);
}

.why-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.why-card h3 {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--t1);
  margin-bottom: 10px;
}

.why-card p { font-size: .875rem; color: var(--t3); line-height: 1.65; }

/* ─── 17. REVIEWS ────────────────────────────────────────────── */
.reviews {
  padding: var(--section-gap) 0;
  background: var(--bg-surface);
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}

.stars, .review__stars { color: var(--gold); font-size: 1.125rem; letter-spacing: 2px; }

.rating-src { color: var(--t4); font-size: .875rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 20px;
}

.review {
  background: var(--glass-bg);
  border: .5px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--tr-med) var(--ease-out), border-color var(--tr-med);
}

.review:hover {
  transform: translateY(-4px);
  border-color: var(--green-border);
}

.review__stars { font-size: 1rem; }

.review p {
  font-size: .875rem;
  color: var(--t3);
  line-height: 1.7;
  flex: 1;
}

.review__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: .5px solid var(--glass-border);
}

.avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--green-glow);
  border: .5px solid var(--green-border);
  color: #89B891;
  font-size: .75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review__author strong {
  display: block;
  font-size: .875rem;
  color: var(--t1);
  margin-bottom: 2px;
}

.review__author span {
  font-size: .75rem;
  color: var(--t4);
}

/* ─── 18. FOOTER ─────────────────────────────────────────────── */
/* .site-footer removed — footer.php uses .footer class (see section 18b) */

.footer__newsletter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.footer__newsletter-title {
  font-family: var(--fd);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--t1);
  margin-bottom: 6px;
}

.footer__newsletter-title em { font-style: italic; color: #89B891; }

.footer__newsletter-sub { font-size: .875rem; color: var(--t3); }

.newsletter-form {
  display: flex;
  background: rgba(240,237,230,.04);
  border: .5px solid rgba(240,237,230,.10);
  border-radius: var(--r-pill);
  overflow: hidden;
  padding: 4px;
  min-width: 300px;
}

.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--t1);
  font-family: var(--fb);
  font-size: .875rem;
  padding: 10px 16px;
  min-width: 0;
}

.newsletter-input::placeholder { color: var(--t4); }

.newsletter-btn {
  background: var(--green);
  color: #060D09;
  border: none;
  cursor: pointer;
  font-family: var(--fb);
  font-size: .8125rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  transition: transform var(--tr-fast) var(--ease-out), box-shadow var(--tr-fast) var(--ease-out);
}

.newsletter-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(61,255,143,.25);
}

.footer__divider {
  height: .5px;
  background: var(--glass-border);
  margin-bottom: 48px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__logo {
  font-family: var(--fd);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--t1);
  margin-bottom: 12px;
  display: block;
}

.footer__logo em { font-style: italic; color: var(--green); }

.footer__tagline {
  font-size: .8125rem;
  color: var(--t4);
  line-height: 1.7;
  max-width: 260px;
}

.footer__col { display: flex; flex-direction: column; gap: 10px; }

.footer__col-title {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 4px;
}

.footer__col a {
  font-size: .875rem;
  color: var(--t4);
  transition: color var(--tr-fast) var(--ease-out);
}

.footer__col a:hover { color: var(--t1); }

.footer__hours { font-size: .8125rem; color: var(--t4); line-height: 1.7; }

.footer__social { display: flex; gap: 10px; margin-top: 8px; }

.footer__social a {
  width: 38px; height: 38px;
  border-radius: var(--r-md);
  border: .5px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t4);
  font-size: 1rem;
  transition: color var(--tr-fast) var(--ease-out), border-color var(--tr-fast) var(--ease-out);
}

.footer__social a:hover { color: #89B891; border-color: rgba(240,237,230,.25); }

.footer__bottom p { font-size: .75rem; color: var(--t4); }

.footer__legal { display: flex; gap: 20px; }

.footer__legal a {
  font-size: .75rem;
  color: #B0B0B0;
  transition: color var(--tr-fast) var(--ease-out);
}

.footer__legal a:hover { color: #E2E2E2; }

/* fcol footer link colors */
.fcol a { color: #B0B0B0; }
.fcol a:hover { color: #E2E2E2; }

/* ─── 18b. NEWSLETTER + FOOTER ACTUAL CLASS FIXES ───────────── */
/* footer.php uses different class names — map them here */

.newsletter {
  background: var(--bg-elevated);
  border-top: .5px solid var(--glass-border);
  padding: 64px 0;
}

.newsletter__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--cpad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.newsletter__text h2 {
  font-family: var(--fd);
  font-size: clamp(1.4rem, 3vw, 1.875rem);
  font-weight: 600;
  color: var(--t1);
  margin-bottom: 6px;
}

.newsletter__text p { font-size: .875rem; color: var(--t3); }

.newsletter__form {
  display: flex;
  background: rgba(240,237,230,.04);
  border: .5px solid rgba(240,237,230,.10);
  border-radius: var(--r-pill);
  overflow: hidden;
  padding: 4px;
  min-width: 300px;
  flex-shrink: 0;
}

.newsletter__form .finput {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--t1);
  font-family: var(--fb);
  font-size: .875rem;
  padding: 10px 16px;
  min-width: 0;
}

.newsletter__form .finput::placeholder { color: var(--t4); }

.newsletter__form .btn--primary {
  background: var(--green);
  color: #060D09;
  border: none;
  cursor: pointer;
  font-family: var(--fb);
  font-size: .8125rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  transition: transform var(--tr-fast) var(--ease-out), box-shadow var(--tr-fast) var(--ease-out);
}

.newsletter__form .btn--primary:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(61,255,143,.25);
}

/* Footer actual structure */
.footer {
  background: var(--bg-surface);
  border-top: .5px solid var(--glass-border);
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: 'VAPELIFE';
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--fd);
  font-size: clamp(60px, 12vw, 140px);
  font-weight: 700;
  color: rgba(240,237,230,.022);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -.04em;
}

.footer__top {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--cpad);
  display: grid;
  grid-template-columns: 1.6fr 2fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__brand p {
  font-size: .8125rem;
  color: var(--t4);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 260px;
}

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

.fcol {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fcol h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--t2);
  margin-bottom: 4px;
}

.fcol a {
  font-size: .8125rem;
  color: var(--t4);
  text-decoration: none;
  transition: color var(--tr-fast) var(--ease-out);
  line-height: 1.5;
}

.fcol a:hover { color: var(--t1); }

/* Shop links — 2-column grid to cut height in half */
.fcol__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 20px;
}

.footer__hours {
  font-size: .8125rem;
  color: var(--t4);
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer__hours strong {
  color: var(--t2);
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px var(--cpad);
  border-top: .5px solid var(--glass-border);
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .newsletter__inner { flex-direction: column; align-items: flex-start; }
  .newsletter__form { min-width: 0; width: 100%; }
}

@media (max-width: 600px) {
  .footer__links { grid-template-columns: 1fr 1fr; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
}

/* ─── FOOTER BACKGROUND IMAGE ──────────────────────────────────── */
.footer__bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center 40%;
  background-attachment: scroll;  /* fixed triggers repaint every scroll frame — removed */
  transform: scale(1.08);
  will-change: transform;
  filter: brightness(.35) contrast(1.1) saturate(1.1);
}

.footer__bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(6,13,9,.75) 0%, rgba(6,13,9,.55) 50%, rgba(6,13,9,.8) 100%);
}

@media (max-width: 768px) {
  .footer__bg-img { transform: none; }
}

/* ─── 19. MOBILE BOTTOM CTA ──────────────────────────────────── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
  background: rgba(6,13,9,.92);
  border-top: .5px solid var(--green-border);
  z-index: 900;
}

.mobile-cta-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--green);
  color: #060D09;
  font-size: .9375rem;
  font-weight: 600;
  padding: 15px 28px;
  border-radius: var(--r-pill);
}

/* ─── 20. KEYFRAMES ──────────────────────────────────────────── */
@keyframes vlFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes vlFadeIn {
  to { opacity: 1; }
}

@keyframes vlPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(61,255,143,.4); }
  50%      { box-shadow: 0 0 0 6px rgba(61,255,143,0); }
}

@keyframes vlScrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── 21. RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .reserve__wrap { gap: 48px; }
}

@media (max-width: 900px) {
  .reserve__wrap { grid-template-columns: 1fr; }
  .footer__grid  { grid-template-columns: 1fr 1fr; }
  /* .header__nav removed — nav uses .nav class, hidden via hamburger JS */
  .hamburger     { display: flex; }
  .mobile-nav    { display: block; }
}

@media (max-width: 768px) {
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 80px; }
  .hero__title { font-size: clamp(44px,10vw,72px); }
  .hero { min-height: 90vh; background-position: 75% center; }
  .hero::before {
    background:
      rgba(6,13,9,.88),
      linear-gradient(to top, rgba(6,13,9,.97) 0%, transparent 50%);
  }
  .cta-banner__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 540px) {
  .footer__grid { grid-template-columns: 1fr; }
  .newsletter-form { min-width: 0; }
  .hero__btns { flex-direction: column; }
}


/* ═══════════════════════════════════════════════════════════════
   V2 REDESIGN COMPONENTS
   New dark-luxury classes used by front-page.php v2
═══════════════════════════════════════════════════════════════ */

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.vl-container {
  max-width: var(--vl-container);
  margin: 0 auto;
  padding: 0 var(--vl-container-pad);
}

.vl-section {
  padding: var(--vl-section-gap) 0;
}


/* ─── SECTION TYPOGRAPHY ─────────────────────────────────────── */
.vl-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #89B891;
  margin-bottom: 12px;
  display: block;
}

.vl-section-title {
  font-family: var(--vl-font-display) !important;
  font-size: clamp(30px, 5vw, 52px) !important;
  font-weight: 400 !important;
  letter-spacing: -.02em !important;
  color: var(--vl-text-primary) !important;
  line-height: 1.1 !important;
  margin-bottom: 12px !important;
}

.vl-section-title em { font-style: italic; color: var(--vl-green); }

/* Heading accents — muted emerald instead of neon green */
.vl-section-title em,
.vl-deals-section .vl-section-title em,
.vl-reserve-section .vl-section-title em,
.vl-why-section .vl-section-title em {
  color: #89B891;
  font-style: italic;
  -webkit-text-fill-color: #89B891;
}

.vl-section-sub {
  font-size: 16px;
  color: var(--vl-text-secondary);
  margin-bottom: 56px;
  max-width: 540px;
}

/* Body text contrast — readable off-white */
.vl-section-sub,
.vl-why-desc,
.vl-deal-desc,
.vl-review-text,
.vl-card-desc,
.footer__brand p {
  color: #E2E2E2;
}


/* ─── BUTTONS ─────────────────────────────────────────────────── */
.vl-btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: var(--vl-green) !important;
  color: #060D09 !important;
  font-family: var(--vl-font-body) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 14px 28px !important;
  border-radius: var(--vl-radius-pill) !important;
  border: none !important;
  cursor: pointer !important;
  text-decoration: none !important;
  transition: transform var(--vl-duration-fast) var(--vl-ease-out),
              box-shadow var(--vl-duration-fast) var(--vl-ease-out) !important;
}

.vl-btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 32px rgba(61,255,143,.3) !important;
  color: #060D09 !important;
}

.vl-btn-ghost {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: transparent !important;
  color: var(--vl-text-primary) !important;
  font-family: var(--vl-font-body) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  padding: 14px 28px !important;
  border-radius: var(--vl-radius-pill) !important;
  border: 1px solid rgba(240,237,230,.20) !important;
  text-decoration: none !important;
  transition: border-color var(--vl-duration-fast),
              background var(--vl-duration-fast),
              transform var(--vl-duration-fast) !important;
}

.vl-btn-ghost:hover {
  border-color: rgba(240,237,230,.50) !important;
  background: rgba(240,237,230,.05) !important;
  transform: translateY(-2px) !important;
}


/* ─── HERO ────────────────────────────────────────────────────── */
.vl-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.vl-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.vl-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(.55) contrast(1.1) saturate(1.2);
}

.vl-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(6,13,9,.93) 40%, rgba(6,13,9,.30) 100%),
    linear-gradient(to top, rgba(6,13,9,.97) 0%, transparent 55%),
    linear-gradient(135deg, rgba(61,255,143,.04) 0%, transparent 50%);
}

.vl-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .4;
  z-index: 1;
}

.vl-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--vl-container);
  width: 100%;
}

.vl-hero-eyebrow,
.vl-hero-headline,
.vl-hero-subtext,
.vl-hero-actions,
.vl-hero-stats {
  max-width: 640px;
}

.vl-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--vl-green);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(10px);
  animation: vlFadeUp .8s var(--vl-ease-out) .2s forwards;
}

.vl-badge-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--vl-green);
  border-radius: 50%;
  animation: vlPulse 2s ease-in-out infinite;
}

.vl-hero-headline {
  font-family: var(--vl-font-display) !important;
  font-size: clamp(52px, 8vw, 96px) !important;
  font-weight: 400 !important;
  line-height: 1.0 !important;
  letter-spacing: -.03em !important;
  color: var(--vl-text-primary) !important;
  margin-bottom: 28px !important;
  display: flex !important;
  flex-direction: column !important;
}

.vl-hero-headline .vl-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: vlFadeUp .9s var(--vl-ease-out) forwards;
}

.vl-hero-headline .vl-line:nth-child(1) { animation-delay: .30s; }
.vl-hero-headline .vl-line:nth-child(2) { animation-delay: .45s; }
.vl-hero-headline .vl-line:nth-child(3) { animation-delay: .60s; }

.vl-hero-headline .vl-italic { font-style: italic; color: var(--vl-green); }

.vl-hero-subtext {
  font-size: 16px;
  font-weight: 300;
  color: var(--vl-text-secondary);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 40px;
  opacity: 0;
  animation: vlFadeUp .8s var(--vl-ease-out) .75s forwards;
}

.vl-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  opacity: 0;
  animation: vlFadeUp .8s var(--vl-ease-out) .9s forwards;
}

.vl-hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0;
  animation: vlFadeUp .8s var(--vl-ease-out) 1.05s forwards;
}

.vl-stat { display: flex; flex-direction: column; gap: 2px; }

.vl-stat-number {
  font-family: var(--vl-font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--vl-text-primary);
  line-height: 1;
}

.vl-stat-label { font-size: 12px; color: var(--vl-text-secondary); letter-spacing: .05em; }

.vl-stat-divider { width: 1px; height: 36px; background: rgba(240,237,230,.12); }

.vl-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  animation: vlFadeIn 1s var(--vl-ease-out) 1.5s forwards;
}

.vl-scroll-hint span {
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--vl-text-tertiary);
}

.vl-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--vl-green), transparent);
  animation: vlScrollPulse 2s ease-in-out infinite;
}


/* ─── CATEGORY BAR ────────────────────────────────────────────── */
.vl-category-bar {
  position: sticky;
  top: 64px;
  z-index: 100;
  padding: 14px 0;
  transition: background var(--tr-med) var(--ease-out);
}

.vl-category-bar.vl-stuck {
  background: rgba(6,13,9,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: .5px solid var(--vl-glass-border);
}

.vl-category-pills {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
  padding: 0 var(--vl-container-pad);
}

.vl-category-pills::-webkit-scrollbar { display: none; }

.vl-category-pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--vl-font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--vl-text-secondary);
  background: transparent;
  border: .5px solid rgba(240,237,230,.10);
  border-radius: var(--vl-radius-pill);
  padding: 7px 18px;
  white-space: nowrap;
  cursor: pointer;
  transition: color var(--vl-duration-fast), background var(--vl-duration-fast), border-color var(--vl-duration-fast);
}

.vl-category-pill:hover {
  color: var(--vl-text-primary);
  border-color: rgba(240,237,230,.25);
}

.vl-category-pill.vl-active {
  color: var(--vl-green);
  background: var(--vl-green-glow);
  border-color: var(--vl-green-border);
}


/* ─── PRODUCT GRID & CARDS ────────────────────────────────────── */
.vl-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.vl-product-card {
  background: rgba(30, 30, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--vl-radius-lg);
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform var(--vl-duration-med) var(--vl-ease-out),
              box-shadow var(--vl-duration-med) var(--vl-ease-out),
              border-color var(--vl-duration-med);
  cursor: pointer;
  contain: layout paint;
}

.vl-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--vl-shadow-card), var(--vl-shadow-glow);
  border-color: var(--vl-green-border);
}

.vl-card-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--vl-bg-elevated);
}

.vl-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--vl-duration-slow) var(--vl-ease-out);
}

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

.vl-card-emoji {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.vl-card-hover-cta {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,13,9,.88) 40%, transparent 100%);
  opacity: 0;
  transition: opacity 240ms var(--vl-ease-out);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 18px;
  pointer-events: none;
}

.vl-product-card:hover .vl-card-hover-cta {
  opacity: 1;
  pointer-events: auto;
}

/* Hover overlay reserve button */
.vl-card-hover-cta .btn--reserve {
  all: unset;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--vl-font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--vl-text-primary);
  background: rgba(15,30,20,.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(61,255,143,.25);
  border-radius: var(--vl-radius-pill);
  padding: 9px 20px;
  transform: translateY(6px);
  transition: color 200ms, background 200ms, border-color 200ms,
              transform 240ms var(--vl-ease-out), box-shadow 200ms;
}

.vl-card-hover-cta .btn--reserve::after {
  content: '→';
  font-size: 13px;
  transition: transform 200ms var(--vl-ease-out);
}

.vl-product-card:hover .vl-card-hover-cta .btn--reserve {
  transform: translateY(0);
}

.vl-card-hover-cta .btn--reserve:hover {
  background: var(--vl-green);
  border-color: var(--vl-green);
  color: #060D09;
  box-shadow: 0 0 20px rgba(61,255,143,.3);
}

.vl-card-hover-cta .btn--reserve:hover::after {
  transform: translateX(3px);
}

.vl-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: var(--vl-radius-pill);
  background: var(--vl-green-glow);
  color: var(--vl-green);
  border: .5px solid var(--vl-green-border);
  z-index: 2;
}

.vl-card-body { padding: 16px 18px 18px; }

.vl-card-category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: inline-block;
  padding: 2px 8px;
  border-radius: var(--vl-radius-pill);
  margin-bottom: 6px;
}

.vl-card-name {
  font-family: var(--vl-font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--vl-text-primary);
  line-height: 1.4;
  margin-bottom: 4px;
}

.vl-card-desc {
  font-size: 12px;
  color: var(--vl-text-tertiary);
  line-height: 1.5;
  margin-bottom: 14px;
}

.vl-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vl-card-price {
  font-family: var(--vl-font-display);
  font-size: 20px;
  color: var(--vl-gold);
  font-weight: 400;
}

.vl-reserve-icon-btn {
  all: unset;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: var(--vl-radius-sm);
  background: transparent;
  border: 1px solid rgba(61,255,143,.2);
  color: var(--t2);
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  transition: background 180ms, border-color 180ms, color 180ms, transform 180ms var(--vl-ease-out);
}

.vl-reserve-icon-btn:hover {
  background: var(--vl-green-glow);
  border-color: var(--vl-green);
  color: var(--vl-green);
  transform: scale(1.12);
}

.vl-products-more { text-align: center; margin-top: 48px; }


/* ─── DAILY DEALS ─────────────────────────────────────────────── */
.vl-deals-section {
  background: var(--vl-bg-surface);
  position: relative;
  overflow: hidden;
}

.vl-deals-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(61,255,143,.04) 0%, transparent 70%);
  pointer-events: none;
}

.vl-deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.vl-deal-card {
  position: relative;
  background: rgba(30, 30, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--vl-radius-lg);
  padding: 28px 24px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform var(--vl-duration-med) var(--vl-ease-out), border-color var(--vl-duration-med);
}

.vl-deal-card:hover { transform: translateY(-4px); }

.vl-deal-card--active {
  border-color: var(--vl-green) !important;
  box-shadow: 0 0 0 1px var(--vl-green-border), var(--vl-shadow-glow);
}

.vl-deal-card--active::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61,255,143,.05) 0%, transparent 60%);
  pointer-events: none;
}

.vl-deal-watermark {
  position: absolute;
  bottom: -16px; right: -8px;
  font-family: var(--vl-font-display);
  font-size: 80px;
  color: rgba(240,237,230,.03);
  letter-spacing: -.04em;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.vl-deal-card--active .vl-deal-watermark { color: rgba(61,255,143,.06); }

.vl-deal-today-badge {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--vl-green);
  color: #060D09;
  padding: 3px 9px;
  border-radius: var(--vl-radius-pill);
}

.vl-deal-icon { font-size: 28px; margin-bottom: 16px; display: block; }

.vl-deal-day {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #89B891;
  display: block;
  margin-bottom: 6px;
}

.vl-deal-title { font-size: 18px; font-weight: 500; color: var(--vl-text-primary); margin-bottom: 8px; }

.vl-deal-desc { font-size: 13px; color: var(--vl-text-secondary); line-height: 1.6; margin-bottom: 20px; }

.vl-deal-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--vl-green);
  text-decoration: none;
  transition: gap var(--vl-duration-fast);
}

.vl-deal-link:hover { gap: 10px; }


/* ─── RESERVATION FORM ────────────────────────────────────────── */
.vl-reserve-section { background: var(--vl-bg-base); }

.vl-reserve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.vl-reserve-desc {
  font-size: 16px;
  color: var(--vl-text-secondary);
  line-height: 1.7;
  margin: 24px 0 32px;
}

.vl-reserve-benefits {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vl-reserve-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--vl-text-secondary);
}

.vl-reserve-benefits li::before {
  content: '✓';
  color: #89B891;
  font-weight: 600;
  flex-shrink: 0;
}

.vl-form-card {
  background: var(--vl-glass-bg);
  border: .5px solid var(--vl-glass-border);
  border-radius: var(--vl-radius-xl);
  padding: 40px;
  backdrop-filter: var(--vl-glass-blur);
  -webkit-backdrop-filter: var(--vl-glass-blur);
}

#reserveForm {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vl-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vl-form-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--vl-text-secondary);
  transition: color var(--vl-duration-fast);
}

.vl-form-field:focus-within .vl-form-label { color: var(--vl-green); }

.vl-form-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(240,237,230,.12);
  border-radius: 0;
  color: var(--vl-text-primary);
  font-family: var(--vl-font-body);
  font-size: 15px;
  padding: 10px 0;
  outline: none;
  width: 100%;
  transition: border-color var(--vl-duration-fast);
  box-shadow: none;
}

.vl-form-input:focus { border-bottom-color: var(--vl-green); }

.vl-form-input::placeholder { color: var(--vl-text-tertiary); font-size: 14px; }

.vl-form-input[type="date"] { color-scheme: dark; }

.vl-form-textarea { resize: vertical; min-height: 80px; }

.vl-form-disclaimer { font-size: 12px; color: var(--vl-text-tertiary); text-align: center; }


/* ─── WHY SECTION ─────────────────────────────────────────────── */
.vl-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.vl-why-card {
  background: rgba(30, 30, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--vl-radius-lg);
  padding: 32px 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform var(--vl-duration-med) var(--vl-ease-out), border-color var(--vl-duration-med);
}

.vl-why-card:hover {
  transform: translateY(-4px);
  border-color: var(--vl-green-border);
}

.vl-why-icon {
  width: 48px; height: 48px;
  border-radius: var(--vl-radius-md);
  background: var(--vl-green-glow);
  border: .5px solid var(--vl-green-border);
  color: #89B891;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.vl-why-title {
  font-size: 17px;
  font-weight: 500;
  color: var(--vl-text-primary);
  margin-bottom: 10px;
}

.vl-why-desc { font-size: 14px; color: var(--vl-text-secondary); line-height: 1.6; }


/* ─── REVIEWS ─────────────────────────────────────────────────── */
.vl-reviews-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.vl-reviews-score {
  font-family: var(--vl-font-display);
  font-size: 48px;
  font-weight: 400;
  color: var(--vl-text-primary);
  line-height: 1;
}

.vl-reviews-stars { color: var(--vl-gold); font-size: 22px; letter-spacing: 2px; }

.vl-reviews-count { font-size: 13px; color: var(--vl-text-secondary); }

.vl-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.vl-review-card {
  background: rgba(30, 30, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--vl-radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform var(--vl-duration-med) var(--vl-ease-out), border-color var(--vl-duration-med);
  contain: layout paint;
}

.vl-review-card:hover {
  transform: translateY(-4px);
  border-color: var(--vl-green-border);
}

.vl-review-stars { color: var(--vl-gold); font-size: 16px; letter-spacing: 2px; }

.vl-review-text {
  font-size: 14px;
  color: var(--vl-text-secondary);
  line-height: 1.7;
  flex: 1;
}

.vl-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: .5px solid var(--vl-glass-border);
}

.vl-review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--vl-green-glow);
  border: .5px solid var(--vl-green-border);
  color: #89B891;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vl-review-name { font-size: 14px; font-weight: 500; color: var(--vl-text-primary); }

.vl-review-date { font-size: 12px; color: var(--vl-text-tertiary); }


/* ─── V2 RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .vl-reserve-grid { grid-template-columns: 1fr; gap: 48px; }
  .vl-hero-content { max-width: 100%; }
}

@media (max-width: 768px) {
  .vl-hero { min-height: 90vh; padding-top: 140px; }
  .vl-hero-headline { font-size: clamp(42px, 12vw, 72px) !important; }
  .vl-form-card { padding: 28px 20px; }
}

@media (max-width: 540px) {
  .vl-hero-actions { flex-direction: column; }
  .vl-product-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
}


/* ─── SECTION BACKGROUND IMAGES ─────────────────────────────────
   Parallax-style full-bleed bg — same approach as .vl-hero
   ────────────────────────────────────────────────────────────── */
.vl-section--bg {
  position: relative;
  overflow: hidden;
}

.vl-section-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center center;
  background-attachment: scroll;  /* fixed triggers repaint every scroll frame — scroll + scale is GPU-composited */
  transform: scale(1.08);         /* slight zoom gives parallax feel without background-attachment:fixed repaint cost */
  will-change: transform;         /* promote to own compositor layer before scroll begins */
  filter: brightness(.45) contrast(1.1) saturate(1.15);
}

.vl-section-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(6,13,9,.85) 0%, rgba(6,13,9,.55) 50%, rgba(6,13,9,.85) 100%),
    linear-gradient(135deg, rgba(61,255,143,.04) 0%, transparent 60%);
}

/* Content already gets z-index:2 via inline style on .vl-container */

@media (max-width: 768px) {
  .vl-section-bg-img {
    transform: none; /* no zoom needed on mobile — no parallax either */
  }
}

/* ─── SECTION EXPLICIT BACKGROUND COLORS ────────────────────── */
#about   { background: var(--bg-surface); }
#shop    { background: var(--bg-base); }
#deals   { background: var(--bg-base); }
#reviews { background: var(--bg-base); }

/* ─── CONTENT VISIBILITY — skip paint/layout for off-screen sections ── */
#deals, #reserve, #about, #reviews, #location, .newsletter {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

/* ─── MAP / LOCATION SECTION ─────────────────────────────────── */
.vl-location-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
  padding-bottom: clamp(60px,8vw,100px);
}
@media (max-width: 768px) {
  .vl-location-grid { grid-template-columns: 1fr; }
  .vl-map-wrap { order: -1; }
}

.vl-location-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.vl-location-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.vl-location-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: var(--r-sm);
  background: var(--green-glow);
  border: 1px solid var(--green-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}
.vl-location-item > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.vl-location-item strong {
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
}
.vl-location-item a,
.vl-location-item span {
  font-size: 15px;
  color: var(--t2);
  text-decoration: none;
  line-height: 1.6;
}
.vl-location-item a:hover { color: var(--t1); }

.vl-map-wrap iframe {
  display: block;
  border-radius: var(--r-lg);
  outline: 1px solid var(--glass-border);
}


/* ─── SCROLLBAR ──────────────────────────────────────────────── */
html {
  scrollbar-width: auto;
  scrollbar-color: #3DFF8F #0B1610;
}
::-webkit-scrollbar        { width: 12px; }
::-webkit-scrollbar-track  { background: #0B1610; }
::-webkit-scrollbar-thumb  {
  background: #3DFF8F;
  border-radius: 6px;
  border: 2px solid #0B1610;
}
::-webkit-scrollbar-thumb:hover  { background: #6EFFAB; }
::-webkit-scrollbar-thumb:active { background: #3DFF8F; }
