/* --- 0. GRUND-RESET & TYPOGRAPHIE --- */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0; /* Helles Grau für den äußeren Hintergrund */
    color: #333;
    line-height: 1.6;
}
h1, h2 {
    color: #333;
    margin-top: 0;
}
.logo {
    height: 35px; /* Reduzierte Größe für bessere Platzierung */
    margin: 20px 0 0 40px;
    position: absolute;
    z-index: 10;
}
p.legal-text {
    font-size: 0.7em;
    color: #666;
    margin-top: 30px;
}

/* Dankesseite nach erfolgreichem Absenden */
.thank-you-section {
    padding: 48px 24px 40px;
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}
.thank-you-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff8c00 0%, #e67e00 100%);
    color: #fff;
    font-size: 2.2em;
    font-weight: bold;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(255, 140, 0, 0.35);
}
.thank-you-title {
    font-size: 1.75em;
    color: #333;
    margin: 0 0 20px;
    font-weight: 700;
    line-height: 1.3;
}
.thank-you-text {
    font-size: 1.05em;
    color: #555;
    line-height: 1.6;
    margin: 0 0 20px;
}
.thank-you-price-hint {
    font-size: 1em;
    color: #666;
    margin: 0 0 16px;
}
.thank-you-price-hint strong {
    color: #ff8c00;
    font-size: 1.1em;
}
.thank-you-zusatz {
    font-size: 0.95em;
    color: #555;
    line-height: 1.5;
    margin: 0 0 16px;
    padding: 12px 16px;
    background: #fafafa;
    border-radius: 8px;
    border-left: 4px solid #ff8c00;
    text-align: left;
}
.thank-you-next {
    font-size: 0.95em;
    color: #666;
    line-height: 1.5;
    margin: 0 0 32px;
}
.thank-you-back {
    margin-top: 0;
    width: auto;
    min-width: 220px;
}

.warning-text {
    color: #ff8c00; /* Orange für Warnungen */
    font-size: 0.9em;
    margin-top: 5px;
    margin-bottom: 15px;
    font-weight: bold;
}


/* --- 1. HAUPTLAYOUT (SPLIT SCREEN & ZENTRIERUNG) --- */
.booking-section {
    display: flex;
    min-height: 85vh;
    max-width: 1300px;
    margin: 40px auto;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    background-color: white;
    border-radius: 8px;
}

/* Linker Bereich: Marketing/USPs */
.left-content {
    flex: 0 0 350px;
    padding: 60px 40px;
    background-color: transparent;
    color: #333;
    border-right: 1px solid #ddd;
    position: relative; /* Für Testfeld-Positionierung */
}

/* Testfeld-Container (nur für Entwicklung) */
.test-field-container {
    font-family: Arial, sans-serif;
}

.test-field-container h3 {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.test-field-container .test-button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    transition: all 0.2s;
}

.test-field-container .test-button:active {
    transform: translateY(0);
}
.left-content h1 {
    color: #333;
    margin-bottom: 40px;
}

/* Rechter Bereich: Formular */
.right-form-container {
    flex: 1;
    background-color: white;
    padding: 40px 60px;
}


/* --- 2. USP-LISTE (LINKS) --- */
.usp-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}
.usp-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1em;
    font-weight: 500;
}
.check-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background-color: #8bc34a; /* Grün */
    color: white;
    border-radius: 50%;
    font-size: 1em;
    line-height: 1;
    flex-shrink: 0;
}


/* --- 3. FORMULARFELDER & GRUPPIERUNG --- */
.move-form input:not([type="checkbox"]),
.move-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1em;
}
.move-form label {
    display: block;
    font-size: 0.9em;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Felder nebeneinander (Vorname/Nachname, E-Mail/Telefon) */
.name-fields,
.contact-fields {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.name-fields input,
.contact-fields input {
    width: 50%;
    margin-bottom: 0;
}


/* --- 4. DATUMSEINGABE & KALENDER KORREKTUREN --- */
.date-input-group {
    position: relative;
    display: flex;
    align-items: stretch; /* Wichtig: Lässt Input und Button die gleiche Höhe einnehmen */
    margin-bottom: 10px;
    max-width: 400px;
    gap: 0;
}

/* Das Eingabefeld */
.date-input-group input {
    /* Setzt das Input-Feld auf eine feste, kleinere Breite */
    width: 300px;
    flex-grow: 0;

    margin-bottom: 0;

    /* NEU: FÜGT DEN ABSTAND VON 100PX HINZU */
    margin-left: 30px;

    /* Rahmen und Abrundungen wiederherstellen */
    border: 1px solid #ccc; /* Vollständiger Rahmen */
    border-radius: 4px;
    padding: 12px;
}

.calendar-icon {
    height: 100px;              /* Größe anpassen nach Geschmack */
    width: 100px;
    border: none;              /* Wenn du keinen Rahmen willst */
    border-radius: 8px;
    cursor: pointer;
    margin: 0;
    flex-shrink: 0;

    /* Bild als Hintergrund */
    background: url('Bilder/calendar_book_a_move.webp')
    no-repeat center center / contain;

    /* Button-Text ausblenden (falls doch noch etwas drin steht) */
    font-size: 0;
    padding: 0;
}

/* Wichtig: Passen Sie die padding-Werte (8px) und die festen Abmessungen (30px/30px) so lange an,
   bis das Icon genau in das Quadrat passt und der Rahmen sichtbar ist. */

/* Kalender-Container unter dem Input (gesteuert durch JS) */
.calendar-section {
    position: relative;
    text-align: center; /* Zentriert den Kalender */
    margin: 10px 0 25px 0;
}

.calendar-dropdown {
    position: static; /* Entfernt absolute Positionierung */
    display: inline-block; /* Für die Zentrierung */
    width: 300px;
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 10px;
}
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    margin-bottom: 10px;
    padding: 0 5px;
}
.calendar-grid {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9em;
    text-align: center;
}
.calendar-grid th, .calendar-grid td {
    padding: 5px;
    cursor: pointer;
    border-radius: 4px;
}
.calendar-grid th {
    font-size: 0.8em;
    color: #666;
}
/* Kalender-Farbcodes basierend auf Aufschlägen:
 * - bis 15% Aufschlag = grün (day-available)
 * - 15,1% bis 25% Aufschlag = gelb (day-low-price)
 * - über 25,1% Aufschlag = rot (day-high-price)
 */
.day-available { background-color: #8bc34a; color: white; font-weight: bold; } /* Grün - bis 15% Aufschlag */
.day-low-price { background-color: #ffc107; color: black; font-weight: bold; } /* Gelb - 15,1% bis 25% Aufschlag */
.day-high-price { background-color: #f44336; color: white; font-weight: bold; } /* Rot - über 25,1% Aufschlag */


/* --- 5. PREISNIVEAU --- */
.price-level-group {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.price-level-group label {
    font-weight: normal;
    margin-right: 15px;
    margin-bottom: 0;
}
.price-levels {
    display: flex;
    gap: 5px;
    margin-top: 0;
    font-size: 0.8em;
    font-weight: bold;
}
.price-levels span {
    padding: 5px 10px;
    border-radius: 4px;
    opacity: 0.5;
    cursor: pointer;
}
.price-levels .active {
    opacity: 1;
    color: white;
}
.price-levels .low { background-color: #8bc34a; }
.price-levels .medium { background-color: #ffc107; }
.price-levels .high { background-color: #ff5722; }


/* --- 6. CHECKBOX "FLEXIBLES UMZUGSDATUM" KORREKTUR --- */
.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 20px; /* Korrigierter Abstand für das Checkmark */
    margin-bottom: 25px;
    cursor: pointer;
    font-size: 0.9em;
    padding: 10px 20px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
/* Checkmark-Styling wie zuvor... */
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 16px;
    width: 16px;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 3px;
}
.checkbox-container input:checked ~ .checkmark {
    background-color: #ff8c00;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.checkbox-container input:checked ~ .checkmark:after {
    display: block;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

/* Terminflexibilität (Schritt 1) – Rabatt-Optionen */
.termin-flex-group {
    margin-bottom: 24px;
    padding: 16px 18px;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 10px;
}
.termin-flex-label {
    display: block;
    font-weight: 600;
    font-size: 1em;
    color: #333;
    margin-bottom: 4px;
}
.termin-flex-desc {
    font-size: 0.9em;
    color: #666;
    margin: 0 0 14px;
    line-height: 1.4;
}
.termin-flex-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.termin-flex-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}
.termin-flex-option:hover {
    border-color: #ff8c00;
    background: #fff8f0;
}
.termin-flex-option input[type="radio"] {
    margin: 0;
    accent-color: #ff8c00;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.termin-flex-option:has(input:checked) {
    border-color: #ff8c00;
    background: #fff8f0;
}
.termin-flex-text {
    font-size: 0.95em;
    color: #333;
}
.termin-flex-option:has(input:checked) .termin-flex-text {
    font-weight: 600;
    color: #333;
}
.termin-flex-rabatt {
    color: #ff8c00;
    font-weight: 600;
    font-size: 0.9em;
}


/* --- 7. CTA BUTTON --- */
.cta-button {
    background-color: #ff8c00;
    color: white;
    padding: 20px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1.2em;
    cursor: pointer;
    width: 100%;
    margin-top: 30px;
    font-weight: bold;
}

.step1-actions {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    align-items: center;
}
.step1-actions .test-button {
    flex: 0 0 auto;
    width: auto;
    padding: 12px 20px;
    font-size: 0.95em;
    background-color: transparent;
    color: #666;
    border: 2px solid #ccc;
}
.step1-actions .test-button:hover {
    border-color: #999;
    color: #333;
}
.step1-actions .next-step {
    flex: 1;
    margin-top: 0;
}

/* --- 8. SO FUNKTIONIERT'S SECTION --- */
.how-it-works {
    max-width: 1000px;
    margin: 80px auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.steps {
    list-style-type: decimal;
    padding-left: 20px;
    flex: 1;
    /* NEU: FÜGT DEN ABSTAND HINZU */
    margin-top: 40px;
}
.steps li {
    margin-bottom: 15px;
}
.contact-image-container {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #ccc;
    margin-left: 50px;
}

/* --- MEDIA QUERY FÜR MOBILE ANSICHT (MAX. BREITE 768PX) --- */
@media (max-width: 768px) {

    /* 1. Hauptlayout (Booking Section) */
    .booking-section {
        flex-direction: column;
        margin: 0;
        box-shadow: none;
        border-radius: 0; /* Volle Breite nutzen */
        min-height: auto;
    }

    /* 2. Linker Bereich (USPs) */
    .left-content {
        flex: auto;
        border-right: none;
        border-bottom: 1px solid #ddd;
        padding: 30px 20px;
    }
    .left-content h1 {
        margin-bottom: 20px;
    }
    .logo {
        margin: 10px 0 0 20px; /* Logo näher an den Rand */
    }

    /* 3. Rechter Bereich (Formular) */
    .right-form-container {
        padding: 30px 20px;
        margin: 0;
        box-shadow: none;
    }

    /* 4. Felder nebeneinander stapeln */
    .name-fields,
    .contact-fields {
        flex-direction: column;
        gap: 0;
    }
    .name-fields input,
    .contact-fields input {
        width: 100%;
    }

    /* 5. Kalender und Preisniveau */
    .calendar-section {
        text-align: left;
    }
    .calendar-dropdown {
        width: 100%;
    }
    .price-level-group {
        flex-direction: column;
        align-items: flex-start;
    }
    .price-level-group label {
        margin-bottom: 5px;
    }

    /* 6. So Funktioniert's Section */
    .how-it-works {
        flex-direction: column;
        align-items: center;
        margin: 40px auto;
        max-width: 90%;
    }
    .how-it-works h2 {
        text-align: center;
        padding: 20px 0 0 0;
    }
    .contact-image-container {
        margin-left: 0;
        margin-top: 30px;
    }
}
/* Styling für gesperrte und vergangene Tage */
.day-unselectable {
    background-color: #e0e0e0 !important; /* Helles Grau */
    color: #999;
    cursor: default !important;
    pointer-events: none; /* Deaktiviert Klicks */
}

/* Wochenenden und Feiertage: weiß, nicht klickbar */
.calendar-grid td[data-selectable="false"]:not(.day-unselectable) {
    background-color: #fff !important;
    color: #999;
    cursor: not-allowed !important;
    pointer-events: none;
    opacity: 0.6;
}
/* --- MULTI-STEP FORM STYLING --- */

/* Alle Schritte standardmäßig ausblenden */
.form-step {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Nur der aktive Schritt wird angezeigt */
.form-step.active {
    display: block;
    opacity: 1;
}

/* Schritt 3: Nur die passende Variante (3a oder 3b) anzeigen */
.form-step[data-step="3"] {
    display: none;
}
.form-step[data-step="3"].active {
    display: block;
    opacity: 1;
}
/* Schritt 3 wird auch ohne step-visible angezeigt, wenn active gesetzt ist */
.form-step[data-step="3"].active {
    display: block !important;
    opacity: 1;
}

/* Umzugsart-Karten (Schritt 2) */
.umzugsart-cards {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 24px;
}
.umzugsart-card {
    flex: 1;
    min-width: 260px;
    max-width: 400px;
    padding: 28px;
    border: 2px solid #ddd;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    text-align: center;
    position: relative;
}
.umzugsart-card:hover,
.umzugsart-card:focus-visible {
    border-color: #ff8c00;
    box-shadow: 0 4px 16px rgba(255, 140, 0, 0.15);
    outline: none;
    transform: translateY(-2px);
}
.umzugsart-card.selected {
    border-color: #ff8c00;
    background: #fff8f0;
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.25);
}
.umzugsart-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.umzugsart-icon--haus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23333'%3E%3Cpath d='M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z'/%3E%3C/svg%3E");
}
.umzugsart-icon--kiste {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23333'%3E%3Cpath d='M20 8h-3V4H3c-1.1 0-2 .9-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4zM6 18.5c-.83 0-1.5-.67-1.5-1.5S5.17 15.5 6 15.5s1.5.67 1.5 1.5S6.83 18.5 6 18.5zm13.5-9l1.96 2.5H17V9.5h2.5zm-1.5 9c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z'/%3E%3C/svg%3E");
}
.umzugsart-card h3 {
    margin: 0 0 8px;
    font-size: 1.15em;
    color: #333;
}
.umzugsart-desc {
    margin: 0 0 20px;
    font-size: 0.95em;
    color: #666;
    line-height: 1.5;
}
.umzugsart-card .umzugsart-next {
    margin-top: 0;
    width: auto;
    padding: 12px 24px;
}

/* --- Schritt 3a: Umzugsinfos (Vollumzug) --- */
.umzugsinfos-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
}
.umzugsinfos-form {
    flex: 1;
    min-width: 0;
    order: 1;
}
.umzugsinfos-title {
    color: #ff8c00;
    font-size: 1.8em;
    margin: 0 0 24px;
    font-weight: bold;
}
.umzugsinfos-section {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ff8c00;
}
.umzugsinfos-section:last-of-type {
    border-bottom: none;
}
.umzugsinfos-section-title {
    color: #ff8c00;
    font-size: 1.15em;
    margin: 0 0 8px;
    font-weight: 600;
}
.umzugsinfos-desc {
    color: #666;
    font-size: 0.9em;
    margin: 0 0 14px;
    line-height: 1.5;
}
.umzugsinfos-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-end;
}
.umzugsinfos-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.umzugsinfos-field label {
    font-size: 0.95em;
    color: #333;
}
.umzugsinfos-field input[type="number"],
.umzugsinfos-field select {
    width: 100%;
    min-width: 80px;
    max-width: 120px;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
}
.umzugsinfos-field select {
    max-width: 140px;
}
.umzugsinfos-section textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: inherit;
    resize: vertical;
}

/* Möbellierungsgrad: Bildkarten */
.moebilierungsgrad-cards {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 12px;
}
.moebil-card {
    flex: 1;
    min-width: 140px;
    max-width: 200px;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    text-align: center;
    position: relative;
}
.moebil-card:hover,
.moebil-card:focus-visible {
    border-color: #ff8c00;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.2);
    outline: none;
}
.moebil-card.selected {
    border-color: #ff8c00;
    background: #fff8f0;
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.25);
}
.moebil-plus {
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 1.2em;
    color: #999;
    pointer-events: none;
}
.moebil-placeholder {
    height: 120px;
    border-radius: 6px;
    margin-bottom: 8px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #e8e8e8;
}
.moebil-placeholder--niedrig {
    background-image: url('/Bilder/moebil-niedrig.png');
}
.moebil-placeholder--mittel {
    background-image: url('/Bilder/moebil-mittel.png');
}
.moebil-placeholder--hoch {
    background-image: url('/Bilder/moebil-hoch.png');
}
.moebil-label {
    font-size: 0.95em;
    font-weight: 500;
    color: #333;
}
.moebilierungsgrad-cards.validation-error {
    outline: 2px solid #c00;
    outline-offset: 4px;
    border-radius: 12px;
}

/* Umzugsinfos Sidebar: Preis + Buttons (unter dem Formular, nicht daneben) */
.umzugsinfos-sidebar {
    order: 2;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #fafafa;
    border-radius: 10px;
    border: 1px solid #eee;
}
.umzugsinfos-sidebar .umzugsinfos-price-label,
.umzugsinfos-sidebar .umzugsinfos-price-box {
    margin-right: 16px;
}
.umzugsinfos-price-label {
    color: #ff8c00;
    font-size: 1.1em;
    font-weight: 600;
    margin: 0;
}
.umzugsinfos-price-box {
    font-size: 1.6em;
    font-weight: bold;
    color: #333;
}
.umzugsinfos-sidebar .cta-button {
    margin-top: 0;
    width: auto;
    min-width: 140px;
}
.umzugsinfos-sidebar-buttons {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: stretch;
    flex-wrap: nowrap;
}

.umzugsinfos-sidebar-buttons .cta-button {
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
}

/* --- Schritt 4a: Aufbau und Abbau von Möbeln --- */
.moebel-auf-abbau-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.moebel-auf-abbau-title {
    color: #ff8c00;
    font-size: 1.6em;
    margin: 0 0 8px;
    font-weight: bold;
}
.moebel-auf-abbau-desc {
    color: #666;
    font-size: 0.95em;
    margin: 0 0 24px;
    line-height: 1.5;
}
.moebel-categories {
    margin-bottom: 20px;
}
.moebel-category {
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fafafa;
}
.moebel-category-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: #fff;
    border: none;
    border-bottom: 1px solid #eee;
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s, color 0.15s;
}
.moebel-category-toggle:hover {
    color: #ff8c00;
    background: #fffaf5;
}
.moebel-category-chevron {
    color: #ff8c00;
    font-size: 0.85em;
    transition: transform 0.2s;
}
.moebel-category-content {
    display: none;
    padding: 12px 16px 16px;
    background: #fff;
}
.moebel-category-content.moebel-category-open {
    display: block;
}
.moebel-item-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 24px;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
}
.moebel-item-row:last-child {
    border-bottom: none;
}
@media (max-width: 700px) {
    .moebel-item-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}
.moebel-item-label {
    font-size: 1em;
    font-weight: 500;
    color: #333;
}
.moebel-qty-block,
.moebel-service-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}
.moebel-qty-label,
.moebel-service-label {
    font-size: 0.8em;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.moebel-qty-wrap {
    display: inline-flex;
    align-items: stretch;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    height: 36px;
    width: 100px;
    max-width: 100px;
    flex-shrink: 0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.moebel-qty-minus,
.moebel-qty-plus {
    width: 28px;
    min-width: 28px;
    height: 100%;
    padding: 0;
    border: none;
    background: #f5f5f5;
    color: #333;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.15s, color 0.15s;
}
.moebel-qty-minus:hover,
.moebel-qty-plus:hover {
    background: #ff8c00;
    color: #fff;
}
.moebel-qty-input {
    flex: 1 1 auto;
    min-width: 3ch;
    width: 100%;
    height: 100%;
    min-height: 0;
    border: none;
    outline: none;
    text-align: center;
    font-size: 0.95em;
    font-weight: 500;
    font-family: inherit;
    line-height: 24px;
    padding: 6px 4px;
    -moz-appearance: textfield;
    appearance: none;
    box-sizing: border-box;
    background: #fff;
}
.moebel-qty-input:focus {
    outline: none;
}
.moebel-qty-input::-webkit-outer-spin-button,
.moebel-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.moebel-service-options {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    padding: 4px 0;
}
.moebel-check-option {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fafafa;
    cursor: pointer;
    font-size: 0.9em;
    color: #333;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.moebel-check-option:hover {
    border-color: #ff8c00;
    background: #fff8f0;
}
.moebel-check-option input[type="checkbox"] {
    margin: 0;
    accent-color: #ff8c00;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.moebel-check-option input[type="checkbox"]:checked + span {
    font-weight: 600;
    color: #ff8c00;
}
.moebel-check-option:has(input:checked) {
    border-color: #ff8c00;
    background: #fff8f0;
}
.moebel-check-option span {
    white-space: nowrap;
}
.moebel-auf-abbau-sidebar {
    order: 2;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #fafafa;
    border-radius: 10px;
    border: 1px solid #eee;
}
.moebel-auf-abbau-price-label {
    color: #ff8c00;
    font-size: 1.1em;
    font-weight: 600;
    margin: 0;
}
.moebel-auf-abbau-price-box {
    font-size: 1.6em;
    font-weight: bold;
    color: #ff8c00;
}
.moebel-auf-abbau-sidebar .cta-button {
    margin-top: 0;
    width: auto;
    min-width: 140px;
}

/* --- Schritt 5: Zusatzleistungen (nur Vollumzug) --- */
.zusatzleistungen-layout {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.zusatzleistungen-title {
    color: #ff8c00;
    font-size: 1.6em;
    margin: 0 0 8px;
    font-weight: bold;
    letter-spacing: -0.02em;
}
.zusatzleistungen-desc {
    color: #666;
    font-size: 0.95em;
    margin: 0 0 24px;
    line-height: 1.5;
}
.zusatz-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.zusatz-card {
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s, border-color 0.2s;
}
.zusatz-card:hover {
    border-color: #ffd9b3;
    box-shadow: 0 2px 8px rgba(255,140,0,0.08);
}
.zusatz-card[open] {
    border-color: #ff8c00;
    box-shadow: 0 2px 10px rgba(255,140,0,0.12);
}
.zusatz-card-head {
    padding: 14px 18px;
    font-size: 1.05em;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fafafa;
    transition: background 0.2s, color 0.2s;
}
.zusatz-card-head::-webkit-details-marker {
    display: none;
}
.zusatz-card-head::after {
    content: '▶';
    color: #ff8c00;
    font-size: 0.85em;
    transition: transform 0.2s;
}
.zusatz-card[open] .zusatz-card-head::after {
    transform: rotate(90deg);
}
.zusatz-card-head:hover {
    background: #fff8f0;
    color: #ff8c00;
}
.zusatz-card-body {
    padding: 16px 18px 20px;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}
.zusatz-desc {
    color: #666;
    font-size: 0.9em;
    margin: 0 0 14px;
    line-height: 1.5;
}
.zusatz-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
}
.zusatz-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.zusatz-field label {
    font-size: 0.9em;
    font-weight: 500;
    color: #555;
}
.zusatz-input,
.zusatz-field input[type="number"] {
    width: 100px;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.zusatz-input:focus,
.zusatz-field input[type="number"]:focus {
    outline: none;
    border-color: #ff8c00;
    box-shadow: 0 0 0 3px rgba(255,140,0,0.15);
}
.zusatz-field--inline {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
.zusatz-field--inline input[type="number"] {
    width: 90px;
}
.zusatz-unit {
    font-size: 1em;
    color: #666;
    font-weight: 500;
}
.zusatz-radio-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.zusatz-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #fafafa;
    cursor: pointer;
    font-size: 0.95em;
    color: #333;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.zusatz-chip:hover {
    border-color: #ff8c00;
    background: #fff8f0;
}
.zusatz-chip input[type="radio"] {
    margin: 0;
    accent-color: #ff8c00;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.zusatz-chip:has(input:checked) {
    border-color: #ff8c00;
    background: #fff8f0;
    color: #ff8c00;
    font-weight: 600;
}
.zusatz-check-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    cursor: pointer;
    font-size: 0.95em;
    color: #333;
    border-bottom: 1px solid #f5f5f5;
    transition: color 0.2s;
}
.zusatz-check-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.zusatz-check-card:first-child {
    padding-top: 0;
}
.zusatz-check-card:hover {
    color: #ff8c00;
}
.zusatz-check-card input[type="checkbox"] {
    margin: 0;
    accent-color: #ff8c00;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.zusatz-check-card:has(input:checked) span {
    font-weight: 600;
    color: #ff8c00;
}
.zusatzleistungen-sidebar {
    order: 2;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, #fffaf5 0%, #fff8f0 100%);
    border-radius: 12px;
    border: 1px solid #ffd9b3;
    box-shadow: 0 2px 8px rgba(255,140,0,0.06);
}
.zusatzleistungen-price-label {
    color: #ff8c00;
    font-size: 1.1em;
    font-weight: 600;
    margin: 0;
}
.zusatzleistungen-price-box {
    font-size: 1.8em;
    font-weight: bold;
    color: #ff8c00;
    letter-spacing: -0.02em;
}
.zusatzleistungen-sidebar .cta-button {
    margin-top: 0;
    width: auto;
    min-width: 140px;
}

.moebel-empty {
    color: #333;
    padding: 1em;
}
.moebel-empty p {
    margin: 0.5em 0;
}
.moebel-empty code {
    background: #f0f0f0;
    padding: 2px 6px;
    border-radius: 4px;
}
.moebel-retry-btn {
    margin-top: 12px;
    padding: 10px 20px;
    background: #ff8c00;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
}
.moebel-retry-btn:hover {
    background: #e67e00;
}
.moebel-empty a {
    color: #ff8c00;
}

/* Container für Zurück/Weiter Buttons in den Folgeschritten */
.navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.navigation-buttons .cta-button {
    width: auto; /* Buttons sollen nicht volle Breite einnehmen */
}
.navigation-buttons .btn {
    padding: 15px 25px;
    border: 1px solid #ccc;
    background: #f7f7f7;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    color: #333;
}


.price-display h2 {
    font-size: 2.2em;
    color: #333;
    margin: 5px 0 0 0;
    font-weight: bold;
}
/* --- Preisdarstellung oben im Formular (Komplett NEU) --- */

.price-display-wrapper {
    display: flex;
    align-items: center;
    justify-content: right; /* Zentriert den gesamten Block */
    margin-bottom: 20px;
    padding-bottom: 10px;
    /* Optional: Leichte Trennlinie, wenn gewünscht */
    /* border-bottom: 1px solid #ddd; */
}

.price-label {
    font-size: 2em;
    color: #333;
    margin: 0 15px 0 0; /* Abstand zur Box */
    font-weight: 500;
}

.price-box {
    /* Die CI Orange Box */
    background-color: #ff8c00; /* CI Orange (entspricht cta-button Farbe) */
    color: black;
    padding: 8px 20px;
    border-radius: 4px;
    /* Verhindert, dass der Preis umbricht */
    white-space: nowrap;
}

.price-box h2 {
    font-size: 1.8em;
    color: white;
    margin: 0;
    font-weight: bold;
    /* Stellt sicher, dass das h2 Element keinen eigenen Margin hat */
}

/* --- ADRESSBEREICH (AUSZUG / EINZUG) --- */

.address-section {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.address-section h3 {
    font-size: 0.95em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #666;
    margin: 0 0 12px 0;
}

.address-row {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
}

.address-field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.address-field--small {
    flex: 0 0 120px; /* feste Breite für Hausnr/PLZ/Land */
}

.address-field label {
    font-size: 0.8em;
    font-weight: 600;
    margin-bottom: 4px;
    color: #555;
}

/* Adressvalidierung - Feedback-Meldungen */
.address-validation-message {
    display: block;
    font-size: 0.85em;
    margin-top: 4px;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.address-validation-message:empty {
    display: none;
}

/* Eingabefelder übernehmen deine Standard-Styles */
.address-field input {
    width: 100%;
}

/* Mobile: alles wieder untereinander */
@media (max-width: 768px) {
    .address-row {
        flex-direction: column;
        gap: 8px;
    }
    .address-field--small {
        flex: 1;
    }
}
/* ----------------------------------------------------- */
/* Step Header */
/* ----------------------------------------------------- */
.step-header {
    margin-bottom: 24px;
}

.step-header h2 {
    font-size: 22px;
    margin: 0 0 4px;
}

.step-header p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* ----------------------------------------------------- */
/* Karten-Layout für Adressblöcke */
/* ----------------------------------------------------- */
.address-section,
.contact-section {
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 20px;
}

.address-section h3,
.contact-section h3 {
    margin: 0 0 12px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .02em;
    font-weight: 600;
    color: #444;
}

/* ----------------------------------------------------- */
/* Reihen-Layout */
/* ----------------------------------------------------- */
.address-row {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.address-field {
    flex: 1;
}

.address-field--small {
    flex: 0 0 120px;
}

.address-section input,
.contact-section input,
.contact-section select {
    background: #f3f7ff;
    border-radius: 6px;
}

/* Mobile optimiert */
@media (max-width: 768px) {
    .address-row {
        flex-direction: column;
    }

    .address-field--small {
        flex: 1 1 auto;
    }
}

/* ----------------------------------------------------- */
/* Datum-Eingabe kompakter */
/* ----------------------------------------------------- */
.date-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 260px;
}

.date-input-group input {
    flex: 1;
}

.warning-text {
    font-size: 12px;
    color: #e67e22;
    margin-top: 6px;
}
#date {
    cursor: pointer;
}

/* ----------------------------------------------------- */
/* Aufzug-Frage: Radios als Pill-Buttons nebeneinander   */
/* ----------------------------------------------------- */

.radio-group {
    margin-top: 15px;
    margin-bottom: 15px;
}

.radio-question {
    display: block;
    font-size: 0.9em;
    font-weight: bold;
    margin-bottom: 6px;
}

.radio-options {
    display: flex;
    gap: 10px;
}

.radio-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid #ccc;
    cursor: pointer;
    font-size: 0.9em;
    user-select: none;
    background: #f7f7f7;
}

/* Radio selbst ausblenden, aber zugänglich lassen */
.radio-pill input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Standard-Text im Pill */
.radio-pill span {
    color: #333;
}

/* Aktive Auswahl klar hervorheben */
.radio-pill input[type="radio"]:checked + span {
    background: #ff8c00;
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: bold;
}

/* Optional: Hover-Effekt zur besseren Rückmeldung */
.radio-pill:hover span {
    background: #ffe0bf;
    border-radius: 999px;
}

/* CI-Footer (Designed and Made by) */
.ci-footer {
    background: #e8e8e8;
    border-top: 1px solid #ddd;
    padding: 14px 24px;
    text-align: center;
    font-size: 0.85em;
    color: #666;
}
.ci-footer a {
    color: #555;
    text-decoration: none;
}
.ci-footer a:hover {
    text-decoration: underline;
    color: #333;
}

/* Schritt 4: Aufbau und Abbau (Design: sauber, MENGE | LEISTUNG, runde Checkboxen) */
.step4-category {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}
.step4-category-summary {
    padding: 14px 18px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.step4-category-summary::-webkit-details-marker { display: none; }
.step4-category-summary::after {
    content: "›";
    font-size: 1.4em;
    color: #ff8c00;
    transition: transform 0.2s;
}
.step4-category[open] .step4-category-summary::after {
    transform: rotate(90deg);
}
.step4-category-body {
    padding: 0 18px 18px;
    border-top: 1px solid #eee;
}
.step4-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0;
    font-size: 1em;
    color: #333;
}
.step4-table thead tr {
    border-bottom: 1px solid #ddd;
}
.step4-table th {
    padding: 12px 14px;
    text-align: left;
    font-size: 0.9em;
    font-weight: 600;
    color: #444;
    letter-spacing: 0.02em;
}
.step4-table th.step4-th-moebel { width: 22%; }
.step4-table th.step4-th-menge { width: 28%; }
.step4-table th.step4-th-leistung { width: 50%; }
.step4-row td {
    padding: 14px;
    border-bottom: 1px solid #e8e8e8;
    vertical-align: middle;
    color: #333;
}
.step4-row:last-child td {
    border-bottom: none;
}
.step4-td-moebel {
    font-weight: 500;
    color: #333;
}
/* Drei Boxen (− Zahl +) bündig: gleiche Höhe, obere/untere Kante fluchten */
.step4-quantity {
    display: inline-flex;
    align-items: stretch;
    gap: 0;
    height: 36px;
}
.step4-qty-btn {
    width: 36px;
    height: 36px;
    min-height: 0;
    padding: 0;
    border: 1px solid #ccc;
    border-radius: 0;
    background: #fff;
    cursor: pointer;
    font-size: 1.2em;
    line-height: 1;
    color: #333;
    box-sizing: border-box;
    transition: background 0.15s, border-color 0.15s;
}
.step4-quantity .step4-qty-btn:first-of-type {
    border-radius: 6px 0 0 6px;
}
.step4-quantity .step4-qty-btn:last-of-type {
    border-radius: 0 6px 6px 0;
}
.step4-qty-btn:hover {
    background: #ff8c00;
    color: white;
    border-color: #ff8c00;
}
.step4-quantity input {
    width: 52px;
    height: 36px;
    min-height: 0;
    padding: 0 6px;
    margin: 0;
    border: 1px solid #ccc;
    border-left: none;
    border-right: none;
    border-radius: 0;
    text-align: center;
    font-size: 1em;
    line-height: 34px;
    color: #333;
    box-sizing: border-box;
    vertical-align: top;
}
.step4-quantity input:focus {
    outline: none;
    z-index: 1;
}
/* Spinner-Pfeile (^ v) bei Zahlfeldern ausblenden – nur − Zahl + */
.step4-quantity input[type="number"]::-webkit-inner-spin-button,
.step4-quantity input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.step4-quantity input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}
.step4-services {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
}
/* Abbau / Aufbau: gleiche Höhe wie Mengenfeld (36px), eine horizontale Linie */
.step4-service-option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 36px;
    padding: 0 14px;
    background: #fff;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
}
.step4-service-option:hover {
    border-color: #ff8c00;
    box-shadow: 0 0 0 1px #ff8c00;
}
.step4-service-option:has(.step4-checkbox:checked) {
    background: #ff8c00;
    border-color: #ff8c00;
    box-shadow: none;
}
.step4-service-option:has(.step4-checkbox:checked) .step4-service-option-text {
    color: #fff;
}
.step4-service-option-text {
    font-weight: bold;
    font-size: 1em;
    color: #333;
    text-align: center;
    line-height: 36px;
    display: block;
}
/* Quadratische Checkbox in der Kachel */
.step4-service-option .step4-checkbox {
    margin: 0;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid #999;
    appearance: none;
    -webkit-appearance: none;
    background: #fff;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.15s, background 0.15s;
}
.step4-service-option .step4-checkbox:checked {
    border-color: #ff8c00;
    background: #ff8c00;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
}
.step4-service-option .step4-checkbox:hover {
    border-color: #ff8c00;
}

/* ========== Schritt 4 – eigene Klassen (Design-Vorgabe) ========== */
.s4-card {
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    margin-bottom: 16px;
    overflow: hidden;
}
.s4-card-inner {
    padding: 16px 20px 20px;
    background: #f5f5f5;
}
.s4-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
}
.s4-table thead tr {
    border-bottom: 1px solid #ddd;
}
.s4-table th {
    padding: 10px 12px 12px;
    text-align: left;
    font-size: 0.88em;
    font-weight: 600;
    color: #444;
}
.s4-table .step4-th-moebel { width: 18%; }
.s4-table .step4-th-menge { width: 26%; }
.s4-table .step4-th-leistung { width: 56%; }
.s4-row td {
    padding: 14px 12px;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: middle;
    color: #333;
}
.s4-row:last-child td {
    border-bottom: none;
}
.s4-cell-moebel {
    font-weight: 500;
    padding-right: 20px;
}
.s4-cell-menge {
    width: 26%;
    padding-right: 24px;
}
.s4-cell-leistung {
    width: 56%;
}
.s4-menge {
    display: inline-flex;
    align-items: stretch;
    height: 36px;
}
.s4-menge .step4-qty-btn {
    width: 36px;
    height: 36px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 0;
    background: #fff;
    color: #333;
}
.s4-menge .step4-qty-btn:first-of-type { border-radius: 6px 0 0 6px; }
.s4-menge .step4-qty-btn:last-of-type { border-radius: 0 6px 6px 0; }
.s4-menge input {
    width: 50px;
    height: 36px;
    margin: 0;
    border: 1px solid #ccc;
    border-left: none;
    border-right: none;
    border-radius: 0;
    box-sizing: border-box;
    background: #fff;
    text-align: center;
}
.s4-leistung {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
}
.s4-option {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 36px;
    padding: 0 14px;
    background: #fff;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    cursor: pointer;
    flex-shrink: 0;
    font-weight: bold;
    color: #333;
}
.s4-option:hover {
    border-color: #ff8c00;
    box-shadow: 0 0 0 1px #ff8c00;
}
.s4-option:has(.step4-checkbox:checked) {
    background: #ff8c00;
    border-color: #ff8c00;
    box-shadow: none;
}
.s4-option:has(.step4-checkbox:checked) .step4-service-option-text {
    color: #fff;
}
.s4-option .step4-service-option-text {
    font-weight: bold;
    font-size: 0.95em;
    color: #333;
    text-align: center;
    line-height: 36px;
    display: block;
}
/* Checkboxen in Schritt 4 nur optisch verstecken – Klick auf Box schaltet weiterhin an/ab */
.s4-checkbox-hidden,
.step4-service-option .step4-checkbox.s4-checkbox-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    opacity: 0;
}
.s4-option {
    justify-content: center;
}

/* ========== Schritt 5: Zusatzleistungen (Farbgestaltung wie Screenshot) ========== */
.step5-section.s5-card,
.step5-section {
    background: #fff;
    border: 2px solid #F5A623;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}
.step5-summary {
    padding: 14px 18px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-bottom: 1px solid #eee;
}
.step5-summary::-webkit-details-marker { display: none; }
.step5-summary::after {
    content: "›";
    font-size: 1.4em;
    color: #F5A623;
    transition: transform 0.2s;
}
.step5-section[open] .step5-summary::after {
    transform: rotate(90deg);
}
.step5-body {
    padding: 18px 20px;
    background: #fff;
}
.step5-section[open] .step5-summary {
    border-bottom: 1px solid #D1D1D1;
}
.step5-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.step5-row:last-child { margin-bottom: 0; }
.step5-label {
    flex: 0 0 220px;
    font-weight: 500;
    color: #333;
}
.step5-quantity {
    display: inline-flex;
    align-items: stretch;
    height: 36px;
    gap: 0;
}
.step5-qty-btn {
    width: 36px;
    height: 36px;
    min-height: 0;
    padding: 0;
    border: 1px solid #D1D1D1;
    border-radius: 0;
    background: #fff;
    cursor: pointer;
    font-size: 1.2em;
    line-height: 1;
    color: #333;
    box-sizing: border-box;
}
.step5-quantity .step5-qty-btn:first-of-type { border-radius: 6px 0 0 6px; }
.step5-quantity .step5-qty-btn:last-of-type { border-radius: 0 6px 6px 0; }
.step5-qty-btn:hover {
    background: #F5A623;
    color: #fff;
    border-color: #F5A623;
}
.step5-quantity input {
    width: 56px;
    height: 36px;
    margin: 0;
    border: 1px solid #D1D1D1;
    border-left: none;
    border-right: none;
    border-radius: 0;
    box-sizing: border-box;
    text-align: center;
    font-size: 1em;
    color: #000;
    background: #fff;
}
.step5-quantity input:focus { outline: none; }
.step5-quantity input[type="number"]::-webkit-inner-spin-button,
.step5-quantity input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.step5-quantity input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}
.step5-euro {
    align-self: center;
    padding: 0 6px;
    font-weight: 600;
    color: #555;
}
.step5-question {
    margin: 0 0 12px 0;
    font-weight: 500;
    color: #333;
}
.step5-radio-group,
.step5-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    align-items: center;
}
.step5-radio-option,
.step5-check-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
    color: #333;
}
.step5-radio-option input[type="radio"],
.step5-check-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #F5A623;
    cursor: pointer;
}
.step5-hint {
    margin: 0 0 14px 0;
    font-size: 0.95em;
    color: #666;
}
.step5-info-icon {
    opacity: 0.85;
    cursor: help;
}
.step5-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    margin: 24px 0 0 0;
    background: #fff;
    border: 2px solid #F5A623;
    border-radius: 8px;
}
.step5-total-footer {
    font-size: 1.5em;
    font-weight: bold;
    color: #F5A623;
}
.step5-kueche-meter.step5-row {
    align-items: center;
}

/* ========== Schritt 6: Zusammenfassung & Bestätigung ========== */
.step6-layout {
    max-width: 720px;
    margin: 0 auto 2rem;
}
.step6-summary-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 1px solid #e8e8e8;
}
.step6-price-block {
    margin-bottom: 24px;
}
.step6-price-label {
    display: block;
    font-size: 1em;
    color: #555;
    margin-bottom: 8px;
}
.step6-price-box {
    background: #ff8c00;
    color: #fff;
    padding: 16px 28px;
    border-radius: 8px;
    display: inline-block;
}
.step6-price-box span {
    font-size: 1.6em;
    font-weight: bold;
}
.step6-headline {
    font-size: 1.25em;
    color: #333;
    margin: 0 0 16px 0;
    font-weight: bold;
}
.step6-summary-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    color: #333;
    line-height: 1.8;
}
.step6-summary-list li {
    padding: 4px 0;
    border-bottom: 1px solid #f0f0f0;
}
.step6-summary-list li:last-of-type { border-bottom: none; }
.step6-total-line {
    margin-top: 8px;
    padding-top: 12px !important;
    border-top: 2px solid #eee !important;
    font-size: 1.05em;
}
.step6-disclaimer {
    font-size: 0.9em;
    color: #666;
    margin: 0 0 24px 0;
}
.step6-flex-option {
    margin-bottom: 24px;
    padding: 16px 0;
    border-top: 1px solid #eee;
}
.step6-flex-label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}
.step6-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
}
.step6-radio {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
    color: #333;
}
.step6-radio input {
    accent-color: #ff8c00;
    cursor: pointer;
}
.step6-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}
.step6-buttons .cta-button {
    flex: 1;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    font-size: 1em;
}
.step6-buttons .back-step {
    background: #ff8c00;
    color: #fff;
}
.step6-buttons .back-step:hover {
    background: #e67e00;
    color: #fff;
}
.step6-buttons .next-step {
    background: #ff8c00;
    color: #fff;
}
.step6-buttons .next-step:hover {
    background: #e67e00;
    color: #fff;
}
.step6-datenschutz {
    font-size: 0.85em;
    color: #888;
    margin: 0;
    line-height: 1.5;
}
.step6-success p {
    font-weight: 500;
}

/* Datenschutzseite */
.datenschutz-page h3 {
    margin-top: 28px;
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #333;
}
.datenschutz-page h3:first-of-type {
    margin-top: 20px;
}
.datenschutz-page p {
    margin-bottom: 12px;
    font-size: 0.95em;
    color: #444;
}
.datenschutz-page ul {
    margin: 8px 0 16px 20px;
    padding: 0;
}
.datenschutz-page li {
    margin-bottom: 6px;
}
.datenschutz-page a {
    color: #ff8c00;
    text-decoration: none;
}
.datenschutz-page a:hover {
    text-decoration: underline;
}