@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;900&family=Barlow:wght@300;400;500;600&display=swap');

:root {
  --primary: #7CFF00;
  --primary-dark: #5CC200;
  --accent: #ff6b35;
  --dark: #080d08;
  --dark-2: #0f180f;
  --dark-3: #172017;
  --text: #e4ede5;
  --text-muted: #7a9a7d;
  --border: rgba(124,255,0,0.14);
  --card-bg: rgba(15,24,15,0.9);
  --gradient: linear-gradient(135deg, #AAEE00 0%, #7CFF00 60%, #39FF6A 100%);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
}

/* ── AGE GATE ── */
#age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 2rem;
  text-align: center; padding: 2rem;
}
html.age-verified #age-gate { display: none; }
#age-gate h2 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(1.5rem,4vw,2.2rem); font-weight: 700; letter-spacing: 0.02em; }
#age-gate .ag-btns { display: flex; gap: 1rem; justify-content: center; }
#age-gate .ag-btns button {
  padding: 0.75rem 2.5rem; border: none; border-radius: 6px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; letter-spacing: 0.1em;
  cursor: pointer; transition: transform .15s, opacity .15s;
}
#age-gate .ag-btns button:first-child { background: var(--gradient); color: #080d08; }
#age-gate .ag-btns button:last-child { background: var(--dark-3); color: var(--text-muted); }
#age-gate .ag-btns button:hover { transform: translateY(-2px); opacity: .9; }

/* ── NICOTINE WARNING BANNER ── */
.warn-bar {
  background: #1a1000;
  border-bottom: 1px solid #ff6b35aa;
  padding: 0.5rem 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: #ff9f5a;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,13,8,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none; color: var(--text);
}
.nav-logo .logo-box {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 1.1rem; color: #080d08;
  letter-spacing: -0.02em;
}
.nav-logo span { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.3rem; letter-spacing: 0.04em; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text-muted); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.04em; transition: color .2s; }
.nav-links a:hover { color: var(--primary); }
.nav-cta { padding: 0.7rem 1.4rem; font-size: 0.9rem; letter-spacing: 0.08em; white-space: nowrap; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }
@media (max-width: 768px) {
  html, body { scrollbar-width: none; }
  html::-webkit-scrollbar, body::-webkit-scrollbar { display: none; width: 0; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: rgba(8,13,8,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: 0.85rem 2rem; display: block; font-size: 1rem; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .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); }
}

/* ── HERO ── */
.hero {
  min-height: 90vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 3rem;
  padding: 4rem 2rem 4rem 4rem;
  max-width: 1300px; margin: 0 auto;
  position: relative;
}
.hero::before {
  content: '';
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(124,255,0,0.07) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(57,255,106,0.04) 0%, transparent 50%);
  pointer-events: none; z-index: 0;
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-block;
  background: rgba(124,255,0,0.1); border: 1px solid rgba(124,255,0,0.28);
  color: var(--primary); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
  padding: 0.35rem 1rem; border-radius: 100px; margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900;
  line-height: 1.05; letter-spacing: 0.01em;
  margin-bottom: 1.25rem;
}
.hero h1 span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; max-width: 480px; margin-bottom: 2rem; }
.btn-primary {
  display: inline-block;
  background: var(--gradient); color: #080d08;
  padding: 0.9rem 2.2rem; border-radius: 8px;
  text-decoration: none; font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(124,255,0,0.25);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(124,255,0,0.4); }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 2.5rem; }
.hero-stat .num { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 900; color: var(--primary); }
.hero-stat .label { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.04em; margin-top: 0.1rem; }
.hero-image { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; }
.hero-img-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(124,255,0,0.25);
  box-shadow: 0 0 60px rgba(124,255,0,0.08);
}
.hero-img-placeholder img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.hero-badge-corner {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 5;
  background: var(--accent);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding: 3rem 1.5rem; }
  .hero-content { display: contents; }
  .hero-badge { order: 1; margin-bottom: 0.75rem; }
  .hero h1 { order: 2; margin-bottom: 0.5rem; }
  .hero-image { order: 3; margin: 0.5rem 0 1.75rem; }
  .hero p { order: 4; }
  .hero .btn-primary:not(.nav-cta) { order: 5; }
  .hero-stats { order: 6; }
  .hero p { margin: 0 auto 2rem; }
  .hero-stats { justify-content: center; }
  .hero-image { justify-content: center; }
  .hero-img-placeholder { max-width: 280px; }
}

/* ── SECTION TITLES ── */
.section { padding: 5rem 2rem; max-width: 1300px; margin: 0 auto; }
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900;
  margin-bottom: 0.5rem; letter-spacing: 0.01em;
}
.section-title span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-sub { color: var(--text-muted); font-size: 1rem; margin-bottom: 3rem; }

/* ── PRODUCT GRID (3-up) ── */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .products-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(124,255,0,0.1);
  border-color: rgba(124,255,0,0.35);
}
.product-img {
  width: 100%; aspect-ratio: 1;
  background: var(--dark-3);
  border-bottom: 1px solid rgba(124,255,0,0.12);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem;
  overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-img .img-icon { font-size: 2.5rem; opacity: 0.25; }
.product-img .img-label { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.08em; text-align: center; padding: 0 1rem; }
.product-info { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.product-info h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.1rem; letter-spacing: 0.02em; margin-bottom: 0.4rem; }
.product-puffs {
  display: inline-block;
  background: rgba(124,255,0,0.08); border: 1px solid rgba(124,255,0,0.22);
  color: var(--primary); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
  padding: 0.2rem 0.65rem; border-radius: 4px; margin-bottom: 1rem;
}
.product-info .btn-primary { text-align: center; margin-top: auto; font-size: 0.85rem; padding: 0.7rem 1rem; }

/* ── FEATURE SECTION (big product spotlight) ── */
.feature-section {
  padding: 4rem 2rem;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.feature-inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.feature-inner.reverse { direction: rtl; }
.feature-inner.reverse > * { direction: ltr; }
.feature-tag {
  display: inline-block;
  background: rgba(124,255,0,0.1); border: 1px solid rgba(124,255,0,0.28);
  color: var(--primary); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  padding: 0.3rem 0.9rem; border-radius: 100px; margin-bottom: 1rem; text-transform: uppercase;
}
.feature-inner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem,4vw,3rem); font-weight: 900; line-height: 1.05;
  margin-bottom: 1rem; letter-spacing: 0.01em;
}
.feature-inner h2 span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.feature-inner p { color: var(--text-muted); line-height: 1.75; margin-bottom: 1.5rem; }
.feature-specs {
  margin: 0 0 1.75rem;
  padding: 1.1rem 1.2rem;
  background: rgba(124,255,0,0.04);
  border: 1px solid rgba(124,255,0,0.14);
  border-radius: 16px;
}
.feature-specs h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.feature-specs-grid {
  display: grid;
  grid-template-columns: minmax(120px, 160px) 1fr;
  gap: 0.6rem 1rem;
}
.spec-label {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
}
.spec-value {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.55;
}
.feature-img {
  aspect-ratio: 4/5;
  background: var(--dark-3);
  border: 1px solid rgba(124,255,0,0.18);
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(124,255,0,0.06);
  overflow: hidden;
}
.feature-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) {
  .feature-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-inner.reverse { direction: ltr; }
  .feature-specs-grid { grid-template-columns: 1fr; gap: 0.2rem; }
  .spec-label { margin-top: 0.5rem; }
  .feature-specs-grid .spec-label:first-child { margin-top: 0; }
}

/* ── FLAVORS ── */
.flavors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 900px) { .flavors-grid { grid-template-columns: repeat(2, 1fr); } }
.flavor-card {
  background: var(--dark-2); border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; text-decoration: none; color: var(--text);
  transition: transform .2s, border-color .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.flavor-card:hover { transform: translateY(-4px); border-color: rgba(124,255,0,0.4); box-shadow: 0 8px 28px rgba(124,255,0,0.1); }
.flavor-img {
  aspect-ratio: 1;
  background: var(--dark-3);
  border-bottom: 1px solid rgba(124,255,0,0.1);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.4rem;
  overflow: hidden;
}
.flavor-img img { width: 100%; height: 100%; object-fit: cover; }
.flavor-name { padding: 0.85rem 1rem; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 1rem; text-align: center; }

/* ── PRODUCT DESCRIPTIONS ── */
.desc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
@media (max-width: 700px) { .desc-grid { grid-template-columns: 1fr; } }
.desc-card {
  background: var(--dark-2); border: 1px solid var(--border); border-radius: 14px;
  padding: 1.5rem; transition: border-color .2s, box-shadow .2s;
}
.desc-card:hover { border-color: rgba(124,255,0,0.32); box-shadow: 0 4px 20px rgba(124,255,0,0.06); }
.desc-card h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--primary); margin-bottom: 0.6rem; letter-spacing: 0.02em; }
.desc-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ── FOOTER ── */
footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2rem;
}
.footer-inner { max-width: 1300px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 0; align-items: start; }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 500px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand { align-self: start; margin-top: -1.5rem; }
.footer-brand .logo-row { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.footer-brand .logo-box { width: 34px; height: 34px; border-radius: 7px; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1rem; color: #080d08; }
.footer-brand .brand-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.2rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; max-width: 240px; margin-bottom: 1rem; }
.footer-brand .contact { font-size: 0.83rem; color: var(--text-muted); line-height: 1.8; }
.footer-brand .contact a { color: var(--primary); text-decoration: none; }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; color: var(--text); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { text-decoration: none; color: var(--text-muted); font-size: 0.83rem; transition: color .15s; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }

/* ── IMG PLACEHOLDER UTILITY ── */
.img-placeholder {
  background: var(--dark-3);
  border: 2px dashed rgba(124,255,0,0.18);
  border-radius: 12px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 1.5rem;
}
.img-placeholder .img-icon { font-size: 2.2rem; opacity: 0.25; }
.img-placeholder .img-label { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.06em; text-align: center; }

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ── SCROLL ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ── CITIES ACCORDION ── */
.footer-cities-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 2.5rem 0;
}
.cities-accordion { width: 100%; }
.cities-toggle {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 1.1rem 0;
  color: var(--text);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase;
}
.cities-toggle:hover { color: var(--primary); }
.cities-arrow {
  color: var(--text-muted);
  transition: transform .35s cubic-bezier(.4,0,.2,1), color .2s;
  flex-shrink: 0;
}
.cities-toggle[aria-expanded="true"] .cities-arrow {
  transform: rotate(180deg);
  color: var(--primary);
}
.cities-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height .45s cubic-bezier(.4,0,.2,1), opacity .35s ease;
  opacity: 0;
}
.cities-body.open { opacity: 1; }
.footer-cities { list-style: none; column-count: 2; column-gap: 0.75rem; padding-bottom: 0.5rem; }
.footer-cities li { break-inside: avoid; }
.footer-cities li a {
  text-decoration: none; color: var(--text-muted); font-size: 0.78rem;
  line-height: 2; display: block; transition: color .15s;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.footer-cities li a:hover { color: var(--primary); }
