/* ============================================================
   KONTUR — main.css
   Reset, base, typography, layout, shared components.
   Loaded after tokens.css, before pages.css.
   ============================================================ */

/* --- Self-hosted fonts (WOFF2, no CDN — DSGVO) ------------- */
@font-face {
  font-family: "Fraunces";
  src: url("../assets/fonts/fraunces.woff2") format("woff2");
  font-weight: 300 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../assets/fonts/fraunces-italic.woff2") format("woff2");
  font-weight: 300 900; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Karla";
  src: url("../assets/fonts/karla.woff2") format("woff2");
  font-weight: 300 800; font-style: normal; font-display: swap;
}

/* --- Reset / base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
/* hidden-Attribut soll immer greifen — auch wenn eine Klasse display setzt. */
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; }
html:focus-within { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}

img, svg, picture, video { display: block; max-width: 100%; }
a { color: var(--clay); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ember); }
ul[role="list"], ol[role="list"] { list-style: none; padding: 0; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
:target { scroll-margin-top: calc(var(--header-h) + 1rem); }

/* --- Typography ------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 460;
  line-height: var(--lh-heading);   /* >= 1.05 — DE diacritics */
  hyphens: none;                    /* never break DE compounds */
  letter-spacing: -0.012em;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.18; }
h4 { font-size: var(--fs-h4); font-family: var(--font-body); font-weight: 700; }
p { text-wrap: pretty; }
strong, b { font-weight: 700; }
small { font-size: var(--fs-sm); }
code { font-family: ui-monospace, "SFMono-Regular", Menlo, monospace; font-size: 0.9em; }

.kicker {
  font-family: var(--font-body); font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--clay);
}
.lede { font-size: clamp(1.05rem, 1rem + 0.5vw, 1.3rem); color: var(--ink-70); line-height: 1.55; }
.muted { color: var(--ink-70); }
.text-sm { font-size: var(--fs-sm); }
.text-xs { font-size: var(--fs-xs); }
.nowrap { white-space: nowrap; }      /* brand name / compound locks */

/* --- Layout helpers --------------------------------------- */
.wrap { max-width: var(--page-max); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: var(--page-narrow); }
.section { padding-block: var(--section-pad); }       /* the only rhythm */
.section--paper2 { background: var(--paper-2); }
.section--ink { background: var(--ink); color: var(--paper); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--paper); }
.section--ink .muted { color: rgba(var(--paper-rgb), 0.74); }
.section--tight { padding-block: var(--space-xl); }
.section-head { max-width: 46rem; margin-bottom: var(--space-lg); }
.section-head .kicker { display: block; margin-bottom: var(--space-xs); }
.stack-sm > * + * { margin-top: var(--space-sm); }
.stack-md > * + * { margin-top: var(--space-md); }
.stack-lg > * + * { margin-top: var(--space-lg); }

/* Contour leitmotif divider */
.contour-rule { width: 100%; height: 14px; color: var(--line); }
.contour-rule path { fill: none; stroke: currentColor; stroke-width: 1.5; }

/* --- Accessibility utilities ------------------------------ */
:focus-visible { outline: 3px solid var(--clay); outline-offset: 2px; border-radius: var(--radius); }
.skip-link {
  position: absolute; left: var(--gutter); top: -120px;
  background: var(--ink); color: var(--paper); padding: 0.7rem 1rem;
  border-radius: var(--radius); z-index: var(--z-skiplink); transition: top 0.2s;
}
.skip-link:focus { top: 0.6rem; color: var(--paper); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2xs);
  min-height: var(--control-h); padding: 0.85rem 1.6rem;
  font-family: var(--font-body); font-size: var(--fs-sm); font-weight: 700;
  letter-spacing: 0.04em; text-align: center; text-decoration: none;
  border: var(--control-border) solid var(--ink); border-radius: var(--radius);
  transition: transform var(--dur) var(--ease), background-color var(--dur) var(--ease),
              color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.btn--primary { background: var(--ink); color: var(--paper); }
.btn--primary:hover { background: #34291b; color: var(--paper); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.btn--on-ink { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--on-ink:hover { background: var(--ember); border-color: var(--ember); color: var(--ink); }
.btn--block { width: 100%; }
.btn--sm { min-height: 40px; padding: 0.5rem 1rem; }
.btn:disabled, .btn[aria-disabled="true"] {
  background: var(--paper-2); color: var(--ink-45); border-color: var(--line);
  cursor: not-allowed; transform: none;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--added { background: var(--ok); border-color: var(--ok); color: var(--paper); }

.link-arrow { font-weight: 700; color: var(--clay); text-decoration: none; display: inline-flex; gap: 0.3rem; }
.link-arrow:hover { color: var(--ember); gap: 0.5rem; transition: gap var(--dur-sm) var(--ease); }

/* --- Header ----------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: rgba(var(--paper-rgb), 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__bar { display: flex; align-items: center; gap: var(--space-md); min-height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; color: var(--ink); }
.brand__mark { width: 30px; height: 30px; flex: none; }
.brand__name {
  font-family: var(--font-display); font-weight: 600; font-size: 1.45rem;
  letter-spacing: 0.02em; white-space: nowrap;
}
.main-nav { display: flex; gap: var(--space-md); margin-inline-start: auto; }
.main-nav a {
  color: var(--ink); text-decoration: none; font-size: var(--fs-sm);
  font-weight: 600; padding-block: 0.4rem;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--clay); }
.header-tools { display: flex; align-items: center; gap: var(--space-3xs); }
.icon-btn {
  display: inline-grid; place-items: center; width: 48px; height: 48px;
  color: var(--ink); border-radius: var(--radius); position: relative;
}
.icon-btn:hover { background: var(--paper-2); }
.icon-btn svg { width: 21px; height: 21px; }
.cart-count {
  position: absolute; top: 7px; right: 6px; min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--clay); color: var(--paper); font-size: 0.65rem; font-weight: 700;
  border-radius: 999px; display: grid; place-items: center;
}
.nav-toggle { display: none; }

/* Mobile nav panel */
.mobile-nav {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: var(--z-drawer);
  background: var(--paper); padding: var(--space-lg) var(--gutter);
  transform: translateX(-100%); transition: transform var(--dur) var(--ease);
  overflow-y: auto;
}
.mobile-nav[data-open="true"] { transform: translateX(0); }
.mobile-nav a {
  display: block; padding: var(--space-sm) 0; font-family: var(--font-display);
  font-size: var(--fs-h3); color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--line);
}

/* --- Hero ------------------------------------------------- */
.hero { padding-block: clamp(2.5rem, 1rem + 6vw, 5.5rem) var(--section-pad); position: relative; }
.hero__grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 4rem); align-items: end;
}
.hero__title { font-size: var(--fs-display); margin-block: var(--space-sm) var(--space-md); }
.hero__title em { font-style: italic; color: var(--clay); }
.hero__lede { max-width: 32ch; margin-bottom: var(--space-lg); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); }
.hero__figure {
  aspect-ratio: 4 / 5; background: var(--paper-2);
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
}

/* --- Placeholder (no stock photo — BLOCK 8) --------------- */
.ph {
  display: grid; place-content: center; gap: 0.4rem; text-align: center;
  width: 100%; height: 100%; color: var(--ink-45);
  background:
    repeating-linear-gradient(135deg, transparent 0 11px, rgba(var(--ink-rgb),0.035) 11px 22px),
    var(--paper-2);
}
.ph__label { font-size: var(--fs-xs); letter-spacing: 0.14em; text-transform: uppercase; }
.ph svg { width: 34px; height: 34px; margin-inline: auto; opacity: 0.5; }

/* --- Trust bar -------------------------------------------- */
.trust-bar { border-block: 1px solid var(--line); background: var(--surface); }
.trust-bar__list {
  display: flex; flex-wrap: wrap; gap: var(--space-sm) var(--space-lg);
  padding-block: var(--space-md); list-style: none;
}
.trust-bar__item { display: flex; align-items: center; gap: var(--space-2xs); font-size: var(--fs-sm); font-weight: 600; color: var(--ink-70); }
.trust-bar__item svg { width: 18px; height: 18px; color: var(--olive); flex: none; }

/* --- Product card + grid ---------------------------------- */
.product-grid { display: grid; gap: var(--space-md); grid-template-columns: repeat(3, 1fr); }
.product-grid--4 { grid-template-columns: repeat(4, 1fr); }
.product-card {
  display: flex; flex-direction: column; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px -22px rgba(var(--ink-rgb), 0.55); }
.product-card__media { aspect-ratio: 4 / 5; overflow: hidden; position: relative; display: block; }
.product-card__media-zoom { transition: transform 0.6s var(--ease); }
.product-card:hover .product-card__media-zoom { transform: scale(1.045); }
.product-card__badge {
  position: absolute; top: var(--space-xs); left: var(--space-xs);
  background: var(--paper); border: 1px solid var(--line); color: var(--olive);
  font-size: var(--fs-xs); font-weight: 700; padding: 0.25rem 0.55rem; border-radius: 999px;
}
.product-card__badge--soldout { color: var(--ink-70); background: var(--paper-2); }
.product-card__body { display: flex; flex-direction: column; gap: 0.4rem; padding: var(--space-md); }
.product-card__origin { font-size: var(--fs-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-45); }
.product-card__name { font-size: var(--fs-h3); }
.product-card__name a { color: var(--ink); text-decoration: none; }
.product-card__name a:hover { color: var(--clay); }
.product-card__price-row { display: flex; align-items: baseline; gap: 0.5rem; margin-top: 0.2rem; }
.product-card__foot { margin-top: auto; padding: 0 var(--space-md) var(--space-md); }
.product-card--soldout .product-card__media-zoom { filter: grayscale(0.5) opacity(0.7); }

/* Price + Grundpreis (PAngV) */
.price { font-family: var(--font-display); font-size: 1.3rem; font-weight: 560; }
.price--lg { font-size: 1.85rem; }
.price__base { font-size: var(--fs-xs); color: var(--ink-45); }   /* Grundpreis €/kg */
.price__tax  { font-size: var(--fs-xs); color: var(--ink-45); }

/* Roast indicator */
.roast { display: inline-flex; align-items: center; gap: 0.35rem; font-size: var(--fs-xs); color: var(--ink-70); }
.roast__track { display: inline-flex; gap: 3px; }
.roast__pip { width: 14px; height: 6px; background: var(--line); border-radius: 1px; }
.roast__pip--on { background: var(--clay); }

/* Tags / notes */
.note-tag {
  font-size: var(--fs-xs); font-weight: 700; padding: 0.3rem 0.7rem; color: var(--olive);
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 999px;
}
.tag-row { display: flex; flex-wrap: wrap; gap: var(--space-2xs); }

/* --- Split / story --------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: center; }
.split--start { align-items: start; }
.split__media { aspect-ratio: 5 / 4; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }

/* --- Abo points ------------------------------------------- */
.abo-teaser__inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.5rem,4vw,4rem); align-items: center; }
.abo-points { display: flex; flex-direction: column; gap: var(--space-sm); margin-top: var(--space-md); }
.abo-point { display: flex; gap: var(--space-sm); }
.abo-point__num {
  font-family: var(--font-display); font-size: 1.2rem; color: var(--ember);
  border: 1.5px solid currentColor; width: 2.2rem; height: 2.2rem;
  display: grid; place-items: center; border-radius: 999px; flex: none;
}
.abo-point__num--ink { color: rgba(var(--paper-rgb), 0.6); }

/* --- Brew cards ------------------------------------------- */
.brew-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.brew-card {
  padding: var(--space-md); background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); display: flex; flex-direction: column; gap: 0.4rem;
  text-decoration: none; color: var(--ink);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.brew-card:hover { transform: translateY(-3px); border-color: var(--clay); color: var(--ink); }
.brew-card__step { font-size: var(--fs-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--clay); }
.brew-card__arrow { margin-top: auto; padding-top: var(--space-sm); color: var(--clay); font-weight: 700; }

/* --- Final CTA -------------------------------------------- */
.final-cta { text-align: center; }
.final-cta h2 { max-width: 18ch; margin-inline: auto; }
.final-cta p { max-width: 44ch; margin: var(--space-sm) auto var(--space-lg); }

/* --- Forms ------------------------------------------------ */
.field { margin-bottom: var(--space-md); }
.field__label { display: block; font-size: var(--fs-sm); font-weight: 700; margin-bottom: var(--space-2xs); }
.field__hint { font-size: var(--fs-xs); color: var(--ink-70); margin-top: var(--space-3xs); }
.input, .textarea, .select {
  width: 100%; min-height: var(--control-h); padding: 0.7rem 0.9rem;
  background: var(--surface); border: var(--control-border) solid var(--line);
  border-radius: var(--radius); font: inherit; color: var(--ink);
}
.textarea { min-height: 8rem; padding-top: 0.7rem; resize: vertical; }
.input:focus-visible, .textarea:focus-visible, .select:focus-visible { border-color: var(--ink); }
.input::placeholder, .textarea::placeholder { color: var(--ink-45); }
.field--error .input, .field--error .textarea, .field--error .select { border-color: var(--error); background: var(--error-bg); }
.field__error { display: flex; align-items: center; gap: 0.35rem; font-size: var(--fs-xs); font-weight: 600; color: var(--error); margin-top: var(--space-3xs); }
.field__error svg { width: 14px; height: 14px; flex: none; }
.field--ok .input { border-color: var(--ok); }
.fieldset { border: 0; padding: 0; margin: 0; }

/* Checkbox / radio rows */
.check {
  display: flex; gap: var(--space-2xs); font-size: var(--fs-sm); line-height: 1.5;
  align-items: flex-start;
}
.check input { margin-top: 3px; width: 18px; height: 18px; flex: none; accent-color: var(--clay); }

/* Option pills (variant selectors) */
.option-row { display: flex; flex-wrap: wrap; gap: var(--space-2xs); }
.option {
  position: relative; min-height: var(--control-h); display: inline-flex; align-items: center;
  padding: 0.55rem 1rem; border: var(--control-border) solid var(--line); border-radius: var(--radius);
  font-size: var(--fs-sm); font-weight: 600; background: var(--surface); cursor: pointer;
}
.option input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.option:hover { border-color: var(--ink); }
.option:has(input:checked) { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.option:has(input:focus-visible) { outline: 3px solid var(--clay); outline-offset: 2px; }
.option:has(input:disabled) { opacity: 0.45; cursor: not-allowed; }

/* Quantity stepper */
.stepper { display: inline-flex; align-items: center; border: var(--control-border) solid var(--ink); border-radius: var(--radius); }
.stepper button { width: 46px; min-height: var(--control-h); color: var(--ink); display: grid; place-items: center; }
.stepper button:hover { background: var(--paper-2); }
.stepper button svg { width: 16px; height: 16px; }
.stepper input { width: 44px; text-align: center; border: 0; background: transparent; font-weight: 700; }

/* --- Breadcrumb ------------------------------------------- */
.breadcrumb { font-size: var(--fs-xs); color: var(--ink-45); padding-block: var(--space-md); }
.breadcrumb a { color: var(--ink-45); }
.breadcrumb a:hover { color: var(--clay); }

/* --- Pagination ------------------------------------------- */
.pagination { display: flex; gap: var(--space-3xs); justify-content: center; margin-top: var(--space-xl); }
.pagination a, .pagination span {
  min-width: 44px; min-height: 44px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: var(--radius);
  text-decoration: none; color: var(--ink); font-size: var(--fs-sm); font-weight: 600;
}
.pagination a:hover { border-color: var(--ink); }
.pagination [aria-current="page"] { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* --- Notice / empty state -------------------------------- */
.notice {
  display: flex; gap: var(--space-sm); padding: var(--space-md);
  border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface);
}
.notice--error { border-color: var(--error); background: var(--error-bg); }
.notice--ok { border-color: var(--ok); background: var(--ok-bg); }
.empty-state { text-align: center; padding: var(--space-2xl) var(--gutter); }
.empty-state svg { width: 48px; height: 48px; color: var(--ink-45); margin: 0 auto var(--space-md); }

/* --- Mini-cart drawer ------------------------------------- */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(var(--ink-rgb), 0.42);
  opacity: 0; visibility: hidden; transition: opacity var(--dur) var(--ease); z-index: var(--z-drawer-overlay);
}
.drawer-overlay[data-open="true"] { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; z-index: var(--z-drawer);
  width: min(420px, 92vw); height: 100%; background: var(--paper);
  border-left: 1px solid var(--line); transform: translateX(100%);
  transition: transform var(--dur) var(--ease); display: flex; flex-direction: column;
}
.drawer[data-open="true"] { transform: translateX(0); }
.drawer__head { display: flex; justify-content: space-between; align-items: center; padding: var(--space-md); border-bottom: 1px solid var(--line); }
.drawer__body { padding: var(--space-md); overflow-y: auto; flex: 1; }
.drawer__foot { padding: var(--space-md); border-top: 1px solid var(--line); }

/* Cart line item (drawer + warenkorb) */
.cart-line { display: grid; grid-template-columns: 64px 1fr auto; gap: var(--space-sm); padding-block: var(--space-sm); border-bottom: 1px solid var(--line); }
.cart-line__media { aspect-ratio: 1; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.cart-line__name { font-weight: 700; font-size: var(--fs-sm); }
.cart-line__variant { font-size: var(--fs-xs); color: var(--ink-70); }
.cart-line__remove { font-size: var(--fs-xs); color: var(--ink-70); text-decoration: underline; }

/* --- Cookie banner (TTDSG) -------------------------------- */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-cookie);
  background: var(--surface); border-top: 1px solid var(--line); padding: var(--space-md) 0;
}
.cookie-banner__inner { display: flex; flex-wrap: wrap; gap: var(--space-md); align-items: center; justify-content: space-between; }
.cookie-banner p { font-size: var(--fs-sm); max-width: 52ch; }
.cookie-banner__actions { display: flex; gap: var(--space-2xs); flex-wrap: wrap; }

/* --- Toast / aria-live ----------------------------------- */
.toast-region { position: fixed; left: 50%; bottom: var(--space-md); transform: translateX(-50%); z-index: var(--z-cookie); display: flex; flex-direction: column; gap: var(--space-2xs); }
.toast {
  background: var(--ink); color: var(--paper); padding: 0.7rem 1.1rem;
  border-radius: var(--radius); font-size: var(--fs-sm); font-weight: 600;
  display: flex; align-items: center; gap: 0.4rem;
}
.toast svg { width: 16px; height: 16px; color: var(--ember); }

/* --- Footer ----------------------------------------------- */
.site-footer { background: var(--ink); color: rgba(var(--paper-rgb), 0.82); }
.site-footer a { color: rgba(var(--paper-rgb), 0.82); text-decoration: none; }
.site-footer a:hover { color: var(--ember); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.6fr; gap: var(--space-lg); padding-block: var(--space-2xl) var(--space-lg); }
.footer-col h3 { font-size: var(--fs-sm); color: var(--paper); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--space-sm); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; font-size: var(--fs-sm); }
.footer-brand__name { font-family: var(--font-display); font-size: 1.5rem; color: var(--paper); }
.footer-brand p { font-size: var(--fs-sm); margin-top: var(--space-xs); max-width: 30ch; }
.newsletter__field { display: flex; gap: var(--space-2xs); margin-top: var(--space-sm); }
.newsletter input[type="email"] {
  flex: 1; min-height: var(--control-h); padding: 0 0.9rem;
  background: rgba(var(--paper-rgb),0.06); border: 1px solid rgba(var(--paper-rgb),0.25);
  color: var(--paper); border-radius: var(--radius);
}
.newsletter input::placeholder { color: rgba(var(--paper-rgb),0.5); }
.footer-consent { display: flex; gap: var(--space-2xs); margin-top: var(--space-sm); font-size: var(--fs-xs); line-height: 1.5; }
.footer-consent input { margin-top: 3px; width: 17px; height: 17px; flex: none; accent-color: var(--ember); }
.footer-base {
  display: flex; flex-wrap: wrap; gap: var(--space-sm) var(--space-md);
  justify-content: space-between; align-items: center;
  padding-block: var(--space-md); border-top: 1px solid rgba(var(--paper-rgb),0.16); font-size: var(--fs-xs);
}
.pay-icons { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.pay-icons span {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.04em; padding: 0.3rem 0.45rem;
  border: 1px solid rgba(var(--paper-rgb),0.28); border-radius: 3px; color: rgba(var(--paper-rgb),0.7);
}

/* ============================================================
   RESPONSIVE — 1440 / 1024 / 768 / 375. Mobile-first overrides.
   Shared classes vary by media only (BLOCK 16-C).
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .main-nav, .icon-btn--account { display: none; }
  .nav-toggle { display: inline-grid; }
  .hero__grid, .split, .abo-teaser__inner { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .brew-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
}
@media (max-width: 460px) {
  .product-grid, .product-grid--4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__actions .btn, .cookie-banner__actions .btn { width: 100%; }
  .cookie-banner__actions { width: 100%; }
}

/* --- Reduced motion (BLOCK 9 / 13) ------------------------ */
@media (prefers-reduced-motion: reduce) {
  html:focus-within { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .product-card:hover, .btn:hover, .brew-card:hover { transform: none; }
}
