/*
 * DEPRECATED – Individuelles CSS (ehemals Customizer → Zusätzliches CSS)
 *
 * Diese Datei ersetzt die "Zusätzliches CSS"-Funktion im WordPress-Customizer,
 * die deaktiviert wurde.
 *
 * CSS-Regeln hier einfügen. Die Datei wird nach dem Haupt-Stylesheet geladen,
 * sodass alle Regeln dieses überschreiben können.
 *
 * Langfristig sollten neue Stile in die entsprechenden SCSS-Dateien unter scss/
 * ausgelagert und über `npm run compile:css` kompiliert werden.
 */


/* ================================
   Startseite Grid Container
================================ */

.custom-grid-container {
    padding-bottom: 0px !important;
    padding-top: 0px !important;
}

/* ================================
   Startseite Grid Container
================================ */



/* ANFANG LANDING PAGE */


.fs-lp.fs-theme--dark {
    --fs-bg: #0e0e10;
    --fs-surface: #18181b;
    --fs-surface-2: #141417;
    --fs-ink: #f4f4f5;
    --fs-muted: #a1a1aa;
    --fs-line: #2a2a2e;
    --fs-soft: #1f1f23;
    --fs-accent: #f38c0e;
    --fs-accent-ink: #0e0e10;
    --fs-radius: 16px;
    --fs-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
    --fs-shadow-soft: 0 1px 0 rgba(255, 255, 255, 0.04);
    --fs-max: 1120px;
    --fs-gap: 24px;

    color-scheme: dark;
    color: var(--fs-ink);
    background: var(--fs-bg);
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    line-height: 1.6;
}

/* Containers */
.fs-lp.fs-theme--dark .fs-container {
    max-width: var(--fs-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.fs-lp.fs-theme--dark .fs-eyebrow {
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--fs-muted);
    margin: 0 0 10px;
}

.fs-lp.fs-theme--dark .fs-lead {
    font-size: clamp(16px, 1.2vw + 12px, 20px);
    color: var(--fs-muted);
    margin: 12px 0 18px;
}

.fs-lp.fs-theme--dark .fs-micro {
    font-size: 13px;
    color: var(--fs-muted);
    margin-top: 14px;
}

/* Links: do not rely on color only */
.fs-lp.fs-theme--dark a {
    color: var(--fs-accent);
    text-decoration: none;
    text-underline-offset: 3px;
}
.fs-lp.fs-theme--dark a:hover,
.fs-lp.fs-theme--dark a:focus-visible {
    text-decoration: underline;
}

/* Focus styles (keyboard) – designed to satisfy non-text contrast & focus appearance */
.fs-lp.fs-theme--dark :is(a, button, input, select, textarea):focus-visible {
    outline: none;
    /* Two-layer ring:
       inner ring matches background (clear separation from component),
       outer ring is accent (clear separation from page background) */
    box-shadow: 0 0 0 2px var(--fs-bg), 0 0 0 5px rgba(243, 140, 14, 0.95);
    border-radius: 12px;
}

/* Buttons */
.fs-lp.fs-theme--dark .fs-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.fs-lp.fs-theme--dark .fs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease, border-color 150ms ease;
}

.fs-lp.fs-theme--dark .fs-btn--primary {
    background: var(--fs-accent);
    color: #ffffff;
    box-shadow: var(--fs-shadow);
}

.fs-lp.fs-theme--dark .fs-btn--primary:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.fs-lp.fs-theme--dark .fs-btn--ghost {
    background: transparent;
    color: var(--fs-ink);
    border-color: var(--fs-line);
}

.fs-lp.fs-theme--dark .fs-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(243, 140, 14, 0.55);
}

.fs-lp.fs-theme--dark .fs-btn--small {
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 14px;
}

.fs-lp.fs-theme--dark .fs-btn--full {
    width: 100%;
}

/* HERO */
.fs-lp.fs-theme--dark .fs-hero {
    padding: 56px 0 30px;
    background: radial-gradient(1200px 600px at 10% 0%, rgb(243 140 14 / 51%), transparent 55%), linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, #000000 100%)
}

.fs-lp.fs-theme--dark .fs-hero__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--fs-gap);
    align-items: center;
}

.fs-lp.fs-theme--dark .fs-hero h1 {
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.08;
    margin: 0;
    color: var(--fs-ink);
}

.fs-lp.fs-theme--dark .fs-hero__visual {
    position: relative;
    border-radius: var(--fs-radius);
    overflow: hidden;
    box-shadow: var(--fs-shadow);
    background: #000000;
    min-height: 260px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.fs-lp.fs-theme--dark .fs-hero__img {
    width: 100%;
    height: auto;
    display: block;
}

.fs-lp.fs-theme--dark .fs-hero__overlay {
    position: absolute;
    inset: auto 14px 14px 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.fs-lp.fs-theme--dark .fs-hero__chip {
    background: rgb(243 140 14 / 71%);
    border: 1px solid var(--fs-line);
    border-radius: 999px;
    padding: 8px 10px;
    font-size: 12px;
    color: var(--fs-ink);
    backdrop-filter: blur(6px);
}

/* TRUST */
.fs-lp.fs-theme--dark .fs-trust {
    padding: 18px 0 36px;
    background: #000000;
}

.fs-lp.fs-theme--dark .fs-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.fs-lp.fs-theme--dark .fs-badge {
    display: flex;
    gap: 10px;
    padding: 14px;
    border: 1px solid var(--fs-line);
    border-radius: 14px;
    box-shadow: var(--fs-shadow-soft);
}

.fs-lp.fs-theme--dark .fs-badge__icon {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(243, 140, 14, 0.18);
    color: var(--fs-accent);
    font-weight: 900;
}

.fs-lp.fs-theme--dark .fs-badge__text strong {
    display: block;
    font-size: 14px;
    color: var(--fs-ink);
}

.fs-lp.fs-theme--dark .fs-badge__text span {
    display: block;
    font-size: 12px;
    color: var(--fs-muted);
}

/* SECTIONS */
.fs-lp.fs-theme--dark .fs-section {
    padding: 56px 0;
    background: #0c0d0e;
}

.fs-lp.fs-theme--dark .fs-section--alt {
    background: #000000;
}

.fs-lp.fs-theme--dark .fs-section--cta {
    background: #0c0d0e;
    color: var(--fs-ink);
}

.fs-lp.fs-theme--dark .fs-section__header {
    max-width: 820px;
    margin-bottom: 24px;
}

.fs-lp.fs-theme--dark .fs-section__header h2 {
    font-size: clamp(22px, 2.2vw, 30px);
    margin: 0 0 10px;
    color: var(--fs-ink);
}

.fs-lp.fs-theme--dark .fs-section__header p {
    margin: 0;
    color: var(--fs-muted);
}

/* CARDS */
.fs-lp.fs-theme--dark .fs-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.fs-lp.fs-theme--dark .fs-card {
    border: 1px solid var(--fs-line);
    border-radius: var(--fs-radius);
    padding: 18px;
    box-shadow: var(--fs-shadow-soft);
}

.fs-lp.fs-theme--dark .fs-card:hover {
    border-color: rgba(243, 140, 14, 0.55);
    background:
            radial-gradient(800px 300px at 20% 0%, rgba(243, 140, 14, 0.14), transparent 60%),
            #000000;
}

.fs-lp.fs-theme--dark .fs-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: var(--fs-ink);
}

.fs-lp.fs-theme--dark .fs-card p {
    margin: 0 0 12px;
    color: var(--fs-muted);
}

.fs-lp.fs-theme--dark .fs-list {
    margin: 0 0 12px;
    padding-left: 18px;
    color: var(--fs-ink);
}

.fs-lp.fs-theme--dark .fs-link {
    font-weight: 900;
    color: var(--fs-accent);
    text-decoration: none;
}
.fs-lp.fs-theme--dark .fs-link:hover,
.fs-lp.fs-theme--dark .fs-link:focus-visible {
    text-decoration: underline;
}

/* VIDEOS */
.fs-lp.fs-theme--dark .fs-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.fs-lp.fs-theme--dark .fs-video-card { margin: 0; }

.fs-lp.fs-theme--dark .fs-video-shell {
    position: relative;
    border-radius: var(--fs-radius);
    overflow: hidden;
    background: #05070a;
    box-shadow: var(--fs-shadow);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Gradient overlay for better CTA/controls readability */
.fs-lp.fs-theme--dark .fs-video-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.65) 100%);
    pointer-events: none;
}

.fs-lp.fs-theme--dark .fs-video {
    width: 100%;
    height: auto;
    display: block;
    /* Default ratio; JS will set data-active-format to adjust */
    aspect-ratio: 16 / 9;
    background: #05070a;
}

/* Aspect ratios based on format selection */
.fs-lp.fs-theme--dark .fs-video[data-active-format="1x1"] { aspect-ratio: 1 / 1; }
.fs-lp.fs-theme--dark .fs-video[data-active-format="9x16"] { aspect-ratio: 9 / 16; }

.fs-lp.fs-theme--dark .fs-video-cta {
    position: absolute;
    inset: auto 12px 12px 12px;
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
    z-index: 2;
}

.fs-lp.fs-theme--dark .fs-video-cta .fs-btn { pointer-events: auto; }

.fs-lp.fs-theme--dark .fs-video-caption {
    display: grid;
    gap: 4px;
    padding: 10px 2px 0;
}

.fs-lp.fs-theme--dark .fs-video-caption strong { color: var(--fs-ink); }

.fs-lp.fs-theme--dark .fs-video-caption span {
    color: var(--fs-muted);
    font-size: 13px;
}

/* STEPS */
.fs-lp.fs-theme--dark .fs-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.fs-lp.fs-theme--dark .fs-step {
    border: 1px solid var(--fs-line);
    border-radius: var(--fs-radius);
    padding: 18px;
    box-shadow: var(--fs-shadow-soft);
}

.fs-lp.fs-theme--dark .fs-step__num {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(243, 140, 14, 0.18);
    color: var(--fs-accent);
    font-weight: 900;
    margin-bottom: 10px;
}

/* SPECS */
.fs-lp.fs-theme--dark .fs-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.fs-lp.fs-theme--dark .fs-spec {
    border: 1px solid var(--fs-line);
    border-radius: var(--fs-radius);
    padding: 18px;
    box-shadow: var(--fs-shadow-soft);
}

/* LOGOS */
.fs-lp.fs-theme--dark .fs-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.fs-lp.fs-theme--dark .fs-logo {
    border: 1px dashed rgba(255, 255, 255, 0.20);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    padding: 14px;
    text-align: center;
    color: var(--fs-muted);
    font-weight: 800;
}

/* FORM / CTA SECTION */
.fs-lp.fs-theme--dark .fs-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
}

.fs-lp.fs-theme--dark .fs-form__box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--fs-radius);
    padding: 18px;
    box-shadow: var(--fs-shadow-soft);
}

.fs-lp.fs-theme--dark .fs-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.fs-lp.fs-theme--dark .fs-field { display: grid; gap: 6px; }
.fs-lp.fs-theme--dark .fs-field--full { grid-column: 1 / -1; }

.fs-lp.fs-theme--dark .fs-field label {
    font-size: 13px;
    font-weight: 900;
    color: rgba(248, 250, 252, 0.92);
}

.fs-lp.fs-theme--dark .fs-form input,
.fs-lp.fs-theme--dark .fs-form select,
.fs-lp.fs-theme--dark .fs-form textarea {
    width: 90%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
    color: var(--fs-ink);
    padding: 12px 12px;
    outline: none;
    box-shadow: none;
}

.fs-lp.fs-theme--dark .fs-form input::placeholder,
.fs-lp.fs-theme--dark .fs-form textarea::placeholder {
    color: var(--fs-ink);
}

.fs-lp.fs-theme--dark .fs-form input:focus,
.fs-lp.fs-theme--dark .fs-form select:focus,
.fs-lp.fs-theme--dark .fs-form textarea:focus {
    border-color: rgba(243, 140, 14, 0.70);
    box-shadow: 0 0 0 2px var(--fs-bg), 0 0 0 5px rgba(243, 140, 14, 0.55);
}

.fs-lp.fs-theme--dark .fs-consent .fs-checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    color: rgba(248, 250, 252, 0.78);
}

.fs-lp.fs-theme--dark .fs-checkbox input { margin-top: 2px;
    width: 10%;
}

.fs-lp.fs-theme--dark .fs-micro--center { text-align: center; }

/* Responsive */
@media (max-width: 1100px) {
    .fs-lp.fs-theme--dark .fs-cards { grid-template-columns: repeat(1, 1fr); }
    .fs-lp.fs-theme--dark .fs-trust__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .fs-lp.fs-theme--dark .fs-hero__grid { grid-template-columns: 1fr; }
    .fs-lp.fs-theme--dark .fs-video-grid { grid-template-columns: 1fr; }
    .fs-lp.fs-theme--dark .fs-steps { grid-template-columns: 1fr; }
    .fs-lp.fs-theme--dark .fs-specs { grid-template-columns: 1fr; }
    .fs-lp.fs-theme--dark .fs-logos { grid-template-columns: repeat(3, 1fr); }
    .fs-lp.fs-theme--dark .fs-form__grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
    .fs-lp.fs-theme--dark .fs-form { grid-template-columns: 1fr; }
    .fs-lp.fs-theme--dark .fs-logos { grid-template-columns: repeat(2, 1fr); }
    .fs-lp.fs-theme--dark .fs-hero { padding-top: 42px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .fs-lp.fs-theme--dark .fs-btn {
        transition: none;
    }
}


/* ENDE LANDING PAGE */




/* Grundlayout */
.stahlflex-configurator>.configuration-preview>div>div>img {
    padding-top: 4px;
}
@media (max-width: 768px) {
    .stahlflex-configurator>.configuration-preview>div>div>img {
        max-height: 250px;
        width: 100%;
        margin-top: -8px;
    }
}

.fs-manufacturer-section {
    background: #050505;
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    margin: 2rem 0;
    box-shadow:
            0 18px 45px rgba(0, 0, 0, 0.8),
            0 -2px 8px rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: visible;
    color: #f5f5f5;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.fs-manufacturer-section * {
    box-sizing: border-box;
}

/* Header */
.fs-manufacturer-header h2 {
    font-size: 1.7rem;
    margin: 0 0 0.25rem;
    letter-spacing: 0.03em;
}

.fs-manufacturer-header p {
    margin: 0 0 1.5rem;
    color: #b3b3b3;
    font-size: 0.95rem;
}

/* Wrapper mit Fade-Out und Collapse */
.fs-manufacturer-wrapper {
    background: radial-gradient(circle at top left, #1b1b1b, #090909 55%);
    border-radius: 18px;
    padding: 1.25rem 1rem 1.25rem;
    position: relative;
    overflow: hidden;
    max-height: 380px; /* Höhe, ab der abgeschnitten wird */
    transition: max-height 0.4s ease, box-shadow 0.3s ease;
    box-shadow:
            0 14px 35px rgba(0, 0, 0, 0.9),
            0 0 0 1px rgba(255, 255, 255, 0.02);
}

/* Glow, wenn ausgeklappt */
.fs-manufacturer-wrapper.fs-expanded {
    max-height: 100%; /* praktisch offen */
    box-shadow:
            0 22px 60px rgba(0, 0, 0, 0.95),
            0 0 0 1px rgba(243, 140, 14, 0.4);
}

/* Fade-Out Effekt am unteren Rand */
.fs-manufacturer-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80px;
    background: linear-gradient(to bottom, rgba(9, 9, 9, 0), #050505 90%);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.fs-manufacturer-wrapper.fs-expanded::after {
    opacity: 0;
}

/* Inhalt */
.fs-manufacturer-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Überschrift "Beliebteste Hersteller" & Buchstaben */
.fs-letter-group {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.fs-letter-heading {
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #f38c0e;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.fs-letter-heading::before {
    content: "";
    height: 1px;
    flex: 1;
    background: linear-gradient(to right, rgba(243, 140, 14, 0.7), transparent);
    order: 1;
}

/* Für "Beliebteste Hersteller" leichte Abwandlung */
.fs-letter-group.fs-favorites .fs-letter-heading {
    font-size: 1.5rem;
    text-transform: none;
    letter-spacing: 0.08em;
    color: #ffffff;
}

.fs-letter-group.fs-favorites .fs-letter-heading span {
    background: linear-gradient(135deg, #f38c0e, #ffb766);
    -webkit-background-clip: text;
    color: transparent;
}

/* Grid der Hersteller-Boxen */
.fs-manufacturer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Hersteller-Box / Pill */
.fs-manufacturer-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: radial-gradient(circle at top left, #1c1c1c, #101010 60%);
    box-shadow:
            0 8px 18px rgba(0, 0, 0, 0.8),
            0 -1px 3px rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.84rem;
    text-decoration: none;
    color: #e5e5e5;
    position: relative;
    overflow: hidden;
    transition:
            transform 0.18s ease,
            box-shadow 0.18s ease,
            border-color 0.18s ease,
            background 0.18s ease;
    cursor: pointer;
    white-space: nowrap;
}

.fs-manufacturer-pill::before {
    content: "";
    position: absolute;
    top: -120%;
    left: -40%;
    width: 80%;
    height: 260%;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.16), transparent 60%);
    opacity: 0;
    transform: translate3d(-10px, 0, 0) rotate(8deg);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.fs-manufacturer-pill:hover,
.fs-manufacturer-pill:focus-visible {
    transform: translateY(-2px);
    box-shadow:
            0 12px 28px rgba(0, 0, 0, 0.9),
            0 0 0 1px rgba(243, 140, 14, 0.6);
    border-color: rgba(243, 140, 14, 0.7);
    background: radial-gradient(circle at top left, #222222, #141414 70%);
    outline: none;
}

.fs-manufacturer-pill:hover::before,
.fs-manufacturer-pill:focus-visible::before {
    opacity: 1;
    transform: translate3d(10px, 0, 0) rotate(8deg);
}

/* Favoriten optisch hervorheben */
.fs-manufacturer-pill.fs-favorite {
    border-color: rgba(243, 140, 14, 0.75);
    box-shadow:
            0 0 0 1px rgba(243, 140, 14, 0.8),
            0 10px 26px rgba(0, 0, 0, 0.95);
    background: radial-gradient(circle at top left, #262626, #141414 65%);
}

.fs-manufacturer-pill.fs-favorite span {
    background: linear-gradient(135deg, #f38c0e, #ffb766);
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 600;
}

/* Toggle-Button */
.fs-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 1.1rem;
}

.fs-toggle-btn {
    border: none;
    border-radius: 999px;
    padding: 0.55rem 1.6rem;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    background: linear-gradient(135deg, #f38c0e, #ffb766);
    color: #101010;
    font-weight: 600;
    box-shadow:
            0 10px 26px rgba(0, 0, 0, 0.85),
            0 0 0 1px rgba(0, 0, 0, 0.6);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition:
            transform 0.18s ease,
            box-shadow 0.18s ease,
            filter 0.18s ease;
}

.fs-toggle-btn::after {
    content: "▼";
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.fs-toggle-btn.fs-expanded::after {
    transform: rotate(180deg);
}

.fs-toggle-btn:hover {
    transform: translateY(-1px);
    box-shadow:
            0 14px 32px rgba(0, 0, 0, 0.95),
            0 0 0 1px rgba(0, 0, 0, 0.8);
    filter: brightness(1.04);
}

/* Responsives Design */
@media (min-width: 768px) {
    .fs-manufacturer-section {
        padding: 2.75rem 2.25rem;
    }

    .fs-manufacturer-header h2 {
        font-size: 1.9rem;
    }

    .fs-manufacturer-wrapper {
        padding: 1.5rem 1.25rem 1.5rem;
        max-height: 420px;
    }

    .fs-manufacturer-pill {
        font-size: 1rem;
    }
}

@media (min-width: 1200px) {
    .fs-manufacturer-section {
        padding: 3rem 2.75rem;
    }

    .fs-manufacturer-wrapper {
        max-height: 300px;
    }
}

/*Content Bereich Daniel test */

/* Content-Section unter der Suche */
.fs-content-section {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

/* Karten / Blöcke */
.fs-content-card {
    background: radial-gradient(circle at top left, #151515, #050505 60%);
    border-radius: 20px;
    padding: 1.8rem 1.5rem;
    box-shadow:
            0 18px 45px rgba(0, 0, 0, 0.9),
            0 0 0 1px rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
    color: #f3f3f3;
    transform: translateY(8px);
    opacity: 0;
    transition:
            opacity 0.5s ease-out,
            transform 0.5s ease-out,
            box-shadow 0.3s ease,
            background 0.3s ease;
}

/* Sichtbar durch Scroll-Animation */
.fs-content-card.fs-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Cards: allgemeiner Text */
.fs-content-heading {
    font-size: 1.25rem;
    margin: 0 0 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
    position: relative;
}

.fs-content-heading::after {
    content: "";
    display: block;
    margin-top: 0.55rem;
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, #f38c0e, transparent);
    border-radius: 999px;
}

.fs-content-title {
    font-size: 1.7rem;
    margin: 0 0 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffffff;
}

.fs-content-lead {
    font-size: 1rem;
    line-height: 1.7;
    color: #e8e8e8;
    margin: 0 0 0.7rem;
}

.fs-content-text {
    font-size: 1.02rem;
    line-height: 1.7;
    color: #c9c9c9;
    margin: 0 0 0.7rem;
}

.fs-content-list p {
    font-size: 1.02rem;
    line-height: 1.7;
    color: #d8d8d8;
    margin: 0.35rem 0;
}

.fs-content-list strong {
    color: #f38c0e;
}

/* Links */
.fs-content-list a {
    color: #f38c0e;
    text-decoration: none;
    border-bottom: 1px solid rgba(243, 140, 14, 0.4);
    padding-bottom: 1px;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.fs-content-list a:hover {
    color: #ffb766;
    border-color: rgba(255, 183, 102, 0.8);
}

/* Hero-Grid (Bild + Text) */
.fs-content-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
}

.fs-content-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fs-image-frame {
    border-radius: 18px;
    overflow: hidden;
    background: radial-gradient(circle at top left, #222, #111);
    padding: 0.35rem;
    box-shadow:
            0 16px 38px rgba(0, 0, 0, 0.95),
            0 0 0 1px rgba(255, 255, 255, 0.05);
    max-width: 420px;
    width: 100%;
}

.fs-image-frame img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
    object-fit: cover;
}

/* breite Bildvariante */
.fs-image-frame-wide {
    max-width: 100%;
}

/* Texte im Hero */
.fs-content-hero-text {
    display: flex;
    flex-direction: column;
}

/* Technische Daten Grid */
.fs-content-tech-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr);
    gap: 1.4rem;
}

.fs-content-tech-image {
    order: -1;
}

.fs-content-tech-text {
    display: flex;
    flex-direction: column;
}

/* Responsive Breakpoints */
@media (min-width: 768px) {
    .fs-content-card {
        padding: 2rem 1.8rem;
    }

    .fs-content-hero-grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
        align-items: center;
    }

    .fs-content-tech-grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
        align-items: center;
    }

    .fs-content-tech-image {
        order: 0;
    }

    .fs-content-title {
        font-size: 1.9rem;
    }

    .fs-content-heading {
        font-size: 1.3rem;
    }
}

@media (min-width: 1100px) {
    .fs-content-card {
        padding: 2.2rem 2.2rem;
    }

    .fs-content-hero-grid {
        gap: 2rem;
    }

    .fs-content-tech-grid {
        gap: 2rem;
    }
}
/* Daniel Test Ende */

.button-text a {
    display: inline-block;
    margin-top: 0.5rem;
    color: white;
    background: #f38c0e;
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}
[hidden] { display: none !important; }
.neo-toggle[hidden] { display: none !important; }

.neo-wrap {
    padding: 30px;
    display: grid;
    place-items: center;
    background: #f2f4f8;
}

.neo-card {
    width: 100%;
    max-width: 90%;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 14px 14px 28px rgba(0, 0, 0, 0.1), -14px -14px 28px rgba(255, 255, 255, 0.8);
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 20px;
    padding: 24px;
    transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
    align-items: center;
}

.neo-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.neo-card:hover {
    transform: translateY(-5px);
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.15), -16px -16px 38px rgba(255, 255, 255, 0.9);
}

.neo-media {
    margin: 0;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 350px;
    justify-self: center;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.neo-media img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s ease;
    margin: 0;
    float: none;
}

.neo-media img.alignleft,
.neo-media img.alignright,
.neo-media img.aligncenter {
    float: none !important;
    margin: 0 !important;
}

.neo-card:hover .neo-media img {
    transform: scale(1.05);
}

.neo-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.neo-kicker {
    text-transform: uppercase;
    font-size: 0.8rem;
    color: #666;
}

.neo-title {
    font-size: 1.4rem;
    margin: 0;
}

.neo-text {
    color: #222;
    line-height: 1.6;
}

.neo-fader {
    position: relative;
}

.neo-fader::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), #fff);
}

.neo-morezone[hidden] {
    display: none !important;
}

.neo-actions {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    min-width: 0;
    justify-content: center;
}

.neo-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    background: #f3f4f6;
    padding: 10px 20px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: inset 1px 1px 2px #fff, 4px 4px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: black;
}

.neo-button:hover {
    background: #e0e4eb;
    transform: translateY(-1px);
}

.neo-link {
    color: #4f7cff;
    text-decoration: none;
    font-weight: 600;
}

.neo-link:hover {
    text-decoration: underline;
}

.neo-btn-orange {
    display: inline-block;
    background: #f7931e;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.neo-btn-orange:hover {
    background: #ffa733;
    transform: translateY(-2px);
}

.neo-btn-orange:active {
    background: #e6891a;
    transform: translateY(0);
}

.neo-text {
    overflow: hidden;
    transition: max-height 0.5s ease;
    position: relative;
}

.neo-text.collapsed::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), #fff);
    pointer-events: none;
}

.neo-card.neo-reverse {
    grid-template-columns: 70% 30%;
}

.neo-card.neo-reverse .neo-content {
    order: 1;
}

.neo-card.neo-reverse .neo-media {
    order: 2;
    justify-self: center;
}

.neo-card.neo-contact {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 30px;
}

.neo-card.neo-contact .neo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.neo-card.neo-contact .neo-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.neo-card.neo-contact .neo-text {
    max-width: 700px;
    line-height: 1.6;
    color: #1a2333;
}

.neo-card.neo-contact .neo-actions {
    margin-top: 10px;
}

@media (max-width: 900px) {
    .neo-card {
        grid-template-columns: 1fr;
    }

    .neo-media {
        max-width: 100%;
        aspect-ratio: 1 / 1;
    }

    .neo-card.neo-reverse {
        grid-template-columns: 1fr;
    }

    .neo-card.neo-reverse .neo-media {
        order: 1;
    }

    .neo-card.neo-reverse .neo-content {
        order: 2;
    }

    .neo-card.neo-contact {
        padding: 30px 20px;
    }

    .neo-card.neo-contact .neo-title {
        font-size: 1.3rem;
    }
}





/*Julian sein CSS */

.konf-stepBody video {
    cursor: pointer;
    width: 327px;
    height: auto;
    display: block;
    aspect-ratio: 1 / 1;
    background: #05070a;
    transition: 0.3s ease;
    border-radius: 16px;
}

:root{
    --brand: #ef8a0c;
    --surface: #F5F5F5;
    --text: #000;
    --shadow-sm: 0 4px 12px rgba(0,0,0,.08);
    --shadow-md: 0 8px 20px rgba(0,0,0,.12);
    --radius: 12px;
    --space: 3rem;
    --space-sm: 1rem;
}


a, button, .btn, .kontakt-button, .wp-block-button__link{outline:none;}
a:focus-visible, button:focus-visible, .btn:focus-visible, .kontakt-button:focus-visible, .wp-block-button__link:focus-visible{
    outline:3px solid #000; outline-offset:2px;

}


.produktbeschreibung-section{
    border:3px solid var(--brand);
    background-image:url("https://fabian-spiegler.de/wp-content/uploads/2025/11/Hintergrund.png");
    background-repeat: repeat-x;
    background-position: top center;
    background-size: auto;
    background-attachment: fixed;
}
@media (max-width:768px){
    .produktbeschreibung-section{
        background-attachment: scroll;
        background-size: contain;
        background-repeat: repeat-x;
        background-repeat: repeat-y;
        background-position: top center;
    }
}


.produktbeschreibung-heading{
    font-family:"Antonio","sans-serif";
    font-size:3.5rem !important;
    color:#f0f0f0 !important;
    margin-bottom:.5rem !important;
    text-align:center !important;
    text-shadow:0 0 20px #000 !important;
    padding-top:30px;
    overflow-wrap:anywhere;
    word-break:normal;
    hyphens:auto;
    margin-left: 20px;
    margin-right: 20px;
}
@media (max-width:768px){
    .produktbeschreibung-heading{ font-size:32px !important; margin:30px !important; line-height:1.2; }
}


.vergleichs-tabelle h2, .kontakt-frage, .Fragentabelle h2, .lieferumfang__title, .Technischedaten, .technische-daten__title, .tabelle-container h2 {
    font-family: "Antonio", "sans-serif";
    font-size: 2.3rem;
    color: #000;
    margin-bottom: 2.5rem;
    text-align: center;
    margin-block-start: 0;
}




.lieferumfang{
    margin:var(--space);
    background:#F2F2F2;
    color:#111;
    border:2px solid var(--brand);
    border-radius:var(--radius);
    padding:0.6rem;
    box-shadow:var(--shadow-sm);
    font-family:'Segoe UI',system-ui,sans-serif;
    font-weight:bold;
}
@media (max-width:768px){ .lieferumfang{ margin-left:20px; margin-right:20px; } }


.lieferumfang__items{
    list-style:none;
    margin:0; padding:0;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border-radius:8px; overflow:hidden;
}
.lieferumfang__items li{
    padding:.9rem 1rem;
    text-align:center;
    border-right:2px solid #D6D6D6;
    font-family:"Antonio","sans-serif";
}
.lieferumfang__items li:last-child{ border-right:none; }
@media (max-width:768px){
    .lieferumfang__items{ grid-template-columns:1fr; }
    .lieferumfang__items li{ border-right:none; border-bottom:2px solid #D6D6D6; }
    .lieferumfang__items li:last-child{ border-bottom:none; }
}


.lieferumfang__items3{
    list-style:none;
    margin:0; padding:0;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    border-radius:8px; overflow:hidden;
}

.lieferumfang__items3 li{
    padding:.9rem 1rem;
    text-align:center;
    border-right:2px solid #D6D6D6;
    font-family:"Antonio","sans-serif";
}

.lieferumfang__items3 li:last-child{ border-right:none; }
@media (max-width:768px){
    .lieferumfang__items3{ grid-template-columns:1fr; }
    .lieferumfang__items3 li{ border-right:none; border-bottom:2px solid #D6D6D6; }
    .lieferumfang__items3 li:last-child{ border-bottom:none; }
}




.lieferumfang__items2{
    list-style:none;
    margin:0; padding:0;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    border-radius:8px; overflow:hidden;
}

.lieferumfang__items2 li{
    padding:.9rem 1rem;
    text-align:center;
    border-right:2px solid #D6D6D6;
    font-family:"Antonio","sans-serif";
}

.lieferumfang__items2 li:last-child{ border-right:none; }
@media (max-width:768px){
    .lieferumfang__items2{ grid-template-columns:1fr; }
    .lieferumfang__items2 li{ border-right:none; border-bottom:2px solid #D6D6D6; }
    .lieferumfang__items2 li:last-child{ border-bottom:none; }
}










.technische-daten-layout{
    display:grid;
    grid-template-columns:1fr 1fr; gap:3rem;
    margin:var(--space);
    font-family:'Segoe UI',sans-serif;
}
@media (max-width:768px){
    .technische-daten-layout{ grid-template-columns:1fr; text-align:center; margin:0; }
}


@media (max-width:768px){ .textbereich1{ text-align:center;
    padding:0 18px; }
}

.tabellebereich{
    background:var(--surface);
    padding:0.5rem;
    border-radius:var(--radius);
    box-shadow:var(--shadow-sm);
    border:2px solid var(--brand);
}


@media (max-width: 768px){
    .tabellebereich{
        margin-inline: 20px;
    }
}

.tabelle-container{ overflow-x:auto; }
.tabelle{
    width:100%;
    border-collapse:collapse; background:#fff; }

.tabelle td{
    padding:7px !important;
    text-align:center;
    vertical-align:middle;
    border-bottom:1px solid #D6D6D6;
    font-size:.95rem;
    color:#000;
    background:#F5F5F5;
}

.tabelle td.label{ font-weight:600; }


.vergleich{
    display:grid;
    grid-template-columns:1fr 1fr; gap:3rem;
    margin:var(--space);
    font-family:'Segoe UI',sans-serif; text-align:center;
    grid-template-areas:"table text";
    margin-top: -50px;
}
.vergleichs-tabelle{
    grid-area:table;
    background:var(--surface);   padding:1rem;
    border-radius:var(--radius);
    box-shadow:var(--shadow-sm); display:flex;
    flex-direction:column;
    align-items:center;
    max-width:100%;
    box-sizing:border-box;
    overflow-x:auto;
    margin:0 auto;
    border:2px solid var(--brand);
    max-height: 100%;
    align-self: center;
    overflow:hidden;
}


.vergleichs-tabelle table{
    width:100%;
    max-width:600px;
    border-collapse:collapse;
    table-layout:fixed; }

.vergleichs-tabelle th, .vergleichs-tabelle td{
    padding:.75rem !important;
    text-align:center !important; vertical-align:middle;
    border-bottom:1px solid #D6D6D6;
    font-size:1rem; color:#000;
    word-break:keep-all;
}

.vergleichs-tabelle thead{ background:#f4f4f4;
    font-weight:bold;
    text-align:center; }
.vergleichs-tabelle td:nth-child(2){     color:#28a745;
    font-weight:bold; }
.vergleichs-tabelle td:nth-child(3){ color:#dc3545;
    font-weight:bold; }


.textbereich2 h3{
    font-size:1.4rem;
    margin-bottom:1rem; }

@media (max-width:768px){
    .vergleich{ grid-template-columns:1fr; grid-template-areas:"text" "table"; margin:1rem; }
    .vergleichs-tabelle{ padding-left:2px; padding-right:2px; max-height: 100%; }
    .textbereich2{ text-align:center;
        margin-top: -40px;
    }

}


.info-section{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:2rem;
    margin:var(--space);
    padding:1rem;
    font-family:'Segoe UI',sans-serif;
}
@media (max-width:768px){ .info-section{ text-align:center;
    margin:0 10px; } }


@media (max-width:768px){ .info-text{ text-align:center !important;
    padding-left: 3px;
    padding-right: 3px;
    margin-top: -40px;
} }

.info-grid-container{
    display:grid;
    grid-template-columns:1fr; gap:20px; align-items:center;
}
@media (min-width:768px){ .info-grid-container{ grid-template-columns:1fr 1fr; } }

.info-boxes{
    display:flex;
    flex-wrap:wrap; gap:1rem;
    border-radius:2px;
    border-color:#000;
}
.info-boxes .box{
    flex:1 1 200px;
    padding:1rem;
    border-radius:10px;
    background:var(--surface);
    text-align:center;
    font-size:1.2rem;
    line-height:1.5;
    border:2px solid var(--brand); transition:transform .2s, box-shadow .2s;
}

.info-boxes img{
    max-height:180px !important;
    width:auto !important;
    height:auto !important;
    margin-top: -52px;
    margin-bottom: -52px;
}


@media (max-width:768px){
    .info-boxes img{
        max-height:180px !important;
        width:auto !important;
        height:auto !important;
        margin-top: -36px;
        margin-bottom: -22px;
    }
}


@media (hover:hover) and (pointer:fine){
    .info-boxes .box:hover{ transform:scale(1.05); box-shadow:var(--shadow-md); cursor:pointer; }
}
@media (max-width:768px){ .info-boxes{ display:grid; grid-template-columns:repeat(2,1fr); } }























.motorrad-grafik{
    max-width: 900px;
    margin: 2rem auto;
    text-align: center;
}

.motorrad-grafik__img{
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.motorrad-grafik__caption{
    font-family: "Antonio", "sans-serif";
    font-size: 2.3rem;
    color: #fff;
    margin-bottom: 2.5rem;
    text-align: center;
    margin-block-start: 0;
}

@media (max-width:768px){
    .motorrad-grafik__caption{
        font-family: "Antonio", "sans-serif" !important;
        font-size: 2.3rem !important;
        color: #fff !important;
        margin-bottom: 2.5rem !important;
        text-align: center !important;
        margin-block-start: 0 !important;
    }
    .motorrad-grafik__img{
        height: auto;
        display: block;
        margin: 0 auto;
        padding: 0 10px;
        max-width: calc(100% - 20px);
    }
}


.Fragen{
    display:grid;
    grid-template-columns:1fr 1fr; gap:3rem;
    margin:var(--space);
    font-family:'Segoe UI',sans-serif; text-align:center;
    grid-template-areas:"table text";
}
.Fragentabelle{
    grid-area:table;
    background:var(--surface); padding:1rem;
    border-radius:var(--radius);
    box-shadow:var(--shadow-sm); display:flex;
    flex-direction:column;
    align-items:center;
    max-width:100%;
    box-sizing:border-box;
    overflow-x:auto;
    margin:0 auto;
    border:2px solid var(--brand);
    margin-top: 30px;
}


.Kontaktformular{
    grid-area:text;
    display:flex;
    flex-direction:column;
    justify-content:center;
    color:#000;
    font-size:1rem;
    line-height:1.6;
    font-weight:bold;
    text-align:right;
    width:100%;
}
.Kontaktformular h3{
    font-size:1.4rem;
    margin-bottom:1rem; }

@media (max-width:768px){
    .Fragen{
        display:flex;
        flex-direction:column;
        margin:var(--space-sm); }
    .Fragen .Fragentabelle{ order:1; }
    .Fragen .Kontaktformular{ order:2; text-align:center; }
}


.faq2-title{
    text-align:center;
    font-size:2rem;
    margin-bottom:1.5rem;
    color:#000; }

.faq2-item{ padding:.5rem 0; }

.faq2-item input{ display:none; }

.faq2-question{
    display:block;
    font-weight:bold;
    cursor:pointer;
    padding:.8rem;
    position:relative; transition:background .2s ease;
    border-bottom:1px solid #ccc; }

.faq2-question:hover{ background:#eee; }

.faq2-question::after{
    content:"▾"; position:absolute; right:1rem;
    transition:transform .3s; }

.faq2-item input:checked + .faq2-question::after{ transform:rotate(180deg); }
.faq2-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .3s ease, padding .3s ease; padding:0 .8rem; color:#444; }

.faq2-item input:checked ~ .faq2-answer{ max-height:300px;
    padding:.8rem; }


.wiki {
    color: #0000ff;
    text-decoration: underline;
}


.kontakt-box{
    background:var(--surface); padding:1rem;
    border-radius:var(--radius);
    box-shadow:var(--shadow-sm);
    text-align:center;
    max-width:800px;
    font-family:'Segoe UI',sans-serif; border:2px solid var(--brand);
}


.kontakt-text{
    font-size:1.1rem;
    color:#000;
    margin-bottom:1rem; }

.kontakt-daten p{
    margin:.3rem 0;
    font-size:1rem; }

.kontakt-daten a{
    color:#FF8C00;
    text-decoration:none;
    font-weight:bold; }

.kontakt-daten a:hover{ text-decoration:underline; }


@media (hover: hover) and (pointer: fine) {
    .kontakt-button:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }
}

.kontakt-button:hover{
    background-color:#b86b14; }



.trust-badges-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr); gap:16px;
    margin:var(--space);
    padding-bottom:15px;
}

@media (max-width:768px){ .trust-badges-grid{ grid-template-columns:repeat(2,1fr); margin:1rem; } }

.trust-badge-item{
    background:var(--surface);
    border-radius:16px;
    box-shadow:var(--shadow-sm);
    padding:2px;
    padding-top:10px;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    transition:all .2s ease-in-out; border:2px solid var(--brand);
}

@media (hover:hover) and (pointer:fine){
    .trust-badge-item:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); }
}


@media (max-width:768px){
    .trust-badge-item {
        margin-top: 33px;
    }
}

.trust-badge-item .icon-container{
    margin-bottom:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    height:60px;
}
.trust-badge-item .icon-container img{            width:auto !important;
    height:121px !important;
    object-fit:contain;
    max-height: 150px !important;
    margin-top: -44px;
}


.btn:hover{ background-color:#b86b14; }


@media (hover: hover) and (pointer: fine) {
    .btn:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }
}

.abstandshalter-button {
    margin-top: 30px !important;
}


.kontakt-button, .btn {

    display: inline-block;
    background-color: #f38c0e;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    transition: all .2s ease-in-out;
    border: 2px solid #000;
    font-weight: bold;
    font-size: 16px;
    padding:.7rem 1.2rem;
}


.info-text, .textbereich2, .textbereich1   {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: bold;
    text-align: center;
}



















.Gummileitung1 {
    margin-top: -393px;
    padding-left: 691px;
    max-height: 426px;
    margin-bottom: -77px;
}



.Gummileitung2 {
    margin-top: -430px;
    padding-right: 614px;
    max-height: 562px;
    margin-bottom: -130px;
}




@media (max-width:768px){
    .vergleichs-tabelle h2 {
        margin-top: 33px;
        font-family:"Antonio","sans-serif"; font-size:2.3rem;
        color:#000;
        margin-bottom:-5.5rem;
        text-align:center;
        margin-top: 60px;
    }
}

@media (max-width:768px){
    .Gummileitung1 {
        margin-top: -143px;
        padding-left: 260px;
        max-height: 212px;
        margin-bottom: -25px;
    }



    .Gummileitung2 {
        margin-top: -265px;
        padding-right: 252px;
        max-height: 343px;
        margin-bottom: -32px;
    }
}










.text-bilder-section{
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.text-bilder-text{
    margin-bottom: 2rem;
}

.text-bilder-text h2{
    font-family: "Antonio", "sans-serif";
    font-size: 2.3rem;
    color: #fff;
    margin-bottom: 2.5rem;
    text-align: center;
    margin-block-start: 0;
}


.text-bilder-text p{
    margin-bottom: .75rem;
    line-height: 1.6;
}

/* Bild-Scroller */
.text-bilder-gallery{
    position: relative;
}

.text-bilder-track{
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.text-bilder-item{
    flex: 0 0 80%;        /* Größe der Box auf Handy (ca. 80% der Breite) */
    max-width: 450px;
    background: #f7f7f7;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    scroll-snap-align: start;
    overflow: hidden;
}

.text-bilder-item img{
    width: 100%;
    height: auto;
    display: block;
}

.text-bilder-item figcaption{
    font-size: 1rem;
    line-height: 1.6;
    font-weight: bold;
    text-align: center;
    color: #000000;
}

/* Desktop: Bilder einfach nebeneinander anzeigen, kein echter Slider nötig */
@media (min-width: 768px){
    .text-bilder-track{
        overflow-x: visible;
        justify-content: center;
        gap: 10rem;
    }

    .text-bilder-item{
        flex: 0 0 40%;
        text-align: center;
    }
}



.text-bilder-item figcaption1{
    font-family: "Antonio", "sans-serif";
    font-size: 2.3rem;
    color: #000;
    margin-bottom: 2.5rem;
    text-align: center;
    margin-block-start: 0;
}










.dreier-grid1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.dreier-grid1 img {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
    border: 2px solid var(--brand);
    border-radius: var(--radius);
}

.box111 {
    background: #f3f3f3;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: auto;
}

@media (max-width: 768px) {
    .dreier-grid1 {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
      "left right"
      "center center";
    }

    .dreier-grid1 > .box11:first-of-type {
        grid-area: left;
    }


    .dreier-grid1 > .box11:last-of-type {
        grid-area: right;
    }


    .dreier-grid1 > .box111 {
        grid-area: center;
        margin-top: 20px;
    }


    .dreier-grid1 .box11 img {
        margin-left: 20px;
        margin-right: 20px;
    }
}

.dreier-grid1 table,
.dreier-grid1 table th,
.dreier-grid1 table td {
    color: #000;

}

























details {
    border: 1px solid #ccc; /* Rahmen um den gesamten Bereich */
    border-radius: 5px;
    margin-bottom: 10px;
}

summary {
    font-weight: bold;
    padding: 10px;
    cursor: pointer; /* Zeigt an, dass es klickbar ist */
}

details[open] > summary {
    /* Stile, wenn der Bereich geöffnet ist */
}

details > p {
    padding: 10px;
}












.feature-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    max-width: 480px;
    margin-top: 100px;
}

.feature-row {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    justify-content: space-between;
    border: 2px solid #000;
    border-radius: var(--radius);
}

.icon {
    font-size: 18px;
    font-weight: bold;
}

.check {
    color: #4CC08B; /* grün */
}

.cross {
    color: #FF7B9C; /* rosa */
}

.text {
    flex: 1;
    margin: 0 12px;
    font-size: 15px;
    color: #444;
    text-align: center;
}



/* Handy-Ansicht */
@media (max-width: 768px) {

    .dreier-grid1 {
        display: grid;
        grid-template-columns: 1fr 1fr;           /* 2 Spalten */
        grid-template-areas:
      "img1 img2"                            /* oben: 2 Bilder nebeneinander */
      "table table";                         /* darunter: Tabelle über ganze Breite */
        gap: 12px;
    }

    .dreier-grid1 > .box11:first-of-type {
        grid-area: img1;                         /* erstes Bild = links */
    }

    .dreier-grid1 > .feature-table {
        grid-area: table;                        /* Tabelle = Reihe darunter */
    }

    .dreier-grid1 > .box11:last-of-type {
        grid-area: img2;                         /* zweites Bild = rechts */
    }

    .dreier-grid1 img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        object-fit: cover;
    }

    .feature-table {
        margin-top: 4px;                         /* kleiner Abstand zu den Bildern */
    }
}






.text-box {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    font-family: sans-serif;
}



.readmore-text {
    font-size: 1rem;
    color: #fff;
    line-height: 1.6;
    text-align: center;
}


/* Checkbox verstecken */
#readmore-toggle {
    display: none;
}

/* ----- Handy-Ansicht ----- */
@media (max-width: 768px) {

    /* Eingeklappter Zustand */
    .readmore-text {
        max-height: 4.5em; /* ca. 3 Zeilen */
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    /* Ausgeklappt */
    #readmore-toggle:checked ~ .readmore-text {
        max-height: 200rem; /* sehr groß */
    }



    /* Button */
    .readmore-btn {
        display: inline-block;
        margin-top: 8px;
        padding: 6px 12px;
        background: #f38c0e;
        color: white;
        border-radius: 5px;
        cursor: pointer;
        font-size: 0.9rem;
        display: block;
        margin-left: 40px;
        margin-right: 40px;
        text-align:center;
    }

    /* Button-Text automatisch ändern */
    #readmore-toggle:checked + .readmore-text + .readmore-btn::after {
        content: "Weniger anzeigen";
    }

    #readmore-toggle:not(:checked) + .readmore-text + .readmore-btn::after {
        content: "Weiterlesen";
    }
}

/* ----- PC/Desktop: Text immer offen, Button ausblenden ----- */
@media (min-width: 769px) {
    .readmore-btn {
        display: none;
    }

    .readmore-text {
        max-height: none !important;
    }
}











.konfig-besch{
    --bg:#0b0c0f;

}

.konf-hinten{
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}



/* ===== Über-Seite: Konfiguratoren (nur HTML+CSS) ===== */
.konf-about{
    --bg:#0b0c0f;
    --bg2:#101218;
    --card:#0f1117;
    --text:#f3f5f7;
    --muted:#b8bec9;
    --line:rgba(255,255,255,.10);
    --orange:#ff7a00;
    --orange2:#ff9a3c;

    background:
            radial-gradient(1200px 520px at 15% 0%, rgba(255,122,0,.10), transparent 58%),
            radial-gradient(900px 520px at 85% 25%, rgba(255,154,60,.08), transparent 58%),
            linear-gradient(180deg, var(--bg), var(--bg2));
    color:var(--text);
    padding: clamp(22px, 3vw, 54px) 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.konf-wrap{
    width: 95%;
    margin:0 auto;
}

/* Hero */
.konf-hero{
    display:grid;
    grid-template-columns: 1.fr .8fr;
    gap:18px;
    border:1px solid var(--line);
    border-radius: 20px;
    padding: clamp(16px, 2.4vw, 28px);
    background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
    box-shadow: 0 18px 50px rgba(0,0,0,.45);
}

.konf-hero__left{
    text-align: center;
}

.konf-eyebrow{
    display:inline-block;
    margin:0 0 8px 0;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#fff;
    font-size:3.8rem;
}

@media (max-width: 980px){
    .konf-eyebrow {
        display:inline-block;
        margin:0 0 8px 0;
        font-weight:900;
        letter-spacing:.08em;
        text-transform:uppercase;
        color: #fff;
        font-size:2.8rem !important;
    }
}
.konf-hero h2{
    margin:0 0 10px 0;
    font-size: clamp(1.25rem, 2.2vw, 1.95rem);
    line-height:1.25;
}

.konf-lead{
    margin:0 0 14px 0;
    color:var(--muted);
    line-height:1.65;
}

.konf-badges{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom: 14px;
}

.konf-badge{
    border:1px solid var(--line);
    background: rgba(0,0,0,.22);
    color:#e9ecf2;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: .92rem;
}

.konf-ctaRow{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.konf-btn{
    display:grid;
    align-items:center;
    justify-content:center;
    padding: 10px 14px;
    border-radius: 12px;
    text-decoration:none;
    font-weight:900;
    border:1px solid rgba(255,122,0,.55);
    background: linear-gradient(135deg, #ff8c00, #ffb25c);
    color:#000;
    transition: transform .16s ease, background .16s ease, border-color .16s ease;
    white-space: nowrap;
}

.konf-btn:hover{
    transform: translateY(-2px);
    border-color: rgba(255,122,0,.70);
}

.konf-btn--ghost{
    background: #FF9900;
    border:1px solid rgba(255,255,255,.16);
}

.konf-btn--ghost:hover{
    border-color: rgba(255,122,0,.55);
}



.konf-note{
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(255,122,0,.35);
    background: rgba(255,122,0,.07);
    color:#e9ecf2;
    line-height:1.6;
}

/* Section basics */
.konf-section{
    margin-top: 18px;
    padding: clamp(14px, 2vw, 18px);
    border-radius: 20px;
    border: 1px solid var(--line);
    background: rgba(0,0,0,.16);
}

.konf-title{
    display: inline-block;
    margin: 0 0 8px 0;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    font-size: 45px;
}

@media (max-width: 980px){
    .konf-title {
        margin: 0 0 10px 0;
        font-size: 45px;
        text-align: center;
        font-family: "Antonio", "sans-serif";
    }
}
}

.konf-text{
    margin: 0 0 14px 0;
    color: var(--muted);
    line-height: 1.65;
}

/* Feature cards */
.konf-featureGrid{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.konf-card{
    border:1px solid rgba(255,255,255,.08);
    background: rgba(0,0,0,.22);
    border-radius: 18px;
    padding: 14px;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.konf-card:hover{
    transform: translateY(-3px);
    border-color: rgba(255,122,0,.45);
    background: rgba(255,122,0,.06);
}

.konf-ic{
    width: 42px;
    height: 42px;
    display:grid;
    place-items:center;
    border-radius: 14px;
    border:1px solid rgba(255,122,0,.35);
    background: rgba(255,122,0,.12);
    margin-bottom: 10px;
}

.konf-card h4{ margin: 0 0 6px 0; }
.konf-card p{ margin: 0; color: var(--muted); line-height: 1.6; font-size: .95rem; }

/* Steps */
.konf-steps{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 10px;
}

.konf-step{
    display:grid;
    padding: 12px;
    border-radius: 16px;
    border:1px solid rgba(255,255,255,.08);
    background: rgba(0,0,0,.22);
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.konf-step:hover{
    transform: translateY(-2px);
    border-color: rgba(255,122,0,.45);
    background: rgba(255,122,0,.06);
}

.konf-stepNr{
    display:grid;
    place-items:center;
    border-radius: 14px;
    font-weight: 1000;
}

.konf-stepBody p{
    margin: 6px 0 0 0;
    color: var(--muted);
    line-height: 1.6;
    font-size: .95rem;
    text-align: center;
}

/* Split boxes */
.konf-split{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 14px;
}

.konf-box{
    border:1px solid rgba(255,255,255,.08);
    background: rgba(0,0,0,.22);
    border-radius: 18px;
    padding: 14px;
    transition: transform .18s ease, border-color .18s ease;
}

.konf-box:hover{
    transform: translateY(-2px);
    border-color: rgba(255,122,0,.45);
}

.konf-box h4{ margin:0 0 10px 0; font-size: 45px; text-align: left; }

@media (max-width: 980px){
    .konf-box h4{
        margin: 0 0 10px 0;
        font-size: 45px;
        text-align: center;
    }
}

.konf-list{
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.7;
}

.kontakt-datenkonf{
    display:flex;
    justify-content:left;
    gap:12px;
    margin:20px 0;
    flex-wrap:wrap;
}

.kontakt-buttonkonf{
    padding:12px 20px;
    border-radius:999px;
    color:#fff;
    text-decoration:none;
    font-weight:700;

    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.15);
    transition:.2s;
}

.kontakt-buttonkonf:hover{
    transform:translateY(-2px);
    border-color:#ff7a00;
    background:rgba(255,122,0,.12);
}

@media(max-width:600px){
    .kontakt-buttonkonf{
        width:100%;
        text-align:center;
    }
}


/* Benefits */
.konf-benefits{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.konf-benefit{
    border:1px solid rgba(255,255,255,.08);
    background: rgba(0,0,0,.22);
    border-radius: 18px;
    padding: 14px;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
    position: relative;
    overflow: hidden;
}



.konf-benefit:hover{
    transform: translateY(-3px);
    border-color: rgba(255,122,0,.45);
    background: rgba(255,122,0,.06);
}

.konf-benefit:hover::after{
    opacity:1;
}

.konf-benefit h4{ margin:0 0 6px 0;  }
.konf-benefit p{ margin:0; color: var(--muted); line-height:1.6; font-size:.95rem; }

@media (max-width: 980px){
    .konf-benefit h4{ margin:0 0 6px 0; text-align:center;  }
}

/* CTA Wide */
.konf-ctaWide{
    margin-top: 14px;
    display:flex;
    justify-content: left;
    align-items:center;
    gap: 12px;
    padding: 14px;
}

.konf-ctaWide strong{ display:block; font-size: 45px; }
.konf-ctaWide p{ margin:4px 0 0 0; color: var(--muted); }

@media (max-width: 980px){
    .konf-ctaWide {
        margin-top: 14px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        padding: 14px;
    }
}

/* FAQ: details/summary (no JS) */
.konf-faq{
    display:grid;
    gap: 10px;
    margin-top: 10px;
}

.konf-details{
    border:1px solid rgba(255,255,255,.10);
    background: rgba(0,0,0,.22);
    border-radius: 18px;
    padding: 12px 14px;
    transition: border-color .18s ease, transform .18s ease, background .18s ease;
}

.konf-details:hover{
    transform: translateY(-2px);
    border-color: rgba(255,122,0,.45);
}

.konf-details summary{
    cursor:pointer;
    font-weight: 950;
    list-style:none;
    outline:none;
}

.konf-details summary::-webkit-details-marker{ display:none; }

.konf-details summary::after{
    content:"+";
    float:right;
    width: 34px;
    height: 34px;
    display:grid;
    place-items:center;
    border-radius: 12px;
    border:1px solid rgba(255,122,0,.35);
    background: rgba(255,122,0,.10);
    color: var(--orange2);
    font-weight: 1000;
}

.konf-details[open]{
    border-color: rgba(255,122,0,.55);
    background: rgba(255,122,0,.05);
}

.konf-details[open] summary::after{
    content:"–";
}

.konf-answer{
    margin-top: 10px;
    color: var(--muted);
    line-height: 1.65;
}

/* Strip */
.konf-strip{
    margin-top: 18px;
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    justify-items: center;
}

.konf-stripItem{
    border:1px solid rgba(255,255,255,.08);
    background: rgba(0,0,0,.22);
    border-radius: 18px;
    padding: 12px 14px;
    transition: transform .18s ease, border-color .18s ease;
}

.konf-stripItem:hover{
    transform: translateY(-2px);
    border-color: rgba(255,122,0,.45);
}

.konf-stripTop{
    display:block;
    color: var(--muted);
    font-size:.9rem;
}

.konf-stripSub{
    display:block;
    color: var(--muted);
    font-size:.95rem;
    margin-top: 2px;
}

/* Responsive */
@media (max-width: 980px){
    .konf-hero{ grid-template-columns: 1fr; }
    .konf-featureGrid{ grid-template-columns: repeat(2, 1fr); }
    .konf-steps{ grid-template-columns: 1fr; }
    .konf-split{ grid-template-columns: 1fr; }
    .konf-benefits{ grid-template-columns: repeat(2, 1fr); }
    .konf-strip{ grid-template-columns: 1fr; }
    .konf-ctaWide{ flex-direction: column; align-items: center; }
}

@media (max-width: 520px){
    .konf-featureGrid{ grid-template-columns: 1fr; }
    .konf-benefits{ grid-template-columns: 1fr; }
    .konf-statGrid{ grid-template-columns: 1fr; }
}



.konf-icon{
    width:46px;
    height:46px;
    display:grid;
    place-items:center;
    margin: 0 auto 10px auto;

    border-radius:16px;
    background:rgba(255,122,0,.15);
    border:1px solid rgba(255,122,0,.45);
    color:#ff9a3c;
    font-size:1.25rem;
}



.konf-title::after,
.konf-box h4::after{
    content: "";
    display: block;
    margin-top: 0.55rem;
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, #fff, transparent);
    border-radius: 999px;
}


.konf-eyebrow::after{
    content: "";
    display: block;
    margin-top: 0.55rem;
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, #fff, transparent);
    border-radius: 999px;
}







.direkt {
    display: inline-block;
    margin: 0 0 8px 0;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    font-size: 45px;
    font-family: "Antonio", "sans-serif";
}






/* NUR Bilder im Konfigurator-Strip */
.konf-strip a img{
    transition: transform .2s ease, box-shadow .2s ease;
    object-fit: contain;
    width: 493px;
    height: 330px;
    border-radius: 16px;
    display: block;
}

/* Hover-Effekt nur hier */
.konf-strip a:hover img{
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,.4);
}

/* Mobile */
@media (max-width: 768px){
    .konf-strip a img{
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 14px;
    }

    .konf-strip a:hover img{
        transform: none;
        box-shadow: none;
    }
}





.konf-step img {
    width: 327px;
    display: block;
    transition: 0.3s ease;
    border-radius: 16px;
}



@media (max-width: 768px) {

    .konf-step {
        text-align: center;
    }

    .konf-step img {
        width: 250px;              /* kleiner fürs Handy */
        margin-top: 20px;
    }

    .konf-stepNr {
        margin-bottom: 10px;
    }

    .konf-stepBody p {
        font-size: 14px;
        line-height: 1.4;
    }
}

.konf-stepBody {
    display: grid;
    place-items: center;align-content
}










/* ===== Thumbnail ===== */
.video-thumb {
    position: relative;
    display: inline-block;
    width: 45%;            /* ← HIER Größe ändern */
    max-width: 500px;
    cursor: pointer;
}

.video-thumb img {
    width: 100%;
    height: 280px;         /* Rechteckige Höhe */
    object-fit: cover;
    border-radius: 12px;
    display: block;
    transition: 0.3s ease;
}

.video-thumb:hover img {
    transform: scale(1.03);
}

/* ===== Play Button ===== */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
}

.play-btn::after {
    content: '';
    position: absolute;
    left: 28px;
    top: 20px;
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent white;
}

/* ===== Modal Hintergrund ===== */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Aktiv wenn geklickt */
.video-modal:target {
    display: flex;
}

/* ===== Video Box ===== */
.video-box {
    position: relative;
    width: 80%;
    max-width: 900px;
}

.video-box video {
    width: 100%;
    border-radius: 12px;
}

/* ===== Close Button ===== */
.close {
    position: absolute;
    top: -45px;
    right: 0;
    font-size: 40px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .video-thumb {
        width: 100%;
    }

    .video-thumb img {
        height: 220px;
    }

    .video-box {
        width: 95%;
    }
}

