/* ============================================
   Public Booking Website Styles
   ============================================ */

:root {
    --sand: #ff6600;
    --blue: #376AB1;
    --blue-light: rgba(55,106,177,.08);
    --green: #22c55e;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-700: #334155;
}

/* Hero */
.book-hero {
    min-height: 550px;
    display: flex;
    align-items: center;
}

/* ─── BOOKING BAR (Leihwagen Style) ─────────── */
.bar-box {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 24px 80px rgba(0,0,0,.22);
    width: min(920px, 100%);
    margin: 0 auto;
}

.bar-form {
    display: grid;
    grid-template-columns: 1fr 1.275fr 0.75fr auto;
    gap: 12px;
    align-items: stretch;
    padding: 20px 28px 10px;
}

.bar-field {
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: 14px;
    padding: 12px 16px 10px;
    display: flex;
    flex-direction: column;
    min-width: 0;
    position: relative;
    transition: border-color .18s, box-shadow .18s, background .18s;
    cursor: pointer;
    z-index: 1;
}

.bar-field:hover { border-color: #b0c4de; background: #fff; z-index: 2; }
.bar-field:focus-within { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(55,106,177,.08); background: #fff; z-index: 20; }

.bar-label {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--gray-400);
    margin-bottom: 6px;
}

.bar-field input {
    width: 100%; border: none; outline: none;
    font-family: inherit; font-size: .95rem; font-weight: 500;
    color: #1a1a2e; background: transparent; padding: 0; cursor: pointer;
}
.bar-field input::placeholder { color: #1a1a2e; font-weight: 500; }

/* Submit Button */
.bar-submit-wrap { flex-shrink: 0; }
.bar-submit {
    width: 100%; height: 100%;
    background: var(--sand); color: #fff;
    border: none; border-radius: 12px;
    padding: 14px 24px;
    font-family: inherit; font-size: 1rem; font-weight: 700;
    cursor: pointer; white-space: nowrap;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: all .22s;
}
.bar-submit:hover { filter: brightness(1.15); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,102,0,.35); animation: none; }

/* Sequential pulse: highlights the next field to fill */
.bar-field.pulse { animation: fieldPulse 1.4s ease-in-out infinite; }
.bar-submit.pulse { animation: btnPulse 1.4s ease-in-out infinite; }

/* Validation error on search bar */
.bar-field.bar-field-error {
    border-color: #dc2626 !important;
    background: #fef2f2 !important;
    animation: fieldShake 0.45s ease-in-out;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}
@keyframes fieldShake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

@keyframes fieldPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(55,106,177,.4); }
    50%      { box-shadow: 0 0 0 8px rgba(55,106,177,0); }
}
@keyframes btnPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,102,0,.5); }
    50%      { box-shadow: 0 0 0 8px rgba(255,102,0,0); }
}

/* Date Range */
.zeitraum-wrap { position: relative; display: flex; align-items: center; }
.zeitraum-wrap input { flex: 1; padding-right: 24px; }
.zeitraum-arrow { position: absolute; right: 0; font-size: .65rem; color: var(--gray-400); pointer-events: none; }

/* Time Row */
.time-row { display: flex; gap: 8px; margin-top: 8px; min-width: 0; }
.time-picker-wrap { display: flex; align-items: center; gap: 6px; flex: 1 1 0; min-width: 0; }
.time-label { font-size: .72rem; color: var(--gray-400); white-space: nowrap; flex-shrink: 0; }
.time-select {
    flex: 1 1 0; min-width: 0; border: 1px solid var(--gray-200); border-radius: 6px;
    padding: 3px 6px; font-size: .82rem; font-family: inherit;
    color: var(--gray-700); background: #fff; cursor: pointer;
}

/* Trust Badges */
.bar-note {
    text-align: center; font-size: .78rem; color: var(--gray-500);
    padding: 10px 28px 18px;
    display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.bar-note b { color: var(--green); }

/* ─── CUSTOM DROPDOWN (CDD) ───────────────── */
.cdd { position: relative; width: 100%; }
.cdd-trigger {
    display: flex; align-items: center; justify-content: space-between; gap: 6px;
    cursor: pointer; width: 100%;
    font-family: inherit; font-size: .95rem; font-weight: 500;
    color: #1a1a2e; background: transparent; border: none; padding: 0; text-align: left;
}
.cdd-arrow { flex-shrink: 0; transition: transform .2s; color: var(--gray-400); font-size: .7rem; }
.cdd.open .cdd-arrow { transform: rotate(180deg); }

.cdd-list {
    display: none; position: absolute;
    top: calc(100% + 10px); left: -16px;
    min-width: calc(100% + 32px);
    background: #fff; border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,.14);
    border: 1px solid var(--gray-200);
    overflow: hidden; z-index: 1000;
    max-height: 240px; overflow-y: auto;
}
.cdd.open .cdd-list { display: block; }

.cdd-option {
    padding: 10px 16px; font-size: .92rem; font-weight: 500;
    color: var(--gray-700); cursor: pointer;
    border-bottom: 1px solid var(--gray-100); transition: background .12s;
}
.cdd-option:last-child { border-bottom: none; }
.cdd-option:hover { background: var(--blue-light); color: var(--blue); }
.cdd-option.selected { color: var(--blue); font-weight: 600; background: var(--blue-light); }

/* Age dropdown specific - wider with fee on right */
#cddAge .cdd-list { min-width: 240px; }
#cddAge .cdd-option { display: flex; align-items: center; justify-content: space-between; gap: 8px; white-space: nowrap; }
#cddAge .cdd-option .age-label { font-weight: 600; }
#cddAge .cdd-option .age-fee { font-size: .78rem; color: #6b7280; font-weight: 500; }
#cddAge .cdd-option:hover .age-fee, #cddAge .cdd-option.selected .age-fee { color: var(--blue); }

/* Different Return Location */
.diff-return-toggle {
    font-size: .7rem; color: var(--blue); cursor: pointer;
    margin-top: 11px; display: inline-flex; align-items: center; gap: 3px;
    background: none; border: none; padding: 0; font-family: inherit; text-decoration: underline;
}
.diff-return-inline { display: none; margin-top: 7px; }
.diff-return-inline.visible { display: block; }

/* Flatpickr Overrides */
.flatpickr-calendar { font-family: inherit !important; border-radius: 16px !important; box-shadow: 0 8px 40px rgba(0,0,0,.16) !important; border: 1px solid var(--gray-200) !important; margin-top: 12px !important; z-index: 1200 !important; }
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange { background: var(--sand) !important; border-color: var(--sand) !important; color: #fff !important; }
.flatpickr-day.inRange { background: #ffe4d0 !important; border-color: #ffe4d0 !important; color: var(--sand) !important; box-shadow: -5px 0 0 #ffe4d0, 5px 0 0 #ffe4d0 !important; }
.flatpickr-day:hover { background: #ffe4d0 !important; }
.flatpickr-month { background: var(--sand) !important; color: #fff !important; border-radius: 16px 16px 0 0 !important; }
.flatpickr-current-month,
.flatpickr-current-month span.cur-month,
.flatpickr-current-month .numInputWrapper,
.flatpickr-current-month input.cur-year { color: #fff !important; }
.flatpickr-current-month input.cur-year { background: transparent !important; border: none !important; }
.flatpickr-current-month .numInputWrapper span.arrowUp::after { border-bottom-color: #fff !important; }
.flatpickr-current-month .numInputWrapper span.arrowDown::after { border-top-color: #fff !important; }
.flatpickr-prev-month svg, .flatpickr-next-month svg { fill: #fff !important; }

/* ─── TRUST BADGES SECTION ────────────────── */
.trust-section { background: #fff; border-bottom: 1px solid #eee; }

.trust-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    max-width: 950px;
    margin: 0 auto;
}

.trust-grid-3col {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
}

.trust-grid-2col {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.trust-badges-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
}

.trust-badges-right {
    align-items: stretch;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 30px;
    padding: 11px 22px;
    font-size: .9rem;
    font-weight: 600;
    color: #334155;
    width: 100%;
    transition: box-shadow .2s, border-color .2s;
}

.trust-badge-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.trust-badge-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.trust-badge-icon svg { display: block; }

.trust-center {
    text-align: center;
    min-width: 250px;
}

.trust-center-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--gray-400);
    margin-bottom: 10px;
}

.trust-widget { display: inline-block; }

@media (max-width: 780px) {
    .trust-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .trust-center { grid-column: 1 / -1; }
    .trust-badges-col { gap: 8px; }
    .trust-badges-right { align-items: flex-start; }
    .trust-badge-item { font-size: .82rem; padding: 9px 16px; }
}

/* Category card rounded corners (legacy - replaced by new .vehicle-card layout) */
.home-category-card {
    border-radius: 16px !important;
    overflow: hidden !important;
    border: 1px solid #e2e8f0 !important;
}

img.cat-img {
    margin: 12px 12px 0 !important;
    border-radius: 20px !important;
    width: calc(100% - 24px) !important;
    height: 160px !important;
    object-fit: contain !important;
    background: #fff !important;
    padding: 10px !important;
}

/* ─── STEPS SECTION ───────────────────────── */
.steps-section { padding-bottom: 50px; }

.steps-hero {
    background: linear-gradient(135deg, #7ec8e3 0%, #87ceeb 50%, #a8d8ea 100%);
    border-radius: 20px;
    padding: 50px 20px 60px;
    margin: 0 20px;
    color: #fff;
}

.steps-badge {
    display: inline-block;
    background: rgba(255,255,255,.25);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.steps-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
}

.steps-subtitle {
    font-size: 1.05rem;
    opacity: .9;
    margin: 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: -30px;
    text-align: center;
}

.step-item { padding: 0 10px; }

.step-circle {
    width: 64px;
    height: 64px;
    border: 2.5px solid #87ceeb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: #fff;
    transition: all .3s;
}

.step-circle span {
    font-size: 1.4rem;
    font-weight: 700;
    color: #87ceeb;
}

.step-circle.active {
    border-color: #3b82f6;
    box-shadow: 0 0 0 6px rgba(59,130,246,.15);
    transform: scale(1.1);
}

.step-circle.active span { color: #3b82f6; }

.step-item h5 {
    font-size: .95rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.step-item p {
    font-size: .85rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 780px) {
    .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .steps-title { font-size: 1.5rem; }
    .steps-hero { margin: 0 10px; padding: 30px 15px 50px; }
}

/* ─── HOME CATEGORY CARDS (legacy bootstrap card on home page) ─── */
.home-category-card {
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #eee;
}
.home-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.vehicle-list-card {
    transition: box-shadow 0.2s;
    border: 1px solid #eee;
}
.vehicle-list-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.badge { font-weight: 500; }

footer { font-size: 14px; }
footer a { text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* ─── PROMO SECTION ───────────────────────── */
.promo-section { padding: 60px 0; background: #f8fafc; }

.promo-img-wrap { position: relative; border-radius: 16px; overflow: hidden; }
.promo-img { width: 100%; display: block; border-radius: 16px; }
.promo-price-badge {
    position: absolute; bottom: 20px; left: 20px;
    background: #fff; padding: 12px 20px; border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,.12);
    font-size: 1.2rem; color: var(--brand-primary);
}

.promo-badge {
    display: inline-block; background: #e2e8f0; color: #334155;
    font-size: .72rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; padding: 6px 14px; border-radius: 6px;
    margin-bottom: 12px;
}

.promo-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.promo-tag {
    border: 1.5px solid #cbd5e1; border-radius: 20px; padding: 5px 14px;
    font-size: .82rem; font-weight: 600; color: #475569;
}

.promo-title {
    font-size: 2rem; font-weight: 800; color: #1a1a2e;
    line-height: 1.2; margin-bottom: 16px;
}

.promo-text { font-size: 1rem; color: #64748b; line-height: 1.7; margin-bottom: 20px; }

.promo-bullets { list-style: none; padding: 0; margin-bottom: 24px; }
.promo-bullets li {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 0; font-size: .95rem; color: #334155; font-weight: 500;
}
.promo-bullets li svg { flex-shrink: 0; }

.promo-cta {
    display: inline-block; background: var(--sand, #ff6600); color: #fff;
    padding: 14px 32px; border-radius: 10px; font-size: 1rem; font-weight: 700;
    text-decoration: none; transition: all .2s;
}
.promo-cta:hover { filter: brightness(1.1); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,102,0,.3); color: #fff; }

/* ─── LEGAL PAGES ─────────────────────────── */
.legal-page { padding: 40px 0 60px; }

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-primary, #0d6efd);
    margin-bottom: 30px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--brand-primary, #0d6efd);
}

.legal-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 20px;
}

.legal-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brand-primary, #0d6efd);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--brand-primary, #0d6efd);
}

.legal-card h4 {
    font-size: .95rem;
    font-weight: 700;
    color: #334155;
    margin: 16px 0 8px;
}

.legal-card p {
    font-size: .9rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
}

.legal-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #f0f0f0;
    font-size: .9rem;
    vertical-align: top;
}

.legal-table td:first-child {
    font-weight: 600;
    color: #64748b;
    width: 35%;
    white-space: nowrap;
}

.legal-table a {
    color: var(--brand-primary, #0d6efd);
    text-decoration: none;
}

.legal-table a:hover { text-decoration: underline; }

.legal-intro {
    text-align: center;
    color: #64748b;
    font-size: .95rem;
    margin-top: -18px;
    margin-bottom: 28px;
}

.legal-updated {
    margin-top: 16px !important;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
    color: #94a3b8 !important;
    font-size: .85rem !important;
}

.legal-toc { background: #f8fafc; }
.legal-toc strong {
    display: block;
    color: #1a1a2e;
    font-size: 1rem;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e2e8f0;
}
.legal-toc a {
    display: block;
    padding: 5px 0;
    color: var(--brand-primary, #0d6efd);
    text-decoration: none;
    font-size: .9rem;
}
.legal-toc a:hover { text-decoration: underline; }

/* Cookie-spezifische Tabelle mit echten Kopfzeilen + Badges */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0 18px;
    font-size: .88rem;
}
.cookie-table th {
    background: #f1f5f9;
    padding: 10px 12px;
    text-align: left;
    font-weight: 600;
    color: #334155;
    border-bottom: 2px solid #e2e8f0;
}
.cookie-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: top;
}
.cookie-table tbody tr:hover { background: #f8fafc; }
.cookie-table td strong { color: #1a1a2e; font-weight: 600; }

.cookie-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}
.cookie-badge-green  { background: #dcfce7; color: #166534; }
.cookie-badge-yellow { background: #fef3c7; color: #92400e; }
.cookie-badge-red    { background: #fee2e2; color: #991b1b; }

/* Mobile: Cookie-Tabellen als Stapel-Cards statt 4-Spalten — passt auf jedes Phone */
@media (max-width: 640px) {
    .cookie-table,
    .cookie-table thead,
    .cookie-table tbody,
    .cookie-table tr,
    .cookie-table td { display: block; width: 100%; }
    .cookie-table thead { display: none; }
    .cookie-table tr {
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 10px;
        padding: 10px 12px;
        margin-bottom: 10px;
    }
    .cookie-table tbody tr:hover { background: #fff; }
    .cookie-table td {
        padding: 4px 0;
        border-bottom: none;
        font-size: .88rem;
    }
    /* Cell-Labels via data-label oder direkter CSS-Pseudo-Fallback */
    .cookie-table td:nth-child(1) {
        font-size: 1rem; font-weight: 700; color: #1a1a2e;
        padding-bottom: 6px;
        margin-bottom: 6px;
        border-bottom: 1px solid #f0f0f0;
    }
    .cookie-table td:nth-child(1) strong { font-weight: 700; }
    .cookie-table td:nth-child(2)::before { content: ''; }
    .cookie-table td:nth-child(3)::before {
        content: attr(data-label-duration) '• ';
        color: #94a3b8; font-size: .78rem; margin-right: 4px;
    }
    .cookie-table td:nth-child(4) { margin-top: 4px; }

    /* Legal-Seiten insgesamt auf Mobile etwas engeren Rand + kleinere Ueberschriften */
    .legal-page { padding: 20px 0 40px; }
    .legal-content h1 { font-size: 1.45rem; margin-bottom: 18px; padding-bottom: 10px; }
    .legal-card { padding: 18px 16px; margin-bottom: 14px; border-radius: 10px; }
    .legal-card h3 { font-size: 1rem; margin-bottom: 10px; padding-bottom: 6px; }
    .legal-card h4 { font-size: .9rem; margin: 12px 0 6px; }
    .legal-card p, .legal-card ul { font-size: .88rem; }
    .legal-card ul { padding-left: 18px; }
    .legal-intro { font-size: .88rem; margin-top: -10px; margin-bottom: 18px; padding: 0 6px; }
    .legal-toc a { font-size: .85rem; padding: 3px 0; }
}

/* ─── FAQ SECTION ─────────────────────────── */
.faq-section { padding: 60px 0; background: #fff; }

.faq-title {
    font-size: 1.8rem; font-weight: 800; color: #1a1a2e;
    text-align: center; margin-bottom: 40px;
}

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
    border: 1.5px solid #e2e8f0; border-radius: 12px;
    margin-bottom: 12px; overflow: hidden;
    transition: border-color .2s;
}
.faq-item:hover { border-color: #cbd5e1; }
.faq-item.open { border-color: var(--brand-primary, #0d6efd); }

.faq-question {
    width: 100%; display: flex; align-items: center;
    justify-content: space-between; gap: 16px;
    padding: 18px 24px; border: none; background: #fff;
    font-family: inherit; font-size: 1rem; font-weight: 600;
    color: #1a1a2e; text-align: left; cursor: pointer;
    transition: background .15s;
}
.faq-question:hover { background: #f8fafc; }

.faq-arrow { flex-shrink: 0; transition: transform .25s; color: #94a3b8; }
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--brand-primary, #0d6efd); }

.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease;
    padding: 0 24px;
}
.faq-item.open .faq-answer {
    max-height: 500px; padding: 0 24px 20px;
}

.faq-answer p {
    font-size: .92rem; color: #475569; line-height: 1.7; margin: 0;
}

/* ─── CUSTOM PAGE SECTIONS ────────────────── */
.custom-page-section { padding: 50px 0; }
.custom-page-content { font-size: .95rem; color: #334155; line-height: 1.7; }
.custom-page-content h1, .custom-page-content h2, .custom-page-content h3 { color: #1a1a2e; margin: 16px 0 8px; }
.custom-page-content p { margin-bottom: 12px; }
.custom-page-content ul, .custom-page-content ol { margin-bottom: 12px; padding-left: 20px; }
.custom-page-content a { color: var(--brand-primary, #0d6efd); }

/* ─── PROGRESS BAR ───────────────────────── */
.booking-progress { background: #fff; border-bottom: 1px solid #e5e7eb; padding: 16px 0; }
.progress-steps { display: flex; justify-content: center; gap: 0; }
.progress-step { display: flex; align-items: center; gap: 8px; padding: 0 24px; position: relative; text-decoration: none; }
.progress-step:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 50%; width: 1px; height: 24px; transform: translateY(-50%); background: #d1d5db; }
.progress-step.clickable { cursor: pointer; }
.progress-step.clickable:hover .step-circle { filter: brightness(.92); transform: scale(1.05); }
.progress-step.clickable:hover .step-label { text-decoration: underline; }
.progress-step .step-circle { transition: transform .15s, filter .15s; }
.step-circle { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; color: #9ca3af; background: #f3f4f6; border: 2px solid #d1d5db; flex-shrink: 0; }
.progress-step.active .step-circle { background: var(--brand-primary, #2563eb); color: #fff; border-color: var(--brand-primary, #2563eb); }
.progress-step.completed .step-circle { background: #22c55e; color: #fff; border-color: #22c55e; }
.step-label { font-size: 14px; color: #6b7280; font-weight: 500; white-space: nowrap; }
.progress-step.active .step-label { color: #111827; font-weight: 700; }
.progress-step.completed .step-label { color: #22c55e; }

/* ─── BOOKING SUMMARY BAR ────────────────── */
.booking-summary-bar { background: linear-gradient(135deg, var(--brand-secondary, #1e3a5f), var(--brand-primary, #2563eb)); color: #fff; padding: 16px 0; }
.summary-grid { display: grid; grid-template-columns: 1fr 1fr auto 1fr auto; gap: 16px; align-items: center; }
.summary-arrow { display: flex; align-items: center; justify-content: center; }
.summary-item { display: flex; align-items: flex-start; gap: 12px; }
.summary-icon { display: flex; align-items: center; opacity: .9; margin-top: 2px; flex-shrink: 0; }
.summary-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; opacity: .7; }
.summary-value { font-size: 15px; font-weight: 700; }
.summary-sub { font-size: 13px; opacity: .8; }
.summary-action { display: flex; align-items: center; justify-content: flex-end; }
.btn-change { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.3); padding: 8px 20px; border-radius: 8px; font-weight: 600; text-decoration: none; transition: background .2s; }
.btn-change:hover { background: rgba(255,255,255,.25); color: #fff; }

/* ─── VEHICLE CARDS (modern, clean) ──────── */
.vehicle-cards-wrap { max-width: 1240px; margin: 0 auto; }
.vehicle-card { display: grid; grid-template-columns: 320px 1fr 280px; background: #fff; border: 1px solid #d1d5db; border-radius: 16px; margin-bottom: 20px; transition: box-shadow .25s, transform .25s, border-color .25s; position: relative; box-shadow: 0 1px 3px rgba(0,0,0,.04); min-height: 220px; }
.vehicle-card:hover { box-shadow: 0 12px 28px rgba(0,0,0,.1); border-color: #9ca3af; transform: translateY(-2px); }

.vehicle-card-image { position: relative; padding: 0; border-radius: 16px 0 0 16px; overflow: hidden; background: #fff; }
.vehicle-card-image img { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .4s; }
.vehicle-card:hover .vehicle-card-image img { transform: scale(1.05); }
.vehicle-card-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 112px; color: #d1d5db; background: #f8fafc; }
.category-badge { position: absolute; top: -14px; left: 24px; background: #111827; color: #fff; font-size: 11px; font-weight: 700; padding: 7px 16px; border-radius: 20px; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 4px 14px rgba(0,0,0,.15); z-index: 2; }

.vehicle-card-info { padding: 18px 22px; display: flex; flex-direction: column; gap: 10px; justify-content: center; min-width: 0; }
.vehicle-card-title { font-size: 20px; font-weight: 800; color: #111827; margin: 0; letter-spacing: -.3px; }
.vehicle-card-actions { display: flex; gap: 6px; margin-top: 4px; }
.btn-card-action { display: inline-flex; align-items: center; gap: 5px; background: #fff; border: 1px solid #e5e7eb; border-radius: 8px; padding: 6px 14px; font-size: 12px; color: #6b7280; cursor: pointer; white-space: nowrap; transition: all .15s; text-decoration: none; font-weight: 500; }
.btn-card-action:hover { background: #f9fafb; border-color: #9ca3af; color: #111827; }

.vehicle-specs { display: flex; flex-wrap: wrap; gap: 6px; }
.spec-pill { display: inline-flex; align-items: center; gap: 4px; background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 20px; padding: 5px 12px; font-size: 12px; color: #374151; white-space: nowrap; font-weight: 500; }
.spec-payment { background: #1e293b; color: #fff; border-color: #1e293b; font-weight: 700; font-size: 10px; padding: 4px 8px; border-radius: 4px; }
.spec-payment-img { background: none; border: none; padding: 2px; display: inline-flex; align-items: center; }
.vehicle-payments { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.spec-deposit-badge {
    display: inline-flex; align-items: center; gap: 4px;
    margin-left: 4px; padding: 3px 10px;
    background: #fff; color: #6b7280;
    border: 1px solid #e5e7eb; border-radius: 6px;
    font-size: .78rem; font-weight: 500; white-space: nowrap;
}
@media (max-width: 768px) {
    .spec-deposit-badge { font-size: .7rem; padding: 2px 8px; }
}

.vehicle-features { display: flex; flex-wrap: wrap; gap: 6px; }
.feature-badge { display: inline-flex; align-items: center; gap: 4px; background: #f0fdf4; border: 1px solid #bbf7d0; color: #15803d; border-radius: 6px; padding: 4px 10px; font-size: 11px; font-weight: 600; }

.vehicle-card-price { padding: 18px 18px; display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 8px; border-left: 1px solid #f1f5f9; background: #fafbfc; border-radius: 0 16px 16px 0; }
.price-row-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.price-daily { display: flex; flex-direction: column; line-height: 1; text-align: left; }
.price-period { display: block; font-size: 10px; color: #6b7280; margin-bottom: 2px; text-transform: uppercase; letter-spacing: .5px; }
.price-amount { font-size: 20px; font-weight: 800; color: var(--brand-primary, #0d6efd); display: block; letter-spacing: -.5px; line-height: 1; }
.price-breakdown { padding: 6px 0; border-top: 1px dashed #e5e7eb; border-bottom: 1px dashed #e5e7eb; margin: 2px 0; }
.price-row { display: flex; justify-content: space-between; align-items: center; gap: 10px; font-size: 11px; color: #6b7280; line-height: 1.5; }
.price-row-label { flex: 1 1 auto; min-width: 0; }
.price-row-value { flex: 0 0 auto; white-space: nowrap; }
.price-row-value { font-weight: 600; color: #374151; }
.price-row-value.price-row-incl { font-weight: 500; color: #9ca3af; font-style: italic; }
.price-row.price-row-base { font-size: 13px; }
.price-row.price-row-base .price-row-label,
.price-row.price-row-base .price-row-value { font-weight: 700; color: #111827; }

/* Gesamt-Zeile auf der Fahrzeugliste */
.price-breakdown-stack { border: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.price-breakdown-stack .price-row { font-size: 13px; color: #374151; padding: 2px 0; }
.price-breakdown-stack .price-row-total {
    margin-top: 6px; padding-top: 8px; border-top: 1px dashed #d1d5db;
    align-items: baseline;
}
.price-breakdown-stack .price-row-total .price-row-label {
    font-size: 15px; font-weight: 800; color: #111827;
}
.price-breakdown-stack .price-row-total .price-row-value {
    font-size: 22px; font-weight: 800; color: #111827; letter-spacing: -.4px;
    text-align: right; display: flex; flex-direction: column; align-items: flex-end; line-height: 1.1;
}
.price-row-vat { font-size: 9px; color: #9ca3af; font-weight: 400; letter-spacing: .2px; margin-top: 1px; }
.price-per-day-note { text-align: right; font-size: 11px; color: #9ca3af; margin-top: 2px; }
.price-row-sub { font-size: 11px; font-weight: 500; color: #9ca3af; margin-left: 4px; white-space: nowrap; }
@media (max-width: 768px) {
    .price-breakdown-stack .price-row-total .price-row-value { font-size: 20px; }
    .price-breakdown-stack .price-row-total .price-row-label { font-size: 14px; }
    .price-breakdown-stack .price-row { font-size: 12px; }
}
.price-total { display: flex; flex-direction: column; text-align: right; line-height: 1; }
.price-total-label { font-size: 10px; color: #9ca3af; display: block; margin-bottom: 2px; text-transform: uppercase; letter-spacing: .5px; }
.price-total-amount { display: block; font-size: 26px; font-weight: 800; color: #111827; line-height: 1; letter-spacing: -.5px; }
.price-total-vat { display: block; font-size: 8px; color: #9ca3af; margin-top: 2px; letter-spacing: .2px; }
.bs-total-vat { font-size: 9px; color: #9ca3af; margin-right: 6px; letter-spacing: .2px; font-weight: 400; }
.payment-method-card {
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: border-color .15s, box-shadow .15s;
}
.payment-method-card:hover { border-color: var(--brand-primary, #0d6efd); box-shadow: 0 4px 14px -8px rgba(13,110,253,.35); }
.payment-method-icon { font-size: 28px; line-height: 1; margin-bottom: 8px; }
.payment-method-title { font-size: 18px; font-weight: 700; color: #111827; margin: 0 0 6px; }
.payment-method-desc { line-height: 1.5; }
.payment-method-card .btn-checkout-submit { margin-top: auto; }
.payment-methods-row { display: flex; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; }
.payment-method-opt {
    flex: 1 1 0;
    min-width: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 10px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: all .15s;
    text-align: center;
}
.payment-method-opt input { position: absolute; opacity: 0; }
.payment-method-opt:hover { border-color: #9ca3af; }
.payment-method-opt.is-selected { border-color: var(--brand-primary, #0d6efd); background: color-mix(in srgb, var(--brand-primary, #0d6efd) 8%, #fff); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-primary, #0d6efd) 15%, transparent); }
.payment-method-opt .pmo-icon { font-size: 22px; line-height: 1; }
.payment-method-opt .pmo-title { font-size: 13px; font-weight: 600; color: #111827; }

/* Single-method mode: nur eine Zahlungsart — kein Button-Look, schmal, zentriert */
.payment-methods-row.is-single {
    justify-content: flex-start;
    margin-bottom: 14px;
}
.payment-methods-row.is-single .payment-method-opt {
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
    padding: 6px 12px;
    flex-direction: row;
    gap: 8px;
    background: transparent;
    border: none;
    box-shadow: none !important;
    cursor: default;
    pointer-events: none;
}
.payment-methods-row.is-single .payment-method-opt .pmo-icon { font-size: 18px; }
.payment-methods-row.is-single .payment-method-opt .pmo-title { font-size: 13px; color: #6b7280; font-weight: 600; }
.payment-method-panel { margin-top: 8px; }
.btn-choose { display: inline-block; background: var(--brand-primary, #0d6efd); color: #fff; padding: 10px 18px; border-radius: 28px; font-weight: 700; font-size: 14px; text-decoration: none; transition: all .2s; text-align: center; box-shadow: 0 3px 10px rgba(13, 110, 253, .22); }
.btn-choose:hover { filter: brightness(0.85); color: #fff !important; background: var(--brand-primary, #0d6efd); transform: translateY(-1px); box-shadow: 0 6px 14px rgba(13, 110, 253, .32); }

/* Sold out category card */
.vehicle-card-soldout { opacity: .55; pointer-events: none; filter: grayscale(.4); }
.vehicle-card-soldout:hover { box-shadow: 0 1px 3px rgba(0,0,0,.04); transform: none; border-color: #d1d5db; }
.btn-choose-soldout { background: #9ca3af !important; box-shadow: none !important; cursor: default; }
/* Hide unlimited km text in compact card layout (already in features) */
.vehicle-card-price .unlimited-km { display: none; }

/* ─── REVIEWS SECTION ──────────────────── */
.reviews-section { padding: 60px 0; background: #f8fafc; }
.reviews-external-section + .reviews-section { padding-top: 20px; }
.reviews-external-embed {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    margin: 0 auto;
    max-width: 100%;
    overflow: hidden;
}
.reviews-external-embed iframe,
.reviews-external-embed img { max-width: 100%; }
@media (max-width: 600px) { .reviews-external-embed { padding: 16px; border-radius: 12px; } }
.reviews-title { font-size: 2rem; font-weight: 800; color: #1a1a2e; margin-bottom: 40px; }
.reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.review-card { background: #fff; border-radius: 16px; padding: 28px 24px; box-shadow: 0 2px 12px rgba(0,0,0,.06); border: 1px solid #e2e8f0; transition: box-shadow .25s, transform .25s; display: flex; flex-direction: column; }
.review-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.1); transform: translateY(-3px); }
.review-stars { color: #f59e0b; font-size: 18px; letter-spacing: 2px; margin-bottom: 14px; }
.review-text { font-size: .95rem; color: #475569; line-height: 1.6; flex: 1; margin-bottom: 18px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--brand-primary, #0d6efd); color: #fff; font-weight: 700; font-size: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.review-name { font-weight: 600; color: #1e293b; font-size: .9rem; }
.review-date { font-size: .78rem; color: #94a3b8; }
@media (max-width: 991px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } .reviews-title { font-size: 1.5rem; } }

/* ─── COOKIE BANNER ────────────────────── */
#cookieBanner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 99999; background: rgba(15,23,42,.95); backdrop-filter: blur(8px); color: #e2e8f0; padding: 16px 24px; box-shadow: 0 -4px 20px rgba(0,0,0,.25); }
.cookie-banner-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.cookie-banner-text { flex: 1; font-size: 14px; line-height: 1.5; min-width: 280px; }
.cookie-banner-link { color: #93c5fd; text-decoration: underline; margin-left: 6px; }
.cookie-banner-link:hover { color: #bfdbfe; }
.cookie-banner-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn { border: none; border-radius: 8px; padding: 10px 20px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all .2s; }
.cookie-btn-accept { background: #22c55e; color: #fff; }
.cookie-btn-accept:hover { background: #16a34a; }
.cookie-btn-decline { background: transparent; color: #94a3b8; border: 1px solid #475569; }
.cookie-btn-decline:hover { background: #1e293b; color: #e2e8f0; }
@media (max-width: 600px) { .cookie-banner-inner { flex-direction: column; text-align: center; } .cookie-banner-buttons { width: 100%; justify-content: center; } }

/* ─── EXTRAS / PROTECTION CARDS ──────────── */
.selected-vehicle-strip { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 12px 18px; }
.selected-vehicle-strip img { max-height: 48px; width: auto; object-fit: contain; }
.selected-vehicle-info { flex: 1; }

.protection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.protection-card { display: flex; flex-direction: column; background: #fff; border: 2px solid #e5e7eb; border-radius: 12px; padding: 20px; cursor: pointer; transition: all .2s; position: relative; }
.protection-card:hover { border-color: #9ca3af; }
.protection-card.is-selected { border-color: var(--brand-primary, #0d6efd); box-shadow: 0 4px 16px rgba(13, 110, 253, .15); }
.protection-card input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }

.protection-card-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.protection-title { font-size: 20px; font-weight: 800; color: #111827; margin: 0; }
.protection-radio { width: 22px; height: 22px; border: 2px solid #d1d5db; border-radius: 50%; flex-shrink: 0; transition: all .2s; position: relative; }
.protection-card.is-selected .protection-radio { border-color: var(--brand-primary, #0d6efd); background: var(--brand-primary, #0d6efd); }
.protection-card.is-selected .protection-radio::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 8px; height: 8px; background: #fff; border-radius: 50%; }

.protection-stars-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.protection-stars { display: flex; gap: 2px; }
.protection-stars .star { font-size: 18px; color: #d1d5db; }
.protection-stars .star.filled { color: #111827; }
.discount-badge { background: #fff; border: 1px solid #fb923c; color: #ea580c; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 14px; }

.protection-deposit { font-size: 14px; font-weight: 700; color: #111827; margin-bottom: 14px; }
.protection-deposit.text-danger { color: #dc2626 !important; }
.protection-deposit.text-success { color: #16a34a !important; }

.protection-divider { margin: 0 0 14px; border: 0; border-top: 1px solid #e5e7eb; }

.protection-features { list-style: none; padding: 0; margin: 0 0 16px; flex: 1; }
.protection-features li { display: flex; align-items: flex-start; gap: 10px; padding: 6px 0; font-size: 14px; line-height: 1.4; }
.protection-features li.included { color: #111827; }
.protection-features li.excluded { color: #9ca3af; }
.protection-features .feature-icon { flex-shrink: 0; width: 16px; font-weight: 700; }
.protection-features li.included .feature-icon { color: #111827; }
.protection-features li.excluded .feature-icon { color: #9ca3af; }
.protection-features .feature-text { flex: 1; }
.protection-features .feature-info { color: #9ca3af; cursor: help; flex-shrink: 0; }

.protection-price { padding-top: 14px; border-top: 1px solid #e5e7eb; }
.protection-price .price-free { font-size: 22px; font-weight: 800; color: #111827; }
.protection-price .price-amount-protection { font-size: 22px; font-weight: 800; color: #111827; }
.protection-price .price-unit { font-size: 14px; color: #6b7280; }

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

/* ─── CHECKOUT PAGE ──────────────────────── */
.checkout-topbar { background: #fff; border-bottom: 1px solid #e5e7eb; }
.btn-back { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: #f3f4f6; color: #111827; text-decoration: none; font-size: 20px; transition: background .15s; }
.btn-back:hover { background: #e5e7eb; color: #111827; }
.checkout-title { font-size: 18px; font-weight: 800; color: #111827; margin: 0; letter-spacing: .5px; }
.checkout-title-right { font-size: 18px; font-weight: 800; color: #111827; margin: 0; letter-spacing: .5px; }
.checkout-total-top { font-size: 22px; font-weight: 800; color: #111827; }
.checkout-total-top::after { content: ''; }

.checkout-page { background: #f8fafc; }

.checkout-section { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 24px; margin-bottom: 16px; }
.checkout-section-title { font-size: 18px; font-weight: 800; color: #111827; margin: 0 0 16px; }

.info-banner { background: #f3f4f6; border: 1px solid #e5e7eb; border-radius: 8px; padding: 12px 16px; font-size: 14px; color: #374151; }

.arrival-type-toggle { display: flex; gap: 10px; }
.arrival-option { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 18px; background: #fff; border: 2px solid #e5e7eb; border-radius: 10px; cursor: pointer; font-weight: 600; font-size: 15px; color: #374151; transition: all .15s; margin: 0; }
.arrival-option:hover { border-color: #9ca3af; }
.arrival-option.active { border-color: var(--brand-primary, #0d6efd); background: #f8fbff; color: var(--brand-primary, #0d6efd); }
.arrival-option input { position: absolute; opacity: 0; pointer-events: none; }

.checkout-total-section { background: #fff; }
.checkout-total-label { font-size: 22px; font-weight: 800; color: #111827; }
.checkout-total-value { font-size: 28px; font-weight: 800; color: #111827; }
.btn-checkout-submit { width: 100%; background: var(--brand-primary, #ea580c); color: #fff; border: none; padding: 18px; border-radius: 10px; font-size: 18px; font-weight: 800; cursor: pointer; transition: filter .15s; }
.btn-checkout-submit:hover { filter: brightness(.85); color: #fff !important; background: var(--brand-primary, #ea580c); }
.btn-checkout-submit:disabled { opacity: .7; cursor: wait; }

/* Right summary card */
.checkout-summary-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 20px; position: sticky; top: 100px; }
.cs-vehicle { display: flex; align-items: flex-start; gap: 14px; }
.cs-vehicle img { width: 110px; max-height: 70px; object-fit: cover; flex-shrink: 0; border-radius: 10px; }
.cs-vehicle-info { flex: 1; min-width: 0; }
.cs-vehicle-name { font-size: 17px; font-weight: 800; color: #111827; line-height: 1.2; }
.cs-vehicle-sub { font-size: 12px; color: #6b7280; }
.cs-vehicle-days { font-size: 13px; color: #6b7280; margin-top: 2px; }
.cs-vehicle-actions { display: flex; gap: 4px; flex-wrap: wrap; }
.cs-vehicle-actions .btn-card-action { padding: 3px 8px; font-size: 11px; }

.cs-locations-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cs-location-block { display: flex; align-items: flex-start; gap: 8px; min-width: 0; }
.cs-location-content { min-width: 0; flex: 1; }
.cs-location-icon { font-size: 16px; flex-shrink: 0; opacity: .7; }
.cs-location-label { font-size: 10px; text-transform: uppercase; color: #6b7280; font-weight: 600; letter-spacing: .3px; }
.cs-location-name { font-size: 13px; font-weight: 700; color: #111827; overflow-wrap: break-word; }
.cs-location-time { font-size: 12px; color: #6b7280; }

@media (max-width: 450px) {
    .cs-locations-row { grid-template-columns: 1fr; }
}

.cs-summary-title { font-size: 14px; font-weight: 700; color: #111827; margin-bottom: 10px; }
.cs-checks { list-style: none; padding: 0; margin: 0; }
.cs-checks li { font-size: 14px; padding: 4px 0; color: #111827; }
.cs-checks li > * { margin-left: 4px; }

.cs-prices { font-size: 14px; }
.cs-price-row { display: flex; justify-content: space-between; padding: 4px 0; color: #374151; }
.cs-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 8px; font-size: 20px; font-weight: 800; color: #111827; }
.cs-total > span:last-child { color: var(--brand-primary, #0d6efd); }

.cs-payment-split { margin-top: 14px; padding: 12px 14px; background: #f8fafc; border: 1px solid #e5e7eb; border-radius: 10px; }
.cs-split-row { display: flex; justify-content: space-between; align-items: baseline; padding: 4px 0; }
.cs-split-now .cs-split-label { font-weight: 700; color: #111827; font-size: 14px; }
.cs-split-now .cs-split-value { font-weight: 800; color: var(--brand-primary, #0d6efd); font-size: 17px; }
.cs-split-later { border-top: 1px dashed #e5e7eb; margin-top: 4px; padding-top: 6px; }
.cs-split-later .cs-split-label { color: #6b7280; font-size: 13px; }
.cs-split-later .cs-split-value { color: #6b7280; font-weight: 600; font-size: 14px; }

@media (max-width: 991px) {
    .checkout-summary-card { position: static; }
    .checkout-title { font-size: 14px; }
    .checkout-row { display: flex; flex-direction: column; }
    .checkout-col-summary { order: -1; }
}

/* ─── EXTRAS LIST ────────────────────────── */
.extras-list { display: flex; flex-direction: column; gap: 10px; }
.extra-row { display: grid; grid-template-columns: 48px 1fr auto; gap: 14px; align-items: center; padding: 14px 18px; background: #fff; border: 2px solid #e5e7eb; border-radius: 12px; transition: border-color .15s, box-shadow .15s; }
.extra-row:hover { border-color: #9ca3af; }
.extra-row.selected { border-color: var(--brand-primary, #0d6efd); box-shadow: 0 2px 8px rgba(13, 110, 253, .1); }
.extra-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; color: #374151; }
.extra-info { min-width: 0; }
.extra-name { font-weight: 700; font-size: 16px; color: #111827; }
.extra-price { font-size: 14px; color: #111827; font-weight: 600; margin-top: 2px; }
.extra-price small { font-weight: 400; }
.extra-desc { font-size: 12px; color: #6b7280; margin-top: 4px; }
.extra-control { flex-shrink: 0; }

/* Toggle switch */
.extra-toggle { position: relative; display: inline-block; width: 48px; height: 28px; cursor: pointer; }
.extra-toggle input { opacity: 0; width: 0; height: 0; }
.extra-toggle-slider { position: absolute; inset: 0; background: #d1d5db; border-radius: 28px; transition: .25s; }
.extra-toggle-slider::before { content: ''; position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; background: #fff; border-radius: 50%; transition: .25s; box-shadow: 0 2px 4px rgba(0,0,0,.15); }
.extra-toggle input:checked + .extra-toggle-slider { background: var(--brand-primary, #0d6efd); }
.extra-toggle input:checked + .extra-toggle-slider::before { transform: translateX(20px); }

/* Quantity stepper */
.qty-stepper { display: inline-flex; align-items: center; background: #111827; border-radius: 24px; padding: 4px; gap: 4px; }
.qty-btn { width: 28px; height: 28px; border: none; background: transparent; color: #fff; font-size: 18px; font-weight: 700; cursor: pointer; border-radius: 50%; display: flex; align-items: center; justify-content: center; line-height: 1; }
.qty-btn:hover { background: rgba(255,255,255,.15); }
.qty-value { color: #fff; font-weight: 700; font-size: 14px; min-width: 20px; text-align: center; }

/* ─── BOOKING SUMMARY CARD (right side) ──── */
.booking-summary-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 20px; position: sticky; top: 100px; }
.bs-vehicle { display: flex; align-items: center; gap: 14px; min-width: 0; }
.bs-vehicle img { width: 90px; max-height: 60px; object-fit: contain; flex-shrink: 0; }
.bs-vehicle-info { min-width: 0; }
.bs-vehicle-info .bs-value { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Vehicle + Protection on same row to save vertical space */
.bs-head-row { display: flex; gap: 16px; align-items: flex-start; }
.bs-head-row.has-protection .bs-vehicle { flex: 1 1 55%; min-width: 0; }
.bs-head-row.has-protection .bs-vehicle img { width: 70px; max-height: 48px; }
.bs-protection-inline { flex: 1 1 45%; min-width: 0; padding-left: 14px; border-left: 1px solid #e5e7eb; }
.bs-protection-inline .bs-value { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
@media (max-width: 360px) {
    .bs-head-row { flex-direction: column; gap: 10px; }
    .bs-protection-inline { border-left: none; border-top: 1px solid #e5e7eb; padding: 8px 0 0; }
}
.bs-section { font-size: 14px; }
.bs-label { font-size: 11px; text-transform: uppercase; letter-spacing: .5px; color: #6b7280; font-weight: 600; margin-bottom: 4px; }
.bs-value { font-weight: 700; color: #111827; font-size: 15px; }
.bs-row { display: flex; justify-content: space-between; align-items: baseline; padding: 4px 0; font-size: 14px; color: #374151; }
.bs-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 8px; font-size: 18px; font-weight: 800; color: #111827; }
.bs-total > span:last-child { color: var(--brand-primary, #0d6efd); }

/* Flash animation for newly added items */
@keyframes bsFlash {
    0%   { background: rgba(34, 197, 94, 0); transform: scale(1); }
    20%  { background: rgba(34, 197, 94, .25); transform: scale(1.02); }
    100% { background: rgba(34, 197, 94, 0); transform: scale(1); }
}
.bs-flash { animation: bsFlash .9s ease-out; border-radius: 6px; }

/* Mobile bottom-bar total pulse when extras/protection change */
@keyframes mbbPulse {
    0%   { transform: scale(1); color: #111827; }
    25%  { transform: scale(1.14); color: #16a34a; }
    60%  { transform: scale(1);    color: #16a34a; }
    100% { transform: scale(1);    color: #111827; }
}
.mbb-total-value.mbb-pulse { animation: mbbPulse .7s ease-out; }

@media (max-width: 991px) {
    .booking-summary-card { position: static; }
}

/* ─── FILTER PANEL ───────────────────────── */
.filter-bar { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.btn-filter { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1.5px solid #d1d5db; border-radius: 10px; padding: 8px 18px; font-size: 14px; font-weight: 600; color: #374151; cursor: pointer; transition: all .15s; }
.btn-filter:hover { border-color: #9ca3af; background: #f9fafb; }
.btn-filter svg { opacity: .7; }
.filter-badge-count { background: var(--brand-primary, #0d6efd); color: #fff; font-size: 11px; font-weight: 700; padding: 1px 7px; border-radius: 10px; margin-left: 2px; }
.filter-result-count { font-size: 13px; color: #9ca3af; }

.filter-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 1100; opacity: 0; pointer-events: none; transition: opacity .3s; }
.filter-overlay.open { opacity: 1; pointer-events: auto; }

.filter-panel { position: fixed; top: 0; left: 0; bottom: 0; width: 380px; max-width: 90vw; background: #fff; z-index: 1101; transform: translateX(-100%); transition: transform .3s ease; display: flex; flex-direction: column; box-shadow: 4px 0 24px rgba(0,0,0,.12); }
.filter-panel.open { transform: translateX(0); }

.filter-panel-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid #e5e7eb; }
.filter-close { background: none; border: none; font-size: 28px; color: #374151; cursor: pointer; line-height: 1; padding: 0; }
.filter-panel-title { font-size: 16px; font-weight: 700; color: #111827; }
.filter-reset { background: none; border: none; font-size: 14px; color: var(--brand-primary, #0d6efd); cursor: pointer; font-weight: 600; text-decoration: underline; }

.filter-panel-body { flex: 1; overflow-y: auto; padding: 20px; }
.filter-section { margin-bottom: 28px; }
.filter-section-title { font-size: 14px; font-weight: 700; color: #111827; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid #f3f4f6; }

.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-chip { display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1.5px solid #d1d5db; border-radius: 10px; padding: 8px 16px; font-size: 13px; color: #374151; cursor: pointer; transition: all .15s; white-space: nowrap; }
.filter-chip:hover { border-color: #9ca3af; background: #f9fafb; }
.filter-chip.active { background: #111827; color: #fff; border-color: #111827; }
.filter-chip-num { min-width: 42px; justify-content: center; font-weight: 600; }

.filter-panel-footer { padding: 16px 20px; border-top: 1px solid #e5e7eb; }
.filter-apply { width: 100%; padding: 14px; background: var(--brand-primary, #0d6efd); color: #fff; border: none; border-radius: 12px; font-size: 15px; font-weight: 700; cursor: pointer; transition: filter .15s; }
.filter-apply:hover { filter: brightness(.9); }

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 780px) {
    .bar-form { grid-template-columns: 1fr; }
    .book-hero { min-height: auto; padding: 20px 0 !important; }
    .book-hero h1 { font-size: 1.5rem; }

    /* Breadcrumb: hide labels on mobile, only show circles */
    .progress-steps { gap: 0; flex-wrap: nowrap; justify-content: center; }
    .progress-step { padding: 0 8px; }
    .step-label { display: none; }
    .step-circle { width: 28px; height: 28px; font-size: 12px; }
    .progress-step:not(:last-child)::after { height: 2px; width: 20px; top: 50%; right: -10px; transform: translateY(-50%); }
    .booking-progress { padding: 10px 0; }

    /* Summary bar mobile */
    .booking-summary-bar { padding: 10px 0; }
    .summary-grid { grid-template-columns: 1fr auto 1fr; gap: 6px 12px; }
    .summary-item { gap: 8px; }
    .summary-label { font-size: 9px; margin-bottom: 0; }
    .summary-value { font-size: 13px; }
    .summary-sub { font-size: 11px; }
    .summary-icon { display: flex; flex-shrink: 0; }

    /* Row 1: Period centered full width */
    .summary-period { grid-column: 1 / -1; justify-content: center; text-align: center; }
    .summary-period .summary-value { font-size: 14px; }
    .summary-period .summary-sub { display: inline; margin-left: 6px; }

    /* Row 2: Pickup left, arrow, return right */
    .summary-pickup { text-align: left; }
    .summary-arrow { display: flex; align-items: center; justify-content: center; padding: 0 4px; }
    .summary-arrow svg { width: 22px; height: 22px; stroke: rgba(255,255,255,.8); }
    .summary-return { text-align: right; flex-direction: row-reverse; }

    /* Action full width centered */
    .summary-action { grid-column: 1 / -1; display: flex; justify-content: center; }
    .summary-action .btn-change { font-size: 12px; padding: 6px 16px; }

    .vehicle-card { grid-template-columns: 1fr; }
    .vehicle-card-image { width: 100%; aspect-ratio: 16 / 10; padding: 0; border-radius: 18px 18px 0 0; }
    .vehicle-card-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
    .vehicle-card-price { border-left: none; border-top: 1px solid #f1f5f9; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 16px 20px; border-radius: 0 0 18px 18px; }
    .price-daily, .price-total { text-align: center; }
    .btn-choose { width: 100%; text-align: center; }
}

/* =========================================================
   MOBILE APP-FEEL OPTIMIZATIONS
   Comprehensive overrides for ≤768px to make the booking site
   feel like a native mobile app. Touch-first, big tap targets,
   safe-area aware, reduced hover noise.
   ========================================================= */

/* Remove hover visual noise on touch devices */
@media (hover: none) {
    .home-category-card:hover,
    .vehicle-card:hover,
    .review-card:hover,
    .trust-badge-item:hover,
    .bar-field:hover,
    .protection-card:hover,
    .extra-row:hover,
    .promo-cta:hover,
    .bar-submit:hover {
        transform: none;
        box-shadow: 0 2px 10px rgba(0,0,0,.05);
    }
    .bar-field:hover { background: var(--gray-50); border-color: var(--gray-200); }
}

html { -webkit-tap-highlight-color: rgba(55,106,177,.12); }
body { -webkit-text-size-adjust: 100%; overscroll-behavior-y: contain; }

/* Prevent iOS zoom on focus of form fields (requires 16px min) */
@media (max-width: 768px) {
    select, input[type="text"], input[type="email"], input[type="tel"],
    input[type="number"], input[type="search"], textarea {
        font-size: 16px !important;
    }
}

/* ─── NAVBAR (app feel) ─── */
@media (max-width: 768px) {
    .navbar {
        padding: max(10px, env(safe-area-inset-top)) 12px 10px !important;
        box-shadow: 0 1px 0 rgba(0,0,0,.06);
    }
    .navbar-brand img { max-height: 38px !important; }
    .navbar-toggler {
        width: 44px; height: 44px;
        padding: 0; border: none;
        display: inline-flex; align-items: center; justify-content: center;
    }
    .navbar-toggler:focus { box-shadow: none; }
    .navbar-collapse {
        background: #fff;
        border-radius: 14px;
        margin-top: 8px;
        padding: 8px;
        box-shadow: 0 8px 28px rgba(0,0,0,.1);
        border: 1px solid #f1f5f9;
    }
    .navbar .nav-link {
        padding: 14px 16px !important;
        font-size: 15px !important;
        border-radius: 10px;
        min-height: 48px;
    }
    .navbar .nav-link:active { background: #f3f4f6; }
    .navbar .flag-link svg { width: 28px; height: auto; }
    .navbar .flag-link { padding: 6px; }
}

/* ─── HERO ─── */
@media (max-width: 768px) {
    .book-hero {
        min-height: 0 !important;
        padding: 20px 0 28px !important;
        background-size: cover !important;
        background-position: center center !important;
    }
    .book-hero .container { padding: 0 14px !important; }
    .book-hero .container > .py-4 { padding: 0 !important; }
    .book-hero h1 {
        font-size: 1.55rem !important;
        line-height: 1.18;
        margin-bottom: 6px !important;
        text-shadow: 0 2px 10px rgba(0,0,0,.35);
        letter-spacing: -.3px;
    }
    .book-hero .lead {
        font-size: .9rem !important;
        margin-bottom: 16px !important;
        text-shadow: 0 1px 6px rgba(0,0,0,.3);
        opacity: .95;
    }
}

/* ─── BOOKING BAR — APP CARD ─── */
@media (max-width: 768px) {
    .bar-box {
        border-radius: 18px;
        margin: 0 2px;
        box-shadow: 0 10px 30px rgba(0,0,0,.18);
        overflow: visible;
    }
    .bar-form {
        padding: 12px 12px 4px;
        gap: 8px;
    }
    .bar-field {
        padding: 12px 16px;
        border-radius: 14px;
        min-height: 60px;
        border-width: 1px;
        background: #fff;
        cursor: pointer;
    }
    .bar-field:active { background: #f8fafc; transform: scale(.995); transition: transform .1s; }
    .bar-label { font-size: .65rem; margin-bottom: 3px; letter-spacing: .09em; }
    .bar-field input, .cdd-trigger { font-size: 15px !important; }

    .time-row { gap: 10px; margin-top: 10px; }
    .time-picker-wrap { gap: 8px; }
    .time-label { font-size: .7rem; }
    .time-select { padding: 8px 10px; font-size: 15px !important; border-radius: 8px; min-height: 38px; }

    .diff-return-toggle { font-size: .78rem; margin-top: 10px; padding: 6px 0; min-height: 34px; }

    .bar-submit-wrap { margin-top: 2px; }
    .bar-submit {
        padding: 15px 22px;
        font-size: 16px;
        border-radius: 14px;
        min-height: 54px;
        font-weight: 800;
        letter-spacing: .1px;
        box-shadow: 0 6px 16px rgba(255,102,0,.28);
    }
    .bar-submit:active { transform: scale(.985); }

    .bar-note {
        padding: 10px 16px 14px;
        gap: 6px 14px;
        font-size: .74rem;
        justify-content: flex-start;
    }
}

/* Bottom-sheet style dropdown on small phones (≤600px).
   Die Liste wird von JS beim Öffnen zu document.body verschoben —
   daher '.cdd-list' und 'body > .cdd-list' stylen. */
@media (max-width: 600px) {
    .cdd.open .cdd-list,
    body > .cdd-list[data-cdd-owner] {
        display: block !important;
        position: fixed !important;
        top: auto !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        max-height: 65vh;
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -8px 32px rgba(0,0,0,.2);
        z-index: 100000; /* über Chat-Widget etc. */
        padding-bottom: env(safe-area-inset-bottom);
        animation: cddSheetIn .24s cubic-bezier(.16,1,.3,1);
    }
    .cdd.open .cdd-list::before,
    body > .cdd-list[data-cdd-owner]::before {
        content: '';
        position: sticky; top: 0;
        display: block;
        width: 40px; height: 4px;
        background: #d1d5db;
        border-radius: 2px;
        margin: 10px auto 6px;
    }
    @keyframes cddSheetIn {
        from { transform: translateY(100%); }
        to { transform: translateY(0); }
    }
    /* Backdrop — visueller Dim-Layer, blockiert keine Klicks.
       Bewusst niedriger z-index damit Chat-Bubbles (typisch 9999+) sichtbar
       bleiben und nicht uebermalt werden. Die Sheet-Liste (z-index 100000)
       liegt dennoch drueber. */
    .cdd.open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.45);
        z-index: 500;
        pointer-events: none;
        animation: cddBackdropIn .2s ease;
    }
    @keyframes cddBackdropIn { from { opacity: 0; } to { opacity: 1; } }
    .cdd-option {
        padding: 16px 20px !important;
        font-size: 16px !important;
        border-bottom: 1px solid #f1f5f9;
        touch-action: manipulation; /* kill Tap-Delay */
    }
    /* Portaled-Liste hat kein '.cdd.open'-Parent — Options-Styling trotzdem anwenden */
    body > .cdd-list[data-cdd-owner] .cdd-option {
        padding: 16px 20px !important;
        font-size: 16px !important;
        border-bottom: 1px solid #f1f5f9;
        touch-action: manipulation;
    }
}

/* ─── TRUST BADGES — Mobile: Widget zentriert, alle Badges in 1 sauberem 2-Spalten-Grid ─── */
@media (max-width: 768px) {
    .trust-section { padding: 18px 0 !important; }

    /* Hauptcontainer = 2-Spalten-Grid */
    .trust-grid,
    .trust-grid-2col,
    .trust-grid-3col {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
        padding: 0 12px;
        max-width: 560px;
        margin: 0 auto !important;
        justify-items: stretch;
        align-items: start;
    }

    /* Widget spannt beide Spalten, kommt zuerst, zentriert */
    .trust-center {
        grid-column: 1 / -1;
        order: -1;
        margin: 0 0 4px !important;
        min-width: 0 !important;
        width: 100%;
        display: flex;
        justify-content: center;
        text-align: center;
    }
    .trust-widget { max-width: 100%; display: inline-block; }

    /* Wrapper-Spalten aufloesen — ihre Kinder fliessen ins Haupt-Grid */
    .trust-badges-col { display: contents !important; }

    .trust-badge-item {
        font-size: .74rem !important;
        padding: 9px 12px !important;
        gap: 8px;
        border-radius: 10px;
        justify-content: flex-start;
        line-height: 1.2;
        min-height: 40px;
        background: #fff;
        border: 1px solid #e5e7eb;
        width: auto;
    }
    .trust-badge-icon { width: 18px; height: 18px; justify-content: center; flex-shrink: 0; }
    .trust-badge-icon svg { width: 16px; height: 16px; }
}

/* Ganz kleine Phones: Badges 1-spaltig untereinander */
@media (max-width: 360px) {
    .trust-grid,
    .trust-grid-2col,
    .trust-grid-3col {
        grid-template-columns: 1fr !important;
    }
}

/* ─── STEPS ─── */
@media (max-width: 768px) {
    .steps-section { padding-bottom: 24px; }
    .steps-hero {
        margin: 0 8px !important;
        padding: 26px 18px 40px !important;
        border-radius: 18px;
    }
    .steps-badge { font-size: .65rem; padding: 5px 14px; margin-bottom: 8px; }
    .steps-title { font-size: 1.35rem !important; margin-bottom: 4px; letter-spacing: -.2px; }
    .steps-subtitle { font-size: .9rem; }
    .steps-grid {
        grid-template-columns: 1fr !important;
        gap: 10px;
        margin-top: -24px;
        padding: 0 12px;
    }
    .steps-section .step-item {
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 14px;
        padding: 14px 16px !important;
        display: grid;
        grid-template-columns: 48px 1fr;
        grid-template-rows: auto auto;
        column-gap: 14px;
        row-gap: 2px;
        text-align: left;
        align-items: center;
        box-shadow: 0 1px 6px rgba(0,0,0,.04);
    }
    .steps-section .step-item > .step-circle {
        grid-column: 1;
        grid-row: 1 / span 2;
        align-self: center;
        width: 48px; height: 48px;
        margin: 0 !important;
        border-width: 2px;
    }
    .steps-section .step-item > .step-circle span { font-size: 1.15rem; }
    .steps-section .step-item > h5 {
        grid-column: 2; grid-row: 1;
        font-size: .95rem;
        margin: 0 0 2px;
        text-align: left;
        align-self: end;
    }
    .steps-section .step-item > p {
        grid-column: 2; grid-row: 2;
        font-size: .82rem;
        text-align: left;
        line-height: 1.45;
        margin: 0;
        align-self: start;
    }
}

/* ─── PROMO — Mobile: alles zentriert, sauber untereinander ─── */
@media (max-width: 768px) {
    .promo-section { padding: 32px 0; }
    .promo-section .container { padding: 0 14px; }
    .promo-section .row { gap: 0; }
    .promo-section .row > .col-12 { text-align: center; }
    .promo-img-wrap { margin-bottom: 18px; }
    .promo-img, .promo-img-wrap { border-radius: 14px; }
    .promo-price-badge { bottom: 12px; left: 12px; padding: 8px 14px; font-size: 1rem; border-radius: 10px; }
    .promo-badge { font-size: .66rem; padding: 5px 12px; margin-bottom: 10px; }
    .promo-title { font-size: 1.5rem; margin-bottom: 10px; letter-spacing: -.3px; text-align: center; }
    .promo-text { font-size: .9rem; margin-bottom: 14px; line-height: 1.55; text-align: center; }

    .promo-tags { justify-content: center; }
    .promo-tag { font-size: .76rem; padding: 4px 12px; }

    /* Bullets: als zentrierter Block, aber innen links ausgerichtet fuer lesbare Liste */
    .promo-bullets {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        margin: 0 auto 18px !important;
        max-width: fit-content;
    }
    .promo-bullets li {
        font-size: .9rem;
        padding: 6px 0;
        gap: 10px;
        align-items: center;
    }
    .promo-bullets li svg { width: 20px; height: 20px; flex-shrink: 0; }

    .promo-cta {
        display: block;
        width: 100%;
        text-align: center;
        padding: 15px;
        font-size: .95rem;
        min-height: 54px;
        border-radius: 14px;
        margin: 0 auto;
    }
}

/* ─── CATEGORY CARDS (home) — APP STYLE ─── */
@media (max-width: 768px) {
    /* Target the home category grid without breaking other .container.py-5 usage */
    section.container.py-5 {
        padding: 26px 12px !important;
    }
    section.container.py-5 > h2 {
        font-size: 1.35rem;
        margin-bottom: 14px !important;
        padding: 0 4px;
        letter-spacing: -.2px;
    }
    section.container.py-5 > .row.g-4 { gap: 12px 0; margin: 0; }
    section.container.py-5 .col-12 {
        padding: 0 2px;
        margin-bottom: 0;
    }
    .home-category-card {
        border-radius: 16px !important;
        overflow: hidden;
        border: 1px solid #e5e7eb !important;
        box-shadow: 0 2px 10px rgba(0,0,0,.05);
    }
    .home-category-card:active { transform: scale(.995); transition: transform .12s; }
    .home-category-card img {
        width: 100% !important;
        height: 200px !important;
        object-fit: cover !important;
        border-radius: 0 !important;
    }
    .home-category-card .card-img-top {
        height: 140px !important;
        font-size: 36px !important;
        border-radius: 0 !important;
    }
    .home-category-card .card-body {
        padding: 14px 16px !important;
    }
    .home-category-card .card-body h5.card-title {
        font-size: 1.05rem;
        font-weight: 800;
        margin-bottom: 6px;
        letter-spacing: -.2px;
    }
    .home-category-card .card-body .d-flex.gap-3 {
        font-size: 12px !important;
        gap: .75rem !important;
        margin-bottom: 8px !important;
    }
    .home-category-card .card-body .badge {
        font-size: 10.5px;
        padding: 4px 8px;
        font-weight: 600;
    }
    .home-category-card .card-body .small { font-size: 11.5px; }
    .home-category-card .card-body .card-text {
        font-size: 1.05rem !important;
        margin-bottom: 0 !important;
    }
    .home-category-card .card-footer {
        border-top: 1px solid #f1f5f9;
        padding: 10px 14px 12px !important;
        background: transparent !important;
    }
    .home-category-card .card-footer .btn {
        min-height: 46px;
        font-size: 14px;
        border-radius: 10px;
        font-weight: 700;
    }
    .home-category-card .card-footer .btn:active { transform: scale(.985); }
}

/* ─── REVIEWS ─── */
@media (max-width: 768px) {
    .reviews-section { padding: 32px 0; }
    .reviews-title { font-size: 1.3rem !important; margin-bottom: 20px !important; padding: 0 16px; letter-spacing: -.2px; }
    .reviews-grid { gap: 10px !important; padding: 0 12px; grid-template-columns: 1fr !important; }
    .review-card { padding: 18px 18px; border-radius: 14px; }
    .review-stars { font-size: 15px; margin-bottom: 8px; }
    .review-text { font-size: .88rem; margin-bottom: 12px; line-height: 1.55; }
    .review-avatar { width: 34px; height: 34px; font-size: 13px; }
    .review-name { font-size: .85rem; }
    .review-date { font-size: .72rem; }
}

/* ─── FAQ ─── */
@media (max-width: 768px) {
    .faq-section { padding: 30px 0; }
    .faq-title { font-size: 1.3rem; margin-bottom: 20px; padding: 0 14px; letter-spacing: -.2px; }
    .faq-list { padding: 0 12px; }
    .faq-item { border-radius: 12px; margin-bottom: 8px; }
    .faq-question { padding: 14px 16px; font-size: .92rem; min-height: 52px; gap: 12px; }
    .faq-item.open .faq-answer { padding: 0 16px 14px; }
    .faq-answer p { font-size: .88rem; line-height: 1.6; }
}

/* ─── FOOTER ─── */
@media (max-width: 768px) {
    footer {
        padding: 30px 14px calc(100px + env(safe-area-inset-bottom)) !important;
        font-size: 13px;
        margin-top: 28px !important;
    }
    footer .container { padding: 0; }
    footer .row > div { margin-bottom: 4px; }
    footer h6 { font-size: .88rem; margin-bottom: 10px !important; }
    footer .small { font-size: 12px; line-height: 1.6; }
    footer a { padding: 2px 0; display: inline-block; }
    footer hr { margin: 16px 0; }
}

/* ─── VEHICLE LIST / BOOKING FLOW — MOBILE APP LOOK ─── */
@media (max-width: 768px) {
    /* Progress bar — compact chip row */
    .booking-progress { padding: 10px 0; background: #fff; box-shadow: 0 1px 0 rgba(0,0,0,.04); }
    .booking-progress .container { padding: 0 12px; }
    .progress-steps { gap: 0; overflow: hidden; justify-content: space-between; }
    .progress-step { padding: 0; gap: 6px; flex: 1; min-width: 0; justify-content: center; font-size: 12px; }
    .progress-step:not(:last-child)::after { height: 2px; width: 20px; top: 50%; right: auto; left: calc(50% + 14px); background: #e5e7eb; transform: none; }
    .progress-step.completed:not(:last-child)::after { background: #22c55e; }
    .progress-step .step-circle { width: 26px; height: 26px; font-size: 12px; border-width: 2px; }
    .progress-step .step-label { font-size: 11px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 70px; }
    .progress-step:not(.active):not(.completed) .step-label { display: none; }

    /* Booking summary bar — compact, not sticky (scrolls away to free space) */
    .booking-summary-bar { padding: 10px 0; }
    .booking-summary-bar .container { padding: 0 12px; }
    .summary-grid {
        display: grid;
        grid-template-columns: 1fr 1fr auto;
        gap: 8px 10px;
        align-items: center;
    }
    .summary-arrow { display: none; }
    .summary-item { gap: 8px; font-size: 12px; align-items: center; min-width: 0; }
    .summary-item .summary-icon { margin-top: 0; }
    .summary-item .summary-icon svg { width: 16px; height: 16px; }
    .summary-label { font-size: 9px; letter-spacing: .5px; }
    .summary-value { font-size: 12px; font-weight: 700; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .summary-sub { font-size: 10px; opacity: .85; }
    .summary-period { grid-column: 1 / -1; border-bottom: 1px solid rgba(255,255,255,.15); padding-bottom: 8px; margin-bottom: 2px; }
    .summary-period .summary-value { white-space: normal; }
    .summary-pickup { grid-column: 1 / 2; }
    .summary-return { grid-column: 2 / 3; }
    .summary-pickup .summary-value,
    .summary-return .summary-value { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .summary-action { grid-column: 3 / 4; grid-row: 2 / 3; align-self: center; justify-self: end; }
    .btn-change {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 8px 10px;
        background: rgba(255,255,255,.18);
        border-radius: 10px;
        font-size: 11px;
        font-weight: 700;
        color: #fff;
        text-decoration: none;
        min-width: 44px;
        min-height: 44px;
    }

    /* Filter bar — compact, stays inline */
    .filter-bar {
        gap: 8px;
        margin-bottom: 10px;
    }
    .btn-filter { padding: 8px 14px; font-size: 13px; min-height: 40px; border-radius: 999px; }
    .filter-result-count { font-size: 12px; margin-left: auto; color: #6b7280; }

    /* Filter panel — slide up from bottom instead of from left on mobile (feels more app-native) */
    .filter-panel {
        top: auto;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        height: 88vh;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        box-shadow: 0 -10px 40px rgba(0,0,0,.18);
    }
    .filter-panel.open { transform: translateY(0); }
    .filter-panel-header {
        padding: 12px 18px;
        position: relative;
    }
    /* Grabber handle */
    .filter-panel-header::before {
        content: '';
        position: absolute;
        top: 6px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 4px;
        border-radius: 2px;
        background: #d1d5db;
    }
    .filter-panel-body { padding: 16px 18px calc(24px + env(safe-area-inset-bottom)); }
    .filter-section { margin-bottom: 22px; }
    .filter-section-title { font-size: 13px; padding-bottom: 6px; margin-bottom: 10px; }
    .filter-chip { padding: 10px 14px; font-size: 13px; min-height: 40px; border-radius: 10px; }
    .filter-chip-num { min-width: 44px; min-height: 44px; padding: 8px; font-size: 14px; }
    .filter-panel-footer {
        padding: 12px 18px calc(14px + env(safe-area-inset-bottom));
        border-top: 1px solid #e5e7eb;
        background: #fff;
    }
    .filter-apply {
        width: 100%;
        background: var(--brand-primary, #0d6efd);
        color: #fff;
        border: none;
        padding: 14px 18px;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 800;
        min-height: 52px;
        cursor: pointer;
    }

    /* Vehicle card — stacked, app-card look */
    .vehicle-card {
        grid-template-columns: 1fr;
        border-radius: 16px;
        margin-bottom: 14px;
        min-height: 0;
        box-shadow: 0 2px 10px rgba(0,0,0,.06);
        overflow: hidden;
    }
    .vehicle-card:hover { transform: none; box-shadow: 0 2px 10px rgba(0,0,0,.06); }

    .vehicle-card-image {
        border-radius: 16px 16px 0 0;
        aspect-ratio: 16 / 9;
        position: relative;
    }
    .vehicle-card-image img { position: absolute; inset: 0; height: 100%; }
    .vehicle-card:hover .vehicle-card-image img { transform: none; }

    .category-badge {
        top: 10px;
        left: 10px;
        font-size: 10px;
        padding: 5px 10px;
        letter-spacing: .5px;
        box-shadow: 0 2px 8px rgba(0,0,0,.25);
    }

    .vehicle-card-info { padding: 14px 14px 6px; gap: 8px; }
    .vehicle-card-title { font-size: 18px; letter-spacing: -.2px; }

    .vehicle-specs { gap: 5px; }
    .spec-pill {
        padding: 4px 9px;
        font-size: 11px;
        border-radius: 999px;
    }

    .vehicle-payments { gap: 5px; margin-top: -2px; }
    .spec-payment-img svg { height: 12px; width: auto; }

    .vehicle-features { gap: 4px; }
    .feature-badge { padding: 3px 8px; font-size: 10px; border-radius: 999px; }

    /* Price & CTA block — as card footer */
    .vehicle-card-price {
        padding: 12px 14px 14px;
        background: #fff;
        border-left: none;
        border-top: 1px solid #f1f5f9;
        border-radius: 0 0 16px 16px;
        gap: 10px;
    }

    .price-row-top { align-items: center; }
    .price-daily { gap: 0; }
    .price-period { font-size: 10px; margin-bottom: 1px; }
    .price-amount { font-size: 18px; }
    .price-total-label { font-size: 10px; }
    .price-total-amount { font-size: 22px; letter-spacing: -.4px; }
    .price-total-vat { font-size: 8px; }

    .price-breakdown { padding: 6px 0; margin: 0; }
    .price-row { font-size: 11px; }
    .price-row.price-row-base { font-size: 12px; }

    .btn-choose {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 14px 18px;
        border-radius: 14px;
        font-size: 15px;
        min-height: 50px;
        box-shadow: 0 4px 14px rgba(13, 110, 253, .28);
    }
    .btn-choose:active { transform: scale(.98); }

    /* Sold-out variant */
    .btn-choose-soldout { box-shadow: none; }
}

/* Extra-small phones */
@media (max-width: 380px) {
    .vehicle-card-title { font-size: 17px; }
    .spec-pill { padding: 3px 8px; font-size: 10px; }
    .price-total-amount { font-size: 20px; }
    .summary-value { font-size: 11px; }
    .progress-step .step-label { max-width: 60px; }
}

/* ─── STICKY BOTTOM "JETZT SUCHEN" CTA (mobile only) ─── */
.mobile-sticky-cta { display: none; }
@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
        position: fixed;
        left: 0; right: 0; bottom: 0;
        z-index: 900;
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
        background: rgba(255,255,255,.96);
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);
        border-top: 1px solid #e5e7eb;
        transform: translateY(110%);
        transition: transform .3s cubic-bezier(.16,1,.3,1);
        pointer-events: none;
    }
    .mobile-sticky-cta.visible {
        transform: translateY(0);
        pointer-events: auto;
    }
    .mobile-sticky-cta-btn {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: var(--sand, #ff6600);
        color: #fff;
        border: none;
        border-radius: 14px;
        padding: 15px 20px;
        font-size: 16px;
        font-weight: 800;
        min-height: 54px;
        letter-spacing: .1px;
        box-shadow: 0 6px 18px rgba(255,102,0,.3);
        cursor: pointer;
        font-family: inherit;
    }
    .mobile-sticky-cta-btn:active { transform: scale(.98); }
    /* Push fixed elements above the CTA when visible */
    body.has-sticky-cta #cookieBanner { bottom: calc(78px + env(safe-area-inset-bottom)); }
    body.has-sticky-cta #whatsappFloat { bottom: calc(90px + env(safe-area-inset-bottom)) !important; }
}

/* ============================================================ */
/* MOBILE: Extras page app-like optimisation                     */
/* ============================================================ */

/* Mobile sticky bottom bar — hidden by default, shown <= 768 */
.mobile-bottom-bar { display: none; }
.mobile-bottom-backdrop { display: none; }

@media (max-width: 768px) {
    /* Progress bar: compact */
    .booking-progress { padding: 10px 0; }
    .progress-steps { gap: 0; justify-content: space-between; }
    .progress-step { padding: 0 4px; gap: 6px; flex: 1; min-width: 0; }
    .progress-step:not(:last-child)::after { display: none; }
    .progress-step .step-circle {
        width: 28px; height: 28px; font-size: 13px; font-weight: 700;
        border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
        background: #e5e7eb; color: #6b7280; border: 2px solid transparent;
    }
    .progress-step.active .step-circle { background: var(--brand-primary, #2563eb); color: #fff; transform: scale(1.12); }
    .progress-step .step-label {
        font-size: 11px; text-align: center; white-space: nowrap;
        overflow: hidden; text-overflow: ellipsis; max-width: 100%;
    }

    /* Summary bar: kompakte 3 einzeilige Zeilen, Ändern-Pill absolut rechts */
    .booking-summary-bar { padding: 10px 0; }
    .summary-grid {
        display: flex !important;
        flex-direction: column;
        grid-template-columns: none;
        grid-template-areas: none;
        gap: 4px;
        position: relative;
        padding-right: 92px; /* Platz für Ändern-Pill */
    }
    .summary-arrow,
    .summary-icon { display: none !important; }
    .summary-item {
        display: block !important;
        min-width: 0;
        padding: 0;
    }
    /* Wrapper-Div (2. Kind im Item) -> einzeilige Flex-Zeile label/value/sub */
    .summary-item > div:last-child {
        display: flex;
        align-items: baseline;
        gap: 8px;
        min-width: 0;
    }
    .summary-label {
        font-size: 10px;
        letter-spacing: .5px;
        font-weight: 700;
        opacity: .75;
        white-space: nowrap;
        flex: 0 0 auto;
    }
    .summary-value {
        font-size: 14px;
        font-weight: 700;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        min-width: 0;
        flex: 1 1 auto;
    }
    .summary-sub {
        font-size: 12px;
        opacity: .75;
        white-space: nowrap;
        flex: 0 0 auto;
    }
    .summary-item.summary-action {
        position: absolute !important;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        padding: 0;
    }
    .btn-change {
        background: rgba(255,255,255,.2); color: #fff; padding: 8px 14px;
        border-radius: 20px; font-weight: 700; font-size: 13px;
        text-decoration: none; border: 1px solid rgba(255,255,255,.3);
    }
    .btn-change:hover, .btn-change:active { background: rgba(255,255,255,.3); color: #fff; }

    /* Protection cards: clean full-width */
    .protection-grid { gap: 12px; }
    .protection-card {
        padding: 16px; border-width: 2px; border-radius: 16px;
        box-shadow: 0 1px 3px rgba(0,0,0,.04);
    }
    .protection-card.is-selected { box-shadow: 0 6px 20px rgba(13,110,253,.18); }
    .protection-title { font-size: 18px; }
    .protection-stars .star { font-size: 16px; }
    .protection-deposit { font-size: 13px; margin-bottom: 10px; }
    .protection-features { margin-bottom: 12px; }
    .protection-features li { font-size: 13px; padding: 4px 0; gap: 8px; }
    .protection-price { padding-top: 10px; }
    .protection-price .price-free,
    .protection-price .price-amount-protection { font-size: 20px; }

    /* Extras: compact touch-friendly rows */
    .extras-list { gap: 8px; }
    .extra-row {
        grid-template-columns: 52px 1fr auto;
        padding: 12px 14px; gap: 12px; border-radius: 14px;
        border-width: 2px;
        box-shadow: 0 1px 3px rgba(0,0,0,.04);
    }
    .extra-row.selected { box-shadow: 0 4px 14px rgba(13,110,253,.12); }
    .extra-icon { width: 52px; height: 52px; }
    .extra-icon img { width: 52px !important; height: 52px !important; }
    .extra-name { font-size: 15px; }
    .extra-price { font-size: 13px; }
    .extra-desc { font-size: 11px; line-height: 1.3; }
    .extra-toggle { width: 52px; height: 30px; }
    .extra-toggle-slider::before { width: 24px; height: 24px; }
    .extra-toggle input:checked + .extra-toggle-slider::before { transform: translateX(22px); }
    .qty-stepper { padding: 5px; gap: 6px; }
    .qty-btn { width: 32px; height: 32px; font-size: 20px; }
    .qty-value { font-size: 15px; min-width: 22px; }

    /* Hide right-hand summary card — mobile bottom bar replaces it */
    .booking-summary-card { position: static; display: none; }

    /* Extra spacing at bottom so last row isnt hidden behind the bar */
    .container.py-4 { padding-bottom: 110px !important; }

    .container.py-4 h2 { font-size: 20px; margin-top: 20px !important; margin-bottom: 12px !important; }

    /* Mobile bottom bar */
    .mobile-bottom-bar {
        display: block;
        position: fixed;
        left: 0; right: 0; bottom: 0;
        z-index: 1050;
        background: #fff;
        border-top: 1px solid #e5e7eb;
        box-shadow: 0 -4px 20px rgba(0,0,0,.08);
        padding-bottom: env(safe-area-inset-bottom);
        transition: transform .28s ease;
    }
    /* iOS-style Griff-Pille — Affordance "Sheet nach oben ziehen" */
    .mbb-grabber {
        width: 36px; height: 4px;
        background: #d1d5db;
        border-radius: 2px;
        margin: 6px auto 0;
    }
    .mobile-bottom-bar.expanded .mbb-grabber { background: #9ca3af; }

    .mobile-bottom-bar .mbb-main {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        gap: 8px;
        padding: 6px 14px 10px;
    }
    .mbb-toggle {
        justify-self: start;
        display: flex; flex-direction: column;
        align-items: flex-start; justify-content: center;
        background: #f3f4f6;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        padding: 6px 12px;
        color: #111827; text-align: left; cursor: pointer;
        transition: background .15s, border-color .15s, transform .1s;
    }
    .mbb-toggle:active { transform: scale(.97); background: #e5e7eb; }
    .mobile-bottom-bar.expanded .mbb-toggle { background: #e5e7eb; border-color: #d1d5db; }

    .mbb-total-label { font-size: 10px; font-weight: 700; color: #6b7280; text-transform: uppercase; letter-spacing: .5px; }
    .mbb-total-row { display: inline-flex; align-items: center; gap: 8px; }
    .mbb-total-value { font-size: 19px; font-weight: 800; color: #111827; line-height: 1.15; }

    .mbb-details-hint {
        display: inline-flex; align-items: center; gap: 3px;
        font-size: 11px; font-weight: 700; color: #2563eb;
        text-transform: uppercase; letter-spacing: .4px;
    }
    .mbb-chevron {
        color: #2563eb;
        transition: transform .2s;
        animation: mbbHintBounce 2.2s ease-in-out infinite;
    }
    .mobile-bottom-bar.expanded .mbb-chevron {
        transform: rotate(180deg);
        animation: none;
    }
    @keyframes mbbHintBounce {
        0%, 60%, 100% { transform: translateY(0); }
        30%           { transform: translateY(-3px); }
    }

    .mbb-cta {
        justify-self: center;
        display: inline-flex; align-items: center; justify-content: center; gap: 6px;
        background: var(--brand-primary, #0d6efd); color: #fff;
        padding: 14px 26px; border-radius: 28px;
        font-weight: 800; font-size: 15px; text-decoration: none;
        box-shadow: 0 4px 14px rgba(13,110,253,.35);
        min-height: 52px;
    }
    .mbb-cta:hover, .mbb-cta:active { color: #fff; filter: brightness(.92); }

    /* Expandable summary sheet */
    .mbb-summary {
        max-height: 0; overflow: hidden;
        transition: max-height .3s ease;
        background: #fff;
    }
    .mobile-bottom-bar.expanded .mbb-summary {
        max-height: 70vh; overflow-y: auto;
    }
    .mbb-summary-header {
        display: flex; align-items: center; justify-content: space-between;
        padding: 14px 18px 10px; border-bottom: 1px solid #f3f4f6;
    }
    .mbb-summary-title { font-size: 16px; font-weight: 800; color: #111827; }
    .mbb-close {
        width: 32px; height: 32px; border: none; background: #f3f4f6;
        border-radius: 50%; color: #111827; font-size: 24px; line-height: 1; cursor: pointer;
        display: flex; align-items: center; justify-content: center;
    }
    .mbb-summary-body { padding: 12px 18px 18px; font-size: 14px; }
    .mbb-summary-body .bs-head-row { display: flex; gap: 12px; margin-bottom: 12px; }
    .mbb-summary-body .bs-vehicle img { width: 64px; max-height: 48px; }
    .mbb-summary-body .bs-value { font-size: 14px; }
    .mbb-summary-body hr { margin: 10px 0; }
    .mbb-summary-body .bs-row { padding: 5px 0; font-size: 13px; }
    .mbb-summary-body .bs-total { font-size: 17px; padding-top: 6px; }

    .mobile-bottom-backdrop {
        display: none; position: fixed; inset: 0;
        background: rgba(0,0,0,.35); z-index: 1040;
        opacity: 0; transition: opacity .25s;
    }
    .mobile-bottom-backdrop.show { display: block; opacity: 1; }

    /* Push floating UI above the bar — nur wenn die Bottom-Bar wirklich da ist
       (body.has-mobile-bottom-bar wird in extras.php per JS gesetzt) */
    body.has-mobile-bottom-bar #cookieBanner { bottom: calc(84px + env(safe-area-inset-bottom)) !important; }
    body.has-mobile-bottom-bar #whatsappFloat { bottom: calc(96px + env(safe-area-inset-bottom)) !important; }
}

@media (max-width: 360px) {
    .summary-grid { gap: 6px 10px; }
    .summary-value { font-size: 12px; }
    .mbb-total-value { font-size: 18px; }
    .mbb-cta { padding: 12px 18px; font-size: 14px; }
}

/* ─── TOURS SECTION ──────────────────────────────────────── */
.tours-section { background: #f8fafc; }
.tours-title {
    font-size: 1.8rem; font-weight: 800; color: #1a1a2e; margin-bottom: 8px;
}
.tours-sub { color: #64748b; font-size: 1rem; max-width: 600px; margin: 0 auto; }
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 36px;
}
.tour-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, transform .2s;
}
.tour-card:hover { box-shadow: 0 12px 40px rgba(0,87,184,.11); transform: translateY(-4px); }
.tour-map {
    width: 100%; height: 260px;
    border-bottom: 1px solid #e5e7eb;
    overflow: hidden; flex-shrink: 0;
    background: linear-gradient(135deg, #e8f1fc, #c8dff7);
}
.tour-map img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tour-body { padding: 22px 22px 20px; flex: 1; display: flex; flex-direction: column; }
.tour-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .72rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: var(--brand-primary, #0d6efd);
    background: rgba(13, 110, 253, .08); padding: 4px 12px; border-radius: 20px;
    margin-bottom: 14px; width: fit-content;
}
.tour-title {
    font-size: 1.05rem; font-weight: 700; color: #1a1a2e;
    margin-bottom: 10px; line-height: 1.4;
}
.tour-route {
    font-size: .88rem; color: #6b7280; line-height: 1.6;
    margin-bottom: 18px; flex: 1;
}
.tour-meta {
    display: flex; gap: 18px; margin-bottom: 18px;
    padding-top: 14px; border-top: 1px solid #f3f4f6;
}
.tour-stat {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .85rem; font-weight: 600; color: #4b5563;
}
.tour-link {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: .9rem; font-weight: 600;
    color: var(--brand-primary, #0d6efd);
    border: 1.5px solid var(--brand-primary, #0d6efd);
    border-radius: 30px; padding: 9px 20px;
    transition: background .18s, color .18s;
    text-decoration: none; width: fit-content;
}
.tour-link:hover { background: var(--brand-primary, #0d6efd); color: #fff; }
@media (max-width: 600px) {
    .tours-title { font-size: 1.5rem; }
    .tour-map { height: 200px; }
}

/* Smooth scroll */
html { scroll-behavior: smooth; }

