/* ═══════════════════════════════════════════════
   Imkerei Morscher — Shop
   Ergänzt style.css, überschreibt nichts Bestehendes
   außer den vier festen Bild-Seitenverhältnissen.
   ═══════════════════════════════════════════════ */

/* ── Bild-Seitenverhältnisse zyklisch statt für genau 4 Karten ──
   (style.css setzt sie per nth-child(1)/(2) — das bricht ab dem
   fünften Produkt, deshalb hier generisch.) */
.products-col .product-card:nth-child(4n+1) .product-photo { aspect-ratio: 4 / 5; }
.products-col .product-card:nth-child(4n+2) .product-photo { aspect-ratio: 1 / 1; }
.products-col .product-card:nth-child(4n+3) .product-photo { aspect-ratio: 3 / 4; }
.products-col .product-card:nth-child(4n+4) .product-photo { aspect-ratio: 5 / 6; }

/* ── Hilfsklassen ── */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ── Warenkorb in der Navigation ── */
.nav-cart { display: inline-flex; align-items: center; gap: 8px; }
.cart-count {
  display: inline-flex;
  align-items: center; justify-content: center;
  min-width: 20px; height: 20px;
  padding: 0 6px;
  border-radius: 10px;
  background: var(--gold);
  color: #fff;
  font-size: 11px; font-weight: 700; line-height: 1;
}

/* ── Kaufbereich auf der Produktkarte ── */
.product-buy {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--sand);
}

/* .product-body p aus style.css ist spezifischer als .product-price allein */
.product-body .product-price {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.2;
  color: var(--forest);
  margin-bottom: 16px;
}
.product-size {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--textlight);
  margin-top: 4px;
}
/* Zusatz bei Ware mit Richtpreis: „ca. 300 g · 40,00 €/kg · Endpreis nach dem Wiegen" */
.product-price-note {
  display: block;
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.5;
  color: var(--amber);
  margin-top: 6px;
}

.product-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
}
.product-weight,
.product-qty,
.cart-qty {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text);
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: var(--r);
  padding: 10px 12px;
  transition: border-color var(--t) var(--ease);
}
.product-weight { flex: 1 1 150px; min-width: 0; }
.product-qty    { width: 72px; }
.cart-qty       { width: 72px; }
.product-weight:focus,
.product-qty:focus,
.cart-qty:focus { outline: none; border-color: var(--gold); }

.btn-add { flex: 1 1 auto; white-space: nowrap; }

/* Buttons müssen ihren Hintergrund selbst setzen: iOS Safari malt sonst
   den blauen Systemstil über <button>-Elemente (bei <a> fällt das nicht auf,
   weil .btn-outline dort nur Rahmen und Schriftfarbe braucht). */
button.btn-outline,
button.btn-primary,
button.btn-submit,
.cart-remove,
.nav-toggle {
  -webkit-appearance: none;
  appearance: none;
  font: inherit;
  cursor: pointer;
  background-image: none;
}
.nav-toggle { background-color: transparent; }
button.btn-outline {
  background-color: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
button.btn-outline:hover {
  background-color: var(--green);
  color: var(--cream);
}
button.btn-primary {
  background-color: var(--forest);
  color: var(--cream);
  border: none;
}
button.btn-primary:hover { background-color: var(--gold); color: var(--forest); }
button.btn-submit { background-color: var(--green); color: var(--cream); border: none; }
.cart-remove { background-color: transparent; border: none; }

/* ── Ausverkauft ── */
.product-card.is-soldout .product-photo img { filter: grayscale(0.7) opacity(0.7); }
.soldout-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(42,32,24,0.86);
  color: var(--cream);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 2px;
}
.product-body .product-soldout-note {
  font-size: 14px;
  color: var(--textmid);
  margin-bottom: 0;
}
.product-soldout-note a { color: var(--gold-text); text-decoration: underline; }

/* ── Shop-Unterseiten ── */
.shop-page { background: var(--cream); }
.shop-main { padding: 140px 0 100px; }
.shop-head { text-align: center; }
.shop-head .section-title { margin-bottom: 40px; }
.shop-body { padding-bottom: 20px; }

.shop-h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--forest);
  margin: 40px 0 18px;
}

.shop-flash {
  background: rgba(201,162,39,0.12);
  border-left: 3px solid var(--gold);
  padding: 14px 18px;
  margin-bottom: 24px;
  font-size: 15px;
  color: var(--textmid);
}
.shop-flash--warn {
  background: rgba(192,114,24,0.12);
  border-left-color: var(--amber);
}
.shop-errors { list-style: none; }
.shop-errors li + li { margin-top: 6px; }

.shop-note {
  font-size: 14px;
  color: var(--textmid);
  background: var(--cream2);
  padding: 16px 18px;
  border-radius: var(--r);
  margin: 24px 0;
}
.shop-empty {
  text-align: center;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--textmid);
  padding: 40px 0;
}
.shop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
}

/* ── Warenkorb-Tabelle ── */
.cart-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.cart-table th {
  text-align: left;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--textlight);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--sand);
}
.cart-table td {
  padding: 18px 8px 18px 0;
  border-bottom: 1px solid var(--sand);
  vertical-align: middle;
}
.cart-product { display: flex; gap: 14px; align-items: center; }
.cart-thumb {
  width: 56px; height: 56px;
  object-fit: cover;
  border-radius: var(--r);
}
.cart-variant { font-size: 13px; color: var(--textlight); }
.cart-remove-cell { text-align: right; }
.cart-remove {
  background: none; border: none;
  font-size: 22px; line-height: 1;
  color: var(--textlight);
  cursor: pointer;
  padding: 4px 8px;
  transition: color var(--t) var(--ease);
}
.cart-remove:hover { color: var(--amber); }

.cart-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 28px;
}
.cart-sum {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--forest);
  text-align: right;
}
.cart-sum strong { margin-left: 10px; }
.cart-sum-note {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--textlight);
  margin-top: 4px;
}

/* ── Checkout ── */
.checkout-summary {
  background: #fff;
  border-radius: 6px;
  box-shadow: var(--sh);
  padding: 28px 30px;
}
.checkout-items { list-style: none; }
.checkout-items li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--cream2);
}
.ci-qty   { color: var(--textlight); min-width: 34px; }
.ci-name  { flex: 1; }
.ci-variant {
  display: block;
  font-size: 12px;
  color: var(--textlight);
}
.ci-price { font-weight: 700; white-space: nowrap; }
.checkout-subtotal {
  text-align: right;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--forest);
  margin-top: 16px;
}
.checkout-edit { margin-top: 10px; }

.checkout-form { margin-top: 20px; }

.delivery-options { display: flex; flex-direction: column; gap: 12px; }
.delivery-option {
  display: flex;
  gap: 14px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--sand);
  border-radius: var(--r);
  padding: 16px 18px;
  cursor: pointer;
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.delivery-option:hover { border-color: var(--gold-light); }
.delivery-option:has(input:checked) {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}
.do-body { flex: 1; }
.do-label { display: block; font-weight: 700; font-size: 15px; }
.do-note  { display: block; font-size: 13px; color: var(--textlight); }
.do-price { font-family: var(--serif); font-size: 19px; color: var(--forest); white-space: nowrap; }

/* Die Zustimmung ist ein Fließtext, kein Feldtitel — deshalb die
   Großbuchstaben-Optik von .field label hier zurücknehmen.
   Wichtig: Der Text steht in einem eigenen <span>. Ohne den würde jedes
   Textstück zwischen den Links zu einem eigenen Flex-Item und die Zeile
   auf schmalen Bildschirmen in Spalten zerfallen. */
.field-check { margin-top: 20px; }
.field-check label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--textmid);
  line-height: 1.65;
}
.field-check label > span { flex: 1; min-width: 0; }
.field-check input[type="checkbox"] {
  flex: none;
  width: 17px;
  height: 17px;
  margin-top: 3px;
  accent-color: var(--green);
}
.field-check a { color: var(--gold); text-decoration: underline; }

.checkout-total {
  background: var(--cream2);
  border-radius: var(--r);
  padding: 20px 22px;
  margin: 28px 0 8px;
}
.checkout-total p {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 15px;
  color: var(--textmid);
}
.checkout-total .ct-total {
  border-top: 1px solid var(--sand);
  margin-top: 10px;
  padding-top: 14px;
  font-family: var(--serif);
  font-size: 24px;
  color: var(--forest);
}

/* ── Danke-Seite ── */
.shop-thanks { text-align: center; }
.shop-thanks p { margin-bottom: 16px; color: var(--textmid); }
.thanks-mark { margin: 0 auto 24px; width: 56px; }
.thanks-lead {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--forest) !important;
}
.shop-thanks .shop-actions { justify-content: center; }

/* ── Rechtstexte ── */
.legal-body { font-size: 15px; line-height: 1.85; color: var(--textmid); }
.legal-body h2 {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--forest);
  margin: 36px 0 12px;
}
.legal-body h3 {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text);
  margin: 24px 0 8px;
}
.legal-body p, .legal-body li { margin-bottom: 10px; }
.legal-body ul, .legal-body ol { padding-left: 22px; }
.legal-box {
  background: #fff;
  border: 1px solid var(--sand);
  border-radius: var(--r);
  padding: 22px 24px;
  margin: 22px 0;
}

/* ── Mobil ── */
@media (max-width: 700px) {
  .shop-main { padding: 110px 0 70px; }

  .cart-table thead { display: none; }
  .cart-table, .cart-table tbody, .cart-table tr, .cart-table td { display: block; width: 100%; }
  .cart-table tr {
    border-bottom: 1px solid var(--sand);
    padding: 14px 0;
  }
  .cart-table td {
    border: none;
    padding: 4px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  .cart-table td::before {
    content: attr(data-label);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--textlight);
  }
  .cart-table td:first-child::before { content: none; }
  .cart-remove-cell { justify-content: flex-end; }

  .cart-bottom { flex-direction: column; }
  .cart-sum { text-align: left; }
  .shop-actions { flex-direction: column; align-items: stretch; }
  .shop-actions .btn-primary { text-align: center; }
}

/* ══════════════════════════════════════════
   KONVERSION — Umbau v4
══════════════════════════════════════════ */

/* ── Der Kaufbutton ──────────────────────────────────────────────
   Vorher war "In den Warenkorb" ein .btn-outline — durchsichtig mit
   duennem Rand, also schwaecher als "Zustimmen" im Cookie-Banner.
   Der wichtigste Klick der Seite bekommt jetzt das meiste Gewicht. */
.btn-buy,
button.btn-buy,
a.btn-buy {
  -webkit-appearance: none;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 32px;
  border: none;
  border-radius: 2px;
  background-color: var(--gold);
  background-image: none;
  color: var(--forest);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  transition: background-color var(--t) var(--ease), transform var(--t) var(--ease);
}
.btn-buy:hover,
button.btn-buy:hover,
a.btn-buy:hover {
  background-color: var(--forest);
  color: var(--cream);
  transform: translateY(-1px);
}
.btn-buy:focus-visible { outline: 3px solid var(--forest); outline-offset: 2px; }

/* ── Mengen-Stepper ──────────────────────────────────────────────
   Das nackte Zahlenfeld war 39 px hoch, also unter der 44-px-Grenze
   fuer Touch, und sah unfertig aus. */
.qty-stepper {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--sand);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--cream);
  flex: 0 0 auto;
}
.qty-btn {
  -webkit-appearance: none;
  appearance: none;
  width: 44px;
  min-height: 52px;
  border: none;
  background: transparent;
  color: var(--green);
  font-family: var(--sans);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background var(--t) var(--ease);
}
.qty-btn:hover { background: rgba(45,80,22,0.08); }
.qty-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }

.qty-stepper .product-qty {
  width: 46px;
  border: none;
  border-left: 1px solid var(--sand);
  border-right: 1px solid var(--sand);
  border-radius: 0;
  text-align: center;
  padding: 10px 0;
  background: #fff;
  -moz-appearance: textfield;
}
.qty-stepper .product-qty::-webkit-outer-spin-button,
.qty-stepper .product-qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-form { align-items: center; }
.btn-add { flex: 1 1 180px; }

/* ── Grundpreis und Versandhinweis am Preis ──────────────────── */
.product-base-price {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.3px;
  text-transform: none;
  color: var(--textlight);
  margin-top: 3px;
}
.product-ship-note {
  margin: 10px 0 0;
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.5;
  color: var(--sage);
}

/* ── Ausverkauft: kompakter statt gleichwertig ───────────────────
   Ausverkaufte Ware bekam bisher genauso viel Flaeche wie kaufbare.
   Sie bleibt sichtbar (Sortenvielfalt zeigen), nimmt aber weniger Raum. */
.product-card.is-soldout .product-photo { aspect-ratio: 16 / 10 !important; }
.product-card.is-soldout .product-photo img { filter: grayscale(0.55) opacity(0.75); }
.product-card.is-soldout:hover { transform: none; box-shadow: var(--sh); }
.product-card.is-soldout .product-body p { margin-bottom: 0; }
.product-card.is-soldout .product-meta { display: none; }

/* ── Vormerkung statt Sackgasse ──────────────────────────────── */
.notify-form { margin-top: 4px; }
.notify-lead {
  margin: 0 0 10px;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.5;
  color: var(--textmid);
}
.notify-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
}
.notify-row input[type="email"] {
  flex: 1 1 190px;
  min-width: 0;
  min-height: 52px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text);
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: var(--r);
  padding: 10px 14px;
  transition: border-color var(--t) var(--ease);
}
.notify-row input[type="email"]:focus { outline: none; border-color: var(--gold); }
.notify-row .btn-buy { flex: 0 0 auto; padding: 15px 24px; }

/* Der Honeypot (.field-hp) ist schon in style.css versteckt — hier
   bewusst keine zweite Definition derselben Sache. */

/* ── Produkt-Footer ──────────────────────────────────────────── */
.products-footer-note {
  margin: 0;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.6;
  color: var(--sage);
  text-align: center;
  max-width: 52ch;
}
.products-footer-note a {
  color: var(--green);
  border-bottom: 1px solid rgba(45,80,22,0.35);
}
.products-footer-note a:hover { color: var(--gold); border-color: var(--gold); }

/* ── Mobil: flachere Fotos, Platz fuer die Warenkorbleiste ───── */
@media (max-width: 760px) {
  /* Ein Foto nahm 53 % des Bildschirms — Preis und Button waren nie
     gleichzeitig mit dem Produkt sichtbar. */
  .products-col .product-card .product-photo { aspect-ratio: 1 / 1 !important; }
  .product-card.is-soldout .product-photo { aspect-ratio: 2 / 1 !important; }

  /* Der Versandhinweis steht schon in der fixierten Kopfleiste, die immer
     sichtbar ist. Auf dem Handy kostete er pro Karte gut 70 Pixel, ohne
     etwas Neues zu sagen. */
  .product-ship-note { display: none; }

  .product-body { padding: 20px 22px 22px !important; }
  .product-buy { margin-top: 16px; padding-top: 14px; }
  .product-body .product-price { margin-bottom: 12px; }

  .btn-add { flex: 1 1 100%; }
  .notify-row .btn-buy { flex: 1 1 100%; }

  /* Die fixierte Warenkorbleiste darf den Seitenfuss nicht verdecken. */
  body:has(.cart-bar) { padding-bottom: 84px; }
}

/* ── Warenkorbseite: Mengenfeld gross genug zum Treffen ──────── */
.cart-qty { min-height: 44px; text-align: center; }

/* ── Fortschritt zum versandfreien Paket ─────────────────────── */
.ship-progress {
  margin: 14px 0 0;
  padding: 12px 16px;
  border: 1px dashed var(--gold);
  border-radius: var(--r);
  background: rgba(201,162,39,0.07);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.5;
  color: var(--text);
  text-align: center;
}

/* ══════════════════════════════════════════
   STANDORTE — Bienenstände
══════════════════════════════════════════ */
.standorte-lede {
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.6;
  color: var(--textmid);
  text-align: center;
  max-width: 60ch;
  margin: 0 auto 48px;
}
.standorte-lede strong { color: var(--forest); font-weight: 500; }

/* ── Karte ── */
.karte-figur { margin: 0 0 56px; }
.karte {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin: 0 auto;
  border: 1px solid var(--sand);
  border-radius: 4px;
  background: var(--cream2);
}
.karte-figur figcaption {
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.3px;
  color: var(--textlight);
  text-align: center;
}

/* ── Liste der Stände ── */
.stand-liste { list-style: none; margin: 0 0 64px; padding: 0; counter-reset: none; }
.stand {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-top: 1px solid var(--sand);
}
.stand:last-child { border-bottom: 1px solid var(--sand); }

.stand-nr {
  flex: 0 0 auto;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
  color: var(--gold);
  min-width: 52px;
}
.stand-body { min-width: 0; flex: 1 1 auto; }
.stand-body h2 {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  color: var(--forest);
  margin: 0 0 10px;
}
.stand-text {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--textmid);
  margin: 0 0 16px;
  max-width: 60ch;
}

.stand-fakten {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 40px;
  margin: 0;
}
.stand-fakten dt {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--textlight);
  margin-bottom: 3px;
}
.stand-fakten dd {
  margin: 0;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text);
}
.stand-fakten .ca { color: var(--textlight); }

/* ── Abschluss ── */
.standorte-schluss {
  border-top: 1px solid var(--sand);
  padding-top: 40px;
}
.standorte-schluss h2 {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  color: var(--forest);
  margin: 0 0 16px;
}
.standorte-schluss p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--textmid);
  max-width: 62ch;
}
.standorte-cta { margin-top: 28px; }

@media (max-width: 620px) {
  .stand { gap: 16px; padding: 22px 0; }
  .stand-nr { font-size: 26px; min-width: 38px; }
  .stand-body h2 { font-size: 21px; }
  .stand-fakten { gap: 10px 24px; }
}

/* ══════════════════════════════════════════
   SORTENSEITE — /honig/<sorte>
══════════════════════════════════════════ */
.brotkrumen {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.4px;
  color: var(--textlight);
  margin-bottom: 28px;
}
.brotkrumen a { color: var(--green); }
.brotkrumen a:hover { color: var(--gold-text); }
.brotkrumen span[aria-hidden] { margin: 0 7px; color: var(--sand); }

.sorte {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
  margin-bottom: 56px;
}
.sorte-bild {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--sh);
  background: #fff;
}
.sorte-bild img {
  display: block;
  width: 100%;
  height: auto;
}
.sorte-beschreibung {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.65;
  color: var(--textmid);
  margin: 0 0 20px;
}
.sorte-text .product-buy { border-top: 1px solid var(--sand); }

/* ── Herkunft ── */
.sorte-herkunft {
  border-top: 1px solid var(--sand);
  padding-top: 36px;
  margin-bottom: 56px;
}
.sorte-herkunft h2,
.weitere-sorten h2 {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  color: var(--forest);
  margin: 0 0 14px;
}
.sorte-herkunft p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--textmid);
  max-width: 62ch;
}
.sorte-herkunft a {
  color: var(--green);
  border-bottom: 1px solid rgba(45,80,22,0.35);
}
.sorte-herkunft a:hover { color: var(--gold-text); border-color: var(--gold); }

/* ── Andere Sorten ── */
.weitere-sorten { border-top: 1px solid var(--sand); padding-top: 36px; }
.sorten-liste {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
}
.sorten-liste a {
  display: block;
  background: #fff;
  border: 1px solid var(--sand);
  border-radius: 5px;
  overflow: hidden;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.sorten-liste a:hover { transform: translateY(-3px); box-shadow: var(--sh); }
.sorten-liste img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.sorten-liste .sorte-name {
  display: block;
  padding: 12px 14px 2px;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--forest);
}
.sorten-liste .sorte-preis {
  display: block;
  padding: 0 14px 14px;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--textlight);
}

/* Produkttitel auf der Startseite ist jetzt ein Link */
.product-body h3 a { color: inherit; }
.product-body h3 a:hover { color: var(--gold-text); }

@media (max-width: 760px) {
  .sorte { grid-template-columns: 1fr; gap: 26px; }
  .sorte-beschreibung { font-size: 17.5px; }
}

/* Hinweis auf der Standortseite: dort stehen die Völker, verkauft wird am Hof */
.standorte-hinweis {
  max-width: 60ch;
  margin: -26px auto 44px;
  padding: 14px 18px;
  border-left: 3px solid var(--gold);
  background: rgba(201,162,39,0.09);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--textmid);
}
.standorte-hinweis strong { color: var(--forest); }
.standorte-hinweis a {
  color: var(--green);
  border-bottom: 1px solid rgba(45,80,22,0.35);
  white-space: nowrap;
}

/* Ortsangabe neben dem Standortnamen */
.stand-body h2 .stand-ort {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage);
  margin-left: 10px;
  vertical-align: middle;
}
