/* ==========================================================================
   Büsumer Feinkost — Design-System
   Nachbau des Original-Shopify-Themes (siehe context/site-analysis-buesumer-feinkost.md)
   ========================================================================== */

/* Poppins lokal gehostet statt von Google Fonts nachgeladen (keine Drittlandübermittlung von
   Besucher-IPs an Google mehr bei jedem Seitenaufruf — siehe Fable-Prüfung D-1). Nur "latin"-Subset
   (deckt auch ä/ö/ü/ß ab), da die Seite ausschließlich deutsche/niederländische Ortsnamen enthält. */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/poppins-400.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/poppins-500.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/poppins-500-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/poppins-600.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/poppins-700.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/poppins-800.woff2") format("woff2");
}

:root {
  --color-primary: #06255B;
  --color-primary-rgb: 6, 37, 91;
  --color-accent: #F0C417;
  --color-accent-light: #FDE6B4;
  --color-bg: #FFFFFF;
  --color-error: #F83A3A;
  --color-success: #00A341;
  --color-split-bg: #ECF2F8;

  --radius-button: 3.125rem;
  --radius: 0.75rem;

  /* Original: .bs-container { max-width: 1148px; padding: 0 14px; } für den
     gesamten Seiteninhalt (außer der randlosen Hero-Grafik), .prose { max-width: 712px }
     für Text-lastige Seiten (Kontakt-Formular, Impressum, Datenschutz). */
  --container-max: 1148px;
  --container-narrow: 712px;

  /* Original nutzt die kommerzielle Schrift "Avenir" (Avenir Medium/Avenir-Black), lizenziert über
     Shopifys Font-Bibliothek — außerhalb von Shopify nicht frei selbst hostbar. "Poppins" ist die
     gebräuchliche freie Alternative mit sehr ähnlicher geometrischer Anmutung (Google Fonts, SIL OFL). */
  --font-family: "Poppins", -apple-system, "Helvetica Neue", Arial, sans-serif;

  --section-spacing: clamp(3rem, 6vw, 6.5rem);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-family);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-primary);
  background: var(--color-bg);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { padding-left: 1.25rem; }
button { font-family: inherit; cursor: pointer; }

/* Original-Headlines laufen über "Avenir-Black" — mit Poppins entspricht Weight 800
   (ExtraBold) dieser kräftigen, dunklen Anmutung am nächsten. */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 2rem); }
h4 { font-size: 1.375rem; }
p { margin: 0 0 1rem; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.25rem;
  border-radius: var(--radius-button);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.85rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background-color 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--accent {
  background: var(--color-accent-light);
  color: var(--color-primary);
}
.btn--accent:hover { background: var(--color-accent); }
.btn--outline {
  background: transparent;
  border-color: var(--color-accent-light);
  color: #FFFFFF;
}
.btn--outline:hover { background: rgba(255,255,255,0.15); }
.btn--primary {
  background: var(--color-primary);
  color: #FFFFFF;
}
.btn--primary:hover { background: #0a3480; }
.btn--block { width: 100%; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.08);
}
.site-header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Original-Vorbild: .navigation .bs-container ist ein 3-Spalten-Grid
   (Nav-links | Logo | Nav-rechts, rechte Spalte leer) — Nav und Logo hängen
   direkt zusammen und bilden EINE Gruppe nahe der Seitenmitte, statt an die
   äußeren Ränder gespreizt zu sein. Auf Mobil bleibt Hamburger-Icon links /
   Logo rechts (space-between von oben). */
@media (min-width: 768px) {
  .site-header__inner { justify-content: center; gap: 2rem; }
}
.site-header__logo img { height: 64px; width: auto; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-nav__link {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  color: var(--color-primary);
}
.site-nav__link:hover { color: var(--color-accent); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 32px;
  position: relative;
  z-index: 110;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 3px;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}
.nav-toggle span { top: 15px; }
.nav-toggle span::before { top: -10px; }
.nav-toggle span::after { top: 10px; }
.nav-toggle.is-active span { background: transparent; }
.nav-toggle.is-active span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.is-active span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 767px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(80vw, 320px);
    background: #FFFFFF;
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 1.75rem;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    box-shadow: -8px 0 24px rgba(0,0,0,0.08);
  }
  .site-nav.is-open { transform: translateX(0); }
}

/* ==========================================================================
   Hero
   ========================================================================== */
/* Original: .hero-banner { height: 569px } / @media(min-width:768px){ height: 750px }
   — feste Pixelhöhen statt min-height, kein abdunkelndes Overlay (::before dort leer),
   dadurch bleiben Himmel/Farben so hell wie im Original-Foto. */
.hero {
  position: relative;
  height: 569px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center bottom;
  color: #FFFFFF;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .hero { height: 750px; }
}
/* Original: .hero-banner__content { max-width: 550px } — die Headline bricht dadurch
   bewusst zweizeilig um (nicht der volle Container), Buttons sitzen im selben schmalen
   Block. .hero-banner__title { font-size: 40px; line-height: 40px } mobil,
   80px / 80px (line-height 1) ab 768px. */
.hero__content { position: relative; z-index: 1; max-width: 550px; }
.hero__title {
  color: var(--color-accent-light);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .hero__title { font-size: 80px; }
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
/* Original: .hero-banner__cta__button { border-radius: 0; padding: 18px; border: 1px solid #FDE6B4; }
   — eckige "Sticker"-Buttons statt Pill-Form, nur im Hero (andere Buttons der Seite bleiben rund). */
.hero__actions .btn {
  border-radius: 0;
  padding: 18px 28px;
  border-width: 1px;
}
@media (max-width: 767px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
}

/* ==========================================================================
   USP Icon bar
   ========================================================================== */
.usp-bar {
  padding: 3rem 1.5rem;
}
.usp-bar__list {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  list-style: none;
  padding: 0;
  text-align: center;
}
.usp-bar__item { flex: 1 1 140px; }
.usp-bar__item a { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
/* Original-Vorbild: .usp_icon ist ein reines <img> ohne zusätzlichen Rahmen —
   die SVG-Datei enthält den Kreis samt Symbol bereits selbst. */
.usp-bar__icon {
  width: clamp(64px, 8vw, 110px);
  height: clamp(64px, 8vw, 110px);
  display: block;
}
.usp-bar__icon img { width: 100%; height: 100%; display: block; }
.usp-bar__label {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.2;
  letter-spacing: normal;
  color: #1B3156;
}
@media (max-width: 767px) {
  .usp-bar__list { justify-content: space-around; }
  .usp-bar__item { flex: 1 1 40%; }
}

/* ==========================================================================
   Split section (Bild-mit-Text)
   Original-Theme-Vorbild: .bs-image-with-text__container — flex row/row-reverse,
   volle Breite mit einheitlichem hellblauem Hintergrund (#ECF2F8), randlose
   quadratische Bildkachel, zentrierter Text. Sektionen sind ohne Abstand
   direkt gestapelt, wodurch der versetzte "Schachbrett"-Effekt entsteht.
   ========================================================================== */
.split-section {
  background: #FFFFFF;
}
.split-section__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  background: var(--color-split-bg);
  display: flex;
  align-items: stretch;
}
.split-section--reverse .split-section__inner { flex-direction: row-reverse; }
.split-section__media {
  flex: 1 1 50%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.split-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.split-section__text {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  text-align: center;
}
.split-section__text-inner { max-width: 500px; }
.split-section__text h2 { text-transform: uppercase; }
.split-section__text p { margin-bottom: 1.1rem; }
.split-section__text .poem {
  margin: 1.5rem 0 0;
  font-style: italic;
  color: var(--color-primary);
}
@media (max-width: 900px) {
  .split-section__inner,
  .split-section--reverse .split-section__inner {
    flex-direction: column;
  }
  .split-section__media { aspect-ratio: 4 / 3; }
  .split-section__text { padding: 2rem 1.5rem; }
}

/* fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Product grid (category tiles / product lists)
   ========================================================================== */
.section-heading {
  text-align: center;
  padding: 0 1.5rem;
  margin-bottom: 2.5rem;
}
.product-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--section-spacing) 1.5rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
/* Folgt das Grid direkt auf eine Abschnitts-Überschrift, sorgt deren eigener
   margin-bottom bereits für Abstand — das zusätzliche Top-Padding des Grids
   (gedacht für alleinstehende Verwendung) würde die Lücke sonst verdoppeln. */
.section-heading + .product-grid { padding-top: 0; }
.product-grid--products { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
.product-card {
  display: block;
  text-align: center;
}
/* Original: .collection-list__item-image { object-fit: contain; } — Produktbilder
   werden immer vollständig gezeigt, nie beschnitten. */
.product-card__media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin-bottom: 0.9rem;
  background: #FFFFFF;
}
.product-card__media img { width: 100%; height: 100%; object-fit: contain; }
/* Original: .category-filter__icon (Produktübersichtsseite /collections/alle-produkte)
   nutzt object-fit: cover statt contain wie .collection-list__item-image (Homepage). */
.product-card--cover .product-card__media img { object-fit: cover; }
.product-card__title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
/* Original: .category-filter .swiper-slide { filter: opacity(50%); } — alle
   Kacheln sind standardmäßig abgeblendet, die aktive Kategorie bzw. eine
   gehoverte Kachel wird per filter: opacity(100%) hervorgehoben. */
.product-card--cover {
  filter: opacity(50%);
  transition: filter 0.3s;
}
.product-card--cover.is-active,
.product-card--cover:hover {
  filter: opacity(100%);
}
.product-card--cover:hover .product-card__title {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ==========================================================================
   Interactive location map
   ========================================================================== */
.location-map {
  padding: var(--section-spacing) 1.5rem;
  background: #FFFFFF;
}
.location-map__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.location-map__graphic {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.location-map__graphic img { width: 100%; display: block; }

/* Pins: bare SVG-Icons, absolut positioniert an den Original-Koordinaten
   (siehe data-left/data-top je Standort), keine zusätzliche Kreis-Umrandung —
   die Icon-SVGs bringen bereits ihren eigenen Kreis/ihre eigene Farbe mit. */
.location-map__pin {
  position: absolute;
  width: 44px; height: 44px;
  border: none;
  background: transparent;
  padding: 0;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease;
}
.location-map__pin:hover,
.location-map__pin:focus-visible { transform: translate(-50%, -50%) scale(1.12); }
.location-map__pin img { width: 100%; height: 100%; display: block; }

/* Klick auf einen Pin öffnet ein Lightbox-Modal (Bild + Text), wie im Original */
.location-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.location-modal.is-active { display: flex; }
.location-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6,37,91,0.55);
}
.location-modal__content {
  position: relative;
  background: #FFFFFF;
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.location-modal__content img { width: 100%; height: 100%; object-fit: cover; }
.location-modal__text { padding: 2rem; }
/* Standort ohne Foto (Arnemuiden): Text über die volle Breite statt halber Spalte. */
.location-modal__content--text-only { grid-template-columns: 1fr; max-width: 480px; }
.location-modal__content--text-only .location-modal__text { padding-right: 3.5rem; }
.location-modal__text h3 { text-transform: uppercase; }
.location-modal__close {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  font-size: 1.2rem;
  line-height: 1;
}
@media (max-width: 700px) {
  .location-map__pin { width: 32px; height: 32px; }
  .location-modal__content { grid-template-columns: 1fr; }
}

/* Original-Vorbild: Unter 768px verschwindet die Klick-Karte komplett und wird
   durch einen swipebaren Karten-Slider ersetzt (Bubble-Leiste + volltext-
   Karten, direkt lesbar ohne Interaktion). Ab 768px bleibt es bei der Karte. */
.location-slider { display: none; }
@media (max-width: 767px) {
  .location-map__graphic { display: none; }
  .location-slider { display: block; }
}
.location-slider__bubbles {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.location-slider__bubble {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: transparent;
  padding: 2px;
  opacity: 0.55;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.location-slider__bubble img { width: 100%; height: 100%; display: block; }
.location-slider__bubble.is-active { opacity: 1; border-color: var(--color-accent); }
.location-slider__cards {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  margin: 0 -1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  -webkit-overflow-scrolling: touch;
}
.location-slider__card {
  flex: 0 0 85%;
  scroll-snap-align: center;
  background: var(--color-split-bg);
  border-radius: var(--radius);
  overflow: hidden;
}
.location-slider__card-image { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.location-slider__card-text { padding: 1.25rem; }
.location-slider__card-text h3 { text-transform: uppercase; margin-bottom: 0.5rem; }
.location-slider__card-text p { margin: 0; }
/* Karte ohne Foto (Arnemuiden): gleich hoch wie die Nachbarkarten, Text dafür senkrecht mittig. */
.location-slider__card--text-only { display: flex; flex-direction: column; justify-content: center; }

/* ==========================================================================
   Contact teaser
   ========================================================================== */
.contact-teaser {
  padding: var(--section-spacing) 1.5rem;
  text-align: center;
}
.contact-teaser__icon { width: 48px; margin: 0 auto 1rem; }
.contact-teaser__email {
  display: block;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(var(--color-primary-rgb), 0.08);
}
.site-footer__links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}
.site-footer__links a:hover { color: var(--color-accent); }
.site-footer__copyright { font-size: 0.8rem; opacity: 0.75; }

/* ==========================================================================
   Breadcrumb / page header (product & category pages)
   ========================================================================== */
.page-header {
  padding: 2.5rem 1.5rem 0;
  max-width: var(--container-max);
  margin: 0 auto;
}
.breadcrumb {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-bottom: 1rem;
}
.breadcrumb a:hover { text-decoration: underline; }

/* Category page hero */
.category-hero {
  position: relative;
  height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem auto 0;
  max-width: var(--container-max);
}
.category-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.category-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(6,37,91,0.45);
}
.category-hero h1 {
  position: relative;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}

/* ==========================================================================
   Product detail page
   ========================================================================== */
.product-detail {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--section-spacing) 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.product-gallery { display: flex; gap: 1rem; }
.product-gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.product-gallery__thumbs img {
  width: 72px;
  border-radius: 0.5rem;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.7;
}
.product-gallery__thumbs img.is-active {
  border-color: var(--color-accent);
  opacity: 1;
}
.product-gallery__main {
  position: relative;
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: #f2f2f2;
}
.product-gallery__main img { width: 100%; }
.product-gallery__zoom {
  position: absolute;
  bottom: 1rem; right: 1rem;
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  font-size: 1.1rem;
  cursor: zoom-in;
  color: var(--color-primary);
  transition: transform 0.15s ease;
}
.product-gallery__zoom:hover { transform: scale(1.08); }

/* Lightbox: großes Bild bei Klick auf den Zoom-Button */
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.image-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 37, 91, 0.8);
}
.image-lightbox__img {
  position: relative;
  max-width: min(90vw, 900px);
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.image-lightbox__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: #FFFFFF;
  font-size: 1.4rem;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.product-vendor {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  opacity: 0.6;
  margin-bottom: 0.5rem;
}
.product-title { margin-bottom: 1rem; }
.product-divider {
  border: none;
  border-top: 1px solid rgba(var(--color-primary-rgb), 0.12);
  margin: 1.25rem 0;
}
.product-description ul { margin: 0.5rem 0 1rem; }
/* Original: Varianten-Unterzeile (z.B. "mild geräuchert") ist eine <h4> mit
   font-weight 400 — bewusst NICHT fett wie die globalen Überschriften. */
.product-variant {
  font-weight: 400;
  font-size: 1.625rem;
  letter-spacing: normal;
  margin-bottom: 0;
}
.nutrition-box {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: #F8F7F2;
  border-radius: var(--radius);
  font-size: 0.8rem;
}
.nutrition-box h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  list-style: none;
  padding: 0;
}
.feature-tags li {
  background: #FFFFFF;
  border: 1px solid rgba(var(--color-primary-rgb), 0.15);
  border-radius: var(--radius-button);
  padding: 0.35rem 0.9rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .product-detail { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Contact form
   ========================================================================== */
.contact-page {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--section-spacing) 1.5rem;
}
.form-row { margin-bottom: 1.25rem; }
.form-row label {
  display: block;
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 0.4rem;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: #F3F3F1;
  border: 1px solid transparent;
  border-radius: 0.6rem;
  font-family: inherit;
  font-size: 0.9rem;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: #FFFFFF;
}
.form-hint { font-size: 0.75rem; opacity: 0.65; margin: -0.5rem 0 1.25rem; }
.form-checkbox { display: flex; gap: 0.6rem; align-items: flex-start; margin-bottom: 1.5rem; }
.form-checkbox input { width: auto; margin-top: 0.2rem; }
.form-checkbox label { font-weight: 400; font-size: 0.8rem; }
.form-success {
  display: none;
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(0,163,65,0.1);
  border: 1px solid var(--color-success);
  color: #045c25;
  border-radius: var(--radius);
  font-size: 0.85rem;
}
.form-success.is-visible { display: block; }
.form-error {
  display: none;
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(248,58,58,0.08);
  border: 1px solid var(--color-error);
  color: #a11818;
  border-radius: var(--radius);
  font-size: 0.85rem;
}
.form-error.is-visible { display: block; }
.form-error a { color: inherit; text-decoration: underline; }
/* Honeypot gegen Spam-Bots: für Menschen unsichtbar, aber nicht display:none (manche Bots überspringen das). */
.form-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

/* ==========================================================================
   Legal pages
   ========================================================================== */
.legal-page {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: var(--section-spacing) 1.5rem;
}
.legal-section { margin-top: 2.25rem; }
.legal-section:first-child { margin-top: 0; }
.legal-page h2 { margin: 0 0 0.75rem; font-size: 1.15rem; }
.legal-page p { font-size: 0.9rem; line-height: 1.7; }
.legal-page ul { font-size: 0.9rem; line-height: 1.7; margin: 0 0 1rem; padding-left: 1.25rem; }
.legal-page li { margin-bottom: 0.25rem; }
.legal-page a { text-decoration: underline; text-underline-offset: 2px; }
.legal-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  font-size: 0.8rem !important;
  opacity: 0.65;
}
.legal-links { list-style: none; padding-left: 0 !important; }
.legal-todo {
  padding: 0.75rem 1rem;
  border: 1px dashed rgba(var(--color-primary-rgb), 0.3);
  border-radius: var(--radius);
  font-style: italic;
  font-size: 0.85rem !important;
}

/* ==========================================================================
   Empty state (e.g. project placeholder page)
   ========================================================================== */
.empty-state {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: var(--section-spacing) 1.5rem;
  text-align: center;
}
