/*
 * Crevio Theme – theme.css
 * Alle Basis-Styles. WooCommerce-spezifisches in woocommerce.css
 */

/* ─── RESET & VARIABLES ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --sand:   #F4EDE0;
    --teal:   #003D4F;
    --orange: #FF5500;
    --sky:    #D6EFF5;
    --stone:  #7A7268;
    --white:  #FDFCF9;
    --border: rgba(0,61,79,.09);
    --r: 16px;
    --rs: 8px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    background: var(--white);
    color: var(--teal);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ─── HOVER ANIMATIONS ─── */

/* Nav-Links: Unterstrich-Slide */
.nav-links a {
    position: relative;
    padding-bottom: 3px;
}
.nav-links a::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 0; height: 1.5px;
    background: rgba(255,255,255,.60);
    transition: width .25s ease;
}
.nav-links a:hover::after { width: 100%; }

/* Logo: leichter Farb-Pulse */
.logo { transition: opacity .2s; }
.logo:hover { opacity: .85; }

/* Warenkorb-Button: Bounce */
.nav-cart { transition: transform .2s, opacity .2s; }
.nav-cart:hover { transform: translateY(-2px); opacity: .92; }

/* Hero Buttons */
.btn-fill  { transition: background .18s, transform .18s, box-shadow .18s; }
.btn-fill:hover  { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,61,79,.20); }
.btn-outline { transition: border-color .2s, transform .18s; }
.btn-outline:hover { transform: translateY(-2px); }

/* Feature-List Icons: Wackeln bei Hover */
.feature-list li { transition: transform .2s; }
.feature-list li:hover { transform: translateX(5px); }
.feat-icon { transition: transform .25s, background .2s; }
.feature-list li:hover .feat-icon { transform: rotate(-8deg) scale(1.1); background: var(--sky); }

/* Produktkarten */
.p-card { transition: transform .28s cubic-bezier(.22,.68,0,1.2), box-shadow .28s; }
.p-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0,61,79,.12);
}
.p-img img { transition: transform .5s ease; }
.p-card:hover .p-img img { transform: scale(1.06); }

/* Warenkorb-Button auf Produktkarte */
.btn-cart-p, .add-to-cart-btn {
    transition: background .18s, transform .15s, box-shadow .18s;
}
.btn-cart-p:hover, .add-to-cart-btn:hover {
    background: var(--orange);
    transform: scale(1.04);
    box-shadow: 0 4px 16px rgba(255,85,0,.25);
}

/* Wishlist-Herz */
.p-fav { transition: transform .2s, color .2s; }
.p-fav:hover { transform: scale(1.22) rotate(-8deg); }

/* About-Bild: sanfter Zoom */
.about-img img { transition: transform .6s ease; }
.about-img:hover img { transform: scale(1.03); }

/* Testimonial-Karten */
.testi { transition: transform .25s, box-shadow .25s; }
.testi:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,61,79,.08); }
.testi--featured:hover { box-shadow: 0 12px 36px rgba(0,61,79,.25); }

/* Steps: Nummer leuchtet bei Hover */
.step { transition: padding-left .2s; }
.step:hover { padding-left: 8px; }
.step-n { transition: color .25s; }
.step:hover .step-n { color: rgba(0,196,232,.35); }

/* FAQ: Icon-Rotation vorbereitet, Zeile hebt sich */
.faq-item { transition: background .2s; }
.faq-item:hover { background: rgba(0,61,79,.02); }
.faq-btn { transition: color .2s; }

/* Footer-Links */
.ft-col a { transition: color .18s, padding-left .18s; }
.ft-col a:hover { padding-left: 4px; }

/* Intro-Strip Zahlen */
.intro-item { transition: background .2s; }
.intro-item:hover { background: rgba(0,61,79,.03); }
.intro-num { transition: transform .2s; }
.intro-item:hover .intro-num { transform: scale(1.05); }

/* Scroll-Reveal: Klassen via JS gesetzt */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ─── TYPOGRAPHY HELPERS ─── */
.eyebrow {
    font-size: 11px; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--orange); margin-bottom: 14px; display: block;
}
.italic { font-style: italic; }

/* ─── BUTTONS ─── */
.btn-fill {
    display: inline-block;
    font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 600;
    background: var(--teal); color: var(--white);
    padding: 14px 30px; border-radius: 100px;
    border: none; cursor: pointer;
    transition: background .18s, transform .15s;
}
.btn-fill:hover { background: #004d63; transform: translateY(-1px); color: var(--white); }

.btn-outline {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 500;
    color: var(--teal); background: transparent;
    padding: 13px 24px; border-radius: 100px;
    border: 1.5px solid rgba(0,61,79,.25);
    cursor: pointer; transition: border-color .2s;
}
.btn-outline:hover { border-color: var(--teal); }

/* ─── HEADER ─── */
.site-header {
    background: var(--teal);
    position: sticky; top: 0; z-index: 200;
    box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.nav {
    display: flex; align-items: center;
    justify-content: space-between;
    height: 64px; gap: 24px;
}
.logo {
    font-family: 'Fraunces', serif;
    font-size: 26px; font-weight: 900;
    color: var(--white); letter-spacing: -.02em;
    flex-shrink: 0;
}
.logo em { font-style: italic; color: #5DCFE8; }
.nav-links {
    display: flex; gap: 32px; list-style: none;
    flex: 1; justify-content: center;
}
.nav-links a {
    font-size: 14px; font-weight: 400;
    color: rgba(255,255,255,.60); transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-cart {
    display: flex; align-items: center; gap: 8px;
    background: var(--orange); color: var(--white);
    font-size: 14px; font-weight: 600;
    padding: 9px 20px; border-radius: 100px;
    border: none; cursor: pointer;
    transition: opacity .2s;
}
.nav-cart:hover { opacity: .88; }
.cart-dot {
    background: var(--white); color: var(--teal);
    width: 20px; height: 20px; border-radius: 50%;
    font-size: 11px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.mobile-menu-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.mobile-menu-toggle span {
    display: block; width: 22px; height: 2px;
    background: rgba(255,255,255,.80); border-radius: 2px;
    transition: transform .25s, opacity .2s;
}
.mobile-menu {
    background: #002b3a;
    border-top: 1px solid rgba(255,255,255,.06);
}
.mobile-menu ul { list-style: none; padding: 12px 28px 20px; }
.mobile-menu li { border-bottom: 1px solid rgba(255,255,255,.06); }
.mobile-menu a {
    display: block; padding: 13px 0;
    font-size: 15px; font-weight: 500;
    color: rgba(255,255,255,.70); transition: color .2s;
}
.mobile-menu a:hover { color: var(--white); }

/* ─── MARQUEE ─── */
.marquee-wrap { background: var(--orange); overflow: hidden; padding: 9px 0; }
.marquee-track {
    display: flex; width: max-content;
    animation: crevio-marquee 22s linear infinite;
}
@keyframes crevio-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
    font-size: 12px; font-weight: 600;
    color: var(--white); white-space: nowrap;
    padding: 0 28px; letter-spacing: .06em; text-transform: uppercase;
    display: flex; align-items: center; gap: 10px;
}
.marquee-item::after { content: '·'; opacity: .5; }

/* ─── HERO ─── */
.hero {
    background: var(--sand);
    position: relative; overflow: hidden;
}
.hero-inner {
    display: grid; grid-template-columns: 55% 1fr;
    align-items: end; min-height: 88vh;
    position: relative; z-index: 2;
}
.hero-content { padding: 80px 0 70px; }
.hero-label {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,61,79,.07);
    border: 1px solid rgba(0,61,79,.12);
    border-radius: 100px;
    padding: 5px 14px 5px 8px;
    font-size: 12px; font-weight: 500;
    color: var(--teal); margin-bottom: 28px;
}
.hero-label span {
    background: var(--orange); color: var(--white);
    font-size: 10px; font-weight: 700; letter-spacing: .05em;
    text-transform: uppercase; padding: 3px 8px; border-radius: 100px;
}
.hero h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(52px, 6vw, 86px);
    font-weight: 900; letter-spacing: -.04em;
    line-height: 1.02; margin-bottom: 22px;
    max-width: 560px;
}
.hero h1 .italic { font-style: italic; color: #1A7A96; }
.hero h1 .under { display: inline-block; position: relative; }
.hero h1 .under::after {
    content: '';
    position: absolute; bottom: -4px; left: 0; right: 0;
    height: 5px; background: var(--orange); border-radius: 3px;
}
.hero-sub {
    font-size: 17px; font-weight: 300; color: var(--stone);
    max-width: 420px; line-height: 1.75; margin-bottom: 38px;
}
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-social { margin-top: 48px; display: flex; align-items: center; gap: 14px; }
.hero-avatars { display: flex; }
.hero-avatars img {
    width: 34px; height: 34px; border-radius: 50%;
    border: 2px solid var(--sand); object-fit: cover;
    margin-left: -10px;
}
.hero-avatars img:first-child { margin-left: 0; }
.hero-social-text { font-size: 13px; color: var(--stone); }
.hero-social-text strong { color: var(--teal); font-weight: 600; }
.hero-img-col {
    align-self: stretch; position: relative; padding-top: 40px;
}
.hero-img-col img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-floater {
    position: absolute; bottom: 36px; left: -24px;
    background: var(--white);
    border-radius: 18px; padding: 14px 18px;
    display: flex; align-items: center; gap: 12px;
    box-shadow: 0 8px 32px rgba(0,61,79,.12);
    white-space: nowrap;
}
.floater-num {
    font-family: 'Fraunces', serif;
    font-size: 28px; font-weight: 900;
    color: var(--orange); line-height: 1;
}
.floater-label { font-size: 11px; color: var(--stone); line-height: 1.5; }
.floater-label strong { display: block; font-size: 13px; color: var(--teal); font-weight: 600; }

/* ─── INTRO STRIP ─── */
.intro-strip { background: var(--white); border-bottom: 1px solid var(--border); padding: 40px 0; }
.intro-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.intro-item {
    padding: 4px 36px; border-right: 1px solid var(--border); text-align: center;
}
.intro-item:first-child { padding-left: 0; }
.intro-item:last-child { border-right: none; padding-right: 0; }
.intro-num {
    font-family: 'Fraunces', serif;
    font-size: 38px; font-weight: 900; color: var(--teal); line-height: 1;
}
.intro-num span { font-style: italic; color: var(--orange); }
.intro-label { font-size: 13px; color: var(--stone); margin-top: 4px; }

/* ─── ABOUT ─── */
.about { background: var(--sand); padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img {
    border-radius: 24px; overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 20px 20px 0 var(--sky);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-content h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(34px, 3.5vw, 50px); font-weight: 800;
    letter-spacing: -.03em; line-height: 1.12; margin-bottom: 16px;
}
.about-content > p { font-size: 16px; color: var(--stone); line-height: 1.8; margin-bottom: 36px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feat-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: var(--white); border-radius: 10px;
    display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.feat-text strong { display: block; font-size: 15px; font-weight: 600; color: var(--teal); margin-bottom: 2px; }
.feat-text span { font-size: 13px; color: var(--stone); }

/* ─── PRODUCTS ─── */
.products { background: var(--white); padding: 100px 0; }
.section-head {
    display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px;
}
.section-head h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(34px, 3.5vw, 50px); font-weight: 800;
    letter-spacing: -.03em; line-height: 1.1;
}
.section-head a {
    font-size: 14px; font-weight: 600; color: var(--teal);
    border-bottom: 1.5px solid rgba(0,61,79,.3); padding-bottom: 2px;
    transition: border-color .2s; white-space: nowrap; margin-bottom: 6px;
}
.section-head a:hover { border-color: var(--teal); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.p-card {
    border-radius: var(--r); overflow: hidden;
    border: 1px solid var(--border); background: var(--white);
    transition: transform .25s;
}
.p-card:hover { transform: translateY(-5px); }
.p-img {
    position: relative; aspect-ratio: 1; overflow: hidden; background: var(--sand);
}
.p-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.p-card:hover .p-img img { transform: scale(1.04); }
.p-badge {
    position: absolute; top: 14px; left: 14px;
    font-size: 11px; font-weight: 700; letter-spacing: .05em;
    text-transform: uppercase; padding: 4px 10px; border-radius: 100px;
}
.badge-s { background: var(--orange); color: var(--white); }
.badge-b { background: var(--teal); color: var(--white); }
.badge-n { background: var(--sky); color: var(--teal); }
.p-fav {
    position: absolute; top: 12px; right: 12px;
    width: 36px; height: 36px;
    background: rgba(253,252,249,.92); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px; cursor: pointer;
    transition: transform .18s; border: none;
}
.p-fav:hover { transform: scale(1.15); }
.p-body { padding: 18px 18px 20px; }
.p-meta { font-size: 11px; font-weight: 500; color: var(--stone); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 5px; }
.p-name {
    font-family: 'Fraunces', serif; font-size: 18px; font-weight: 700; margin-bottom: 6px;
}
.p-name a { color: var(--teal); transition: color .2s; }
.p-name a:hover { color: var(--orange); }
.p-stars { font-size: 12px; color: #E8A020; margin-bottom: 14px; }
.p-stars span { color: var(--stone); }
.p-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 14px; border-top: 1px solid var(--border);
    gap: 10px; flex-wrap: wrap;
}

/* WooCommerce Preis-HTML korrekt stylen */
.p-price-wrap { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px; }
.p-price-wrap .woocommerce-Price-amount { font-family: 'Fraunces', serif; font-size: 21px; font-weight: 800; color: var(--teal); }
.p-price-wrap ins { text-decoration: none; }
.p-price-wrap ins .woocommerce-Price-amount { color: var(--teal); }
.p-price-wrap del { display: inline-block; }
.p-price-wrap del .woocommerce-Price-amount { font-size: 13px !important; font-weight: 400; color: var(--stone); text-decoration: line-through; }
.p-price-wrap .screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* Fallback für normalen Preis ohne Sale */
.p-price-wrap > .woocommerce-Price-amount { font-family: 'Fraunces', serif; font-size: 21px; font-weight: 800; }

.btn-cart-p, .add-to-cart-btn {
    font-size: 13px; font-weight: 600; font-family: 'Outfit', sans-serif;
    background: var(--teal); color: var(--white);
    padding: 9px 18px; border-radius: 100px;
    border: none; cursor: pointer; transition: background .18s;
    display: inline-block; text-align: center;
}
.btn-cart-p:hover, .add-to-cart-btn:hover { background: var(--orange); color: var(--white); }
.out-of-stock-badge {
    font-size: 12px; color: var(--stone); font-weight: 500;
    padding: 8px 14px; border: 1px solid var(--border); border-radius: 100px;
}
.no-products, .woo-missing {
    text-align: center; color: var(--stone); font-size: 16px;
    padding: 40px; background: var(--sand); border-radius: var(--r);
}

/* ─── HOW IT WORKS ─── */
.how { background: var(--teal); padding: 100px 0; position: relative; overflow: hidden; }
.how::before {
    content: ''; position: absolute; top: -120px; right: -120px;
    width: 400px; height: 400px; border-radius: 50%;
    background: rgba(255,255,255,.03);
}
.how .eyebrow { color: #5DCFE8; }
.how-head h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(36px, 3.5vw, 52px); font-weight: 800;
    letter-spacing: -.03em; color: var(--white); margin-bottom: 12px;
}
.how-head p { font-size: 16px; color: rgba(255,255,255,.50); }
.how-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 60px; }
.how-steps { display: flex; flex-direction: column; }
.step {
    display: flex; gap: 24px;
    padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.step:last-child { border-bottom: none; padding-bottom: 0; }
.step-n {
    font-family: 'Fraunces', serif;
    font-size: 42px; font-weight: 900; font-style: italic;
    color: rgba(255,255,255,.12); line-height: 1; min-width: 40px;
}
.step-body h3 {
    font-family: 'Fraunces', serif;
    font-size: 20px; font-weight: 700;
    color: var(--white); margin-bottom: 6px;
}
.step-body p { font-size: 14px; color: rgba(255,255,255,.50); line-height: 1.75; }
.how-img {
    border-radius: 24px; overflow: hidden; aspect-ratio: 3/4;
    border: 1px solid rgba(255,255,255,.10);
}
.how-img img { width: 100%; height: 100%; object-fit: cover; }

/* ─── TESTIMONIALS ─── */
.testimonials { background: var(--sand); padding: 100px 0; }
.testi-grid { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 20px; align-items: start; }
.testi {
    background: var(--white); border-radius: var(--r);
    padding: 28px; border: 1px solid var(--border);
}
.testi--featured {
    background: var(--teal); border-color: transparent; margin-top: -16px;
}
.testi-rating { font-size: 15px; color: #E8A020; margin-bottom: 14px; letter-spacing: 2px; }
.testi--featured .testi-rating { color: #FFC75A; }
.testi-q {
    font-family: 'Fraunces', serif;
    font-size: 16px; font-weight: 400; font-style: italic;
    line-height: 1.65; margin-bottom: 22px; color: var(--teal);
}
.testi--featured .testi-q { color: rgba(255,255,255,.90); }
.testi-who { display: flex; align-items: center; gap: 12px; }
.testi-av {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--sky); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Fraunces', serif; font-weight: 700; font-size: 14px; color: var(--teal);
}
.testi--featured .testi-av { background: rgba(255,255,255,.10); color: rgba(255,255,255,.80); }
.testi-name { font-size: 14px; font-weight: 600; color: var(--teal); }
.testi--featured .testi-name { color: var(--white); }
.testi-loc { font-size: 12px; color: var(--stone); }
.testi--featured .testi-loc { color: rgba(255,255,255,.45); }
.testi-check { font-size: 11px; color: #4CAF50; font-weight: 500; margin-top: 2px; }
.testi--featured .testi-check { color: #7DD87F; }

/* ─── NEWSLETTER ─── */
.newsletter { background: var(--white); padding: 90px 0; border-top: 1px solid var(--border); }
.nl-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.nl-text h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(34px, 3.5vw, 50px); font-weight: 800;
    letter-spacing: -.03em; line-height: 1.1; margin-bottom: 14px;
}
.nl-text h2 em { font-style: italic; color: var(--orange); }
.nl-text p { font-size: 16px; color: var(--stone); }
.nl-form-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.nl-input {
    flex: 1; min-width: 200px;
    padding: 14px 18px; border-radius: 100px;
    border: 1.5px solid var(--border); outline: none;
    font-family: 'Outfit', sans-serif; font-size: 15px;
    color: var(--teal); background: var(--white); transition: border-color .2s;
}
.nl-input:focus { border-color: var(--teal); }
.nl-input::placeholder { color: var(--stone); }
.nl-submit {
    font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 600;
    background: var(--orange); color: var(--white);
    padding: 14px 26px; border-radius: 100px;
    border: none; cursor: pointer; transition: opacity .2s; white-space: nowrap;
}
.nl-submit:hover { opacity: .88; }
.nl-fine { font-size: 12px; color: var(--stone); }
.nl-fine a { color: var(--teal); border-bottom: 1px solid var(--border); }
.nl-status {
    display: none; padding: 12px 18px; border-radius: 10px;
    font-size: 14px; font-weight: 500; margin-top: 12px;
}
.nl-status.success { background: #EDFBF0; color: #1A7A3A; display: block; }
.nl-status.error   { background: #FFF0F0; color: #C0392B; display: block; }

/* ─── FAQ ─── */
.faq { background: var(--sand); padding: 90px 0; }
.faq-h { text-align: center; margin-bottom: 52px; }
.faq-h h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(34px, 3.5vw, 50px); font-weight: 800; letter-spacing: -.03em;
}
.faq-wrap { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,61,79,.12); }
.faq-btn {
    width: 100%; text-align: left; padding: 22px 0;
    background: none; border: none; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    font-family: 'Fraunces', serif; font-size: 17px; font-weight: 600; color: var(--teal);
}
.faq-icon {
    width: 30px; height: 30px; flex-shrink: 0;
    border: 1.5px solid rgba(0,61,79,.2); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--teal);
    transition: transform .25s, background .2s, color .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--teal); color: var(--white); border-color: var(--teal); }
.faq-body { overflow: hidden; max-height: 0; transition: max-height .35s ease; }
.faq-item.open .faq-body { max-height: 240px; }
.faq-body p { font-size: 14px; color: var(--stone); line-height: 1.8; padding-bottom: 22px; }

/* ─── FOOTER ─── */
.site-footer { background: var(--teal); padding: 64px 0 28px; }
.ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.ft-logo {
    font-family: 'Fraunces', serif; font-size: 26px; font-weight: 900;
    color: var(--white); display: block; margin-bottom: 12px;
}
.ft-logo em { font-style: italic; color: #5DCFE8; }
.ft-brand p { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.75; max-width: 220px; }
.ft-social { display: flex; gap: 10px; margin-top: 18px; }
.ft-soc {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.55); font-size: 13px; font-weight: 600;
    transition: border-color .2s, color .2s;
}
.ft-soc:hover { border-color: rgba(255,255,255,.50); color: var(--white); }
.ft-col h4 {
    font-size: 11px; font-weight: 700; letter-spacing: .10em; text-transform: uppercase;
    color: rgba(255,255,255,.35); margin-bottom: 16px;
}
.ft-col ul { list-style: none; }
.ft-col li { margin-bottom: 9px; }
.ft-col a { font-size: 13px; color: rgba(255,255,255,.55); transition: color .2s; }
.ft-col a:hover { color: var(--white); }
.ft-bottom {
    border-top: 1px solid rgba(255,255,255,.08); padding-top: 26px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
}
.ft-bottom p { font-size: 12px; color: rgba(255,255,255,.30); }
.ft-pay { display: flex; gap: 8px; align-items: center; }
.pay-logo {
    width: 52px; height: 33px;
    border-radius: 5px;
    filter: brightness(.85) contrast(1.05);
    transition: filter .2s, transform .2s;
    flex-shrink: 0;
}
.pay-logo:hover { filter: brightness(1) contrast(1.1); transform: translateY(-1px); }

/* ─── GENERIC PAGE CONTENT ─── */
.entry-content { font-size: 16px; line-height: 1.8; color: var(--stone); }
.entry-content h2 { font-family: 'Fraunces', serif; font-size: 28px; font-weight: 800; margin: 32px 0 12px; color: var(--teal); }
.entry-content h3 { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 700; margin: 24px 0 10px; color: var(--teal); }
.entry-content p { margin-bottom: 18px; }
.entry-content ul, .entry-content ol { padding-left: 20px; margin-bottom: 18px; }
.entry-content a { color: var(--orange); border-bottom: 1px solid rgba(255,85,0,.3); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    .mobile-menu-toggle { display: flex; }

    .hero-inner { grid-template-columns: 1fr; min-height: auto; }
    .hero-content { padding: 56px 0 40px; }
    .hero-img-col { display: none; }
    .hero h1 { font-size: clamp(44px, 8vw, 70px); }

    .about-grid { grid-template-columns: 1fr; gap: 36px; }
    .about-img { aspect-ratio: 16/9; max-height: 380px; }

    .how-layout { grid-template-columns: 1fr; gap: 40px; }
    .how-img { aspect-ratio: 16/9; max-height: 360px; }

    .nl-inner { grid-template-columns: 1fr; gap: 36px; }

    .intro-grid { grid-template-columns: 1fr 1fr; gap: 0; }
    .intro-item { padding: 10px 20px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .intro-item:nth-child(2n) { border-right: none; }
    .intro-item:nth-child(3), .intro-item:nth-child(4) { border-bottom: none; }

    .testi-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
    .testi--featured { margin-top: 0; }

    .ft-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .products-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .section-head { flex-direction: column; align-items: flex-start; gap: 10px; }

    .hero h1 { font-size: clamp(38px, 9vw, 58px); }
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 10px; }
    .hero-actions .btn-fill, .hero-actions .btn-outline { width: 100%; text-align: center; justify-content: center; }

    .nl-form-row { flex-direction: column; }
    .nl-input { width: 100%; }
    .nl-submit { width: 100%; }

    .how .eyebrow, .how-head { text-align: center; }
    .how-head p { margin: 0 auto; }
    .step { text-align: left; }

    .marquee-item { padding: 0 18px; font-size: 11px; }
}

@media (max-width: 600px) {
    .container { padding: 0 18px; }

    .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .p-body { padding: 14px 14px 16px; }
    .p-name { font-size: 15px; }
    .p-price-wrap .woocommerce-Price-amount { font-size: 18px; }
    .btn-cart-p, .add-to-cart-btn { padding: 8px 14px; font-size: 12px; }

    .about-grid { gap: 28px; }
    .about-content h2 { font-size: clamp(28px, 7vw, 40px); }

    .ft-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .ft-brand { grid-column: 1 / -1; }

    .intro-strip { padding: 28px 0; }
    .intro-num { font-size: 30px; }

    .hero-social { flex-direction: column; align-items: flex-start; gap: 8px; }

    .testi-grid { max-width: 100%; }
    .testimonials { padding: 60px 0; }

    .faq-btn { font-size: 15px; }
}

@media (max-width: 400px) {
    .products-grid { grid-template-columns: 1fr; }
    .ft-grid { grid-template-columns: 1fr; }
    .ft-bottom { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════
   ÜBER UNS SEITE
═══════════════════════════════════════════════════ */
.about-page { background: var(--white); }

.abt-hero { background: var(--sand); padding: 80px 0 0; }
.abt-hero-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: end;
}
.abt-hero h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(48px, 6vw, 78px);
    font-weight: 900; letter-spacing: -.04em; line-height: 1.05;
    margin-bottom: 20px;
}
.abt-hero h1 em { font-style: italic; color: #1A7A96; }
.abt-lead { font-size: 17px; color: var(--stone); line-height: 1.75; max-width: 460px; }
.abt-hero-img { border-radius: 24px 24px 0 0; overflow: hidden; max-height: 480px; }
.abt-hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.abt-stats { background: var(--teal); padding: 48px 0; }
.abt-stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; text-align: center;
}
.abt-stat { padding: 8px 24px; border-right: 1px solid rgba(255,255,255,.10); }
.abt-stat:last-child { border-right: none; }
.abt-stat-num {
    font-family: 'Fraunces', serif;
    font-size: 36px; font-weight: 900; font-style: italic;
    color: var(--white); line-height: 1;
}
.abt-stat-label { font-size: 13px; color: rgba(255,255,255,.50); margin-top: 4px; }

.abt-section { padding: 100px 0; }
.abt-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.abt-text h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(32px, 3.5vw, 48px); font-weight: 800;
    letter-spacing: -.03em; margin-bottom: 18px;
}
.abt-text p { font-size: 16px; color: var(--stone); line-height: 1.8; margin-bottom: 16px; }
.abt-img-right { border-radius: 24px; overflow: hidden; aspect-ratio: 4/5; box-shadow: -20px 20px 0 var(--sky); }
.abt-img-right img { width: 100%; height: 100%; object-fit: cover; }

.abt-values { background: var(--sand); padding: 100px 0; }
.abt-values-head { text-align: center; margin-bottom: 52px; }
.abt-values-head h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(32px, 3.5vw, 48px); font-weight: 800; letter-spacing: -.03em;
}
.abt-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.abt-value-card {
    background: var(--white); border-radius: var(--r);
    padding: 32px 28px; border: 1px solid var(--border);
    transition: transform .25s, box-shadow .25s;
}
.abt-value-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,61,79,.08); }
.abt-value-icon { font-size: 32px; margin-bottom: 18px; }
.abt-value-card h3 { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.abt-value-card p { font-size: 14px; color: var(--stone); line-height: 1.75; }

.abt-cta { background: var(--teal); padding: 80px 0; text-align: center; }
.abt-cta-inner h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(30px, 4vw, 48px); font-weight: 800;
    letter-spacing: -.03em; color: var(--white); margin-bottom: 12px;
}
.abt-cta-inner p { font-size: 16px; color: rgba(255,255,255,.55); margin-bottom: 32px; }
.abt-cta .btn-fill { background: var(--orange); }

@media (max-width: 900px) {
    .abt-hero-inner { grid-template-columns: 1fr; }
    .abt-hero-img { display: none; }
    .abt-two-col { grid-template-columns: 1fr; gap: 32px; }
    .abt-img-right { display: none; }
    .abt-stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .abt-stat { border: none; }
    .abt-values-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   TESTIMONIAL KARUSSELL
═══════════════════════════════════════════════════ */
.testi-carousel-wrap { position: relative; overflow: hidden; }
.testi-carousel {
    display: flex;
    transition: transform .45s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}
.testi-slide {
    flex: 0 0 33.333%;
    min-width: 33.333%;
    padding: 0 10px;
    box-sizing: border-box;
    /* override testi-grid margin */
    margin: 0 !important;
}
/* testi--featured bleibt optisch hervorgehoben, aber kein margin-top mehr im Karussell */
.testi-carousel .testi--featured { margin-top: 0 !important; }

.testi-controls {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; margin-top: 32px;
}
.testi-prev, .testi-next {
    width: 44px; height: 44px; border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--white); color: var(--teal);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background .2s, border-color .2s, transform .18s;
    flex-shrink: 0;
}
.testi-prev:hover, .testi-next:hover {
    background: var(--teal); color: var(--white);
    border-color: var(--teal); transform: scale(1.08);
}
.testi-dots { display: flex; gap: 6px; align-items: center; }
.testi-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(0,61,79,.15); border: none; cursor: pointer;
    transition: background .2s, transform .2s; padding: 0;
}
.testi-dot.active {
    background: var(--orange); transform: scale(1.3);
}

@media (max-width: 768px) {
    .testi-slide { flex: 0 0 50%; min-width: 50%; }
}
@media (max-width: 500px) {
    .testi-slide { flex: 0 0 100%; min-width: 100%; padding: 0; }
}
