/* ==========================================================================
   DRINKIT — stylesheet
   No external images. Every visual is CSS, so nothing can 404.
   ========================================================================== */

:root {
  --primary:      #c8203f;
  --primary-dark: #8e132b;
  --primary-soft: rgba(200, 32, 63, 0.14);
  --accent:       #f0b542;
  --ok:           #35c07f;
  --warn:         #eab308;
  --off:          #94a3b8;

  --bg:           #0c0d12;
  --bg-2:         #12131b;
  --surface:      #171926;
  --surface-2:    #1e2130;
  --border:       rgba(255, 255, 255, 0.10);
  --border-soft:  rgba(255, 255, 255, 0.06);

  --text:         #f6f7fb;
  --muted:        #a4a8bd;
  --dim:          #767b93;

  --radius:       16px;
  --radius-sm:    10px;
  --shadow:       0 18px 40px rgba(0, 0, 0, 0.45);
  --maxw:         1180px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  /* Base tint only — the character lives in the two fixed layers below. */
  background:
    radial-gradient(1200px 700px at 50% -15%, rgba(200, 32, 63, 0.16), transparent 65%),
    linear-gradient(180deg, #0b0c11 0%, var(--bg-2) 45%, #090a0e 100%);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* --------------------------------------------------------- background art
   Two fixed, pointer-transparent layers sit behind all content:
     ::before — a slowly drifting aurora mesh (the "bar light" glow)
     ::after  — rising carbonation bubbles + film grain + vignette
   Everything is CSS or an inline data-URI, so nothing can 404.
   -------------------------------------------------------------------------- */
body::before,
body::after {
  content: '';
  position: fixed;
  inset: -20% -20% -20% -20%;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background:
    radial-gradient(38% 30% at 14% 12%, rgba(200, 32, 63, 0.34), transparent 70%),
    radial-gradient(32% 26% at 86% 8%,  rgba(240, 181, 66, 0.20), transparent 72%),
    radial-gradient(34% 30% at 78% 74%, rgba(93, 33, 122, 0.28), transparent 72%),
    radial-gradient(30% 26% at 20% 84%, rgba(16, 92, 84, 0.24), transparent 74%);
  filter: blur(30px) saturate(115%);
  animation: aurora-drift 34s ease-in-out infinite alternate;
  will-change: transform;
}

body::after {
  inset: 0;
  background-image:
    /* grain */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E"),
    /* small, fast bubbles */
    radial-gradient(circle at 18% 88%, rgba(255,255,255,0.16) 0 1.6px, transparent 2.4px),
    radial-gradient(circle at 63% 40%, rgba(240,181,66,0.20) 0 1.4px, transparent 2.2px),
    radial-gradient(circle at 88% 70%, rgba(255,255,255,0.13) 0 1.8px, transparent 2.6px),
    /* larger, slower bubbles */
    radial-gradient(circle at 34% 22%, rgba(255,255,255,0.10) 0 3px, transparent 4.2px),
    radial-gradient(circle at 76% 60%, rgba(247,169,185,0.14) 0 2.6px, transparent 3.8px),
    /* vignette */
    radial-gradient(120% 90% at 50% 40%, transparent 55%, rgba(3, 4, 7, 0.55) 100%);
  background-size:
    160px 160px,
    260px 340px, 260px 340px, 260px 340px,
    440px 620px, 440px 620px,
    100% 100%;
  opacity: 0.55;
  animation: bubbles-rise 26s linear infinite;
}

@keyframes aurora-drift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(-3%, 2.5%, 0) scale(1.08); }
  100% { transform: translate3d(2.5%, -2%, 0) scale(1.04); }
}

/* Only the bubble layers move; grain and vignette stay pinned. */
@keyframes bubbles-rise {
  from {
    background-position: 0 0, 0 0, 90px 0, 180px 0, 0 0, 220px 0, 0 0;
  }
  to {
    background-position: 0 0, 0 -340px, 90px -340px, 180px -340px, 0 -620px, 220px -620px, 0 0;
  }
}

body.no-scroll { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 { line-height: 1.22; font-weight: 700; letter-spacing: -0.015em; }
h1 { font-size: clamp(2rem, 5vw, 3.35rem); }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.15rem); }
h3 { font-size: 1.06rem; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

.container { width: min(var(--maxw), 92%); margin-inline: auto; }
.muted { color: var(--muted); font-size: 0.88rem; }
.num { font-variant-numeric: tabular-nums; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--primary); color: #fff; padding: 0.75rem 1.25rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.78rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600; font-size: 0.94rem;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: 0.52rem 1rem; font-size: 0.85rem; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-ghost { background: rgba(255,255,255,0.05); border-color: var(--border); color: var(--text); }
.btn-ghost:hover { background: rgba(255,255,255,0.10); }
.btn-accent { background: var(--accent); color: #201703; }
.btn.disabled, .btn[aria-disabled="true"] {
  opacity: 0.42; cursor: not-allowed; pointer-events: none; transform: none;
}

/* ------------------------------------------------------- config warning */
.config-warning {
  background: #78350f; color: #fde68a;
  padding: 0.7rem 1rem; font-size: 0.85rem; text-align: center;
  border-bottom: 1px solid rgba(253, 230, 138, 0.3);
}
.config-warning strong { color: #fff; }

/* ------------------------------------------------------------- age gate */
.agegate {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(6, 7, 11, 0.94);
  backdrop-filter: blur(10px);
  display: grid; place-items: center; padding: 1.25rem;
}
.agegate-box {
  width: min(500px, 100%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2.25rem 1.9rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.agegate-logo { font-size: 2.75rem; margin-bottom: 0.5rem; }
.agegate-box h2 { margin-bottom: 0.85rem; font-size: 1.4rem; }
.agegate-box p { color: var(--muted); font-size: 0.93rem; }
.agegate-actions { display: flex; flex-direction: column; gap: 0.6rem; margin: 1.6rem 0 1.1rem; }
.agegate-fine { font-size: 0.76rem !important; color: var(--dim) !important; line-height: 1.55; }

/* --------------------------------------------------------------- header */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(12, 13, 18, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.header-inner {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.85rem 0;
}
.brand { display: flex; align-items: center; gap: 0.7rem; margin-right: auto; }
.brand-mark {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
  border-radius: 13px; font-size: 1.3rem;
  background: linear-gradient(140deg, var(--primary), var(--primary-dark));
  box-shadow: 0 6px 18px rgba(200, 32, 63, 0.35);
}
.brand-text strong { display: block; font-size: 1.14rem; letter-spacing: 0.12em; }
.brand-text span { display: block; font-size: 0.68rem; color: var(--muted); letter-spacing: 0.04em; }

.primary-nav { display: flex; align-items: center; gap: 1.4rem; }
.primary-nav a { font-size: 0.92rem; color: var(--muted); transition: color 0.18s ease; }
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: var(--text); }

.header-actions { display: flex; align-items: center; gap: 0.6rem; }

.state-select {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font-size: 0.86rem;
  max-width: 190px;
  cursor: pointer;
}
.state-select option, .state-select optgroup { background: var(--surface-2); color: var(--text); }

/* Standalone dropdown that must NOT be wired to the global state picker
   (e.g. the shop filter on stores.html). */
.select-input {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 999px; padding: 0.72rem 1.1rem;
  font-size: 0.9rem; cursor: pointer; max-width: 240px;
}
.select-input option { background: var(--surface-2); color: var(--text); }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--border); border-radius: 11px;
  background: var(--surface-2); cursor: pointer; font-size: 1.1rem;
}

/* ----------------------------------------------------------------- hero */
.hero { padding: clamp(3rem, 7vw, 5.5rem) 0 3rem; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3rem; align-items: center; }
.eyebrow {
  display: inline-block;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.85rem;
}
.hero h1 { margin-bottom: 1.1rem; }
.hero h1 em { font-style: normal; color: var(--primary); }
.hero-text { color: var(--muted); font-size: 1.03rem; max-width: 54ch; margin-bottom: 1.9rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.2rem; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 2.2rem; }
.hero-stats div strong { display: block; font-size: 1.55rem; color: var(--accent); }
.hero-stats div span { font-size: 0.82rem; color: var(--muted); }

.hero-panel {
  background: linear-gradient(160deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: 24px; padding: 1.5rem;
  box-shadow: var(--shadow);
}
.hero-panel h2 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.hero-panel > p { font-size: 0.86rem; color: var(--muted); margin-bottom: 1.1rem; }
.hero-panel .state-select { max-width: 100%; width: 100%; border-radius: var(--radius-sm); }
.panel-list { display: grid; gap: 0.6rem; margin-top: 1.1rem; }
.panel-list li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.86rem; color: var(--muted);
}
.panel-list li span:first-child { flex: none; }

/* ------------------------------------------------------- pouring beer
   Decorative loop at the top of the hero panel. Bleeds to the panel edge
   with a negative margin, so its radius has to match the panel's 24px.
   -------------------------------------------------------------------- */
.pour-scene {
  margin: -1.5rem -1.5rem 1.35rem;
  border-radius: 23px 23px 0 0;
  border-bottom: 1px solid var(--border-soft);
  background:
    radial-gradient(62% 78% at 50% 104%, rgba(240, 181, 66, 0.20), transparent 70%),
    radial-gradient(90% 70% at 18% 0%, rgba(200, 32, 63, 0.14), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.22));
  overflow: hidden;
}
.pour-scene svg {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-inline: auto;
}

/* The mouth of the bottle sits at 134,70 in user units — rotating about
   that exact point keeps the stream lined up while the bottle sways. */
.pour-bottle {
  transform-box: view-box;
  transform-origin: 134px 70px;
  transform: rotate(118deg);
  animation: pour-sway 7s ease-in-out infinite alternate;
}

.pour-drop {
  transform-box: view-box;
  animation: pour-drop 0.85s linear infinite;
}
.pour-drop.d2 { animation-delay: 0.28s; }
.pour-drop.d3 { animation-delay: 0.56s; }

/* Fill grows from the base of the glass; the foam rides on top of it, so
   both keyframe sets share the same percentages. */
.pour-fill {
  transform-box: view-box;
  transform-origin: 134px 182px;
  animation: pour-fill 8s ease-in-out infinite;
}
.pour-foam {
  transform-box: view-box;
  animation: pour-foam 8s ease-in-out infinite;
}
.pour-bubbles {
  animation: pour-bubbles-fade 8s ease-in-out infinite;
}
.pour-bubbles circle {
  transform-box: view-box;
  animation: pour-bubble 3.2s ease-in infinite;
}
.pour-bubbles .b2 { animation-duration: 4.1s; animation-delay: 0.7s; }
.pour-bubbles .b3 { animation-duration: 2.7s; animation-delay: 1.4s; }
.pour-bubbles .b4 { animation-duration: 3.8s; animation-delay: 0.3s; }
.pour-bubbles .b5 { animation-duration: 3.0s; animation-delay: 2.1s; }

@keyframes pour-sway {
  from { transform: rotate(116.5deg); }
  to   { transform: rotate(120deg); }
}
@keyframes pour-drop {
  0%   { transform: translateY(-14px); opacity: 0; }
  18%  { opacity: 1; }
  82%  { opacity: 1; }
  100% { transform: translateY(16px); opacity: 0; }
}
@keyframes pour-fill {
  0%   { transform: scaleY(0.05); }
  62%  { transform: scaleY(0.9); }
  76%  { transform: scaleY(0.9); }
  92%  { transform: scaleY(0.1); }
  100% { transform: scaleY(0.05); }
}
@keyframes pour-foam {
  0%   { transform: translateY(74px); }
  62%  { transform: translateY(8px); }
  76%  { transform: translateY(8px); }
  92%  { transform: translateY(70px); }
  100% { transform: translateY(74px); }
}
@keyframes pour-bubbles-fade {
  0%, 10%   { opacity: 0; }
  30%, 78%  { opacity: 1; }
  92%, 100% { opacity: 0; }
}
@keyframes pour-bubble {
  0%   { transform: translateY(0); opacity: 0; }
  20%  { opacity: 0.8; }
  100% { transform: translateY(-56px); opacity: 0; }
}

@media (max-width: 900px) {
  .pour-scene svg { max-width: 260px; }
}

/* -------------------------------------------------------- state banner */
.state-banner {
  display: flex; align-items: flex-start; gap: 0.9rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  margin-bottom: 2rem;
}
.state-banner strong { display: block; font-size: 0.98rem; }
.state-banner p { font-size: 0.87rem; color: var(--muted); }
.state-banner-icon { font-size: 1.15rem; line-height: 1.5; flex: none; }
.state-banner.ok      { border-color: rgba(53, 192, 127, 0.42); background: rgba(53, 192, 127, 0.09); }
.state-banner.warn    { border-color: rgba(234, 179, 8, 0.42);  background: rgba(234, 179, 8, 0.09); }
.state-banner.off     { border-color: rgba(148, 163, 184, 0.4); background: rgba(148, 163, 184, 0.08); }
.state-banner.neutral { border-color: var(--border); }

/* -------------------------------------------------------------- section */
.section { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section-head {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: flex-end; gap: 1rem; margin-bottom: 1.8rem;
}
.section-head p.sub { color: var(--muted); font-size: 0.93rem; margin-top: 0.4rem; max-width: 62ch; }

/* ------------------------------------------------------------- controls */
.controls { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; margin-bottom: 1.5rem; }
.search-field { position: relative; flex: 1 1 250px; min-width: 0; }
.search-field input {
  width: 100%;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 999px; padding: 0.72rem 1.1rem 0.72rem 2.5rem;
  font-size: 0.9rem;
}
.search-field input::placeholder { color: var(--dim); }
.search-field::before {
  content: '🔍'; position: absolute; left: 0.95rem; top: 50%;
  transform: translateY(-50%); font-size: 0.85rem; opacity: 0.7;
}

.filter-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.6rem; }
.filter-btn {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.5rem 0.95rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 999px; font-size: 0.85rem; cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.filter-btn:hover { background: var(--surface-2); }
.filter-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.filter-icon { font-size: 0.95rem; }

/* ---------------------------------------------------------- brand cards */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
  gap: 1rem;
}
.brand-card {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden; cursor: pointer; text-align: left;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.brand-card:hover { transform: translateY(-3px); border-color: rgba(200, 32, 63, 0.5); }
.brand-card-body { padding: 0.95rem 1rem 1.1rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.brand-card h3 { font-size: 0.97rem; }
.brand-card-meta { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.brand-card-price {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 0.5rem; margin-top: auto; padding-top: 0.35rem;
}
.brand-card-price strong { font-size: 1.14rem; color: var(--accent); }
.price-muted { font-size: 0.84rem; color: var(--dim); }

.chip {
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.22rem 0.55rem; border-radius: 999px;
  background: var(--primary-soft); color: #f7a9b9; font-weight: 600;
}

.brand-tile {
  height: 108px;
  display: grid; place-items: center;
  font-size: 2.1rem;
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
}
.brand-tile.large { height: 250px; font-size: 3.6rem; border-radius: var(--radius); border: 1px solid var(--border-soft); }

/* Brand photo. `contain` (not `cover`) because bottle shots are tall and
   narrow — cropping them to fill the box cuts off the label. */
.brand-photo {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 0.55rem;
  display: block;
}
.brand-tile.large .brand-photo { padding: 1.1rem; }
.cat-beer     { background: linear-gradient(140deg, #6b4a12, #3a2708); }
.cat-wine     { background: linear-gradient(140deg, #6d1230, #38091a); }
.cat-whisky   { background: linear-gradient(140deg, #7a4210, #3d1f06); }
.cat-rum      { background: linear-gradient(140deg, #5a2a14, #2c1408); }
.cat-vodka    { background: linear-gradient(140deg, #1d3f5c, #0e2032); }
.cat-gin      { background: linear-gradient(140deg, #17513f, #0a2a20); }
.cat-cocktail { background: linear-gradient(140deg, #5c2352, #2c1028); }

/* Indian vs imported marker on the card */
.seg {
  font-size: 0.66rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.2rem 0.5rem; border-radius: 999px; font-weight: 600;
  border: 1px solid var(--border-soft); color: var(--muted);
}
.seg-indian   { background: rgba(240, 181, 66, 0.14); color: #f0c674; border-color: rgba(240,181,66,0.3); }
.seg-imported { background: rgba(148, 163, 184, 0.12); color: #b8c2d4; }

.empty-state {
  grid-column: 1 / -1;
  text-align: center; color: var(--muted);
  padding: 2.75rem 1rem; font-size: 0.92rem;
  border: 1px dashed var(--border); border-radius: var(--radius);
}

/* ---------------------------------------------------------- rates table */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface);
}
table { width: 100%; border-collapse: collapse; min-width: 540px; }
thead th {
  text-align: left; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
  padding: 0.9rem 1.1rem; border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
}
tbody td { padding: 0.85rem 1.1rem; border-bottom: 1px solid var(--border-soft); font-size: 0.9rem; }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: rgba(255,255,255,0.025); }
td.num { text-align: right; font-weight: 600; color: var(--accent); }
thead th:last-child { text-align: right; }
.table-note { font-size: 0.8rem; color: var(--dim); margin-top: 0.75rem; }

/* ---------------------------------------------------------------- modal */
.modal {
  position: fixed; inset: 0; z-index: 200;
  display: none; align-items: center; justify-content: center;
  background: rgba(4, 5, 8, 0.82); backdrop-filter: blur(6px);
  padding: 1.25rem;
}
.modal.active { display: flex; }
.modal-content {
  position: relative;
  width: min(760px, 100%); max-height: 90vh; overflow-y: auto;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 22px; padding: 1.5rem;
  box-shadow: var(--shadow);
}
.modal-close {
  position: absolute; top: 0.9rem; right: 0.9rem;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--surface-2);
  cursor: pointer; font-size: 1.1rem; line-height: 1;
}
.modal-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 1.5rem; }
.modal-title-row { margin-bottom: 0.9rem; }
.modal-price { display: flex; align-items: baseline; gap: 0.6rem; margin-bottom: 0.3rem; }
.modal-price strong { font-size: 1.9rem; color: var(--accent); }
.modal-price-state { font-size: 0.8rem; color: var(--dim); display: block; margin-bottom: 1rem; }
.modal-facts { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0; }
.modal-facts span {
  font-size: 0.82rem; padding: 0.42rem 0.8rem;
  background: rgba(255,255,255,0.05); border-radius: 999px; border: 1px solid var(--border-soft);
}
.modal-desc { color: var(--muted); font-size: 0.9rem; }
.modal-shops-head {
  font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin: 1.4rem 0 0.6rem;
}
.modal-shop {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 0.7rem 0.85rem; border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm); margin-bottom: 0.5rem;
  background: rgba(255,255,255,0.025);
}
.modal-shop strong { display: block; font-size: 0.9rem; }
.modal-shop .muted { font-size: 0.78rem; }
.modal-shop-right { display: flex; align-items: center; gap: 0.7rem; flex: none; }
.modal-shop-price { text-align: right; }
.modal-shop-price strong { color: var(--accent); font-size: 1rem; }
.save { display: block; font-size: 0.72rem; color: var(--ok); font-weight: 600; }
@media (max-width: 560px) {
  .modal-shop { flex-direction: column; align-items: flex-start; }
  .modal-shop-right { width: 100%; justify-content: space-between; }
}
.modal-legal { font-size: 0.75rem; color: var(--dim); margin-top: 1.2rem; line-height: 1.55; }

/* --------------------------------------------------- floating WhatsApp */
.wa-fab {
  position: fixed;
  right: 1.15rem; bottom: 1.15rem;
  z-index: 50;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #25d366; color: #06331a;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.38);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.wa-fab:hover { transform: scale(1.07); box-shadow: 0 14px 34px rgba(37, 211, 102, 0.5); }
.wa-fab:active { transform: scale(0.97); }
@media (max-width: 480px) {
  .wa-fab { width: 52px; height: 52px; right: 0.9rem; bottom: 0.9rem; }
}

/* --------------------------------------------------------------- stores */
.store-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1rem; }
.store-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem;
  display: flex; flex-direction: column; gap: 0.9rem;
}
.store-card.pending { opacity: 0.72; }
.store-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 0.75rem; }
.store-head h3 { font-size: 1.02rem; }
.store-head .muted { font-size: 0.82rem; }
.badge {
  flex: none; font-size: 0.7rem; font-weight: 600;
  padding: 0.3rem 0.65rem; border-radius: 999px;
  background: rgba(255,255,255,0.07); border: 1px solid var(--border);
}
.badge-save { background: rgba(53, 192, 127, 0.15); color: #6ee7ac; border-color: rgba(53,192,127,0.4); }
.badge-pending { background: rgba(148, 163, 184, 0.14); color: var(--off); }
.store-facts { display: grid; gap: 0.5rem; }
.store-facts li { display: flex; gap: 0.6rem; font-size: 0.85rem; color: var(--muted); align-items: flex-start; }
.fact-icon { flex: none; }
.store-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: auto; }

/* ------------------------------------------------------------ how it works */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.step {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.4rem;
}
.step-num {
  display: grid; place-items: center;
  width: 36px; height: 36px; border-radius: 11px;
  background: var(--primary-soft); color: #f7a9b9;
  font-weight: 700; margin-bottom: 0.85rem;
}
.step h3 { margin-bottom: 0.4rem; }
.step p { font-size: 0.87rem; color: var(--muted); }

/* ------------------------------------------------------------------ CTA */
.cta {
  background: linear-gradient(140deg, rgba(200,32,63,0.22), rgba(240,181,66,0.10));
  border: 1px solid var(--border);
  border-radius: 24px; padding: clamp(1.75rem, 4vw, 3rem);
  text-align: center;
}
.cta h2 { margin-bottom: 0.7rem; }
.cta p { color: var(--muted); max-width: 60ch; margin: 0 auto 1.6rem; font-size: 0.96rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; }

/* ----------------------------------------------------------------- form */
.form-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: clamp(1.25rem, 3vw, 2rem);
}
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.82rem; color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 0.72rem 0.9rem; font-size: 0.9rem;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 90px; }
.field select option { background: var(--surface-2); }
.form-status { margin-top: 1rem; font-size: 0.87rem; padding: 0.7rem 0.9rem; border-radius: var(--radius-sm); }
.form-status:empty { display: none; }
.form-status.ok { background: rgba(53,192,127,0.12); color: #6ee7ac; border: 1px solid rgba(53,192,127,0.35); }
.form-status.error { background: rgba(200,32,63,0.14); color: #f7a9b9; border: 1px solid rgba(200,32,63,0.4); }
.form-legal { font-size: 0.78rem; color: var(--dim); margin-top: 1rem; line-height: 1.6; }

/* ------------------------------------------------------------------ FAQ */
.faq { display: grid; gap: 0.65rem; }
.faq details {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1rem 1.15rem;
}
.faq summary { cursor: pointer; font-weight: 600; font-size: 0.94rem; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; float: right; color: var(--accent); font-size: 1.2rem; line-height: 1; }
.faq details[open] summary::after { content: '−'; }
.faq details p { margin-top: 0.7rem; font-size: 0.88rem; color: var(--muted); }

/* ---------------------------------------------------------- legal pages */
.legal-page { padding: 3rem 0 4rem; }
.legal-page .container { max-width: 820px; }
.legal-page h1 { font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: 0.5rem; }
.legal-page .updated { color: var(--dim); font-size: 0.83rem; margin-bottom: 2rem; }
.legal-page h2 { font-size: 1.15rem; margin: 2rem 0 0.6rem; }
.legal-page p, .legal-page li { color: var(--muted); font-size: 0.93rem; margin-bottom: 0.75rem; }
.legal-page ul { list-style: disc; padding-left: 1.35rem; }

/* --------------------------------------------------------------- footer */
.site-footer {
  border-top: 1px solid var(--border-soft);
  margin-top: 3rem; padding: 2.75rem 0 2rem;
  background: rgba(8, 9, 13, 0.6);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-grid h4 { font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.85rem; }
.footer-grid ul { display: grid; gap: 0.5rem; }
.footer-grid a, .footer-grid li { font-size: 0.88rem; color: var(--muted); }
.footer-grid a:hover { color: var(--text); }
.footer-about p { font-size: 0.87rem; color: var(--muted); margin-top: 0.75rem; max-width: 42ch; }
.footer-legal {
  border-top: 1px solid var(--border-soft); padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: 0.79rem; color: var(--dim);
}
.footer-warning {
  background: rgba(200, 32, 63, 0.10);
  border: 1px solid rgba(200, 32, 63, 0.3);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem; margin-bottom: 1.75rem;
  font-size: 0.82rem; color: #f0b8c3; text-align: center;
}

/* ----------------------------------------------------------- responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .modal-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .primary-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface); border-bottom: 1px solid var(--border);
    padding: 0.5rem 4%;
    display: none;
  }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 0.8rem 0; border-bottom: 1px solid var(--border-soft); }
  .primary-nav a:last-child { border-bottom: none; }
  .site-header { position: relative; }
  .header-actions .state-select { max-width: 140px; }
  .brand-text span { display: none; }
  .hero-stats { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .brand-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .store-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn { padding: 0.7rem 1.1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  /* The background layers loop forever — a 0.01ms duration would strobe,
     so stop them outright and keep the static composition. */
  body::before, body::after { animation: none !important; }
  /* Same reason for the pour — freeze it on a poured glass instead. */
  .pour-bottle, .pour-drop, .pour-fill, .pour-foam,
  .pour-bubbles, .pour-bubbles circle { animation: none !important; }
  .pour-fill { transform: scaleY(0.86); }
  .pour-foam { transform: translateY(11px); }
  .btn:hover, .brand-card:hover { transform: none; }
}
