/* =========================
   COMPONENTS: global Webseite & Magazin
   → Nav, Buttons, Grid, Cards, Notes, Forms, Energy-Mosaic (generisch)
   ========================= */
/* Page Headings (global): Eyebrow + H1 + Lead standardmäßig zentriert 
bei Bedarf easy „linksbündig“ machen, indem du z.B. pageHeading--left*/
.pageHeading{ text-align: center; }
.pageHeading .eyebrow{ text-align: center; }
.pageHeading h1, .pageHeading h2{ text-align: center; margin-left:auto; margin-right:auto; }
.pageHeading .lede{ text-align: center; margin-left:auto; margin-right:auto; }

/* Skip link */
.skip-link{
  position:absolute;left:-999px;top:10px;
  background:var(--ivory);
  border:1px solid rgba(234,221,200,0.9);
  padding:10px 12px;border-radius:12px;z-index:2000;
}
.skip-link:focus{ left:10px; }

/* HEADER: Logo oben, Navigation darunter (alles mittig) */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--ivory);
  border-bottom: 1px solid rgba(234,221,200,0.9);

  /* entscheidend: zwei Zeilen */
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* Dropdown über Header-Inhalt legen (robust) */
.dropdown-content{
  z-index: 1100;
}


/* Top row: Burger | Logo (center) | Spacer */
.header-top{
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 20px 10px; 

  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
}

/* Toggle im Grid lassen (NICHT absolut) */
.mobile-menu-toggle{
  position: static;
  transform: none;
  display:flex;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
  width:30px;
  background: transparent;
  border: 0;
  padding: 0;
  justify-self: start;
}
.bar{ width:100%; height:2px; background: var(--taupe-dark); }

.logo-text{
  justify-self: center;
  font-family: var(--font-script);
  font-size: 2.35rem;       /* mobile/base */
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  display: inline-block;
}

@media (min-width: 1024px){
  .logo-text{ font-size: 2.65rem; }
}

.header-spacer{ display:block; }

/* Nav row */
.header-nav{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px 20px;
  display:flex;
  justify-content:center;
}
/* Optional: Shop im Menü leicht „wichtiger“, aber nicht laut */
.nav-link--shop{
  font-weight: 700;
  border-bottom: 1px solid rgba(183,169,154,0.55);
  padding-bottom: 2px;
  text-decoration: none;
}
.nav-link--shop:hover{
  border-bottom-color: rgba(183,169,154,0.9);
}


.desktop-nav{
  list-style:none;
  display:none;
  gap:14px;
  padding:0;
  margin:6px 0 0 0;
  justify-content:center;
  flex-wrap:wrap;
  row-gap:10px;
}
.nav-link{
  text-decoration:none;
  color:var(--taupe-dark);
  font-size: 0.92rem;       /* mobile/base */
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (min-width:1024px){
  .nav-link{ font-size: 0.98rem; }
}

/* Dropdown */
.dropdown{position:relative;}
.dropdown-content{
  display:none;
  position:absolute;
  top:100%;left:50%;
  transform:translateX(-50%);
  background:var(--ivory);
  border:1px solid rgba(234,221,200,0.9);
  padding:10px 0;
  min-width:180px;
  box-shadow:0 8px 16px rgba(0,0,0,0.10);
  z-index:1000;
  text-align:left;
}
.dropdown-content a{
  display:block;
  padding:8px 20px;
  text-decoration:none;
  color:var(--taupe-dark);
  font-size:.8rem;
  text-transform:uppercase;
  letter-spacing:.5px;
}
.dropdown-content a:hover{background:rgba(234,221,200,0.55);}
.dropdown-content--scroll{max-height:300px;overflow-y:auto;}

/* =========================
   NAV: Mobile-first
   ========================= */

/* Mobile default: Nav versteckt */
.desktop-nav{ display:none; }

/* Mobile: Nav klappt auf (nur < 900px) */
@media (max-width: 1023px){
  .desktop-nav.active{
    display:flex;
    flex-direction:column;
    gap:12px;
    position:absolute;
    top: var(--header-h);
    left:0; right:0;
    padding:16px 20px 20px;
    background:var(--ivory);
    border-bottom:1px solid rgba(234,221,200,0.9);
    max-height: calc(100vh - var(--header-h));
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
  }

  /* Mobile dropdown: nur per JS (Accordion) */
  .dropdown .dropdown-content{ display:none; }

  .desktop-nav.active .dropdown.is-open .dropdown-content{
    display:block;
    position:static;
    transform:none;
    border:none;
    box-shadow:none;
    padding:8px 0 0;
    min-width:0;
  }
  .desktop-nav.active .dropdown.is-open .dropdown-content a{
    padding:8px 0 8px 14px;
    opacity:.95;
  }
}

/* Desktop: Nav sichtbar & Burger weg (>= 900px) */
@media (min-width:1024px){
  .desktop-nav{
    display:flex;
    gap:14px;
    padding:0;
    margin:6px 0 0 0;
    justify-content:center;
    flex-wrap:wrap;
    row-gap:10px;
    position:static;           /* wichtig: kein absolut */
    max-height:none;
    overflow:visible;
    background:transparent;
    border:0;
  }
  .desktop-nav.active{ display:flex; } /* harmless, falls JS active lässt */

  .mobile-menu-toggle{ display:none; }

  /* Desktop Hover Dropdown */
  .dropdown:hover .dropdown-content{ display:block; }
}
/* 
=========================
Sidebar Modules
========================= */
.sidebarCard{
  background: rgba(249,245,239,0.96); /* Ivory bleibt Ivory */
  border: 1px solid rgba(183,169,154,0.20);
  border-radius: var(--r);
  padding: 14px 14px 16px;
  box-shadow: var(--shadow);
}
.sidebarCard + .sidebarCard{ margin-top: 14px; }

.sidebarTitle{
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.2;
}

.sidebarList{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.sidebarList a{
  text-decoration: none;
  border-bottom: 1px solid rgba(183,169,154,0.35);
  padding-bottom: 2px;
}
.sidebarList a:hover{
  border-bottom-color: rgba(183,169,154,0.70);
}

.sidebarMeta{
  display: block;
  font-size: 0.86rem;
  opacity: 0.78;
  margin-top: 4px;
}

.partnerPills{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.partnerPill{
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(234,221,200,0.22);
  border: 1px solid rgba(183,169,154,0.20);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}
.partnerPill:hover{
  border-color: rgba(183,169,154,0.40);
}
/* =========================
   Sidebar – Neu im Magazin (links bündig)
   ========================= */

.sidebarModule.sidebarNews .sidebarCard { text-align: left; }

.sidebarModule.sidebarNews ul{
  margin: 10px 0 0;
  padding-left: 1.1em; /* Bullet-Indent */
}

.sidebarModule.sidebarNews li{
  margin: 8px 0;
}

.sidebarModule.sidebarNews li a{
  display: block;
  text-decoration: none;
}

.sidebarModule.sidebarNews li small{
  display: block;
  margin-top: 2px;
  opacity: 0.75;
}

/* =========================
   Sidebar – Quick Wins (3er-Unit)
   ========================= */

.sidebarModule.quickWins .sidebarCard { text-align: left; }

/* macht aus 3 Cards eine verbundene Einheit */
.sidebarModule.quickWins .quickWinsGrid--compact{
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(var(--ed-taupe), 0.22);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(var(--ed-ivory), 0.35);
}

/* visuelle Trennung, aber “connected” */
.sidebarModule.quickWins .quickWinCard{
  padding: 12px 12px;
}

.sidebarModule.quickWins .quickWinCard + .quickWinCard{
  border-top: 1px solid rgba(var(--ed-taupe), 0.16);
}

/* Titel (Mood) sauber, nicht zu groß */
.sidebarModule.quickWins .quickWinTitle{
  margin: 0 0 10px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
/* Quick-Wins: Mood-Titel mittig */
.sidebarModule.quickWins .quickWinTitle{
  text-align: center;
  width: 100%;
  margin: 0 0 10px;
}
/* Quick-Wins: zentraler Kompass-Link als Micro-CTA */
.sidebarModule.quickWins .quickWinsHubLink{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin: 10px auto 12px;
  padding: 8px 12px;
  width: fit-content;

  border: 1px solid rgba(var(--ed-taupe), 0.18);
  border-radius: 999px;
  background: rgba(var(--ed-ivory), 0.45);

  text-decoration: none;
  font-size: 0.92rem;
  opacity: 0.9;
}

.sidebarModule.quickWins .quickWinsHubLink:hover{
  opacity: 1;
}

/* Button/Link entschärfen: weniger “massiv” */
.sidebarModule.quickWins .quickWinBtn{
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border-radius: 14px;
  font-weight: 400; /* wichtig: nicht alles bold */
}

/* nur Produktname fett */
.sidebarModule.quickWins .quickWinBtn .quickWinProduct{
  display: block;
  font-weight: 650;
  line-height: 1.2;
}
.sidebarModule.quickWins .quickWinBtn{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 3px;
  white-space: normal;
  text-align: left;
}

.sidebarModule.quickWins .quickWinBtn .quickWinSource{
  display: block;
  margin-top: 2px;
  font-weight: 400;
  opacity: 0.78;
  line-height: 1.2;
}

/* “Warum passt das?” → editorial & aligned */
.sidebarModule.quickWins .quickWinMore{
  display: inline-block;
  margin-top: 8px;
  font-size: 0.92rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.85;
}
/* Quick-Wins: Button-Inhalt untereinander statt gequetscht nebeneinander */
.sidebarModule.quickWins .quickWinBtn{
  display: flex;              /* überschreibt ggf. inline-flex */
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 3px;

  white-space: normal;        /* wichtig: Umbrüche erlauben */
  text-align: left;
}

/* Spans bleiben blockig, aber so bist du doppelt safe */
.sidebarModule.quickWins .quickWinBtn .quickWinProduct,
.sidebarModule.quickWins .quickWinBtn .quickWinSource{
  display: block;
  width: 100%;
}

/*=========================
  Buttons 
  =========================*/
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(183,169,154,0.35);
  background:rgba(196,209,192,0.16);
  color:var(--taupe-dark);
  font-weight:600;
  text-decoration:none;
  cursor:pointer;
}
.btn:hover{ background:rgba(196,209,192,0.24); }
.btn--lg{ padding:14px 22px; font-size:1.05rem; border-radius:999px; }

.btnCenter, .energyMosaicCta{ display:flex; justify-content:center; }
.btnCenter .btn{ width:auto; display:inline-flex; }

/* Back-Pill (global) als hübscher Back-Link */
.back-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(183,169,154,0.28);
  background: rgba(249,245,239,0.72);
  text-decoration: none;
  font-weight: 600;
}
.back-pill:hover{
  border-color: rgba(183,169,154,0.45);
}


/* Grid system */
.grid{display:grid;gap:24px;}
.grid-2{grid-template-columns:repeat(2,minmax(0,1fr));}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr));}
.grid-4{grid-template-columns:repeat(4,minmax(0,1fr));}

/* Cards (eine einzige Definition, keine Doppelungen mehr) */
.card{
  background:var(--soft);
  border:1px solid var(--line);
  border-radius:var(--r);
  overflow:hidden;
  box-shadow:var(--shadow);
}
.card--sage{ background:var(--soft2); }

.card__media{
  aspect-ratio:4/3;
  background:rgba(183,169,154,0.12);
  display:flex;align-items:center;justify-content:center;
  font-size:12px;letter-spacing:.04em;
  color:rgba(111,100,90,0.85);
}
/* Card Media: funktioniert für <img> UND <picture><img> – format-sicher (kein Crop) */
.card__media > img,
.card__media > picture > img {
  display: block;
  width: 100%;
  height: auto;
}
.card__media > picture {
  display: block;
  width: 100%;
}

.card__body{ padding:18px 18px 20px; }
.card__kicker{ margin:0 0 8px; font-size:12px; letter-spacing:.08em; text-transform:uppercase; color:rgba(183,169,154,0.95); }
.card__title{ margin:0 0 10px; font-family:"Playfair Display",Georgia,serif; font-size:20px; line-height:1.25; }
.card__text{ margin:0 0 14px; max-width:65ch; color:rgba(111,100,90,0.92); }
/* =========================================
   HOME – Element-Kacheln: Buttons bleiben stabil unten
   stabiler Fix: Buttons in den Element-Karten immer nach unten drücken
   ========================================= */
.page--home .elementGrid .card{
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page--home .elementGrid .card__media{
  flex: 0 0 auto;
}

.page--home .elementGrid .card__body{
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

/* =========================================================
   ELEMENT GRADIENT CARDS (global)
   HTML nutzt: card--fire / card--earth / card--air / card--water
   (plus DE-Aliase, falls du sie irgendwo nutzt)
   ========================================================= */

/* =========================================================
   ELEMENT GRADIENT CARDS (global, single source of truth)
   ========================================================= */
.card.card--fire,  .card.card--feuer  { background: var(--grad-feuer);  border: 1px solid rgba(111,100,90,0.12); }
.card.card--earth, .card.card--erde   { background: var(--grad-erde);   border: 1px solid rgba(111,100,90,0.12); }
.card.card--air,   .card.card--luft   { background: var(--grad-luft);   border: 1px solid rgba(111,100,90,0.12); }
.card.card--water, .card.card--wasser { background: var(--grad-wasser); border: 1px solid rgba(111,100,90,0.12); }

/* Optional: Kicker etwas klarer auf Gradients */
.card.card--fire .card__kicker,  .card.card--feuer .card__kicker,
.card.card--earth .card__kicker, .card.card--erde  .card__kicker,
.card.card--air .card__kicker,   .card.card--luft  .card__kicker,
.card.card--water .card__kicker, .card.card--wasser .card__kicker{
  color: rgba(111,100,90,0.92);
}

/* Note / Transparenz */
.note{
  max-width:100%;
  padding:16px;
  border-radius:var(--r);
  border:1px solid var(--line);
  background:rgba(234,221,200,0.14);
}
.note--wide{ width:100%; max-width:100% !important; }
.note--wide > *{ max-width:none !important; margin-left:0 !important; margin-right:0 !important; }

/* Callout */
.callout{
  margin:22px 0;
  padding:16px;
  border-radius:var(--r);
  border:1px solid var(--line);
  background:rgba(234,221,200,0.22);
}
.callout > strong{ display:block; margin-bottom:10px; }

/* Forms */
.form{
  max-width:var(--text);
  display:grid;
  gap:12px;
  margin-top:14px;
  margin-left:auto;
  margin-right:auto;
}
.input{
  width:100%;
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(183,169,154,0.35);
  background:rgba(249,245,239,0.92);
  color:var(--taupe-dark);
  font-size:16px;
  outline:none;
}
.input:focus{
  border-color:var(--line-strong);
  box-shadow:0 0 0 4px rgba(196,209,192,0.18);
}

/* Responsive grid collapse */
@media (max-width:980px){
  .grid-4{grid-template-columns:repeat(2,minmax(0,1fr));}
  .grid-3,.grid-2{grid-template-columns:1fr;}
  h1{font-size:34px;}
}
@media (max-width:520px){
  .grid-4{grid-template-columns:1fr;}
  .section{padding:48px 0;}
}
/* =========================================================
   ENERGY MOSAIC (global)
   Klassen aus HTML:
   .energyMosaic / .energyMosaic--home
   .energyTile / .energyTile--feuer|erde|luft|wasser / .energyTile--offset
   .energyTile__label / .energyTile__caption
   ========================================================= */

/* Optionaler Wrapper (z.B. Teaser-Section): Überschrift/Intro mittig */
.energyHero{ text-align: center; }
.energyHero .lede{
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
}

/* Mosaic Grid */
.energyMosaic{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
  width: 100%;
  max-width: 980px;      /* default: wirkt “kuratiert” */
  margin: 24px auto 0;
  align-items: stretch;
}

/* Variante für Startseiten-Teaser: volle Containerbreite */
.energyMosaic--home{
  max-width: none;       /* volle Breite im .container */
  margin-left: 0;
  margin-right: 0;
}

/* Tile */
.energyTile{
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;

  background: rgba(249,245,239,0.55);
  border: 1px solid rgba(183,169,154,0.28);
  border-radius: 18px;
  padding: 12px;

  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.energyTile:hover{
  transform: translateY(-3px);
  border-color: rgba(183,169,154,0.45);
  box-shadow: 0 16px 34px rgba(0,0,0,0.08);
}

/* In einigen Versionen gab’s “offset”-Spielereien → global neutralisieren */
.energyTile--offset{ margin-top: 0 !important; }

/* Titel innerhalb Tile (Magazin-Teaser nutzt h3.card__title im Tile) */
.energyTile .card__title{
  text-align: center;
  margin: 4px 0 10px;
  font-size: 1.15rem;
  line-height: 1.2;
}

/* Bild immer 4:3 */
.energyTile img{
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* Label (Pill) – default (Shop-the-Energy Seite ohne extra Titel im Tile) */
.energyTile__label{
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(183,169,154,0.30);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  backdrop-filter: blur(2px);
}

/* Caption: 1. Zeile = Meta (immer), 2. Zeile = Beschreibung (falls vorhanden) */
.energyTile__caption{
  display: block;
  margin-top: 10px;
  text-align: center;
}

/* Wenn es nur eine Caption gibt (Shop-Seite), ist das die Meta-Zeile */
.energyTile__caption:first-of-type{
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  opacity: 0.92;
}

/* Wenn eine zweite Caption existiert (Magazin-Teaser), wird nur diese gekürzt */
.energyTile__caption + .energyTile__caption{
  font-size: 0.95rem;
  opacity: 0.86;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;

  min-height: 2.6em; /* stabilisiert Höhe nur für die Beschreibung */
}
/*feine Mittellinie aus der Shop-Seite */
.energyMosaic--divider{ position: relative; }
.energyMosaic--divider::before{
  content:"";
  position:absolute;
  left:50%;
  top:18px;
  bottom:18px;
  width:1px;
  transform: translateX(-0.5px);
  background: rgba(183,169,154,0.20);
  pointer-events:none;
}
/* Media wrapper: Label hängt jetzt am Bild */
.energyTile__media{
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

/* Bild im Wrapper */
.energyTile__media img{
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  display: block;
}

@media (max-width:820px){
  .energyMosaic--divider::before{ display:none; }
}

.energyTile:hover .energyTile__caption{ opacity: 1; }

/* Gradient Pills pro Element (nutzt deine RGB-Tokens aus base.css) */
.energyTile--feuer .energyTile__label,
.energyTile--fire  .energyTile__label{
  background: linear-gradient(135deg,
    rgba(var(--ed-sand), 0.85),
    rgba(var(--ed-terracotta-rich), 0.22)
  );
}
.energyTile--erde .energyTile__label,
.energyTile--earth .energyTile__label{
  background: linear-gradient(135deg,
    rgba(var(--ed-sand), 0.80),
    rgba(var(--ed-sage), 0.30)
  );
}
.energyTile--luft .energyTile__label,
.energyTile--air  .energyTile__label{
  background: linear-gradient(135deg,
    rgba(var(--ed-ivory), 0.88),
    rgba(var(--ed-lightgray), 0.22)
  );
}
.energyTile--wasser .energyTile__label,
.energyTile--water  .energyTile__label{
  background: linear-gradient(135deg,
    rgba(var(--ed-ivory), 0.86),
    rgba(var(--ed-taupe), 0.22)
  );
}
.energyTile{
  /* fallback */
  background: rgba(249,245,239,0.55);
}
/* ---------------------------------------------------------
   Element-Gradient Mapping + Buttons (Elementseiten)
   --------------------------------------------------------- */
.page--element{ --element-grad: var(--grad-feuer); } /* fallback */
.page--element.element--fire{  --element-grad: var(--grad-feuer); }
.page--element.element--earth{ --element-grad: var(--grad-erde); }
.page--element.element--air{   --element-grad: var(--grad-luft); }
.page--element.element--water{ --element-grad: var(--grad-wasser); }

/* Buttons auf Elementseiten konsistent im Element-Gradient */
.page--element .btn,
.page--element .btn--ghost,
.page--element .btn--sageLite{
  background: var(--element-grad);
  border: 1px solid rgba(0,0,0,0.10);
  color: rgba(48,41,35,0.92);
}
.page--element .btn:hover,
.page--element .btn--ghost:hover,
.page--element .btn--sageLite:hover{
  filter: brightness(0.98);
}

/* Element-Gradient als Tile-Background */
.energyTile--feuer, .energyTile--fire{ background: var(--grad-feuer); }
.energyTile--erde,  .energyTile--earth{ background: var(--grad-erde); }
.energyTile--luft,  .energyTile--air{ background: var(--grad-luft); }
.energyTile--wasser, .energyTile--water{ background: var(--grad-wasser); }

/* Mobile */
@media (max-width: 820px){
  .energyMosaic{
    grid-template-columns: 1fr;
    max-width: 640px;   /* wirkt nicht zu breit auf Mobile */
  }
  .energyMosaic--home{ max-width: 640px; margin-left:auto; margin-right:auto; }
  .energyMosaic--home .energyTile__label{ top: 56px; } /* etwas weniger Abstand */
}
.energyMosaic--full{ max-width:none; width:100%; }

/* Eyebrow: gleiche Farbe wie H2 (global) */
.eyebrow{
  color: var(--taupe-dark, rgba(111,100,90,0.95));
}
/* =========================
   COMING SOON / Affiliate Placeholder
   ========================= */

.soonNote{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(249,245,239,0.65);
  color: rgba(48,41,35,0.88);
  font-size: .95rem;
}

.soonBadge{
  display: inline-block;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(var(--ed-sage, 196,209,192), 0.55);
  border: 1px solid rgba(0,0,0,0.06);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.btn--soon{
  background: rgba(var(--ed-sage, 196,209,192), 0.55);
  border: 1px solid rgba(0,0,0,0.06);
  color: rgba(48,41,35,0.92);
}
.btn--soon:hover{
  background: rgba(var(--ed-sage, 196,209,192), 0.75);
}

.btn--disabled{
  opacity: .55;
  cursor: not-allowed;
  pointer-events: none;
}
/* =========================================================
   StepsCards – ruhige Step-Cards (wiederverwendbar)
   Desktop: 3 Cards nebeneinander | Mobile: untereinander
   ========================================================= */

.stepsCards{
  max-width: 980px;
  margin: 18px auto 0;
}

.stepsCards__list{
  list-style: none;
  padding: 0;
  margin: 18px 0 0;

  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;

  counter-reset: step;
}

@media (min-width: 1024px){
  .stepsCards__list{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}

.stepsCards__item{
  position: relative;
  padding: 16px 16px 16px 52px;

  background: rgba(249,245,239,0.55);
  border: 1px solid rgba(0,0,0,0.06);
  outline: 1px solid rgba(255,255,255,0.35);
  outline-offset: -1px;

  border-radius: 0; /* eure Linie: eckig */
}

.stepsCards__item::before{
  counter-increment: step;
  content: counter(step);

  position: absolute;
  left: 16px;
  top: 16px;

  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;

  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(234,221,200,0.38); /* Sand, ruhig */
  color: rgba(111,100,90,0.95);

  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
}

.stepsCards__title{
  margin: 0 0 6px 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.12rem;
  color: rgba(111,100,90,0.98);
}

.stepsCards__text{
  margin: 0;
  color: rgba(111,100,90,0.92);
}

/* Tipp: als ruhiger, zentrierter Hinweis */
.stepsCards__tip{
  margin: 14px auto 0;
  max-width: 72ch;
  text-align: center;

  padding: 10px 12px;
  background: rgba(234,221,200,0.18);
  border: 1px solid rgba(0,0,0,0.06);

  color: rgba(111,100,90,0.92);
}
/* Quickcheck: Buttons nicht in einer Zeile kleben lassen */
.page--elemente-hub .hubQuickcheckBox .hubBtns{
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 14px;                 /* Abstand zwischen Buttons */
  justify-content: center;   /* Grid als Block zentrieren */
  max-width: 920px;          /* verhindert zu breite Zeile auf großen Screens */
  margin: 14px auto 0;
}

.page--elemente-hub .hubQuickcheckBox .hubBtns .btn{
  width: 100%;
  justify-content: center;
  margin: 0;                 /* falls irgendwo inline-margins reinfunken */
}

/* Mobile: untereinander */
@media (max-width: 640px){
  .page--elemente-hub .hubQuickcheckBox .hubBtns{
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}
/* -----------------------------------------
   Button Variante: Salbei, dunkle Schrift
   ----------------------------------------- */
.btn--sageLite{
  background: rgba(var(--ed-sage, 196,209,192), 0.55);
  border: 1px solid rgba(0,0,0,0.06);
  color: rgba(48,41,35,0.92);
}
.btn--sageLite:hover{
  background: rgba(var(--ed-sage, 196,209,192), 0.75);
}
/* =========================================================
   FAQ – Card + Accordion (Hub + Elementseiten)
   Greift nur in .faqCard, damit Quickcheck (.faq ohne Card) unberührt bleibt
   ========================================================= */

.faqCard{
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(249,245,239,0.55);
  padding: 14px;
}

.faqCard .faq{
  display: grid;
  gap: 10px;
}

.faqCard .faq details{
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(249,245,239,0.55);
}

.faqCard .faq summary{
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
/* ===================================
    Checkbox/Notes für Newslettertool 
  ====================================*/

/* Marker weg (Browser-Dreiecke) */
.faqCard .faq summary::-webkit-details-marker{ display: none; }
.faqCard .faq summary::marker{ content: ""; }

/* Chevron rechts */
.faqCard .faq summary::after{
  content: "›";
  transform: rotate(90deg);
  opacity: .75;
  transition: transform .18s ease, opacity .18s ease;
}

.faqCard .faq details[open] summary::after{
  transform: rotate(-90deg);
  opacity: .95;
}

.faqCard .faq p{
  margin: 0;
  padding: 0 16px 14px;
}
.formCheck{
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.formCheck input{ margin-top: 3px; }

.formNote{
  opacity: 0.92;
  line-height: 1.45;
}

.formGeo{
  display:grid;
  gap:12px;
  margin-top: 4px;
}
/* Newsletter Split (mobile first) */
.newsletterSplit{
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;

  /* wichtig: zentriert den ganzen Block und macht ihn „weniger massiv“ */
  max-width: 980px;
  margin: 18px auto 0;
}

@media (min-width: 980px){
  .newsletterSplit{
    grid-template-columns: minmax(0, 460px) minmax(0, 420px);
    gap: 64px;
    justify-content: center;
  }
}

/* Form schmaler, damit es eleganter wirkt */
.newsletterSplit .form{
  max-width: 460px;
  margin-left: 0;
  margin-right: 0;
}

/* Logo größer + ruhig zentriert */
.newsletterLogo{
  display: grid;
  place-items: center;
}
.newsletterLogo img{
  width: 100%;
  max-width: 900px; /* <- hier größer machen falls nötig*/
  height: auto;
  opacity: 0.95;
}
/* Newsletter: Head soll zur Split-Breite passen */
#newsletter .hubSectionHead{
  max-width: 980px;         /* gleiche Breite wie newsletterSplit */
  margin-left: auto;
  margin-right: auto;
}
.heroWide picture,
.stepCard__media picture,
.card__media picture,
.homeSelectMedia picture {
  display: block;
}
/* nur Element-Sektion: Bild soll die Media-Fläche ausnutzen */
.homeElementPick .card__media {
  padding: 0;
}
/* StepCards: <picture> muss die volle Media-Fläche ausfüllen */
.stepCard__media > picture{
  display:block;
  width:100%;
  height:100%;
}
.stepCard__media > picture > img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

/* === Card Layout: CTA immer am unteren Rand === */
.card {
  display: flex;
  flex-direction: column;
}

.card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

/* CTA-Container nach unten drücken (funktioniert für Home + Methode + überall) */
.card__actions,
.homeCardActions {
  margin-top: auto;
}
/* Wenn ein einzelner Button direkt in .card__body liegt (z.B. Methode) */
.card__body > .btn:last-child{
  margin-top: auto;
  align-self: flex-start; /* bleibt “pill”-breit statt full width */
}
/* picture verhält sich wie img-block in Media-Wrappers */
.hubHeroMedia picture,
.splitPanelStack__media picture,
.hubWinsGrid picture,
.sectionMedia16x9 picture {
  display: block;
  width: 100%;
}
/* weil .card__body flex ist: center muss align-items setzen */
.card__body.center{
  align-items:center;
  text-align:center;
}
.card__body.center > :is(ul,ol){
  width:100%;
}
/* =========================================================
   FIX: Buttons in .card__body.center wirklich zentrieren
   (weil .card__body als flex-column läuft)
   ========================================================= */
.card__body.center{
  text-align: center;
  align-items: center;     /* zentriert Flex-Items horizontal */
}

/* falls irgendwo align-items überschrieben wird:
   Button selbst zentrieren (wirkt nur im Flex-Kontext, schadet sonst nicht) */
.card__body.center > .btn,
.card__body.center .btn{
  align-self: center;
}
.btn{
  /* …deine bestehenden Regeln… */
  text-align: center;   /* <-- das ist der entscheidende Punkt */
}

/* 16:9 Media: <picture> + zentrierter Crop (überschreibt .faqMedia img {height:auto}) */
.sectionMedia16x9 > picture{
  display:block;
  width:100%;
  height:100%;
}
.sectionMedia16x9 > picture > img,
.sectionMedia16x9 > img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.hubHeroCtas{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
}
.dropdown-sep{
  height: 1px;
  margin: 6px 10px;
  background: rgba(183,169,154,0.28);
}
/* Dropdown: lange Listen scrollbar machen */
.dropdown-content--scroll{
  max-height: 70vh;
  overflow: auto;
}
.dropdown-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.5rem;
}

.dropdown-toggle{
  appearance:none;
  border:0;
  background:transparent;
  padding:.6rem;
  line-height:0;
  display:none; /* default: hidden on desktop */
}

.dropdown-toggle .chev{
  display:inline-block;
  width:.55rem;
  height:.55rem;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform:rotate(45deg);
}

@media (max-width:1023px){
  .dropdown-toggle{display:inline-flex;}
  /* falls nicht schon vorhanden: */
  .dropdown > .dropdown-content{display:none;}
  .dropdown.is-open > .dropdown-content{display:block;}
  .dropdown > .nav-link::after{ content:none !important; }
}
/* Kacheln gleich hoch + CTA-Button auf gleicher Höhe */
.elementPickGrid{
  align-items: stretch; /* Grid-Zellen strecken */
}

.elementPickCard{
  height: 100%;
  display: flex;       /* macht die Card streckbar */
}

.elementPickCard > div{
  flex: 1;
  display: flex;
  flex-direction: column; /* Inhalt von oben nach unten */
  height: 100%;
}

/* Der Button rutscht nach unten, egal wie lang der Text ist */
.elementPickCard .btn{
  margin-top: auto;
}

/* Optional: wenn du willst, dass unter dem Tipp noch etwas Luft ist */
.elementPickCard .micro:last-of-type{
  margin-bottom: 12px;
}
/* =========================
   Element Picks (Kompassmomente / Produkt-Kacheln ohne Bilder)
   ========================= */

.elementPickGrid{
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: stretch; /* gleiche Höhe pro Reihe */
  margin-top: 14px;
}

.elementPickCard{
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
  height: 100%;
  display: flex; /* damit inner strecken kann */
}

/* Element-Gradienten aus base.css */
.elementPickCard--wasser{ background: var(--grad-wasser); }
.elementPickCard--erde  { background: var(--grad-erde); }
.elementPickCard--feuer { background: var(--grad-feuer); }
.elementPickCard--luft  { background: var(--grad-luft); }

/* Innerer “Papier”-Layer */
.elementPickInner{
  background: rgba(var(--ed-ivory), 0.78);
  border-radius: 14px;
  padding: 14px;

  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.elementPickMeta{
  margin: 0 0 8px 0;
  opacity: .92;
}

.elementPickTitle{
  margin: 0 0 8px 0;
}

.elementPickText{
  margin: 0 0 12px 0;
}

.elementPickTip{
  margin: 0 0 12px 0;
  opacity: .9;
}

/* CTA auf gleiche Höhe */
.elementPickCta{
  margin-top: auto; /* drückt den Button nach unten */
}

/* Optional: etwas mehr “Kachel-Luft” auf Desktop */
@media (min-width: 1024px){
  .elementPickInner{ min-height: 420px; }
}
/* Rosé-Gradient wie Startseite (dezent, editorial) */
.note--roseGradient{
  background: linear-gradient(135deg,
    rgba(243,215,208,.42) 0%,
    rgba(249,245,239,.92) 55%,
    rgba(234,221,200,.35) 100%
  );
  border: 1px solid rgba(183,169,154,.35);
}

/* Consent: Text + Datenschutz-Link untereinander, sauber eingerückt */
.formCheck--stack{
  display: grid;
  grid-template-columns: 18px 1fr;
  column-gap: 12px;
  align-items: start;
}

.formCheck--stack input[type="checkbox"]{
  margin-top: 2px;
}

.formCheck--stack .formCheckMeta{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.formCheck--stack .formCheckLink{
  display: inline-block;
  text-decoration: underline;
}
.shopList { margin: .75rem 0 0; padding-left: 1.1rem; }
.shopList li { margin: .35rem 0; }
.shopList a { text-decoration: none; }
.shopList a:hover { text-decoration: underline; }
/* Lever cards: gleich hoch + CTA unten */
.leverCard { 
  display: flex; 
  flex-direction: column; 
  height: 100%;
}

.leverCard__media img { 
  width: 100%; 
  height: auto; 
  display: block; 
}

.leverCard__body {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  padding: 1.05rem 1.1rem 1.1rem;
  flex: 1;
}

/* kompakte Produktliste */
.shopList {
  margin: .25rem 0 0;
  padding-left: 1.05rem;
}
.shopList li { margin: .35rem 0; }
.shopList a { text-decoration: none; }
.shopList a:hover { text-decoration: underline; }

/* kleine "Warum"-Zeile */
.shopWhy {
  display: block;
  margin-top: .15rem;
  opacity: .86;
  font-size: .95em;
  line-height: 1.35;
}

/* CTA immer unten */
.leverCard__footer { margin-top: auto; }
.leverCta {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: .65rem;
  text-decoration: none;
}
.productEntry {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.productLabel {
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .65;
  margin-bottom: .2rem;
}

.productName {
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-bottom: .3rem;
}

.productName:hover {
  text-decoration: underline;
}

.productWhy {
  opacity: .85;
  line-height: 1.45;
}
/* Feuer: mehr Bühne für Produktnamen */
.productName{
  font-weight: 650;
  font-size: 1.05rem;
  letter-spacing: .01em;
  line-height: 1.25;
}

/* Label etwas „editorialer“ */
.productLabel{
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .68;
}

/* Why-Text etwas kompakter, hochwertiger */
.productWhy{
  opacity: .86;
  line-height: 1.42;
  margin-top: .25rem;
}

/* Kleiner „magazine cue“ vor dem Label */
.productLabel::before{
  content:"✦";
  display:inline-block;
  margin-right:.5rem;
  opacity:.55;
  transform: translateY(-1px);
}
.curationKicker{
  margin-top:.6rem;
  opacity:.78;
}
.curationHook{
  margin-top:.15rem;
  font-weight: 600;
  letter-spacing:.01em;
}
/* sorgt für ruhige, gleiche Startlinie der Produktpicks */
.leverCard__intro{
  min-height: 220px; /* ggf. 200–240px je nach Breakpoint */
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

/* optional: Hook auf 2 Zeilen begrenzen für Ruhe (ohne hartes Abschneiden) */
.curationHook{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
@media (max-width: 600px){
  .leverCard__intro{ min-height: 0; }
}
.leverCard__body > p:first-of-type{ min-height: 4.2em; }      /* Intro */
.leverCard__body .curationHook{ min-height: 2.8em; }          /* Hook */

/* --- HARD OVERRIDE: Shop-the-Energy Buckets immer untereinander --- */
.shopEnergy .shopBuckets{
  display: flex !important;
  flex-direction: column !important;
  gap: clamp(2rem, 3vw, 2.75rem) !important;
}

/* Bucket soll volle Breite bekommen */
.shopEnergy .shopBucket{
  width: 100% !important;
}

/* Lede wirklich über volle Containerbreite */
.shopEnergy .shopLede{
  max-width: none !important;
}
/* 6 Produkte: max 3 pro Reihe (3+3). Schmal: 2/2/2. Mobil: 1/1/1 */
.shopEnergy .productGrid{
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;       /* mobil */
}

@media (min-width: 720px){
  .shopEnergy .productGrid{ grid-template-columns: repeat(2, 1fr); }  /* 2/2/2 */
}

@media (min-width: 1100px){
  .shopEnergy .productGrid{ grid-template-columns: repeat(3, 1fr); }  /* 3/3 */
}
.shopEnergy .productPrice{ display:none !important; }
.shopEnergy .productBottom{ justify-content:flex-end; }