/* ===========================================================
   Da Bergfisch – Stylesheet
   Schriftarten: Überschriften = "Francois One", Fließtext = "Montserrat"
   (lokal gehostet, DSGVO-konform)
   =========================================================== */

:root {
  --blau:        #0e4d5c;   /* Alpen-Quellwasser */
  --blau-dunkel: #082c36;
  --blau-hell:   #1a6b7e;
  --akzent:      #c1121f;   /* Tirol-Rot (Logo & Wappen) */
  --akzent-dark: #9d0e18;
  --tirol-rot:   #c1121f;   /* traditionelles Tiroler Rot */
  --gruen:       #4f7d5a;
  --hell:        #f4f7f7;
  --weiss:       #ffffff;
  --text:        #233030;
  --text-soft:   #5c6b6b;
  --linie:       #dde6e6;
  --schatten:    0 8px 28px rgba(8, 44, 54, .12);
  --schatten-gr: 0 18px 50px rgba(8, 44, 54, .18);
  --radius:      16px;

  /* Im Admin (Startseiten-Editor) anpassbare Größen – Standardwerte: */
  --logo-h:      104px;   /* Höhe des Header-Logos */
  --hero-h:      92vh;    /* Höhe des Startbilds (Hero) */
  --titel-scale: 1;       /* Skalierung großer Überschriften */
  --bild-ar:     4 / 3;   /* Seitenverhältnis der Text-Bild-Blöcke */
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.75;
  background: var(--weiss);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .font-display {
  font-family: 'Francois One', 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: .4px;
}

a { color: var(--blau); text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: min(1180px, 92vw); margin-inline: auto; }
.container--schmal { width: min(880px, 92vw); }

.section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.section--hell { background: var(--hell); }
.section--blau { background: var(--blau); color: #eaf4f5; }
.section--blau h2 { color: #fff; }
/* engere Abstände zwischen zwei zusammengehörenden Blöcken */
.section--eng-unten { padding-bottom: clamp(1.8rem, 3.5vw, 3rem); }
.section--eng-oben  { padding-top: clamp(1.8rem, 3.5vw, 3rem); }
/* unsichtbarer Sprung-Anker (berücksichtigt die fixe Kopfleiste) */
.sprung-anker { display: block; height: 0; scroll-margin-top: 90px; }

.section-kopf { text-align: center; max-width: 760px; margin: 0 auto 3rem; }
.section-kopf h2 {
  font-size: calc(clamp(1.9rem, 4vw, 2.9rem) * var(--titel-scale, 1));
  color: var(--blau-dunkel);
  text-transform: uppercase;
}
.section--blau .section-kopf h2 { color: #fff; }
.section-kopf p { color: var(--text-soft); font-size: 1.08rem; margin-top: .7rem; }
.section--blau .section-kopf p { color: #b9d6db; }

.kicker {
  display: inline-block;
  font-family: 'Francois One', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: .94rem;   /* +15% – rote Kicker-Schrift überall etwas größer */
  color: var(--akzent);
  margin-bottom: .6rem;
  position: relative;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: 'Francois One', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
  line-height: 1.1;
  white-space: nowrap;
  padding: .95rem 2rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn--akzent {
  background: linear-gradient(135deg, #d11a26 0%, #a50f1a 100%);
  color: #fff; box-shadow: 0 10px 26px rgba(193,18,31,.42);
}
.btn--akzent:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(193,18,31,.55); filter: brightness(1.08); }
.btn--akzent:active { transform: translateY(-1px); }
.btn--weiss { background: #fff; color: var(--blau-dunkel); box-shadow: var(--schatten); }
.btn--weiss:hover { transform: translateY(-3px); box-shadow: var(--schatten-gr); }
.btn--outline { background: rgba(255,255,255,.08); border-color: #fff; color: #fff; backdrop-filter: blur(2px); }
.btn--outline:hover { background: #fff; color: var(--blau-dunkel); transform: translateY(-3px); }
.btn--gross { padding: 1.15rem 2.6rem; font-size: 1.12rem; }
/* dezenter Glanz-Effekt auf Akzent-Buttons */
.btn--akzent { position: relative; overflow: hidden; }
.btn--akzent::after {
  content: ''; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg); transition: left .6s ease;
}
.btn--akzent:hover::after { left: 130%; }

/* ---------- Scroll-Animation ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===========================================================
   Header / Navigation
   =========================================================== */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  border-bottom: 0;
}
/* Rot-weiß-rote Linien oben UND unten – verlängern die Streifen aus dem Logo
   über die gesamte Breite (statt des früheren schmalen Strichs ganz oben). */
.header::before,
.header::after {
  content: ''; display: block; height: 8px;
  background: linear-gradient(to bottom,
    var(--tirol-rot) 0 3px, #ffffff 3px 5px, var(--tirol-rot) 5px 8px);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .55rem 0;
}
/* Logo links an den Rand (mit kleinem Abstand) und deutlich größer */
.nav__logo { margin-left: -1.5rem; }
.nav__logo img { height: var(--logo-h, 104px); width: auto; display: block; }
.nav__links { display: flex; gap: 1.7rem; align-items: center; list-style: none; }
.nav__links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600; font-size: .95rem;
  color: var(--text); padding: .3rem 0; position: relative;
}
.nav__links a:not(.btn)::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--akzent); transition: width .25s ease;
}
.nav__links a:not(.btn):hover::after { width: 100%; }
.nav__links a:not(.btn):hover { color: var(--blau); }
/* Bestell-Button: Schrift bleibt bei Mouse-over weiß */
.nav__links a.btn:hover { color: #fff; }
.nav__links .btn { color:#fff; padding: .6rem 1.4rem; font-size: .9rem; letter-spacing: .5px; }
.nav__toggle {
  display: none; background: none; border: 0; cursor: pointer;
  font-size: 1.8rem; color: var(--blau-dunkel);
}

/* ===========================================================
   Hero
   =========================================================== */
.hero {
  position: relative; min-height: var(--hero-h, 92vh); overflow: hidden;
  display: flex; align-items: center;
  color: #fff; text-align: center;
  background: var(--blau-dunkel);
}
/* Zwei Bild-Ebenen, die sich sanft abwechseln (Wasserfassung ↔ Fische im Becken) */
.hero__slides { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  opacity: 0; transition: opacity 1.6s ease;
}
.hero__slide.is-active { opacity: 1; }
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(rgba(8,44,54,.5), rgba(8,44,54,.75));
}
.hero__inner { position: relative; z-index: 2; width: min(920px, 92vw); margin: 0 auto; padding: 5rem 0 6.5rem; }
@media (prefers-reduced-motion: reduce) {
  .hero__slide { transition: none; }
}
.hero h1 {
  font-size: calc(clamp(2.5rem, 6.2vw, 4.6rem) * var(--titel-scale, 1));
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero p.lead {
  font-size: clamp(1.12rem, 2.3vw, 1.55rem);
  margin: 1.3rem auto 2.2rem; max-width: 700px;
  text-shadow: 0 1px 12px rgba(0,0,0,.45);
}
.hero__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Trust-Leiste unter Hero */
.trustbar {
  background: var(--blau-dunkel); color: #d7eaee;
}
.trustbar__inner {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.6rem;
  padding: 1.1rem 0; text-align: center;
}
.trustbar span {
  font-size: .92rem; font-weight: 600; display: flex; align-items: center; gap: .5rem;
}
.trustbar span b { color: var(--akzent); font-family: 'Francois One', sans-serif; font-weight: 400; }

/* ===========================================================
   Alternierende Text-Bild-Blöcke
   =========================================================== */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.8rem, 4vw, 3.5rem); align-items: center;
}
.split + .split { margin-top: clamp(2.5rem, 5vw, 4.5rem); }
.split__bild { position: relative; }
.split__bild img {
  width: 100%; border-radius: var(--radius); box-shadow: var(--schatten-gr);
  aspect-ratio: var(--bild-ar, 4 / 3); object-fit: cover;
}
/* stärker ins Bild zoomen / Ränder beschneiden */
.split__bild--zoom { overflow: hidden; border-radius: var(--radius); box-shadow: var(--schatten-gr); }
.split__bild--zoom img { transform: scale(1.3); transform-origin: center; }
.split__bild .tag {
  position: absolute; bottom: 1rem; left: 1rem;
  background: rgba(8,44,54,.85); color:#fff; padding:.45rem 1rem; border-radius: 40px;
  font-family:'Francois One',sans-serif; font-size:.82rem; text-transform:uppercase; letter-spacing:1px;
}
.split--reverse .split__text { order: 2; }
.split h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--blau-dunkel); text-transform: uppercase; margin-bottom: .8rem; }
.split p { color: var(--text-soft); margin-bottom: 1rem; }
.split ul { list-style: none; margin-top: .6rem; }
.split ul li { padding-left: 1.7rem; position: relative; margin-bottom: .5rem; color: var(--text); }
.split ul li::before { content: '✓'; position: absolute; left: 0; color: var(--akzent); font-weight: 700; }

/* ===========================================================
   Fakten
   =========================================================== */
.fakten-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.3rem;
}
.fakt {
  background: #fff; border: 1px solid var(--linie);
  border-radius: var(--radius); padding: 1.7rem;
  box-shadow: var(--schatten); transition: transform .2s ease, box-shadow .2s ease;
}
.fakt:hover { transform: translateY(-6px); box-shadow: var(--schatten-gr); }
.fakt__icon {
  width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #fbe0e0, #f3c4c4); font-size: 1.6rem; margin-bottom: .9rem;
}
.fakt h3 { font-size: 1.12rem; color: var(--blau-dunkel); margin-bottom: .4rem; text-transform: uppercase; }
.fakt p { color: var(--text-soft); font-size: .96rem; }

/* ---------- Highlight Seehöhe (Parallax) ---------- */
.hoehe {
  position: relative; color:#fff; text-align:center;
  background: linear-gradient(rgba(8,44,54,.72), rgba(8,44,54,.82)),
              url("../images/hero-anlage.jpg") center/cover fixed;
  padding: clamp(4rem, 9vw, 7rem) 0;
}
.hoehe__zahl { font-family:'Francois One',sans-serif; font-size: clamp(3.4rem, 11vw, 7rem); color: var(--akzent); line-height:1; text-shadow: 0 4px 24px rgba(0,0,0,.35); }
.hoehe h2 { color:#fff; font-size: calc(clamp(1.8rem,4vw,2.7rem) * var(--titel-scale, 1)); margin:.4rem 0 1rem; text-transform:uppercase; }
.hoehe p { color:#d7e8eb; max-width: 680px; margin: 0 auto 1.8rem; }

/* ===========================================================
   Prozess / So funktioniert's
   =========================================================== */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.4rem; }
.step { text-align: center; position: relative; padding: 1.4rem 1rem; }
.step__num {
  width: 66px; height: 66px; margin: 0 auto 1rem; border-radius: 50%;
  background: #fff; color: var(--akzent); border: 3px solid var(--akzent);
  font-family:'Francois One',sans-serif; font-size: 1.7rem;
  display:flex; align-items:center; justify-content:center; box-shadow: var(--schatten);
}
.section--blau .step__num { background: var(--blau-dunkel); }
.step h3 { font-size: 1.15rem; text-transform: uppercase; margin-bottom: .4rem; color:#fff; }
.section:not(.section--blau) .step h3 { color: var(--blau-dunkel); }
.step p { font-size: .95rem; color: #cfe5e9; }
.section:not(.section--blau) .step p { color: var(--text-soft); }

/* ===========================================================
   Shop / Bestellung
   =========================================================== */
.produkte-grid { display: flex; flex-direction: column; gap: 2.6rem; }
.produkt-karte { display: grid; grid-template-columns: 1fr 1fr; gap: 2.6rem; align-items: start; }
.produkte-laden { text-align: center; color: var(--text-soft); padding: 2rem 0; }
.shop { display: grid; grid-template-columns: 1fr 1fr; gap: 2.6rem; align-items: start; }
.shop__bild {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--schatten-gr);
  position: relative; background: linear-gradient(160deg,#0e4d5c,#082c36);
  aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center;
}
.shop__bild img { width: 100%; height: 100%; object-fit: contain; }
.shop__badge {
  position: absolute; top: 1rem; left: 1rem; z-index:2;
  background: var(--akzent); color: #fff;
  font-family: 'Francois One', sans-serif; text-transform: uppercase;
  padding: .45rem 1.1rem; border-radius: 40px; font-size: .85rem; box-shadow: var(--schatten);
}
.bestellkarte {
  background: #fff; border: 1px solid var(--linie);
  border-radius: var(--radius); padding: 2.2rem; box-shadow: var(--schatten-gr);
}
.bestellkarte h3 { font-size: 1.6rem; color: var(--blau-dunkel); text-transform: uppercase; }
.bestellkarte .sterne { color: var(--akzent); font-size: 1rem; margin: .2rem 0 .2rem; letter-spacing:2px; }
.bestellkarte .preis {
  font-family: 'Francois One', sans-serif; color: var(--akzent);
  font-size: 1.9rem; margin: .3rem 0 1.1rem;
}
.bestellkarte .preis small { font-size:.9rem; color:var(--text-soft); }
.feldgruppe { margin-bottom: 1.1rem; }
.feldgruppe label { display:block; font-weight:600; font-size:.9rem; margin-bottom:.4rem; }
.feldgruppe input, .feldgruppe textarea, .feldgruppe select {
  width: 100%; padding: .75rem .95rem; border: 1px solid var(--linie);
  border-radius: 10px; font-family: inherit; font-size: .95rem; color: var(--text);
}
.feldgruppe input:focus, .feldgruppe textarea:focus { outline: 2px solid var(--blau-hell); border-color: transparent; }
.menge { display: flex; align-items: center; gap: .8rem; }
.menge button {
  width: 46px; height: 46px; border-radius: 10px; border: 1px solid var(--linie);
  background: var(--hell); font-size: 1.4rem; cursor: pointer; color: var(--blau-dunkel);
  transition: background .15s ease;
}
.menge button:hover { background: #e7eeee; }
.menge input { width: 84px; text-align: center; font-weight: 600; }

/* Verbundener Mengen-Counter: −, Zahl und + sitzen als eine Einheit zusammen */
.menge--verbunden { gap: 0; width: max-content; border: 1px solid var(--linie); border-radius: 10px; overflow: hidden; }
.menge--verbunden button { border: 0; border-radius: 0; height: 48px; }
.menge--verbunden button[data-menge="minus"] { border-right: 1px solid var(--linie); }
.menge--verbunden button[data-menge="plus"] { border-left: 1px solid var(--linie); }
.menge--verbunden input {
  border: 0; height: 48px; border-radius: 0; background: #fff;
  -moz-appearance: textfield;
}
.menge--verbunden input::-webkit-outer-spin-button,
.menge--verbunden input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Preis pro 100 g – kleine Info unter der Bestell-Option */
.grundpreis-info {
  margin: -.4rem 0 1.1rem; font-size: .88rem; color: var(--text-soft);
  text-align: center;
}
.grundpreis-info strong { color: var(--blau-dunkel); }
.summe {
  background: linear-gradient(135deg, #f4f7f7, #eaf1f1); border-radius: 12px; padding: 1.1rem 1.3rem;
  margin: 1.3rem 0; display: flex; justify-content: space-between; align-items: center;
  border: 1px solid var(--linie);
}
.summe span:first-child { color: var(--text-soft); font-weight: 600; }
.summe .summe__betrag { font-family: 'Francois One', sans-serif; font-size: 1.8rem; color: var(--blau-dunkel); }
.hinweis-box {
  background: #fff8f1; border: 1px solid #f3d9bf; border-left: 4px solid var(--akzent);
  border-radius: 10px; padding: .9rem 1.1rem; font-size: .88rem; color: #7a5a36; margin-bottom: 1.2rem;
}
.bezahlarten { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1rem; justify-content:center; }
.bezahlarten span {
  font-size: .72rem; font-weight: 700; color: var(--text-soft);
  background: var(--hell); border: 1px solid var(--linie);
  padding: .3rem .6rem; border-radius: 6px;
}
.sicher-zeile {
  display:flex; align-items:center; justify-content:center; gap:.5rem;
  margin-top:.9rem; font-size:.82rem; color: var(--gruen); font-weight:600;
}
.platzhalter {
  background: #fff4d6; border: 1px dashed #d9a93f; border-radius: 8px;
  padding: .6rem .8rem; font-size: .85rem; color: #7a5b15; margin-top:.8rem;
}

/* Alternative Zahlung: Überweisung (Vorkasse) */
.ueberweisung { margin-top: 1.1rem; border: 1px solid var(--linie); border-radius: 12px; background: #fff; overflow: hidden; }
.ueberweisung[hidden] { display: none; }
.ueberweisung summary {
  cursor: pointer; list-style: none; padding: .85rem 1.1rem;
  font-weight: 700; color: var(--blau-dunkel); background: var(--hell);
}
.ueberweisung summary::-webkit-details-marker { display: none; }
.ueberweisung summary::after { content: '▾'; float: right; transition: transform .2s ease; }
.ueberweisung[open] summary::after { transform: rotate(180deg); }
.ueberweisung__inhalt { padding: 1rem 1.1rem 1.2rem; font-size: .9rem; }
.ueberweisung .bank { display: grid; gap: .25rem; margin: .8rem 0; }
.ueberweisung .bank > div {
  display: flex; justify-content: space-between; gap: 1rem;
  border-bottom: 1px dashed var(--linie); padding: .35rem 0;
}
.ueberweisung .bank span { color: var(--text-soft); }
.ueberweisung .bank strong { color: var(--blau-dunkel); text-align: right; word-break: break-word; }
.ueberweisung__hinweis { color: var(--text-soft); margin-top: .6rem; }
/* Liefertermin & Stückzahl */
.liefer-info {
  background: #eef5f1; border: 1px solid #cfe2d7; border-radius: 10px;
  padding: .7rem 1rem; font-size: .9rem; color: var(--blau-dunkel); margin-bottom: .9rem;
}
.lager-info {
  background: #fdeceb; border: 1px solid #f1c7c4; border-left: 4px solid var(--tirol-rot);
  border-radius: 10px; padding: .7rem 1rem; font-size: .9rem; color: #7a2a26; margin-bottom: 1.1rem;
}
.lager-info--aus { background: #f4f7f7; border-color: var(--linie); border-left-color: var(--text-soft); color: var(--text-soft); }
.shop__badge--aus { background: var(--text-soft); }

/* ===========================================================
   Impressionen-Galerie
   =========================================================== */
.galerie {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem;
}
.galerie a {
  display: block; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--schatten); aspect-ratio: 4/3; position: relative;
}
.galerie img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.galerie a:hover img { transform: scale(1.08); }
.galerie a::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,44,54,.25), transparent 50%);
  opacity: 0; transition: opacity .3s ease;
}
.galerie a:hover::after { opacity: 1; }
.galerie .gross { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
@media (max-width: 600px) { .galerie .gross { grid-column: span 1; grid-row: span 1; } }

/* ===========================================================
   Versprechen-Band
   =========================================================== */
.versprechen { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.6rem; }
.versprechen .v {
  text-align: center; padding: 1.4rem;
}
.versprechen .v .ic {
  width: 70px; height: 70px; margin: 0 auto 1rem; border-radius: 50%;
  background: linear-gradient(135deg, #fbe0e0, #f1bcbc); display: flex; align-items: center;
  justify-content: center; font-size: 2rem;
}
.versprechen .v h3 { color: var(--blau-dunkel); text-transform: uppercase; font-size: 1.15rem; margin-bottom: .5rem; }
.versprechen .v p { color: var(--text-soft); font-size: .96rem; }

/* ===========================================================
   Motivation
   =========================================================== */
.motivation { max-width: 820px; margin: 0 auto; }
.motivation p { margin-bottom: 1.15rem; color: #d7e8eb; font-size: 1.07rem; }
.motivation .frage { font-family: 'Francois One', sans-serif; font-size: 1.45rem; color: var(--akzent); }
.statbar { display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; justify-content: center; margin-top: 2.4rem; }
.statbar .stat { text-align: center; }
.statbar .stat b { display:block; font-family:'Francois One',sans-serif; font-size:2.6rem; color:#fff; }
.statbar .stat span { color:#b9d6db; font-size:.9rem; }

/* ===========================================================
   Gesundheit (Nährwerte)
   =========================================================== */
.naehr { display:grid; grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); gap:1.2rem; margin-top:1rem; }
.naehr .karte {
  background:#fff; border:1px solid var(--linie); border-radius:var(--radius);
  padding:1.5rem; text-align:center; box-shadow:var(--schatten);
}
.naehr .karte .ic { font-size:2rem; }
.naehr .karte b { display:block; font-family:'Francois One',sans-serif; color:var(--blau-dunkel); font-size:1.15rem; margin:.4rem 0 .2rem; }
.naehr .karte span { color:var(--text-soft); font-size:.9rem; }

/* ===========================================================
   FAQ
   =========================================================== */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { background:#fff; border:1px solid var(--linie); border-radius:12px; margin-bottom:.8rem; overflow:hidden; box-shadow: var(--schatten); }
.faq__q {
  width:100%; text-align:left; background:none; border:0; cursor:pointer;
  padding:1.1rem 1.3rem; font-family:'Montserrat',sans-serif; font-weight:700; font-size:1.02rem;
  color:var(--blau-dunkel); display:flex; justify-content:space-between; align-items:center; gap:1rem;
}
.faq__q .plus { color:var(--akzent); font-size:1.5rem; transition: transform .25s ease; flex-shrink:0; }
.faq__item.open .faq__q .plus { transform: rotate(45deg); }
.faq__a { max-height:0; overflow:hidden; transition: max-height .3s ease; }
.faq__a p { padding: 0 1.3rem 1.2rem; color: var(--text-soft); }

/* ===========================================================
   Banner (Call-to-Action)
   =========================================================== */
.cta-banner {
  background: linear-gradient(rgba(8,44,54,.82), rgba(8,44,54,.88)),
              url("../images/fische-06.jpg") center/cover fixed;
  color:#fff; text-align:center; padding: clamp(3.5rem,7vw,5.5rem) 0;
}
.cta-banner h2 { color:#fff; font-size: clamp(1.8rem,4vw,2.7rem); text-transform:uppercase; margin-bottom:1rem; }
.cta-banner p { color:#d7e8eb; max-width:640px; margin:0 auto 1.8rem; }

/* ===========================================================
   Kontakt
   =========================================================== */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.kontakt-karte { background: #fff; border: 1px solid var(--linie); border-radius: var(--radius); padding: 2.1rem; box-shadow: var(--schatten); }
.kontakt-karte h3 { color: var(--blau-dunkel); text-transform: uppercase; margin-bottom: 1.1rem; }
.kontakt-zeile { display: flex; gap: .9rem; margin-bottom: 1rem; align-items: flex-start; }
.kontakt-zeile .ic {
  color: #fff; background: var(--akzent); width:38px;height:38px;border-radius:10px;
  display:flex;align-items:center;justify-content:center; flex-shrink:0; font-size:1.1rem;
}

/* ===========================================================
   Footer
   =========================================================== */
.footer { background: var(--blau-dunkel); color: #aac6cc; padding: 3.5rem 0 1.5rem; }
.footer__grid { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; }
.footer h4 { color: #fff; text-transform: uppercase; margin-bottom: .9rem; font-size: 1.1rem; }
.footer a { color: #aac6cc; }
.footer a:hover { color: #fff; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: .45rem; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.2rem; padding-top: 1.3rem; text-align: center; font-size: .85rem; }

/* ===========================================================
   Cookie / DSGVO Banner
   =========================================================== */
.cookie {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: var(--blau-dunkel); color: #e6f1f3;
  padding: 1.2rem; box-shadow: 0 -6px 24px rgba(0,0,0,.25);
  transform: translateY(120%); transition: transform .4s ease;
}
.cookie.show { transform: translateY(0); }
.cookie__inner { width: min(1100px, 92vw); margin: 0 auto; display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; justify-content: center; }
.cookie p { font-size: .9rem; flex: 1 1 380px; }
.cookie a { color: var(--akzent); text-decoration: underline; }
.cookie__btns { display: flex; gap: .7rem; }
.cookie .btn { padding: .6rem 1.3rem; font-size: .85rem; }

/* ---------- Inhalts-Seiten (Impressum/Datenschutz) ---------- */
.legal { max-width: 820px; margin: 0 auto; }
.legal h1 { font-size: 2.2rem; color: var(--blau-dunkel); text-transform: uppercase; margin-bottom: 1.4rem; }
.legal h2 { font-size: 1.3rem; color: var(--blau); margin: 1.8rem 0 .6rem; }
.legal p, .legal li { color: var(--text-soft); margin-bottom: .7rem; }
.legal ul { padding-left: 1.3rem; }

/* ===========================================================
   Zur-Bestellung-Sprungbutton (mobil)
   =========================================================== */
.float-cta {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  display: none; box-shadow: var(--schatten-gr);
}

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 900px) {
  .split, .shop, .produkt-karte, .kontakt-grid { grid-template-columns: 1fr; }
  .split--reverse .split__text { order: 0; }
  .split__bild { order: -1; }
  .shop__bild { aspect-ratio: 4/3; }
}
@media (max-width: 860px) {
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: #fff; gap: 0;
    border-bottom: 1px solid var(--linie);
    max-height: 0; overflow: hidden; transition: max-height .35s ease;
    box-shadow: var(--schatten);
  }
  .nav__links.open { max-height: 520px; padding: .6rem 0; }
  .nav__links li { width: 100%; text-align: center; }
  .nav__links a { display: block; padding: .85rem 0; }
  .nav__links a:not(.btn)::after { display: none; }
  .nav__links .btn { margin: .5rem 1.2rem; }
  .nav__toggle { display: block; }
  .float-cta { display: inline-block; }
}
@media (max-width: 540px) {
  .hero { min-height: 86vh; }
  .nav__logo { margin-left: -.3rem; }   /* auf schmalen Handys nicht über den Rand */
  .nav__logo img { height: 74px; }
  .bestellkarte, .kontakt-karte { padding: 1.5rem; }
  .trustbar__inner { gap: .6rem 1.4rem; }
  .trustbar span { font-size: .82rem; }
  .btn { padding: .85rem 1.6rem; font-size: .95rem; }
  .hero__btns { flex-direction: column; align-items: stretch; }
}

/* ===========================================================
   Bio-Zertifikat (Impressionen)
   =========================================================== */
.zertifikat {
  display: grid; grid-template-columns: 220px 1fr; gap: 1.8rem; align-items: center;
  margin-top: 2.4rem; padding: 1.8rem; background: #fff;
  border: 1px solid var(--linie); border-radius: 16px; box-shadow: var(--schatten);
}
.zertifikat__bild img { width: 100%; border-radius: 10px; display: block; }
.zertifikat__text h3 { color: var(--blau-dunkel); text-transform: uppercase; margin-bottom: .5rem; }
.zertifikat__text p { color: var(--text-soft); margin-bottom: 1rem; }
.zertifikat__text .btn--outline { background: var(--blau); border-color: var(--blau); color: #fff; padding: .7rem 1.4rem; font-size: .9rem; }
.zertifikat__text .btn--outline:hover { background: var(--blau-dunkel); color: #fff; }
@media (max-width: 600px) { .zertifikat { grid-template-columns: 1fr; text-align: center; } .zertifikat__bild { max-width: 220px; margin: 0 auto; } }

/* ===========================================================
   Warenkorb (schwebender Button + Drawer + Kasse)
   =========================================================== */
.warenkorb-fab {
  position: fixed; right: 18px; bottom: 78px; z-index: 61;
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--akzent); color: #fff; border: 0; cursor: pointer;
  padding: .9rem 1.3rem; border-radius: 40px; font-weight: 700; font-size: 1rem;
  box-shadow: var(--schatten-gr);
}
.warenkorb-fab:hover { filter: brightness(1.08); transform: translateY(-2px); }
.warenkorb-fab__anzahl {
  background: #fff; color: var(--akzent); border-radius: 50%;
  min-width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700; padding: 0 .3rem;
}

.wk-overlay {
  position: fixed; inset: 0; z-index: 200; background: rgba(8,44,54,.55);
  opacity: 0; visibility: hidden; transition: opacity .25s;
}
.wk-overlay.an { opacity: 1; visibility: visible; }

.warenkorb {
  position: fixed; top: 0; right: 0; z-index: 201;
  width: min(440px, 100%); height: 100%; background: #fff;
  box-shadow: -8px 0 40px rgba(0,0,0,.25);
  transform: translateX(100%); transition: transform .3s ease;
  display: flex; flex-direction: column;
}
.warenkorb.offen { transform: translateX(0); }
.warenkorb__kopf {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.4rem; border-bottom: 1px solid var(--linie); flex: 0 0 auto;
}
.warenkorb__kopf h3 { color: var(--blau-dunkel); font-size: 1.25rem; }
.warenkorb__schliessen {
  border: 0; background: var(--hell); width: 40px; height: 40px; border-radius: 10px;
  font-size: 1.1rem; cursor: pointer; color: var(--blau-dunkel);
}
.warenkorb__schliessen:hover { background: #e7eeee; }
.warenkorb__koerper { padding: 1.3rem 1.4rem; overflow-y: auto; flex: 1 1 auto; }

.wk-leer { color: var(--text-soft); text-align: center; padding: 2rem 0; }
.wk-zeile {
  display: grid; grid-template-columns: 56px 1fr auto; grid-template-areas: "bild info menge" "bild summe weg";
  gap: .3rem .8rem; align-items: center; padding: .9rem 0; border-bottom: 1px solid var(--linie);
}
.wk-zeile img { grid-area: bild; width: 56px; height: 56px; object-fit: cover; border-radius: 8px; }
.wk-zeile__info { grid-area: info; }
.wk-zeile__info b { display: block; color: var(--blau-dunkel); font-size: .98rem; line-height: 1.2; }
.wk-zeile__info span { color: var(--text-soft); font-size: .84rem; }
.wk-zeile__summe { grid-area: summe; color: var(--blau-dunkel); font-weight: 700; font-size: .95rem; }
.wk-menge { grid-area: menge; }
.wk-menge.menge--verbunden button { height: 34px; width: 34px; font-size: 1.1rem; }
.wk-menge.menge--verbunden input { width: 40px; height: 34px; font-size: .9rem; }
.wk-loeschen {
  grid-area: weg; justify-self: end; border: 0; background: transparent; color: var(--text-soft);
  cursor: pointer; font-size: 1rem; padding: .2rem .4rem;
}
.wk-loeschen:hover { color: var(--akzent); }

.wk-summe-zeile {
  display: flex; justify-content: space-between; align-items: center;
  margin: 1.2rem 0 1rem; padding-top: 1rem; border-top: 2px solid var(--linie);
  font-size: 1.1rem; color: var(--blau-dunkel); font-weight: 700;
}
.wk-summe { font-family: 'Francois One', sans-serif; color: var(--akzent); font-size: 1.4rem; }
.wk-fuss-hinweis { font-size: .82rem; color: var(--text-soft); margin-top: .9rem; text-align: center; }
.wk-titel { color: var(--blau-dunkel); text-transform: uppercase; font-size: 1.1rem; margin-bottom: 1rem; }
.wk-zurueck {
  border: 0; background: transparent; color: var(--blau); cursor: pointer;
  font-weight: 600; font-size: .9rem; padding: 0 0 1rem; display: inline-block;
}
.wk-zurueck:hover { color: var(--akzent); }
.wk-check {
  display: flex; gap: .6rem; align-items: flex-start; font-size: .86rem; color: var(--text-soft);
  margin: .4rem 0 1.2rem; line-height: 1.45; cursor: pointer;
}
.wk-check input { margin-top: .2rem; width: 18px; height: 18px; flex: 0 0 auto; accent-color: var(--akzent); }
.wk-check a { color: var(--akzent); text-decoration: underline; }
.wk-status { margin-top: .8rem; font-size: .9rem; color: var(--text-soft); text-align: center; }
.wk-status.fehler { color: var(--akzent); font-weight: 600; }

.wk-fertig-icon { font-size: 2.6rem; text-align: center; }
#wk-fertig-inhalt h3 { color: var(--blau-dunkel); text-align: center; margin: .4rem 0 1rem; }
#wk-fertig-inhalt p { color: var(--text-soft); margin-bottom: 1rem; font-size: .95rem; }
#wk-fertig-inhalt strong { color: var(--blau-dunkel); }
.wk-bank { background: var(--hell); border-radius: 12px; padding: 1rem 1.2rem; margin: 1rem 0; }
.wk-bank > div { display: flex; justify-content: space-between; gap: 1rem; padding: .35rem 0; border-bottom: 1px dashed var(--linie); font-size: .92rem; }
.wk-bank > div:last-child { border-bottom: 0; }
.wk-bank span { color: var(--text-soft); }
.wk-bank strong { color: var(--blau-dunkel); text-align: right; word-break: break-word; }
.wk-fertig-hinweis { background: #eef6ef; border-radius: 10px; padding: .9rem 1rem; color: #2f6b45 !important; font-size: .9rem; }

@media (max-width: 540px) { .warenkorb-fab__text { display: none; } }
