/* Gin-Time — Designsystem
   Farben: Waldgrün (Marke), Messing (Preis/CTA), Salbei-Neutrale
   Typo: Fraunces (Display) + Work Sans (Text) + Space Mono (Zahlen/Meta) */

/* Self-hosted Schriften (statt Google Fonts) — keine externen Requests mehr,
   dadurch kein Cookie-/Consent-Banner nötig. Dateien in static/fonts/. */
@font-face{
  font-family:"Fraunces";
  src:url("fonts/fraunces-variable.woff") format("woff");
  font-weight:100 900;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Work Sans";
  src:url("fonts/work-sans-variable.woff") format("woff");
  font-weight:100 900;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Space Mono";
  src:url("fonts/space-mono-400.woff") format("woff");
  font-weight:400;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Space Mono";
  src:url("fonts/space-mono-700.woff") format("woff");
  font-weight:700;
  font-style:normal;
  font-display:swap;
}

:root{
  --ink:#1C2420;
  --ink-soft:#3C463F;
  --ground:#EEF2EA;
  --surface:#FFFFFF;
  --surface-2:#F6F8F2;
  --forest:#1F4032;
  --forest-strong:#163026;
  --brass:#9C6F26;
  --brass-strong:#7E5A1E;
  --umber:#8A4A2A;
  --umber-strong:#6E3A20;
  --mist:#69766D;
  --line:#D7DECE;
  --cta-bg:#1F4032;
  --cta-fg:#F3F6F0;
  --shadow: 0 1px 2px rgba(28,36,32,0.06), 0 8px 20px -12px rgba(28,36,32,0.18);
  --max: 1080px;
}
@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]){
    --ink:#EAF1E9; --ink-soft:#C4D0C6; --ground:#121A15; --surface:#182019; --surface-2:#1D2620;
    --forest:#7FB49A; --forest-strong:#9AC8AE; --brass:#D7AA5B; --brass-strong:#E7BE73;
    --umber:#D99568; --umber-strong:#E7AD84;
    --mist:#8FA096; --line:#2B3730; --cta-bg:#3E5E4E; --cta-fg:#EAF1E9;
    --shadow: 0 1px 2px rgba(0,0,0,0.3), 0 12px 24px -14px rgba(0,0,0,0.55);
  }
}
:root[data-theme="dark"]{
  --ink:#EAF1E9; --ink-soft:#C4D0C6; --ground:#121A15; --surface:#182019; --surface-2:#1D2620;
  --forest:#7FB49A; --forest-strong:#9AC8AE; --brass:#D7AA5B; --brass-strong:#E7BE73;
  --umber:#D99568; --umber-strong:#E7AD84;
  --mist:#8FA096; --line:#2B3730; --cta-bg:#3E5E4E; --cta-fg:#EAF1E9;
  --shadow: 0 1px 2px rgba(0,0,0,0.3), 0 12px 24px -14px rgba(0,0,0,0.55);
}

*{ box-sizing:border-box; }
html{ text-size-adjust:100%; }
body{
  margin:0;
  background:var(--ground);
  color:var(--ink);
  font-family:"Work Sans", ui-sans-serif, system-ui, sans-serif;
  line-height:1.55;
}
img{ max-width:100%; display:block; }
a{ color:inherit; }
.container{ max-width:var(--max); margin:0 auto; padding:0 24px; }

h1,h2,h3,h4{ font-family:"Fraunces", Georgia, serif; text-wrap:balance; margin:0; color:var(--ink); }
p{ margin:0; }

/* ---------- Header / Nav ---------- */
header.site{
  border-bottom:1px solid var(--line);
  background:var(--surface);
  position:relative;
}
.nav-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-block:16px;
  gap:24px;
}
.brand{
  text-decoration:none;
  display:flex;
  align-items:center;
  flex:none;
}
.header-logo{ height:38px; width:auto; display:block; }
@media (max-width:640px){ .header-logo{ height:32px; } }
nav.primary{
  display:flex;
  gap:4px;
  flex-wrap:wrap;
}
nav.primary a{
  font-size:14.5px;
  font-weight:500;
  text-decoration:none;
  color:var(--ink-soft);
  padding:8px 12px;
  border-radius:8px;
}
nav.primary a:hover, nav.primary a.active{
  color:var(--forest-strong);
  background:var(--surface-2);
}

.nav-dropdown{ position:relative; }
.nav-dropdown summary{
  font-size:14.5px;
  font-weight:500;
  color:var(--ink-soft);
  padding:8px 12px;
  border-radius:8px;
  cursor:pointer;
  list-style:none;
  display:flex;
  align-items:center;
  gap:5px;
  user-select:none;
}
.nav-dropdown summary::-webkit-details-marker{ display:none; }
.nav-dropdown summary::marker{ content:""; }
.nav-dropdown summary:hover, .nav-dropdown summary.active{
  color:var(--forest-strong);
  background:var(--surface-2);
}
.nav-dropdown .chevron{ transition:transform .15s ease; flex:none; }
.nav-dropdown[open] summary{ color:var(--forest-strong); background:var(--surface-2); }
.nav-dropdown[open] .chevron{ transform:rotate(180deg); }
.nav-dropdown .dropdown-panel{
  position:absolute;
  top:calc(100% + 6px);
  left:0;
  min-width:168px;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:12px;
  box-shadow:var(--shadow);
  padding:6px;
  display:flex;
  flex-direction:column;
  gap:2px;
  z-index:30;
}
.nav-dropdown .dropdown-panel a{
  font-size:14px;
  font-weight:500;
  color:var(--ink-soft);
  padding:9px 12px;
  border-radius:8px;
  text-decoration:none;
  white-space:nowrap;
}
.nav-dropdown .dropdown-panel a:hover{
  color:var(--forest-strong);
  background:var(--surface-2);
}
.nav-dropdown .dropdown-panel span.soon{
  font-size:14px;
  font-weight:500;
  color:var(--mist);
  padding:9px 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  white-space:nowrap;
}
.soon-flag{
  font-family:"Space Mono", monospace;
  font-size:9.5px;
  letter-spacing:0.04em;
  text-transform:uppercase;
  color:var(--mist);
  background:var(--surface-2);
  border:1px solid var(--line);
  border-radius:100px;
  padding:2px 7px;
  flex:none;
}
.dropdown-divider{ height:1px; background:var(--line); margin:5px 6px; }
.nav-dropdown .dropdown-panel a.has-flag{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.new-flag{
  font-family:"Space Mono", monospace;
  font-size:9.5px;
  letter-spacing:0.04em;
  text-transform:uppercase;
  color:var(--brass-strong);
  background:color-mix(in srgb, var(--brass) 16%, transparent);
  border:1px solid color-mix(in srgb, var(--brass) 36%, transparent);
  border-radius:100px;
  padding:2px 7px;
  flex:none;
}

/* ---------- Suche ---------- */
.nav-right{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.search-toggle{
  display:flex;
  align-items:center;
  gap:7px;
  flex:none;
  font-family:"Work Sans", sans-serif;
  font-size:14px;
  font-weight:500;
  color:var(--ink-soft);
  background:var(--surface-2);
  border:1px solid var(--line);
  border-radius:20px;
  padding:7px 14px 7px 11px;
  cursor:pointer;
}
.search-toggle:hover{
  color:var(--forest-strong);
  border-color:var(--forest-strong);
}

/* Hamburger-Button: nur unterhalb der Mobil-Schwelle sichtbar (siehe Media
   Query weiter unten) — auf Desktop bleibt nav.primary wie gehabt inline
   sichtbar, kein Toggle nötig. */
.menu-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  flex:none;
  width:36px;
  height:36px;
  border:1px solid var(--line);
  border-radius:50%;
  background:var(--surface-2);
  color:var(--ink-soft);
  cursor:pointer;
}
.menu-toggle:hover{ color:var(--forest-strong); border-color:var(--forest-strong); }

@media (max-width:640px){
  .search-toggle span{ display:none; }
  .search-toggle{ padding:8px; border-radius:50%; }

  /* Hauptmenü wird zum aufklappbaren Panel unterm Header, damit der
     Kopfbereich mobil nicht mehr mit 6 Nav-Einträgen vollgestopft wirkt. */
  .menu-toggle{ display:flex; }
  nav.primary{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    flex-direction:column;
    gap:2px;
    background:var(--surface);
    border-bottom:1px solid var(--line);
    box-shadow:var(--shadow);
    padding:10px 24px 18px;
    z-index:40;
    max-height:calc(100vh - 100%);
    overflow-y:auto;
  }
  header.site.nav-open nav.primary{ display:flex; }
  nav.primary a{ width:100%; box-sizing:border-box; }
  .nav-dropdown{ width:100%; }
  .nav-dropdown summary{ width:100%; box-sizing:border-box; justify-content:space-between; }
  .nav-dropdown .dropdown-panel{
    position:static;
    box-shadow:none;
    border:none;
    padding:2px 0 2px 14px;
    min-width:0;
  }
  .nav-dropdown .dropdown-panel a,
  .nav-dropdown .dropdown-panel span.soon{ white-space:normal; }
}

.search-overlay{
  display:none;
  position:fixed;
  inset:0;
  z-index:100;
  background:rgba(12,17,14,0.55);
  align-items:flex-start;
  justify-content:center;
  padding:12vh 20px 20px;
}
@media (max-width:640px){
  .search-overlay{ padding:8vh 14px 14px; }
}

/* ---------- Bild-Lightbox ---------- */
img.zoomable{ cursor:zoom-in; }
.lightbox-overlay{
  display:none;
  position:fixed;
  inset:0;
  z-index:110;
  background:rgba(8,12,10,0.9);
  align-items:center;
  justify-content:center;
  padding:48px;
}
.lightbox-overlay img{
  display:block;
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  border-radius:6px;
  box-shadow:0 24px 60px -20px rgba(0,0,0,0.6);
  cursor:zoom-out;
}
.lightbox-close{
  position:fixed;
  top:18px; right:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  width:40px; height:40px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,0.12);
  color:#F3F6F0;
  cursor:pointer;
}
.lightbox-close:hover{ background:rgba(255,255,255,0.22); }
@media (max-width:640px){
  .lightbox-overlay{ padding:20px; }
}
.search-panel{
  width:100%;
  max-width:560px;
  max-height:72vh;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  overflow:hidden;
}
.search-field{
  display:flex;
  align-items:center;
  gap:10px;
  padding:16px 18px;
  border-bottom:1px solid var(--line);
  flex:none;
}
.search-field .icon{ color:var(--mist); flex:none; }
#search-input{
  flex:1;
  min-width:0;
  border:none;
  outline:none;
  background:transparent;
  font-family:"Work Sans", sans-serif;
  font-size:16px;
  color:var(--ink);
}
#search-input::placeholder{ color:var(--mist); }
.search-close{
  flex:none;
  display:flex;
  padding:5px;
  border:none;
  border-radius:6px;
  background:none;
  color:var(--mist);
  cursor:pointer;
}
.search-close:hover{ color:var(--ink); background:var(--surface-2); }
.search-results{
  overflow-y:auto;
  padding:8px;
}
.search-result{
  display:flex;
  align-items:baseline;
  gap:10px;
  padding:11px 12px;
  border-radius:10px;
  text-decoration:none;
  color:var(--ink);
}
.search-result:hover, .search-result:focus-visible{ background:var(--surface-2); }
.search-result-kind{
  flex:none;
  font-family:"Space Mono", monospace;
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.05em;
  color:var(--brass-strong);
  background:rgba(156,111,38,0.14);
  padding:3px 7px;
  border-radius:6px;
}
.search-result-title{ font-weight:500; flex:1; min-width:0; }
.search-result-cat{
  flex:none;
  font-size:12.5px;
  color:var(--mist);
  white-space:nowrap;
}
@media (max-width:480px){
  .search-result{ flex-wrap:wrap; }
  .search-result-cat{ order:3; flex-basis:100%; padding-left:2px; }
}
.search-empty, .search-hint{
  padding:16px 18px;
  margin:0;
  color:var(--mist);
  font-size:14px;
}

/* ---------- Footer ---------- */
footer.site{
  border-top:1px solid var(--line);
  margin-top:72px;
  padding:36px 0;
  color:var(--mist);
  font-size:13.5px;
}
.footer-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
}
.footer-links{ display:flex; gap:18px; }
.footer-links a{ text-decoration:none; color:var(--mist); }
.footer-links a:hover{ color:var(--ink); }
.footer-brand{ display:flex; align-items:center; gap:14px; }
.footer-logo{ height:30px; width:auto; opacity:0.62; filter:grayscale(1); flex-shrink:0; }
.footer-logo:hover{ opacity:0.85; }

/* ---------- Breadcrumbs ---------- */
/* padding-top only (not the shorthand `padding:16px 0 0`) — that shorthand
   also set left/right to 0, which silently overrode .container's own
   `padding:0 24px` (equal specificity, declared earlier) and pulled the
   breadcrumb row flush against the screen edge on mobile, where the
   container has no auto-margins left to fake the gap. */
.breadcrumbs{ padding-top:16px; }
.breadcrumbs ol{
  display:flex; flex-wrap:wrap; align-items:center;
  list-style:none; margin:0; padding:0;
  font-family:"Space Mono", ui-monospace, monospace;
  font-size:12px;
  letter-spacing:0.01em;
}
.breadcrumbs li{ display:flex; align-items:center; color:var(--mist); }
.breadcrumbs li:not(:last-child)::after{ content:"/"; margin:0 8px; color:var(--line); }
.breadcrumbs a{ color:var(--mist); text-decoration:none; }
.breadcrumbs a:hover{ color:var(--forest); text-decoration:underline; }
.breadcrumbs li[aria-current="page"]{ color:var(--ink); }

/* ---------- Kicker / tags ---------- */
.kicker{
  font-family:"Space Mono", ui-monospace, monospace;
  font-size:12px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--mist);
  margin:0 0 8px;
}
.tag{
  display:inline-block;
  font-family:"Space Mono", monospace;
  font-size:11px;
  letter-spacing:0.03em;
  text-transform:uppercase;
  color:var(--forest);
  background:color-mix(in srgb, var(--forest) 12%, transparent);
  border:1px solid color-mix(in srgb, var(--forest) 30%, transparent);
  padding:3px 9px;
  border-radius:100px;
}
.tag.muted{
  color:var(--mist);
  background:color-mix(in srgb, var(--mist) 10%, transparent);
  border-color:color-mix(in srgb, var(--mist) 28%, transparent);
}
.tag.special{
  color:var(--brass-strong);
  background:color-mix(in srgb, var(--brass) 14%, transparent);
  border-color:color-mix(in srgb, var(--brass) 34%, transparent);
}

/* ---------- Botanical icon (Gin/Tonic/Whisky/Rum content art) ---------- */
.botanical-icon{ display:block; stroke-linecap:round; stroke-linejoin:round; }
.botanical-icon.gin{ color:var(--forest-strong); }
.botanical-icon.tonic{ color:var(--mist); }
.botanical-icon.whisky{ color:var(--brass-strong); }
.botanical-icon.rum{ color:var(--umber-strong); }

/* ---------- Home hero ---------- */
.hero{
  padding-block:64px 48px;
}
.hero h1{
  font-size:clamp(32px,5vw,48px);
  line-height:1.1;
  letter-spacing:-0.01em;
  max-width:18ch;
}
.hero .lede{
  max-width:60ch;
  color:var(--ink-soft);
  font-size:17px;
  margin-top:18px;
}
.hero-actions{ display:flex; gap:12px; margin-top:28px; flex-wrap:wrap; }
.btn{
  display:inline-block;
  font-weight:600;
  font-size:14.5px;
  text-decoration:none;
  padding:11px 20px;
  border-radius:9px;
}
.btn-primary{ background:var(--cta-bg); color:var(--cta-fg); }
.btn-ghost{ background:transparent; color:var(--forest-strong); border:1px solid var(--line); }

/* ---------- Sections ---------- */
.section{ padding-block:40px; }
.section-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:16px;
  margin-bottom:22px;
  flex-wrap:wrap;
}
.section-head h2{ font-size:24px; font-weight:540; }
.section-head a.more{ font-size:13.5px; font-weight:600; color:var(--forest-strong); text-decoration:none; white-space:nowrap; }

/* ---------- Card grid (editorial) ---------- */
.card-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(230px, 1fr));
  gap:18px;
}
.edit-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  text-decoration:none;
  color:inherit;
  max-width:360px;
  width:100%;
}
.edit-card figure{
  margin:0;
  aspect-ratio:4/3;
  background:var(--surface-2);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.edit-card figure img{ width:100%; height:100%; object-fit:contain; }
.edit-card .botanical-icon{ width:46%; height:70%; }
.edit-card figure .duo{ display:flex; gap:10px; align-items:center; }
.edit-card figure .duo .botanical-icon{ width:56px; height:78px; }
.edit-card.soon{ opacity:0.62; cursor:default; }
.edit-body{ padding:16px 18px 18px; display:flex; flex-direction:column; gap:8px; flex:1; }
.edit-body h3{ font-size:18px; font-weight:560; }
.edit-note{ font-size:13.5px; color:var(--ink-soft); flex:1; }
.edit-foot .more{ font-size:12.5px; font-weight:600; color:var(--forest-strong); }

/* ---------- Article / product content ---------- */
article.entry{ padding:48px 0 32px; }
.entry-head{ max-width:70ch; margin-bottom:8px; }
.entry-head h1{ font-size:clamp(26px,4vw,38px); line-height:1.15; margin-bottom:14px; }
.entry-meta{ display:flex; gap:10px; align-items:center; margin-bottom:8px; flex-wrap:wrap; }
.entry-meta .date{ font-family:"Space Mono", monospace; font-size:12px; color:var(--mist); }

.entry-body{
  max-width:68ch;
  font-size:16px;
  margin-top:32px;
}
.entry-body h2{ font-size:22px; font-weight:560; margin-top:38px; margin-bottom:12px; }
.entry-body h3{ font-size:18px; font-weight:560; margin-top:28px; margin-bottom:10px; }
.entry-body p{ margin-bottom:16px; color:var(--ink-soft); }
.entry-body ul, .entry-body ol{ margin:0 0 16px; padding-left:22px; color:var(--ink-soft); }
.entry-body li{ margin-bottom:6px; }
.entry-body li::marker{ color:var(--brass-strong); }
.entry-body strong{ color:var(--ink); }
.entry-body img{ border-radius:12px; margin:8px 0 20px; }
.entry-body a{ color:var(--forest-strong); text-decoration-color:var(--line); text-underline-offset:3px; }
.entry-body blockquote{
  margin:0 0 20px;
  padding:4px 0 4px 16px;
  border-left:3px solid var(--brass-strong);
  color:var(--ink-soft);
  font-style:italic;
}

/* ---------- Product hero ---------- */
.product-hero{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:36px;
  align-items:flex-start;
  padding:40px 0 8px;
}
.product-hero .art{
  aspect-ratio:1;
  background:var(--surface-2);
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--line);
}
.product-hero .art .botanical-icon{ width:44%; height:66%; }
.product-hero .art img{ width:100%; height:100%; object-fit:contain; border-radius:18px; }
.product-hero h1{ font-size:clamp(26px,4vw,36px); margin-bottom:10px; }

/* ---------- Editorial star rating ---------- */
.rating-row{ display:flex; align-items:center; gap:8px; margin:2px 0 0; }
.rating-stars{
  position:relative;
  display:inline-block;
  font-size:16px;
  line-height:1;
  letter-spacing:2px;
}
.rating-stars-bg{ color:var(--line); }
.rating-stars-fg{
  position:absolute; top:0; left:0;
  overflow:hidden;
  white-space:nowrap;
  color:var(--brass-strong);
}
.rating-value{ font-size:13.5px; font-weight:600; color:var(--ink); }
.rating-tag{ font-size:12px; color:var(--mist); }
.product-facts{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin:14px 0 22px;
}
.fact-pill{
  display:inline-flex;
  align-items:center;
  gap:7px;
  font-size:13px;
  font-weight:500;
  color:var(--ink-soft);
  background:var(--surface-2);
  border:1px solid var(--line);
  border-radius:100px;
  padding:6px 13px 6px 11px;
}
.fact-pill svg{ width:15px; height:15px; color:var(--brass-strong); flex:none; }
.fact-pill b{ color:var(--ink); font-weight:600; }

/* ---------- Die Besten: Rankingliste ---------- */
ol.rank-list{ list-style:none; margin:0; padding:0; }
.rank-row{ display:flex; gap:18px; align-items:flex-start; padding-block:22px; border-top:1px solid var(--line); }
.rank-row:first-child{ border-top:none; padding-top:6px; }
.rank-lead{ display:flex; flex-direction:column; align-items:center; gap:8px; flex:none; width:64px; }
.rank-badge{
  font-family:"Space Mono", monospace; font-weight:700; font-size:19px; color:var(--brass-strong);
  background:var(--surface); border:1px solid var(--line); border-radius:50%;
  width:40px; height:40px; display:flex; align-items:center; justify-content:center;
}
.rank-duo{ display:flex; }
.duo-chip{
  width:30px; height:30px; border-radius:50%; background:var(--surface); border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
}
.duo-chip + .duo-chip{ margin-left:-9px; }
.duo-chip .botanical-icon{ width:16px; height:22px; }
.rank-body{ flex:1; min-width:0; }
.rank-list h3{ font-size:16.5px; font-weight:560; line-height:1.25; margin:0 0 4px; }
.rank-list h3 a{ text-decoration:none; color:var(--ink); }
.rank-list h3 a:hover{ color:var(--forest-strong); }
.rank-list .rating-row{ margin-bottom:8px; }
.rank-blurb{ font-size:13.8px; color:var(--ink-soft); max-width:66ch; margin-bottom:8px; }
.rank-more{ font-size:12.5px; font-weight:600; color:var(--forest-strong); text-decoration:none; }
@media (max-width:640px){
  .rank-row{ flex-wrap:wrap; }
  .rank-lead{ flex-direction:row; width:auto; }
}

/* Spirituosen-Aromenprofil (Whisky/Gin/Rum) — gleiche Meter-Komponente wie
   bei den Cocktails, aber mit l&auml;ngeren, zusammengesetzten Achsen-Labels
   ("Kr&auml;uter/Blumig", "R&ouml;stnoten/Melasse") als bei den kurzen
   Cocktail-Achsen (S&uuml;&szlig;e/S&auml;ure/...) &mdash; eigene, breitere
   Label-Spalte per Modifier-Klasse statt die Cocktail-Meter global zu &auml;ndern. */
.taste-profile.spirits{ max-width:480px; }
.taste-profile.spirits .taste-row{ grid-template-columns:20px 122px 1fr 32px; }
.arom-sub{ font-size:12.5px; color:var(--mist); margin:0 0 12px; }
@media (max-width:420px){
  .taste-profile.spirits .taste-row{ grid-template-columns:18px 104px 1fr 28px; gap:8px; }
}
@media (max-width:640px){
  .product-hero{ grid-template-columns:1fr; }
  .product-hero .art{ max-width:220px; }
}

/* ---------- Amazon CTA box ---------- */
.amazon-box{
  display:flex;
  align-items:center;
  gap:14px;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:14px;
  padding:16px 18px;
  box-shadow:var(--shadow);
  margin:22px 0;
  max-width:520px;
}
.amazon-box .glyph{
  width:40px; height:40px; flex:none;
  border-radius:10px;
  background:color-mix(in srgb, var(--brass) 16%, transparent);
  color:var(--brass-strong);
  display:flex; align-items:center; justify-content:center;
}
.amazon-box .glyph svg{ width:20px; height:20px; }
.amazon-box .glyph-photo{ background:var(--surface); border:1px solid var(--line); overflow:hidden; }
.amazon-box .glyph-photo img{ width:100%; height:100%; object-fit:contain; }
.amazon-box .txt{ flex:1; }
.amazon-box .txt .h{ font-weight:600; font-size:14.5px; color:var(--ink); }
.amazon-box .txt .s{ font-size:12.5px; color:var(--mist); margin-top:2px; }
.amazon-box .txt .disclosure{
  font-size:11px;
  color:var(--mist);
  opacity:.8;
  margin-top:4px;
  letter-spacing:.01em;
}
.amazon-box .cta{
  font-family:"Work Sans", sans-serif;
  font-weight:600;
  font-size:13.5px;
  color:var(--cta-fg);
  background:var(--cta-bg);
  padding:9px 15px;
  border-radius:8px;
  text-decoration:none;
  white-space:nowrap;
  flex:none;
}

/* ---------- Geschmacksprofil (taste-profile meters, cocktail pages) ---------- */
.taste-profile{
  display:flex;
  flex-direction:column;
  gap:11px;
  max-width:440px;
  margin:14px 0 22px;
}
.taste-row{
  display:grid;
  grid-template-columns:20px 78px 1fr 32px;
  align-items:center;
  gap:10px;
}
.taste-icon{ width:18px; height:18px; color:var(--brass-strong); flex:none; }
.taste-icon svg{ width:100%; height:100%; }
.taste-label{ font-size:13px; color:var(--mist); font-weight:600; }
.taste-meter{ height:8px; border-radius:4px; background:var(--line); overflow:hidden; }
.taste-fill{ display:block; height:100%; background:var(--brass); border-radius:4px; }
.taste-value{ font-size:12.5px; color:var(--ink-soft); text-align:right; font-variant-numeric:tabular-nums; }
@media (max-width:420px){
  .taste-row{ grid-template-columns:18px 66px 1fr 28px; gap:8px; }
}

/* ---------- Equipment grid (cocktail recipe pages) ---------- */
.equip-grid{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin:14px 0 22px;
}
.equip-item{ flex:1 1 240px; min-width:220px; max-width:280px; }
.equip-item .equip-label{
  font-size:12.5px;
  font-weight:600;
  color:var(--mist);
  text-transform:uppercase;
  letter-spacing:.04em;
  margin:0 0 6px;
}
.equip-item .amazon-box{
  flex-direction:column;
  align-items:flex-start;
  max-width:none;
  margin:0;
  padding:14px 16px;
}
.equip-item .amazon-box .cta{ align-self:stretch; text-align:center; margin-top:2px; }
@media (max-width:640px){
  .equip-item{ flex:1 1 100%; max-width:none; }
}

/* ---------- Category chips row ---------- */
.chip-row{ display:flex; gap:8px; flex-wrap:wrap; margin:18px 0 8px; }
.chip{
  font-size:13px;
  font-weight:500;
  padding:7px 13px;
  border-radius:100px;
  border:1px solid var(--line);
  text-decoration:none;
  color:var(--ink-soft);
  background:var(--surface);
}
.chip:hover{ border-color:var(--forest); color:var(--forest-strong); }

/* ---------- Utility ---------- */
.table-scroll{ overflow-x:auto; }
.wide-hero-img{ border-radius:16px; overflow:hidden; margin:24px 0 8px; }

/* (Das alte "nav-row wird mobil zur Spalte + nav.primary bleibt inline
   sichtbar"-Verhalten ist durch das Hamburger-Menü oben ersetzt — nav-row
   bleibt jetzt bei jeder Breite eine Zeile: Logo links, Such-/Menü-Buttons
   rechts, nav.primary klappt bei Bedarf als Panel darunter auf.) */
