/* ═══════════════════════════════════════════════════════
   LOVEIFY HOMEPAGE STYLES
   ═══════════════════════════════════════════════════════ */

#loveify-homepage {
    width: 100%;
    background: #f5f5f0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: #222;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ─── LAYOUT ──────────────────────────────────────── */
.lhp-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.lhp-section {
    padding: 50px 0;
}

.lhp-section-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: .5px;
    margin: 0 0 35px;
    color: #111;
}

/* ─── BUTTONS ─────────────────────────────────────── */
.lhp-btn {
    display: inline-block;
    padding: 13px 32px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none !important;
    border-radius: 0;
    transition: all .3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.lhp-btn-primary {
    background: var(--loveify-primary, #b71361);
    color: #fff !important;
    border-color: var(--loveify-primary, #b71361);
}
.lhp-btn-primary:hover {
    background: transparent;
    color: var(--loveify-primary, #b71361) !important;
    border-color: var(--loveify-primary, #b71361);
}

.lhp-btn-outline {
    background: transparent;
    color: #fff !important;
    border-color: #fff;
}
.lhp-btn-outline:hover {
    background: #fff;
    color: #111 !important;
}

.lhp-btn-cart {
    display: block;
    text-align: center;
    padding: 10px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    background: var(--loveify-primary, #b71361);
    color: #fff !important;
    border-radius: 0;
    margin-top: 10px;
}
.lhp-btn-cart:hover {
    background: #8e0f4b;
}

/* ═══════════════════════════════════════════════════════
   HERO BANNER
   ═══════════════════════════════════════════════════════ */
.lhp-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--loveify-primary, #b71361);
    overflow: hidden;
}

/* Banner-Höhe (Standard, neuer Look): begrenzt, banner-ähnlich */
.lhp-hero--banner {
    min-height: 420px;
    max-height: 730px;
    height: 50vw; /* skaliert mit Viewport — sieht auf allen Sizes banner-mäßig aus */
}

/* Vollbild-Variante (alter Look): füllt fast den ganzen Screen */
.lhp-hero--fullscreen {
    min-height: 500px;
    height: 80vh;
}

.lhp-hero-overlay {
    position: absolute; inset: 0;
}

.lhp-hero-content {
    position: relative;
    z-index: 2;
    padding: 48px 6vw;
    max-width: 1440px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Text-Positionen */
.lhp-hero--text-left .lhp-hero-content { align-items: flex-start; text-align: left; }
.lhp-hero--text-center .lhp-hero-content { align-items: center; text-align: center; }
.lhp-hero--text-right .lhp-hero-content { align-items: flex-end; text-align: right; }

.lhp-hero--text-left .lhp-hero-content { max-width: 540px; margin-right: auto; }
.lhp-hero--text-right .lhp-hero-content { max-width: 540px; margin-left: auto; }

.lhp-hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.05;
    letter-spacing: -.5px;
    text-shadow: 0 2px 20px rgba(0,0,0,.25);
}

.lhp-hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,.95);
    margin: 0;
    line-height: 1.5;
    max-width: 480px;
    text-shadow: 0 1px 12px rgba(0,0,0,.25);
}

.lhp-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.lhp-hero--text-center .lhp-hero-btns { justify-content: center; }
.lhp-hero--text-right .lhp-hero-btns { justify-content: flex-end; }

/* Wave-Separator am unteren Hero-Rand — weicher Übergang in die
   weiße Kategorie-Sektion drunter. Inline-SVG mit preserveAspectRatio=
   "none" damit es sich auf jede Viewport-Breite streckt. */
.lhp-hero-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px; /* -1px verhindert Sub-Pixel-Gap zwischen Hero und Wave */
    width: 100%;
    height: 90px;
    z-index: 3; /* über Overlay (z 1) und unter Content (z 2 — Content padding-bottom verhindert Overlap) */
    pointer-events: none;
    line-height: 0;
}
.lhp-hero-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}
/* Content bekommt extra Padding unten damit Buttons nicht in den Wave-Bereich rutschen */
.lhp-hero-content { padding-bottom: 110px; }
@media (max-width: 768px) {
    .lhp-hero-wave { height: 50px; }
    .lhp-hero-content { padding-bottom: 70px; }
}

/* ═══════════════════════════════════════════════════════
   HERO SLIDER
   ═══════════════════════════════════════════════════════
   Ersetzt den einzelnen Hero — Slides liegen jetzt absolut
   übereinander, Container managt die Höhe. Slide 1 ist der
   user-konfigurierte Hero, Slide 2 wirbt für das Glücksrad. */
.lhp-hero-slider {
    position: relative;
    overflow: hidden;
    background: var(--loveify-primary, #b71361);
    min-height: 420px;
    height: 50vw;
    max-height: 730px;
}
.lhp-hero-slider--fullscreen {
    min-height: 500px;
    height: 80vh;
    max-height: none;
}
.lhp-hero-slider:focus { outline: none; }
.lhp-hero-slider:focus-visible { outline: 3px solid #fff; outline-offset: -3px; }

.lhp-hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Jeder Slide deckt den Container ab; nur der aktive ist sichtbar.
   visibility hidden zusätzlich zu opacity, damit Tab-Reihenfolge
   und Screenreader inaktive Slides überspringen. */
.lhp-hero-slide {
    position: absolute !important;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .6s ease, visibility 0s linear .6s;
    z-index: 1;
    /* Sizing-Properties von .lhp-hero zurücksetzen — Slider managt jetzt die Höhe */
    min-height: 0 !important;
    max-height: none !important;
    height: 100% !important;
}
.lhp-hero-slide--is-active {
    opacity: 1;
    visibility: visible;
    transition: opacity .6s ease, visibility 0s linear 0s;
    z-index: 2;
}

/* ── Slide 2: Glücksrad-Teaser ── */
.lhp-hero-slide--wheel {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b3d 55%, #1a1a2e 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lhp-hero-wheel-glow {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    width: 720px;
    height: 720px;
    background: radial-gradient(circle, rgba(214,53,125,.30) 0%, rgba(214,53,125,.08) 35%, transparent 65%);
    pointer-events: none;
    z-index: 1;
    filter: blur(20px);
}

.lhp-hero-wheel-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;    /* Text + Rad als kompakter Block mittig im
                                   Slide — symmetrische Atemräume links & rechts.
                                   Vorher hatten wir justify-content:flex-end,
                                   das hat aber die linke Hälfte ganz leer
                                   gelassen → zu viel. */
    gap: 4vw;
    max-width: 1440px;
    width: 100%;
    padding: 48px 6vw 110px;   /* symmetrisch */
}

.lhp-hero-wheel-text {
    /* flex:0 1 auto + max-width hält den Text-Block schmal — würde er auf
       flex:1 stehen, dehnte er sich bis zum linken Slide-Rand und das
       Gesamt-Paket wäre nicht mehr zentriert, sondern wieder linksbündig
       verteilt. So ist Text genau so breit wie er braucht, und Text+Wheel
       bilden zusammen ein mittiges Duo. */
    flex: 0 1 auto;
    min-width: 0;
    max-width: 480px;
}

.lhp-hero-wheel-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(214,53,125,.18);
    color: #ffb6d4;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(214,53,125,.30);
}
.lhp-hero-wheel-kicker svg { fill: #ffb6d4; flex-shrink: 0; }

.lhp-hero-slide--wheel .lhp-hero-title {
    color: #fff;
    margin-bottom: 14px;
}
.lhp-hero-slide--wheel .lhp-hero-title span {
    background: linear-gradient(135deg, #ff66a6 0%, #d6357d 45%, #B61261 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.lhp-hero-slide--wheel .lhp-hero-subtitle {
    color: rgba(255,255,255,.78);
    margin-bottom: 22px;
    max-width: 440px;
}

/* Glücksrad-Teaser-Button — gradient + glow, passt zur Wheel-Seite.
   Wir überschreiben die Standard-.lhp-btn-primary-Farbe gezielt nur
   auf der Wheel-Slide, damit Slide 1 unverändert bleibt. */
.lhp-hero-slide--wheel .lhp-hero-wheel-btn {
    background: linear-gradient(135deg, #B61261 0%, #d6357d 100%) !important;
    border: 0 !important;
    color: #fff !important;
    padding: 15px 38px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 28px rgba(214,53,125,.45), 0 2px 6px rgba(0,0,0,.15);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
    align-self: flex-start;
}
.lhp-hero-slide--wheel .lhp-hero-wheel-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 14px 36px rgba(214,53,125,.55), 0 4px 10px rgba(0,0,0,.2);
    filter: brightness(1.08);
    color: #fff !important;
}
.lhp-hero-slide--wheel .lhp-hero-wheel-btn:active {
    transform: translateY(0);
}

.lhp-hero-wheel-badges {
    display: flex;
    gap: 18px;
    margin-top: 22px;
    flex-wrap: wrap;
}
.lhp-hero-wheel-badges span {
    color: rgba(255,255,255,.60);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    white-space: nowrap;
}

/* Wheel-Stage rechts — Canvas dreht sich dauerhaft langsam (Teaser),
   Pointer & Center-Herz bleiben statisch oben. */
.lhp-hero-wheel-stage {
    position: relative;
    flex-shrink: 0;
    width: 420px;
    height: 420px;
    max-width: 40vw;
    max-height: 40vw;
    filter: drop-shadow(0 25px 50px rgba(214,53,125,.40));
}
.lhp-hero-wheel-canvas {
    width: 100%;
    height: 100%;
    display: block;
    animation: lhpHeroWheelSpin 32s linear infinite;
    transform-origin: 50% 50%;
}
@keyframes lhpHeroWheelSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
    .lhp-hero-wheel-canvas { animation: none; }
}
.lhp-hero-wheel-pointer {
    position: absolute;
    top: -2.5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 9%;
    aspect-ratio: 8/9;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,.5));
}
.lhp-hero-wheel-pointer svg { width: 100%; height: 100%; display: block; }
.lhp-hero-wheel-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 14%; height: 14%;
    border-radius: 50%;
    background: #1a1a2e;
    border: 3px solid #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}
.lhp-hero-wheel-center svg { width: 55%; height: 55%; fill: #d6357d; }

/* ── Navigation ── */
.lhp-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255,255,255,.25);
    color: #fff;
    cursor: pointer;
    z-index: 10;
    transition: background .2s, transform .2s, border-color .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
}
.lhp-hero-arrow svg { width: 22px; height: 22px; }
.lhp-hero-arrow:hover {
    background: rgba(255,255,255,.25);
    border-color: rgba(255,255,255,.45);
    transform: translateY(-50%) scale(1.08);
}
.lhp-hero-arrow:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}
.lhp-hero-arrow--prev { left: 24px; }
.lhp-hero-arrow--next { right: 24px; }

.lhp-hero-dots {
    position: absolute;
    bottom: 60px; /* über dem Wave; weniger weil Dots jetzt mehr Höhe haben */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    z-index: 10;
}
/* Tap-Target: PSI/WCAG verlangt mindestens 24x24 (AA) bzw. 44x44 (AAA-Empfehlung).
   Wir geben dem Button die volle Tap-Größe via padding und zentrieren den sichtbaren
   Dot via ::before. Touch- und Click-Bereich = ganzer Button (44x44), sichtbarer
   Punkt bleibt klein wie vorher. */
.lhp-hero-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0;
    margin: 0;
    position: relative;
    transition: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lhp-hero-dot::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.45);
    transition: background .25s, width .35s cubic-bezier(.2,.8,.2,1);
}
.lhp-hero-dot:hover::before { background: rgba(255,255,255,.8); }
.lhp-hero-dot--is-active::before {
    background: #fff;
    width: 32px;
    border-radius: 6px;
}
.lhp-hero-dot:focus-visible {
    outline: 2px solid #fff;
    outline-offset: -8px; /* outline am sichtbaren Dot anlehnen, nicht am 44px-Hit-Bereich */
    border-radius: 50%;
}

/* Wave wird vom Slider getragen, nicht mehr von einzelnen Slides.
   Höhere Spezifität nötig, weil der globale .lhp-hero-wave-Block oben
   sonst gewinnt. */
.lhp-hero-slider > .lhp-hero-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: 90px;
    z-index: 4; /* über allen Slides */
    pointer-events: none;
    line-height: 0;
}
.lhp-hero-slider > .lhp-hero-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ── Mobile ── */
@media (max-width: 768px) {
    .lhp-hero-slider {
        /* min-height von 540 auf 660 gebumped — die Marken-Slide hat im
           Mobile-Layout (Bild oben 200px + Text mit Counter + CTA + Badges)
           mehr Inhalt als die anderen Slides. Ohne diesen Bump wird der
           CTA "Alle Marken entdecken" hinter dem Wave-Separator clipped. */
        min-height: 660px;
        height: auto;
        max-height: none;
    }
    .lhp-hero-slides { min-height: 660px; }
    .lhp-hero-slide { min-height: 660px !important; }

    .lhp-hero-wheel-content {
        flex-direction: column-reverse;
        justify-content: center;       /* Desktop hat flex-end für rechtsbündigen
                                          Block — auf Mobile (Column-Layout) muss
                                          das zurück auf zentriert, sonst landet
                                          der Content unten am Wave-Separator. */
        align-items: center;
        gap: 22px;
        padding: 28px 20px 100px;
        text-align: center;
    }
    .lhp-hero-wheel-text { text-align: center; max-width: 100%; }
    .lhp-hero-slide--wheel .lhp-hero-title { font-size: 26px; line-height: 1.15; }
    .lhp-hero-slide--wheel .lhp-hero-subtitle { font-size: 14px; max-width: 100%; margin-bottom: 18px; }
    .lhp-hero-wheel-badges { justify-content: center; gap: 12px; }
    .lhp-hero-wheel-badges span { font-size: 11px; }

    /* Mobile-Wheel etwas kleiner für besseres Atmen + Pointer-Clearance.
       180px lässt rund 100px Rest auf einem 360-px-Viewport (mit 20px
       Padding pro Seite) — genug Luft drumherum. */
    .lhp-hero-wheel-stage {
        width: 180px;
        height: 180px;
        max-width: none;
        max-height: none;
        margin-top: 4px; /* extra Platz für den Pointer oben */
    }
    .lhp-hero-wheel-glow { width: 320px; height: 320px; right: 50%; transform: translate(50%, -50%); }

    /* Button auf Mobile zentrieren und kompakter — sieht zentriert
       in der column-reverse-Spalte stimmiger aus als ein full-width-Block.
       !important nötig, weil die globale Mobile-Regel
       .lhp-hero-btns{justify-content:flex-start!important} (für Slide 1
       mit linksbündigem Text gedacht) sonst gewinnt. */
    .lhp-hero-slide--wheel .lhp-hero-btns {
        justify-content: center !important;
        width: 100%;
    }
    .lhp-hero-slide--wheel .lhp-hero-wheel-btn {
        align-self: center;
        padding: 14px 36px;
        font-size: 13px;
        letter-spacing: 1.4px;
    }

    .lhp-hero-arrow {
        width: 38px;
        height: 38px;
    }
    .lhp-hero-arrow svg { width: 18px; height: 18px; }
    .lhp-hero-arrow--prev { left: 10px; }
    .lhp-hero-arrow--next { right: 10px; }
    .lhp-hero-dots { bottom: 60px; }
}

@media (max-width: 480px) {
    .lhp-hero-arrow { display: none; } /* Auf sehr kleinen Screens nur Dots + Swipe */
}

/* ═══════════════════════════════════════════════════════
   CATEGORY SHOWCASE
   ═══════════════════════════════════════════════════════ */
.lhp-categories {
    background: #fff;
    padding: 50px 0;
}

.lhp-cat-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.lhp-cat-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    background: #f5f5f5;
    border-radius: 0;
    padding: 25px 15px;
    min-height: 120px;
    transition: all .3s ease;
}

.lhp-cat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,.1);
    background: linear-gradient(135deg, #fdf2f7 0%, #fce4ec 100%);
}

.lhp-cat-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    margin-bottom: 12px;
    transition: all .3s ease;
}

.lhp-cat-item:hover .lhp-cat-img {
    box-shadow: 0 4px 15px rgba(200,30,109,.2);
    transform: scale(1.05);
}

.lhp-cat-img img {
    width: 55%;
    height: 55%;
    object-fit: contain;
}

.lhp-cat-placeholder {
    color: #c81e6d;
}

.lhp-cat-placeholder svg {
    width: 26px;
    height: 26px;
}

.lhp-cat-name {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    color: #333;
    text-align: center;
    line-height: 1.3;
}

.lhp-cat-item:hover .lhp-cat-name {
    color: #c81e6d;
}

@media (max-width: 768px) {
    .lhp-cat-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    .lhp-cat-item {
        min-height: 100px;
        padding: 20px 10px;
    }
    .lhp-cat-img {
        width: 48px;
        height: 48px;
    }
    .lhp-cat-name {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .lhp-cat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .lhp-cat-item {
        min-height: 90px;
        padding: 18px 8px;
    }
    .lhp-cat-img {
        width: 42px;
        height: 42px;
        margin-bottom: 10px;
    }
    .lhp-cat-name {
        font-size: 9px;
    }
}

/* ═══════════════════════════════════════════════════════
   PRODUCT GRID
   ═══════════════════════════════════════════════════════ */
.lhp-products {
    background: #f5f5f0;
}

.lhp-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-flow: dense; /* backfill empty cells if a banner span pushes itself to the next row */
    grid-auto-rows: 600px; /* feste Zeilenhöhe — verhindert dass Hero-Karten (2 Spalten breit, aspect-ratio:1) die Zeilen aufblähen */
    gap: 20px;
    align-items: stretch;
}

/* Spanning banners */
.lhp-grid-banner--2x1,
.lhp-grid-banner--2x1-hero { grid-column: span 2 !important; }
.lhp-grid-banner--1x2 { grid-row: span 2 !important; }
.lhp-grid-banner--2x2,
.lhp-grid-banner--2x2-hero { grid-column: span 2 !important; grid-row: span 2 !important; }

/* Hero-Banner-Regeln stehen weiter unten in der Datei (nach den Base-Regeln
   für .lhp-grid-banner), damit das Cascading sie nicht zurücksetzt. */

/* Hero-Produkt: nimmt 2 Spalten (oder 2×2) ein, gepaart mit einem Hero-Banner daneben.
   Wird automatisch vergeben durch loveify_output_product_grid() wenn der nächste
   Banner Größe "2x1-hero" oder "2x2-hero" hat.
   Bewusst KEINE align-self oder aspect-ratio Tricks — Karte verhält sich wie
   eine normale Produktkarte, nur breiter (durch span 2). Das stretching im
   Grid übernimmt CSS Grid selbst. */
.lhp-product-card--hero-2x1 { grid-column: span 2; }
.lhp-product-card--hero-2x2 { grid-column: span 2; grid-row: span 2; }

/* ═══════════════════════════════════════════════════════
   HERO PRODUKTKARTE — Premium-Look
   ═══════════════════════════════════════════════════════
   Wird automatisch vergeben, wenn das Produkt direkt vor einem
   2x1-hero / 2x2-hero Banner steht. Soll sich klar vom Rest des
   Grids abheben: das ist UNSERE persönliche Empfehlung.
   Layout: Bild links (~55%), Info rechts (~45%) — horizontal statt
   vertikal, damit die doppelte Breite sinnvoll genutzt wird.
*/
.lhp-product-card--hero-2x1,
.lhp-product-card--hero-2x2 {
    flex-direction: row !important;       /* überschreibt .lhp-product-card { flex-direction: column } weiter unten in der Datei */
    background: #fff !important;          /* überschreibt background:#fff (gleicher Wert, aber !important damit Cascade sicher ist) */
    box-shadow: 0 4px 24px rgba(183,19,97,.08), 0 1px 4px rgba(0,0,0,.05) !important;    /* überschreibt simplen Shadow */
    position: relative;
    overflow: hidden;
}
.lhp-product-card--hero-2x1:hover,
.lhp-product-card--hero-2x2:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 14px 44px rgba(183,19,97,.18), 0 2px 8px rgba(0,0,0,.06) !important;
}

/* "♥ UNSER LIEBLING" Label — oben rechts auf der Info-Hälfte */
.lhp-product-card--hero-2x1::before,
.lhp-product-card--hero-2x2::before {
    content: '\2665  UNSER LIEBLING';
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--loveify-primary, #b71361) 0%, #8e0f4b 100%);
    color: #fff;
    padding: 7px 14px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.6px;
    border-radius: 0;
    z-index: 3;
    box-shadow: 0 4px 14px rgba(183,19,97,.35);
    text-transform: uppercase;
    pointer-events: none;
}

/* Bild-Wrap = linke Hälfte */
.lhp-product-card--hero-2x1 .lhp-product-img-wrap,
.lhp-product-card--hero-2x2 .lhp-product-img-wrap {
    flex: 0 0 55%;
    aspect-ratio: auto;
    background: transparent;
    align-self: stretch;
    min-height: 0;
}
.lhp-product-card--hero-2x1 .lhp-product-img-wrap img,
.lhp-product-card--hero-2x2 .lhp-product-img-wrap img {
    padding: 30px;
}

/* Info-Sektion = rechte Hälfte mit deutlich mehr Atemraum */
.lhp-product-card--hero-2x1 .lhp-product-info,
.lhp-product-card--hero-2x2 .lhp-product-info {
    flex: 1;
    background: transparent;
    padding: 60px 40px 40px 30px;  /* mehr Top-Padding wegen des Labels */
    justify-content: center;
}

/* Aufgewertete Typografie */
.lhp-product-card--hero-2x1 .lhp-product-rating,
.lhp-product-card--hero-2x2 .lhp-product-rating {
    margin-bottom: 14px;
}
.lhp-product-card--hero-2x1 .lhp-product-brand,
.lhp-product-card--hero-2x2 .lhp-product-brand {
    font-size: 12px;
    color: var(--loveify-primary, #b71361);
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-bottom: 10px;
}
.lhp-product-card--hero-2x1 .lhp-product-name,
.lhp-product-card--hero-2x2 .lhp-product-name {
    font-size: 18px;
    line-height: 1.3;
    -webkit-line-clamp: 4;
    margin-bottom: 18px;
    font-weight: 700;
}
.lhp-product-card--hero-2x1 .lhp-product-price,
.lhp-product-card--hero-2x2 .lhp-product-price {
    font-size: 32px;
    font-weight: 900;
    margin-top: 0; /* Override vom Basis-Stil (margin-top:auto) — sonst zerreißt es das zentrierte Layout */
    margin-bottom: 18px;
}
.lhp-product-card--hero-2x1 .lhp-product-price del,
.lhp-product-card--hero-2x2 .lhp-product-price del {
    font-size: 18px;
}

/* Premium-Button */
.lhp-product-card--hero-2x1 .lhp-btn-cart,
.lhp-product-card--hero-2x2 .lhp-btn-cart {
    display: inline-block;
    padding: 15px 28px;
    font-size: 12px;
    border-radius: 0;
    background: linear-gradient(135deg, var(--loveify-primary, #b71361) 0%, #8e0f4b 100%);
    box-shadow: 0 6px 20px rgba(183,19,97,.30);
    margin-top: 0;
    align-self: flex-start;
    transition: transform .25s ease, box-shadow .25s ease;
    border: none;
    color: #fff !important;
}
.lhp-product-card--hero-2x1 .lhp-btn-cart:hover,
.lhp-product-card--hero-2x2 .lhp-btn-cart:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #c81e6d 0%, #9a1052 100%);
    box-shadow: 0 10px 28px rgba(183,19,97,.42);
}

/* Mobile (≤600px): Hero-Karte spannt volle Breite (beide Spalten) als
   "Feature-Streifen", behält den Premium-Look (Gradient, Label, Button),
   nur das Layout klappt vertikal weil 1 Spalte zu eng wäre. */
@media (max-width: 600px) {
    /* Reihenhöhe auf Mobile: an Inhalt anpassen, nicht fest 600px.
       Sonst wird das quadratische Bild bei voller Breite (~460px hoch)
       plus Info-Sektion größer als 600px und der Button verschwindet
       hinter `overflow:hidden`. */
    .lhp-product-grid {
        grid-auto-rows: auto;
    }
    .lhp-product-card--hero-2x1,
    .lhp-product-card--hero-2x2 {
        grid-column: span 2 !important; /* überschreibt das ältere span 1 vom Mobile-Block weiter unten */
        grid-row: span 1 !important;
        flex-direction: column !important; /* MUSS !important haben — Desktop-Regel oben hat auch flex-direction: row !important, sonst gewinnt Desktop und das Bild nimmt 100% Breite, Info-Sektion wird unsichtbar */
        /* Gradient + Shadow vom Desktop bleiben erhalten */
    }
    /* Hero-Banner (gepaart mit Hero-Produkt) auch volle Breite — sonst
       schrumpft das Banner durch die ältere Mobile-Regel weiter unten auf
       1 Spalte und das visuelle Paar zerfällt.
       WICHTIG: aspect-ratio + height:auto sind nötig, weil das Banner-Bild
       absolut positioniert ist (siehe loveify-homepage.css Bug-Fix für den
       12000px-Bug) und damit nicht zur Layout-Berechnung beiträgt. Mit
       `grid-auto-rows: auto` auf Mobile würde die Banner-Reihe sonst auf
       0px kollabieren und das Banner wäre unsichtbar. */
    .lhp-grid-banner--2x1-hero,
    .lhp-grid-banner--2x2-hero {
        grid-column: span 2 !important;
        grid-row: span 1 !important;
        height: auto;
        min-height: 0;
        aspect-ratio: 1 / 1;
    }
    .lhp-product-card--hero-2x1::before,
    .lhp-product-card--hero-2x2::before {
        top: 12px;
        right: 12px;
        font-size: 9px;
        padding: 5px 11px;
        letter-spacing: 1.2px;
    }
    .lhp-product-card--hero-2x1 .lhp-product-img-wrap,
    .lhp-product-card--hero-2x2 .lhp-product-img-wrap {
        flex: 0 0 auto;
        aspect-ratio: 1;
    }
    .lhp-product-card--hero-2x1 .lhp-product-img-wrap img,
    .lhp-product-card--hero-2x2 .lhp-product-img-wrap img {
        padding: 25px;
    }
    .lhp-product-card--hero-2x1 .lhp-product-info,
    .lhp-product-card--hero-2x2 .lhp-product-info {
        padding: 18px 22px 22px;
        background: transparent; /* Gradient vom Card-Background scheint durch */
    }
    .lhp-product-card--hero-2x1 .lhp-product-brand,
    .lhp-product-card--hero-2x2 .lhp-product-brand {
        font-size: 11px;
        letter-spacing: 1px;
        margin-bottom: 4px;
    }
    .lhp-product-card--hero-2x1 .lhp-product-name,
    .lhp-product-card--hero-2x2 .lhp-product-name {
        font-size: 16px;
        line-height: 1.3;
        -webkit-line-clamp: 2;
        margin-bottom: 12px;
    }
    .lhp-product-card--hero-2x1 .lhp-product-price,
    .lhp-product-card--hero-2x2 .lhp-product-price {
        font-size: 24px;
        margin-bottom: 12px;
    }
    .lhp-product-card--hero-2x1 .lhp-btn-cart,
    .lhp-product-card--hero-2x2 .lhp-btn-cart {
        display: block;
        padding: 13px 18px;
        font-size: 12px;
        align-self: stretch;
        margin-top: 8px;
        /* Gradient-Button vom Desktop bleibt */
    }
}

/* Karten und Banner gleiche Höhe im Grid */
.lhp-product-card,
.lhp-grid-banner { height: 100%; }

.lhp-product-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
    transition: box-shadow .3s ease, transform .3s ease;
    display: flex;
    flex-direction: column;
}
.lhp-product-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,.1);
    transform: translateY(-3px);
}

/* Grid-Banner-Karte – eigenständig, kein Erbe von lhp-product-card */
.lhp-grid-banner {
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
    transition: box-shadow .3s ease, transform .3s ease;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    position: relative; /* Positionierungs-Kontext für absolut positionierte Bilder/Videos */
}
/* Größen-Klassen werden im Grid-Block oben definiert */
@media(max-width: 600px) {
    /* Nicht-Hero 2-Spalten-Banner schrumpfen auf 1 Spalte. Hero-Banner
       (2x1-hero / 2x2-hero) bleiben volle Breite — siehe Regel weiter
       oben im Hero-Block, sonst zerfällt das Hero-Paar. */
    .lhp-grid-banner--2x1,
    .lhp-grid-banner--2x2 { grid-column: span 1 !important; }
    .lhp-grid-banner--1x2,
    .lhp-grid-banner--2x2 { grid-row: span 1 !important; }
    /* Hero-Produkt-Spans werden bereits weiter oben überschrieben. */
}
.lhp-grid-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
}
.lhp-grid-banner > a {
    display: flex;
    flex: 1;
    min-height: 0;
    height: 100%;
}
/* WICHTIG (Grid-12000px-Bug-Fix):
   Das Banner-Bild MUSS absolut positioniert sein. Andernfalls löst die
   intrinsische Bildgröße in Kombination mit width:100%/height:100% bei
   großen Bildern (z.B. 1080×16000px) eine massive Zeilenhöhe aus
   (Browser nutzt dann das Aspect-Ratio des Bildes bei Spalten-Breite zur
   Track-Größen-Berechnung — bei 280px Spaltenbreite werden daraus
   schnell 4000px+ pro Zeile). Mit position:absolute trägt das Bild
   nichts mehr zur Layout-Berechnung bei; die Zeilenhöhe wird allein
   durch die Produktkarten bestimmt. */
.lhp-grid-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* Große Banner (2x2, 1x2, alle Hero-Varianten) vollflächig ohne Zuschnitt.
   Hero-Banner verhalten sich exakt wie normale 2x2/2x1 Banner — das einzige
   was sie macht ist dem benachbarten Produkt die hero-Klasse zu geben (in PHP).
   object-fit: contain garantiert dass das Bild NIE gestretcht oder gecroppt wird. */
.lhp-grid-banner--2x2 .lhp-grid-banner-img,
.lhp-grid-banner--2x1 .lhp-grid-banner-img,
.lhp-grid-banner--2x2-hero .lhp-grid-banner-img,
.lhp-grid-banner--2x1-hero .lhp-grid-banner-img {
    object-fit: contain;
    background: #fff;
}


.lhp-product-img-wrap {
    position: relative;
    display: block;
    background: #fff;
    aspect-ratio: 1;
    overflow: hidden;
}

.lhp-product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    box-sizing: border-box;
    transition: transform .4s ease;
}
.lhp-product-card:hover .lhp-product-img-wrap img {
    transform: scale(1.05);
}

/* HERO-Pair Modus:
   Banner mit --2x2-hero / --2x1-hero verhält sich GENAU wie ein normaler
   2x2 / 2x1 Banner. Das einzige was die "hero" Variante zusätzlich tut:
   das benachbarte Produkt kriegt die "lhp-product-card--hero-2xN" Klasse
   und wird auch span 2x2 (siehe oben).
   Bewusst KEINE aspect-ratio Tricks hier — die haben sich als unbeherrschbar
   erwiesen. Banner streckt sich auf die Cell-Höhe (wie alle Banner), das Bild
   bleibt durch object-fit:contain unverändert mit weißem Hintergrund.  */

/* Badges */
.lhp-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    border-radius: 0;
    z-index: 2;
}

.lhp-badge-sale {
    background: #d32f2f;
    color: #fff;
}

.lhp-badge-featured {
    background: var(--loveify-primary, #b71361);
    color: #fff;
    top: auto;
    bottom: 10px;
}

/* Product Info */
.lhp-product-info {
    padding: 14px 16px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #e8e5e0;
}

.lhp-product-rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    text-decoration: none !important;
    color: #888;
    transition: opacity .15s;
}
.lhp-product-rating:hover {
    opacity: .75;
}
.lhp-hearts {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}
.lhp-heart {
    transition: transform .15s, fill .15s;
}
.lhp-product-rating:hover .lhp-heart.is-on {
    transform: scale(1.15);
}

.lhp-rating-count {
    font-size: 11px;
    font-weight: 600;
    color: #999;
    letter-spacing: .3px;
    margin-left: 2px;
}

/* Stock-States */
.lhp-stock {
    font-weight: 700;
    letter-spacing: .2px;
    font-size: 12px;
}
.lhp-stock--in { color: #2da44e; }
.lhp-stock--low { color: #c81e6d; }
.lhp-stock--out { color: #888; }

.lhp-product-brand {
    font-size: 11px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 2px;
}

.lhp-product-name {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.lhp-product-name a {
    color: #222;
    text-decoration: none !important;
}
.lhp-product-name a:hover {
    color: var(--loveify-primary, #b71361);
}

.lhp-product-price {
    font-size: 18px;
    font-weight: 800;
    color: #111;
    margin-bottom: 4px;
    margin-top: auto;
}
.lhp-product-price del {
    font-size: 13px;
    font-weight: 400;
    color: #999;
    text-decoration: line-through;
    margin-right: 6px;
}
.lhp-product-price ins {
    text-decoration: none;
    color: #d32f2f;
}

.lhp-product-meta {
    display: block;
    font-size: 10px;
    color: #aaa;
    margin-top: 8px;
    line-height: 1.5;
}

.lhp-out-of-stock {
    display: block;
    text-align: center;
    padding: 10px;
    font-size: 12px;
    color: #999;
    font-weight: 600;
    margin-top: 10px;
}

/* ═══════════════════════════════════════════════════════
   SPOTLIGHT
   ═══════════════════════════════════════════════════════ */
.lhp-spotlight {
    background: #fff;
}

.lhp-spotlight-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.lhp-spotlight-img img {
    width: 100%;
    height: auto;
    border-radius: 0;
}

.lhp-spotlight-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--loveify-primary, #b71361);
    margin-bottom: 12px;
}

.lhp-spotlight-name {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 16px;
    color: #111;
}

.lhp-spotlight-desc {
    font-size: 15px;
    color: #666;
    margin: 0 0 20px;
    line-height: 1.7;
}

.lhp-spotlight-price {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #111;
}
.lhp-spotlight-price del { font-size: 18px; color: #999; margin-right: 8px; }
.lhp-spotlight-price ins { text-decoration: none; color: #d32f2f; }

/* ═══════════════════════════════════════════════════════
   MIDDLE BANNER
   ═══════════════════════════════════════════════════════ */
.lhp-banner {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-color: #2d1b3d;
}

.lhp-banner-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.45);
}

.lhp-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 50px 24px;
}

.lhp-banner-title {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
}

.lhp-banner-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,.85);
    margin: 0 0 24px;
}

/* ═══════════════════════════════════════════════════════
   TRUST BADGES
   ═══════════════════════════════════════════════════════ */
.lhp-trust {
    background: #f0ebe5;
    padding: 50px 0;
}

.lhp-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.lhp-trust-item {
    text-align: center;
    padding: 20px;
}

.lhp-trust-icon {
    color: var(--loveify-primary, #b71361);
    margin-bottom: 16px;
}

.lhp-trust-title {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #222;
}

.lhp-trust-desc {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}


/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .lhp-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    /* Hero-Pair zusammenhalten: Banner + Hero-Produkt nehmen je 1.5 Slots = nicht möglich.
       Stattdessen: Banner schrumpft auf 1 Slot, Hero-Produkt schrumpft auf 1 Slot.
       (Auf Tablet ist der Hero-Effekt weniger wichtig — Hauptsache Layout bricht nicht.) */
    .lhp-grid-banner--2x2-hero { grid-column: span 2 !important; grid-row: span 2 !important; }
    .lhp-grid-banner--2x1-hero { grid-column: span 2 !important; }
    .lhp-product-card--hero-2x2 { grid-column: span 1; grid-row: span 1; }
    .lhp-product-card--hero-2x1 { grid-column: span 1; }
}

/* ═══════════════════════════════════════════════════════
   SLIDE 3: MARKEN-SHOWCASE (Hero-Slider)
   ═══════════════════════════════════════════════════════
   Liegt im .lhp-hero-slider — füllt damit dieselbe Höhe wie Slide 1+2
   (50vw bzw. 80vh im Fullscreen-Modus). Innenraum ist 2-Spalten:
   Bild deckt eine Hälfte komplett ab, Text-Block mit Counter + CTA
   sitzt in der anderen. --brands-img-right tauscht die Spalten. */
.lhp-hero-slide--brands {
    background: #f7f1ea;
    overflow: hidden;
}
.lhp-hero-brands-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: 100%;
    align-items: stretch;
}
/* Default: Bild links — keine Order nötig. Modifier tauscht die Spalten. */
.lhp-hero-slide--brands-img-right .lhp-hero-brands-media { order: 2; }
.lhp-hero-slide--brands-img-right .lhp-hero-brands-text  { order: 1; }

.lhp-hero-brands-media {
    position: relative;
    overflow: hidden;
    background: #1a1a1a; /* füllt eventuelle Lücken beim Lazy-Load */
}
.lhp-hero-brands-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.05);
}
.lhp-hero-brands-media--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}
.lhp-hero-brands-media--placeholder span {
    color: rgba(255,255,255,.55);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
}

.lhp-hero-brands-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 5vw 130px; /* unten 130 statt 110 — Wave-Separator + Dots Clearance */
    gap: 16px;
}

.lhp-hero-brands-kicker {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    background: rgba(183,19,97,.12);
    color: var(--loveify-primary, #b71361);
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(183,19,97,.25);
}

/* Headline überschreibt das geerbte .lhp-hero-title (das ist weiß +
   Schatten für Hintergrund-Bilder gedacht) — auf der Marken-Slide
   brauchen wir dunkles Schwarz auf Crème. */
.lhp-hero-slide--brands .lhp-hero-brands-headline {
    color: #1a1a1a;
    text-shadow: none;
    /* Etwas zurückgenommen (max 38px statt 44px) damit der Titel "Über 400
       Marken — eine Adresse." auf üblichen Desktop-Breiten in EINE Zeile
       passt. Mobile-Größe wird unten überschrieben. */
    font-size: clamp(26px, 2.9vw, 38px);
    line-height: 1.1;
    margin: 0;
    letter-spacing: -.5px;
    /* text-wrap: balance balanciert Zeilenumbrüche schöner aus, falls
       der Titel doch mal umbricht (z.B. bei größeren Marken-Zahlen). */
    text-wrap: balance;
}

/* Großer Counter — Plus + Zahl in pinkem Gradient. */
.lhp-hero-brands-counter {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin: 4px 0 2px;
    line-height: 0.85;
}
.lhp-hero-brands-counter__plus,
.lhp-hero-brands-counter__num {
    font-weight: 900;
    letter-spacing: -.04em;
    background: linear-gradient(135deg, #B61261 0%, #d6357d 50%, #ff66a6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.lhp-hero-brands-counter__num {
    font-size: clamp(64px, 7.5vw, 112px);
}
.lhp-hero-brands-counter__plus {
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1;
    align-self: flex-start;
    margin-top: 10px;
}
.lhp-hero-brands-counter__label {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: #666;
    margin-left: 6px;
    padding-bottom: 12px;
}

/* Subtitle überschreibt — wieder dunkel statt weiß. */
.lhp-hero-slide--brands .lhp-hero-brands-desc {
    color: #444;
    text-shadow: none;
    font-size: 15px;
    line-height: 1.6;
    max-width: 480px;
    margin: 0;
}

.lhp-hero-brands-btn {
    align-self: flex-start;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    padding: 15px 32px !important;
    background: linear-gradient(135deg, #B61261 0%, #d6357d 100%) !important;
    border: 0 !important;
    box-shadow: 0 8px 22px rgba(183,19,97,.30);
    margin-top: 4px;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.lhp-hero-brands-btn svg {
    width: 18px;
    height: 18px;
    transition: transform .25s ease;
}
.lhp-hero-brands-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(183,19,97,.42);
    filter: brightness(1.05);
    color: #fff !important;
}
.lhp-hero-brands-btn:hover svg { transform: translateX(4px); }

/* ── Mobile: Spalten stapeln, Bild bekommt eigene Höhe (kein full-slide-cover) ── */
@media (max-width: 768px) {
    .lhp-hero-brands-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 180px 1fr; /* Bildhöhe etwas reduziert für mehr Text-Platz */
    }
    /* Auf Mobile soll Bild IMMER oben sein, unabhängig vom Admin-Toggle. */
    .lhp-hero-slide--brands-img-right .lhp-hero-brands-media { order: 1; }
    .lhp-hero-slide--brands-img-right .lhp-hero-brands-text  { order: 2; }

    .lhp-hero-brands-text {
        padding: 22px 24px 110px; /* unten 110: Wave (50) + Dots-Zone (~60) Clearance */
        gap: 10px;
        text-align: center;
        align-items: center;
    }
    .lhp-hero-brands-kicker { align-self: center; }
    .lhp-hero-slide--brands .lhp-hero-brands-headline { font-size: 20px; line-height: 1.15; }
    .lhp-hero-brands-counter { justify-content: center; margin: 2px 0; }
    .lhp-hero-brands-counter__num { font-size: clamp(44px, 13vw, 72px); }
    .lhp-hero-brands-counter__plus { font-size: clamp(30px, 8vw, 50px); margin-top: 8px; }
    .lhp-hero-brands-counter__label { font-size: 10px; padding-bottom: 4px; margin-left: 4px; }
    .lhp-hero-slide--brands .lhp-hero-brands-desc { font-size: 13px; line-height: 1.55; text-align: center; }
    .lhp-hero-brands-btn {
        align-self: center;
        padding: 12px 24px !important;
        font-size: 12px;
        margin-top: 2px;
    }
    .lhp-hero-brands-btn svg { width: 16px; height: 16px; }
}

/* ─── SEO TEXTS ─── */
.lhp-seo {
    background: #fff;
    padding: 60px 0 50px;
}
.lhp-seo-content {
    max-width: 900px;
    margin: 0 auto;
}
.lhp-seo-block {
    margin-bottom: 40px;
}
.lhp-seo-block:last-child {
    margin-bottom: 0;
}
.lhp-seo-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 14px;
    line-height: 1.3;
}
.lhp-seo-text {
    font-size: 15px;
    line-height: 1.8;
    color: #4a4a4a;
}
.lhp-seo-text p {
    margin: 0 0 14px;
}
.lhp-seo-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .lhp-hero { min-height: 320px; max-height: none; height: auto; }
    .lhp-hero--banner, .lhp-hero--fullscreen { min-height: 320px; height: auto; }
    .lhp-hero-content { padding: 50px 24px; max-width: 100% !important; align-items: flex-start !important; text-align: left !important; margin: 0 !important; }
    .lhp-hero-title { font-size: 32px; }
    .lhp-hero-subtitle { font-size: 15px; }
    .lhp-hero-btns { justify-content: flex-start !important; }

    .lhp-section-title { font-size: 22px; }

    .lhp-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .lhp-spotlight-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .lhp-spotlight-name { font-size: 24px; }

    .lhp-trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .lhp-banner { min-height: 250px; }
    .lhp-banner-title { font-size: 26px; }
}

@media (max-width: 480px) {
    .lhp-seo { padding: 35px 0 30px; }
    .lhp-seo-title { font-size: 18px; }
    .lhp-seo-text { font-size: 14px; line-height: 1.7; }
    .lhp-seo-block { margin-bottom: 28px; }
    .lhp-hero { min-height: 280px; }
    .lhp-hero-title { font-size: 26px; }
    .lhp-hero-content { padding: 40px 16px; }
    .lhp-hero-btns { flex-direction: column; align-items: center; }
    .lhp-btn { padding: 12px 28px; font-size: 12px; }

    .lhp-container { padding: 0 16px; }
    .lhp-section { padding: 35px 0; }

    .lhp-product-info { padding: 10px 12px 14px; }
    .lhp-product-name { font-size: 12px; }
    .lhp-product-price { font-size: 16px; }
    /* Add-to-Cart Button auf Mobile: weniger letter-spacing damit Text
       leichter in einer Zeile bleibt, mehr vertikales Padding wenn er
       doch umbricht, sodass beide Zeilen Atemraum haben. */
    .lhp-btn-cart {
        font-size: 11px;
        padding: 11px 8px;
        letter-spacing: 0.3px;
        line-height: 1.3;
        min-height: 44px;
        white-space: normal;
        word-spacing: 1px;
    }

    .lhp-trust-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .lhp-trust-item { padding: 15px 10px; }
}

/* ── Video-Banner: keine Browser-Controls ── */
.lhp-grid-banner-video {
    pointer-events: none !important;
    -webkit-media-controls: none !important;
}
.lhp-grid-banner-video::-webkit-media-controls { display: none !important; }
.lhp-grid-banner-video::-webkit-media-controls-enclosure { display: none !important; }
.lhp-grid-banner-video::-webkit-media-controls-panel { display: none !important; }

/* Video-Banner: keine Controls, kein Overlay */
.lhp-grid-banner-video::-webkit-media-controls { display: none !important; }
.lhp-grid-banner-video::-webkit-media-controls-enclosure { display: none !important; }
.lhp-grid-banner-video::-webkit-media-controls-panel { display: none !important; }

/* Alle Video-Controls im Banner verstecken - auch Theme-eigene */
.lhp-grid-banner video::-webkit-media-controls,
.lhp-grid-banner video::-webkit-media-controls-enclosure,
.lhp-grid-banner video::-webkit-media-controls-panel,
.lhp-grid-banner video::-webkit-media-controls-play-button,
.lhp-grid-banner video::-webkit-media-controls-timeline,
.lhp-grid-banner video::-webkit-media-controls-current-time-display,
.lhp-grid-banner video::-webkit-media-controls-time-remaining-display,
.lhp-grid-banner video::-webkit-media-controls-mute-button,
.lhp-grid-banner video::-webkit-media-controls-fullscreen-button,
.lhp-grid-banner video::-webkit-media-controls-volume-slider { display:none !important; opacity:0 !important; }
.lhp-grid-banner { position: relative; }
.lhp-grid-banner::after { content:''; position:absolute; inset:0; z-index:1; }
.lhp-grid-banner a { position:relative; z-index:2; }
