:root {
    --bg: #f6f7fb;
    --panel: #ffffff;
    --panel-2: #f9fafb;
    --text: #111827;
    --muted: #6b7280;
    --line: #e5e7eb;
    --primary: #1f2937;
    --primary-2: #0f172a;
    --accent: #2563eb;
    --success: #16a34a;
    --danger: #dc2626;
    --warning: #d97706;
    --radius: 18px;
    --shadow: 0 20px 45px rgba(15, 23, 42, .08);
}

* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.app-shell { min-height: 100vh; display: flex; }
.sidebar {
    width: 280px;
    background: #0f172a;
    color: #fff;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 10;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    display: grid;
    place-items: center;
    font-weight: 900;
}
.brand strong { display: block; line-height: 1.2; }
.brand small, .sidebar-user small { display: block; color: #cbd5e1; margin-top: 2px; }
.nav { display: grid; gap: 8px; }
.nav a {
    padding: 12px 14px;
    border-radius: 12px;
    color: #dbeafe;
    transition: .15s ease;
}
.nav a:hover { background: rgba(255,255,255,.09); color: #fff; }
.sidebar-user {
    margin-top: auto;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255,255,255,.08);
}
.sidebar-user a { display: inline-block; margin-top: 10px; color: #93c5fd; }
.main { flex: 1; margin-left: 280px; padding: 28px; }
.topbar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
.topbar h1 { margin: 0; font-size: clamp(26px, 3vw, 38px); }
.topbar p { margin: 4px 0 0; color: var(--muted); }
.menu-btn { display: none; }

.card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 22px;
    margin-bottom: 18px;
}
.card-muted { background: var(--panel-2); box-shadow: none; }
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stat strong { display:block; font-size: 30px; margin-top: 4px; }
.stat span { color: var(--muted); }

.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 14px 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--muted); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
tr:last-child td { border-bottom: 0; }

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: grid; gap: 7px; color: var(--muted); font-weight: 650; font-size: 14px; }
input, select, textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 13px;
    background: #fff;
    color: var(--text);
}
textarea { min-height: 100px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(37,99,235,.13); border-color: #93c5fd; }

.btn, button.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 12px;
    padding: 12px 16px;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    transition: transform .12s ease, opacity .12s ease;
}
.btn:hover { transform: translateY(-1px); opacity: .95; }
.btn-secondary { background: #e5e7eb; color: #111827; }
.btn-danger { background: var(--danger); }
.btn-success { background: var(--success); }
.btn-small { padding: 8px 11px; border-radius: 10px; font-size: 13px; }
.actions { display:flex; gap: 8px; align-items:center; flex-wrap: wrap; }

.badge {
    display: inline-flex;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}
.badge-warning { background: #fef3c7; color: #92400e; }
.badge-info { background: #dbeafe; color: #1e40af; }
.badge-success { background: #dcfce7; color: #166534; }
.badge-danger { background: #fee2e2; color: #991b1b; }
.badge-muted { background: #f3f4f6; color: #4b5563; }

.flash {
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 16px;
    font-weight: 700;
}
.flash-success { background: #dcfce7; color: #166534; }
.flash-error { background: #fee2e2; color: #991b1b; }
.flash-info { background: #dbeafe; color: #1e40af; }

.public-page {
    min-height: 100vh;
    background: radial-gradient(circle at top left, #dbeafe, transparent 36%), #f8fafc;
    padding: 28px;
}
.public-shell { max-width: 960px; margin: 0 auto; }
.public-hero { text-align: center; padding: 36px 0 24px; }
.public-hero h1 { font-size: clamp(34px, 6vw, 58px); margin: 0; }
.public-hero p { color: var(--muted); font-size: 18px; }
.slot-grid { display:grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 10px; }
.slot-btn {
    display:block;
    border: 1px solid var(--line);
    background:#fff;
    border-radius: 14px;
    padding: 12px;
    text-align:center;
    font-weight: 800;
}
.slot-btn:hover { border-color:#93c5fd; box-shadow: 0 10px 24px rgba(37,99,235,.08); }

.login-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at top, #dbeafe, transparent 45%), #f8fafc;
    padding: 24px;
}
.login-card { width: min(440px, 100%); }
.help-text { color: var(--muted); font-size: 14px; }
.code-box {
    background: #0f172a;
    color: #e0f2fe;
    border-radius: 18px;
    padding: 22px;
    text-align: center;
    font-size: 34px;
    letter-spacing: .18em;
    font-weight: 900;
}

@media (max-width: 980px) {
    .sidebar { transform: translateX(-105%); transition: transform .2s ease; }
    body.menu-open .sidebar { transform: translateX(0); }
    .main { margin-left: 0; padding: 18px; }
    .menu-btn {
        display: inline-grid;
        place-items:center;
        width: 44px;
        height: 44px;
        border: 0;
        border-radius: 12px;
        background: #fff;
        box-shadow: var(--shadow);
        cursor: pointer;
    }
    .grid-2, .grid-3, .grid-4, .form-grid { grid-template-columns: 1fr; }
}

/* v0.2 QR-Check-in und Terminbestätigung */
.public-shell-narrow { max-width: 760px; }
.compact-hero { padding-bottom: 12px; }
.compact-hero h1 { font-size: clamp(32px, 6vw, 50px); }
.eyebrow {
    display: inline-block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.ticket-header,
.section-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}
.ticket-header h2,
.section-heading h2 { margin: 0; }
.appointment-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 18px 0;
}
.fact-box {
    background: var(--panel-2);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 15px;
}
.fact-box span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 750;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.fact-box strong { font-size: 17px; }
.qr-panel,
.admin-qr-wrap {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 20px;
    margin: 18px 0;
    background: #fff;
}
.qr-code {
    width: fit-content;
    min-width: 230px;
    min-height: 230px;
    display: grid;
    place-items: center;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
}
.qr-code img,
.qr-code canvas { display: block; max-width: 100%; height: auto !important; }
.qr-code-compact { min-width: 190px; min-height: 190px; }
.code-box-small {
    font-size: 22px;
    padding: 15px;
    border-radius: 14px;
    letter-spacing: .14em;
}
.note-box,
.empty-inline {
    border: 1px solid var(--line);
    background: var(--panel-2);
    border-radius: 14px;
    padding: 15px;
    margin: 16px 0;
}
.public-actions { margin-top: 20px; }
.center-text { text-align: center; }
.empty-state { text-align: center; }
.form-end { align-self: end; }
.booking-form { margin-top: 18px; }
.service-card { transition: border-color .15s ease, transform .15s ease; }
.service-card:hover { transform: translateY(-1px); border-color: #93c5fd; }
.service-card.is-selected { border-color: #60a5fa; box-shadow: 0 0 0 3px rgba(37, 99, 235, .1); }
.slot-btn { position: relative; cursor: pointer; }
.slot-btn input { position: absolute; opacity: 0; pointer-events: none; }
.slot-btn:has(input:checked) { border-color: #2563eb; background: #eff6ff; color: #1d4ed8; box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
.quick-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.filter-chip {
    display: inline-flex;
    padding: 9px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    font-size: 14px;
    font-weight: 800;
}
.filter-chip.is-active { background: var(--primary); color: #fff; border-color: var(--primary); }
.inline-code {
    display: inline-block;
    padding: 5px 8px;
    border-radius: 8px;
    background: #f3f4f6;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-weight: 800;
    letter-spacing: .06em;
}
.form-grid-single { grid-template-columns: 1fr; }
.scanner-box {
    width: 100%;
    min-height: 280px;
    margin: 16px 0;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    background: #0f172a;
}
.scanner-box video { border-radius: 12px; }
.scanner-message { min-height: 22px; margin: 10px 0; }
.checkin-result { border-top: 4px solid #2563eb; }
.action-grid form { margin: 0; }
button:disabled,
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.divider { border: 0; border-top: 1px solid var(--line); margin: 20px 0; }
.wallet-placeholder { margin-top: 18px; margin-bottom: 0; }

@media (max-width: 720px) {
    .public-page { padding: 16px; }
    .appointment-facts { grid-template-columns: 1fr; }
    .qr-panel,
    .admin-qr-wrap { grid-template-columns: 1fr; justify-items: center; text-align: center; }
    .qr-code { min-width: 0; width: 100%; }
    .ticket-header,
    .section-heading { align-items: flex-start; }
    .public-actions .btn { width: 100%; }
}

/* v0.3 E-Mail, Einstellungen und bessere Handyansicht */
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
body { overflow-x: hidden; }
input, select, textarea, button { font-size: 16px; }
.checkbox-line {
    display: flex;
    grid-template-columns: none;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-weight: 700;
}
.checkbox-line input {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}
.feature-list {
    display: grid;
    gap: 12px;
    margin: 16px 0;
}
.feature-list > div {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px;
}
.dashboard-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}
.dashboard-actions .btn { width: 100%; }
.table-actions {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

@media (max-width: 720px) {
    .main { padding: 14px; }
    .topbar { align-items: flex-start; }
    .card { padding: 16px; border-radius: 16px; }
    .public-page,
    .login-page { padding: 12px; }
    .public-shell,
    .public-shell-narrow,
    .login-card { width: 100%; max-width: 100%; }
    .public-hero { padding: 24px 0 14px; }
    .public-hero h1 { font-size: 32px; }
    .public-hero p { font-size: 16px; }
    .actions { width: 100%; }
    .actions .btn,
    .actions button.btn { flex: 1 1 100%; }
    .dashboard-actions { grid-template-columns: 1fr; }
    .sidebar {
        width: min(86vw, 300px);
        padding: 18px;
    }
    .table-wrap {
        margin-left: -4px;
        margin-right: -4px;
        padding-bottom: 2px;
    }
    th, td { padding: 12px 10px; }
    .slot-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
    .scanner-box { min-height: 240px; }
    .code-box { font-size: 27px; padding: 18px 12px; }
}

@media (max-width: 420px) {
    .slot-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; }
    .brand-mark { width: 40px; height: 40px; }
    .topbar h1 { font-size: 24px; }
    .card { padding: 14px; }
}

/* v0.4 Mobile-Zoom-Fix */
html,
body {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
}

html {
    touch-action: manipulation;
}

body,
.app-shell,
.main,
.public-page,
.public-shell,
.public-shell-narrow,
.login-page,
.login-card,
.card,
.form-grid,
.grid,
.table-wrap,
.qr-panel,
.admin-qr-wrap,
.scanner-box {
    max-width: 100%;
}

img,
video,
canvas,
svg,
iframe {
    max-width: 100%;
}

input,
select,
textarea,
button {
    max-width: 100%;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

@media (max-width: 720px) {
    .public-page,
    .login-page {
        width: 100vw;
        max-width: 100vw;
        padding-left: max(12px, env(safe-area-inset-left));
        padding-right: max(12px, env(safe-area-inset-right));
    }

    .main {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .public-hero,
    .topbar,
    .ticket-header,
    .section-heading {
        min-width: 0;
    }

    .qr-code,
    .qr-code img,
    .qr-code canvas {
        width: min(100%, 260px) !important;
        max-width: 260px !important;
        height: auto !important;
    }

    .code-box,
    .code-box-small,
    .inline-code {
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
}

/* v0.4 Kundenverwaltung, Mitarbeiterrollen und Kalenderdatei */
.dashboard-actions { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.customer-search { margin-top: 14px; }
.public-wallet-note { margin-top: 14px; text-align: left; }
.nav a[href*="customers"],
.nav a[href*="staff_users"] { position: relative; }
.card.stat a { color: inherit; }
.table-wrap form { margin: 0; }

@media (max-width: 720px) {
    .public-wallet-note { text-align: center; }
    .customer-search .actions .btn { width: 100%; }
}

/* v0.5 Digitale Kundenkarten und Stempelkarten */
.loyalty-hero {
    background: linear-gradient(135deg, #111827, #1d4ed8);
    color: #fff;
    border-radius: 28px;
    margin-bottom: 18px;
    padding: 34px 22px;
    box-shadow: var(--shadow);
}
.loyalty-hero p { color: #dbeafe; }
.loyalty-card-public,
.loyalty-admin-card,
.loyalty-staff-card {
    border-top: 4px solid #2563eb;
}
.loyalty-progress {
    display: grid;
    gap: 8px;
    margin: 18px 0;
}
.loyalty-progress-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.progress-bar {
    height: 12px;
    border-radius: 999px;
    background: #e5e7eb;
    overflow: hidden;
}
.progress-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #2563eb, #16a34a);
}
.stamp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(48px, 1fr));
    gap: 10px;
    margin: 18px 0;
}
.stamp-grid-small { grid-template-columns: repeat(auto-fit, minmax(40px, 1fr)); }
.stamp-dot {
    min-height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    border: 2px dashed #cbd5e1;
    color: #64748b;
    font-weight: 900;
    background: #f8fafc;
}
.stamp-grid-small .stamp-dot { min-height: 40px; border-radius: 13px; }
.stamp-dot.is-filled {
    border-style: solid;
    border-color: #16a34a;
    background: #dcfce7;
    color: #166534;
}
.reward-box {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 18px;
    padding: 18px;
    margin: 18px 0;
}
.loyalty-qr-panel { margin-top: 18px; }
.actions-cell .btn { margin-bottom: 4px; }

@media (max-width: 720px) {
    .loyalty-hero { border-radius: 20px; }
    .stamp-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; }
    .stamp-dot { min-height: 42px; border-radius: 13px; font-size: 13px; }
    .loyalty-progress-head { align-items: flex-start; }
}

/* v0.6 Wallet preparation */
.wallet-btn {
    background: #111827;
    position: relative;
    gap: 8px;
}
.wallet-btn::before {
    content: "▣";
    font-size: 14px;
    opacity: .9;
}
.wallet-preview {
    border-radius: 28px;
    padding: 22px;
    min-height: 320px;
    display: grid;
    gap: 18px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, .24);
    overflow: hidden;
    position: relative;
}
.wallet-preview::after {
    content: "";
    position: absolute;
    inset: auto -15% -42% -15%;
    height: 55%;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
}
.wallet-preview-large { margin-bottom: 18px; }
.wallet-preview-top,
.wallet-preview-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    position: relative;
    z-index: 1;
}
.wallet-preview-top span,
.wallet-preview-main span,
.wallet-preview-row span {
    display: block;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.wallet-preview-top strong { font-size: 14px; }
.wallet-preview-main {
    position: relative;
    z-index: 1;
    align-self: end;
}
.wallet-preview-main strong {
    display: block;
    font-size: clamp(28px, 5vw, 42px);
    line-height: 1.05;
}
.wallet-preview-row strong { display:block; max-width: 190px; }
.wallet-preview-code {
    width: 96px;
    height: 96px;
    border-radius: 18px;
    background: #fff;
    color: #111827;
    display: grid;
    place-items: center;
    font-weight: 950;
    letter-spacing: .18em;
    position: relative;
    z-index: 1;
}
.wallet-status-card {
    margin: 16px 0;
    border-radius: 16px;
    padding: 15px;
    border: 1px solid var(--line);
}
.wallet-ready { background: #dcfce7; border-color: #bbf7d0; }
.wallet-missing { background: #fff7ed; border-color: #fed7aa; }
.wallet-pass-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 16px 0;
}
.wallet-pass-meta div {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px;
    background: var(--panel-2);
    min-width: 0;
}
.wallet-pass-meta span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 5px;
}
.wallet-pass-meta strong,
code {
    overflow-wrap: anywhere;
}
.wallet-color-grid input[type="color"] {
    height: 46px;
    padding: 4px;
}
@media (max-width: 720px) {
    .wallet-pass-meta { grid-template-columns: 1fr; }
    .wallet-preview { min-height: 280px; border-radius: 22px; }
    .wallet-preview-top, .wallet-preview-row { flex-direction: column; }
}

/* v0.6.1 Mobile: Uhrzeiten kompakt in 4 Spalten */
@media (max-width: 720px) {
    .slot-btn {
        border-radius: 11px;
        padding: 10px 4px;
        font-size: 15px;
        line-height: 1.1;
    }
    .slot-btn span {
        display: block;
        white-space: nowrap;
    }
}

@media (max-width: 360px) {
    .slot-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 5px; }
    .slot-btn {
        padding: 9px 2px;
        font-size: 14px;
    }
}

/* v0.7 Apple Wallet Kundenkarte */
.btn-wallet {
    background: #111827;
    color: #fff;
    border-color: #111827;
    box-shadow: 0 14px 30px rgba(15,23,42,.18);
}
.wallet-download-card {
    display: grid;
    gap: 16px;
}
.wallet-stamp-preview-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0 16px;
    max-width: 430px;
}
.wallet-stamp-preview-grid span {
    aspect-ratio: 1 / 1;
    border: 2px solid var(--stamp-label, rgba(255,255,255,.5));
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 950;
    font-size: 16px;
    color: inherit;
    opacity: .85;
}
.wallet-stamp-preview-grid span.is-filled {
    background: var(--stamp-fill, #fff);
    color: #111827;
    opacity: 1;
}
.wallet-checklist {
    display: grid;
    gap: 8px;
    margin: 14px 0;
}
.wallet-checklist div {
    border-radius: 12px;
    padding: 10px 12px;
    font-weight: 850;
    border: 1px solid var(--line);
}
.wallet-checklist .ok {
    background: #dcfce7;
    border-color: #86efac;
    color: #166534;
}
.wallet-checklist .bad {
    background: #fff7ed;
    border-color: #fdba74;
    color: #9a3412;
}
.code-block {
    background: #0f172a;
    color: #e5e7eb;
    padding: 12px 14px;
    border-radius: 12px;
    overflow-x: auto;
    font-size: 13px;
}
.help-list.numbered {
    list-style: decimal;
    padding-left: 20px;
}
.help-list li {
    margin: 6px 0;
}
@media (max-width: 720px) {
    .wallet-stamp-preview-grid { gap: 7px; }
    .wallet-stamp-preview-grid span { font-size: 13px; }
}

/* v0.8 Locento growth features */
.help-box {
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px 14px;
    color: var(--muted);
    font-size: 14px;
}
.inline-form { display: inline; }
.coupon-hero {
    background: linear-gradient(135deg, #0f172a, #334155);
}
.coupon-reward {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.22);
    color: #fff;
}
.coupon-code {
    display: inline-block;
    margin-top: 12px;
    font-size: 18px;
    letter-spacing: .12em;
}
.flash-info {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #1e40af;
}
.check-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}
.check-row input { width: auto; }
hr {
    border: 0;
    border-top: 1px solid var(--line);
    margin: 20px 0;
}

/* v0.9 Automationen, Warteliste und No-Show-Schutz */
.automation-card { border-top: 4px solid #2563eb; }
.note-box code { display: inline-block; max-width: 100%; overflow-wrap: anywhere; }
.waitlist-public-link { margin-top: 12px; }
.badge-pill-stack { display: grid; gap: 5px; align-items: start; }
@media (max-width: 720px) {
    .filter-card .section-heading { display: grid; }
    .note-box code { font-size: 12px; }
}
