/* ============================================================
   FIRESTRAIN REVIEW — Design System v2
   Dark, glassmorphic, editorial premium aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,900;1,600;1,700&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&family=DM+Mono:wght@400;500&display=swap');

/* ── TOKENS ── */
:root {
  --bg:           #0a0d0b;
  --bg-2:         #0f1410;
  --bg-3:         #131a14;
  --surface:      rgba(255,255,255,0.04);
  --surface-2:    rgba(255,255,255,0.07);
  --surface-3:    rgba(255,255,255,0.10);
  --surface-hover:rgba(255,255,255,0.09);
  --border:       rgba(255,255,255,0.08);
  --border-2:     rgba(255,255,255,0.13);
  --border-sub:   rgba(255,255,255,0.06);

  --green:        #3ecf6e;
  --green-2:      #2db85a;
  --green-dim:    rgba(62,207,110,0.12);
  --green-glow:   rgba(62,207,110,0.20);
  --green-bg:     rgba(62,207,110,0.08);
  --amber:        #f5a623;
  --amber-bg:     rgba(245,166,35,0.10);
  --red:          #f25252;
  --red-bg:       rgba(242,82,82,0.10);

  --text:         #f0f4f1;
  --text-2:       #9aada0;
  --text-3:       #5a6e61;
  --text-4:       #3a4d40;

  --r-xs:  6px;
  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  22px;
  --r-xl:  32px;

  --shadow-sm:  0 2px 12px rgba(0,0,0,0.4);
  --shadow-md:  0 6px 28px rgba(0,0,0,0.55);
  --shadow-lg:  0 16px 56px rgba(0,0,0,0.7);
  --glow-green: 0 0 28px rgba(62,207,110,0.18), 0 0 56px rgba(62,207,110,0.08);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', monospace;

  --max-w: 1140px;
  --hdr-h: 64px;
  --transition: 0.18s cubic-bezier(0.4,0,0.2,1);
}

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

html { font-size: 16px; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Subtle grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

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

.z { position: relative; z-index: 1; }

/* ── LAYOUT ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--hdr-h);
  background: rgba(10,13,11,0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}

.hdr {
  display: flex;
  align-items: center;
  gap: 20px;
  height: var(--hdr-h);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  border-radius: 7px;
  opacity: 0.9;
}
.logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  letter-spacing: -0.3px;
}
.logo-name span {
  color: var(--green);
}

/* Header search */
.hdr-search {
  flex: 1;
  max-width: 340px;
  position: relative;
  display: flex;
  align-items: center;
}
.hdr-search-icon {
  position: absolute;
  left: 12px;
  color: var(--text-3);
  pointer-events: none;
  flex-shrink: 0;
}
#hdr-q {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 8px 36px 8px 34px;
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
#hdr-q::placeholder { color: var(--text-3); }
#hdr-q:focus {
  border-color: var(--green);
  background: var(--surface-2);
  box-shadow: 0 0 0 3px var(--green-dim);
}
.hdr-search-clear {
  position: absolute;
  right: 10px;
  color: var(--text-3);
  font-size: 12px;
  display: none;
  padding: 4px;
  border-radius: 50%;
}
.hdr-search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: rgba(15,20,16,0.97);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  z-index: 200;
  display: none;
}
.hdr-search-results.open { display: block; }
.hdr-sr-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-size: 13.5px;
  color: var(--text);
  cursor: pointer;
  border-bottom: 1px solid var(--border-sub);
  transition: background var(--transition);
}
.hdr-sr-item:last-child { border: none; }
.hdr-sr-item:hover { background: var(--surface-2); }
.hdr-sr-item mark { background: none; color: var(--green); font-weight: 600; }
.hdr-sr-score {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--green);
  background: var(--green-bg);
  padding: 2px 7px;
  border-radius: 99px;
}

/* Nav */
nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
  padding: 7px 13px;
  border-radius: var(--r-sm);
  transition: color var(--transition), background var(--transition);
}
nav a:hover { color: var(--text); background: var(--surface); }
nav a.active { color: var(--green); }

.btn-add {
  background: var(--green);
  color: #000 !important;
  font-weight: 600 !important;
  padding: 7px 16px !important;
  border-radius: var(--r-xl) !important;
  font-size: 12.5px !important;
  letter-spacing: 0.2px;
  transition: background var(--transition), box-shadow var(--transition) !important;
}
.btn-add:hover {
  background: var(--green-2) !important;
  box-shadow: var(--glow-green);
  color: #000 !important;
}

/* Hamburger */
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  border-radius: var(--r-xs);
}
.ham span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-2);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mob-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: var(--hdr-h);
  left: 0; right: 0;
  background: rgba(10,13,11,0.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  padding: 12px 0 20px;
  transform: translateY(-8px);
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}
.mob-nav.open {
  display: flex;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.mob-nav a {
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  border-bottom: 1px solid var(--border-sub);
  transition: color var(--transition);
}
.mob-nav a:hover { color: var(--text); }
.mob-nav a.active { color: var(--green); }

/* ── PAGE HERO ── */
.page-hero {
  padding: 56px 0 36px;
  border-bottom: 1px solid var(--border-sub);
  margin-bottom: 36px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.1;
}
.page-hero p {
  font-size: 15px;
  color: var(--text-2);
  max-width: 540px;
  line-height: 1.6;
}

/* ── SORT / FILTER ROW ── */
.sort-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.results-txt {
  font-size: 13px;
  color: var(--text-3);
  margin-right: auto;
}
.results-txt strong { color: var(--text); }

.sort-sel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 8px 14px;
  outline: none;
  cursor: pointer;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
  padding-right: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6e61' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.sort-sel:focus { border-color: var(--green); }

/* View toggle */
.view-toggle {
  display: flex;
  gap: 2px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 3px;
}
.vt-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-3);
  transition: all var(--transition);
}
.vt-btn.active {
  background: var(--surface-3);
  color: var(--green);
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.vt-btn:hover:not(.active) { color: var(--text-2); }

/* Filter chips */
.filter-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.filter-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.f-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-3);
  min-width: 80px;
}
.chip {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-2);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 6px 14px;
  transition: all var(--transition);
  cursor: pointer;
}
.chip:hover { color: var(--text); border-color: var(--border-2); background: var(--surface-2); }
.chip.on { background: var(--green-bg); border-color: var(--green); color: var(--green); }
.chip.on-ind { background: rgba(130,90,220,0.12); border-color: rgba(130,90,220,0.5); color: #b088f0; }
.chip.on-sat { background: rgba(245,166,35,0.10); border-color: rgba(245,166,35,0.4); color: var(--amber); }

/* ── CARDS GRID ── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
  padding-bottom: 64px;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), var(--glow-green);
  border-color: rgba(62,207,110,0.25);
}

.card-img {
  position: relative;
  aspect-ratio: 3/2;
  background: var(--bg-3);
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.card:hover .card-img img { transform: scale(1.04); }
.card-img-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-3) 0%, var(--bg-2) 100%);
}

.badge-score {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(10,13,11,0.85);
  backdrop-filter: blur(8px);
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--r-xl);
  border: 1px solid var(--green-dim);
}
.badge-type {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(10,13,11,0.75);
  backdrop-filter: blur(8px);
  color: var(--text-2);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 3px 9px;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.card-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.card-meta {
  font-size: 12px;
  color: var(--text-3);
}
.card-excerpt {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Score bars */
.score-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 4px 0;
}
.sb { display: flex; align-items: center; gap: 8px; }
.sb-l {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-3);
  width: 34px;
  flex-shrink: 0;
}
.sb-track {
  flex: 1;
  height: 3px;
  background: var(--surface-3);
  border-radius: 99px;
  overflow: hidden;
}
.sb-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-2), var(--green));
  border-radius: 99px;
  transition: width 0.6s cubic-bezier(0.4,0,0.2,1);
}

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--border-sub);
}
.card-price {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--amber);
}
.card-date { font-size: 11px; color: var(--text-4); }

/* Strain badge */
.badge-strain {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 3px 9px;
  border-radius: var(--r-xl);
  flex-shrink: 0;
}
.s-ind { background: rgba(130,90,220,0.12); color: #b088f0; border: 1px solid rgba(130,90,220,0.25); }
.s-sat { background: var(--amber-bg); color: var(--amber); border: 1px solid rgba(245,166,35,0.25); }
.s-hyb { background: var(--green-bg); color: var(--green); border: 1px solid rgba(62,207,110,0.25); }

/* ── FEATURED HERO ── */
.featured-hero {
  margin: 40px 0 32px;
}
.featured-link {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 380px;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.featured-link:hover {
  border-color: rgba(62,207,110,0.3);
  box-shadow: var(--shadow-lg), var(--glow-green);
}
.featured-media {
  position: relative;
  overflow: hidden;
  background: var(--bg-3);
}
.featured-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.featured-link:hover .featured-media img { transform: scale(1.05); }
.featured-img-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: linear-gradient(135deg, #0f1a12, #0a0d0b);
}
.featured-score {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(10,13,11,0.9);
  backdrop-filter: blur(12px);
  color: var(--green);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--r-md);
  border: 1px solid var(--green-dim);
  line-height: 1;
}
.featured-score span {
  font-size: 0.55em;
  color: var(--text-3);
  font-family: var(--font-body);
  font-weight: 400;
}

.featured-body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.featured-eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 8px;
}
.featured-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1.5px;
  background: var(--green);
}
.featured-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.6px;
  line-height: 1.1;
}
.featured-meta {
  font-size: 13px;
  color: var(--text-3);
}
.featured-excerpt {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.featured-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}
.featured-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--transition);
}
.featured-link:hover .featured-cta { gap: 9px; }

/* Skeleton */
.featured-skeleton {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 380px;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
.featured-skel-img {
  background: linear-gradient(110deg, var(--bg-3) 30%, var(--bg-2) 50%, var(--bg-3) 70%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
}
.featured-skel-body { padding: 40px; display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.featured-skel-eyebrow { height: 10px; width: 100px; background: var(--surface-3); border-radius: 99px; }
.featured-skel-h1 { height: 32px; width: 70%; background: var(--surface-3); border-radius: 8px; }
.featured-skel-line { height: 12px; background: var(--surface-3); border-radius: 99px; }
.featured-skel-line.short { width: 55%; }

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

/* ── INTRO STRIP ── */
.intro-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 32px;
  border-bottom: 1px solid var(--border-sub);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.intro-copy { flex: 1; }
.intro-h {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.25;
}
.intro-h em {
  font-style: italic;
  color: var(--green);
}
.intro-copy > p {
  font-size: 14px;
  color: var(--text-2);
}
.intro-stats {
  display: flex;
  gap: 4px;
}
.stat-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 22px;
  text-align: center;
  backdrop-filter: blur(8px);
}
.stat-n {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.stat-l {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--text-3);
  margin-top: 4px;
}

/* ── RECOMMENDATION TAGS ── */
.rec-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--r-xl);
}
.rec-tag.yes { background: var(--green-bg); color: var(--green); border: 1px solid rgba(62,207,110,0.25); }
.rec-tag.no  { background: var(--red-bg);   color: var(--red);   border: 1px solid rgba(242,82,82,0.25); }
.rec-tag.mid { background: var(--amber-bg); color: var(--amber); border: 1px solid rgba(245,166,35,0.25); }
.rec-mini { font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 99px; }
.rec-mini.yes { background: var(--green-bg); color: var(--green); }
.rec-mini.no  { background: var(--red-bg);   color: var(--red); }
.rec-mini.mid { background: var(--amber-bg); color: var(--amber); }

/* ── DELIVERY/DISPENSARY LIST VIEWS ── */

/* LIST view — dense Craigslist-inspired */
.delivery-list.view-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 48px;
  backdrop-filter: blur(8px);
}
.cg-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-sub);
  text-decoration: none;
  color: inherit;
  transition: background var(--transition);
}
.cg-row:last-child { border: none; }
.cg-row:hover { background: var(--surface-2); }
.cg-rank {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-4);
  min-width: 24px;
  flex-shrink: 0;
}
.cg-rank.top { color: var(--green); font-weight: 600; }
.cg-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  flex-shrink: 0;
  min-width: 160px;
}
.cg-meta { font-size: 12px; color: var(--text-3); flex: 1; }
.cg-rec { flex-shrink: 0; }
.cg-arrow { color: var(--text-4); flex-shrink: 0; transition: color var(--transition), transform var(--transition); }
.cg-row:hover .cg-arrow { color: var(--green); transform: translateX(3px); }

/* HYBRID view */
.delivery-list.view-hybrid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}
.delivery-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}
.delivery-row:hover {
  border-color: rgba(62,207,110,0.25);
  box-shadow: var(--shadow-sm), var(--glow-green);
  background: var(--surface-2);
  transform: translateX(3px);
}
.delivery-rank {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-4);
  min-width: 36px;
  text-align: center;
}
.delivery-rank.top { color: var(--green); }
.delivery-info { flex: 1; min-width: 0; }
.delivery-name { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.delivery-meta { display: flex; gap: 14px; font-size: 12px; color: var(--text-3); flex-wrap: wrap; }
.delivery-scores {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}
.dscore { text-align: center; }
.dscore-num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.dscore-label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-3); margin-top: 3px; }
.delivery-arrow { color: var(--text-4); font-size: 1.2rem; transition: color var(--transition), transform var(--transition); }
.delivery-row:hover .delivery-arrow { color: var(--green); transform: translateX(4px); }

/* CARDS view */
.delivery-list.view-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}
.dcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 8px;
  backdrop-filter: blur(8px);
}
.dcard:hover {
  border-color: rgba(62,207,110,0.3);
  box-shadow: var(--shadow-md), var(--glow-green);
  transform: translateY(-3px);
  background: var(--surface-2);
}
.dcard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dcard-rank { font-size: 11px; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.5px; }
.dcard-rank.top { color: var(--green); }
.dcard-score {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.dcard-score span { font-size: 0.6em; color: var(--text-3); font-family: var(--font-body); }
.dcard-score.muted { color: var(--text-4); }
.dcard-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.dcard-meta { font-size: 12px; color: var(--text-3); }
.dcard-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.dcard-arrow { color: var(--text-4); transition: color var(--transition), transform var(--transition); }
.dcard:hover .dcard-arrow { color: var(--green); transform: translateX(4px); }

/* ── REVIEW PAGE ── */
.breadcrumb {
  padding: 20px 0 0;
}
.bc {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-3);
}
.bc a { color: var(--text-3); text-decoration: none; transition: color var(--transition); }
.bc a:hover { color: var(--green); }
.bc-sep { color: var(--text-4); }

.review-hero {
  padding: 36px 0 24px;
}
.review-meta-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  padding: 4px 12px;
  border-radius: var(--r-xl);
}
.tag-type { background: var(--surface-2); color: var(--text-2); border: 1px solid var(--border); }
.tag-thc { background: var(--amber-bg); color: var(--amber); border: 1px solid rgba(245,166,35,0.25); }
.tag-strain-ind { background: rgba(130,90,220,0.12); color: #b088f0; border: 1px solid rgba(130,90,220,0.25); }
.tag-strain-sat { background: var(--amber-bg); color: var(--amber); border: 1px solid rgba(245,166,35,0.25); }
.tag-strain-hyb { background: var(--green-bg); color: var(--green); border: 1px solid rgba(62,207,110,0.25); }

.review-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.8px;
  margin-bottom: 10px;
  line-height: 1.1;
}
.review-subtitle {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13.5px;
  color: var(--text-3);
  align-items: center;
}

/* Carousel */
.carousel-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  margin: 0 0 32px;
  background: var(--bg-3);
  max-height: 500px;
  border: 1px solid var(--border);
}
.carousel-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.carousel-slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-3);
}
.carousel-slide img, .carousel-slide video {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10,13,11,0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  z-index: 2;
  transition: background var(--transition), color var(--transition);
}
.carousel-btn:hover { background: var(--green); color: #000; }
.carousel-prev { left: 14px; }
.carousel-next { right: 14px; }
.carousel-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
}
.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.carousel-dot.active { background: var(--green); transform: scale(1.3); }

/* Recommendation banner */
.rec-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 28px;
  border-left: 4px solid;
}
.rec-banner.yes { background: var(--green-bg); color: var(--green); border-left-color: var(--green); }
.rec-banner.no  { background: var(--red-bg);   color: var(--red);   border-left-color: var(--red); }
.rec-banner.mid { background: var(--amber-bg); color: var(--amber); border-left-color: var(--amber); }
.rec-icon { font-size: 1.3rem; }

/* Scorecard */
.scorecard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  margin-bottom: 36px;
  backdrop-filter: blur(8px);
}
.scorecard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.scorecard-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-3);
}
.overall-badge {
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.overall-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.overall-denom {
  font-size: 0.8rem;
  color: var(--text-3);
}

.scores-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.score-item-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-3);
  min-width: 40px;
}
.scores-grid > div {
  display: grid;
  grid-template-columns: 44px 1fr 36px;
  align-items: center;
  gap: 12px;
}
.score-track {
  height: 4px;
  background: var(--surface-3);
  border-radius: 99px;
  overflow: hidden;
}
.score-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-2), var(--green));
  border-radius: 99px;
  width: 0%;
  transition: width 0.8s cubic-bezier(0.4,0,0.2,1);
}
.score-val {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text);
  text-align: right;
}
.score-val span { color: var(--text-3); font-size: 0.8em; }

/* Review layout */
.review-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 36px;
  align-items: start;
  margin-bottom: 60px;
}
@media (max-width: 740px) {
  .review-layout { grid-template-columns: 1fr; }
}
.review-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-2);
}
.review-body p { margin-bottom: 20px; }
.review-body p:last-child { margin-bottom: 0; }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 14px; }
.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px;
  backdrop-filter: blur(8px);
}
.sidebar-card h3 {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-3);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-sub);
}
.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid var(--border-sub);
  gap: 12px;
}
.detail-row:last-child { border: none; padding-bottom: 0; }
.detail-key { font-size: 12px; color: var(--text-3); }
.detail-val { font-size: 12.5px; font-weight: 600; color: var(--text); text-align: right; }
.detail-val.amber { color: var(--amber); }

.tag-list { display: flex; flex-wrap: wrap; gap: 6px; }
.tag-sm {
  font-size: 11px;
  padding: 3px 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  color: var(--text-2);
}

.overall-sidebar { text-align: center; padding: 8px 0; }
.overall-sidebar-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.overall-sidebar-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--text-3);
  margin-top: 5px;
}

/* Related */
.related-section { padding: 0 0 64px; }
.related-section h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.card-img-sm { position: relative; aspect-ratio: 3/2; background: var(--bg-3); border-radius: var(--r-sm); overflow: hidden; }
.card-body-sm { padding: 12px 0 0; }
.card-disp-sm { font-size: 11px; color: var(--text-3); margin-bottom: 3px; }
.card-name-sm { font-size: 14px; font-weight: 600; color: var(--text); }

/* ── DISPENSARY PAGE ── */
.disp-hero-wrap { padding: 36px 0 22px; }
.disp-type-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--green-bg);
  color: var(--green);
  border: 1px solid rgba(62,207,110,0.2);
  margin-bottom: 14px;
}
.disp-type-pill.dispensary {
  background: var(--amber-bg);
  color: var(--amber);
  border-color: rgba(245,166,35,0.2);
}
.disp-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.6px;
  color: var(--text);
  margin: 0 0 10px;
  line-height: 1.1;
}
.disp-hero-rec { margin: 14px 0 18px; }
.disp-hero-rec .rec-tag { font-size: 13px; padding: 7px 16px; }
.disp-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 14px;
  color: var(--text-2);
  align-items: center;
}
.disp-contact-row a { color: var(--green); text-decoration: none; font-weight: 600; }
.disp-contact-row a:hover { text-decoration: underline; }
.disp-contact-row .sep { opacity: 0.3; }

.disp-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 36px;
  padding-bottom: 60px;
  align-items: start;
}
@media (max-width: 880px) {
  .disp-grid { grid-template-columns: 1fr; gap: 24px; }
}

.disp-reasoning {
  background: var(--green-bg);
  border-left: 3px solid var(--green);
  padding: 18px 22px;
  border-radius: var(--r-md);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-2);
  white-space: pre-wrap;
  margin-bottom: 30px;
}
.disp-reasoning.bad { background: var(--red-bg); border-left-color: var(--red); }
.disp-reasoning.mid { background: var(--amber-bg); border-left-color: var(--amber); }

.disp-section-h {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin: 30px 0 16px;
  letter-spacing: -0.3px;
}

.disp-score-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .disp-score-grid { grid-template-columns: repeat(3, 1fr); }
}
.disp-score-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 16px 8px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: border-color var(--transition), transform var(--transition);
}
.disp-score-card:hover {
  border-color: rgba(62,207,110,0.25);
  transform: translateY(-2px);
}
.disp-score-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.disp-score-num.muted { color: var(--text-4); }
.disp-score-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-top: 6px;
}

.disp-review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 20px;
  margin-bottom: 12px;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}
.disp-review-card:hover {
  background: var(--surface-2);
  border-color: rgba(62,207,110,0.25);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm), var(--glow-green);
}
.disp-review-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}
.disp-review-name { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.disp-review-meta { font-size: 12px; color: var(--text-3); }
.disp-review-score {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}
.disp-review-score small { font-size: 0.65em; color: var(--text-3); font-weight: 400; }
.disp-review-foot {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.disp-review-snippet {
  font-size: 13px;
  color: var(--text-2);
  margin-top: 8px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.disp-side { position: sticky; top: 90px; }
.disp-side-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 20px;
  margin-bottom: 12px;
  backdrop-filter: blur(8px);
}
.disp-side-title {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-sub);
}
.disp-side-row { font-size: 13.5px; color: var(--text); margin-bottom: 8px; line-height: 1.5; }
.disp-side-row a { color: var(--green); text-decoration: none; font-weight: 600; word-break: break-word; }
.disp-side-row .lbl {
  font-size: 10px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}
.disp-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-3);
  font-size: 14px;
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--r-md);
}
.disp-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-3);
  text-decoration: none;
  margin-bottom: 18px;
  font-weight: 500;
  transition: color var(--transition);
}
.disp-back-link:hover { color: var(--green); }

.disp-loading { text-align: center; padding: 80px 20px; color: var(--text-3); }
.disp-404 { text-align: center; padding: 60px 20px; }
.disp-404 h1 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 10px; }
.disp-404 p { color: var(--text-2); margin-bottom: 20px; }
.disp-404 a { color: var(--green); font-weight: 600; text-decoration: none; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  margin-top: auto;
}
.foot-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
}
.foot-row p { font-size: 12px; color: var(--text-4); }
.foot-row a { color: var(--text-3); transition: color var(--transition); }
.foot-row a:hover { color: var(--green); }

/* ── AGE GATE ── */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(6,8,7,0.96);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.age-gate-box {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: 52px 48px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}
.age-gate-logo { margin-bottom: 16px; }
.age-gate-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}
.age-gate-brand span { color: var(--green); }
.age-gate-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.age-gate-sub {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 28px;
}
.age-gate-confirm {
  display: block;
  width: 100%;
  background: var(--green);
  color: #000;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: var(--r-md);
  margin-bottom: 10px;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition);
  letter-spacing: 0.2px;
}
.age-gate-confirm:hover {
  background: var(--green-2);
  box-shadow: var(--glow-green);
}
.age-gate-deny {
  display: block;
  width: 100%;
  background: transparent;
  color: var(--text-3);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 11px 20px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
  margin-bottom: 20px;
}
.age-gate-deny:hover { background: var(--surface-2); color: var(--text); }
.age-gate-legal {
  font-size: 11px;
  color: var(--text-4);
  line-height: 1.6;
}

/* ── LOADING / STATE ── */
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 60px 20px;
  color: var(--text-3);
  font-size: 14px;
  grid-column: 1 / -1;
}
.loading-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 60vh;
  color: var(--text-3);
}
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-2);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

.state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-3);
}
.state h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text-2);
  margin-bottom: 8px;
}
.state p { font-size: 14px; }

/* ── RESULTS ROW ── */
.results-row {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── PWA PROMPT ── */
#pwa-prompt {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface-3);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: 16px 22px;
  max-width: 360px;
  width: calc(100% - 40px);
  z-index: 500;
  box-shadow: var(--shadow-md);
}
#pwa-prompt p { font-size: 13.5px; color: var(--text-2); margin-bottom: 14px; line-height: 1.5; }
#pwa-action-btn {
  background: var(--green);
  color: #000;
  font-weight: 700;
  font-size: 13px;
  padding: 9px 20px;
  border-radius: var(--r-md);
  cursor: pointer;
  font-family: var(--font-body);
  transition: background var(--transition);
}
#pwa-action-btn:hover { background: var(--green-2); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .featured-link {
    grid-template-columns: 1fr;
    grid-template-rows: 220px auto;
  }
  .featured-body { padding: 28px 28px; }
}
@media (max-width: 768px) {
  nav { display: none; }
  .ham { display: flex; }
  .hdr-search { max-width: 100%; }
  .intro-strip { gap: 20px; }
  .intro-stats { gap: 6px; }
  .stat-tile { padding: 12px 14px; }
  .grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cg-meta { display: none; }
  .disp-score-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 520px) {
  .grid { grid-template-columns: 1fr; }
  .delivery-scores { display: none; }
  .featured-body { padding: 22px 22px; }
  .age-gate-box { padding: 40px 28px; }
  .intro-stats { display: none; }
}
