/* ==========================================================================
   Rezervasyon formu (adım 1 — Bilgiler) stilleri
   Kendi :root değişkenlerini tanımlar (river/navy teması).
   style.css + kamber.css'ten SONRA yüklenir (libraries.php > reservation_form).
   ========================================================================== */

    :root {
        --nr-navy: #0b2239;
        --nr-deep: #0f3854;
        --nr-river: #0f8ea0;
        --nr-river-2: #17b6c8;
        --nr-sun: #ffb000;
        --nr-orange: #ff7a1a;
        --nr-soft: #f3f8fb;
        --nr-white: #ffffff;
        --nr-muted: #6c7a89;
        --nr-line: rgba(11, 34, 57, .12);
        --nr-shadow: 0 24px 70px rgba(7, 31, 52, .16);
        --nr-radius: 26px;
        --nr-radius-sm: 16px;
    }

    a { color: inherit; text-decoration: none; }
    .nr-container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

    .eyebrow {
        display: inline-flex; align-items: center; gap: 9px;
        padding: 9px 13px;
        border-radius: 999px;
        background: rgba(255,255,255,.13);
        border: 1px solid rgba(255,255,255,.16);
        font-weight: 800;
        font-size: 13px;
    }
    h1 { margin: 24px 0 14px; font-size: clamp(34px, 5vw, 62px); line-height: .98; letter-spacing: -1.7px; }

    .stat { padding: 16px; border-radius: 18px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.14); }
    .stat strong { display: block; font-size: 22px; }
    .stat span { display: block; margin-top: 4px; color: rgba(255,255,255,.74); font-size: 12px; font-weight: 700; }
    .side-info { display: grid; gap: 16px; }
    .info-box {
        border-radius: var(--nr-radius);
        background: rgba(255,255,255,.78);
        border: 1px solid rgba(255,255,255,.75);
        box-shadow: 0 18px 50px rgba(7,31,52,.10);
        padding: 22px;
    }
    .info-box h3 { margin: 0 0 10px; font-size: 19px; }
    .info-box p { margin: 0; color: var(--nr-muted); line-height: 1.6; }
    .badges { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 15px; }
    .badge { padding: 8px 11px; border-radius: 999px; background: rgba(15,142,160,.10); color: var(--nr-river); font-weight: 800; font-size: 12px; }
    .page-shell { padding: 26px 0 70px; }
    .reservation-layout { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 26px; align-items: start; }
    .panel {
        border-radius: var(--nr-radius);
        background: rgba(255,255,255,.88);
        border: 1px solid rgba(255,255,255,.75);
        box-shadow: 0 20px 54px rgba(7,31,52,.10);
        overflow: hidden;
    }
    .panel-head { padding: 24px 26px 18px; border-bottom: 1px solid var(--nr-line); display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; }
    .panel-title h2 { margin: 0; font-size: 27px; letter-spacing: -.55px; }
    .panel-title p { margin: 8px 0 0; color: var(--nr-muted); line-height: 1.55; }
    .secure-chip { display: inline-flex; gap: 8px; align-items: center; padding: 10px 12px; background: #effaf4; color: #147a44; border-radius: 999px; font-weight: 900; font-size: 12px; white-space: nowrap; }
    .stepper { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 18px 26px; background: rgba(243,248,251,.72); border-bottom: 1px solid var(--nr-line); }
    .step { display: flex; align-items: center; gap: 10px; color: rgba(11,34,57,.52); font-size: 13px; font-weight: 900; }
    .step-no { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: #fff; border: 1px solid var(--nr-line); }
    .step.active { color: var(--nr-river); }
    .step.active .step-no { color: #fff; background: linear-gradient(135deg, var(--nr-river), var(--nr-river-2)); border: none; box-shadow: 0 10px 18px rgba(15,142,160,.24); }

    .step.done{ color:rgba(15,142,160,.78); }
    .step.done .step-no{ color:#fff; background:linear-gradient(135deg,#11a78c,var(--nr-river)); border:none; }

    .form-body { padding: 26px; }
    .section { padding: 22px 0; border-bottom: 1px solid var(--nr-line); }
    .section:first-child { padding-top: 0; }
    .section:last-child { border-bottom: none; padding-bottom: 0; }
    .section-title { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
    .section-title h3 { margin: 0; font-size: 20px; }
    .section-title small { color: var(--nr-muted); font-weight: 700; }
    .tour-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
    .tour-card {
        position: relative;
        display: grid;
        grid-template-columns: 172px minmax(0, 1fr);
        gap: 16px;
        align-items: stretch;
        border: 1px solid var(--nr-line);
        border-radius: 22px;
        padding: 13px;
        cursor: pointer;
        background: #fff;
        transition: .24s ease;
        min-height: 156px;
    }
    .tour-photo-wrap {
        position: relative;
        overflow: hidden;
        border-radius: 18px;
        min-height: 132px;
        background: linear-gradient(135deg, rgba(15,142,160,.13), rgba(255,176,0,.12));
    }
    .tour-photo-wrap img {
        width: 100%;
        height: 100%;
        min-height: 132px;
        object-fit: cover;
        display: block;
    }
    .tour-photo-placeholder {
        position: absolute;
        inset: 0;
        display: grid;
        place-items: center;
        font-size: 38px;
        color: var(--nr-river);
    }
    .tour-card-content { min-width: 0; display: flex; flex-direction: column; justify-content: center; }
    .tour-card-info { display: grid; grid-template-columns: repeat(2, minmax(0, max-content)); gap: 7px 14px; align-items: center; }
    .tour-card:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(7,31,52,.10); }
    .tour-card.selected { border-color: rgba(15,142,160,.58); box-shadow: inset 0 0 0 2px rgba(15,142,160,.12), 0 20px 38px rgba(15,142,160,.13); }

    .tour-card.unavailable {
        opacity: .48;
        cursor: not-allowed;
        filter: grayscale(.35);
    }
    .tour-card.unavailable:hover {
        transform: none;
        box-shadow: none;
    }
    .tour-status {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-top: 12px;
        padding: 7px 9px;
        border-radius: 14px;
        background: rgba(15,142,160,.10);
        color: var(--nr-river);
        font-weight: 900;
        font-size: 11px;
    }
    .tour-status.closed {
        background: rgba(220,53,69,.10);
        color: #c83243;
    }
    .day-btn.has-closed {
        border-color: rgba(255,176,0,.42);
        background: rgba(255,176,0,.09);
    }
    .day-btn.full-closed {
        border-color: rgba(220,53,69,.22);
        background: rgba(220,53,69,.07);
    }
    .api-warning {
        margin-bottom: 16px;
        padding: 13px 15px;
        border-radius: 16px;
        background: rgba(255,176,0,.13);
        border: 1px solid rgba(255,176,0,.28);
        color: rgba(11,34,57,.84);
        font-size: 13px;
        font-weight: 800;
        line-height: 1.45;
    }
    .tour-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 15px; background: rgba(15,142,160,.10); font-size: 22px; flex: 0 0 auto; }
    .tour-title-row { display: flex; align-items: center; gap: 11px; margin-bottom: 8px; }
    .tour-card h4 { margin: 0; font-size: 17px; }
    .tour-card p { margin: 0 0 11px; color: var(--nr-muted); font-size: 13px; line-height: 1.45; }
    .tour-price { font-weight: 950; color: var(--nr-river); font-size: 13px; }
    .field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .field-grid.three { grid-template-columns: repeat(3, 1fr); }
    label { display: block; font-size: 13px; font-weight: 900; margin-bottom: 8px; color: rgba(11,34,57,.80); }
    input, select, textarea {
        width: 100%;
        border: 1px solid rgba(11,34,57,.14);
        border-radius: 16px;
        padding: 14px 14px;
        font: inherit;
        color: var(--nr-navy);
        background: #fff;
        outline: none;
        transition: .2s ease;
    }
    input:focus, select:focus, textarea:focus { border-color: rgba(15,142,160,.7); box-shadow: 0 0 0 4px rgba(15,142,160,.12); }
    textarea { min-height: 112px; resize: vertical; }
    .counter-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .counter {
        display: flex; align-items: center; justify-content: space-between; gap: 14px;
        padding: 14px;
        border: 1px solid var(--nr-line);
        border-radius: 18px;
        background: #fff;
    }
    .counter strong { display: block; }
    .counter span { display: block; margin-top: 4px; color: var(--nr-muted); font-size: 12px; }
    .counter-controls { display: flex; align-items: center; gap: 10px; }
    .btn-round { width: 34px; height: 34px; border: none; border-radius: 50%; cursor: pointer; font-size: 20px; background: rgba(15,142,160,.10); color: var(--nr-river); font-weight: 900; }
    .count-value { min-width: 24px; text-align: center; font-weight: 950; }

    .participant-block { margin-top: 16px; }
    .participant-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        margin-bottom: 12px;
    }
    .participant-head strong { font-size: 15px; }
    .participant-head small { color: var(--nr-muted); font-size:11px; }
    .participant-list { display: grid; gap: 12px; }
    .participant-card {
        padding: 14px;
        border: 1px solid var(--nr-line);
        border-radius: 18px;
        background: linear-gradient(135deg, #fff, #f7fbfd);
    }
    .participant-card-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 12px;
        color: rgba(11,34,57,.82);
        font-size: 13px;
        font-weight: 950;
    }
    .participant-card-title span {
        padding: 6px 9px;
        border-radius: 999px;
        background: rgba(15,142,160,.10);
        color: var(--nr-river);
        font-size: 11px;
    }
    .participant-fields { display: grid; grid-template-columns: minmax(0, 1fr) 120px; gap: 12px; }
    .switch-row {
        display: flex; align-items: center; justify-content: space-between; gap: 20px;
        padding: 16px;
        border: 1px solid var(--nr-line);
        border-radius: 20px;
        background: linear-gradient(135deg, #fff, #f4fbfd);
    }
    .switch-row strong { display: block; }
    .switch-row span { display: block; margin-top: 5px; color: var(--nr-muted); font-size: 13px; }
    .switch { position: relative; width: 58px; height: 32px; flex: 0 0 auto; }
    .switch input { display: none; }
    .slider { position: absolute; cursor: pointer; inset: 0; background: #d9e4ea; border-radius: 999px; transition: .2s ease; }
    .slider::before { content: ""; position: absolute; width: 24px; height: 24px; left: 4px; top: 4px; background: #fff; border-radius: 50%; box-shadow: 0 4px 10px rgba(0,0,0,.18); transition: .2s ease; }
    .switch input:checked + .slider { background: linear-gradient(135deg, var(--nr-river), var(--nr-river-2)); }
    .switch input:checked + .slider::before { transform: translateX(26px); }
    .hidden-block { display: none; margin-top: 14px; animation: fadeUp .25s ease both; }
    .hidden-block.show { display: block; }
    .payment-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .sticky-summary { position: sticky; top: 104px; }
    .summary-head {
        padding: 24px;
        color: #fff;
        background:
            linear-gradient(135deg, rgba(11,34,57,.96), rgba(15,56,84,.94)),
            radial-gradient(circle at 85% 25%, rgba(255,176,0,.32), transparent 35%);
    }
    .summary-head h3 { margin: 0; font-size: 23px; }
    .summary-head p { margin: 8px 0 0; color: rgba(255,255,255,.72); line-height: 1.5; }
    .summary-body { padding: 22px 24px 24px; background: rgba(255,255,255,.93); }
    .summary-line { display: flex; justify-content: space-between; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--nr-line); color: var(--nr-muted); }
    .summary-line strong { color: var(--nr-navy); text-align: right; }
    .total { margin-top: 16px; padding: 18px; border-radius: 20px; background: linear-gradient(135deg, rgba(15,142,160,.10), rgba(255,176,0,.12)); }
    .total span { display: block; color: var(--nr-muted); font-weight: 800; font-size: 12px; }
    .total strong { display: block; margin-top: 4px; font-size: 34px; letter-spacing: -1px; }
    .btn-primary {
        width: 100%;
        margin-top: 16px;
        border: none;
        border-radius: 18px;
        padding: 16px 18px;
        background: linear-gradient(135deg, var(--nr-orange), var(--nr-sun));
        color: #fff;
        font-weight: 950;
        font-size: 16px;
        cursor: pointer;
        box-shadow: 0 16px 30px rgba(255,122,26,.28);
        transition: .22s ease;
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 36px rgba(255,122,26,.34); }
    .note { margin-top: 14px; color: var(--nr-muted); font-size: 12px; line-height: 1.55; }
    .trust-list { display: grid; gap: 10px; margin-top: 16px; }
    .trust-item { display: flex; gap: 10px; align-items: flex-start; color: rgba(11,34,57,.72); font-size: 13px; line-height: 1.45; }
    .consent-list { display: grid; gap: 12px; }
    .consent-row {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 14px 15px;
        border: 1px solid var(--nr-line);
        border-radius: 18px;
        background: linear-gradient(135deg, #fff, #f7fbfd);
    }
    .consent-row input {
        width: 18px;
        height: 18px;
        margin-top: 2px;
        flex: 0 0 auto;
        accent-color: var(--nr-river);
    }
    .consent-row label {
        margin: 0;
        line-height: 1.45;
        font-size: 13px;
        font-weight: 800;
        color: rgba(11,34,57,.80);
    }
    .consent-row label span { color: var(--nr-muted); font-weight: 700; }

    .country-city-field { min-width: 0; }
    .country-city-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 10px;
    }
    .country-city-grid input { min-width: 0; }
    .modal-link {
        border: none;
        padding: 0;
        background: transparent;
        color: var(--nr-river);
        font: inherit;
        font-weight: 950;
        cursor: pointer;
        text-decoration: underline;
        text-underline-offset: 3px;
    }
    .nr-modal {
        position: fixed;
        inset: 0;
        display: none;
        place-items: center;
        padding: 22px;
        background: rgba(7, 31, 52, .58);
        backdrop-filter: blur(8px);
        z-index: 120;
    }
    .nr-modal.show { display: grid; }
    .nr-modal-card {
        width: min(760px, 100%);
        max-height: min(82vh, 760px);
        display: flex;
        flex-direction: column;
        border-radius: 26px;
        background: #fff;
        box-shadow: var(--nr-shadow);
        overflow: hidden;
        animation: fadeUp .22s ease both;
    }
    .nr-modal-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 20px 22px;
        border-bottom: 1px solid var(--nr-line);
        background: linear-gradient(135deg, rgba(15,142,160,.10), rgba(255,176,0,.10));
    }
    .nr-modal-head h3 { margin: 0; font-size: 20px; }
    .nr-modal-close {
        width: 38px;
        height: 38px;
        border: none;
        border-radius: 50%;
        background: rgba(11,34,57,.08);
        color: var(--nr-navy);
        font-size: 24px;
        line-height: 1;
        cursor: pointer;
        flex: 0 0 auto;
    }
    .nr-modal-body {
        overflow: auto;
        padding: 22px;
        color: rgba(11,34,57,.82);
        line-height: 1.65;
    }
    .nr-modal-body h4 { margin: 18px 0 8px; font-size: 16px; }
    .nr-modal-body p { margin: 0 0 12px; }
    .nr-modal-body ul { margin: 0 0 12px 18px; padding: 0; }
    .nr-modal-foot {
        padding: 16px 22px 20px;
        border-top: 1px solid var(--nr-line);
        background: #fff;
    }
    .error { border-color: rgba(220,53,69,.75) !important; box-shadow: 0 0 0 4px rgba(220,53,69,.10) !important; }
    .toast {
        position: fixed;
        right: 18px; bottom: 18px;
        max-width: 390px;
        padding: 16px 18px;
        border-radius: 18px;
        background: rgba(11,34,57,.94);
        color: #fff;
        box-shadow: var(--nr-shadow);
        transform: translateY(30px);
        opacity: 0;
        pointer-events: none;
        transition: .25s ease;
        z-index: 80;
    }
    .toast.show { transform: translateY(0); opacity: 1; }
    .loading-overlay {
        position: fixed;
        inset: 0;
        display: grid;
        place-items: center;
        background: rgba(247,251,253,.74);
        backdrop-filter: blur(12px);
        z-index: 100;
        opacity: 0;
        pointer-events: none;
        transition: .25s ease;
    }

    .payment-stepper{ grid-template-columns:repeat(5,5fr); }

    .loading-overlay.show { opacity: 1; pointer-events: all; }
    .loader-card { width: min(360px, calc(100% - 34px)); padding: 26px; border-radius: 26px; background: #fff; box-shadow: var(--nr-shadow); text-align: center; }
    .wave-loader { display: flex; justify-content: center; gap: 7px; margin-bottom: 16px; }
    .wave-loader i { width: 10px; height: 34px; background: var(--nr-river); border-radius: 999px; animation: wave 1s infinite ease-in-out; }
    .wave-loader i:nth-child(2) { animation-delay: .1s; }
    .wave-loader i:nth-child(3) { animation-delay: .2s; }
    .wave-loader i:nth-child(4) { animation-delay: .3s; }
    .mini-calendar { display: grid; grid-template-columns: repeat(7, 1fr); gap: 7px; }
    .day-name, .day-btn { text-align: center; }
    .day-name { color: var(--nr-muted); font-size: 12px; font-weight: 900; padding: 4px 0; }
    .day-btn { border: 1px solid var(--nr-line); background: #fff; border-radius: 13px; padding: 10px 4px; cursor: pointer; font-weight: 900; transition: .18s ease; }
    .day-btn:hover:not(.disabled) { background: rgba(15,142,160,.10); color: var(--nr-river); }
    .day-btn.selected { background: linear-gradient(135deg, var(--nr-river), var(--nr-river-2)); color: #fff; border-color: transparent; }
    .day-btn.disabled { opacity: .32; cursor: not-allowed; text-decoration: line-through; }
    .month-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
    .month-nav strong { font-size: 16px; }
    .small-btn { border: none; background: rgba(15,142,160,.10); color: var(--nr-river); font-weight: 950; border-radius: 13px; padding: 9px 12px; cursor: pointer; }
    @keyframes wave { 0%, 100% { transform: scaleY(.45); opacity: .55; } 50% { transform: scaleY(1); opacity: 1; } }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
    @media (max-width: 991px){ .payment-stepper{ grid-template-columns:1fr 1fr; } .payment-intro,.card-payment-grid{ grid-template-columns:1fr; } }

    @media (max-width: 1040px) {
        .sticky-summary { position: static; }
        .tour-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 720px) {
        .tour-card { grid-template-columns: 1fr; }
        .tour-photo-wrap, .tour-photo-wrap img { min-height: 180px; }
        .tour-card-info { grid-template-columns: 1fr; }
        .participant-fields { grid-template-columns: 1fr; }
        .panel-head, .section-title { flex-direction: column; align-items: flex-start; }
        .form-body, .panel-head, .stepper { padding-left: 18px; padding-right: 18px; }
    }


    /* Mobil kullanıcı deneyimi iyileştirmeleri: masaüstü kuralları korunur, yalnızca dar ekranlarda devreye girer. */
    @media (max-width: 1040px) {
        .nr-container { width: min(100% - 24px, 760px); }
        .reservation-layout {
            grid-template-columns: 1fr;
            gap: 18px;
        }
        .sticky-summary {
            position: static;
            order: -1;
        }
        .summary-head { padding: 20px; }
        .summary-body { padding: 18px 20px 20px; }
        .summary-body #scrollForm { display: none; }
        .field-grid,
        .field-grid.three,
        .counter-grid,
        .payment-options,
        .country-city-grid {
            grid-template-columns: 1fr;
        }
        .section.m-4 {
            margin: 18px 0 0 !important;
        }
    }

    @media (max-width: 720px) {
        :root {
            --nr-radius: 20px;
            --nr-radius-sm: 14px;
        }
        .page-shell { padding: 14px 0 32px; }
        .nr-container { width: calc(100% - 20px); }
        .panel { border-radius: 20px; }
        .panel-head {
            padding: 18px 16px 14px;
            gap: 12px;
        }
        .panel-title h2 {
            font-size: 23px;
            letter-spacing: -.35px;
        }
        .panel-title p { font-size: 13px; }
        .secure-chip {
            width: 100%;
            justify-content: center;
            border-radius: 14px;
            white-space: normal;
        }
        .stepper.payment-stepper,
        .stepper {
            display: flex;
            gap: 8px;
            overflow-x: auto;
            overscroll-behavior-x: contain;
            -webkit-overflow-scrolling: touch;
            scroll-snap-type: x proximity;
            padding: 12px 14px;
        }
        .stepper::-webkit-scrollbar { display: none; }
        .step {
            min-width: max-content;
            padding: 8px 10px;
            border: 1px solid var(--nr-line);
            border-radius: 999px;
            background: rgba(255,255,255,.72);
            scroll-snap-align: start;
            font-size: 12px;
        }
        .step-no {
            width: 24px;
            height: 24px;
            font-size: 12px;
        }
        .form-body { padding: 18px 15px; }
        .section { padding: 18px 0; }
        .section-title {
            margin-bottom: 13px;
            gap: 6px;
        }
        .section-title h3 { font-size: 18px; }
        .section-title small { font-size: 12px; }
        .tour-card {
            grid-template-columns: 112px minmax(0, 1fr);
            gap: 11px;
            min-height: auto;
            padding: 10px;
            border-radius: 18px;
        }
        .tour-photo-wrap,
        .tour-photo-wrap img {
            min-height: 112px;
            height: 112px;
            border-radius: 14px;
        }
        .tour-title-row {
            align-items: flex-start;
            gap: 8px;
            margin-bottom: 6px;
        }
        .tour-icon {
            width: 34px;
            height: 34px;
            border-radius: 12px;
            font-size: 18px;
        }
        .tour-card h4 { font-size: 15px; line-height: 1.2; }
        .tour-card p {
            margin-bottom: 8px;
            font-size: 12px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .tour-card-info {
            grid-template-columns: 1fr;
            gap: 5px;
        }
        .tour-price { font-size: 12px; }
        .tour-status {
            margin-top: 8px;
            padding: 6px 8px;
            border-radius: 12px;
            font-size: 10.5px;
        }
        .month-nav {
            position: sticky;
            top: 0;
            z-index: 3;
            padding: 8px 0;
            background: rgba(255,255,255,.94);
            backdrop-filter: blur(8px);
        }
        .month-nav strong { font-size: 15px; text-transform: capitalize; }
        .small-btn {
            min-width: 44px;
            min-height: 40px;
            padding: 9px 13px;
        }
        .mini-calendar { gap: 5px; }
        .day-name { font-size: 10.5px; }
        .day-btn {
            min-height: 42px;
            padding: 8px 2px;
            border-radius: 11px;
            font-size: 13px;
        }
        .counter {
            align-items: stretch;
            gap: 12px;
            padding: 13px;
        }
        .counter-controls {
            justify-content: flex-end;
            flex: 0 0 auto;
        }
        .btn-round {
            width: 42px;
            height: 42px;
            font-size: 22px;
        }
        .participant-head {
            align-items: flex-start;
            flex-direction: column;
            gap: 4px;
        }
        .participant-card { padding: 12px; border-radius: 16px; }
        .participant-card-title {
            flex-direction: column;
            align-items: flex-start;
            gap: 7px;
        }
        .participant-fields,
        .field-grid,
        .country-city-grid {
            grid-template-columns: 1fr;
            gap: 10px;
        }
        input, select, textarea {
            min-height: 48px;
            border-radius: 14px;
            padding: 13px 12px;
            font-size: 16px;
        }
        label { font-size: 12.5px; }
        .switch-row {
            align-items: flex-start;
            gap: 14px;
            padding: 14px;
            border-radius: 18px;
        }
        .switch-row span { font-size: 12px; }
        .consent-row { padding: 13px; border-radius: 16px; }
        .consent-row label { font-size: 12.5px; }
        .summary-line {
            padding: 9px 0;
            font-size: 13px;
        }
        .summary-line strong { max-width: 58%; }
        .total {
            margin-top: 12px;
            padding: 14px;
            border-radius: 16px;
        }
        .total strong { font-size: 27px; }
        .btn-primary {
            min-height: 50px;
            border-radius: 16px;
            padding: 14px 16px;
            font-size: 15px;
        }
        .toast {
            left: 10px;
            right: 10px;
            bottom: 12px;
            max-width: none;
            border-radius: 15px;
        }
        .nr-modal { padding: 10px; align-items: end; }
        .nr-modal-card {
            width: 100%;
            max-height: 88vh;
            border-radius: 22px 22px 0 0;
        }
        .nr-modal-head,
        .nr-modal-body,
        .nr-modal-foot { padding-left: 16px; padding-right: 16px; }
    }

    @media (max-width: 430px) {
        .nr-container { width: calc(100% - 14px); }
        .tour-card { grid-template-columns: 92px minmax(0, 1fr); }
        .tour-photo-wrap,
        .tour-photo-wrap img {
            min-height: 96px;
            height: 96px;
        }
        .tour-icon { display: none; }
        .tour-title-row { margin-bottom: 5px; }
        .tour-card-info .tour-price:nth-child(n+4) { display: none; }
        .counter {
            flex-direction: column;
        }
        .counter-controls { justify-content: space-between; }
        .count-value { min-width: 38px; }
        .summary-line { align-items: flex-start; }
        .summary-line strong { max-width: 62%; word-break: break-word; }
    }

