/* =========================================================
   SMOKE VAPE & LOTTO — stylesheet
   Direction: a real, confident 24/7 convenience-store brand
   (think Wawa / QuikTrip / Royal Farms) rather than a boutique
   cigar brand or neon bodega gimmick — clean rounded cards, one
   strong brand color, friendly bold type, fast/functional layout.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap');

:root{
  /* neutrals */
  --ink:#1A1D23;
  --ink-soft:#33363E;
  --gray-50:#F7F7F9;
  --gray-100:#EFEFF3;
  --gray-200:#E2E2E9;
  --gray-500:#6B6E76;
  --white:#FFFFFF;

  /* brand */
  --accent:#E11B22;
  --accent-dark:#B5121A;
  --accent-soft:#FBE0DF;
  --brand-yellow:#FFC738;
  --brand-green:#1F9D55;

  --font-display:'DM Sans', -apple-system, sans-serif;
  --font-body:'DM Sans', -apple-system, sans-serif;
  --font-mono:'Space Mono', monospace;

  --radius:14px;
  --radius-sm:8px;
  --radius-pill:999px;
  --container:1180px;

  /* legacy aliases so class names used across pages still resolve */
  --charcoal:var(--ink);
  --charcoal-soft:var(--ink-soft);
  --parchment:var(--gray-50);
  --parchment-dim:var(--gray-100);
  --ash:var(--gray-500);
  --ash-light:#9A9DA6;
  --gold:var(--brand-yellow);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--white);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,h4{ font-family:var(--font-display); font-weight:800; margin:0 0 .5em; letter-spacing:-.02em; line-height:1.1; }
p{ margin:0 0 1em; }
.container{ max-width:var(--container); margin:0 auto; padding:0 28px; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline:2px solid var(--accent);
  outline-offset:3px;
}
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; transition-duration:0.001ms !important; }
}

/* ---------------- eyebrow / labels ---------------- */
.eyebrow{
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--accent);
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:14px;
  font-weight:700;
}

/* ---------------- top bar ---------------- */
.topbar{
  background:var(--ink);
  color:#C7C9D1;
  font-size:13px;
}
.topbar .container{
  display:flex; justify-content:space-between; align-items:center;
  padding-top:10px; padding-bottom:10px;
  flex-wrap:wrap; gap:6px;
}
.topbar a{ color:var(--white); font-weight:500; }
.topbar a:hover{ color:var(--brand-yellow); }
.topbar-links{ display:flex; gap:22px; }

/* ---------------- nav ---------------- */
.nav{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--gray-200);
}
.nav .container{
  display:flex; align-items:center; justify-content:space-between;
  padding-top:14px; padding-bottom:14px;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand-mark{ width:38px; height:38px; flex-shrink:0; }
.brand-name{
  font-family:var(--font-display); font-size:19px; font-weight:800;
  line-height:1;
}
.brand-name span{ display:block; font-family:var(--font-body); font-size:11px; letter-spacing:.02em; color:var(--gray-500); font-weight:500; margin-top:4px; }

.nav-links{ display:flex; align-items:center; gap:28px; }
.nav-links a{
  font-size:14.5px; font-weight:600; position:relative; padding:6px 0;
}
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:0; width:0; height:3px; border-radius:2px;
  background:var(--accent); transition:width .25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after{ width:100%; }
.nav-links a.active{ color:var(--accent); }

.nav-right{ display:flex; align-items:center; gap:16px; }
.menu-toggle{ display:none; }

.btn{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-body); font-weight:700; font-size:14.5px;
  padding:13px 26px; border-radius:var(--radius-pill);
  border:2px solid transparent; cursor:pointer;
  transition:background-color .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}
.btn:active{ transform:scale(.97); }
.btn-primary{ background:var(--accent); color:var(--white); }
.btn-primary:hover{ background:var(--accent-dark); }
.btn-outline{ background:transparent; color:var(--ink); border-color:var(--ink); }
.btn-outline:hover{ background:var(--ink); color:var(--white); }
.btn-ghost{ color:var(--accent); font-weight:700; }
.btn-ghost:hover{ text-decoration:underline; }

/* ---------------- hero ---------------- */
.hero{
  background:var(--gray-50);
  padding:76px 0 96px;
}
.hero .container{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:56px;
  align-items:center;
}
.hero h1{ font-size:clamp(36px, 4.6vw, 58px); color:var(--ink); }
.hero p.lede{ font-size:18px; max-width:48ch; color:var(--gray-500); }
.hero-ctas{ display:flex; gap:14px; margin-top:28px; flex-wrap:wrap; }

.hero-art{ position:relative; }

.hero-stats{ display:flex; gap:0; margin-top:48px; flex-wrap:wrap; border-radius:var(--radius); overflow:hidden; border:1px solid var(--gray-200); }
.hero-stats div{ flex:1; min-width:110px; background:var(--white); padding:16px 18px; border-right:1px solid var(--gray-200); }
.hero-stats div:last-child{ border-right:0; }
.hero-stats strong{ display:block; font-family:var(--font-display); font-size:22px; color:var(--ink); }
.hero-stats span{ font-size:11.5px; color:var(--gray-500); text-transform:uppercase; letter-spacing:.04em; }

/* ---------------- sections ---------------- */
section{ padding:88px 0; }
.section-tight{ padding:60px 0; }
.section-head{ max-width:640px; margin-bottom:48px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(28px,3.2vw,40px); }
.bg-charcoal{ background:var(--ink); color:#D5D6DB; }
.bg-charcoal h2, .bg-charcoal h3, .bg-charcoal h4{ color:var(--white); }
.bg-parchment{ background:var(--gray-50); }

/* two column */
.split{ display:grid; grid-template-columns:.9fr 1.1fr; gap:60px; align-items:center; }
.split.reverse{ grid-template-columns:1.1fr .9fr; }
.split.reverse .split-media{ order:2; }
.split ul.checklist{ list-style:none; margin:24px 0 0; padding:0; display:grid; gap:14px; }
.split ul.checklist li{ display:flex; gap:12px; align-items:flex-start; }
.split ul.checklist li::before{
  content:"✓"; color:var(--accent); font-weight:800; font-size:14px; margin-top:2px; flex-shrink:0;
}

.split-media{ position:relative; }
.split-media svg, .split-media img{ border-radius:var(--radius); }
.badge-float{
  position:absolute; bottom:-20px; left:-20px;
  background:var(--white); border:1px solid var(--gray-200); border-radius:var(--radius);
  padding:16px 20px; max-width:220px;
  box-shadow:0 16px 34px rgba(26,29,35,.14);
}
.badge-float .eyebrow{ margin-bottom:6px; }
.badge-float p{ margin:0; font-size:13px; color:var(--gray-500); }

/* why cards */
.why-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.why-card{ background:var(--white); border:1px solid var(--gray-200); border-radius:var(--radius); padding:32px 28px; transition:box-shadow .2s ease, transform .2s ease; }
.why-card:hover{ box-shadow:0 14px 30px rgba(26,29,35,.08); transform:translateY(-3px); }
.why-card .icon{ width:26px; height:26px; }
.why-card .icon-wrap{ width:52px; height:52px; border-radius:var(--radius-sm); background:var(--accent-soft); color:var(--accent); display:flex; align-items:center; justify-content:center; margin-bottom:20px; }
.why-card h3{ font-size:18px; }
.why-card p{ color:var(--gray-500); font-size:14.5px; margin:0; }

/* products */
.product-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.product-card{
  border:1px solid var(--gray-200); border-radius:var(--radius); overflow:hidden;
  background:var(--white);
  display:flex; flex-direction:column;
  transition:box-shadow .2s ease, transform .2s ease;
}
.product-card:hover{ transform:translateY(-4px); box-shadow:0 16px 34px rgba(26,29,35,.1); }
.product-card .thumb{ aspect-ratio:3/4; overflow:hidden; background:var(--gray-100); position:relative; }
.product-card .thumb img{ width:100%; height:100%; object-fit:cover; }
.product-card .ribbon{
  position:absolute; top:12px; left:12px;
  font-family:var(--font-mono); font-size:10px; letter-spacing:.06em;
  background:var(--accent); color:var(--white); padding:5px 10px; border-radius:var(--radius-pill);
}
.product-card .body{ padding:20px 20px 24px; flex:1; display:flex; flex-direction:column; }
.product-card h3{ font-size:18px; margin-bottom:4px; }
.product-card .vitola{ font-family:var(--font-mono); font-size:11px; color:var(--gray-500); text-transform:uppercase; letter-spacing:.04em; margin-bottom:12px; }
.product-card p{ font-size:13.5px; color:var(--gray-500); flex:1; }
.product-card .meta{ display:flex; justify-content:space-between; font-size:11px; font-family:var(--font-mono); color:var(--gray-500); border-top:1px solid var(--gray-200); padding-top:12px; margin-top:12px; }

/* category strip on cigars/shop pages */
.cat-strip{ display:flex; gap:12px; margin-bottom:44px; flex-wrap:wrap; }
.cat-pill{
  font-family:var(--font-body); font-weight:600; font-size:13.5px;
  padding:10px 20px; border:1.5px solid var(--gray-200); border-radius:var(--radius-pill);
  cursor:pointer; background:var(--white); transition:all .2s ease;
}
.cat-pill.is-active, .cat-pill:hover{ background:var(--ink); color:var(--white); border-color:var(--ink); }

/* profile bars (strength meter) */
.profile-row{ display:flex; align-items:center; gap:10px; font-family:var(--font-mono); font-size:11px; color:var(--gray-500); margin-top:8px; }
.profile-bar{ flex:1; height:5px; border-radius:3px; background:var(--gray-100); position:relative; overflow:hidden; }
.profile-bar span{ position:absolute; inset:0; background:var(--accent); border-radius:3px; }

/* shop-by-category tiles */
.category-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:18px; }
.category-card{
  text-align:center; padding:32px 16px; border:1px solid var(--gray-200); border-radius:var(--radius);
  background:var(--white);
  transition:transform .2s ease, box-shadow .2s ease;
}
.category-card:hover{ transform:translateY(-4px); box-shadow:0 14px 30px rgba(26,29,35,.1); }
.category-card .icon-circle{
  width:60px; height:60px; border-radius:50%; margin:0 auto 16px;
  background:var(--accent-soft); display:flex; align-items:center; justify-content:center;
}
.category-card .icon-circle svg{ width:26px; height:26px; color:var(--accent); }
.category-card h3{ font-size:15px; margin-bottom:6px; }
.category-card p{ font-size:12.5px; color:var(--gray-500); margin:0; }

/* real-photo placeholder card — swap for actual store photos */
.photo-slot{
  aspect-ratio:4/3;
  border-radius:var(--radius);
  border:1px solid var(--gray-200);
  background:linear-gradient(135deg, var(--gray-50), var(--gray-100));
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:10px; text-align:center; padding:24px;
  color:var(--gray-500);
}
.photo-slot .icon-wrap{
  width:52px; height:52px; border-radius:50%; background:var(--white);
  display:flex; align-items:center; justify-content:center; box-shadow:0 4px 14px rgba(26,29,35,.08);
}
.photo-slot svg{ width:24px; height:24px; color:var(--accent); }
.photo-slot strong{ font-family:var(--font-body); font-size:14.5px; color:var(--ink); font-weight:700; }
.photo-slot span{ font-size:12.5px; max-width:26ch; }

/* also-at-the-shop (vape/lotto) */
.shop-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.shop-card{ padding:30px; border:1px solid var(--gray-200); border-radius:var(--radius); background:var(--white); }
.shop-card h3{ font-size:19px; }
.shop-card .tag{ font-family:var(--font-mono); font-size:11px; color:var(--accent); text-transform:uppercase; letter-spacing:.06em; display:block; margin-bottom:10px; font-weight:700; }

/* quote / cta band */
.cta-band{ background:var(--ink); color:#D5D6DB; padding:76px 0; text-align:center; border-radius:0; }
.cta-band h2{ color:var(--white); max-width:680px; margin-left:auto; margin-right:auto; }
.cta-band p{ color:#B7B9C2; max-width:520px; margin:0 auto 30px; }
.cta-band .hero-ctas{ justify-content:center; }

/* location / contact */
.info-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:36px; }
.info-card{ background:var(--white); border:1px solid var(--gray-200); border-radius:var(--radius); padding:26px; }
.info-card .label{ font-family:var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:.06em; color:var(--gray-500); display:block; margin-bottom:10px; }
.info-card .value{ font-family:var(--font-display); font-size:18px; font-weight:700; }

form.contact-form{ display:grid; gap:18px; max-width:640px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.contact-form label{ display:block; font-size:12.5px; font-weight:700; color:var(--gray-500); margin-bottom:8px; }
.contact-form input, .contact-form textarea, .contact-form select{
  width:100%; padding:13px 14px; border:1.5px solid var(--gray-200);
  font-family:var(--font-body); font-size:14px; background:var(--white); border-radius:var(--radius-sm);
}
.contact-form input:focus, .contact-form textarea:focus{ border-color:var(--accent); }
.map-wrap{ border:1px solid var(--gray-200); border-radius:var(--radius); overflow:hidden; }
.map-wrap iframe{ width:100%; height:100%; min-height:320px; border:0; display:block; }

.notice{
  background:var(--accent-soft); border-left:4px solid var(--accent); border-radius:var(--radius-sm);
  padding:14px 18px; font-size:13.5px; color:var(--ink); margin-bottom:24px;
}

/* legal pages */
.legal{ max-width:760px; }
.legal h2{ font-size:23px; margin-top:2.2em; }
.legal p, .legal li{ color:var(--gray-500); font-size:15px; }

/* breadcrumb / page header */
.page-header{ padding:56px 0 48px; background:var(--gray-50); }
.page-header h1{ font-size:clamp(30px,4vw,46px); }
.breadcrumb{ font-size:13px; color:var(--gray-500); margin-bottom:16px; font-weight:600; }
.breadcrumb a:hover{ color:var(--accent); }

/* footer */
.footer{ background:var(--ink); color:#B7B9C2; padding:64px 0 24px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; margin-bottom:52px; }
.footer h4{ color:var(--white); font-size:13.5px; text-transform:uppercase; letter-spacing:.04em; margin-bottom:18px; font-weight:700; }
.footer p{ font-size:14px; }
.footer ul{ list-style:none; margin:0; padding:0; display:grid; gap:10px; }
.footer ul a{ font-size:14px; }
.footer ul a:hover{ color:var(--brand-yellow); }
.footer-brand .brand{ margin-bottom:16px; }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12); padding-top:22px;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
  font-size:12.5px;
}
.footer-bottom ul{ display:flex; gap:22px; }

/* age gate */
.age-gate{
  position:fixed; inset:0; z-index:200;
  background:rgba(26,29,35,.85);
  display:flex; align-items:center; justify-content:center;
  padding:24px;
}
.age-gate[hidden]{ display:none; }
.age-gate-box{ background:var(--white); max-width:440px; width:100%; padding:44px 38px; text-align:center; border-radius:var(--radius); }
.age-gate-box h2{ font-size:23px; }
.age-gate-box p{ color:var(--gray-500); font-size:14px; }
.age-gate-actions{ display:flex; gap:14px; margin-top:26px; justify-content:center; }

/* mobile */
@media (max-width: 900px){
  .hero .container{ grid-template-columns:1fr; }
  .hero-art{ order:-1; }
  .split, .split.reverse{ grid-template-columns:1fr; }
  .split.reverse .split-media{ order:0; }
  .why-grid, .product-grid, .shop-grid, .info-grid{ grid-template-columns:1fr 1fr; }
  .category-grid{ grid-template-columns:repeat(3,1fr); }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .form-row{ grid-template-columns:1fr; }
}
@media (max-width: 640px){
  .nav-links{
    position:fixed; top:69px; left:0; right:0; bottom:0;
    background:var(--white); flex-direction:column; align-items:flex-start;
    padding:30px 28px; gap:22px; transform:translateX(100%);
    transition:transform .35s ease; overflow-y:auto;
  }
  .nav-links.is-open{ transform:translateX(0); }
  .menu-toggle{
    display:block; background:none; border:0; font-size:13px; font-weight:700; cursor:pointer;
    font-family:var(--font-body);
  }
  .why-grid, .product-grid, .shop-grid, .info-grid, .footer-grid, .category-grid{ grid-template-columns:1fr; }
  .topbar-links{ display:none; }
  section{ padding:56px 0; }
  .hero{ padding:56px 0 64px; }
  .hero-stats{ flex-direction:column; }
  .hero-stats div{ border-right:0; border-bottom:1px solid var(--gray-200); }
  .hero-stats div:last-child{ border-bottom:0; }
}
