/* ═══════════════════════════════════════════════════════════════
   LTAD Hero Slider — style.css
   Namespace: ltad-  →  kein Konflikt mit Bootstrap / JTL-Klassen
   ═══════════════════════════════════════════════════════════════ */

:root {
    --ltad-duration: 7000;   /* ms, wird von slider.js gelesen   */
    --ltad-accent:   #968c76;
    --ltad-accent-h: #b0a48e;
}


/* ── Hero-Wrapper ─────────────────────────────────────────────── */
.ltad-hero-new {
    position: relative;
    height: 80svh;
    width: 100%;
    overflow: hidden;
}

/* ── Slides-Container ─────────────────────────────────────────── */
.ltad-slides {
    position: absolute;
    inset: 0;
}

/* ── Einzelner Slide ──────────────────────────────────────────── */
.ltad-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    isolation: isolate;   /* eigener Stacking-Context je Slide   */
}

.ltad-slide.ltad-active {
    opacity: 1;
    pointer-events: auto;
}

/* ── Media (Video / Bild)  z-index 1 ─────────────────────────── */
.ltad-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.72) contrast(1.05);
    z-index: 1;
    transform: translateZ(0);
}

.ltad-slide.ltad-active .ltad-media {
    animation: ltadZoom calc(var(--ltad-duration) * 1ms + 1200ms) linear forwards;
}

@keyframes ltadZoom {
    from { transform: scale(1.00) translateZ(0); }
    to   { transform: scale(1.06) translateZ(0); }
}

/* ── Gradient-Overlay  z-index 2 ─────────────────────────────── */
/* Sitzt zwischen Media und Content — im selben Stacking-Context  */
.ltad-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(to right, #000 0%, transparent 30%),
        linear-gradient(to left,  #000 0%, transparent 30%),
        linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%),
        radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.4) 100%);
}

/* ── Slide-Inhalt  z-index 3 ─────────────────────────────────── */
.ltad-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8vw;
    max-width: 780px;
}

/* ── Film-Grain (über allen Slides) ──────────────────────────── */
.ltad-grain {
    position: absolute;
    inset: 0;
    z-index: 50;
    opacity: 0.032;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px;
}

/* ── Text-Elemente ────────────────────────────────────────────── */
.ltad-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 1.75rem;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.8s 0.2s ease, transform 0.8s 0.2s ease;
}
.ltad-eyebrow-line {
    width: 32px;
    height: 1.5px;
    background: var(--ltad-accent);
    flex-shrink: 0;
}
.ltad-eyebrow-text {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.ltad-headline {
    font-weight: 900;
    font-size: clamp(2.8rem, 6.5vw, 6rem);
    line-height: 0.92;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 2px 40px rgba(0,0,0,0.4);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.9s 0.4s ease, transform 0.9s 0.4s ease;
}
.ltad-headline em { font-style: normal; font-weight: 900; }

.ltad-subline {
    font-size: clamp(0.8rem, 1.3vw, 1rem);
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    max-width: 400px;
    margin-bottom: 2.25rem;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.8s 0.6s ease, transform 0.8s 0.6s ease;
}

.ltad-cta-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.8s 0.8s ease, transform 0.8s 0.8s ease;
}

/* Einblenden wenn aktiv */
.ltad-slide.ltad-active .ltad-eyebrow,
.ltad-slide.ltad-active .ltad-headline,
.ltad-slide.ltad-active .ltad-subline,
.ltad-slide.ltad-active .ltad-cta-row {
    opacity: 1;
    transform: none;
}

/* Sofort zurücksetzen beim Verlassen */
.ltad-slide:not(.ltad-active) .ltad-eyebrow,
.ltad-slide:not(.ltad-active) .ltad-headline,
.ltad-slide:not(.ltad-active) .ltad-subline,
.ltad-slide:not(.ltad-active) .ltad-cta-row {
    transition: none;
    opacity: 0;
    transform: translateY(14px);
}

/* ── Buttons ──────────────────────────────────────────────────── */
.ltad-btn-new {
    background: var(--ltad-accent);
    color: #fff;
    padding: 14px 36px;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), background 0.3s;
    border: none;
    cursor: pointer;
}
.ltad-btn-new:hover             { background: var(--ltad-accent-h); transform: translateX(5px); }
.ltad-btn-new:hover svg         { transform: translateX(3px); }
.ltad-btn-new svg               { transition: transform 0.4s cubic-bezier(0.22,1,0.36,1); }

.ltad-btn-ghost {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.7);
    padding: 13px 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: border-color 0.3s, color 0.3s;
    cursor: pointer;
}
.ltad-btn-ghost:hover { border-color: rgba(255,255,255,0.7); color: #fff; }

/* ── Navigations-Pfeile ───────────────────────────────────────── */
.ltad-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 60;
    width: 52px;
    height: 52px;
    border: 1.5px solid rgba(255,255,255,0.2);
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s,
                transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.ltad-arrow:hover { border-color: rgba(255,255,255,0.6); background: rgba(0,0,0,0.5); }
.ltad-arrow svg   { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.ltad-prev        { left: 2.5vw; }
.ltad-next        { right: 2.5vw; }
.ltad-prev:hover  { transform: translateY(-50%) translateX(-3px); }
.ltad-next:hover  { transform: translateY(-50%) translateX(3px); }

/* ── Dots + Counter ───────────────────────────────────────────── */
.ltad-footer {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 60;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
}

.ltad-dots { display: flex; align-items: center; gap: 10px; }

.ltad-dot {
    position: relative;
    width: 28px;
    height: 2px;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    overflow: hidden;
    transition: width 0.3s ease;
}
.ltad-dot.ltad-active { width: 52px; }

.ltad-dot-fill {
    position: absolute;
    inset: 0;
    background: var(--ltad-accent);
    transform-origin: left;
    transform: scaleX(0);
}
.ltad-dot.ltad-active .ltad-dot-fill {
    animation: ltadDot calc(var(--ltad-duration) * 1ms) linear forwards;
}
@keyframes ltadDot {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

.ltad-counter {
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    font-weight: 700;
}

/* ── Meta + Scroll-Indikator ──────────────────────────────────── */
.ltad-meta {
    position: absolute;
    top: 2rem;
    right: 8vw;
    z-index: 60;
    font-size: 0.58rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    font-weight: 700;
}

.ltad-scroll {
    position: absolute;
    bottom: 2.5rem;
    right: 8vw;
    z-index: 60;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.ltad-scroll span {
    font-size: 0.5rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    font-weight: 700;
    writing-mode: vertical-rl;
}
.ltad-scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, var(--ltad-accent), transparent);
    animation: ltadScrollPulse 2s ease-in-out infinite;
}
@keyframes ltadScrollPulse {
    0%, 100% { opacity: 0.4; }
    50%       { opacity: 1;   }
}

/* ── Reduced Motion ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .ltad-slide.ltad-active .ltad-media { animation: none; }
    .ltad-scroll-line                   { animation: none; }
}

/* ── Mobile ───────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .ltad-content {
        justify-content: flex-end;
        padding: 0 6vw 5.5rem;
        max-width: 100%;
    }
    .ltad-overlay {
        background:
            linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.1) 55%, transparent 100%),
            radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.3) 100%);
    }
    .ltad-meta, .ltad-scroll, .ltad-arrow { display: none; }
    .ltad-footer { bottom: 1.5rem; }
    .ltad-media  { filter: brightness(0.6) contrast(1.05); }

    /* Weniger Inhalt, mehr Luft — Mobile-spezifische Anpassungen */
    .ltad-headline {
        font-size: clamp(2.2rem, 11vw, 2.8rem);
        margin-bottom: 0.9rem;
    }
    .ltad-eyebrow {
        margin-bottom: 1rem;
    }
    .ltad-subline {
        font-size: 0.82rem;
        line-height: 1.65;
        margin-bottom: 1.5rem;
    }

    /* Eyebrow auf Mobile ausblenden */
    .ltad-eyebrow { display: none; }

    /* Auf Mobile nur ein CTA — Ghost-Button ausblenden */
    .ltad-btn-ghost { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   USP — Vorteile gegenüber Massenware
   ══════════════════════════════════════════════════════════════ */
.ltad-usp {
    background: #0a0a0a;
    padding: 6rem 8vw;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.ltad-usp-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.ltad-usp-badge {
    display: inline-block;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--ltad-accent);
    border: 1.5px solid var(--ltad-accent);
    padding: 5px 16px;
    margin-bottom: 1.2rem;
}

.ltad-usp-headline {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1rem;
}

.ltad-usp-sub {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.4);
}

/* Grid — 3 Karten in einer Zeile */
.ltad-usp-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.07);
}

.ltad-usp-card {
    background: #0a0a0a;
    padding: 2.5rem 2rem;
    transition: background 0.3s ease;
}

.ltad-usp-card:hover {
    background: #111;
}

.ltad-usp-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 1.25rem;
    color: var(--ltad-accent);
}

.ltad-usp-icon svg {
    width: 100%;
    height: 100%;
}

.ltad-usp-card h3 {
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.ltad-usp-card p {
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255,255,255,0.4);
}

@media (max-width: 900px) {
    .ltad-usp-grid { grid-template-columns: 1fr; }
    .ltad-usp-card { border-top: 1px solid rgba(255,255,255,0.07); }
    .ltad-usp-card:first-child { border-top: none; }
}

@media (max-width: 600px) {
    .ltad-usp { padding: 5rem 6vw; }
}

/* ══════════════════════════════════════════════════════════════
   Fahrzeugauswahl  (JTL-Plugin — Klassen bleiben unverändert,
   nur visuelles Überschreiben)
   ══════════════════════════════════════════════════════════════ */
.ltad-vehicle {
    background: rgb(242, 240, 235);
    padding: 5rem 8vw 4rem;
}

.ltad-vehicle-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

/* Badge */
.trust-badge-hell {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--ltad-accent);
    border: 1.5px solid var(--ltad-accent);
    padding: 5px 16px;
    margin-bottom: 1.1rem;
}

/* Heading + Subtitle */
.trust-header h2 {
    font-family: 'Inter', sans-serif !important;
    font-size: clamp(1.85rem, 3.2vw, 2.6rem) !important;   /* 30–42px, skaliert mit Viewport */
    font-weight: 900 !important;
    letter-spacing: -0.035em !important;
    color: rgb(17, 24, 39) !important;
    margin-bottom: 0.6rem !important;
    line-height: 1.05 !important;
}
.trust-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem !important;
    color: rgba(120, 113, 108, 0.9) !important;
    line-height: 1.6;
    font-weight: 300;
}

/* Bootstrap Card-Chrome entfernen */
.kategorieAuswahl.card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
}
.kategorieAuswahl .card-body { padding: 0 !important; }

/* Selector-Zeile */
.kategorieAuswahl .selections {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;
    gap: 0.75rem !important;
    flex-wrap: wrap !important;
}

.auswahlWrapper {
    flex: 0 0 320px !important;
    max-width: 100% !important;
    padding: 0 !important;
}
.auswahlWrapper label { display: none !important; }

/* Native <select> */
.auswahlWrapper select.form-control {
    width: 100% !important;
    height: 52px !important;
    border: 1.5px solid rgba(0,0,0,0.12) !important;
    border-radius: 0 !important;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23968c76' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") right 16px center no-repeat !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
    color: #1a1a1a !important;
    padding: 0 40px 0 16px !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    box-shadow: none !important;
    cursor: pointer;
    transition: border-color 0.2s ease;
}
.auswahlWrapper select.form-control:focus {
    border-color: var(--ltad-accent) !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Bootstrap Select Button (JTL) */
.bootstrap-select .btn.dropdown-toggle,
.bootstrap-select .btn.dropdown-toggle.btn-light {
    width: 100% !important;
    height: 52px !important;
    background: #fff !important;
    border: 1.5px solid rgba(0,0,0,0.12) !important;
    border-radius: 0 !important;
    color: #6b6355 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
    padding: 0 16px !important;
    box-shadow: none !important;
    transition: border-color 0.2s ease !important;
}
.bootstrap-select .btn.dropdown-toggle:hover,
.bootstrap-select .btn.dropdown-toggle:focus {
    background: #faf9f7 !important;
    border-color: var(--ltad-accent) !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Dropdown-Menü */
.bootstrap-select .dropdown-menu {
    border: 1.5px solid rgba(0,0,0,0.1) !important;
    border-radius: 0 !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1) !important;
    padding: 0 !important;
    font-family: 'Inter', sans-serif !important;
}
.bootstrap-select .dropdown-menu .inner { max-height: 280px !important; }
.bootstrap-select .dropdown-menu li a,
.bootstrap-select .dropdown-menu .dropdown-item {
    font-size: 0.78rem !important;
    font-weight: 500 !important;
    padding: 10px 16px !important;
    color: #1a1a1a !important;
    letter-spacing: 0.02em !important;
}
.bootstrap-select .dropdown-menu li a:hover,
.bootstrap-select .dropdown-menu .dropdown-item:hover,
.bootstrap-select .dropdown-menu li.selected a {
    background: rgb(242, 240, 235) !important;
    color: var(--ltad-accent) !important;
}

/* Suchfeld */
.bootstrap-select .bs-searchbox {
    padding: 8px 10px !important;
    border-bottom: 1px solid rgba(0,0,0,0.07) !important;
}
.bootstrap-select .bs-searchbox input.form-control {
    border: 1.5px solid rgba(0,0,0,0.1) !important;
    border-radius: 0 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.78rem !important;
    padding: 8px 12px !important;
    box-shadow: none !important;
}
.bootstrap-select .bs-searchbox input.form-control:focus {
    border-color: var(--ltad-accent) !important;
    box-shadow: none !important;
}

/* CTA + Löschen */
.kategorieAuswahl .buttons {
    flex: 0 0 auto !important;
    padding: 0 !important;
    display: flex !important;
    align-items: flex-end !important;
}
.kategorieAuswahl .buttons label { display: none !important; }
.btn-group { display: flex !important; gap: 0.5rem !important; }

#ndAuswahlLink.btn.btn-primary {
    background: var(--ltad-accent) !important;
    border: none !important;
    border-radius: 0 !important;
    color: #fff !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.65rem !important;
    font-weight: 900 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    height: 52px !important;
    padding: 0 32px !important;
    white-space: nowrap;
    display: inline-flex !important;
    align-items: center !important;
    transition: background 0.3s ease, transform 0.3s ease !important;
}
#ndAuswahlLink.btn.btn-primary:not(.disabled):hover {
    background: var(--ltad-accent-h) !important;
    transform: translateX(4px) !important;
}
#ndAuswahlLink.btn.btn-primary.disabled,
#ndAuswahlLink.btn.btn-primary[disabled] {
    background: rgba(150,140,118,0.35) !important;
    color: rgba(255,255,255,0.6) !important;
    pointer-events: none !important;
}

#deleteSelection.btn.btn-danger {
    background: transparent !important;
    border: 1.5px solid rgba(0,0,0,0.12) !important;
    border-radius: 0 !important;
    color: rgba(120,113,108,0.5) !important;
    height: 52px !important;
    width: 52px !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: border-color 0.25s, color 0.25s !important;
}
#deleteSelection.btn.btn-danger:hover {
    border-color: rgba(180,60,60,0.5) !important;
    color: rgba(180,60,60,0.8) !important;
    background: transparent !important;
}

/* ── Garantie-Hinweis (Risk-Reversal · offen auf der Sektion, kein Panel) ── */
.ltad-vehicle-guarantee {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    max-width: 560px;
    margin: 2rem auto 0;
    padding: 0;
    background: none;
    border: none;
}

.ltad-vehicle-guarantee-icon {
    color: var(--ltad-accent);
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    margin-top: 1px;
}

.ltad-vehicle-guarantee-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.ltad-vehicle-guarantee-headline {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: -0.015em;
    color: rgb(17, 24, 39);
    line-height: 1.2;
    display: block;
}

.ltad-vehicle-guarantee-detail {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.55;
    color: rgba(80, 75, 65, 0.78);
    display: block;
}

@media (max-width: 600px) {
    .ltad-vehicle-guarantee { margin-left: 0; margin-right: 0; max-width: 100%; }
}

/* ── Trust-Pills ──────────────────────────────────────────────── */
.ltad-vehicle-trust {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.07);
}

.ltad-vehicle-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(40, 30, 20, 0.82);
    padding: 0 1.75rem;
}

.ltad-vehicle-trust-item + .ltad-vehicle-trust-item {
    border-left: 1px solid rgba(0,0,0,0.1);
}

.ltad-vehicle-trust-item svg {
    color: var(--ltad-accent);
    flex-shrink: 0;
}

/* ── Delete-Button: erst nach Auswahl sichtbar ────────────────── */
#deleteSelection.btn.btn-danger {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, border-color 0.25s, color 0.25s !important;
}
#deleteSelection.btn.btn-danger.ltad-visible {
    opacity: 1;
    pointer-events: auto;
}

/* ── Plugin-Wrapper: kein extra Padding ──────────────────────── */
.container-fahrzeugauswahloben {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

@media (max-width: 768px) {
    .ltad-vehicle { padding: 4rem 6vw 3rem; }
    .auswahlWrapper { flex: 0 0 100% !important; }
    .kategorieAuswahl .buttons { flex: 0 0 100% !important; }
    #ndAuswahlLink.btn.btn-primary { width: 100% !important; justify-content: center !important; }
    #deleteSelection.btn.btn-danger { flex-shrink: 0; }
    .ltad-vehicle-trust-item {
        padding: 0.5rem 0;
        border-left: none !important;
        width: 100%;
    }
    .ltad-vehicle-trust {
        align-items: flex-start;
        padding-left: 1rem;
    }
}

/* ══════════════════════════════════════════════════════════════
   Social Proof — Google-Rating, Kundenfotos, Kundenstimme
   Dunkler Block, schließt visuell an die USP-Sektion an
   ══════════════════════════════════════════════════════════════ */
.ltad-social {
    background: #0a0a0a;
    padding: 6rem 8vw 4.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.ltad-social-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.ltad-social-badge {
    display: inline-block;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--ltad-accent);
    border: 1.5px solid var(--ltad-accent);
    padding: 5px 16px;
    margin-bottom: 1.2rem;
}

.ltad-social-headline {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1rem;
}

.ltad-social-sub {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.4);
}

/* ── Google-Rating-Block ──────────────────────────────────────── */
.ltad-social-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    max-width: 560px;
    margin: 0 auto 4rem;
    padding: 1.25rem 1.75rem;
    border: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}
.ltad-social-rating:hover {
    border-color: var(--ltad-accent);
    background: rgba(150, 140, 118, 0.04);
}

.ltad-social-rating-stars {
    display: flex;
    gap: 2px;
    color: #f5b400;
    flex-shrink: 0;
}

.ltad-social-rating-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ltad-social-rating-score {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
}

.ltad-social-rating-meta {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.02em;
}

.ltad-social-rating-google {
    color: rgba(255,255,255,0.85);
    font-weight: 700;
}

/* ── Foto-Galerie · 3×2 ───────────────────────────────────────── */
.ltad-social-gallery {
    max-width: 1100px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.ltad-social-photo {
    margin: 0;
}

.ltad-social-photo-frame {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease, transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.ltad-social-photo:hover .ltad-social-photo-frame {
    border-color: var(--ltad-accent);
    transform: translateY(-3px);
}

.ltad-social-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ltad-social-photo-frame[data-brand]::before {
    content: attr(data-brand);
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    background: rgba(0,0,0,0.55);
    padding: 4px 10px;
    backdrop-filter: blur(4px);
    z-index: 2;
    pointer-events: none;
}

.ltad-social-photo-empty {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
}

.ltad-social-photo figcaption {
    margin-top: 0.65rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    text-align: center;
}

/* ── Kundenstimme ─────────────────────────────────────────────── */
.ltad-social-quote {
    max-width: 720px;
    margin: 0 auto;
    padding: 2.5rem 1rem 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.ltad-social-quote-mark {
    color: var(--ltad-accent);
    opacity: 0.6;
    margin-bottom: 1rem;
}

.ltad-social-quote-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.05rem, 1.8vw, 1.4rem);
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: -0.01em;
    color: rgba(255,255,255,0.92);
    margin: 0 0 1.5rem;
    font-style: italic;
}

.ltad-social-quote-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}
.ltad-social-quote-author strong {
    color: #fff;
    font-weight: 900;
}
.ltad-social-quote-author span {
    color: rgba(255,255,255,0.4);
    font-weight: 400;
}

/* ── Mobile ───────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .ltad-social-gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .ltad-social { padding: 5rem 6vw 3.5rem; }
    .ltad-social-rating { padding: 1rem 1.25rem; gap: 0.75rem; }
    .ltad-social-rating-text { align-items: center; }
    .ltad-social-gallery { grid-template-columns: 1fr; gap: 10px; }
}
