/* ============================================================
   NEYESHOF – Neue Website v2
   Design: Your Shineproject / Leon Fischermanns
   Font: Montserrat
   ============================================================ */

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  --cream:        #F7F3EE;
  --earth:        #3D2B1F;
  --warm-dark:    #18100A;
  --garlic-white: #F0EBE0;
  --green:        #4A6741;
  --green-dark:   #3A5232;
  --green-light:  #EBF0E8;
  --rust:         #C4572A;
  --muted:        #8A7B6E;
  --border:       #E2D9CE;
  --white:        #FFFFFF;

  --font: 'Montserrat', system-ui, -apple-system, sans-serif;

  --w:        1280px;
  --nav-h:    80px;
  --r-sm:     6px;
  --r-md:     14px;
  --r-lg:     24px;
  --r-xl:     40px;
  --r-full:   9999px;

  --sh-sm:  0 1px 4px rgba(0,0,0,0.07);
  --sh-md:  0 4px 24px rgba(0,0,0,0.09);
  --sh-lg:  0 12px 56px rgba(0,0,0,0.14);
  --sh-xl:  0 24px 80px rgba(0,0,0,0.18);

  --ease:      0.22s ease;
  --ease-out:  0.35s cubic-bezier(0.16,1,0.3,1);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--earth);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }
textarea { resize: vertical; }
button { font-family: inherit; }

/* ── Container ──────────────────────────────────────────────── */
.container { max-width: var(--w); margin: 0 auto; padding: 0 80px; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: var(--font); line-height: 1.08; }
h1 { font-size: clamp(44px, 7vw, 96px); font-weight: 900; letter-spacing: -0.03em; }
h2 { font-size: clamp(32px, 4.5vw, 60px); font-weight: 800; letter-spacing: -0.025em; }
h3 { font-size: clamp(17px, 2vw, 22px); font-weight: 700; }
h4 { font-size: 16px; font-weight: 700; }
h5 { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }

.section-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.section-eyebrow.centered { text-align: center; }
.section-eyebrow.light    { color: rgba(247,243,238,.55); }

.section-headline {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--earth);
  margin-bottom: 60px;
}
.section-headline.centered { text-align: center; }
.section-headline.light    { color: var(--cream); }

.body-text { font-size: 16px; line-height: 1.8; color: var(--muted); }
.mt-16     { margin-top: 16px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .02em;
  transition: gap var(--ease);
}
.text-link:hover { gap: 14px; }
.text-link svg { transition: transform var(--ease); }
.text-link:hover svg { transform: translateX(4px); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-size: 13px; font-weight: 700;
  letter-spacing: .04em; padding: 13px 24px;
  border-radius: var(--r-full); border: 2px solid transparent;
  cursor: pointer; transition: all var(--ease); white-space: nowrap; background: none;
}
.btn-lg { font-size: 14px; padding: 16px 32px; }

.btn-primary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-primary:hover {
  background: var(--green-dark); border-color: var(--green-dark);
  transform: translateY(-2px); box-shadow: var(--sh-md);
}
.btn-ghost-white  { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-ghost-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.8); }
/* U-H1: btn-outline – grüner Rand, transparenter Hintergrund */
.btn-outline {
  background: transparent; color: var(--forest); border-color: var(--forest);
  font-size: 14px; padding: 14px 28px;
}
.btn-outline:hover { background: rgba(74,103,65,.07); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,.45);
  font-size: 14px; padding: 14px 28px;
}
.btn-outline-white:hover { background: rgba(255,255,255,.08); border-color: var(--white); transform: translateY(-2px); }
.btn-nav-cta { padding: 10px 20px; font-size: 12px; }

.btn-submit { width: 100%; font-size: 15px; padding: 17px; }

/* ── Focus visible ──────────────────────────────────────────── */
:focus-visible { outline: 2.5px solid var(--green); outline-offset: 3px; }

/* ── Fade-in ────────────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity .65s ease, transform .65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════════════
   BANNER
══════════════════════════════════════════════════════════════ */
.banner {
  position: relative; z-index: 100;
  background: var(--green); color: var(--white);
  text-align: center; font-size: 13px; font-weight: 600;
  letter-spacing: .01em; padding: 11px 52px;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease, opacity .3s ease;
}
.banner.hidden { max-height: 0; padding-top: 0; padding-bottom: 0; opacity: 0; pointer-events: none; overflow: hidden; }
.banner-close {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--white);
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; opacity: .7; cursor: pointer;
  transition: opacity var(--ease), background var(--ease);
}
.banner-close:hover { opacity: 1; background: rgba(255,255,255,.15); }

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 90;
  transition: background var(--ease), box-shadow var(--ease), top var(--ease-out);
}
.nav.has-banner { top: 44px; }
.nav.scrolled { background: rgba(247,243,238,.96); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--border), var(--sh-sm); }

.nav-inner {
  max-width: var(--w); margin: 0 auto; padding: 0 80px;
  height: 100%; display: flex; align-items: center; gap: 40px;
}
.nav-logo img {
  height: 52px; width: auto;
  filter: brightness(0) invert(1);
  transition: filter var(--ease);
}
.nav.scrolled .nav-logo img { filter: none; }

.nav-links { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.nav-link {
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.85);
  position: relative; transition: color var(--ease);
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--ease);
}
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }
.nav.scrolled .nav-link { color: var(--earth); }
.nav.scrolled .nav-link:hover { color: var(--green); }

/* Nav CTA button states */
.btn-nav-cta { color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-nav-cta:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.8); }
.nav.scrolled .btn-nav-cta { color: var(--white); background: var(--green); border-color: var(--green); }
.nav.scrolled .btn-nav-cta:hover { background: var(--green-dark); border-color: var(--green-dark); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: background var(--ease); }
.nav.scrolled .hamburger span { background: var(--earth); }

/* ══════════════════════════════════════════════════════════════
   DRAWER
══════════════════════════════════════════════════════════════ */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 95; opacity: 0; pointer-events: none;
  transition: opacity var(--ease-out);
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(320px,90vw); background: var(--cream);
  z-index: 96; padding: 96px 32px 32px;
  transform: translateX(100%); transition: transform var(--ease-out);
  overflow-y: auto;
}
.drawer.open { transform: translateX(0); }

.drawer-close {
  position: absolute; top: 22px; right: 22px;
  background: none; border: none; cursor: pointer; color: var(--earth);
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background var(--ease);
}
.drawer-close:hover { background: var(--border); }

.drawer-links { display: flex; flex-direction: column; }
.drawer-link {
  font-size: 20px; font-weight: 700; color: var(--earth);
  padding: 14px 0; border-bottom: 1px solid var(--border);
  transition: color var(--ease); display: block;
}
.drawer-link:hover { color: var(--green); }
.drawer-cta { width: 100%; margin-top: 32px; }

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  position: relative; height: 100svh; min-height: 600px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-video, .hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
}
.hero-video { z-index: 1; }
.hero-img   { z-index: 0; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(110deg, rgba(8,4,1,.68) 0%, rgba(8,4,1,.32) 55%, rgba(8,4,1,.08) 100%);
}
.hero-content {
  position: relative; z-index: 3;
  padding-top: 130px; max-width: 700px;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.6); margin-bottom: 22px;
  animation: fadeUp .9s ease both;
}
.hero-headline {
  font-size: clamp(44px, 8vw, 96px); font-weight: 900; letter-spacing: -0.03em;
  color: var(--white); line-height: 1.0; margin-bottom: 24px;
  animation: fadeUp .9s .08s ease both;
}
.hero-sub {
  font-size: 17px; font-weight: 400;
  color: rgba(255,255,255,.72); line-height: 1.75;
  margin-bottom: 44px; max-width: 520px;
  animation: fadeUp .9s .18s ease both;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp .9s .28s ease both; }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 3; background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.45); animation: bounce 2.5s ease-in-out infinite;
  transition: color var(--ease);
}
.hero-scroll:hover { color: rgba(255,255,255,.8); }

@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(9px)} }

/* ══════════════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════════════ */
.about { padding: 120px 0; background: var(--cream); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }

.about-img { position: relative; }
.about-img img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top center;
  border-radius: var(--r-xl); box-shadow: var(--sh-xl);
}
.about-img-badge {
  position: absolute; bottom: 28px; right: -20px;
  background: var(--white); border-radius: var(--r-lg);
  padding: 16px 24px; box-shadow: var(--sh-lg);
  text-align: center; line-height: 1.2;
}
.about-img-badge span { display: block; font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.about-img-badge strong { display: block; font-size: 32px; font-weight: 900; color: var(--green); }

.about-text h2 { margin-bottom: 20px; }

/* ══════════════════════════════════════════════════════════════
   VALUES
══════════════════════════════════════════════════════════════ */
.values { background: var(--warm-dark); padding: 104px 0; }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }

.value-card {
  position: relative; overflow: hidden;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 40px 28px 36px;
  transition: background var(--ease), border-color var(--ease), transform var(--ease-out), box-shadow var(--ease);
}
.value-card:hover {
  background: rgba(255,255,255,.07);
  border-color: var(--green);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,.35), 0 0 0 1px var(--green);
}
.value-icon {
  width: 52px; height: 52px; border-radius: var(--r-md);
  background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: background var(--ease);
}
.value-card:hover .value-icon { background: #5a7d50; }
.value-num {
  position: absolute; top: 20px; right: 24px;
  font-size: 48px; font-weight: 900; color: rgba(255,255,255,.04);
  line-height: 1; user-select: none;
}
.value-card h3 { font-size: 17px; font-weight: 700; color: var(--cream); margin-bottom: 12px; }
.value-card p  { font-size: 13.5px; color: rgba(247,243,238,.48); line-height: 1.75; }

/* ══════════════════════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════════════════════ */
.process { padding: 120px 0; background: var(--garlic-white); }

.process-track {
  display: flex; align-items: flex-start; position: relative;
}
/* Gray baseline */
.process-track::before {
  content: ''; position: absolute;
  top: 25px; left: calc(10% + 26px); right: calc(10% + 26px);
  height: 2px; background: var(--border); z-index: 0;
}
/* Animated green line */
.process-progress {
  position: absolute; top: 25px; left: calc(10% + 26px);
  height: 2px; width: 0; z-index: 1;
  background: linear-gradient(90deg, var(--green), #6a9b62);
  transition: width 2s cubic-bezier(.4,0,.2,1) .4s;
}
.process-track.in-view .process-progress { width: calc(80% - 52px); }

.process-step { flex: 1; text-align: center; padding: 0 10px; }
.process-gap  { width: 0; }

.step-wrap {
  position: relative; display: inline-flex; justify-content: center;
  margin-bottom: 18px;
}
.step-bg-num {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: 72px; font-weight: 900;
  color: rgba(74,103,65,.07); line-height: 1;
  white-space: nowrap; pointer-events: none; user-select: none;
}
.step-num {
  position: relative; z-index: 2;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--white); color: var(--green);
  border: 2.5px solid var(--green);
  font-size: 17px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-md);
  transition: background var(--ease), color var(--ease);
}
.process-track.in-view .step-num { background: var(--green); color: var(--white); }
.process-step h4 { font-size: 14px; font-weight: 700; color: var(--earth); margin-bottom: 8px; }
.process-step p  { font-size: 12.5px; color: var(--muted); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════════
   PRODUCTS
══════════════════════════════════════════════════════════════ */
.products { padding: 120px 0; background: var(--cream); }
.products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }

.product-card {
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--white); box-shadow: var(--sh-sm);
  transition: transform var(--ease-out), box-shadow var(--ease-out);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--sh-xl); }

.product-img-wrap { position: relative; height: 220px; overflow: hidden; }
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.07); }

.badge {
  position: absolute; top: 12px; right: 12px;
  font-size: 11px; font-weight: 700; padding: 5px 12px;
  border-radius: var(--r-full); letter-spacing: .04em;
}
.badge-available { background: var(--green); color: var(--white); }
.badge-soon      { background: rgba(0,0,0,.55); color: rgba(255,255,255,.85); }

.product-body { padding: 24px 22px 26px; }
.product-cat {
  display: block; font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--green); margin-bottom: 8px;
}
.product-body h3 { font-size: 18px; font-weight: 700; color: var(--earth); margin-bottom: 10px; }
.product-body p  { font-size: 13px; color: var(--muted); line-height: 1.65; }

.products-shop-cta {
  margin-top: 52px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 22px;
}
.products-shop-cta p {
  font-size: 15px; color: var(--muted); max-width: 480px; line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════
   EVENTS
══════════════════════════════════════════════════════════════ */
.events { padding: 120px 0; background: var(--warm-dark); }
.events .section-headline { color: var(--cream); }

.events-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.event-card {
  display: flex; gap: 0;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: background var(--ease), border-color var(--ease), transform var(--ease-out), box-shadow var(--ease);
}
.event-card:hover {
  background: rgba(255,255,255,.08);
  border-color: var(--green);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

/* Date column */
.event-date {
  flex-shrink: 0;
  width: 76px;
  background: var(--green);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 20px 8px; gap: 2px;
  transition: background var(--ease);
}
.event-card:hover .event-date { background: var(--green-dark); }
.event-day   { font-size: 32px; font-weight: 900; color: var(--white); line-height: 1; }
.event-month { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.8); text-transform: uppercase; letter-spacing: .08em; }
.event-year  { font-size: 11px; font-weight: 500; color: rgba(255,255,255,.5); }

/* Body */
.event-body { padding: 24px 22px 22px; flex: 1; }

.event-tag {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--green); background: rgba(74,103,65,.18);
  padding: 3px 10px; border-radius: var(--r-full);
  margin-bottom: 12px;
}
.event-tag-special { color: #e0a030; background: rgba(224,160,48,.15); }

.event-body h3 { font-size: 17px; font-weight: 700; color: var(--cream); margin-bottom: 10px; line-height: 1.3; }
.event-body p  { font-size: 13px; color: rgba(247,243,238,.5); line-height: 1.7; margin-bottom: 18px; }

.event-meta {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.event-meta span {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 500;
  color: rgba(247,243,238,.45);
}
.event-meta svg { flex-shrink: 0; opacity: .7; }

/* Responsive */
@media (max-width: 900px) {
  .events-grid { grid-template-columns: 1fr; }
  .event-card  { flex-direction: row; }
}
@media (max-width: 640px) {
  .events { padding: 80px 0; }
}

/* ══════════════════════════════════════════════════════════════
   DIRECT SALES
══════════════════════════════════════════════════════════════ */
.direct { padding: 120px 0; background: var(--garlic-white); }
.direct-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.direct-text h2 { margin-bottom: 16px; }
.direct-text .body-text { margin-bottom: 40px; }

.direct-facts { display: flex; flex-direction: column; gap: 20px; margin-bottom: 44px; }
.direct-facts li { display: flex; align-items: flex-start; gap: 16px; }
.fact-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); box-shadow: var(--sh-sm);
  margin-top: 2px;
}
.direct-facts li strong { display: block; font-size: 16px; font-weight: 700; color: var(--earth); line-height: 1.3; }
.direct-facts li span   { font-size: 13px; color: var(--muted); }

/* Pill-shaped map */
.direct-map { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-xl); height: 460px; }
.direct-map iframe { width: 100%; height: 100%; border: 0; }

/* ══════════════════════════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════════════════════════ */
.reviews { padding: 120px 0; background: var(--cream); }

.reviews-score {
  display: flex; align-items: center; gap: 24px;
  background: var(--white); border-radius: var(--r-lg);
  padding: 28px 36px; box-shadow: var(--sh-md);
  max-width: 400px; margin: 0 auto 64px;
}
.score-number { font-size: 56px; font-weight: 900; color: var(--earth); line-height: 1; }
.score-stars  { font-size: 20px; color: #F4B942; letter-spacing: 2px; margin-bottom: 4px; }
.score-label  { font-size: 13px; font-weight: 700; color: var(--earth); }
.score-count  { font-size: 12px; color: var(--muted); margin-top: 2px; }
.reviews-google-btn {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 10px;
  font-size: 12px; font-weight: 700; color: var(--earth);
  text-decoration: none;
  background: var(--garlic-white);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 7px 14px;
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}
.reviews-google-btn:hover {
  background: var(--white);
  border-color: #4285F4;
  transform: translateY(-1px);
}

.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.review-card {
  background: var(--white); border-radius: var(--r-lg); padding: 28px;
  box-shadow: var(--sh-sm);
  transition: transform var(--ease-out), box-shadow var(--ease-out);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }

.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.review-stars  { font-size: 16px; color: #F4B942; letter-spacing: 2px; }
.review-google { flex-shrink: 0; }

.review-card p { font-size: 14px; line-height: 1.75; color: var(--muted); margin-bottom: 20px; font-style: italic; }

.review-footer { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green-light); color: var(--green);
  font-size: 15px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-meta strong { display: block; font-size: 14px; font-weight: 700; color: var(--earth); }
.review-meta span   { font-size: 12px; color: var(--muted); }

/* ══════════════════════════════════════════════════════════════
   INSTAGRAM / SOCIAL
══════════════════════════════════════════════════════════════ */
.social { background: var(--warm-dark); padding: 100px 0; }

/* Elfsight-Layout: Text zentriert oben, Feed darunter */
.social-header {
  text-align: center; max-width: 560px; margin: 0 auto 52px;
}
.social-handle {
  font-size: clamp(28px, 3.5vw, 48px); font-weight: 900;
  color: var(--cream); margin-bottom: 16px; letter-spacing: -0.025em;
}
.social-header p { font-size: 15px; color: rgba(247,243,238,.55); line-height: 1.75; margin-bottom: 32px; }
.elfsight-feed-wrap { width: 100%; }

/* ══════════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════════ */
.contact { padding: 120px 0; background: var(--garlic-white); }
.contact-inner { display: grid; grid-template-columns: 2fr 3fr; gap: 80px; align-items: flex-start; }

.contact-info h2 { margin-bottom: 14px; }
.contact-info .body-text { margin-bottom: 36px; }

.contact-links { display: flex; flex-direction: column; gap: 14px; }
.contact-link {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 600; color: var(--earth);
  transition: color var(--ease);
}
.contact-link:hover { color: var(--green); }
.contact-link-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--white); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-sm); flex-shrink: 0;
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--earth); }
.label-opt { font-weight: 400; text-transform: none; color: var(--muted); letter-spacing: 0; }

.form-group input, .form-group textarea {
  width: 100%; font-family: var(--font); font-size: 16px; color: var(--earth);
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-md); padding: 14px 16px; outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #c4bbb2; }
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--green); box-shadow: 0 0 0 4px rgba(74,103,65,.1);
}
.form-group input.error, .form-group textarea.error { border-color: var(--rust); box-shadow: 0 0 0 3px rgba(185,74,48,.1); }

/* U-H3: Inline-Feldfehler */
.field-error {
  display: none;
  font-size: 12px;
  color: #b94a30;
  font-weight: 500;
  margin-top: 2px;
  line-height: 1.4;
}
.field-error.visible { display: block; }

/* U-K2: DSGVO-Checkbox */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 4px 0;
}
.form-checkbox input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0;
  margin-top: 2px; cursor: pointer;
  accent-color: var(--forest);
}
.form-checkbox label {
  font-size: 13px; font-weight: 400;
  letter-spacing: 0; text-transform: none;
  color: var(--text-muted);
  cursor: pointer; line-height: 1.5;
}
.form-checkbox label a { color: var(--forest); text-decoration: underline; }
.form-checkbox.has-error input[type="checkbox"] { outline: 2px solid #b94a30; border-radius: 2px; }

.form-success {
  display: none; text-align: center; font-size: 14px; font-weight: 600;
  color: var(--green); padding: 14px 20px;
  background: rgba(74,103,65,.08); border-radius: var(--r-md);
  border: 1px solid rgba(74,103,65,.2);
}
.form-success.show { display: block; }

.form-error {
  font-size: 13px; color: #b94a30; min-height: 20px;
  margin-top: 8px; line-height: 1.5;
}

.form-success-card {
  text-align: center; padding: 56px 32px 48px;
  background: #fff; border-radius: var(--r-lg);
  border: 1px solid var(--border);
}
.form-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(74,103,65,.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.form-success-icon svg { color: var(--green); }
.form-success-card h3 {
  font-family: Georgia, serif; font-size: 22px;
  color: var(--earth); margin: 0 0 12px;
}
.form-success-card p {
  font-size: 15px; color: var(--text-muted); line-height: 1.7;
  max-width: 360px; margin: 0 auto 28px;
}
.contact-form-wrap { position: relative; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer { background: var(--warm-dark); }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1.5fr;
  gap: 56px; padding-top: 72px; padding-bottom: 56px;
}
.footer-brand img {
  height: 52px; width: auto;
  filter: brightness(0) invert(1); opacity: .8;
  margin-bottom: 16px;
}
.footer-brand p { font-size: 13px; color: rgba(247,243,238,.4); line-height: 1.75; max-width: 260px; margin-bottom: 20px; }
.footer-ig {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  color: rgba(247,243,238,.65); border: 1.5px solid rgba(247,243,238,.2);
  padding: 8px 16px; border-radius: var(--r-full);
  transition: color var(--ease), border-color var(--ease), background var(--ease);
}
.footer-ig:hover { color: var(--cream); border-color: rgba(247,243,238,.5); background: rgba(247,243,238,.05); }

.footer-nav h5, .footer-contact h5 { color: rgba(247,243,238,.3); margin-bottom: 20px; }
.footer-nav ul  { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a   { font-size: 14px; color: rgba(247,243,238,.6); transition: color var(--ease); }
.footer-nav a:hover { color: var(--cream); }

.footer-contact address { display: flex; flex-direction: column; gap: 10px; }
.footer-contact p, .footer-contact a { font-size: 13.5px; color: rgba(247,243,238,.6); line-height: 1.65; transition: color var(--ease); }
.footer-contact a:hover { color: var(--cream); }

.footer-bar { border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0; }
.footer-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-bar span { font-size: 12px; color: rgba(247,243,238,.28); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: rgba(247,243,238,.28); transition: color var(--ease); }
.footer-legal a:hover { color: rgba(247,243,238,.7); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */

/* ── 1200px ── */
@media (max-width: 1200px) {
  .container { padding-left: 48px; padding-right: 48px; }
  .nav-inner  { padding: 0 48px; }
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid   { grid-template-columns: repeat(2,1fr); }
  .reviews-grid  { grid-template-columns: repeat(2,1fr); }
}

/* ── 960px ── */
@media (max-width: 960px) {
  .container { padding-left: 32px; padding-right: 32px; }
  .nav-inner  { padding: 0 32px; gap: 16px; }
  .nav-links, .btn-nav-cta { display: none; }
  .hamburger { display: flex; }

  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-img img { aspect-ratio: 16/10; }
  .about-img-badge { right: 20px; }

  .direct-inner { grid-template-columns: 1fr; gap: 48px; }
  .direct-map { height: 320px; }

  .social-inner { grid-template-columns: 1fr; gap: 48px; }

  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }

  /* Process: vertical on tablet */
  .process-track { flex-direction: column; align-items: center; gap: 0; }
  .process-track::before { display: none; }
  .process-progress { display: none; }
  .process-step { width: 100%; max-width: 380px; margin-bottom: 4px; }
  .process-gap { display: none; }
  .step-bg-num { font-size: 56px; }
  /* Vertical connector */
  .process-step:not(:last-child)::after {
    content: '';
    display: block;
    width: 2px; height: 36px;
    background: var(--border);
    margin: 12px auto 0;
  }
  .process-track.in-view .step-num { background: var(--green); color: var(--white); }
}

/* ── 640px ── */
@media (max-width: 640px) {
  .container { padding-left: 20px; padding-right: 20px; }
  .nav-inner { padding: 0 20px; }

  .hero-content { padding-top: 110px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns .btn { width: 100%; }

  .about    { padding: 80px 0; }
  .values   { padding: 72px 0; }
  .process  { padding: 80px 0; }
  .products { padding: 80px 0; }
  .direct   { padding: 80px 0; }
  .reviews  { padding: 80px 0; }
  .social   { padding: 72px 0; }
  .contact  { padding: 80px 0; }

  .values-grid   { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .reviews-grid  { grid-template-columns: 1fr; }

  .reviews-score { padding: 20px 24px; gap: 16px; }
  .score-number  { font-size: 44px; }

  .ig-grid { grid-template-columns: repeat(2,1fr); }

  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bar-inner { flex-direction: column; gap: 12px; text-align: center; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .fade-in { opacity: 1; transform: none; transition: none; }
  .hero-eyebrow, .hero-headline, .hero-sub, .hero-btns { animation: none; }
  .process-progress { transition: none; }
}

/* ══════════════════════════════════════════════════════════════
   SUB-PAGES – shared
══════════════════════════════════════════════════════════════ */

/* Subpage Hero (smaller than full-screen homepage hero) */
.subpage-hero {
  position: relative;
  height: 62vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 72px;
  overflow: hidden;
}
.subpage-hero .hero-bg    { position: absolute; inset: 0; z-index: 0; }
.subpage-hero .hero-bg img,
.subpage-hero .hero-bg video { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.subpage-hero .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(24,16,10,.72) 0%, rgba(24,16,10,.22) 60%, rgba(24,16,10,.10) 100%);
}
.subpage-hero .hero-content {
  position: relative; z-index: 2;
  color: var(--white);
}
.subpage-hero .hero-content .hero-eyebrow {
  display: block;
  font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(247,243,238,.6);
  margin-bottom: 14px;
}
.subpage-hero .hero-content h1 {
  color: var(--white);
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.0;
  margin-bottom: 20px;
}
.subpage-hero .hero-content p {
  font-size: 17px; font-weight: 400;
  color: rgba(247,243,238,.75);
  max-width: 560px;
  line-height: 1.65;
}
/* Breadcrumb */
.breadcrumb {
  position: absolute; top: 0; left: 0; right: 0; z-index: 2;
  padding: calc(var(--nav-h) + 28px) 80px 0;
}
.breadcrumb a, .breadcrumb span {
  font-size: 12px; font-weight: 600;
  letter-spacing: .04em;
  color: rgba(247,243,238,.55);
}
.breadcrumb a:hover { color: rgba(247,243,238,.9); }
.breadcrumb .sep { margin: 0 8px; }

/* ── Team Section ─────────────────────────────────────────── */
.team-section {
  background: var(--warm-dark);
  padding: 120px 0;
}
.team-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.team-photo-wrap {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/5;
}
.team-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.team-text { color: var(--cream); }
.team-text .section-eyebrow { color: rgba(247,243,238,.5); }
.team-text h2 { color: var(--cream); margin-bottom: 28px; }
.team-cards { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.team-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md);
  padding: 24px 28px;
  transition: background var(--ease), border-color var(--ease);
}
.team-card:hover { background: rgba(255,255,255,.08); border-color: rgba(74,103,65,.5); }
.team-card-name {
  font-size: 16px; font-weight: 800;
  color: var(--white); margin-bottom: 4px;
}
.team-card-role {
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--green); margin-bottom: 10px;
}
.team-card-desc {
  font-size: 14px; line-height: 1.7;
  color: rgba(247,243,238,.6);
}

/* ── Farm Gallery ─────────────────────────────────────────── */
.farm-gallery { padding: 120px 0; background: var(--cream); }
.farm-gallery-inner { }
.farm-gallery .section-eyebrow,
.farm-gallery h2 { text-align: center; }
.farm-gallery h2 { margin-bottom: 56px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: default;
}
.gallery-item.tall { aspect-ratio: 4/5; grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 18px 16px;
  background: linear-gradient(to top, rgba(24,16,10,.75), transparent);
  font-size: 12px; font-weight: 700;
  color: var(--white); letter-spacing: .06em; text-transform: uppercase;
}

/* ── Subpage Story Section ────────────────────────────────── */
.subpage-story { padding: 120px 0; }
.subpage-story-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center;
}
.subpage-story-img {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 3/4;
}
.subpage-story-img img { width: 100%; height: 100%; object-fit: cover; }
.subpage-story-text h2 { margin-bottom: 28px; }
.subpage-story-text .body-text + .body-text { margin-top: 18px; }
.subpage-story-text blockquote {
  border-left: 3px solid var(--green);
  padding-left: 20px;
  margin: 28px 0;
  font-size: 18px; font-weight: 600; font-style: italic;
  color: var(--earth); line-height: 1.55;
}

/* ── Values Strip ─────────────────────────────────────────── */
.values-strip {
  background: var(--green-light);
  padding: 80px 0;
}
.values-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.values-strip-item {
  padding: 40px 44px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.values-strip-item:last-child { border-right: none; }
.values-strip-icon {
  width: 52px; height: 52px;
  background: var(--green);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.values-strip-icon svg { color: var(--white); }
.values-strip-item h3 { font-size: 16px; margin-bottom: 10px; color: var(--earth); }
.values-strip-item p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── Page CTA Block ───────────────────────────────────────── */
.page-cta {
  background: var(--green);
  padding: 100px 0;
  text-align: center;
}
.page-cta-eyebrow {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(247,243,238,.55); margin-bottom: 20px;
}
.page-cta h2 {
  color: var(--white); margin-bottom: 20px;
  font-size: clamp(30px, 4vw, 50px);
}
.page-cta p {
  font-size: 17px; color: rgba(247,243,238,.75);
  max-width: 520px; margin: 0 auto 44px; line-height: 1.7;
}
.page-cta .btn-ghost-white {
  border-color: rgba(255,255,255,.5); font-size: 14px; padding: 16px 32px;
}

/* ── Öffnungszeiten & Verkaufstage ───────────────────────── */
.oeffnungszeiten {
  padding: 96px 0;
  background: var(--earth);
}
.oeffnungszeiten-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* 24/7 card */
.oz-card-24h {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: 44px 44px 40px;
}
.oz-24h-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.oz-24h-icon {
  width: 60px; height: 60px;
  background: var(--green);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.oz-24h-icon svg { color: var(--white); }
.oz-24h-header h2 {
  font-size: 28px; font-weight: 800;
  color: var(--white); line-height: 1.15;
}
.oz-card-24h > p {
  font-size: 14px; color: rgba(255,255,255,.72); line-height: 1.7;
  margin-bottom: 28px;
}

.oz-info-rows { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.oz-info-row {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,.8);
}
.oz-info-row svg { flex-shrink: 0; color: var(--green); }
.oz-info-row strong { color: var(--white); }

.oz-payments-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-bottom: 14px;
}
.oz-pay-badges {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.oz-pay-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-full);
  padding: 10px 18px;
  font-size: 13px; font-weight: 600; color: var(--white);
  transition: background var(--ease), border-color var(--ease);
}
.oz-pay-badge:hover { background: rgba(255,255,255,.13); }
.oz-pay-badge svg { color: rgba(255,255,255,.7); }
.oz-pay-paypal svg { color: #009cde; }

/* Verkaufstage */
.oz-verkaufstage {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  padding: 44px 44px 40px;
}
.oz-vt-header {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 20px;
}
.oz-vt-icon {
  width: 48px; height: 48px;
  background: rgba(74,103,65,.35);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.oz-vt-icon svg { color: var(--green); color: #7db86e; }
.oz-vt-header h3 {
  font-size: 18px; font-weight: 700; color: var(--white);
  margin-bottom: 4px;
}
.oz-vt-header p {
  font-size: 13px; color: rgba(255,255,255,.55);
}

.oz-vt-note {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6;
  background: rgba(74,103,65,.2);
  border: 1px solid rgba(74,103,65,.35);
  border-radius: var(--r-md);
  padding: 12px 16px;
  margin-bottom: 24px;
}
.oz-vt-note svg { color: var(--green); flex-shrink: 0; margin-top: 1px; }

.verkaufstage-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 6px;
}
.vt-item {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 16px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  transition: background var(--ease), border-color var(--ease);
}
.vt-item:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.13);
}
.vt-item.vt-special {
  background: rgba(74,103,65,.25);
  border-color: var(--green);
}
.vt-date {
  display: flex; flex-direction: column; align-items: center;
  min-width: 42px;
}
.vt-day  { font-size: 20px; font-weight: 800; color: var(--white); line-height: 1; }
.vt-month { font-size: 11px; font-weight: 600; color: var(--green); text-transform: uppercase; letter-spacing: .06em; margin-top: 1px; }
.vt-info {
  display: flex; flex-direction: column; gap: 2px;
  border-left: 1px solid rgba(255,255,255,.1);
  padding-left: 16px;
  flex: 1;
}
.vt-time { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.9); }
.vt-note { font-size: 12px; color: var(--green); color: #7db86e; font-weight: 500; }

@media (max-width: 900px) {
  .oeffnungszeiten-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .oz-card-24h, .oz-verkaufstage {
    padding: 32px 24px;
  }
}
@media (max-width: 480px) {
  .oeffnungszeiten { padding: 72px 0; }
}

/* ── Hofladen – Product Detail Cards ─────────────────────── */
.hofladen-products { padding: 120px 0; background: var(--cream); }
.product-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.product-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--ease-out), box-shadow var(--ease-out);
}
.product-detail-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.product-detail-card-img {
  aspect-ratio: 4/3; overflow: hidden;
}
.product-detail-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}
.product-detail-card:hover .product-detail-card-img img { transform: scale(1.06); }
.product-detail-card-body { padding: 28px 28px 32px; }
.product-detail-card-tag {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--green); background: var(--green-light);
  border-radius: var(--r-full); padding: 4px 12px;
  margin-bottom: 14px;
}
.product-detail-card-body h3 { font-size: 20px; margin-bottom: 10px; }
.product-detail-card-body p  { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.product-detail-card-meta {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.product-detail-card-meta span {
  font-size: 11px; font-weight: 600; color: var(--earth);
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--r-full); padding: 4px 12px;
}

/* ── Hofladen – Hütte Section ─────────────────────────────── */
.hof-huette {
  background: var(--warm-dark);
  padding: 120px 0;
}
.hof-huette-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.hof-huette-text { color: var(--cream); }
.hof-huette-text .section-eyebrow { color: rgba(247,243,238,.5); }
.hof-huette-text h2 { color: var(--cream); margin-bottom: 28px; }
.hof-huette-text .body-text { color: rgba(247,243,238,.7); }
.hof-huette-facts {
  display: flex; flex-direction: column; gap: 18px; margin-top: 40px;
}
.hof-fact {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md);
}
.hof-fact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(74,103,65,.3);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
}
.hof-fact strong { display: block; font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.hof-fact span { font-size: 13px; color: rgba(247,243,238,.55); }
.hof-huette-img {
  border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5;
}
.hof-huette-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── Legal Pages ──────────────────────────────────────────── */
.legal-page { background: var(--cream); }
.legal-header {
  background: var(--warm-dark);
  padding: 160px 0 80px;
  text-align: center;
}
.legal-header h1 {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white);
  margin-bottom: 16px;
}
.legal-header p {
  font-size: 15px; color: rgba(247,243,238,.55);
}
.legal-content {
  padding: 80px 0 120px;
}
.legal-content-inner {
  max-width: 760px; margin: 0 auto;
}
.legal-content h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--earth);
  margin: 48px 0 16px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 16px; color: var(--earth);
  margin: 28px 0 10px;
}
.legal-content p, .legal-content li {
  font-size: 15px; line-height: 1.8;
  color: var(--muted);
  margin-bottom: 14px;
}
.legal-content ul, .legal-content ol {
  padding-left: 22px; list-style: disc;
}
.legal-content a { color: var(--green); text-decoration: underline; }
.legal-content a:hover { color: var(--green-dark); }
.legal-content address { font-style: normal; }
.legal-divider {
  border: none; border-top: 1px solid var(--border);
  margin: 40px 0;
}
.legal-notice {
  display: flex; align-items: flex-start; gap: 12px;
  background: #fef9e7;
  border: 1px solid #f5e4a0;
  border-radius: var(--r-md);
  padding: 16px 20px;
  margin-bottom: 36px;
  font-size: 14px; color: #7a6200; line-height: 1.6;
}
.legal-notice svg { color: #c49a00; flex-shrink: 0; margin-top: 1px; }
.legal-back {
  display: flex; align-items: center; flex-wrap: wrap; gap: 20px;
  margin-top: 56px; padding-top: 36px;
  border-top: 1px solid var(--border);
}

/* ── AGB-spezifische Elemente ─────────────────────────────── */
.agb-provider-box {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 20px 24px;
  margin-bottom: 36px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
}
.agb-provider-box strong { color: var(--gold); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.agb-provider-box a { color: var(--green); text-decoration: underline; }

.agb-notice {
  border-radius: var(--r-md);
  padding: 20px 24px;
  margin: 20px 0 28px;
  font-size: 14px;
  line-height: 1.7;
}
.agb-notice h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 16px 0 6px;
  color: inherit;
}
.agb-notice h4:first-child { margin-top: 0; }
.agb-notice p { margin: 0 0 10px; }
.agb-notice p:last-child { margin-bottom: 0; }
.agb-notice a { text-decoration: underline; color: inherit; }

.agb-notice--warning {
  background: #fef4ed;
  border: 1px solid #f5c49a;
  color: #7a3c00;
}
.agb-notice--neutral {
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--text);
}

.agb-section-special {
  padding-top: 12px;
  color: var(--gold);
}
.agb-pdf-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-top: 8px;
}
.agb-pdf-link svg { color: var(--green); flex-shrink: 0; }
.agb-pdf-link a { color: var(--green); text-decoration: underline; font-weight: 500; }
.agb-pdf-link a:hover { color: var(--green-dark); }

/* ── Kontakt Sub-page ─────────────────────────────────────── */
.kontakt-page-section { padding: 120px 0; }
.kontakt-page-inner {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 96px;
}
.kontakt-info-block { }
.kontakt-info-block h2 { margin-bottom: 20px; }
.kontakt-info-block .body-text { margin-bottom: 36px; }
.kontakt-info-items { display: flex; flex-direction: column; gap: 14px; }
.kontakt-info-item {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: 14px; font-weight: 600; color: var(--earth);
  transition: border-color var(--ease);
}
.kontakt-info-item:hover { border-color: var(--green); }
.kontakt-info-item svg { color: var(--green); flex-shrink: 0; }
.kontakt-map-block { margin-top: 60px; }
.kontakt-map-block h2 { font-size: clamp(24px, 3vw, 36px); margin-bottom: 24px; }
.kontakt-map-pill {
  border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 16/9; box-shadow: var(--sh-md);
}
.kontakt-map-pill iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── Responsive – Sub-pages ───────────────────────────────── */
@media (max-width: 960px) {
  .team-inner          { grid-template-columns: 1fr; gap: 56px; }
  .subpage-story-inner { grid-template-columns: 1fr; gap: 56px; }
  .hof-huette-inner    { grid-template-columns: 1fr; gap: 56px; }
  .kontakt-page-inner  { grid-template-columns: 1fr; gap: 56px; }
  .product-detail-grid { grid-template-columns: 1fr 1fr; }
  .values-strip-grid   { grid-template-columns: 1fr; }
  .values-strip-item   { border-right: none; border-bottom: 1px solid var(--border); }
  .values-strip-item:last-child { border-bottom: none; }
  .gallery-grid        { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall   { aspect-ratio: 4/3; grid-row: span 1; }
  .breadcrumb          { padding: calc(var(--nav-h) + 20px) 40px 0; }
}
@media (max-width: 640px) {
  .subpage-hero         { height: 56vh; min-height: 340px; padding-bottom: 48px; }
  .product-detail-grid  { grid-template-columns: 1fr; }
  .gallery-grid         { grid-template-columns: 1fr; }
  .team-section         { padding: 80px 0; }
  .farm-gallery         { padding: 80px 0; }
  .hofladen-products    { padding: 80px 0; }
  .hof-huette           { padding: 80px 0; }
  .page-cta             { padding: 72px 0; }
  .subpage-story        { padding: 80px 0; }
  .kontakt-page-section { padding: 80px 0; }
  .breadcrumb           { padding: calc(var(--nav-h) + 16px) 20px 0; }
}

/* ══════════════════════════════════════════════════════════════
   SHOP PAGE
══════════════════════════════════════════════════════════════ */

/* Shipping Notice */
.shipping-notice {
  background: var(--green);
  padding: 18px 0;
}
.shipping-notice-inner {
  display: flex; align-items: center; gap: 20px;
  color: var(--white);
}
.shipping-notice-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(255,255,255,.15); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.shipping-notice-text strong {
  display: block; font-size: 15px; font-weight: 800; margin-bottom: 3px;
}
.shipping-notice-text p {
  font-size: 13px; opacity: .8; line-height: 1.5;
}

/* Shop Section */
.shop-section { padding: 100px 0; }

/* Shop Product Grid – horizontal cards */
.shop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
}
.shop-card {
  display: flex;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--ease-out), box-shadow var(--ease-out), border-color var(--ease);
}
.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: var(--green);
}
.shop-card-img {
  width: 200px; flex-shrink: 0;
  overflow: hidden;
}
.shop-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}
.shop-card:hover .shop-card-img img { transform: scale(1.07); }
.shop-card-body {
  padding: 28px 28px 28px 24px;
  display: flex; flex-direction: column; justify-content: space-between;
  flex: 1;
}
.shop-card-tag {
  display: inline-block; margin-bottom: 10px;
  font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green); background: var(--green-light);
  border-radius: var(--r-full); padding: 4px 12px;
}
.shop-card-tag.unavailable { color: var(--muted); background: #F0ECE8; }
.shop-card-name { font-size: 18px; font-weight: 800; color: var(--earth); margin-bottom: 8px; }
.shop-card-desc { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.shop-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.shop-card-price {
  font-size: 20px; font-weight: 900; color: var(--green);
}
.shop-card-price small { font-size: 13px; font-weight: 600; color: var(--muted); }
.shop-card-price.tbd { font-size: 13px; font-weight: 700; color: var(--muted); }
.shop-card-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: .04em;
  color: var(--green); padding: 9px 16px;
  border: 1.5px solid var(--green); border-radius: var(--r-full);
  transition: background var(--ease), color var(--ease);
  background: none;
}
.shop-card:hover .shop-card-btn { background: var(--green); color: var(--white); }
.shop-card.sold-out { opacity: .7; cursor: default; }
.shop-card.sold-out:hover { transform: none; box-shadow: none; border-color: var(--border); }

/* ── Kanal-Badge auf Produktkarte ────────────────────────── */
.shop-card-channel-badge {
  position: absolute; top: 10px; left: 10px;
  font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 8px; border-radius: var(--r-full);
}
.shop-card-channel-badge.hofladen { background: var(--earth); color: #fff; }
.shop-card-channel-badge.online   { background: var(--green); color: #fff; }

/* ── Karten-CTA: einzelner voller Button ─────────────────── */
.shop-card-footer {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.shop-card-add-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 12px 16px;
  border-radius: var(--r-full);
  font-size: 13px; font-weight: 700; letter-spacing: .02em;
  background: var(--green); color: #fff; border: none;
  transition: background .2s ease, transform .2s ease;
  cursor: pointer;
}
.shop-card-add-btn:hover { background: var(--green-dark); transform: translateY(-1px); }
.shop-card-add-btn.in-cart {
  background: var(--cream);
  color: var(--green);
  border: 1.5px solid var(--green);
}
.shop-card-add-btn.in-cart:hover { background: #e8f0e5; }
.shop-card-hofladen-note {
  display: block; text-align: center;
  font-size: 12px; color: var(--muted); font-weight: 600;
}

/* ── Kanal-Filter-Tabs ────────────────────────────────────── */
.shop-filter-tabs {
  display: flex; align-items: center; gap: 8px;
  justify-content: center; margin-bottom: 40px; flex-wrap: wrap;
}
.shop-filter-tab {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 20px; border-radius: var(--r-full);
  font-size: 13px; font-weight: 700; letter-spacing: .02em;
  border: 1.5px solid var(--border);
  background: none; color: var(--muted);
  transition: all .2s ease; cursor: pointer;
}
.shop-filter-tab:hover  { border-color: var(--green); color: var(--green); }
.shop-filter-tab.active { background: var(--green); color: #fff; border-color: var(--green); }

/* ── Warenkorb FAB ────────────────────────────────────────── */
.cart-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green); color: #fff; border: none;
  box-shadow: 0 6px 24px rgba(74,103,65,.4);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
}
.cart-fab:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 10px 30px rgba(74,103,65,.5); }
.cart-fab-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--rust); color: #fff;
  font-size: 11px; font-weight: 800;
  border-radius: 50%; min-width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff; padding: 0 2px;
}

/* ── Warenkorb-Toast ─────────────────────────────────────── */
.cart-toast {
  position: fixed; bottom: 96px; right: 24px; z-index: 600;
  background: #2D2D2D; color: #fff;
  padding: 10px 16px; border-radius: 10px;
  font-size: 13px; font-weight: 600;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  opacity: 0; transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
  max-width: 260px; pointer-events: none;
}
.cart-toast.show { opacity: 1; transform: translateY(0); }

/* ── Warenkorb Overlay ───────────────────────────────────── */
.cart-overlay {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(10,8,6,.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

/* ── Warenkorb Drawer ────────────────────────────────────── */
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 401;
  width: 100%; max-width: 440px;
  background: var(--white);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.16,1,.3,1);
  box-shadow: -8px 0 48px rgba(0,0,0,.14);
}
.cart-drawer.open { transform: translateX(0); }

/* Drawer – Header */
.cart-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
  flex-shrink: 0;
}
.cart-drawer-head-left { display: flex; align-items: center; gap: 10px; }
.cart-drawer-head-left > svg { color: var(--green); flex-shrink: 0; }
.cart-drawer-head-title { font-size: 15px; font-weight: 800; color: var(--text); letter-spacing: -.01em; }
.cart-drawer-count {
  background: var(--green); color: #fff;
  font-size: 11px; font-weight: 800; border-radius: 50%;
  min-width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
}
.cart-drawer-close {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid var(--border); background: none;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.cart-drawer-close:hover { background: var(--rust); color: #fff; border-color: var(--rust); }

/* Drawer – Scrollbarer Inhalt */
.cart-drawer-scroll {
  flex: 1; overflow-y: auto; padding: 24px;
  -webkit-overflow-scrolling: touch;
}

/* Drawer – Items */
.cart-drawer-items { margin-bottom: 4px; }
.cart-drawer-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.cart-drawer-item:first-child { padding-top: 0; }
.cart-drawer-item:last-child  { border-bottom: none; }
.cart-drawer-item-img {
  width: 60px; height: 60px; object-fit: cover;
  border-radius: 10px; flex-shrink: 0;
  border: 1px solid var(--border);
}
.cart-drawer-item-body { flex: 1; min-width: 0; }
.cart-drawer-item-name { font-size: 13px; font-weight: 700; color: var(--text); line-height: 1.3; }
.cart-drawer-item-qty {
  display: flex; align-items: center; gap: 6px; margin-top: 8px;
}
.cart-qty-btn {
  width: 28px; height: 28px; border-radius: 8px;
  border: 1.5px solid var(--border); background: var(--cream);
  font-size: 16px; font-weight: 700; color: var(--green); line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: all .15s; cursor: pointer;
}
.cart-qty-btn:hover { background: var(--green); color: #fff; border-color: var(--green); }
.cart-qty-val { font-size: 13px; font-weight: 700; min-width: 54px; text-align: center; color: var(--text); }
.cart-drawer-item-remove {
  width: 28px; height: 28px; border-radius: 8px;
  border: none; background: none; color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; cursor: pointer;
  transition: color .15s, background .15s;
}
.cart-drawer-item-remove:hover { color: var(--rust); background: rgba(196,87,42,.09); }

/* Drawer – Empty state */
.cart-drawer-empty {
  text-align: center; padding: 40px 0; color: var(--muted);
}
.cart-drawer-empty svg { color: var(--border); display: block; margin: 0 auto 12px; }
.cart-drawer-empty p { font-size: 14px; margin-top: 6px; }

/* Drawer – Formular-Sektion */
.cart-drawer-form-section {
  border-top: 1px solid var(--border);
  padding-top: 24px; margin-top: 20px;
}
.cart-drawer-form-title {
  font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 18px;
}
.cart-drawer-disclaimer {
  font-size: 11px; color: var(--muted); text-align: center;
  margin-top: 10px; line-height: 1.6;
}

/* Drawer – Erfolgs-State */
.cart-drawer-success {
  text-align: center; padding: 32px 0;
}
.cart-drawer-success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: #EBF0E8; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: var(--green);
}
.cart-drawer-success h3 { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.cart-drawer-success p  { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── Shop Modal ──────────────────────────────────────────── */
.shop-modal-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(24,16,10,.65); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.shop-modal-overlay.open {
  opacity: 1; pointer-events: all;
}
.shop-modal {
  background: var(--white);
  border-radius: var(--r-lg);
  width: 100%; max-width: 900px;
  max-height: 90svh;
  display: flex; overflow: hidden;
  transform: scale(.96) translateY(12px);
  transition: transform .38s cubic-bezier(.16,1,.3,1);
  box-shadow: var(--sh-xl);
}
.shop-modal-overlay.open .shop-modal { transform: scale(1) translateY(0); }

.shop-modal-left {
  width: 42%; flex-shrink: 0;
  position: relative; overflow: hidden;
}
.shop-modal-left img {
  width: 100%; height: 100%; object-fit: cover;
}
.shop-modal-left-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(74,103,65,.25) 0%, transparent 60%);
}
.shop-modal-badge {
  position: absolute; top: 20px; left: 20px;
  background: var(--white); color: var(--green);
  font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--r-full);
  box-shadow: var(--sh-sm);
}

.shop-modal-right {
  flex: 1; overflow-y: auto; padding: 40px 36px;
  display: flex; flex-direction: column; gap: 0;
}
.shop-modal-close {
  position: absolute; top: 20px; right: 20px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.9); backdrop-filter: blur(4px);
  border: none; color: var(--earth);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: var(--sh-sm);
  transition: background var(--ease), transform var(--ease);
}
.shop-modal-close:hover { background: var(--white); transform: scale(1.1); }

.shop-modal-product-cat {
  font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--green); margin-bottom: 10px;
}
.shop-modal-product-name {
  font-size: clamp(22px, 3vw, 30px); font-weight: 900;
  color: var(--earth); line-height: 1.1; margin-bottom: 16px;
}
.shop-modal-price-row {
  display: flex; align-items: baseline; gap: 10px; margin-bottom: 20px;
}
.shop-modal-price {
  font-size: 28px; font-weight: 900; color: var(--green);
}
.shop-modal-price small { font-size: 14px; font-weight: 600; color: var(--muted); }
.shop-modal-price.tbd { font-size: 14px; font-weight: 700; color: var(--muted); }
.shop-modal-desc {
  font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 20px;
}
.shop-modal-details {
  display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px;
}
.shop-modal-detail-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--earth);
}
.shop-modal-detail-item::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
}
.shop-modal-divider {
  border: none; border-top: 1px solid var(--border); margin: 8px 0 28px;
}
.shop-modal-form-title {
  font-size: 16px; font-weight: 800; color: var(--earth); margin-bottom: 20px;
}
/* Order form reuses existing .form-group + .form-row + .btn styles */
.order-form .form-group { margin-bottom: 14px; }
.order-form .form-group label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.order-form .form-group input,
.order-form .form-group textarea,
.order-form .form-group select {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  font-family: var(--font); font-size: 14px; font-size: max(14px, 16px);
  color: var(--earth); background: var(--cream); outline: none;
  transition: border-color var(--ease), background var(--ease);
}
.order-form .form-group input:focus,
.order-form .form-group textarea:focus,
.order-form .form-group select:focus {
  border-color: var(--green); background: var(--white);
}
.order-form .form-group input.error,
.order-form .form-group textarea.error { border-color: var(--rust); }
.order-form .form-group textarea { resize: vertical; min-height: 80px; }
.order-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.order-form .label-opt { font-weight: 400; opacity: .65; }

/* Payment radio buttons */
.payment-radio-group { display: flex; gap: 12px; }
.payment-radio-option {
  flex: 1; display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid var(--border); border-radius: var(--r-md);
  cursor: pointer; transition: border-color var(--ease), background var(--ease);
}
.payment-radio-option:hover { border-color: var(--green); background: var(--green-light); }
.payment-radio-option input[type="radio"] { accent-color: var(--green); width: 16px; height: 16px; }
.payment-radio-option .payment-radio-label { font-size: 13px; font-weight: 700; color: var(--earth); }
.payment-radio-option .payment-radio-sub  { font-size: 11px; color: var(--muted); }

.order-success {
  text-align: center; padding: 40px 20px;
  display: none;
}
.order-success.show { display: block; }
.order-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--green-light); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 28px;
}
.order-success h3 { font-size: 20px; font-weight: 800; color: var(--earth); margin-bottom: 10px; }
.order-success p  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── Payment Methods Section (full page) ─────────────────── */
.payment-section { background: var(--green-light); padding: 80px 0; }
.payment-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px;
}
.payment-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px 28px; text-align: center;
}
.payment-card-icon {
  width: 60px; height: 60px; margin: 0 auto 16px;
  background: var(--green-light); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
}
.payment-card h3 { font-size: 16px; font-weight: 800; color: var(--earth); margin-bottom: 8px; }
.payment-card p  { font-size: 13px; color: var(--muted); line-height: 1.65; }
.payment-card-badge {
  display: inline-block; margin-top: 14px;
  font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--green); background: var(--green-light);
  border-radius: var(--r-full); padding: 4px 12px;
}

/* Responsive shop */
@media (max-width: 960px) {
  .shop-grid       { grid-template-columns: 1fr; }
  .shop-modal      { flex-direction: column; max-height: 95svh; }
  .shop-modal-left { width: 100%; height: 240px; }
  .shop-modal-right { padding: 28px 24px; }
  .order-form .form-row { grid-template-columns: 1fr; }
  .payment-grid    { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .shop-section    { padding: 72px 0; }
  .payment-section { padding: 64px 0; }
  .shop-card       { flex-direction: column; }
  .shop-card-img   { width: 100%; height: 200px; }
  .payment-radio-group { flex-direction: column; }
  .shop-modal-overlay { padding: 0; align-items: flex-end; }
  .shop-modal      { border-radius: var(--r-lg) var(--r-lg) 0 0; max-height: 95svh; }
}

/* ══════════════════════════════════════════════════════════════
   REZEPTE PAGE
══════════════════════════════════════════════════════════════ */
.rezepte-section { padding: 96px 0; background: var(--cream); }

.rezepte-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.rezept-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--sh-sm);
  cursor: pointer;
  transition: transform var(--ease-out), box-shadow var(--ease-out);
  text-align: left;
}
.rezept-card:hover { transform: translateY(-8px); box-shadow: var(--sh-xl); }
.rezept-card:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.rezept-card-img {
  position: relative; height: 220px; overflow: hidden;
}
.rezept-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.rezept-card:hover .rezept-card-img img { transform: scale(1.07); }

.rezept-card-cat {
  position: absolute; top: 12px; left: 12px;
  font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--green); color: var(--white);
  padding: 5px 12px; border-radius: var(--r-full);
}

.rezept-card-body { padding: 22px 22px 26px; }

.rezept-card-meta {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 12px;
}
.rezept-card-meta span {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; color: var(--muted); font-weight: 500;
}
.rezept-card-meta svg { color: var(--green); }

.rezept-card-body h3 {
  font-size: 18px; font-weight: 700; color: var(--earth);
  margin-bottom: 6px;
}
.rezept-card-body p {
  font-size: 13px; color: var(--muted);
}

.rezepte-cta {
  margin-top: 64px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 22px;
}
.rezepte-cta p { font-size: 15px; color: var(--muted); max-width: 420px; }

/* ── Rezepte Teaser (Startseite) ──────────────────────────── */
.rezepte-teaser { padding: 96px 0; background: var(--cream); }
.rezepte-teaser-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin: 48px 0 36px;
}
.rezept-teaser-card {
  display: block;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: var(--dark);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s;
}
.rezept-teaser-card:hover { transform: translateY(-5px); box-shadow: 0 8px 32px rgba(0,0,0,.12); }
.rezept-teaser-img { position: relative; overflow: hidden; }
.rezept-teaser-img img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform .4s; }
.rezept-teaser-card:hover .rezept-teaser-img img { transform: scale(1.04); }
.rezept-teaser-cat {
  position: absolute; top: 14px; left: 14px;
  background: var(--green); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
}
.rezept-teaser-body { padding: 22px 24px 24px; }
.rezept-teaser-body h3 { font-size: 18px; font-weight: 700; margin: 0 0 8px; }
.rezept-teaser-body p  { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0 0 14px; }
.rezept-teaser-meta { display: flex; gap: 16px; font-size: 13px; font-weight: 600; color: var(--green); }
.rezepte-teaser-cta { text-align: center; }
@media (max-width: 640px) { .rezepte-teaser-grid { grid-template-columns: 1fr; } }

/* ── Rezept Modal ─────────────────────────────────────────── */
.rezept-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(20,12,6,.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  z-index: 1100;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.rezept-modal-overlay.open {
  opacity: 1; pointer-events: all;
}
.rezept-modal {
  position: relative;
  background: var(--white);
  border-radius: var(--r-xl);
  width: 100%; max-width: 980px;
  max-height: calc(100svh - 48px);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  transform: scale(.96) translateY(14px);
  transition: transform .35s cubic-bezier(0.16,1,0.3,1);
}
.rezept-modal-overlay.open .rezept-modal {
  transform: scale(1) translateY(0);
}

.rezept-modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 38px; height: 38px;
  background: rgba(0,0,0,.06);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--earth);
  transition: background var(--ease), transform var(--ease);
}
.rezept-modal-close:hover { background: rgba(0,0,0,.12); transform: scale(1.1); }

.rezept-modal-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  height: 100%;
  overflow: hidden;
}

.rezept-modal-left {
  background: var(--garlic-white);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.rezept-modal-img-wrap {
  width: 100%; height: 240px; flex-shrink: 0; overflow: hidden;
}
.rezept-modal-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}

.rezept-modal-quick {
  display: flex; flex-direction: column; gap: 10px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.rezept-quick-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--earth); font-weight: 500;
}
.rezept-quick-item svg { color: var(--green); flex-shrink: 0; }

.rezept-modal-yt { padding: 16px 24px 20px; }
.rezept-yt-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700;
  color: #ff0000; letter-spacing: .05em; text-transform: uppercase;
  margin-bottom: 10px;
}
.rezept-yt-embed iframe {
  width: 100%; aspect-ratio: 16/9;
  border: 0; border-radius: var(--r-md);
}

.rezept-modal-right {
  padding: 36px 40px 36px;
  overflow-y: auto;
}
.rezept-modal-eyebrow {
  display: block;
  font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--green); margin-bottom: 10px;
}
.rezept-modal-right h2 {
  font-size: 26px; font-weight: 800; color: var(--earth);
  margin-bottom: 6px; line-height: 1.2;
}
.rezept-modal-subtitle {
  font-size: 15px; color: var(--muted); margin-bottom: 16px;
}
.rezept-modal-desc {
  font-size: 14px; color: var(--muted); line-height: 1.7;
  margin-bottom: 28px;
}

.rezept-modal-section { margin-bottom: 28px; }
.rezept-modal-section h4 {
  font-size: 13px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px;
  padding-bottom: 8px; border-bottom: 1px solid var(--border);
}

.rezept-zutaten {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
}
.rezept-zutaten li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--earth); line-height: 1.5;
}
.rezept-zutaten li::before {
  content: '🧄';
  font-size: 13px; flex-shrink: 0; margin-top: 1px;
}

.rezept-zubereitung {
  list-style: none;
  display: flex; flex-direction: column; gap: 14px;
  counter-reset: zubereitungCounter;
}
.rezept-zubereitung li {
  display: flex; gap: 14px;
  font-size: 14px; color: var(--earth); line-height: 1.65;
  counter-increment: zubereitungCounter;
}
.rezept-zubereitung li::before {
  content: counter(zubereitungCounter);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  width: 26px; height: 26px;
  background: var(--green); color: var(--white);
  border-radius: 50%;
  font-size: 11px; font-weight: 700;
  margin-top: 1px;
}

@media (max-width: 900px) {
  .rezepte-grid { grid-template-columns: repeat(2, 1fr); }
  .rezept-modal-inner { grid-template-columns: 1fr; }
  .rezept-modal-left { flex-direction: row; flex-wrap: wrap; }
  .rezept-modal-img-wrap { width: 100%; height: 200px; }
  .rezept-modal-quick { flex-direction: row; flex-wrap: wrap; gap: 14px; padding: 16px 20px; }
  .rezept-modal-right { padding: 28px 24px; }
  .rezept-modal-yt { width: 100%; }
}
@media (max-width: 580px) {
  .rezepte-section { padding: 72px 0; }
  .rezepte-grid { grid-template-columns: 1fr; }
  .rezept-modal { border-radius: var(--r-lg) var(--r-lg) 0 0; }
  .rezept-modal-overlay { padding: 0; align-items: flex-end; }
  .rezept-modal { max-height: 95svh; }
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */

/* ── Banner container ─────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 32px rgba(61,43,31,.10);
  padding: 20px 24px;
  transform: translateY(110%);
  transition: transform .35s cubic-bezier(.32,.78,.4,1);
}
.cookie-banner-visible { transform: translateY(0); }
.cookie-banner-hide    { transform: translateY(110%); }

.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* ── Banner text ──────────────────────────────────────────── */
.cookie-banner-text { flex: 1 1 320px; }
.cookie-banner-title {
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--earth);
  margin: 0 0 6px;
}
.cookie-banner-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.cookie-link { color: var(--forest); text-decoration: underline; }

/* ── Banner buttons ───────────────────────────────────────── */
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}
.cookie-btn-accept {
  background: var(--forest);
  color: var(--cream);
  border: none;
  border-radius: var(--r-sm);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
}
.cookie-btn-accept:hover { background: #3a5233; }
.cookie-btn-reject {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color .15s, color .15s;
}
.cookie-btn-reject:hover { border-color: var(--text-muted); color: var(--earth); }
.cookie-btn-secondary {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
  border-radius: var(--r-sm);
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
}
.cookie-btn-secondary:hover { background: rgba(74,103,65,.07); }

/* ── Settings panel ───────────────────────────────────────── */
.cookie-settings-panel {
  max-width: 1100px;
  margin: 16px auto 0;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.cookie-settings-panel[hidden] { display: none; }
.cookie-toggle-list { display: flex; flex-direction: column; gap: 12px; }
.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cookie-toggle-info { flex: 1 1 0; }
.cookie-toggle-info strong { font-size: 13px; font-weight: 600; color: var(--earth); display: block; margin-bottom: 2px; }
.cookie-toggle-info small  { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.cookie-always-on {
  font-size: 12px;
  font-weight: 600;
  color: var(--forest);
  background: rgba(74,103,65,.10);
  border-radius: 999px;
  padding: 3px 10px;
  white-space: nowrap;
}
.cookie-settings-footer {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
}

/* ── Toggle switch ────────────────────────────────────────── */
.cookie-toggle-switch {
  position: relative;
  display: inline-block;
  width: 42px; height: 24px;
  flex-shrink: 0;
  cursor: pointer;
}
.cookie-toggle-switch input { opacity: 0; width: 0; height: 0; position: absolute; }
.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: #d1c9c0;
  border-radius: 999px;
  transition: background .2s;
}
.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform .2s;
  box-shadow: 0 1px 3px rgba(0,0,0,.18);
}
.cookie-toggle-switch input:checked + .cookie-toggle-slider           { background: var(--forest); }
.cookie-toggle-switch input:checked + .cookie-toggle-slider::before   { transform: translateX(18px); }

/* ── Consent map placeholder ──────────────────────────────── */
.consent-map-wrap {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--warm-bg, #F7F3EE);
  border-radius: inherit;
}
.consent-placeholder {
  text-align: center;
  padding: 32px 24px;
  max-width: 360px;
}
.consent-placeholder-icon {
  width: 52px; height: 52px;
  background: rgba(74,103,65,.10);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--forest);
}
.consent-placeholder-title {
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--earth);
  margin: 0 0 8px;
}
.consent-placeholder-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 20px;
}

/* ── Consent Instagram placeholder ───────────────────────── */
.consent-ig-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  background: rgba(247,243,238,.08);
  border-radius: var(--r-lg);
  border: 1px solid rgba(247,243,238,.15);
}
.consent-ig-placeholder .consent-placeholder-title,
.consent-ig-placeholder .consent-placeholder-desc { color: rgba(247,243,238,.85); }
.consent-ig-placeholder .consent-placeholder-desc { color: rgba(247,243,238,.55); }
.consent-ig-placeholder .consent-placeholder-icon {
  background: rgba(247,243,238,.12);
  color: rgba(247,243,238,.85);
}

/* ── Mobile cookie banner ─────────────────────────────────── */
@media (max-width: 640px) {
  .cookie-banner { padding: 16px 16px 20px; }
  .cookie-banner-inner { gap: 16px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn-accept, .cookie-btn-reject, .cookie-btn-secondary { flex: 1; text-align: center; }
  .cookie-settings-footer { justify-content: stretch; }
  .cookie-settings-footer .cookie-btn-accept { width: 100%; }
}
