/* =============================================================
   natürlich drauf – Child Theme Stylesheet
   Präfix: nd-  (natürlich drauf)
   ============================================================= */

/* -------------------------------------------------------------
   1. WEBFONTS
   Hinweis: format()-Strings für .ttf → 'truetype',
            für .otf  → 'opentype' (Browser-Standard)
------------------------------------------------------------- */

@font-face {
    font-family: 'Courgette';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('./fonts/courgette-v19-latin-regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Boli';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('./fonts/boli.ttf') format('truetype');
}

@font-face {
    font-family: 'Helvetica Neue ND';
    /* eigener Name, kein Konflikt mit System-Helvetica */
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('./fonts/hel-reg.otf') format('opentype');
}

@font-face {
    font-family: 'Helvetica Rounded';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('./fonts/hel-round.otf') format('opentype');
}


/* -------------------------------------------------------------
   2. DESIGN TOKENS  (scoped unter .nd-scope oder :root)
   Für Elementor-Seiten empfiehlt sich .nd-scope auf dem
   Section-Wrapper, damit Tokens nicht global leaken.
   Alternativ :root wenn das Theme keine eigenen --Tokens nutzt.
------------------------------------------------------------- */

:root {
    /* -- Farbpalette ------------------------------------------ */
    --nd-green-light: #8fc045;
    --nd-green-dark: #658633;
    --nd-gold: #c6a359;
    --nd-brown: #58514b;
    --nd-cream: #efecbf;
    --nd-cream-dark: #e5e1a8;
    --nd-off-white: #f8f6e8;
    --nd-white: #ffffff;

    /* -- Semantische Farben ----------------------------------- */
    --nd-bg-page: var(--nd-off-white);
    --nd-bg-alt: var(--nd-cream);
    --nd-bg-dark: var(--nd-brown);
    --nd-text-main: var(--nd-brown);
    --nd-text-muted: #7a7068;
    --nd-text-light: var(--nd-white);
    --nd-border: rgba(88, 81, 75, 0.12);

    /* -- Gradienten ------------------------------------------- */
    --nd-grad-green: linear-gradient(135deg, var(--nd-green-light) 0%, var(--nd-green-dark) 100%);
    --nd-grad-green-h: linear-gradient(135deg, #a0d050 0%, var(--nd-green-dark) 100%);
    /* hover */
    --nd-grad-hero: linear-gradient(160deg, var(--nd-cream) 0%, var(--nd-off-white) 60%);
    --nd-grad-gold: linear-gradient(135deg, var(--nd-gold) 0%, #a07830 100%);
    --nd-grad-2: linear-gradient(-30deg, var(--nd-cream) 0%, var(--nd-off-white) 60%);

    /* -- Schriften -------------------------------------------- */
    --nd-font-brand: 'Courgette', cursive;
    /* Logo, Zitatakzente */
    --nd-font-deco: 'Boli', cursive;
    /* dekorativ, Akzente */
    --nd-font-head: 'Helvetica Rounded', 'Helvetica Neue',
        Helvetica, Arial, sans-serif;
    /* Headlines */
    --nd-font-body: 'Helvetica Neue ND', 'Helvetica Neue',
        Helvetica, Arial, sans-serif;
    /* Fließtext */

    /* -- Goldene Ratio-Skala  (φ = 1.618) --------------------
     Basis: 16px (1rem)
     Schritte:  16 × φ⁰ = 16   → base
                16 × φ^½ = ~20 → h5 / md
                16 × φ¹  = ~26 → h4 / lg
                16 × φ^1.5= ~33 → h3
                16 × φ²  = ~42 → h2
                16 × φ³  = ~68 → h1 (geclampt)
     Für mobile gelten kleinere Minima, via clamp().
  --------------------------------------------------------- */

    /* Fließtext-Stufen */
    --nd-text-2xs: clamp(0.625rem, 0.4vw + 0.5rem, 0.75rem);
    /*  10–12 px */
    --nd-text-xs: clamp(0.75rem, 0.4vw + 0.62rem, 0.875rem);
    /*  12–14 px */
    --nd-text-sm: clamp(0.875rem, 0.4vw + 0.75rem, 1rem);
    /*  14–16 px */
    --nd-text-base: clamp(1rem, 0.5vw + 0.875rem, 1.125rem);
    /*  16–18 px */
    --nd-text-md: clamp(1.125rem, 0.6vw + 0.95rem, 1.25rem);
    /*  18–20 px */
    --nd-text-lg: clamp(1.25rem, 1vw + 1rem, 1.618rem);
    /*  20–26 px  = φ  */

    /* Überschriften  (φ-Ratio-Stufen) */
    --nd-h6: clamp(1rem, 0.5vw + 0.875rem, 1.125rem);
    /*  16–18 px */
    --nd-h5: clamp(1.125rem, 0.6vw + 0.95rem, 1.272rem);
    /*  18–20 px  = √φ */
    --nd-h4: clamp(1.272rem, 1vw + 1rem, 1.618rem);
    /*  20–26 px  = φ  */
    --nd-h3: clamp(1.618rem, 1.5vw + 1.2rem, 2.058rem);
    /*  26–33 px  = φ√φ */
    --nd-h2: clamp(2.058rem, 2vw + 1.5rem, 2.618rem);
    /*  33–42 px  = φ² */
    --nd-h1: clamp(2.618rem, 4vw + 1.5rem, 4.236rem);
    /*  42–68 px  = φ³ */

    /* Display / Hero-Headline (optional, größer als h1) */
    --nd-display: clamp(3rem, 6vw + 1.5rem, 5.5rem);

    /* -- Zeilenhöhen (ebenfalls φ-basiert) ------------------- */
    --nd-lh-tight: 1.2;
    --nd-lh-snug: 1.35;
    --nd-lh-base: 1.618;
    /* = φ – der goldene Standard für Fließtext */
    --nd-lh-relaxed: 1.75;
    --nd-lh-loose: 2;

    /* -- Zeichenabstände ------------------------------------- */
    --nd-ls-tight: -0.02em;
    --nd-ls-normal: 0;
    --nd-ls-wide: 0.05em;
    --nd-ls-wider: 0.1em;
    --nd-ls-widest: 0.16em;

    /* -- Abstands-System (8px-Raster × φ) ------------------- */
    --nd-s1: 8px;
    --nd-s2: 13px;
    /* 8 × 1.618¹ ≈ 13  */
    --nd-s3: 21px;
    /* 8 × 1.618² ≈ 21  */
    --nd-s4: 34px;
    /* 8 × 1.618³ ≈ 34  */
    --nd-s5: 55px;
    /* 8 × 1.618⁴ ≈ 55  */
    --nd-s6: 89px;
    /* 8 × 1.618⁵ ≈ 89  */
    --nd-s7: 144px;
    /* 8 × 1.618⁶ ≈ 144 */

    /* -- Radii ----------------------------------------------- */
    --nd-r-xs: 4px;
    --nd-r-sm: 8px;
    --nd-r-md: 16px;
    --nd-r-lg: 24px;
    --nd-r-xl: 32px;
    --nd-r-pill: 100px;

    /* -- Schatten -------------------------------------------- */
    --nd-sh-card: 0 4px 24px rgba(88, 81, 75, 0.10);
    --nd-sh-img: 0 12px 40px rgba(88, 81, 75, 0.18);
    --nd-sh-btn: 0 4px 16px rgba(101, 134, 51, 0.38);
    --nd-sh-nav: 0 2px 12px rgba(88, 81, 75, 0.08);

    /* -- Layout ---------------------------------------------- */
    --nd-max-w: 1100px;
    --nd-max-w-n: 720px;
    --nd-container-px: clamp(var(--nd-s3), 4vw, var(--nd-s5));

    /* -- Übergänge ------------------------------------------ */
    --nd-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --nd-trans: 0.22s var(--nd-ease);
}


/* -------------------------------------------------------------
   3. TYPOGRAFIE – globale nd-Elemente
   Nur innerhalb von .nd-scope, damit kein Konflikt mit
   dem Elementor-/Theme-Typo-System entsteht.
------------------------------------------------------------- */
body{
  font-family: var(--nd-font-body) !important;
}
.nd-scope {
    font-family: var(--nd-font-body);
    font-size: var(--nd-text-base);
    font-weight: 400;
    line-height: var(--nd-lh-base);
    color: var(--nd-text-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Überschriften */
.nd-scope h1,
.nd-h1 {
    font-family: var(--nd-font-head);
    font-size: var(--nd-h1);
    font-weight: 700;
    line-height: var(--nd-lh-tight);
    letter-spacing: var(--nd-ls-tight);
    color: var(--nd-text-main);
}

.nd-scope h2,
.nd-h2 {
    font-family: var(--nd-font-head);
    font-size: var(--nd-h2);
    font-weight: 700;
    line-height: var(--nd-lh-snug);
    letter-spacing: var(--nd-ls-tight);
    color: var(--nd-text-main);
}

.nd-scope h3,
.nd-h3 {
    font-family: var(--nd-font-head);
    font-size: var(--nd-h3);
    font-weight: 700;
    line-height: var(--nd-lh-snug);
    letter-spacing: 0;
    color: var(--nd-text-main);
}

.nd-scope h4,
.nd-h4 {
    font-family: var(--nd-font-head);
    font-size: var(--nd-h4);
    font-weight: 700;
    line-height: var(--nd-lh-base);
    color: var(--nd-text-main);
}

.nd-scope h5,
.nd-h5 {
    font-family: var(--nd-font-head);
    font-size: var(--nd-h5);
    font-weight: 700;
    line-height: var(--nd-lh-base);
    color: var(--nd-text-main);
}

.nd-scope h6,
.nd-h6 {
    font-family: var(--nd-font-head);
    font-size: var(--nd-h6);
    font-weight: 700;
    line-height: var(--nd-lh-base);
    color: var(--nd-text-muted);
}

/* Fließtext-Helfer */
.nd-text-2xs {
    font-size: var(--nd-text-2xs);
    line-height: var(--nd-lh-relaxed);
}

.nd-text-xs {
    font-size: var(--nd-text-xs);
    line-height: var(--nd-lh-relaxed);
}

.nd-text-sm {
    font-size: var(--nd-text-sm);
    line-height: var(--nd-lh-base);
}

.nd-text-base {
    font-size: var(--nd-text-base);
    line-height: var(--nd-lh-base);
}

.nd-text-md {
    font-size: var(--nd-text-md);
    line-height: var(--nd-lh-base);
}

.nd-text-lg {
    font-size: var(--nd-text-lg);
    line-height: var(--nd-lh-snug);
}

/* Spezial-Typen */
.nd-brand {
    font-family: var(--nd-font-brand);
    color: var(--nd-gold);
    font-weight: 400;
}
.nd-brand-font{
    font-family: var(--nd-font-brand);
    font-weight: 300 !important;
}
.nd-deco {
    font-family: var(--nd-font-deco);
    font-weight: 400;
}
.small-text{
    font-size: 12px;
}
.overflow-visible .cz_main_image,
.overflow-visible .cz_image_in{
    overflow:visible !important;
}
.nd-display {
    font-family: var(--nd-font-head);
    font-size: var(--nd-display);
    font-weight: 700;
    line-height: var(--nd-lh-tight);
    letter-spacing: var(--nd-ls-tight);
}

/* Section-Eyebrow (Label über Überschriften) */
.nd-eyebrow {
    display: block;
    font-family: var(--nd-font-body);
    font-size: var(--nd-text-xs);
    font-weight: 700;
    letter-spacing: var(--nd-ls-widest);
    text-transform: uppercase;
    color: var(--nd-green-dark);
    margin-bottom: var(--nd-s2);
}

/* Subline / Lead-Text unter Überschriften */
.nd-subline {
    font-size: var(--nd-text-md);
    color: var(--nd-text-muted);
    line-height: var(--nd-lh-relaxed);
    max-width: var(--nd-max-w-n);
}

.nd-tc .nd-subline {
    margin-left: auto;
    margin-right: auto;
}

/* Microcopy / Hinweis */
.nd-microcopy {
    font-size: var(--nd-text-xs);
    color: var(--nd-text-muted);
    font-style: italic;
    line-height: var(--nd-lh-relaxed);
}

/* Kursiv-Akzent in Überschriften */
.nd-scope em,
.nd-italic-accent {
    font-style: italic;
    color: var(--nd-green-dark);
}
.tc{
    text-align: center;
}
.divider-c {
    margin: var(--nd-s3) auto !important;
}

/* -------------------------------------------------------------
   4. BASIS-UTILITIES  (Layout & Abstand)
   Nur die Helfer, die global für alle Sections gelten.
------------------------------------------------------------- */

.nd-sec {
    padding: var(--nd-s6) 0;
}

.nd-sec--alt {
    background: var(--nd-bg-alt);
}

.nd-sec--dark {
    background: var(--nd-bg-dark);
    color: var(--nd-text-light);
}

.nd-sec--dark h1,
.nd-sec--dark h2,
.nd-sec--dark h3,
.nd-sec--dark h4 {
    color: var(--nd-text-light);
}

.nd-tc {
    text-align: center;
}

/* Divider-Linie */
.nd-divider {
    width: 56px;
    height: 3px;
    background: var(--nd-grad-green);
    border-radius: 2px;
    margin: var(--nd-s3) 0;
    border: none;
}

.nd-divider--c {
    margin-left: auto;
    margin-right: auto;
}

/* Abstands-Utilities */
.nd-mt-1 {
    margin-top: var(--nd-s1);
}

.nd-mt-2 {
    margin-top: var(--nd-s2);
}

.nd-mt-3 {
    margin-top: var(--nd-s3);
}

.nd-mt-4 {
    margin-top: var(--nd-s4);
}

.nd-mt-5 {
    margin-top: var(--nd-s5);
}

.nd-mt-6 {
    margin-top: var(--nd-s6);
}

.nd-mb-1 {
    margin-bottom: var(--nd-s1);
}

.nd-mb-2 {
    margin-bottom: var(--nd-s2);
}

.nd-mb-3 {
    margin-bottom: var(--nd-s3);
}

.nd-mb-4 {
    margin-bottom: var(--nd-s4);
}

.nd-mb-5 {
    margin-bottom: var(--nd-s5);
}

.nd-mb-6 {
    margin-bottom: var(--nd-s6);
}


/* -------------------------------------------------------------
   5. RESPONSIVE  —  mobile-first Breakpoints
------------------------------------------------------------- */

/* Tablet ab 600px – kleinere Type-Korrekturen via Token,
   clamp() übernimmt den Großteil automatisch.
   Manuelle Overrides nur wenn nötig. */

@media (max-width: 599px) {
    :root {
        /* Abstände auf Mobile leicht reduzieren */
        --nd-s6: 55px;
        --nd-s7: 89px;
        --nd-container-px: var(--nd-s3);
    }

    .nd-sec {
        padding: var(--nd-s5) 0;
    }
}

@media (max-width: 375px) {
    :root {
        --nd-container-px: var(--nd-s2);
    }
}
/* Hover-Effekte nur auf Geräten mit echter Maus */
@media (hover: hover) and (pointer: fine) {
  a:hover,
  .nd-btn:hover,
  .nd-vcard:hover,
  .nd-where-card:hover,
  .nd-event-card:hover,
  .nd-price-card:hover,
  .nd-use-item:hover {
    /* alle hover styles hier */
  }
}
/* =============================================================
   natürlich drauf – Buttons
   Ziel-Struktur: Elementor Button-Widget mit nd- Klassen
   am äußeren .elementor-element Wrapper

   Selektoren greifen immer über den nd- Wrapper auf
   .elementor-button  (das eigentliche <a>-Tag).
   Elementor-eigene Styles werden gezielt überschrieben.
   ============================================================= */


/* -------------------------------------------------------------
   1. RESET  –  Elementor-Defaults neutralisieren
   Alles, was Elementor auf .elementor-button setzt,
   wird hier unter .nd-btn als Ausgangspunkt gecleart.
------------------------------------------------------------- */
.header_2_right .cz_header_button,
.nd-btn .elementor-button {
    /* Layout */
    display: inline-flex;
    align-items: center;
    justify-content: center;

    /* Eigene Elementor-Größen-Klassen deaktivieren */
    padding: 14px 28px !important;

    /* Typografie */
    font-family: var(--nd-font-body);
    font-size: var(--nd-text-sm);
    font-weight: 700;
    letter-spacing: var(--nd-ls-wide);
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;

    /* Form */
    border-radius: var(--nd-r-pill);
    /* border: 2px solid transparent; */

    /* Transition */
    transition: background var(--nd-trans),
        border-color var(--nd-trans),
        color var(--nd-trans),
        transform var(--nd-trans),
        box-shadow var(--nd-trans);

    /* Elementor setzt oft width:auto – sicherstellen */
    width: auto;
}
.nd-btn.nd-btn--secondary a{
   border: 2px solid;  
}

/* Elementor fügt Padding via .elementor-size-* hinzu – neutralisieren */
.nd-btn .elementor-button.elementor-size-xs,
.nd-btn .elementor-button.elementor-size-sm,
.nd-btn .elementor-button.elementor-size-md,
.nd-btn .elementor-button.elementor-size-lg,
.nd-btn .elementor-button.elementor-size-xl {
    padding: inherit;
    /* erbt von .nd-btn .elementor-button */
}

/* Elementor Button-Content-Wrapper: kein zusätzliches Layout nötig */
.nd-btn .elementor-button-content-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Button-Text: kein Elementor-Override */
.nd-btn .elementor-button-text {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    color: inherit;
}


/* -------------------------------------------------------------
   2. VARIANTEN
------------------------------------------------------------- */

/* ── Primär: Grün-Gradient ─────────────────────────────────── */

.nd-btn--primary .elementor-button {
    background: var(--nd-grad-green);
    color: var(--nd-white);
    border-color: transparent;
    box-shadow: var(--nd-sh-btn);
}
.header_2_right .cz_header_button:hover,
.nd-btn--primary .elementor-button:hover,
.nd-btn--primary .elementor-button:focus-visible {
    background: var(--nd-grad-green-h);
    color: var(--nd-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(101, 134, 51, 0.45);
}

.nd-btn-primary-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 28px !important;
  font-family:var(--nd-font-body);
  font-size:var(--nd-text-sm);
  font-weight:700;
  letter-spacing:var(--nd-ls-wide);
  line-height:1;
  text-decoration:none;
  white-space:nowrap;
  border-radius:var(--nd-r-pill);
  background:var(--nd-grad-green);
  color:var(--nd-white);
  border:2px solid transparent;
  box-shadow:var(--nd-sh-btn);
  transition:background var(--nd-trans),border-color var(--nd-trans),color var(--nd-trans),transform var(--nd-trans),box-shadow var(--nd-trans);
}

.nd-btn-primary-link:hover,
.nd-btn-primary-link:focus-visible{
  background:var(--nd-grad-green-h);
  color:var(--nd-white);
  border-color:transparent;
  transform:translateY(-2px);
  box-shadow:0 6px 22px rgba(101,134,51,.45);
}

.nd-btn-primary-link:focus-visible{
  outline:3px solid var(--nd-green-light);
  outline-offset:3px;
}
/* ── Sekundär: Umriss / Outline ────────────────────────────── */

.nd-btn--secondary .elementor-button {
    background: transparent;
    color: var(--nd-brown);
    border-color: var(--nd-brown);
    box-shadow: none;
}

.nd-btn--secondary .elementor-button:hover,
.nd-btn--secondary .elementor-button:focus-visible {
    background: var(--nd-brown);
    color: var(--nd-white);
    transform: translateY(-2px);
}

/* ── Ghost: für grüne/dunkle Hintergründe ─────────────────── */

.nd-btn--ghost .elementor-button {
    background: rgba(255, 255, 255, 0.12);
    color: var(--nd-white);
    border-color: rgba(255, 255, 255, 0.50);
    box-shadow: none;
}

.nd-btn--ghost .elementor-button:hover,
.nd-btn--ghost .elementor-button:focus-visible {
    background: rgba(255, 255, 255, 0.22);
    border-color: var(--nd-white);
    color: var(--nd-white);
    transform: translateY(-2px);
}

/* ── Outline-Grün: für helle Hintergründe mit Grün-Akzent ─── */

.nd-btn--outline-green .elementor-button {
    background: transparent;
    color: var(--nd-green-dark);
    border-color: var(--nd-green-light);
    box-shadow: none;
}

.nd-btn--outline-green .elementor-button:hover,
.nd-btn--outline-green .elementor-button:focus-visible {
    background: var(--nd-grad-green);
    color: var(--nd-white);
    border-color: transparent;
    transform: translateY(-2px);
}


/* -------------------------------------------------------------
   4. BUTTON-GRUPPE  (mehrere Buttons nebeneinander)
   Elementor: beide Button-Widgets in eine Spalte,
   der Spalten-Wrapper bekommt die Klasse .nd-btn-row
------------------------------------------------------------- */

.nd-btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--nd-s2);
    align-items: center;
}

/* Auf Mobile: Buttons untereinander, volle Breite */
@media (max-width: 599px) {
    .nd-btn-row {
        flex-direction: column;
        align-items: stretch;
    }

    .nd-btn-row .nd-btn {
        width: 100%;
    }

    .nd-btn-row .nd-btn .elementor-button {
        width: 100%;
        justify-content: center;
    }
}


/* -------------------------------------------------------------
   5. ACCESSIBILITY
------------------------------------------------------------- */

.nd-btn .elementor-button:focus-visible {
    outline: 3px solid var(--nd-green-light);
    outline-offset: 3px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .nd-btn .elementor-button {
        transition: none;
    }

    .nd-btn .elementor-button:hover {
        transform: none;
    }
}

/* -------------------------------------------------------------
   BADGES  (global)
------------------------------------------------------------- */

.nd-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--nd-font-body);
    font-size: var(--nd-text-xs);
    line-height: 1;
    padding: 6px 14px;
    border-radius: var(--nd-r-pill);
    border: 1px solid transparent;
}

.nd-badge__icon {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

.nd-badge--solid {
    background: var(--nd-grad-green);
    color: var(--nd-white);
}

.nd-badge--outline {
    background: transparent;
    color: var(--nd-green-dark);
    border-color: var(--nd-green-light);
}

.nd-badge--gold {
    background: var(--nd-gold);
    color: var(--nd-white);
}


/* -------------------------------------------------------------
   HERO SECTION
------------------------------------------------------------- */

.nd-hero {
    position: relative;
    background: var(--nd-grad-hero);
    padding: var(--nd-s6) 0;
    overflow: hidden;
}
.nd-bg1{
    background: var(--nd-grad-hero);
}
.nd-bg2{
    background: var(--nd-grad-2);
}

/* Hintergrundglow oben rechts */
.nd-hero__bg-glow {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(143, 192, 69, 0.10) 0%,
            transparent 68%);
    pointer-events: none;
    z-index: 0;
}

/* Zweiglow unten links (Tiefe) */
.nd-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(198, 163, 89, 0.07) 0%,
            transparent 68%);
    pointer-events: none;
    z-index: 0;
}

.nd-hero .nd-wrap {
    position: relative;
    z-index: 1;
}


/* ── Grid ──────────────────────────────────────────────────── */

.nd-hero__grid {
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: var(--nd-s5);
    align-items: center;
}


/* ── Linke Spalte: Text ────────────────────────────────────── */

/* Badge-Zeile */
.nd-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--nd-s1);
    margin-bottom: var(--nd-s4);

    /* Einlauf-Animation */
    animation: nd-fade-up 0.55s var(--nd-ease) both;
}

/* Headline */
.nd-hero__headline {
    margin-bottom: var(--nd-s3);
    animation: nd-fade-up 0.55s var(--nd-ease) 0.1s both;
}

.nd-hero__headline-em {
    font-family: var(--nd-font-brand);
    font-style: italic;
    display: block;
    /* eigene Zeile */
}

/* Divider */
.nd-hero__divider {
    margin: var(--nd-s4) 0;
    animation: nd-fade-up 0.55s var(--nd-ease) 0.2s both;
}

/* Lead-Text */
.nd-hero__lead {
    margin-top: 30px;
    font-size: var(--nd-text-md);
    color: var(--nd-text-muted);
    line-height: var(--nd-lh-relaxed);
    max-width: 560px;
    animation: nd-fade-up 0.55s var(--nd-ease) 0.22s both;
}

.nd-hero__lead strong {
    color: var(--nd-text-main);
    font-weight: 700;
}

/* CTA-Reihe */
.nd-hero__cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--nd-s2);
    align-items: center;
    margin-top: var(--nd-s4);
    animation: nd-fade-up 0.55s var(--nd-ease) 0.34s both;
}

/* Hinweis-Box */
.nd-hero__note {
    margin-top: var(--nd-s3);
    padding: var(--nd-s2) var(--nd-s3);
    background: rgba(143, 192, 69, 0.09);
    border-left: 3px solid var(--nd-green-light);
    border-radius: 0 var(--nd-r-sm) var(--nd-r-sm) 0;
    font-size: var(--nd-text-sm);
    color: var(--nd-text-muted);
    font-style: italic;
    line-height: var(--nd-lh-relaxed);
    max-width: 560px;
    animation: nd-fade-up 0.55s var(--nd-ease) 0.38s both;
}

/* Mikro-Claims */
.nd-hero__microclaims {
    display: flex;
    flex-wrap: wrap;
    gap: var(--nd-s3);
    margin-top: var(--nd-s4);
    animation: nd-fade-up 0.55s var(--nd-ease) 0.44s both;
}

.nd-microclaim {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--nd-text-xs);
    font-weight: 700;
    color: var(--nd-text-muted);
}

.nd-microclaim__dot {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(143, 192, 69, 0.15);
}

.nd-microclaim__dot svg {
    width: 15px;
    height: 15px;
    display: block;
}


/* ── Rechte Spalte: Visual ─────────────────────────────────── */

.nd-hero__visual {
    position: relative;
    animation: nd-fade-up 0.65s var(--nd-ease) 0.2s both;
}

/* Bildrahmen */
.nd-hero__img-frame {
    position: relative;
    border-radius: var(--nd-r-xl);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--nd-sh-img);
}

.nd-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* leichter Sättigungs-Tweak für Konsistenz mit Brand-Farben */
    filter: saturate(0.88) brightness(0.97);
    transition: transform 0.6s var(--nd-ease);
}

.nd-hero__img-frame:hover .nd-hero__img {
    transform: scale(1.03);
}

/* Dunkel-Overlay unten (für Float-Badge-Lesbarkeit) */
.nd-hero__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            transparent 45%,
            rgba(88, 81, 75, 0.50) 100%);
    pointer-events: none;
}

/* Floating Badge */
.nd-hero__float-badge {
    position: absolute;
    bottom: -18px;
    left: -18px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--nd-brown);
    color: var(--nd-white);
    border-radius: var(--nd-r-lg);
    padding: 16px 22px;
    box-shadow: var(--nd-sh-card);
    z-index: 2;
}

.nd-hero__float-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nd-hero__float-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.nd-hero__float-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.nd-hero__float-text strong {
    font-size: var(--nd-text-sm);
    font-weight: 700;
    color: var(--nd-white);
    display: block;
}

.nd-hero__float-text span {
    font-size: var(--nd-text-2xs);
    opacity: 0.70;
    display: block;
}


/* -------------------------------------------------------------
   ANIMATIONEN
------------------------------------------------------------- */

@keyframes nd-fade-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* -------------------------------------------------------------
   RESPONSIVE
------------------------------------------------------------- */

/* Tablet: ab 900px → leichtere Aufteilung */
@media (max-width: 900px) {
    .nd-hero__grid {
        grid-template-columns: 1fr;
        gap: var(--nd-s4);
    }

    /* Visual kommt vor dem Text */
    .nd-hero__visual {
        order: -1;
    }

    .nd-hero__img-frame {
        aspect-ratio: 16 / 9;
    }

    .nd-hero__float-badge {
        bottom: -14px;
        left: 14px;
    }

    .nd-hero__lead,
    .nd-hero__note {
        max-width: 100%;
    }
}

/* Mobile: ab 600px → Badges umbrechen, kleinere Abstände */
@media (max-width: 599px) {
    .nd-hero {
        padding-top: 0;
        padding-bottom: 50px;
    }

    .nd-hero__badges {
        gap: 6px;
    }

    .nd-hero__cta-row {
        flex-direction: column;
        align-items: stretch;
    }


    .nd-hero__microclaims {
        gap: var(--nd-s2);
    }

    /* Float-Badge auf sehr kleinen Screens */
    .nd-hero__float-badge {
        position: static;
        margin-top: var(--nd-s3);
        border-radius: var(--nd-r-md);
    }
}

/* Sehr klein: 375px */
@media (max-width: 375px) {
    .nd-hero__float-badge {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

.section-eyebrow {
    display: block;
    font-family: var(--nd-font-body);
    font-size: var(--nd-text-xs);
    /* ~12–14 px */
    font-weight: 700;
    letter-spacing: var(--nd-ls-widest);
    /* 0.16em */
    text-transform: uppercase;
    color: var(--nd-green-dark);
    margin-bottom: var(--nd-s2);
    /* ~13 px */
}

.divider {
    width: 56px;
    height: 3px;
    background: var(--nd-grad-green);
    /* #8fc045 → #658633 */
    border-radius: 2px;
    border: none;
    margin: var(--nd-s3) 0;
    /* ~21 px oben/unten */
}


/* -------------------------------------------------------------
   HTML 2 – Use-Cases Grid
------------------------------------------------------------- */

.use-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--nd-s2);
    /* ~13 px */
    margin-top: var(--nd-s4);
    /* ~34 px */
}

.use-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--nd-cream);
    border: 1.5px solid var(--nd-border);
    border-radius: var(--nd-r-md);
    /* 16 px */
    font-family: var(--nd-font-body);
    font-size: var(--nd-text-sm);
    /* ~14–16 px */
    font-weight: 700;
    color: var(--nd-text-muted);
    transition: border-color var(--nd-trans),
        color var(--nd-trans),
        background var(--nd-trans);
}

.use-item:hover {
    border-color: var(--nd-green-light);
    color: var(--nd-green-dark);
    background: rgba(143, 192, 69, 0.08);
}

.ui-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    color: var(--nd-green-dark);
}

.ui-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Mobile: untereinander */
@media (max-width: 480px) {
    .use-list {
        grid-template-columns: 1fr;
    }
}

html p {
    margin-bottom: 15px;
}

/* =============================================================
   natürlich drauf – Sorten-Übersicht (#varianten)
   Abhängigkeit: nd-foundation.css
   ============================================================= */


/* -------------------------------------------------------------
   GRID
------------------------------------------------------------- */

.nd-variants-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   var(--nd-s3);
}

@media (max-width: 900px) {
  .nd-variants-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .nd-variants-grid { grid-template-columns: 1fr; }
}


/* -------------------------------------------------------------
   KACHEL
------------------------------------------------------------- */

.nd-vcard {
  background:    var(--nd-off-white);
  border:        1.5px solid var(--nd-border);
  border-radius: var(--nd-r-xl);
  overflow:      hidden;
  transition:    border-color var(--nd-trans),
                 transform    var(--nd-trans),
                 box-shadow   var(--nd-trans);
}

.nd-vcard:hover {
  border-color: var(--nd-green-light);
  transform:    translateY(-4px);
  box-shadow:   var(--nd-sh-card);
}


/* -------------------------------------------------------------
   LABEL-BEREICH mit Oval
------------------------------------------------------------- */

.nd-vcard__label {
  background:      var(--nd-cream);
  padding:         var(--nd-s4) var(--nd-s3);
  display:         flex;
  align-items:     center;
  justify-content: center;
}

.nd-mango .nd-vcard__label {
  background:
    linear-gradient(
      135deg,
      rgba(239, 236, 191, 0.9) 0%,
      rgba(239, 236, 191, 0.8) 60%,
      rgba(101, 134, 51, 0) 100%
    ),
    url('../../uploads/2026/05/natuerlich-drauf-muesli-topping-queen-mango.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.nd-erdbeere .nd-vcard__label{
   background: linear-gradient(135deg, rgba(239, 236, 191, 0.9) 0%, rgba(239, 236, 191, 0.8) 60%, rgba(101, 134, 51, 0) 100%), url('../../uploads/2026/03/natuerlich-drauf-muesli-topping-queen-erdbeere.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.nd-vcard__oval {
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  justify-content: center;
  gap:             4px;
  width:           220px;
  height:          88px;
  background:      var(--nd-grad-green);
  border-radius:   50%;
  box-shadow:      0 6px 20px rgba(101, 134, 51, 0.30);
  padding:         0 var(--nd-s3);
  text-align:      center;
}

.nd-vcard__oval-top {
  font-family:    var(--nd-font-head);
  font-size:      var(--nd-text-md);
  font-weight:    700;
  color:          #ffffff;
  line-height:    1.1;
  letter-spacing: 0.01em;
  white-space:    nowrap;
}

.nd-vcard__oval-name {
  font-family: var(--nd-font-deco);
  font-size:   var(--nd-text-lg);
  font-weight: 400;
  color:       #ffffff;
  line-height: 1.1;
  white-space: nowrap;
}


/* -------------------------------------------------------------
   BODY
------------------------------------------------------------- */

.nd-vcard__body {
  padding: var(--nd-s3);
}

.nd-vcard__desc {
  font-size:     var(--nd-text-sm);
  color:         var(--nd-text-muted);
  line-height:   var(--nd-lh-relaxed);
  margin-bottom: var(--nd-s3);
}


/* -------------------------------------------------------------
   ZUTATEN-CHIPS  –  exakt wie im Screenshot
------------------------------------------------------------- */

.nd-chips {
  display:        flex;
  flex-wrap:      wrap;
  gap:            7px;
  margin-bottom:  var(--nd-s4);
}

.nd-chip {
  display:       inline-block;
  font-family:   var(--nd-font-body);
  font-size:     var(--nd-text-xs);      /* ~12–14 px */
  font-weight:   400;
  color:         var(--nd-brown);
  background:    var(--nd-cream);
  border:        1.5px solid var(--nd-cream-dark);
  border-radius: var(--nd-r-pill);
  padding:       5px 13px;
  line-height:   1.3;
  white-space:   nowrap;
}


/* =============================================================
   natürlich drauf – Nährwerttabelle
   ============================================================= */

.nd-nutri-table {
  width:           100%;
  border-collapse: collapse;
  font-size:       var(--nd-text-xs);     /* ~12–14 px */
  margin-top:      var(--nd-s2);
}

/* Alle Zeilen: Trennlinie unten */
.nd-nutri-table tr {
  border-bottom: 1px solid var(--nd-border);
}

.nd-nutri-table tr:last-child {
  border-bottom: none;
}

/* Hauptzeilen die eine Sub-Zeile nach sich haben:
   keine Trennlinie, da Sub-Zeile direkt folgt */
.nd-nutri-table tr.nd-nutri-main {
  border-bottom: none;
}

/* Alle Zellen: Padding, Farbe */
.nd-nutri-table td {
  padding: 5px 0;
  color:   var(--nd-text-muted);
}

/* Linke Spalte: Bezeichnung, fett, linksbündig */
.nd-nutri-table td:first-child {
  font-weight: 700;
  color:       var(--nd-text-main);
  width:       60%;
  text-align:  left;
}

/* Rechte Spalte: Gramm/kcal – rechtsbündig */
.nd-nutri-table td:last-child {
  text-align: right;
  white-space: nowrap;
}

/* Sub-Zeilen: kleiner, gedimmt, eingerückt */
.nd-nutri-table tr.nd-nutri-sub td {
  font-size:   var(--nd-text-2xs);        /* ~10–12 px */
  font-weight: 400;
  color:       var(--nd-text-muted);
  padding-top: 2px;
}

.nd-nutri-table tr.nd-nutri-sub td:first-child {
  font-weight:  400;
  color:        var(--nd-text-muted);
  padding-left: var(--nd-s2);            /* Einzug */
}
.nd-nutri-table{
    border: unset !important;
}
.nd-nutri-table th, .nd-nutri-table td{
    border-right: unset !important;
}
/* =============================================================
   natürlich drauf – Nährwerte aufklappen/zuklappen
   Reines CSS + nativer <details>/<summary> – kein JS nötig.
   ============================================================= */


/* -------------------------------------------------------------
   details-Container
------------------------------------------------------------- */

.nd-nutri-toggle {
  margin-top: var(--nd-s2);
}

/* Tabelle – standardmäßig durch <details> verborgen,
   erscheint beim Öffnen mit kleiner Animation */
.nd-nutri-toggle .nd-nutri-table {
  animation: nd-nutri-open 0.22s ease both;
}

@keyframes nd-nutri-open {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0);    }
}


/* -------------------------------------------------------------
   summary – Browser-Default komplett entfernen
------------------------------------------------------------- */

.nd-nutri-toggle__btn {
  /* Default-Marker (Dreieck) weg */
  list-style:  none;
  display:     flex;
  align-items: center;
  gap:         5px;

  /* Minimalistischer Text-Link-Stil */
  font-family: var(--nd-font-body);
  font-size:   var(--nd-text-xs);       /* ~12–14 px */
  font-weight: 600;
  color:       var(--nd-green-dark);
  cursor:      pointer;
  user-select: none;

  /* Kein Button-Look */
  background:  none;
  border:      none;
  padding:     6px 0;
  width:       fit-content;

  /* Dezente Unterstreichung als einziger visueller Hinweis */
  text-decoration:       underline;
  text-decoration-style: dotted;
  text-decoration-color: var(--nd-green-light);
  text-underline-offset: 3px;

  transition: color var(--nd-trans), text-decoration-color var(--nd-trans);
}

/* Webkit-spezifischer Marker ebenfalls entfernen */
.nd-nutri-toggle__btn::-webkit-details-marker {
  display: none;
}

.nd-nutri-toggle__btn:hover {
  color:                 var(--nd-green-light);
  text-decoration-color: var(--nd-green-dark);
}


/* -------------------------------------------------------------
   Label-Texte: open/close wechselweise sichtbar
------------------------------------------------------------- */

/* Standardzustand (geschlossen): "aufklappen" zeigen */
.nd-nutri-toggle__label-open  { display: inline; }
.nd-nutri-toggle__label-close { display: none;   }

/* Geöffnet: "zuklappen" zeigen */
.nd-nutri-toggle[open] .nd-nutri-toggle__label-open  { display: none;   }
.nd-nutri-toggle[open] .nd-nutri-toggle__label-close { display: inline; }


/* -------------------------------------------------------------
   Pfeil-Icon: dreht sich beim Öffnen
------------------------------------------------------------- */

.nd-nutri-toggle__icon {
  width:      14px;
  height:     14px;
  flex-shrink: 0;
  transition:  transform 0.22s ease;
}

.nd-nutri-toggle[open] .nd-nutri-toggle__icon {
  transform: rotate(180deg);
}
/* Kachel als Flex-Spalte */
.nd-vcard {
  display:        flex;
  flex-direction: column;
}

/* Body füllt den verfügbaren Raum */
.nd-vcard__body {
  display:        flex;
  flex-direction: column;
  flex:           1;
}

/* Toggle wird ans Ende gedrückt */
.nd-nutri-toggle {
  margin-top: auto;
  padding-top: var(--nd-s2);
}
/* =============================================================
   natürlich drauf – Preise (#preise)
   Abhängigkeit: nd-foundation.css, nd-buttons.css
   ============================================================= */


/* -------------------------------------------------------------
   GRID
------------------------------------------------------------- */

.nd-pricing-grid {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   var(--nd-s3);
  align-items:           stretch;
}

@media (max-width: 680px) {
  .nd-pricing-grid {
    grid-template-columns: 1fr;
  }
}
.nd-price-card{
  background: var(--nd-cream) !important;
}

.nd-price-card .nd-price-table{
  background: var(--nd-off-white);
}

.nd-price-table__section-head td{
  padding: var(--nd-s3) var(--nd-s4);
  background: var(--nd-grad-green);
  border-bottom: 1px solid var(--nd-border);
  color: var(--nd-white) !important;
}

.nd-price-table__section-head strong{
  text-align: left !important;
  display: block;
  font-family: var(--nd-font-head);
  font-size: var(--nd-text-base);
  font-weight: 700;
  color: var(--nd-white);
  line-height: 1.25;
  margin: 0 0 4px;
}

.nd-price-table__section-head span{
  text-align: left !important;
  display: block;
  font-size: var(--nd-text-xs);
  color: rgba(255,255,255,.82);
  line-height: 1.4;
}

/* -------------------------------------------------------------
   KACHEL
------------------------------------------------------------- */

.nd-price-card {
  border-radius: var(--nd-r-xl);
  overflow:      hidden;
  border:        1px solid var(--nd-green-light);
  background:    var(--nd-off-white);
  display:       flex;
  flex-direction: column;
}


/* -------------------------------------------------------------
   KOPF
------------------------------------------------------------- */

.nd-price-card__head {
  padding:    var(--nd-s3) var(--nd-s4);
  background: var(--nd-grad-green);
}

.nd-price-card--gold .nd-price-card__head {
    color:rgba(239, 236, 191, 0.75);
 background: linear-gradient(135deg, rgba(143, 192, 69, 0.9) 0%, rgba(101, 134, 51, 0.8) 60%, rgba(101, 134, 51, 0) 100%), url('../../uploads/2026/05/natuerlich-drauf-muesli-topping-queen-erdbeere-mango.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.nd-price-card__title {
  font-family:  var(--nd-font-head);
  font-size:    var(--nd-text-base);
  font-weight:  700;
  color:        #ffffff;
  margin:       0 0 4px;
  line-height:  1.25;
}

.nd-price-card__sub {
  font-size:   var(--nd-text-xs);
  color:       rgba(255, 255, 255, 0.82);
  margin:      0;
  line-height: 1.4;
}


/* -------------------------------------------------------------
   PREISTABELLE
------------------------------------------------------------- */

.nd-price-table {
  width:           100%;
  border-collapse: collapse;
  margin-bottom: 0 !important;
}

/* Zeilen */
.nd-price-table tr {
  border-bottom: 1px solid var(--nd-border);
}

.nd-price-table tr:last-child {
  border-bottom: none;
}

/* Alle Zellen */
.nd-price-table td {
  padding:        13px var(--nd-s4);
  font-family:    var(--nd-font-body);
  vertical-align: middle;
}

/* Linke Spalte: Grammangabe */
.nd-price-table td:first-child {
  font-size:   var(--nd-text-sm);
  font-weight: 600;
  color:       var(--nd-text-main);
  width:       50%;
  text-align: left;
}
/* Badge neben Grammangabe */
.nd-price-table td:first-child .nd-price-badge {
  margin-left: 6px;
  vertical-align: middle;
}

/* Rechte Spalte: Preis + Per-100g-Preis übereinander */
.nd-price-table td:last-child {
  text-align:     right;
  vertical-align: middle;
}

/* Hauptpreis */
.nd-price-main {
  display:     block;
  font-size:   var(--nd-text-base);
  font-weight: 700;
  color:       var(--nd-text-main);
  line-height: 1.2;
}

/* Preis pro 100 g */
.nd-per100 {
  display:     block;
  font-size:   var(--nd-text-2xs);
  font-weight: 400;
  color:       var(--nd-text-muted);
  margin-top:  2px;
  line-height: 1.2;
}

/* Hervorgehobene Zeile */
.nd-price-table__highlight {
  background: rgba(143, 192, 69, 0.08);
}

.nd-price-table__highlight td:first-child {
  color: var(--nd-green-dark);
}

.nd-price-table__highlight .nd-price-main {
  color: var(--nd-green-dark);
}

/* "Beliebt"-Badge */
.nd-price-badge {
  display:       inline-block;
  font-size:     var(--nd-text-2xs);
  font-weight:   700;
  color:         var(--nd-white);
  background:    var(--nd-grad-green);
  border-radius: var(--nd-r-pill);
  padding:       2px 9px;
  line-height:   1.6;
  white-space:   nowrap;
}

.btn--outline-green {
    background: transparent;
    color: var(--nd-green-dark);
        /* Eigene Elementor-Größen-Klassen deaktivieren */
    padding: 14px 28px !important;
    /* wird von .nd-btn--lg überschrieben */

    /* Typografie */
    font-family: var(--nd-font-body);
    font-size: var(--nd-text-sm);
    font-weight: 700;
    letter-spacing: var(--nd-ls-wide);
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;

    /* Form */
    border-radius: var(--nd-r-pill);
    border: 2px solid  var(--nd-green-light);

    /* Transition */
    transition: background var(--nd-trans),
        border-color var(--nd-trans),
        color var(--nd-trans),
        transform var(--nd-trans),
        box-shadow var(--nd-trans);

    /* Elementor setzt oft width:auto – sicherstellen */
    width: auto;
}
.btn--outline-green:hover {
    background: var(--nd-grad-green);
    color: #fff;
    border-color: transparent;
}
/* -------------------------------------------------------------
   HINWEIS-ZEILE
------------------------------------------------------------- */

.nd-price-card__note {
  padding:     var(--nd-s2) var(--nd-s4);
  font-size:   var(--nd-text-xs);
  font-style:  italic;
  color:       var(--nd-text-muted);
  line-height: var(--nd-lh-relaxed);
  background:  var(--nd-cream);
  margin:      0;
  border-top:  1px solid var(--nd-border);
}

.nd-price-card__note--gold {
  background: rgba(198, 163, 89, 0.08);
}


/* -------------------------------------------------------------
   B2B-BLOCK
------------------------------------------------------------- */

.nd-price-card__b2b {
  padding:    var(--nd-s4);
  background: var(--nd-off-white);
  flex:       1;           /* füllt restliche Kartenhöhe */
}

.nd-price-card__b2b-title {
  font-family:   var(--nd-font-head);
  font-size:     var(--nd-text-base);
  font-weight:   700;
  color:         var(--nd-text-main);
  margin:        0 0 var(--nd-s2);
  line-height:   1.3;
}

.nd-price-card__b2b-text {
  font-size:     var(--nd-text-sm);
  color:         var(--nd-text-muted);
  line-height:   var(--nd-lh-relaxed);
  margin-bottom: var(--nd-s3);
}

/* =============================================================
   natürlich drauf – Wo kaufen (#wo)
   Abhängigkeit: nd-foundation.css, nd-buttons.css
   ============================================================= */


/* -------------------------------------------------------------
   GRID
------------------------------------------------------------- */

.nd-where-grid {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   var(--nd-s3);
  align-items:           stretch;
}

@media (max-width: 680px) {
  .nd-where-grid {
    grid-template-columns: 1fr;
  }
}


/* -------------------------------------------------------------
   KACHEL
------------------------------------------------------------- */

.nd-where-card {
  border-radius:  var(--nd-r-xl);
  overflow:       hidden;
  border:         1.5px solid var(--nd-border);
  background:     var(--nd-off-white);
  display:        flex;
  flex-direction: column;
  transition:     border-color var(--nd-trans),
                  box-shadow   var(--nd-trans),
                  transform    var(--nd-trans);
}

.nd-where-card:hover {
  border-color: var(--nd-green-light);
  box-shadow:   var(--nd-sh-card);
  transform:    translateY(-3px);
}


/* -------------------------------------------------------------
   BILD
------------------------------------------------------------- */

.nd-where-card__img {
  height:   220px;
  overflow: hidden;
}

.nd-where-card__img img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  display:    block;
  filter:     saturate(0.88) brightness(0.97);
  transition: transform 0.45s var(--nd-ease);
}

.nd-where-card:hover .nd-where-card__img img {
  transform: scale(1.04);
}


/* -------------------------------------------------------------
   BODY
------------------------------------------------------------- */

.nd-where-card__body {
  padding:        var(--nd-s4);
  display:        flex;
  flex-direction: column;
  flex:           1;
}

.nd-where-card__title {
  font-family:   var(--nd-font-head);
  font-size:     var(--nd-h4);
  font-weight:   700;
  color:         var(--nd-text-main);
  margin-bottom: var(--nd-s2);
  line-height:   var(--nd-lh-snug);
}

.nd-where-card__text {
  font-size:     var(--nd-text-sm);
  color:         var(--nd-text-muted);
  line-height:   var(--nd-lh-relaxed);
  margin-bottom: var(--nd-s2);
}

.nd-where-card__text:last-of-type {
  margin-bottom: var(--nd-s3);
}

/* Button ans Ende drücken */
.nd-where-card__body .nd-btn,
.nd-where-card__body .elementor-widget-button {
  margin-top: auto;
  align-self: flex-start;
}

@media (max-width: 480px) {
  .nd-where-card__img {
    height: 180px;
  }

  .nd-where-card__body .nd-btn,
  .nd-where-card__body .elementor-widget-button {
    align-self: stretch;
    text-align: center;
    justify-content: center;
  }
}
/* =============================================================
   natürlich drauf – Hinter dem Produkt (#hinter-dem-produkt)
   Abhängigkeit: nd-foundation.css, nd-product-intro.css
   (section-eyebrow + divider bereits dort definiert)
   ============================================================= */


/* -------------------------------------------------------------
   ZITAT-BLOCK
------------------------------------------------------------- */

.nd-story__quote-block {
  border-left:  3px solid var(--nd-green-light);
  padding-left: var(--nd-s3);
  margin:       var(--nd-s4) 0;
}

.nd-story__quote {
  font-family:  var(--nd-font-body);
  font-size:    var(--nd-text-base);
  font-style:   italic;
  color:        var(--nd-text-main);
  line-height:  var(--nd-lh-relaxed);
  margin:       0 0 var(--nd-s2);
  quotes:       none;
}

.nd-story__cite {
  font-size:   var(--nd-text-xs);
  font-style:  normal;
  font-weight: 600;
  color:       var(--nd-text-muted);
}


/* -------------------------------------------------------------
   AUFKLAPP-TOGGLE (gleiche Grundform wie nd-nutri-toggle)
------------------------------------------------------------- */

.nd-story__toggle {
  margin-bottom: var(--nd-s3);
}

.nd-story__toggle-btn {
  list-style:  none;
  display:     flex;
  align-items: center;
  gap:         5px;

  font-family:           var(--nd-font-body);
  font-size:             var(--nd-text-xs);
  font-weight:           600;
  color:                 var(--nd-green-dark);
  cursor:                pointer;
  user-select:           none;
  background:            none;
  border:                none;
  padding:               6px 0;
  text-decoration:       underline;
  text-decoration-style: dotted;
  text-decoration-color: var(--nd-green-light);
  text-underline-offset: 3px;
  transition:            color var(--nd-trans);
}

.nd-story__toggle-btn::-webkit-details-marker { display: none; }

.nd-story__toggle-btn:hover {
  color: var(--nd-green-light);
}

.nd-story__toggle-open  { display: inline; }
.nd-story__toggle-close { display: none;   }

.nd-story__toggle[open] .nd-story__toggle-open  { display: none;   }
.nd-story__toggle[open] .nd-story__toggle-close { display: inline; }

.nd-story__toggle-icon {
  width:      14px;
  height:     14px;
  flex-shrink: 0;
  transition:  transform 0.22s ease;
}

.nd-story__toggle[open] .nd-story__toggle-icon {
  transform: rotate(180deg);
}


/* -------------------------------------------------------------
   STORY-TEXT (innerhalb details)
------------------------------------------------------------- */

.nd-story__text {
  animation: nd-story-open 0.22s ease both;
  margin-top: var(--nd-s3);
}

.nd-story__text p {
  font-size:     var(--nd-text-sm);
  color:         var(--nd-text-muted);
  line-height:   var(--nd-lh-relaxed);
  margin-bottom: var(--nd-s2);
}

.nd-story__text p:last-child {
  margin-bottom: 0;
}

@keyframes nd-story-open {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0);    }
}


/* -------------------------------------------------------------
   WERTE-LISTE (innerhalb details)
------------------------------------------------------------- */

.nd-story__values {
  list-style:  none;
  margin:      var(--nd-s3) 0 0;
  padding:     0;
  animation:   nd-story-open 0.22s ease both;
  display:     flex;
  flex-direction: column;
  gap:         10px;
}

.nd-story__values li {
  font-size:   var(--nd-text-sm);
  color:       var(--nd-text-muted);
  line-height: var(--nd-lh-relaxed);
  padding-left: var(--nd-s3);
  position:    relative;
}

.nd-story__values li::before {
  content:    '';
  position:   absolute;
  left:       0;
  top:        9px;
  width:      6px;
  height:     6px;
  border-radius: 50%;
  background: var(--nd-green-light);
}

.nd-story__values-label {
  font-weight: 700;
  color:       var(--nd-text-main);
  margin-right: 4px;
}


/* -------------------------------------------------------------
   EXPERT-CARD
------------------------------------------------------------- */

.nd-expert-card {
  display:       flex;
  align-items:   center;
  gap:           var(--nd-s3);
  background:    var(--nd-off-white);
  border:        1.5px solid var(--nd-border);
  border-radius: var(--nd-r-lg);
  padding:       var(--nd-s3) var(--nd-s4);
  margin:        var(--nd-s4) 0;
}

.nd-expert-card__avatar {
  flex-shrink: 0;
  width:       64px;
  height:      64px;
  border-radius: 50%;
  overflow:    hidden;
  border:      2px solid var(--nd-cream-dark);
}

.nd-expert-card__avatar img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  display:    block;
}

.nd-expert-card__name {
  font-family:   var(--nd-font-head);
  font-size:     var(--nd-text-base);
  font-weight:   700;
  color:         var(--nd-text-main);
  margin:        0 0 4px;
  line-height:   1.2;
}

.nd-expert-card__bio {
  font-size:   var(--nd-text-xs);
  color:       var(--nd-text-muted);
  line-height: var(--nd-lh-relaxed);
  margin:      0;
}

/* nd-brand ist bereits global definiert, nur zur Sicherheit */
.nd-brand {
  font-family: var(--nd-font-deco);
  color:       var(--nd-green-dark);
  font-style:  italic;
}


/* -------------------------------------------------------------
   PARTNER-HINWEIS
------------------------------------------------------------- */

.nd-story__partner {
  font-size:   var(--nd-text-sm);
  color:       var(--nd-text-muted);
  line-height: var(--nd-lh-relaxed);
  margin:      0;
}

.nd-story__partner strong {
  color:       var(--nd-text-main);
  font-weight: 700;
}
.cz_post_content ul.nd-story__values{
    list-style: none !important;
    margin: 20px 0 30px 0;
    margin-inline-start: 10px;
}

/* CF */
.sb-accept {
    font-size: 15px;
    line-height: 17px;
}

.sb-accept .wpcf7-acceptance .wpcf7-list-item label {
    display: table;
}

.sb-accept .wpcf7-acceptance .wpcf7-list-item-label:before {
    content: '';
    background: url(./images/checkbox.svg) no-repeat;
    display: table-cell;
    background-size: contain;
    vertical-align: middle;
    width: 26px;
    height: 26px;
    padding: 2px;
    margin-right: 10px;
    text-align: center;
}

.sb-accept .wpcf7-acceptance input[type="checkbox"]:checked+span:before {
    background: url(./images/check.svg) no-repeat;
    width: 26px;
    height: 26px;
    padding: 2px;
    background-size: contain;
}

.sb-accept .wpcf7-acceptance label {
    margin: 0 !important;
}

.sb-accept input[type=checkbox] {
    display: none !important;
}

/* END CF */

.nd-scope .cz_acc_child{
    font-size: var(--nd-text-base) !important;
}

/* =============================================================
   natürlich drauf – Termine & Verkaufsorte
   Abhängigkeit: nd-foundation.css
   ============================================================= */


/* -------------------------------------------------------------
   LISTE
------------------------------------------------------------- */

.nd-events {
  display:        flex;
  flex-direction: column;
  gap:            var(--nd-s2);
}


/* -------------------------------------------------------------
   KACHEL
------------------------------------------------------------- */

.nd-event-card {
  display:       flex;
  align-items:   flex-start;
  gap:           var(--nd-s3);
  background:    var(--nd-off-white);
  border:        1.5px solid var(--nd-border);
  border-radius: var(--nd-r-lg);
  padding:       var(--nd-s3) var(--nd-s4);
  transition:    border-color var(--nd-trans),
                 box-shadow   var(--nd-trans),
                 transform    var(--nd-trans);
}

.nd-event-card:hover {
  border-color: var(--nd-green-light);
  box-shadow:   var(--nd-sh-card);
  transform:    translateY(-2px);
}


/* -------------------------------------------------------------
   DATUM-BADGE – links
------------------------------------------------------------- */

.nd-event-card__date {
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  justify-content: center;
  flex-shrink:     0;
  width:           52px;
  height:          52px;
  background:      var(--nd-grad-green);
  border-radius:   var(--nd-r-md);
  line-height:     1;
  text-align:      center;
}

.nd-event-card__day {
  display:     block;
  font-family: var(--nd-font-head);
  font-size:   var(--nd-text-lg);
  font-weight: 700;
  color:       #ffffff;
  line-height: 1;
}

.nd-event-card__month {
  display:        block;
  font-family:    var(--nd-font-body);
  font-size:      var(--nd-text-2xs);
  font-weight:    700;
  color:          rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: var(--nd-ls-wider);
  margin-top:     2px;
}


/* -------------------------------------------------------------
   CONTENT – rechts
------------------------------------------------------------- */

.nd-event-card__body {
  flex: 1;
  min-width: 0;
}

.nd-event-card__title {
  font-family:   var(--nd-font-head);
  font-size:     var(--nd-text-base);
  font-weight:   700;
  color:         var(--nd-text-main);
  margin:        0 0 var(--nd-s1);
  line-height:   1.25;
}

.nd-event-card__meta {
  display:        flex;
  flex-direction: column;
  gap:            4px;
}

.nd-event-card__meta-item {
  display:     flex;
  align-items: flex-start;
  gap:         6px;
  font-size:   var(--nd-text-xs);
  color:       var(--nd-text-muted);
  line-height: 1.4;
}

.nd-event-card__meta-item svg {
  width:       14px;
  height:      14px;
  flex-shrink: 0;
  color:       var(--nd-green-dark);
  margin-top:  1px;
}


/* -------------------------------------------------------------
   RESPONSIVE
------------------------------------------------------------- */

@media (max-width: 480px) {
  .nd-event-card {
    flex-direction: column;
    align-items:    flex-start;
    gap:            var(--nd-s2);
  }
}
.icon_footer_2_center_8,
.menu_footer_2_center_7,
.menu_footer_2_center_5, 
.icon_footer_2_center_6{
  float: unset !important;
}
.icon_footer_2_center_6{
  text-align: center;
}

/* =============================================================
   natürlich drauf – Real Cookie Banner Buttons
   Selektor: a[role="button"] – keine Plugin-Klassen.
   Reihenfolge im Banner:
     1. Alle akzeptieren  (nth-child 1)
     2. Nur Essenzielles  (nth-child 2)
     3. Individuell       (nth-child 3)
   → Zahlen anpassen falls Plugin andere Reihenfolge ausgibt.
   ============================================================= */


/* -------------------------------------------------------------
   BASIS – alle Cookie-Buttons
------------------------------------------------------------- */

#a2558-ext-0-253 a[role="button"] {
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  font-family:     var(--nd-font-body);
  font-size:       var(--nd-text-xs);
  font-weight:     700;
  letter-spacing:  var(--nd-ls-wide);
  border-radius:   var(--nd-r-pill);
  border:          2px solid transparent;
  padding:         11px 22px;
  cursor:          pointer;
  text-decoration: none;
  line-height:     1;
  transition:      background   var(--nd-trans),
                   border-color var(--nd-trans),
                   color        var(--nd-trans),
                   transform    var(--nd-trans),
                   box-shadow   var(--nd-trans) !important;
}

a[role="button"]:hover {
  transform: translateY(-2px);
}
/* =============================================================
   natürlich drauf – Kontakt Details
   ============================================================= */

.contact__details {
  display:        flex;
  flex-direction: column;
  gap:            var(--nd-s3);
  background:     rgba(255, 255, 255, 0.7);
  border:         1.5px solid var(--nd-border);
  border-radius:  var(--nd-r-xl);
  padding:        var(--nd-s4);
}

.contact__detail {
  display:     flex;
  align-items: center;
  gap:         var(--nd-s3);
}

.cd-icon {
  display:         flex;
  align-items:     center;
  justify-content: center;
  flex-shrink:     0;
  width:           44px;
  height:          44px;
  background:      rgba(143, 192, 69, 0.12);
  border-radius:   var(--nd-r-md);
  color:           var(--nd-green-dark);
}

.cd-icon svg {
  width:  20px;
  height: 20px;
}

.contact__detail span,
.contact__detail a {
  font-family:     var(--nd-font-body);
  font-size:       var(--nd-text-base);
  color:           var(--nd-text-muted);
  line-height:     1.4;
  text-decoration: none;
}

.contact__detail strong {
  font-weight: 700;
  color:       var(--nd-text-main);
}

@media (hover: hover) and (pointer: fine) {
  .contact__detail a:hover {
    color:                 var(--nd-green-dark);
    text-decoration:       underline;
    text-underline-offset: 2px;
  }
}
/* Topping-Queen: kompakte Preisboxen für Erdbeere + Mango */
.nd-tq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--nd-s2);
  padding: var(--nd-s2) var(--nd-s4);
  background: var(--nd-off-white);
  border-bottom: 1px solid var(--nd-border);
}

.nd-tq-box {
  overflow: hidden;
  border: 1px solid var(--nd-border);
  border-radius: var(--nd-r-md);
  background: rgba(255, 255, 255, 0.42);
}

.nd-tq-box__head {
  padding: 10px 12px;
  background: rgba(143, 192, 69, 0.1);
  border-bottom: 1px solid var(--nd-border);
}

.nd-tq-box--mango .nd-tq-box__head {
  background: linear-gradient(
    135deg,
    rgba(198, 163, 89, 0.22),
    rgba(143, 192, 69, 0.1)
  );
}

.nd-tq-box__title {
  margin: 0;
  font-family: var(--nd-font-head);
  font-size: var(--nd-text-sm);
  font-weight: 700;
  line-height: 1.25;
  color: var(--nd-text-main);
}

.nd-tq-box__rows {
  display: flex;
  flex-direction: column;
}

.nd-tq-row {
  display: grid;
  grid-template-columns: minmax(62px, 0.8fr) minmax(92px, 1.2fr);
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-top: 1px solid var(--nd-border);
}

.nd-tq-row:first-child {
  border-top: 0;
}

.nd-tq-row__size {
  font-size: var(--nd-text-xs);
  font-weight: 700;
  color: var(--nd-text-main);
  line-height: 1.25;
}

.nd-tq-row__price {
  text-align: right;
}

.nd-tq-row.is-highlight {
  background: rgba(143, 192, 69, 0.08);
}

.nd-tq-row.is-highlight .nd-tq-row__size,
.nd-tq-row.is-highlight .nd-price-main {
  color: var(--nd-green-dark);
}

@media (max-width: 520px) {
  .nd-tq-grid {
    grid-template-columns: 1fr;
    padding: var(--nd-s2);
  }

  .nd-tq-row {
    grid-template-columns: minmax(70px, 0.8fr) minmax(100px, 1.2fr);
  }
}

@media (max-width: 360px) {
  .nd-tq-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .nd-tq-row__price {
    text-align: left;
  }
}
/* Preisbereich: sinnvoller Zusatzraum in der Basis-Sorten-Card */
.nd-price-helper {
  margin-top: auto;
  padding: var(--nd-s3) var(--nd-s4);
  background:
    linear-gradient(
      135deg,
      rgba(143, 192, 69, 0.10),
      rgba(198, 163, 89, 0.10)
    );
  border-top: 1px solid var(--nd-border);
}

.nd-price-helper__eyebrow {
  margin-bottom: 10px;
  font-family: var(--nd-font-head);
  font-size: var(--nd-text-xs);
  font-weight: 700;
  color: var(--nd-green-dark);
  letter-spacing: var(--nd-ls-wide);
  text-transform: uppercase;
}

.nd-price-helper__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.nd-price-helper__item {
  padding: 12px 13px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid var(--nd-border);
  border-radius: var(--nd-r-md);
}

.nd-price-helper__item strong {
  display: block;
  margin-bottom: 3px;
  font-family: var(--nd-font-head);
  font-size: var(--nd-text-sm);
  font-weight: 700;
  line-height: 1.2;
  color: var(--nd-text-main);
}

.nd-price-helper__item span {
  display: block;
  font-size: var(--nd-text-2xs);
  line-height: 1.35;
  color: var(--nd-text-muted);
}

@media (max-width: 900px) {
  .nd-price-helper__grid {
    grid-template-columns: 1fr;
  }
}
/* Fix: Topping-Queen Boxen laufen zwischen 680px und 920px nicht mehr aus dem View */
@media (min-width: 681px) and (max-width: 920px) {

  .nd-tq-grid {
    grid-template-columns: 1fr;
    gap: var(--nd-s2);
    padding: var(--nd-s2) var(--nd-s3);
  }

  .nd-tq-box {
    width: 100%;
    min-width: 0;
  }

  .nd-tq-row {
    grid-template-columns: minmax(70px, 0.8fr) minmax(115px, 1.2fr);
    gap: 8px;
    padding: 10px 12px;
  }

  .nd-tq-row__size,
  .nd-tq-row__price,
  .nd-price-main,
  .nd-per100 {
    min-width: 0;
  }

  .nd-tq-row__price {
    overflow-wrap: normal;
    word-break: normal;
  }

  .nd-tq-box__title {
    font-size: var(--nd-text-xs);
    line-height: 1.25;
  }

  .nd-price-main {
    font-size: var(--nd-text-sm);
  }

  .nd-per100 {
    font-size: var(--nd-text-2xs);
    white-space: nowrap;
  }
}

/* Varianten-Grid: 7. Produkt auf Desktop als breite Highlight-Karte */
@media (min-width: 901px) {
  .nd-variants-grid .nd-vcard:nth-child(7) {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 2fr);
    align-items: stretch;
  }

  .nd-variants-grid .nd-vcard:nth-child(7) .nd-vcard__label {
    min-height: 100%;
    padding: var(--nd-s4);
  }

  .nd-variants-grid .nd-vcard:nth-child(7) .nd-vcard__body {
    padding: var(--nd-s4);
  }

  .nd-variants-grid .nd-vcard:nth-child(7) .nd-vcard__desc {
    max-width: 680px;
  }

  .nd-variants-grid .nd-vcard:nth-child(7) .nd-chips {
    max-width: 760px;
  }
}

/* Mobile: Produktkarten horizontal wischbar statt langer Scroll-Liste */
@media (max-width: 680px) {
  .nd-variants-grid {
    display: flex;
    gap: var(--nd-s3);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 var(--nd-s3) var(--nd-s3);
    margin-left: calc(var(--nd-s3) * -1);
    margin-right: calc(var(--nd-s3) * -1);
  }

  .nd-variants-grid .nd-vcard {
    flex: 0 0 82%;
    max-width: 360px;
    scroll-snap-align: start;
  }

  .nd-variants-grid .nd-vcard__label {
    padding: var(--nd-s3);
  }

  .nd-variants-grid .nd-vcard__oval {
    width: 190px;
    height: 76px;
  }

  .nd-vcard__body {
    padding: var(--nd-s3);
  }

  .nd-vcard__desc {
    font-size: var(--nd-text-xs);
    line-height: 1.55;
  }

  .nd-chip {
    font-size: var(--nd-text-2xs);
    padding: 4px 10px;
  }

  .nd-nutri-toggle {
    margin-top: var(--nd-s3);
  }
}

.nd-mobile-swipe-hint {
  display: none;
}

@media (max-width: 680px) {
  .nd-variants-grid{
    padding-top: 10px;
  }
  .nd-mobile-swipe-hint {
    display: block;
    margin: 0 0 var(--nd-s2);
    font-size: var(--nd-text-xs);
    font-style: italic;
    color: var(--nd-text-muted);
    text-align: center;
  }
}
/* Mobile Swipe-Scrollbar farblich an Website-Grün anpassen */
@media (max-width: 680px) {
  .nd-variants-grid {
    scrollbar-color: var(--nd-green-light) rgba(143, 192, 69, 0.16);
    scrollbar-width: thin;
  }

  .nd-variants-grid::-webkit-scrollbar {
    height: 8px;
  }

  .nd-variants-grid::-webkit-scrollbar-track {
    background: rgba(143, 192, 69, 0.16);
    border-radius: var(--nd-r-pill);
  }

  .nd-variants-grid::-webkit-scrollbar-thumb {
    background: var(--nd-grad-green);
    border-radius: var(--nd-r-pill);
  }

  .nd-variants-grid::-webkit-scrollbar-thumb:hover {
    background: var(--nd-green-dark);
  }
}
.nd-btn-primary-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 28px !important;
  font-family:var(--nd-font-body);
  font-size:var(--nd-text-sm);
  font-weight:700;
  letter-spacing:var(--nd-ls-wide);
  line-height:1;
  text-decoration:none;
  white-space:nowrap;
  border-radius:var(--nd-r-pill);
  background:var(--nd-grad-green);
  color:var(--nd-white);
  border:2px solid transparent;
  box-shadow:var(--nd-sh-btn);
  transition:background var(--nd-trans),border-color var(--nd-trans),color var(--nd-trans),transform var(--nd-trans),box-shadow var(--nd-trans);
}

.nd-btn-primary-link:hover,
.nd-btn-primary-link:focus-visible{
  background:var(--nd-grad-green-h);
  color:var(--nd-white);
  border-color:transparent;
  transform:translateY(-2px);
  box-shadow:0 6px 22px rgba(101,134,51,.45);
}

.nd-btn-primary-link:focus-visible{
  outline:3px solid var(--nd-green-light);
  outline-offset:3px;
}
.page-id-739 .elms_shop_cart,
.woocommerce-cart .elms_shop_cart{
  display: none !important;
}
.wp-block-woocommerce-checkout .wc-block-components-order-meta .nd-small-business-order-total-note{
    padding: 16px 10px;
}


/* =============================================================
   RECHTSTEXTE – AGB & WIDERRUFSBELEHRUNG
   Verwendet die Klassen aus den Elementor-HTML-Fragmenten.
   ============================================================= */

.nd-legal-content {
  box-sizing: border-box;
  width: min(100%, 840px);
  margin: clamp(28px, 5vw, 64px) auto;
  padding: clamp(24px, 4.5vw, 52px);
  border: 1px solid rgba(88, 81, 75, 0.12);
  border-radius: var(--nd-r-xl, 32px);
  background:
    linear-gradient(155deg, rgba(239, 236, 191, 0.22), transparent 34%),
    #fffdf8;
  box-shadow: 0 14px 44px rgba(88, 81, 75, 0.09);
  color: var(--nd-text-main, #58514b);
  font-family: var(--nd-font-body, "Helvetica Neue", Helvetica, Arial, sans-serif);
  font-size: clamp(1rem, 0.3vw + 0.94rem, 1.0625rem);
  line-height: 1.72;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.nd-legal-content > :first-child,
.nd-legal-section > :first-child {
  margin-top: 0;
}

.nd-legal-content > :last-child,
.nd-legal-section > :last-child {
  margin-bottom: 0;
}

.nd-legal-content p {
  margin: 0 0 1.05em;
}

.nd-legal-content strong {
  color: var(--nd-brown, #58514b);
}

.nd-legal-intro {
  margin-bottom: clamp(24px, 4vw, 36px) !important;
  padding: 16px 18px;
  border-left: 3px solid var(--nd-green-dark, #658633);
  border-radius: 0 var(--nd-r-md, 16px) var(--nd-r-md, 16px) 0;
  background: rgba(239, 236, 191, 0.42);
  color: var(--nd-text-main, #58514b);
  font-size: 1.05em;
}

.nd-legal-version {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 clamp(24px, 4vw, 38px) !important;
}

.nd-legal-version small {
  display: inline-flex;
  padding: 6px 12px;
  border: 1px solid rgba(101, 134, 51, 0.2);
  border-radius: var(--nd-r-pill, 100px);
  background: rgba(143, 192, 69, 0.08);
  color: var(--nd-text-muted, #7a7068);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.25;
}

.nd-legal-section {
  scroll-margin-top: 96px;
}

.nd-legal-section + .nd-legal-section {
  margin-top: clamp(30px, 5vw, 48px);
  padding-top: clamp(28px, 4vw, 40px);
  border-top: 1px solid rgba(88, 81, 75, 0.14);
}

.nd-legal-content .nd-legal-section h2 {
  margin: 0 0 20px;
  color: var(--nd-brown, #58514b);
  font-family: var(--nd-font-head, "Helvetica Rounded", "Helvetica Neue", Helvetica, Arial, sans-serif);
  font-size: clamp(1.35rem, 1.25vw + 1rem, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.28;
}

.nd-legal-content .nd-legal-section h2::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  margin-top: 12px;
  border-radius: 3px;
  background: var(--nd-grad-green, linear-gradient(135deg, #8fc045, #658633));
}

.nd-legal-content ul,
.nd-legal-content ol {
  margin: 0 0 1.25em;
  padding-inline-start: 1.35em;
}

.nd-legal-content li {
  padding-inline-start: 0.25em;
}

.nd-legal-content li + li {
  margin-top: 0.45em;
}

.nd-legal-content li::marker {
  color: var(--nd-green-dark, #658633);
}

.nd-legal-content address {
  margin: 20px 0;
  padding: clamp(16px, 3vw, 22px);
  border: 1px solid rgba(101, 134, 51, 0.2);
  border-radius: var(--nd-r-md, 16px);
  background: rgba(248, 246, 232, 0.82);
  color: var(--nd-text-main, #58514b);
  font-style: normal;
  line-height: 1.7;
}

.nd-legal-content a {
  color: var(--nd-green-dark, #658633);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgba(101, 134, 51, 0.42);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.nd-legal-content a:focus-visible {
  outline: 3px solid var(--nd-green-light, #8fc045);
  outline-offset: 3px;
  border-radius: 3px;
}

.nd-withdrawal-form {
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(198, 163, 89, 0.42) !important;
  border-radius: var(--nd-r-lg, 24px);
  background:
    linear-gradient(145deg, rgba(239, 236, 191, 0.46), rgba(248, 246, 232, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.nd-withdrawal-form p[aria-label] {
  min-height: 2rem;
  margin: 4px 0 18px;
  overflow: hidden;
  border-bottom: 1px solid rgba(88, 81, 75, 0.32);
  color: transparent;
  line-height: 1;
  white-space: nowrap;
  user-select: none;
}

@media (hover: hover) and (pointer: fine) {
  .nd-legal-content a:hover {
    color: #496523;
    text-decoration-color: currentColor;
  }
}

@media (max-width: 768px) {
  .nd-legal-content {
    width: 100%;
    margin: 20px auto 32px;
    padding: 22px 18px 28px;
    border-radius: var(--nd-r-lg, 24px);
    font-size: 1rem;
    line-height: 1.68;
  }

  .nd-legal-version {
    justify-content: flex-start;
  }

  .nd-legal-section + .nd-legal-section {
    margin-top: 30px;
    padding-top: 28px;
  }

  .nd-withdrawal-form {
    margin-inline: -4px;
    padding: 20px 16px;
    border-radius: var(--nd-r-md, 16px);
  }
}

/* =============================================================
   DESKTOP-SHOP-SCHNELLZUGRIFF
   Wird per JavaScript nach 100px Scrollweg eingeblendet.
   ============================================================= */

.nd-desktop-shop-float {
  display: none;
}

@media (min-width: 769px) {
  .nd-desktop-shop-float {
    box-sizing: border-box;
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 880;
    display: inline-flex;
    width: 50px;
    min-width: 50px;
    min-height: 116px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 9px;
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-right: 0;
    border-radius: 18px 0 0 18px;
    background: var(--nd-grad-green, linear-gradient(135deg, #8fc045, #658633));
    box-shadow: -8px 10px 28px rgba(73, 101, 35, 0.3);
    color: #fff !important;
    font-family: var(--nd-font-body, "Helvetica Neue", Helvetica, Arial, sans-serif);
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1;
    text-decoration: none !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(calc(100% + 4px), -50%, 0);
    transition:
      opacity 0.22s var(--nd-ease, ease),
      visibility 0.22s var(--nd-ease, ease),
      transform 0.24s var(--nd-ease, ease),
      background 0.22s var(--nd-ease, ease),
      box-shadow 0.22s var(--nd-ease, ease);
    will-change: transform, opacity;
  }

  .nd-desktop-shop-float.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, -50%, 0);
  }

  .nd-desktop-shop-float svg {
    width: 21px;
    height: 21px;
    flex: 0 0 auto;
  }

  .nd-desktop-shop-float span {
    display: block;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }

  .nd-desktop-shop-float:focus-visible {
    outline: 3px solid var(--nd-gold, #c6a359);
    outline-offset: -5px;
  }
}

@media (hover: hover) and (pointer: fine) and (min-width: 769px) {
  .nd-desktop-shop-float.is-visible:hover {
    background: linear-gradient(135deg, #7ba638, #496523);
    box-shadow: -10px 12px 32px rgba(73, 101, 35, 0.4);
    transform: translate3d(0, -50%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nd-desktop-shop-float {
    transition: none;
  }
}

@media (forced-colors: active) {
  .nd-legal-content,
  .nd-legal-content address,
  .nd-withdrawal-form,
  .nd-desktop-shop-float {
    border: 1px solid CanvasText;
  }

  .nd-desktop-shop-float {
    background: ButtonFace;
    color: ButtonText !important;
  }
}

@media print {
  .nd-legal-content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    color: #000;
    font-size: 11pt;
  }

  .nd-legal-section,
  .nd-withdrawal-form {
    break-inside: avoid-page;
  }

  .nd-desktop-shop-float {
    display: none !important;
  }
}

/* -------------------------------------------------------------
   Sortenübersicht: eindeutiger Link zur jeweiligen Produktseite
------------------------------------------------------------- */
.nd-vcard__shop {
  display: flex;
  margin-top: var(--nd-s3);
  padding-top: var(--nd-s3);
  border-top: 1px solid var(--nd-border);
}

.nd-vcard__shop-link {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 46px;
  padding: 11px 17px;
  border: 2px solid transparent;
  border-radius: var(--nd-r-pill);
  background: var(--nd-grad-green);
  color: var(--nd-white) !important;
  box-shadow: 0 4px 14px rgba(101, 134, 51, 0.28);
  font-family: var(--nd-font-body);
  font-size: var(--nd-text-sm);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: var(--nd-ls-wide);
  text-decoration: none !important;
  cursor: pointer;
  transition:
    background var(--nd-trans),
    box-shadow var(--nd-trans),
    transform var(--nd-trans);
}

.nd-vcard__shop-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  transition: transform var(--nd-trans);
}

.nd-vcard__shop-link:focus-visible {
  outline: 3px solid var(--nd-gold);
  outline-offset: 3px;
}

@media (min-width: 901px) {
  .nd-variants-grid .nd-vcard:nth-child(7) .nd-vcard__shop {
    justify-content: flex-start;
  }

  .nd-variants-grid .nd-vcard:nth-child(7) .nd-vcard__shop-link {
    max-width: 280px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .nd-vcard__shop-link:hover {
    background: var(--nd-grad-green-h);
    box-shadow: 0 6px 20px rgba(101, 134, 51, 0.38);
    transform: translateY(-2px);
  }

  .nd-vcard__shop-link:hover svg {
    transform: translateX(3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nd-vcard__shop-link,
  .nd-vcard__shop-link svg {
    transition: none;
  }

  .nd-vcard__shop-link:hover,
  .nd-vcard__shop-link:hover svg {
    transform: none;
  }
}

@media (forced-colors: active) {
  .nd-vcard__shop-link {
    border-color: ButtonText;
    background: ButtonFace;
    color: ButtonText !important;
  }
}
