/* ==========================================================================
   COMPONENTS — "Neon Counter"
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. HEADER + NAV
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}

.site-header.scrolled {
  background: rgba(10, 10, 11, .82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--line-soft);
}

.header-inner {
  width: 100%;
  max-width: var(--wrap-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: var(--s6);
}

/* --- Wordmark (type-set, no logo file needed) --- */
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: .01em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}
.brand .hash {
  color: var(--acid);
  transform: skewX(-8deg);
  display: inline-block;
  margin-right: 1px;
}
.brand .no { color: var(--faint); font-size: .62em; margin-left: 4px; letter-spacing: 0; }

.brand-lg { font-size: clamp(30px, 6vw, 44px); }

.nav {
  display: flex;
  align-items: center;
  gap: var(--s6);
  margin-left: auto;
  font-size: 14px;
  font-weight: 500;
}
.nav a {
  color: var(--muted);
  position: relative;
  padding-block: 6px;
  transition: color .2s var(--ease);
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav a:hover { color: var(--text); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--text); }

.header-cta { margin-left: var(--s5); }

/* `.nav a` (0,1,1) outranks `.btn-primary` (0,1,0), which was repainting the
   header Call button's label in muted grey on lime at 2.2:1. Re-assert the
   button colors at higher specificity and drop the nav underline. */
.nav a.btn::after { display: none; }
.nav a.btn-primary,
.nav a.btn-primary:hover { color: var(--ink); }
.nav a.btn-ghost { color: var(--text); }
.nav a.btn-ghost:hover { color: var(--acid); }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
}
.nav-toggle span {
  display: block; width: 18px; height: 1.5px; background: currentColor;
  position: relative; transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 18px; height: 1.5px;
  background: currentColor; transition: transform .3s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: var(--s4) var(--gutter) var(--s7);
    background: rgba(10, 10, 11, .97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    font-size: var(--step-1);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  }
  body.nav-open .nav { opacity: 1; transform: none; visibility: visible; }
  .nav a { padding-block: var(--s4); border-bottom: 1px solid var(--line-soft); color: var(--text); }
  .nav a::after { display: none; }
  .nav .btn { margin-top: var(--s4); }
}

/* --------------------------------------------------------------------------
   2. BUTTONS
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  min-height: 48px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: transform .18s var(--ease), background .2s var(--ease),
              box-shadow .25s var(--ease), border-color .2s var(--ease), color .2s;
}
.btn svg { flex-shrink: 0; }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--acid);
  color: var(--ink);
}
.btn-primary:hover {
  background: #E2FF6B;
  transform: translateY(-1px);
  box-shadow: var(--shadow-2);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--acid);
  color: var(--acid);
  transform: translateY(-1px);
}

.btn-sm { min-height: 44px; padding: 11px 18px; font-size: 12px; }
.btn-lg { min-height: 56px; padding: 17px 32px; font-size: 15px; }
.btn-block { width: 100%; }

/* --------------------------------------------------------------------------
   3. LIVE STATUS — reads like a neon sign in the window
   -------------------------------------------------------------------------- */

.status {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 7px 14px 7px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: var(--panel);
  font-size: 13px;
  font-weight: 550;
  letter-spacing: .01em;
  color: var(--muted);
  white-space: nowrap;
}
.status::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--faint);
  flex-shrink: 0;
}
.status.is-open {
  color: var(--text);
  border-color: rgba(74, 222, 128, .28);
  background: rgba(74, 222, 128, .07);
}
/* A flat dot with a thin containing ring. The old version pulsed a colored
   halo forever, which is a decorative loop, not a status signal. */
.status.is-open::before {
  background: var(--ok);
  box-shadow: 0 0 0 3px rgba(74, 222, 128, .16);
}
.status.is-closed {
  border-color: rgba(248, 113, 113, .25);
  background: rgba(248, 113, 113, .06);
}
.status.is-closed::before { background: var(--closed); }
.status.is-closing { border-color: rgba(255, 107, 44, .35); }

/* --------------------------------------------------------------------------
   4. RATING
   -------------------------------------------------------------------------- */

.rating { display: inline-flex; align-items: center; gap: var(--s3); flex-wrap: wrap; }
.stars { display: inline-flex; gap: 2px; color: var(--acid); }
.stars svg { width: 15px; height: 15px; }
.rating-text { font-size: 14px; color: var(--muted); }
.rating-text b { color: var(--text); font-weight: 650; }

/* --------------------------------------------------------------------------
   5. HERO
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  padding-block: clamp(48px, 8vw, 92px) clamp(56px, 8vw, 104px);
  overflow: hidden;
  isolation: isolate;
}
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
/* One wash, not two. A second colored bloom in the opposite corner reads as
   wallpaper; a single off-axis light source reads as a room. */
.hero::before {
  width: 62vw; height: 62vw; max-width: 760px; max-height: 760px;
  top: -30%; right: -16%;
  background: radial-gradient(circle, rgba(212,255,63,.085), transparent 66%);
}
.hero::after { display: none; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hero-title {
  font-size: var(--step-6);
  margin-block: var(--s5) var(--s5);
}
.hero-title .line { display: block; }
.hero-title .accent { color: var(--acid); }

.hero-lede {
  font-size: var(--step-1);
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: var(--s6);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: var(--s4);
  flex-wrap: wrap;
  margin-bottom: var(--s6);
}

.hero-actions { display: flex; gap: var(--s3); flex-wrap: wrap; }

.hero-note {
  margin-top: var(--s5);
  font-size: 13px;
  color: var(--faint);
  display: flex; align-items: center; gap: var(--s2);
}

.hero-media { position: relative; }
.hero-media .ph { aspect-ratio: 5 / 6; border-radius: var(--radius); }

/* Floating store-status card over the hero image */
.hero-badge {
  position: absolute;
  left: -18px; bottom: 22px;
  background: rgba(18, 18, 20, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  /* A defined edge OR a soft elevation, not both. This card overlaps the
     image, so the border is what separates it; the shadow was redundant. */
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: var(--s4) var(--s5);
  max-width: 260px;
}
.hero-badge .label { margin-bottom: var(--s2); }
.hero-badge strong { display: block; font-size: 15px; font-weight: 650; margin-bottom: 6px; }
.hero-badge .addr { font-size: 13px; color: var(--muted); line-height: 1.45; }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media .ph { aspect-ratio: 16 / 10; }
  /* Stop floating the badge over the image; stack it underneath so the
     photo stays readable and nothing overlaps. */
  .hero-badge {
    position: static;
    max-width: none;
    margin-top: var(--s3);
    box-shadow: none;
    background: var(--panel);
  }
}

/* Compact hero for interior pages */
.hero-compact { padding-block: clamp(40px, 6vw, 72px) clamp(28px, 4vw, 44px); }
.hero-compact .hero-title { font-size: var(--step-4); margin-block: var(--s4) var(--s4); }

/* Index hero: deliberately short. On the catalog page the content IS the
   product grid, so the masthead must not eat the first screen. */
.hero-index { padding-block: var(--s6) var(--s5); }
.hero-index .hero-title {
  font-size: var(--step-3);
  margin-block: var(--s3) var(--s3);
  max-width: 20ch;
}
.hero-index .hero-lede {
  font-size: var(--step-0);
  max-width: 62ch;
  margin-bottom: var(--s4);
}
.hero-index .hero-meta { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   6. HASHTAG RAIL
   A scrolling rail of what the shop carries, with the wordmark's own hash
   between every item. This is a brand device, not decoration: the "#" is the
   name. It keeps moving because a smoke shop sign moves.
   -------------------------------------------------------------------------- */

.rail {
  overflow: hidden;
  border-block: 1px solid var(--line-soft);
  background: var(--ink-deep);
  padding-block: 16px;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.rail-track {
  display: flex;
  align-items: center;
  gap: var(--s6);
  width: max-content;
  animation: rail-slide 52s linear infinite;
}
.rail:hover .rail-track,
.rail:focus-within .rail-track { animation-play-state: paused; }

.rail-track span {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: .035em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.rail-track span.sep {
  color: var(--acid);
  font-size: 16px;
  transform: skewX(-8deg);
  display: inline-block;
}

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

/* The global reduced-motion rule would freeze the loop mid-slide, cropping
   half the list. Collapse to a centered wrapping list instead, so the same
   words stay readable without any movement. */
@media (prefers-reduced-motion: reduce) {
  .rail { overflow: visible; mask-image: none; -webkit-mask-image: none; padding-block: var(--s5); }
  .rail-track {
    animation: none !important;
    transform: none !important;
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--s3) var(--s4);
  }
}

/* --------------------------------------------------------------------------
   7. TRUST STRIP
   -------------------------------------------------------------------------- */

.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.trust-item { background: var(--ink); padding: var(--s6) var(--s5); text-align: center; }
.trust-num {
  font-family: var(--font-display);
  font-size: var(--step-3);
  line-height: 1;
  color: var(--text);
  margin-bottom: 8px;
}
.trust-item:nth-child(1) .trust-num { color: var(--acid); }
.trust-star { display: inline-block; width: .52em; height: .52em; margin-left: .1em; vertical-align: baseline; }
.trust-label { font-size: 12px; color: var(--faint); letter-spacing: .1em; text-transform: uppercase; }

@media (max-width: 700px) {
  .trust { grid-template-columns: repeat(2, 1fr); }
}

/* --------------------------------------------------------------------------
   8. PLACEHOLDER SYSTEM
   Drop a real photo into assets/img/ with the filename shown and replace
   the <span> with <img>. No other change needed.
   -------------------------------------------------------------------------- */

.ph {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg, transparent 0 11px, rgba(255,255,255,.022) 11px 12px),
    linear-gradient(180deg, var(--panel-2), var(--panel));
}
.ph::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(130% 95% at 50% -10%, var(--ph-hue, var(--acid)) 0%, transparent 62%);
  opacity: .12;
  pointer-events: none;
}
.ph::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.5));
  pointer-events: none;
}
.ph-glyph {
  display: grid;
  place-items: center;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(38px, 7vw, 64px);
  line-height: 1;
  color: var(--ph-hue, var(--acid));
  opacity: .34;
}
.ph-glyph svg { width: clamp(30px, 5.2vw, 48px); height: auto; }
.ph-name {
  position: absolute;
  left: 12px; bottom: 10px; right: 12px;
  z-index: 2;
  font-size: 10.5px;
  letter-spacing: .05em;
  color: var(--faint);
  font-variant-numeric: tabular-nums;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* Brand names on a category tile. Plain text, never logos.
   Sits below the blurb rather than inside the artwork: a saturated hue faded
   with opacity failed contrast on four of the eight categories, and anything
   drawn inside .ph disappears the moment a real photo covers it. Out here it
   is legible, it survives the photo, and search engines keep reading it. */
.cat-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 6px;
  margin-top: 8px;
  padding: 0;
  list-style: none;
}
.cat-brands li {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--faint);
  white-space: nowrap;
}
.cat-brands li:not(:last-child)::after {
  content: '·';
  margin-left: 6px;
  color: var(--line);
}
.cat-tile:hover .cat-brands li { color: var(--muted); }
/* The brand a category leads with. Visual prominence only: it says "we have
   this", not "this outsells everything", which would be a published claim
   about volume. Keep it to one name per category. */
.cat-brands li.lead,
.cat-tile:hover .cat-brands li.lead { color: var(--acid); font-weight: 650; }
.ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 3; }

/* --------------------------------------------------------------------------
   9. CATEGORY GRID
   -------------------------------------------------------------------------- */

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
}
.cat-tile { display: block; transition: transform .3s var(--ease); }
.cat-tile .ph { transition: border-color .3s var(--ease), box-shadow .3s var(--ease); }
.cat-tile:hover { transform: translateY(-2px); }
.cat-tile:hover .ph {
  border-color: color-mix(in srgb, var(--ph-hue) 40%, var(--line));
  box-shadow: var(--shadow-2);
}
.cat-tile:hover .ph::before { opacity: .16; }

.cat-body { padding-top: var(--s3); display: flex; align-items: baseline; gap: var(--s2); }
.cat-name { font-size: 15px; font-weight: 650; letter-spacing: -.01em; }
.cat-arrow {
  margin-left: auto; color: var(--faint); font-size: 15px;
  transition: transform .3s var(--ease), color .3s var(--ease);
}
.cat-tile:hover .cat-arrow { color: var(--acid); transform: translateX(3px); }
.cat-blurb { font-size: 13px; color: var(--faint); padding-top: 4px; line-height: 1.45; }

@media (max-width: 1000px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .cat-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s3); } }

/* --------------------------------------------------------------------------
   10. PRODUCT CARDS
   -------------------------------------------------------------------------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
}
@media (max-width: 1080px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .card-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s3); } }
@media (max-width: 420px)  { .card-grid { grid-template-columns: 1fr; } }

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .28s var(--ease), border-color .28s var(--ease),
              box-shadow .28s var(--ease);
}
.product-card:hover {
  transform: translateY(-3px);
  border-color: var(--line);
  box-shadow: var(--shadow-2);
}
.product-card .ph { border: 0; border-radius: 0; border-bottom: 1px solid var(--line-soft); }

.product-body { padding: var(--s4) var(--s4) var(--s3); flex: 1; }
.product-body h3 { font-size: 16px; margin-block: var(--s2) 6px; }
.product-body p { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin: 0; }
.product-body .price { color: var(--acid); font-weight: 650; margin-top: var(--s2); }

/* No opacity here. Fading a colored label toward the panel pushed it under
   the 4.5:1 contrast floor; the -text hue variants carry the same identity
   at a legible weight. */
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--tag-hue, var(--acid));
}

.product-call {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s2);
  padding: 13px var(--s4);
  min-height: 46px;
  border-top: 1px solid var(--line-soft);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--muted);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.product-call:hover { background: var(--acid); color: var(--ink); }

/* --------------------------------------------------------------------------
   11. FILTER CHIPS + SEARCH
   -------------------------------------------------------------------------- */

.filter-bar {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  padding-block: var(--s4);
  background: rgba(10,10,11,.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: var(--s7);
}

.search {
  position: relative;
  max-width: 380px;
  margin-bottom: var(--s4);
}
.search input {
  width: 100%;
  min-height: 46px;
  padding: 11px 16px 11px 42px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 15px;
  transition: border-color .2s var(--ease), background .2s;
}
.search input::placeholder { color: var(--faint); }
.search input:focus { outline: none; border-color: var(--acid); background: var(--panel-2); }
.search svg {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; color: var(--faint); pointer-events: none;
}

/* Wraps rather than scrolls. A horizontal scroller hid six of the nine
   categories on a phone with almost no affordance that more existed;
   these are the page's primary navigation and must all be visible. */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
}

.chip {
  flex-shrink: 0;
  min-height: 40px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 550;
  white-space: nowrap;
  transition: all .2s var(--ease);
}
.chip:hover { color: var(--text); border-color: var(--faint); }
.chip[aria-pressed="true"] {
  background: var(--acid);
  border-color: var(--acid);
  color: var(--ink);
  font-weight: 650;
}

.results-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: var(--s4); margin-bottom: var(--s5); flex-wrap: wrap;
}
.results-head h2 { font-size: var(--step-2); }
#count { font-size: 13px; color: var(--faint); font-variant-numeric: tabular-nums; }

.empty {
  text-align: center;
  padding: var(--s10) var(--s5);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}
.empty h3 { font-size: var(--step-2); font-family: var(--font-display);
  text-transform: uppercase; margin-bottom: var(--s3); }
.empty p { color: var(--muted); max-width: 44ch; margin-inline: auto; margin-bottom: var(--s5); }

/* --------------------------------------------------------------------------
   12. REVIEWS
   -------------------------------------------------------------------------- */

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s4); }
@media (max-width: 900px) { .reviews { grid-template-columns: 1fr; } }

.review {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: var(--s6) var(--s5) var(--s5);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}
.review::before {
  content: '“';
  position: absolute;
  top: -2px; left: 18px;
  font-family: var(--font-display);
  font-size: 68px;
  line-height: 1;
  color: var(--acid);
  opacity: .16;
}
.review blockquote { margin: 0; font-size: 14.5px; line-height: 1.65; color: var(--text); }
.review-foot { margin-top: auto; display: flex; align-items: center; gap: var(--s3); }
.review-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--panel-3); border: 1px solid var(--line);
  font-size: 13px; font-weight: 650; color: var(--muted); flex-shrink: 0;
}
.review-name { font-size: 13.5px; font-weight: 600; }
.review-when { font-size: 12px; color: var(--faint); }

/* --------------------------------------------------------------------------
   13. LOCATION CARDS
   -------------------------------------------------------------------------- */

.loc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s5); }
@media (max-width: 860px) { .loc-grid { grid-template-columns: 1fr; } }

.loc-card {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.loc-card:hover { border-color: var(--line); transform: translateY(-2px); }
.loc-card .ph { border: 0; border-radius: 0; aspect-ratio: 16 / 9; }

.loc-body { padding: var(--s5); display: flex; flex-direction: column; gap: var(--s4); flex: 1; }
.loc-head { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--s3); }
.loc-name { font-family: var(--font-display); font-size: var(--step-2);
  text-transform: uppercase; line-height: .95; }
.loc-num { color: var(--acid); }

.loc-detail { display: flex; flex-direction: column; gap: var(--s3); font-size: 14px; }
.loc-line { display: flex; gap: var(--s3); align-items: flex-start; color: var(--muted); }
.loc-line svg { width: 15px; height: 15px; margin-top: 4px; flex-shrink: 0; color: var(--faint); }
.loc-line a { color: var(--text); }
.loc-line a:hover { color: var(--acid); }
.loc-line b { color: var(--text); font-weight: 600; }

.loc-actions { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s2); margin-top: auto; }

/* --------------------------------------------------------------------------
   14. HOURS TABLE
   -------------------------------------------------------------------------- */

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
  font-size: 14.5px;
}
.hours-table th { text-align: left; font-weight: 600; }
.hours-table tr { border-bottom: 1px solid var(--line-soft); }
.hours-table tr:last-child { border-bottom: 0; }
.hours-table td, .hours-table th { padding: 13px var(--s4); color: var(--muted); }
.hours-table td:last-child { text-align: right; color: var(--text); }
.hours-table tr.is-today {
  background: var(--acid-haze);
  box-shadow: inset 2px 0 0 var(--acid);
}
.hours-table tr.is-today td, .hours-table tr.is-today th { color: var(--text); font-weight: 650; }
.hours-table tr.is-today th::after {
  content: 'Today';
  margin-left: var(--s2);
  font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--acid);
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.panel-head {
  padding: var(--s4) var(--s5);
  border-bottom: 1px solid var(--line-soft);
  display: flex; align-items: center; justify-content: space-between; gap: var(--s3);
  flex-wrap: wrap;
}
.panel-body { padding: var(--s5); }
.panel-body-flush { padding: var(--s2) 0; }

/* --------------------------------------------------------------------------
   15. SPLIT LAYOUT (location pages)
   -------------------------------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

.split-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5); }
@media (max-width: 860px) { .split-3 { grid-template-columns: 1fr; } }

/* Category list on location pages */
.here-list { display: grid; gap: 1px; background: var(--line-soft);
  border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; }
.here-item {
  background: var(--panel);
  padding: var(--s4) var(--s5);
  display: flex; gap: var(--s4); align-items: flex-start;
  transition: background .2s var(--ease);
}
.here-item:hover { background: var(--panel-2); }
.here-glyph {
  display: grid; place-items: center;
  width: 24px; height: 24px;
  margin-top: 1px;
  flex-shrink: 0;
  color: var(--here-hue, var(--acid));
}
.here-glyph svg { width: 21px; height: 21px; }
.here-name { font-size: 15px; font-weight: 650; margin-bottom: 2px; }
.here-blurb { font-size: 13px; color: var(--faint); line-height: 1.5; }
.here-arrow { margin-left: auto; color: var(--faint); align-self: center; transition: transform .2s var(--ease), color .2s; }
.here-item:hover .here-arrow { color: var(--acid); transform: translateX(3px); }

/* --------------------------------------------------------------------------
   16. FAQ
   -------------------------------------------------------------------------- */

.faq { border-top: 1px solid var(--line-soft); }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s4);
  padding: var(--s5) 0;
  cursor: pointer;
  list-style: none;
  font-size: var(--step-1);
  font-weight: 600;
  letter-spacing: -.01em;
  transition: color .2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--acid); }
.faq-item summary::after {
  content: '';
  width: 11px; height: 11px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(-135deg) translateY(-2px); }
.faq-item[open] summary { color: var(--acid); }
.faq-answer { padding-bottom: var(--s5); color: var(--muted); max-width: 68ch; }
.faq-answer a { color: var(--acid); text-decoration: underline; text-underline-offset: 3px; }

/* --------------------------------------------------------------------------
   17. COMPLIANCE
   -------------------------------------------------------------------------- */

/* No colored side-tab. A 3px lime border on one edge of a callout is the
   single most recognizable generated-UI tell; the badge carries the weight. */
.compliance {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel);
  padding: var(--s6);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s5);
  align-items: start;
}
.compliance-badge {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  color: var(--ink);
  background: var(--acid);
  border-radius: 50%;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
/* FDA 21 CFR 1143.3 requires this statement on advertising for covered
   tobacco products, and FDA counts a web page as advertising with a visual
   component. Kept boxed and high-contrast so it reads as a warning, not copy.
   Have counsel confirm the exact placement and format before launch. */
.nicotine-warning {
  border: 2px solid var(--text);
  border-radius: 4px;
  padding: 10px 14px;
  margin-bottom: var(--s5);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text);
  max-width: 62ch;
}
.nicotine-warning strong { font-weight: 700; letter-spacing: .04em; }

/* Page-top warning for pages that advertise a tobacco product. FDA requires
   the warning in the upper portion of a web ad at a large share of its area,
   so this one is sized to be seen first, not found last. Black on white
   because the rule wants it legible and conspicuous, not on-brand. */
.nicotine-banner {
  background: var(--text);
  color: var(--ink);
  text-align: center;
  font-weight: 700;
  font-size: clamp(1.125rem, 0.9rem + 1.2vw, 1.75rem);
  line-height: 1.3;
  padding: clamp(20px, 3.5vw, 40px) var(--s5);
  margin: 0;
}

.compliance h3 { font-size: var(--step-1); margin-bottom: var(--s3); }
.compliance p { font-size: 14px; color: var(--muted); max-width: 66ch; }
.compliance p:last-child { margin-bottom: 0; }
.compliance strong { color: var(--text); }

@media (max-width: 620px) {
  .compliance { grid-template-columns: 1fr; padding: var(--s5); }
}

/* --------------------------------------------------------------------------
   18. CROSS-LINK CARD
   -------------------------------------------------------------------------- */

.crosslink {
  display: flex; align-items: center; gap: var(--s5);
  padding: var(--s5) var(--s6);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--panel);
  transition: border-color .3s var(--ease), background .3s var(--ease);
  flex-wrap: wrap;
}
.crosslink:hover { border-color: var(--acid); background: var(--panel-2); }
.crosslink-text { flex: 1; min-width: 220px; }
.crosslink-text h3 { font-size: var(--step-1); margin-bottom: 4px; }
.crosslink-text p { font-size: 14px; color: var(--muted); margin: 0; }

/* --------------------------------------------------------------------------
   19. FOOTER
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--ink-deep);
  border-top: 1px solid var(--line-soft);
  padding-block: var(--s10) var(--s6);
  margin-top: var(--s10);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s7);
  padding-bottom: var(--s8);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s6); } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* h3, not h4: the last heading before the footer is an h2, and jumping
   straight to h4 broke the document outline for screen readers. */
.footer-col h3 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: var(--s4);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--s3); font-size: 14px; }
.footer-col a { color: var(--muted); transition: color .2s; }
.footer-col a:hover { color: var(--acid); }
.footer-about { font-size: 14px; color: var(--muted); max-width: 34ch; margin-top: var(--s4); }

.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding-top: var(--s5);
  display: flex; justify-content: space-between; gap: var(--s4);
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--faint);
}
.footer-legal { max-width: 62ch; line-height: 1.6; }

.social { display: flex; gap: var(--s2); margin-top: var(--s4); }
.social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  color: var(--muted);
  transition: all .2s var(--ease);
}
.social a:hover { border-color: var(--acid); color: var(--acid); }

/* --------------------------------------------------------------------------
   20. STICKY MOBILE ACTION BAR — the single highest-value element
   -------------------------------------------------------------------------- */

.action-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -14px 34px -18px rgba(0,0,0,.95);
}
.action-bar a {
  min-height: var(--bar-h);
  display: flex; align-items: center; justify-content: center; gap: var(--s2);
  font-size: 13.5px; font-weight: 650; letter-spacing: .06em; text-transform: uppercase;
  background: rgba(18,18,20,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text);
}
.action-bar a.primary { background: var(--acid); color: var(--ink); }
.action-bar a:active { filter: brightness(.9); }
.action-bar svg { width: 16px; height: 16px; }

@media (min-width: 861px) { .action-bar { display: none; } }
@media (max-width: 860px) {
  /* +1px accounts for the bar's top border, so the footer never hides under it. */
  body { padding-bottom: calc(var(--bar-h) + 1px + env(safe-area-inset-bottom)); }
}

/* --------------------------------------------------------------------------
   21. AGE GATE
   -------------------------------------------------------------------------- */

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: var(--gutter);
  background: rgba(6, 6, 7, .96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: opacity .4s var(--ease);
}
.age-gate.is-leaving { opacity: 0; pointer-events: none; }

.age-gate-panel {
  width: 100%;
  max-width: 460px;
  text-align: center;
  background: var(--panel);
  /* Floating on a dimmed backdrop, so elevation separates it; no border. */
  border: 0;
  border-radius: var(--radius);
  padding: clamp(32px, 6vw, 52px) clamp(24px, 5vw, 44px);
  box-shadow: var(--shadow-3);
  position: relative;
  overflow: hidden;
}
.age-gate-panel::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 70% at 50% -10%, rgba(212,255,63,.14), transparent 62%);
}
.age-gate-panel > * { position: relative; }
.age-gate .brand { display: flex; justify-content: center; margin-bottom: var(--s5); }
.age-gate-title {
  font-family: var(--font-display);
  font-size: var(--step-3);
  text-transform: uppercase;
  line-height: .95;
  margin-block: var(--s3) var(--s4);
}
.age-gate-copy { font-size: 14px; color: var(--muted); margin-bottom: var(--s6); }
.age-gate-actions { display: grid; gap: var(--s3); }
.age-gate-fine { margin-top: var(--s5); font-size: 12.5px; color: var(--faint); line-height: 1.55; }

/* --------------------------------------------------------------------------
   22. MAP EMBED
   -------------------------------------------------------------------------- */

.map-frame {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  aspect-ratio: 16 / 10;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(.92) hue-rotate(180deg) contrast(.9); }

/* --------------------------------------------------------------------------
   23. NOSCRIPT FALLBACK
   -------------------------------------------------------------------------- */

.noscript-list {
  columns: 2;
  column-gap: var(--s7);
  font-size: 14px;
  color: var(--muted);
}
.noscript-list li { break-inside: avoid; padding-block: 4px; }

/* --------------------------------------------------------------------------
   FAQ PAGE
   Topic heading on the left, questions on the right, stacked on phones.
   The filter bar only sticks on wide screens: on a phone twelve wrapped
   topic chips would cover half the screen.
   -------------------------------------------------------------------------- */

.faq-bar .search { margin-bottom: var(--s3); }
.faq-count { margin: var(--s3) 0 0; font-size: 13px; color: var(--faint); font-variant-numeric: tabular-nums; }
@media (max-width: 900px) {
  .faq-bar { position: static; backdrop-filter: none; -webkit-backdrop-filter: none; }
}

.faq-page { padding-bottom: var(--s6); }
.faq-group { padding-block: var(--s7); border-top: 1px solid var(--line-soft); scroll-margin-top: calc(var(--header-h) + 190px); }
.faq-group:first-child { border-top: 0; padding-top: var(--s3); }
@media (max-width: 900px) { .faq-group { scroll-margin-top: calc(var(--header-h) + 16px); } }

.faq-group-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}
@media (max-width: 900px) { .faq-group-grid { grid-template-columns: 1fr; gap: var(--s4); } }

.faq-group-head { display: flex; flex-direction: column; gap: var(--s3); }
@media (min-width: 901px) { .faq-group-head { position: sticky; top: calc(var(--header-h) + 190px); } }
.faq-group-head h2 { font-size: var(--step-2); margin: 0; }
.faq-group-head p { color: var(--muted); margin: 0; max-width: 40ch; }
.faq-group-count { font-size: 13px; color: var(--faint); font-variant-numeric: tabular-nums; }
.faq-group-link {
  align-self: flex-start;
  color: var(--acid);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.faq-group .faq-item summary { font-size: var(--step-0); }

.faq-cta { border-top: 1px solid var(--line-soft); }
