/* ============================================================
   FONTS – Open Sans (lokal, kein CDN)
   ============================================================ */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/open-sans/open-sans-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/open-sans/open-sans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/open-sans/open-sans-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/open-sans/open-sans-700.woff2') format('woff2');
}

/* ============================================================
   DESIGN TOKENS
   Markenfarbe: #a4c515 (Lime-Grün aus Logo)
   Markenelement: Breites grünes Panel links (wie Baustellenseite)
   ============================================================ */
/* Alpine.js: hide elements with x-cloak until Alpine initialises */
[x-cloak] { display: none !important; }

:root {
  --green:         #a4c515;
  --green-dark:    #7d9710;
  --green-darker:  #5c700b;
  --green-light:   #c8e040;
  --green-pale:    #f2f8db;
  --green-subtle:  #f7fbeb;

  --white:         #ffffff;
  --bg:            #ffffff;
  --bg-alt:        #f8f9f6;
  --bg-section:    #f4f6ef;

  --border:        #e2e8d0;
  --border-light:  #eef2e4;

  --text:          #2d3020;
  --text-secondary:#4a5030;
  --text-muted:    #7a8860;
  --text-light:    #aab890;

  /* Das Markenelement: Breite des grünen Panels */
  --panel-width:   220px;   /* Desktop */
  --panel-width-md:160px;   /* Tablet */

  /* Abstand zwischen Panel und Content */
  --content-offset: 3rem;

  --font:          'Open Sans', system-ui, -apple-system, sans-serif;
  --radius:        5px;
  --radius-lg:     10px;
  --shadow-sm:     0 1px 4px rgba(60,80,0,0.07);
  --shadow:        0 3px 12px rgba(60,80,0,0.10);
  --shadow-lg:     0 8px 28px rgba(60,80,0,0.13);
  --transition:    0.22s ease;
  --danger:        #dc3545;
  --danger-bg:     #fde8e8;
  --danger-border: #f5a5a5;

  --nav-height:    4.5rem;  /* Höhe #mainNav – für scroll-margin-top der Sections */
  --nav-h:         var(--nav-height); /* Alias – wird in Inline-Styles der Seiten verwendet */
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
section[id] { scroll-margin-top: var(--nav-height); }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  overflow-x: clip;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}
a { color: var(--green-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green); }
img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--green); color: #fff; }

/* ============================================================
   PERSISTENTES LINKES GRÜNES PANEL
   Das zentrale Markenelement der Brennerei Burger
   ============================================================ */
#sidePanel {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--panel-width);
  background: var(--green);
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Subtile Textur / Tiefe im Panel */
#sidePanel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.08) 0%,
    transparent 50%,
    rgba(0,0,0,0.06) 100%
  );
}

/* Dekorativer Kreis im Panel */
#sidePanel::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
}

.side-panel-logo {
  position: relative;
  z-index: 1;
  padding: 2rem;
  text-align: center;
}
.side-panel-logo img {
  width: 140px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.side-panel-nav {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  width: 100%;
  padding: 0 0.75rem;
  margin-top: 2rem;
}
.side-panel-nav a {
  display: block;
  padding: 0.55rem 1rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.side-panel-nav a:hover,
.side-panel-nav a.active {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.side-panel-social {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 1rem 0;
  margin-top: 1rem;
}
.side-panel-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.side-panel-social a:hover {
  background: rgba(255,255,255,0.3);
  color: #fff;
}

.side-panel-footer {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 1.5rem 1.25rem;
  text-align: center;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  border-top: 1px solid rgba(255,255,255,0.15);
  width: 100%;
}

/* ============================================================
   HAUPT-LAYOUT – verschoben um Panel-Breite
   ============================================================ */
.main-content {
  margin-left: var(--panel-width);
  min-height: 100vh;
}

/* Luft zwischen Panel und erstem Inhalt */
.main-content > section .container,
.main-content > section .hero-inner {
  padding-left: calc(var(--content-offset) + 15px);
  padding-right: calc(var(--content-offset) + 15px);
}

.main-content > footer {
  padding-left: var(--content-offset);
  padding-right: var(--content-offset);
}

/* ============================================================
   NAVBAR (kompakt, im Hauptbereich)
   ============================================================ */
#mainNav {
  position: fixed;
  top: 0;
  left: var(--panel-width);
  right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 1.5rem 0.7rem calc(var(--content-offset) + 1.5rem);
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow var(--transition);
}
#mainNav.scrolled {
  box-shadow: var(--shadow);
}

/* Desktop: Side-Panel hat die Navigation → Topbar-Links ausblenden */
#mainNav .nav-links { display: none; }

#mainNav .nav-cta { margin-left: auto; }
#navMobileLogo { display: none; }

/* Mobile Hamburger (nur sichtbar wenn Panel ausgeblendet) */
#mobileMenuBtn {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 1.1rem;
}
.mobile-nav-open #mobileMenu {
  display: flex !important;
}
#mobileMenu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 9998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem;
}
#mobileMenu a {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.75rem 2rem;
  border-left: 5px solid var(--green);
  width: 100%;
  max-width: 280px;
  transition: background var(--transition);
}
#mobileMenu a:hover { background: var(--green-pale); color: var(--green-dark); }
#mobileMenu .close-btn {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 0.25rem;
}

/* ============================================================
   HERO – Layout wie Baustellenseite: Panel links / Content rechts
   ============================================================ */
#hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--bg);
  padding-top: var(--nav-height);
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center right;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(255,255,255,0.18) 0%,
    rgba(255,255,255,0.08) 50%,
    rgba(255,255,255,0.00) 100%
  );
}

.hero-textbox {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 0.75rem;
  padding: 1.75rem 2rem 2rem;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 4rem 0;
}

.hero-logo {
  display: none;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 1rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 1.2em;
  background: var(--green);
  border-radius: 2px;
}
.hero-title {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.hero-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 2.25rem;
}
.hero-contact-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 20px;
  row-gap: 6px;
  margin-bottom: 1.75rem;
}
.hero-contact-box {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  background: var(--green-pale);
  border-left: 5px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.hero-contact-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(164,197,21,0.15);
  font-size: 1.08rem;
  color: var(--green-dark);
  transition: background 0.18s, color 0.18s;
}
.hero-contact-bar a:hover { background: var(--green); color: #fff; }
.hero-contact-name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.hero-contact-break { display: none; }
@media (max-width: 767px) {
  .hero-contact-break { display: block; flex: 0 0 100%; }
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounceArrow 2s infinite;
}
.hero-scroll a { color: var(--text-light); font-size: 1.3rem; }
.hero-scroll a:hover { color: var(--green); }
@keyframes bounceArrow {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ── Hero Botanicals ──────────────────────────────────────── */
.hero-botanicals {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.botanical {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  will-change: transform, opacity;
}
@keyframes floatUpA {
  0%   { transform: translateY(0)     translateX(0)    rotate(-8deg);  opacity: 0;    }
  12%  { opacity: 0.55; }
  82%  { opacity: 0.38; }
  100% { transform: translateY(-55vh) translateX(18px) rotate(14deg);  opacity: 0;    }
}
@keyframes floatUpB {
  0%   { transform: translateY(0)     translateX(0)    rotate(12deg);  opacity: 0;    }
  12%  { opacity: 0.45; }
  82%  { opacity: 0.28; }
  100% { transform: translateY(-50vh) translateX(-14px) rotate(-20deg); opacity: 0;   }
}
@keyframes floatUpC {
  0%   { transform: translateY(0)     translateX(0)    rotate(2deg);   opacity: 0;    }
  12%  { opacity: 0.52; }
  82%  { opacity: 0.35; }
  100% { transform: translateY(-52vh) translateX(10px) rotate(22deg);  opacity: 0;    }
}
.botanical.b1 { bottom: 4%;  left: 59%; animation: floatUpA 11s 0s   infinite; }
.botanical.b2 { bottom: 2%;  left: 74%; animation: floatUpB 14s 2.5s infinite; }
.botanical.b3 { bottom: 6%;  left: 86%; animation: floatUpC  9s 5s   infinite; }
.botanical.b4 { bottom: 3%;  left: 66%; animation: floatUpB 12s 7s   infinite; }
.botanical.b5 { bottom: 1%;  left: 80%; animation: floatUpA 10s 1.5s infinite; }
.botanical.b6 { bottom: 5%;  left: 92%; animation: floatUpC 13s 9s   infinite; }
@media (max-width: 991px) { .hero-botanicals { display: none; } }

/* ── Hero Bee ─────────────────────────────────────────────── */
.hero-bee {
  position: fixed;
  top: 0; left: 0;
  width: 55px; height: 40px;
  pointer-events: none;
  z-index: 9997;
  transform: translate(110vw, 20vh);
  opacity: 0;
  filter: drop-shadow(1px 2px 4px rgba(0,0,0,0.18));
  will-change: transform, opacity;
}
.bee-wing-l {
  transform-origin: 20px 17px;
  animation: wingFlap 0.13s ease-in-out infinite alternate;
}
.bee-wing-r {
  transform-origin: 34px 18px;
  animation: wingFlap 0.13s ease-in-out 0.065s infinite alternate;
}
@keyframes wingFlap {
  from { transform: scaleY(1); }
  to   { transform: scaleY(0.3); }
}
@keyframes beeFlight {
  0%   { transform: translate(110vw, 18vh);                            opacity: 0; }
  7%   { transform: translate(110vw, 18vh);                            opacity: 1; }
  33%  { transform: translate(50vw,  26vh) rotate(-10deg);             opacity: 1; }
  45%  { transform: translate(47vw,  24vh) rotate(6deg);                           }
  55%  { transform: translate(50vw,  27vh) rotate(-4deg);                          }
  65%  { transform: translate(47vw,  25vh) rotate(7deg);                           }
  77%  { transform: translate(82vw,  16vh) rotate(-6deg);              opacity: 1; }
  94%  { transform: translate(110vw, 13vh);                            opacity: 1; }
  100% { transform: translate(110vw, 13vh);                            opacity: 0; }
}
.hero-bee.bee-active {
  animation: beeFlight 8s cubic-bezier(.25,.1,.25,1) forwards;
}
.bee-inner {
  transform-origin: center;
}
@keyframes beeFlip {
  0%    { transform: scaleX(1);  }  /* schaut links – fliegt rein */
  65%   { transform: scaleX(1);  }  /* dreht sich um … */
  65.4% { transform: scaleX(-1); }  /* … sofortige Kehrtwendung */
  100%  { transform: scaleX(-1); }  /* schaut rechts – fliegt raus */
}
.hero-bee.bee-active .bee-inner {
  animation: beeFlip 8s cubic-bezier(.25,.1,.25,1) forwards;
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section-pad    { padding: 6rem 0; }
.section-pad-sm { padding: 4rem 0; }
.page-section-top { padding-top: calc(var(--nav-height) + 2.5rem); }

.section-header { margin-bottom: 3rem; }

/* Section-Label mit grünem Left-Marker */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 0.65rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 1.1em;
  background: var(--green);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Section-Titel mit linkem Akzent */
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 5px solid var(--green);
}
.section-intro {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 580px;
}

.section-richtext {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
}
.section-richtext p { margin-bottom: 0.85rem; }
.section-richtext p:last-child { margin-bottom: 0; }
.section-richtext ul,
.section-richtext ol { padding-left: 1.4rem; margin-bottom: 0.85rem; }
.section-richtext li { margin-bottom: 0.35rem; }
.section-richtext h2,
.section-richtext h3 { color: var(--text); margin-bottom: 0.5rem; margin-top: 1.25rem; }
.section-richtext strong { color: var(--text); }
.section-richtext a { color: var(--green); }
.section-richtext a:hover { color: var(--green-dark); }
.section-richtext--lg { font-size: 1.05rem; line-height: 1.8; }
.section-intro { font-size: 1.05rem; line-height: 1.8; color: var(--text-secondary); }
.form-hint { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.75rem; margin-bottom: 0; }
.text-green { color: var(--green); }

/* ============================================================
   ÜBER UNS
   ============================================================ */
#ueber-uns { background: var(--bg-alt); }

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image-wrap::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--green);
  z-index: 2;
}
.about-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.about-image-wrap:hover img { transform: scale(1.03); }
.about-image-wrap[data-src] { cursor: zoom-in; }
.about-image-wrap[data-src]::after {
  content: '\F52A';
  font-family: 'bootstrap-icons';
  position: absolute; inset: 0; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: #fff;
  background: rgba(0,0,0,0);
  opacity: 0;
  transition: opacity 0.25s, background 0.25s;
  pointer-events: none;
}
.about-image-wrap[data-src]:hover::after { opacity: 1; background: rgba(0,0,0,0.32); }

.about-badge {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  width: 108px;
  height: 108px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
  z-index: 3;
  box-shadow: var(--shadow);
}
.about-badge .year { font-size: 1.8rem; font-weight: 700; line-height: 1; }

.about-feature {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.1rem;
  align-items: flex-start;
}
.about-feature .icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: var(--green-pale);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-size: 1rem;
}
.about-feature h6 { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.1rem; }
.about-feature p { margin: 0; font-size: 0.83rem; color: var(--text-muted); }

/* ============================================================
   PRODUKTE
   ============================================================ */
#produkte { background: var(--bg); }

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 5px solid var(--green);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.75rem;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-icon { width: 56px; height: 56px; margin-bottom: 1rem; display: block; }
.product-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; }
.product-card p { color: var(--text-secondary); font-size: 0.875rem; margin: 0; }

/* ============================================================
   PREISLISTE & BESTELLUNG
   ============================================================ */
#preisliste { background: var(--bg-alt); }

.price-category { margin-bottom: 2.5rem; }

.price-category-title {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-dark);
  padding: 0.45rem 1rem 0.45rem 0.75rem;
  border-left: 5px solid var(--green);
  background: var(--green-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 1rem;
}

.price-table { width: 100%; border-collapse: separate; border-spacing: 0; background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.price-table th {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); padding: 0.6rem 0.875rem; background: var(--bg-section);
  border-bottom: 2px solid var(--border);
}
.price-table td { padding: 0.75rem 0.875rem; border-bottom: 1px solid var(--border-light); vertical-align: middle; font-size: 0.9rem; }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: var(--green-subtle); }
.price-table .product-name { font-weight: 600; color: var(--text); }
.price-table .product-desc { font-size: 0.78rem; color: var(--text-muted); margin-top: 1px; }

.price-badge {
  display: inline-block; font-size: 0.7rem; padding: 0.12rem 0.5rem;
  border-radius: 100px; background: var(--green-pale); color: var(--green-dark);
  border: 1px solid var(--border); font-weight: 600;
}
.price-amount { font-size: 0.975rem; color: var(--green-dark); font-weight: 700; white-space: nowrap; }
.price-table td:nth-child(3) { text-align: right; }
.price-table tr.var-row td:nth-child(2) { text-align: right; }

.qty-stepper { display: inline-flex; align-items: center; }
.qty-btn {
  width: 30px; height: 34px; padding: 0; line-height: 1;
  background: var(--bg-alt); border: 1px solid var(--border);
  color: var(--green-dark); font-size: 1.15rem; font-weight: 700;
  cursor: pointer; transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}
.qty-btn:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.qty-btn:last-child  { border-radius: 0 var(--radius) var(--radius) 0; }
.qty-btn:hover  { background: var(--green-pale); }
.qty-btn:active { background: var(--green); color: #fff; }

.qty-input {
  width: 44px; background: var(--bg-alt);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  border-left: none; border-right: none; border-radius: 0;
  color: var(--text); text-align: center;
  padding: 0.32rem 0.2rem; font-size: 0.875rem; font-family: var(--font);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.qty-input:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(164,197,21,0.18); }

/* Cart Summary */
.order-summary {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 5px solid var(--green);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.5rem;
  position: sticky; top: 5rem;
  box-shadow: var(--shadow-sm);
}
.order-summary h5 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green-dark); margin-bottom: 1rem; }
.cart-item { display: flex; justify-content: space-between; align-items: flex-start; padding: 0.5rem 0; border-bottom: 1px solid var(--border-light); font-size: 0.85rem; }
.cart-item:last-of-type { border-bottom: none; }
.cart-total { display: flex; justify-content: space-between; padding-top: 0.875rem; border-top: 2px solid var(--border); font-size: 1rem; font-weight: 700; }
.cart-total .amount { color: var(--green-dark); }

/* Order Form */
.order-form-wrap {
  margin-top: 2.5rem; background: var(--white);
  border: 1px solid var(--border); border-left: 5px solid var(--green);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 2rem; box-shadow: var(--shadow-sm);
}
.form-label-bb { font-size: 0.73rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.35rem; display: block; }
.form-control-bb {
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius);
  color: var(--text); padding: 0.6rem 0.875rem; font-size: 0.9rem; font-family: var(--font);
  width: 100%; transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.form-control-bb:focus { outline: none; background: #fff; border-color: var(--green); box-shadow: 0 0 0 3px rgba(164,197,21,0.18); }
.form-control-bb::placeholder { color: var(--text-light); }
.form-control-bb--invalid { border-color: #dc3545 !important; }
.form-control-bb--invalid:focus { border-color: #dc3545 !important; box-shadow: 0 0 0 3px rgba(220,53,69,0.18) !important; }

/* ============================================================
   GALERIE
   ============================================================ */
#galerie { background: var(--bg-section); }

.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 576px) { .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; } }
.gallery-item {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer; box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.gallery-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.gallery-item::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 5px; background: var(--green); z-index: 2;
  opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover::before { opacity: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(255,255,255,0); display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.gallery-item:hover .gallery-item-overlay { background: rgba(255,255,255,0.2); }
.gallery-item-overlay i {
  color: var(--green-dark); font-size: 1.5rem; opacity: 0; transform: scale(0.7);
  transition: opacity var(--transition), transform var(--transition);
  background: #fff; border-radius: 50%; padding: 0.5rem; box-shadow: var(--shadow);
}
.gallery-item:hover .gallery-item-overlay i { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox-backdrop {
  position: fixed; inset: 0; background: rgba(10,15,0,0.92); z-index: 9999;
  display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.lightbox-img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius-lg); box-shadow: 0 16px 60px rgba(0,0,0,0.5); }
.lightbox-close {
  position: absolute; top: 1.25rem; right: 1.25rem; background: rgba(255,255,255,0.9); border: none;
  color: var(--text); font-size: 1.25rem; cursor: pointer; border-radius: 50%;
  width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); transition: background 0.2s; z-index: 2;
}
.lightbox-close:hover { background: #fff; }
.lightbox-prev,
.lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15); border: none; color: #fff;
  font-size: 2rem; cursor: pointer; border-radius: 50%;
  width: 54px; height: 54px; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 2; line-height: 1;
}
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.3); }
.lightbox-counter {
  position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.75); font-size: 0.82rem;
  background: rgba(0,0,0,0.45); padding: 0.2rem 0.7rem; border-radius: 20px;
  pointer-events: none;
}

/* ============================================================
   KONTAKT
   ============================================================ */
#kontakt { background: var(--bg); }

.contact-info-item { display: flex; gap: 1.1rem; margin-bottom: 1.25rem; align-items: flex-start; }
.contact-info-item .icon {
  flex-shrink: 0; width: 42px; height: 42px; background: var(--green-pale);
  border-left: 4px solid var(--green); border-radius: 0 var(--radius) var(--radius) 0;
  display: flex; align-items: center; justify-content: center; color: var(--green-dark); font-size: 0.95rem;
}
.contact-info-item h6 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 0.15rem; }
.contact-info-item p { margin: 0; color: var(--text); font-size: 0.9rem; }

.map-frame { width: 100%; height: 280px; border: 0; border-radius: var(--radius-lg); border-left: 5px solid var(--green); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #181d0a;
  color: rgba(255,255,255,0.55);
  padding: 5rem 0 0;
  border-top: 4px solid var(--green);
}

.footer-top { padding-bottom: 4rem; }

.footer-logo-img {
  height: 42px;
  filter: brightness(0) invert(1);
  opacity: 0.88;
  display: block;
}
.footer-tagline {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  font-style: italic;
  margin: 1rem 0 1.1rem;
  line-height: 1.55;
}
address.footer-address {
  font-style: normal;
  font-size: 0.82rem;
  line-height: 2;
  color: rgba(255,255,255,0.45);
}
address.footer-address a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--transition);
}
address.footer-address a:hover { color: var(--green-light); }
address.footer-address .bi { color: var(--green); margin-right: 0.35rem; font-style: normal; }

.footer-heading {
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--green);
  margin-bottom: 1.2rem;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li { margin-bottom: 0.55rem; }
.footer-nav a {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--green-light); }


.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.1rem 0;
  margin-top: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.73rem;
  color: rgba(255,255,255,0.28);
}
.footer-bottom a {
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--green-light); }

/* ============================================================
   NEWS / AKTUELLES
   ============================================================ */

/* Übersicht: Karten */
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.news-card__img-link {
  display: block;
  overflow: hidden;
}
.news-card__img-link img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.news-card__img-link:hover img { transform: scale(1.04); }
.news-card__bar { height: 8px; background: var(--green); }
.news-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-meta {
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.news-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.75rem;
}
.news-card__title a { color: inherit; text-decoration: none; }
.news-card__teaser {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 1.25rem;
  flex: 1;
}
.news-card__spacer { flex: 1; }
.news-read-more {
  color: var(--green);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.news-read-more:hover { color: var(--green-dark); }

/* Artikel-Detail */
.article-wrap { max-width: 860px; }
.article-back {
  color: var(--green);
  text-decoration: none;
  font-size: 0.875rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}
.article-back:hover { color: var(--green-dark); }
.article-date {
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.article-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.article-teaser {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  border-left: 3px solid var(--green);
  padding-left: 1rem;
}
.article-figure { margin: 0 0 2.5rem; }
.article-figure img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.article-footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* ============================================================
   FORMULARE & ALERTS (seitenübergreifend)
   ============================================================ */

/* Formular-Karte (weißer Container mit Schatten) */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  padding: 2rem 2.5rem;
}
.form-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--green);
}

/* Fehlermeldung */
.alert-bb {
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  background: var(--danger-bg);
  border: 1px solid var(--danger-border);
  color: var(--danger);
}

/* Erfolgs-Box (Formular abgeschickt) */
.alert-success-bb {
  max-width: 600px;
  background: var(--green-pale);
  border: 1px solid var(--green);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
}
.alert-success-bb .emoji { font-size: 2.5rem; margin-bottom: 0.75rem; }
.alert-success-bb h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.alert-success-bb p { color: var(--text-secondary); margin: 0; }

/* Double-Opt-In-Hinweis (orange) */
.alert-optin {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  max-width: 480px;
  margin: 1rem auto;
  text-align: left;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.alert-optin__icon { color: #ea580c; font-size: 1.25rem; flex-shrink: 0; margin-top: 0.1rem; }
.alert-optin__text { font-size: 0.875rem; color: #7c2d12; }

/* Bestellbestätigung: Zusammenfassungs-Box */
.order-confirm-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.5rem;
}
.order-confirm-box__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.order-confirm-box__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
}
.order-confirm-box__number { font-family: monospace; }
.order-confirm-box__item {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.order-confirm-box__item-price { color: var(--green); font-weight: 600; }
.order-confirm-box__total {
  display: flex;
  justify-content: space-between;
  padding-top: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
}
.order-confirm-box__total-price { color: var(--green); }

.confirm-state        { text-align: center; margin-bottom: 2rem; }
.confirm-state__icon  { font-size: 3.5rem; line-height: 1; }
.confirm-state__title { font-size: 1.75rem; margin-top: 1rem; }
.confirm-state__body  { color: var(--text-secondary); margin-top: 0.5rem; }

/* Formular-Labels */
.form-label.fw-semibold { font-size: 0.875rem; }

/* ============================================================
   MODALS (Impressum / Datenschutz)
   ============================================================ */
.modal-content { background: var(--bg); border: 1px solid var(--border); border-top: 4px solid var(--green); border-radius: var(--radius-lg); color: var(--text); }
.modal-header { border-bottom: 1px solid var(--border); padding: 1.1rem 1.5rem; }
.modal-header .modal-title { font-size: 1.05rem; font-weight: 700; }
.modal-body { padding: 1.5rem; max-height: 68vh; overflow-y: auto; font-size: 0.875rem; line-height: 1.75; color: var(--text-secondary); }
.modal-body h4 { color: var(--text); font-size: 0.95rem; font-weight: 700; margin-top: 1.25rem; }
.modal-body h5 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green-dark); border-left: 4px solid var(--green); padding-left: 0.6rem; margin: 1rem 0 0.3rem; }
.modal-body::-webkit-scrollbar { width: 4px; }
.modal-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-bb {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--green); color: #fff; border: 2px solid var(--green); border-radius: var(--radius);
  padding: 0.65rem 1.6rem; font-size: 0.82rem; font-weight: 700; font-family: var(--font);
  letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer;
  transition: background var(--transition), transform 0.15s, box-shadow var(--transition);
  text-decoration: none;
}
.btn-bb:hover { background: var(--green-dark); border-color: var(--green-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-bb-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--green-dark); border: 2px solid var(--green); border-radius: var(--radius);
  padding: 0.65rem 1.6rem; font-size: 0.82rem; font-weight: 700; font-family: var(--font);
  letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer;
  transition: background var(--transition), color var(--transition), transform 0.15s;
  text-decoration: none;
}
.btn-bb-outline:hover { background: var(--green); color: #fff; transform: translateY(-2px); }
.btn-bb--lg { padding: 0.65rem 2rem; }

/* ============================================================
   ALERTS
   ============================================================ */
.alert-bb-success { background: var(--green-pale); border: 1px solid var(--border); border-left: 5px solid var(--green); color: var(--green-dark); border-radius: 0 var(--radius) var(--radius) 0; padding: 1rem 1.25rem; }
.alert-bb-error   { background: var(--danger-bg); border: 1px solid var(--danger-border); border-left: 5px solid var(--danger); color: var(--danger); border-radius: 0 var(--radius) var(--radius) 0; padding: 1rem 1.25rem; }

/* ============================================================
   AGE GATE
   ============================================================ */
.age-gate-overlay { position: fixed; inset: 0; background: linear-gradient(rgba(0,0,0,0.52),rgba(0,0,0,0.52)), url('/assets/images/age-check-bg.png') center/cover no-repeat; z-index: 99999; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.age-gate-box {
  background: var(--bg); border: 1px solid var(--border); border-top: 5px solid var(--green);
  border-radius: var(--radius-lg); padding: 3rem 2.5rem; text-align: center;
  max-width: 420px; width: 100%; box-shadow: var(--shadow-lg);
}
.age-gate-box .logo { height: 54px; width: auto; margin: 0 auto 2rem; }
.age-gate-box h2 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.age-gate-box p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 2rem; }
.age-gate-warning { font-size: 0.72rem; color: var(--text-muted); margin-top: 1.25rem; line-height: 1.6; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page { background: var(--bg); }

.legal-content h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 2rem 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--green-pale);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin: 1.25rem 0 0.5rem;
}
.legal-content p,
.legal-content li {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}
.legal-content ul,
.legal-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content a { color: var(--green-dark); text-decoration: underline; }
.legal-content a:hover { color: var(--green-darker); }

.legal-form-box {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin: 1.25rem 0;
}
.legal-form-box p { font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 1rem; }
.legal-form-box p:last-child { margin-bottom: 0; }

.legal-page .container     { max-width: 820px; }
.legal-page .section-title { font-size: 1.9rem; }
.legal-meta     { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.5rem; }
.legal-stand    { margin-top: 2.5rem; font-size: 0.82rem; color: var(--text-muted); }
.legal-footer   { border-top: 1px solid var(--border); }
hr.legal-hr     { margin: 2.5rem 0; border-color: var(--border); }
.legal-hint     { color: var(--text-muted); font-size: 0.85rem; }
.legal-form-fields {
  border: 1px solid var(--border);
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--bg-section);
}
.legal-footnote { font-size: 0.78rem; color: var(--text-muted); }

.shipping-card {
  background: var(--green-pale);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--green-light);
  text-align: center;
}
.shipping-card__icon  { font-size: 2rem; color: var(--green-dark); display: block; margin-bottom: 0.75rem; }
.shipping-card__value { font-size: 1.3rem; font-weight: 700; color: var(--text); }
.shipping-card__label { font-size: 0.85rem; color: var(--text-secondary); }

.address-box {
  font-style: normal;
  padding: 1rem;
  background: var(--bg-section);
  border-radius: var(--radius);
  border-left: 4px solid var(--green);
  margin: 1rem 0;
}

/* ============================================================
   SHOP / CHECKOUT (bestellen.php)
   ============================================================ */
.form-section-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-dark);
  border-left: 4px solid var(--green);
  padding-left: 0.6rem;
  margin: 1.75rem 0 1rem;
  display: block;
}
.form-section-label:first-child { margin-top: 0; }

.confirm-block {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
}
.confirm-block-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-dark);
  border-left: 4px solid var(--green);
  padding-left: 0.6rem;
  margin-bottom: 0.75rem;
}

/* Checkout option (Versandart / Zahlmethode) */
.checkout-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}
.checkout-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
  background: var(--white);
}
.checkout-option:has(input:checked) {
  border-color: var(--green);
  background: var(--green-subtle);
}
.checkout-option input[type="radio"] {
  accent-color: var(--green-dark);
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-top: 0.18rem;
}
.checkout-option-body {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}
.checkout-option-title {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.checkout-option-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-green    { color: var(--green-dark) !important; }
.text-muted-bb { color: var(--text-muted) !important; }
.divider-line  { border: none; border-top: 1px solid var(--border); margin: 3rem 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  :root { --panel-width: var(--panel-width-md); }
  .side-panel-nav a { font-size: 0.72rem; padding: 0.5rem 0.75rem; }
  .side-panel-logo img { width: 110px; }
}

@media (max-width: 767px) {
  /* Panel ausblenden, stattdessen mobiles Menü */
  #sidePanel { display: none; }
  .main-content { margin-left: 0; }
  :root { --content-offset: 0px; }
  .main-content > footer { padding-left: 0; padding-right: 0; }
  #mainNav { left: 0; padding: 0.7rem 1rem; }
  #mobileMenuBtn { display: flex; align-items: center; }
  #mainNav .nav-links { display: none; }
  #mainNav .nav-cta { display: flex; margin-left: 0; }
  #navMobileLogo {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    line-height: 0;
  }
  #navMobileLogo img { height: 30px; width: auto; }

  /* Außenabstände auf 15px reduzieren */
  .main-content > section .container,
  .main-content > section .hero-inner {
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-pad { padding: 3.5rem 0; }
  .section-pad.page-section-top { padding-top: calc(var(--nav-height) + 1.5rem); }
  .hero-title { font-size: 1.75rem; }
  .section-title { font-size: 1.45rem; }
  .about-badge { display: none; }
  .order-summary { position: static; margin-top: 1.5rem; }
}

@media (max-width: 575px) {
  /* Produkttabelle: Card-Layout – alle Infos sichtbar, aber gestapelt */
  .price-table thead { display: none; }
  .price-table tbody tr {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0.65rem 0.5rem;
    border-bottom: 1px solid var(--border-light);
    gap: 0.3rem 0.5rem;
  }
  .price-table tbody tr:last-child { border-bottom: none; }
  .price-table tbody tr:hover { background: var(--green-subtle); }
  .price-table td {
    display: block;
    border: none !important;
    padding: 0;
    vertical-align: middle;
  }
  /* Produktname: volle Breite */
  .price-table td:nth-child(1) { flex: 0 0 100%; }
  /* Vol. / Alk.: wächst */
  .price-table td:nth-child(2) { flex: 1; }
  /* Preis */
  .price-table td:nth-child(3) { flex-shrink: 0; }
  /* Menge: ganz rechts */
  .price-table td:nth-child(4) { margin-left: auto; flex-shrink: 0; }
  /* Folge-Varianten: kein Produktname-td → nth-child um 1 verschoben */
  .price-table tr.var-row td:nth-child(1) { flex: 1; margin-left: 0; }
  .price-table tr.var-row td:nth-child(2) { flex: 0 0 auto; margin-left: auto; }
  .price-table tr.var-row td:nth-child(3) { flex: 0 0 auto; margin-left: 0.5rem; }

  .checkout-options { grid-template-columns: 1fr; }
}

/* ============================================================
   SPRACHUMSCHALTER / LANGUAGE SWITCHER
   ============================================================ */
.lang-switcher {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.1rem;
  padding: 0.5rem 0 0.75rem;
}
.lang-btn {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  padding: 0.2rem 0.45rem;
  border-radius: 3px;
  transition: color 0.18s, background 0.18s;
  line-height: 1;
}
.lang-btn:hover { color: #fff; background: rgba(255,255,255,0.12); }
.lang-btn.active { color: #fff; background: rgba(255,255,255,0.18); }
.lang-sep { color: rgba(255,255,255,0.25); font-size: 0.6rem; }

#mobileMenu .lang-btn {
  color: var(--text-muted);
  border-left: none;
  width: auto;
  max-width: none;
  padding: 0.2rem 0.5rem;
  font-size: 0.7rem;
  text-transform: uppercase;
}
#mobileMenu .lang-btn:hover { color: var(--green-dark); background: var(--green-pale); }
#mobileMenu .lang-btn.active { color: #fff; background: var(--green); }
#mobileMenu .lang-sep { color: rgba(0,0,0,0.25); }

