*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --bg: #202020;
            --orange: #ff8200;
            --orange-hover: #e67300;
            --text: #f1f1f1;
            --text-muted: #b0bec5;
            --border: #444a57;
            --card-bg: rgba(40, 40, 40, 0.9);
            --card-border: rgba(255, 255, 255, 0.08);
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Figtree', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        a { color: var(--orange); text-decoration: none; }
        a:hover { color: var(--orange-hover); }

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

        /* Header */
        .site-header {
            border-bottom: 1px solid var(--border);
            padding: 18px 0;
            position: sticky;
            top: 0;
            background: rgba(32, 32, 32, 0.95);
            backdrop-filter: blur(8px);
            z-index: 100;
        }

        .site-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 16px;
            min-width: 0;
        }

        .back-link {
            flex-shrink: 0;
            color: var(--text-muted, #b0bec5);
            text-decoration: none;
            font-size: 0.9em;
            font-weight: 600;
            padding: 8px 12px;
            border: 1px solid var(--border);
            transition: color 0.2s, border-color 0.2s, background 0.2s;
        }

        .back-link:hover {
            color: #fff;
            border-color: var(--orange);
            background: rgba(255, 130, 0, 0.1);
        }

        .logo img { height: 36px; width: auto; display: block; }

        .header-cta {
            background: var(--orange);
            color: #fff;
            border: none;
            padding: 12px 24px;
            font-family: inherit;
            font-weight: 600;
            font-size: 0.95em;
            cursor: pointer;
            transition: background 0.2s;
        }

        .header-cta:hover { background: var(--orange-hover); }

        /* Hero */
        .hero {
            padding: 80px 0 100px;
            border-bottom: 1px solid var(--border);
            background: linear-gradient(180deg, rgba(255, 130, 0, 0.06) 0%, transparent 60%);
        }

        .hero-content { max-width: 720px; }

        .hero-label {
            display: inline-block;
            color: var(--orange);
            font-size: 0.85em;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .hero h1 {
            font-size: clamp(2rem, 5vw, 3.2rem);
            font-weight: 600;
            line-height: 1.15;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.15em;
            color: var(--text-muted);
            margin-bottom: 36px;
            max-width: 560px;
        }

        .btn-primary {
            display: inline-block;
            background: var(--orange);
            color: #fff;
            border: none;
            padding: 16px 32px;
            font-family: inherit;
            font-weight: 600;
            font-size: 1em;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
        }

        .btn-primary:hover { background: var(--orange-hover); }
        .btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }

        .btn-secondary {
            display: inline-block;
            background: transparent;
            color: var(--text);
            border: 2px solid var(--border);
            padding: 14px 28px;
            font-family: inherit;
            font-weight: 600;
            font-size: 0.95em;
            cursor: pointer;
            transition: border-color 0.2s, color 0.2s;
        }

        .btn-secondary:hover { border-color: var(--orange); color: var(--orange); }

        .btn-card {
            width: 100%;
            background: transparent;
            color: var(--orange);
            border: 2px solid var(--orange);
            padding: 12px 20px;
            font-family: inherit;
            font-weight: 600;
            font-size: 0.9em;
            cursor: pointer;
            transition: background 0.2s, color 0.2s;
        }

        .btn-card:hover { background: var(--orange); color: #fff; }

        /* Sections */
        section { padding: 80px 0; }

        .section-header { margin-bottom: 48px; }

        .section-header h2 {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 600;
            margin-bottom: 12px;
        }

        .section-header p {
            color: var(--text-muted);
            max-width: 560px;
        }

        .section-divider {
            width: 60px;
            height: 3px;
            background: var(--orange);
            margin-bottom: 20px;
        }

        /* Cards grid */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 24px;
        }

        .cards-grid--compact {
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 16px;
        }

        .card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            display: flex;
            flex-direction: column;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .card:hover {
            border-color: rgba(255, 130, 0, 0.4);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        }

        .card-image {
            aspect-ratio: 16 / 10;
            background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }

        .extra-card .extra-thumb {
            aspect-ratio: 16 / 9;
            background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
            background-size: cover;
            background-position: center;
            margin: -24px -24px 16px;
        }

        .card-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, rgba(32, 32, 32, 0.9) 0%, transparent 50%);
        }

        .card-image-label {
            position: absolute;
            bottom: 16px;
            left: 16px;
            z-index: 1;
            font-size: 0.75em;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--orange);
        }

        .card-body {
            padding: 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .card-body h3 {
            font-size: 1.25em;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .card-body > p {
            color: var(--text-muted);
            font-size: 0.95em;
            margin-bottom: 16px;
        }

        .card-bullets {
            list-style: none;
            margin-bottom: 20px;
            flex: 1;
        }

        .card-bullets li {
            color: var(--text-muted);
            font-size: 0.9em;
            padding: 6px 0 6px 18px;
            position: relative;
        }

        .card-bullets li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 13px;
            width: 6px;
            height: 2px;
            background: var(--orange);
        }

        .card-price {
            font-size: 1.1em;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 16px;
        }

        .card-price span { color: var(--orange); }

        /* Extra cards */
        .extra-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            padding: 24px;
            cursor: pointer;
            transition: border-color 0.2s;
        }

        .extra-card:hover, .extra-card.selected {
            border-color: var(--orange);
        }

        .extra-card h4 {
            font-size: 1em;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .extra-card p {
            color: var(--text-muted);
            font-size: 0.85em;
            margin-bottom: 8px;
        }

        .extra-card .price {
            font-size: 0.9em;
            font-weight: 600;
            color: var(--orange);
        }

        /* Combinations */
        .combo-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .combo-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding: 24px 28px;
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            flex-wrap: wrap;
        }

        .combo-item-text {
            flex: 1;
            min-width: 200px;
        }

        .combo-item p {
            font-size: 1.05em;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .combo-price {
            display: block;
            font-size: 0.95em;
            font-weight: 600;
            color: var(--orange);
        }

        .combo-discount-badge {
            display: inline-block;
            margin-top: 6px;
            font-size: 0.75em;
            font-weight: 600;
            color: #4caf50;
            background: rgba(76, 175, 80, 0.12);
            padding: 3px 8px;
            border-radius: 999px;
        }

        .price-was {
            text-decoration: line-through;
            color: var(--text-muted);
            font-weight: 400;
            margin-right: 6px;
        }

        .card-price .price-was,
        .set-option-price .price-was {
            font-size: 0.9em;
        }

        /* Steps how it works */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .step-card {
            padding: 32px 24px;
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-top: 3px solid var(--orange);
        }

        .step-number {
            font-size: 2em;
            font-weight: 600;
            color: var(--orange);
            opacity: 0.5;
            margin-bottom: 12px;
            line-height: 1;
        }

        .step-card h4 {
            font-size: 1.05em;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .step-card p {
            color: var(--text-muted);
            font-size: 0.9em;
        }

        /* Form section */
        .form-section {
            background: linear-gradient(180deg, transparent 0%, rgba(255, 130, 0, 0.04) 100%);
            border-top: 1px solid var(--border);
        }

        .form-layout {
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 32px;
            align-items: start;
        }

        .form-panel {
            background: var(--card-bg);
            border: 3px solid var(--orange);
            padding: 40px;
        }

        .form-panel h2 {
            font-size: 1.6em;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .form-panel > .subtitle {
            color: var(--text-muted);
            margin-bottom: 32px;
            font-size: 0.95em;
        }

        /* Step indicator */
        .step-indicator {
            display: flex;
            gap: 0;
            margin-bottom: 36px;
            border: 1px solid var(--border);
        }

        .step-indicator-item {
            flex: 1;
            padding: 14px 12px;
            text-align: center;
            font-size: 0.8em;
            font-weight: 600;
            color: var(--text-muted);
            background: rgba(0, 0, 0, 0.2);
            border-right: 1px solid var(--border);
            transition: background 0.2s, color 0.2s;
        }

        .step-indicator-item:last-child { border-right: none; }

        .step-indicator-item.active {
            background: rgba(255, 130, 0, 0.15);
            color: var(--orange);
        }

        .step-indicator-item.done {
            color: var(--text);
        }

        .form-step { display: none; }
        .form-step.active { display: block; }

        .form-group { margin-bottom: 24px; }

        .form-group label {
            display: block;
            color: var(--text-muted);
            font-size: 0.9em;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 16px;
            background: rgba(30, 33, 40, 0.8);
            border: 2px solid var(--border);
            color: var(--text);
            font-family: inherit;
            font-size: 1em;
            transition: border-color 0.2s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--orange);
        }

        .form-group textarea { min-height: 120px; resize: vertical; }

        .hint-box {
            padding: 14px 18px;
            background: rgba(255, 130, 0, 0.1);
            border-left: 3px solid var(--orange);
            color: var(--text-muted);
            font-size: 0.9em;
            margin-top: 12px;
            display: none;
        }

        .hint-box.visible { display: block; }

        .hint-box strong { color: var(--orange); }

        /* Set selection in form */
        .set-options {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .set-option {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 18px;
            background: rgba(255, 255, 255, 0.03);
            border: 2px solid var(--border);
            cursor: pointer;
            transition: border-color 0.2s, background 0.2s;
        }

        .set-option:hover { border-color: rgba(255, 130, 0, 0.5); }

        .set-option.selected {
            border-color: var(--orange);
            background: rgba(255, 130, 0, 0.1);
        }

        .set-option input { display: none; }

        .set-option-name { font-weight: 600; font-size: 0.95em; }
        .set-option-price { color: var(--orange); font-size: 0.85em; font-weight: 600; }

        /* Extras checkboxes */
        .extras-checkboxes {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .extra-checkbox {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 14px;
            background: rgba(255, 255, 255, 0.03);
            border: 2px solid var(--border);
            cursor: pointer;
            transition: border-color 0.2s;
            font-size: 0.9em;
        }

        .extra-checkbox:has(input:checked) {
            border-color: var(--orange);
            background: rgba(255, 130, 0, 0.08);
        }

        .extra-checkbox input {
            width: 18px;
            height: 18px;
            accent-color: var(--orange);
            flex-shrink: 0;
        }

        .form-nav {
            display: flex;
            justify-content: space-between;
            gap: 16px;
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid var(--border);
        }

        /* Summary panel */
        .summary-panel {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            padding: 28px;
            position: sticky;
            top: 90px;
        }

        .summary-panel h3 {
            font-size: 1.1em;
            font-weight: 600;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--orange);
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 0.9em;
        }

        .summary-row .label { color: var(--text-muted); flex-shrink: 0; }
        .summary-row .value { text-align: right; font-weight: 600; }

        .summary-total {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 2px solid var(--orange);
        }

        .summary-total .price {
            font-size: 1.5em;
            font-weight: 600;
            color: var(--orange);
        }

        .summary-note {
            margin-top: 16px;
            font-size: 0.8em;
            color: var(--text-muted);
            line-height: 1.5;
        }

        .summary-extras {
            list-style: none;
            text-align: right;
            font-size: 0.85em;
        }

        .summary-extras li { padding: 2px 0; }

        /* Success state */
        .success-panel {
            display: none;
            text-align: center;
            padding: 60px 40px;
        }

        .success-panel.visible { display: block; }

        .success-panel h2 {
            font-size: 1.8em;
            margin-bottom: 16px;
            color: var(--orange);
        }

        .success-panel p {
            color: var(--text-muted);
            max-width: 480px;
            margin: 0 auto 24px;
        }

        .form-content.hidden { display: none; }

        .error-message {
            display: none;
            padding: 14px 18px;
            background: rgba(220, 53, 69, 0.15);
            border-left: 3px solid #dc3545;
            color: #f8d7da;
            font-size: 0.9em;
            margin-bottom: 20px;
        }

        .error-message.visible { display: block; }

        /* Footer */
        .site-footer {
            padding: 40px 0;
            border-top: 1px solid var(--border);
            text-align: center;
            color: var(--text-muted);
            font-size: 0.85em;
        }

        /* Responsive */
        @media (max-width: 960px) {
            .form-layout { grid-template-columns: 1fr; }
            .summary-panel { position: static; order: -1; }
            .steps-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 600px) {
            section { padding: 56px 0; }
            .hero { padding: 56px 0 64px; }
            .form-panel { padding: 24px 20px; border-width: 2px; }
            .extras-checkboxes { grid-template-columns: 1fr; }
            .steps-grid { grid-template-columns: 1fr; }
            .step-indicator-item { font-size: 0.7em; padding: 10px 6px; }
            .combo-item { flex-direction: column; align-items: flex-start; }
            .header-cta { padding: 10px 16px; font-size: 0.85em; }
        }
/* Seiten-Navigation */
.page-nav {
    border-bottom: 1px solid var(--border);
    background: rgba(26, 26, 26, 0.98);
    position: sticky;
    top: 57px;
    z-index: 99;
}
.page-nav .container {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    padding-top: 0;
    padding-bottom: 0;
}
.page-nav a {
    display: block;
    padding: 14px 20px;
    color: var(--text-muted);
    font-size: 0.9em;
    font-weight: 600;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}
.page-nav a:hover { color: var(--text); }
.page-nav a.active {
    color: var(--orange);
    border-bottom-color: var(--orange);
}

/* Hero-Banner */
.hero {
    position: relative;
    overflow: hidden;
}
.hero-banner {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 0;
}
.hero-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(32,32,32,0.3) 0%, rgba(32,32,32,0.85) 100%);
}
.hero > .container { position: relative; z-index: 1; }

/* Admin visueller Editor */
body.admin-body { background: #1a1a1a; }
.admin-chrome {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 10000;
    background: #2a2a2a;
    border-bottom: 2px solid #ff8200;
    padding: 10px 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-family: 'Figtree', sans-serif;
}
.admin-chrome .page-tabs { display: flex; gap: 4px; flex-wrap: wrap; }
.admin-chrome .page-tab {
    padding: 8px 14px;
    background: #1e2127;
    border: 1px solid #444a57;
    color: #f1f1f1;
    cursor: pointer;
    font-size: 0.85em;
    font-weight: 600;
}
.admin-chrome .page-tab.active { border-color: #ff8200; color: #ff8200; }
.admin-chrome .btn-admin {
    background: #ff8200; color: #fff; border: none; padding: 8px 16px;
    font-weight: 600; cursor: pointer; font-family: inherit; font-size: 0.85em;
}
.admin-chrome .btn-admin.secondary {
    background: transparent; border: 1px solid #444a57; color: #f1f1f1;
}
.admin-chrome .btn-admin.danger { background: #c62828; }
.admin-preview-wrap { padding-top: 56px; }
.admin-edit-mode [data-editable] {
    position: relative;
    cursor: pointer;
    outline: 2px dashed transparent;
    outline-offset: 4px;
    transition: outline-color 0.15s;
}
.admin-edit-mode [data-editable]:hover {
    outline-color: rgba(255, 130, 0, 0.7);
}
.admin-edit-mode [data-editable]::after {
    content: '✎';
    position: absolute;
    top: 4px; right: 4px;
    background: #ff8200;
    color: #fff;
    font-size: 11px;
    width: 22px; height: 22px;
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity 0.15s;
    z-index: 5;
    pointer-events: none;
}
.admin-edit-mode [data-editable]:hover::after { opacity: 1; }
.admin-edit-mode .card[data-editable]::after,
.admin-edit-mode .extra-card[data-editable]::after,
.admin-edit-mode .combo-item[data-editable]::after { top: 8px; right: 8px; }

.admin-item-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 10px;
    margin: -4px -4px 10px;
    background: rgba(0, 0, 0, 0.45);
    border-bottom: 1px solid rgba(255, 130, 0, 0.35);
    position: relative;
    z-index: 6;
    touch-action: none;
}
.drag-handle {
    cursor: grab;
    color: #ff8200;
    font-size: 1.1em;
    padding: 4px 8px;
    user-select: none;
    touch-action: none;
    -webkit-user-drag: element;
}
.drag-handle:active { cursor: grabbing; }
.admin-edit-mode .card[data-editable] .admin-item-bar,
.admin-edit-mode .extra-card[data-editable] .admin-item-bar,
.admin-edit-mode .combo-item[data-editable] .admin-item-bar {
    cursor: grab;
}
.active-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78em;
    color: #b0bec5;
    cursor: pointer;
    user-select: none;
}
.active-toggle input { width: auto; accent-color: #ff8200; cursor: pointer; }
.item-inactive {
    opacity: 0.45;
    filter: grayscale(0.35);
}
.item-inactive .admin-item-bar { opacity: 1; filter: none; }
.admin-edit-mode .card.drag-over,
.admin-edit-mode .extra-card.drag-over,
.admin-edit-mode .combo-item.drag-over {
    outline: 2px dashed #ff8200;
    outline-offset: 2px;
}
.admin-edit-mode .card.dragging,
.admin-edit-mode .extra-card.dragging,
.admin-edit-mode .combo-item.dragging {
    opacity: 0.5;
}

/* Admin: alle Formular-Schritte gleichzeitig sichtbar */
.admin-edit-mode #verleihForm .form-step {
    display: block !important;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid #444a57;
}
.admin-edit-mode #verleihForm .form-step:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}
.admin-edit-mode #verleihForm .form-nav,
.admin-edit-mode #successPanel {
    display: none !important;
}
.admin-edit-mode #verleihForm input,
.admin-edit-mode #verleihForm select,
.admin-edit-mode #verleihForm textarea {
    pointer-events: none;
}
.edit-drawer {
    position: fixed;
    top: 56px; right: 0; bottom: 0;
    width: min(400px, 100vw);
    background: #2a2a2a;
    border-left: 2px solid #444a57;
    z-index: 9999;
    padding: 20px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.25s;
    font-family: 'Figtree', sans-serif;
    color: #f1f1f1;
}
.edit-drawer.open { transform: translateX(0); }
.edit-drawer h3 { color: #ff8200; margin-bottom: 16px; font-size: 1.1em; }
.edit-drawer .efield { margin-bottom: 14px; }
.edit-drawer .efield label { display: block; font-size: 0.8em; color: #b0bec5; margin-bottom: 5px; font-weight: 600; }
.edit-drawer .efield input,
.edit-drawer .efield textarea,
.edit-drawer .efield select {
    width: 100%; padding: 9px 11px; background: #1e2127;
    border: 1px solid #444a57; color: #f1f1f1; font-family: inherit;
}
.edit-drawer .efield textarea { min-height: 70px; resize: vertical; }
.edit-drawer .drawer-actions { display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap; }
.edit-drawer .img-prev { max-width: 100%; max-height: 120px; margin: 8px 0; display: block; border-radius: 4px; }
.hero-bg-field { margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid #444a57; }
.hero-bg-preview {
    height: 120px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
    margin: 8px 0 12px;
    border: 1px solid #444a57;
}
.hero-bg-preview--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e2127;
    color: #b0bec5;
    font-size: 0.85em;
    text-align: center;
    padding: 12px;
}
.btn-upload {
    display: block;
    background: #ff8200;
    color: #fff;
    text-align: center;
    padding: 10px 14px;
    font-weight: 600;
    font-size: 0.9em;
    cursor: pointer;
    margin-bottom: 8px;
}
.btn-upload input[type="file"] { display: none; }
.btn-full { width: 100%; margin-top: 4px; }
.efield-hint { font-size: 0.78em; color: #888; margin-top: 8px; line-height: 1.4; }

.combo-extra-select { margin-bottom: 14px; }
.combo-extra-select > label { display: block; font-size: 0.8em; color: #b0bec5; margin-bottom: 6px; font-weight: 600; }
.combo-extra-add-row {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.combo-extra-add-row select {
    flex: 1;
    min-width: 160px;
    padding: 10px 12px;
    background: #1e2127;
    border: 1px solid #444a57;
    border-radius: 8px;
    color: #f1f1f1;
    font-family: inherit;
    font-size: 0.9em;
}
.combo-extra-add-row .btn-admin { flex-shrink: 0; white-space: nowrap; }
.combo-extra-selected-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.combo-extra-selected-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 10px;
    background: #1e2127;
    border: 1px solid #444a57;
    border-radius: 8px;
    font-size: 0.88em;
}
.combo-extra-selected-label {
    flex: 1;
    min-width: 0;
    color: #f1f1f1;
    font-weight: 600;
}
.combo-extra-selected-label small {
    display: block;
    font-weight: 400;
    color: #888;
    font-size: 0.85em;
    margin-top: 2px;
}
.combo-extra-order-btns {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}
.combo-extra-order-btns button {
    background: #2a2a2a;
    border: 1px solid #444a57;
    color: #f1f1f1;
    border-radius: 6px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-size: 0.85em;
    line-height: 1;
    padding: 0;
}
.combo-extra-order-btns button:hover:not(:disabled) {
    border-color: #ff8200;
    color: #ff8200;
}
.combo-extra-order-btns button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}
.combo-extra-remove {
    background: none;
    border: none;
    color: #ef5350;
    font-size: 1.25em;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
    width: auto;
    height: auto;
}
.combo-extra-remove:hover { color: #ff6b6b; }
.combo-extra-empty {
    color: #888;
    font-size: 0.85em;
    padding: 10px;
    text-align: center;
    border: 1px dashed #444a57;
    border-radius: 8px;
}

.discount-fields {
    padding: 12px;
    background: rgba(255, 130, 0, 0.06);
    border: 1px solid rgba(255, 130, 0, 0.25);
    border-radius: 10px;
}
.discount-fields label { cursor: pointer; }
.price-preview-box {
    margin: 12px 0;
    padding: 12px 14px;
    background: #1e2127;
    border: 1px solid #444a57;
    border-radius: 10px;
    font-size: 0.9em;
}
.price-preview-box strong { color: #ff8200; font-size: 1.15em; }
.price-preview-box .price-was { margin-right: 8px; }
.price-preview-detail {
    display: block;
    margin-top: 6px;
    font-size: 0.82em;
    color: #888;
    line-height: 1.45;
}
.add-bar { margin: 12px 0; }
