/* ==============================================
   LRT Transfer Booking — Premium Design v2
   ============================================== */

/* ——— Layout ——— */

.lrt-booking-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -.01em;
}

.lrt-booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(300px, 1fr);
    gap: 20px;
    align-items: start;
}

.lrt-booking-main {
    min-width: 0;
}

/* ——— Form card wrapper ——— */

.lrt-booking-form {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .07);
}

/* ——— Form body ——— */

.lrt-form-body {
    padding: 20px 20px 24px;
}

/* ——— Field row ——— */

.lrt-field {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f7f8fa;
    border: 1.5px solid transparent;
    border-radius: 12px;
    padding: 10px 14px;
    margin-bottom: 10px;
    transition: border-color .2s, background .2s, box-shadow .2s;
    cursor: text;
}

.lrt-field:focus-within {
    background: #fff;
    border-color: #111827;
    box-shadow: 0 0 0 3px rgba(0,0,0,.07);
}

.lrt-field.is-error {
    border-color: #ef4444;
    background: #fff5f5;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, .12);
}

.lrt-field-icon {
    width: 22px;
    text-align: center;
    flex-shrink: 0;
    font-size: 16px;
    color: #9ca3af;
    transition: color .2s;
}

.lrt-field:focus-within .lrt-field-icon {
    color: #111827;
}

.lrt-icon-from {
    color: #22c55e;
}

.lrt-field:focus-within .lrt-icon-from {
    color: #16a34a;
}

.lrt-icon-to {
    color: #ef4444;
}

.lrt-field:focus-within .lrt-icon-to {
    color: #dc2626;
}

.lrt-field-inner {
    flex: 1;
    min-width: 0;
}

.lrt-field-inner label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #9ca3af;
    margin: 0 0 2px;
    line-height: 1;
}

.lrt-field-inner input,
.lrt-field-inner select {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none !important;
    font-size: 15px;
    font-weight: 500;
    color: #111827;
    padding: 0;
    line-height: 1.4;
    font-family: inherit;
    min-height: unset;
    border-radius: 0;
}

.lrt-field-inner input::placeholder {
    color: #d1d5db;
    font-weight: 400;
}

.lrt-field-inner select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.lrt-field-help {
    margin-top: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
    line-height: 1.2;
}

.lrt-field-help.is-error {
    color: #dc2626;
}

.lrt-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 7px;
}

.lrt-quick-btn {
    border: 1px solid #e5e7eb;
    background: #f3f4f6;
    color: #374151;
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: border-color .15s, color .15s, background .15s;
    font-family: inherit;
    letter-spacing: .02em;
}

.lrt-quick-btn:hover,
.lrt-quick-btn:focus {
    border-color: #111827;
    background: #e5e7eb;
    color: #111827;
    outline: none;
}

/* ——— Date / Time field accent ——— */
.lrt-field--datetime {
    background: #f7f8fa;
    border-color: transparent;
}

.lrt-field--datetime:focus-within {
    border-color: #111827;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0,0,0,.07);
}

.lrt-field--datetime .lrt-field-icon {
    color: #6b7280;
}

.lrt-field--datetime:focus-within .lrt-field-icon {
    color: #111827;
}

.lrt-field-inner input[type="date"],
.lrt-field-inner input[type="time"] {
    color: #111827;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
}

.lrt-field-inner input[type="date"]::-webkit-calendar-picker-indicator,
.lrt-field-inner input[type="time"]::-webkit-calendar-picker-indicator {
    opacity: .45;
    cursor: pointer;
    filter: none;
}

/* ——— Row grids ——— */

.lrt-field-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.lrt-field-row-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

/* ——— Collapsible manual distance ——— */

.lrt-details-wrap {
    margin-bottom: 10px;
}

.lrt-details-summary {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    padding: 6px 2px;
    list-style: none;
    user-select: none;
    font-family: inherit;
}

.lrt-details-summary::-webkit-details-marker {
    display: none;
}

.lrt-details-summary::before {
    content: '\f0fe';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 13px;
    color: #9ca3af;
}

details[open] > .lrt-details-summary::before {
    content: '\f146';
}

/* ——— Toggle switch ——— */

.lrt-toggle-row {
    margin: 12px 0;
}

.lrt-toggle-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.lrt-toggle-cb {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.lrt-toggle-track {
    position: relative;
    width: 42px;
    height: 24px;
    border-radius: 99px;
    background: #d1d5db;
    flex-shrink: 0;
    transition: background .2s;
}

.lrt-toggle-cb:checked + .lrt-toggle-track {
    background: #0f172a;
}

.lrt-toggle-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .25);
    transition: transform .2s;
}

.lrt-toggle-cb:checked + .lrt-toggle-track .lrt-toggle-thumb {
    transform: translateX(18px);
}

.lrt-toggle-text {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

/* ——— Geo-locate button ——— */

.lrt-geo-btn {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1.5px solid #e5e7eb;
    background: #f8fafc;
    color: #6b7280;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s, color .2s, background .2s;
    padding: 0;
    font-family: inherit;
    margin-left: 4px;
}

.lrt-geo-btn:hover {
    border-color: #111827;
    color: #111827;
    background: #f3f4f6;
}

.lrt-geo-btn:focus {
    outline: none;
    border-color: #111827;
    box-shadow: 0 0 0 3px rgba(0,0,0,.08);
}

.lrt-geo-btn.is-loading {
    pointer-events: none;
    color: #111827;
    border-color: #9ca3af;
    background: #f3f4f6;
}

.lrt-geo-btn.is-loading i {
    animation: lrt-crosshair-spin .8s linear infinite;
}

@keyframes lrt-crosshair-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ——— Return fields ——— */

.lrt-return-fields.is-hidden {
    display: none;
}

/* ——— Consent ——— */

.lrt-consent-wrap.is-hidden,
.lrt-cta-btn.is-hidden {
    display: none;
}

.lrt-consent-wrap {
    margin: 12px 0 8px;
}

.lrt-consent-wrap.is-error {
    background: #fef2f2;
    border: 1.5px solid #fca5a5;
    border-radius: 10px;
    padding: 10px 12px;
}

.lrt-consent-wrap.is-error label {
    color: #b91c1c;
}

.lrt-consent-wrap.is-error input[type="checkbox"] {
    accent-color: #dc2626;
}

.lrt-consent-wrap label {
    display: inline-flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    line-height: 1.5;
    cursor: pointer;
}

.lrt-consent-wrap input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin-top: 1px;
    accent-color: #0f172a;
    cursor: pointer;
    border: none;
    box-shadow: none !important;
    min-height: unset;
    border-radius: 3px;
}

.lrt-consent-wrap a {
    color: #111827;
    text-decoration: underline;
}

/* ——— CTA buttons ——— */

.lrt-cta-btn {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 20px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: #111827;
    cursor: pointer;
    transition: opacity .2s, transform .15s, background .2s, box-shadow .2s;
    letter-spacing: .01em;
    box-shadow: 0 2px 10px rgba(0,0,0,.18);
    margin-top: 4px;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.lrt-cta-btn:hover {
    background: #000;
    opacity: 1;
}

.lrt-cta-btn:active {
    transform: scale(.99);
}

.lrt-cta-btn--checkout {
    background: #000;
    box-shadow: 0 2px 10px rgba(0,0,0,.22);
    margin-top: 16px;
}

.lrt-cta-btn:disabled {
    opacity: .35;
    cursor: not-allowed;
    transform: none;
    pointer-events: none;
}

/* ——— Route summary ——— */

.lrt-route-summary {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    margin: 10px 0 0;
    min-height: 18px;
    text-align: center;
}

/* View route pill button (mobile only) */
.lrt-view-map-btn {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    margin-top: 8px;
    padding: 10px 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    background: #f7f8fa;
    color: #374151;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s, border-color .2s;
    letter-spacing: .01em;
}

.lrt-view-map-btn:hover {
    background: #f0f0f0;
    border-color: #111827;
    color: #111827;
}

.lrt-view-map-btn.is-hidden {
    display: none !important;
}

@media (max-width: 900px) {
    .lrt-view-map-btn:not(.is-hidden) {
        display: flex;
    }
}

/* ——— Vehicle list ——— */

.lrt-vehicle-list {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.lrt-trust-wrap {
    margin-top: 14px;
}

.lrt-map-panel .lrt-trust-wrap {
    margin-top: 0;
    padding: 16px 16px 16px;
}

.lrt-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.lrt-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #f7f8fa;
    color: #374151;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.lrt-support-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fbfdff;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.lrt-support-main {
    min-width: 0;
    flex: 1;
}

.lrt-support-head {
    display: flex;
    align-items: center;
    color: #0f172a;
    font-size: 14px;
    margin-bottom: 4px;
}

.lrt-support-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2e8f0;
    flex-shrink: 0;
}

.lrt-support-meta {
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.lrt-support-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lrt-support-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    border: 1px solid #cbd5e1;
    color: #1e293b;
    background: #fff;
    border-radius: 9px;
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 700;
    transition: border-color .2s, background .2s;
}

.lrt-support-link:hover {
    border-color: #94a3b8;
    background: #f8fafc;
}

/* ——— Vehicle card ——— */

.lrt-vehicle-name-row {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
}

.lrt-vehicle-subtitle {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.4;
}

.lrt-vehicle-subtitle .fa-user-group,
.lrt-vehicle-subtitle .fa-suitcase-rolling {
    color: #94a3b8;
    font-size: 12px;
}

/* Vehicle badge pill */
.lrt-vehicle-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    line-height: 1.6;
    flex-shrink: 0;
}

.lrt-vehicle-badge--green {
    background: #dcfce7;
    color: #15803d;
    border: 1px solid #bbf7d0;
}

.lrt-vehicle-badge--blue {
    background: #dbeafe;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}

.lrt-vehicle-badge--orange {
    background: #ffedd5;
    color: #c2410c;
    border: 1px solid #fed7aa;
}

.lrt-vehicle-badge--purple {
    background: #f3e8ff;
    color: #7e22ce;
    border: 1px solid #e9d5ff;
}

.lrt-vehicle-badge--red {
    background: #fee2e2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

/* ——— Passenger stepper ——— */

.lrt-field--stepper .lrt-field-inner {
    justify-content: center;
}

.lrt-stepper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 2px;
}

.lrt-stepper-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid #e2e8f0;
    background: #f8fafc;
    color: #374151;
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .15s, border-color .15s, color .15s;
    padding: 0;
    font-family: inherit;
    line-height: 1;
}

.lrt-stepper-btn:hover {
    border-color: #111827;
    background: #f3f4f6;
    color: #111827;
}

.lrt-stepper-btn:active {
    transform: scale(.92);
}

.lrt-stepper-btn:disabled {
    opacity: .35;
    cursor: not-allowed;
    pointer-events: none;
}

.lrt-stepper-val {
    font-size: 20px;
    font-weight: 800;
    color: #111827;
    min-width: 24px;
    text-align: center;
    line-height: 1;
    letter-spacing: -.02em;
}

/* ——— Vehicle list gap ——— */
.lrt-vehicle-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}

/* ——— Card shell ——— */
.lrt-vehicle-card {
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 16px;
    padding: 16px 18px;
    cursor: pointer;
    background: #fff;
    transition: border-color .18s, box-shadow .18s, background .18s;
    position: relative;
    outline: none;
    -webkit-user-select: none;
    user-select: none;
}

.lrt-vehicle-card:hover {
    border-color: #94a3b8;
    box-shadow: 0 4px 18px rgba(0,0,0,.08);
}

.lrt-vehicle-card:focus-visible {
    border-color: #111827;
    box-shadow: 0 0 0 3px rgba(0,0,0,.10);
}

/* Selected — black left accent */
.lrt-vehicle-card.is-selected {
    border-color: #111827;
    background: #fafafa;
    box-shadow: 0 4px 20px rgba(0,0,0,.09);
}

.lrt-vehicle-card.is-selected::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    bottom: 14px;
    width: 4px;
    background: #111827;
    border-radius: 0 4px 4px 0;
}

/* Checkmark badge top-right */
.lrt-card-check {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 1.5px solid #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: transparent;
    flex-shrink: 0;
    transition: background .18s, border-color .18s, color .18s;
    pointer-events: none;
}

.lrt-vehicle-card.is-selected .lrt-card-check {
    background: #111827;
    border-color: #111827;
    color: #fff;
}

/* Hidden radio — value carrier only */
.lrt-vehicle-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

/* Disabled */
.lrt-vehicle-card.is-disabled {
    opacity: .5;
    cursor: not-allowed;
    background: #fafafa;
    border-color: #e5e7eb;
    box-shadow: none;
    pointer-events: none;
}

.lrt-vehicle-card.is-disabled .lrt-card-check {
    background: #f1f5f9;
    border-color: #e5e7eb;
}

.lrt-vehicle-card.is-disabled .lrt-vehicle-price {
    color: #9ca3af;
}

/* Capacity warning */
.lrt-vehicle-capacity-warn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 7px;
    font-size: 11px;
    font-weight: 600;
    color: #b45309;
    background: #fef3c7;
    border: 1px solid #fde68a;
    border-radius: 6px;
    padding: 3px 8px;
    line-height: 1.4;
}

/* Spec chips */
.lrt-spec-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 7px;
}

.lrt-spec-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 3px 9px;
    font-size: 12px;
    font-weight: 600;
    color: #475569;
    line-height: 1.4;
    white-space: nowrap;
}

.lrt-spec-chip i {
    color: #94a3b8;
    font-size: 11px;
}

/* Image */
.lrt-vehicle-thumb {
    width: 100px;
    height: 62px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f1f5f9;
    border: 1px solid #e5e7eb;
}

.lrt-vehicle-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Vehicle info block */
.lrt-vehicle-brand {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
    margin-top: 1px;
    line-height: 1.3;
}

.lrt-vehicle-main {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}

.lrt-vehicle-main strong {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}

/* Price block */
.lrt-vehicle-meta {
    text-align: right;
    flex-shrink: 0;
    padding-right: 28px;
}

.lrt-vehicle-price {
    font-size: 24px;
    font-weight: 800;
    color: #15803d;
    line-height: 1;
    letter-spacing: -.02em;
    white-space: nowrap;
}

.lrt-vehicle-per-trip {
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-top: 3px;
    text-align: right;
}

/* ——— Map panel ——— */

.lrt-map-panel {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .07);
    position: sticky;
    top: 16px;
}

.lrt-map-canvas {
    width: 100%;
    height: 340px;
    background: #f3f4f6;
}

.lrt-map-message {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: #9ca3af;
    font-size: 14px;
    font-weight: 600;
}

/* ——— Map stats ——— */

.lrt-map-stats {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid #f3f4f6;
}

.lrt-map-stats.is-hidden {
    display: none;
}

.lrt-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lrt-stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: #f7f8fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #6b7280;
    flex-shrink: 0;
}

.lrt-stat-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #9ca3af;
    line-height: 1;
    margin-bottom: 2px;
}

.lrt-stat-value {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}

/* ——— Responsive ——— */

@media (max-width: 900px) {
    /* Single column — FORM FIRST, map below */
    .lrt-booking-layout {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .lrt-map-panel {
        position: static;
        /* no order:-1 → form renders first naturally */
    }

    /* Shorter map on tablet */
    .lrt-map-canvas {
        height: 200px;
    }

    /* Passengers/Currency/Flight: 3 cols still fits on tablet */
    .lrt-field-row-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .lrt-vehicle-price {
        font-size: 22px;
    }

    .lrt-vehicle-main strong {
        font-size: 14px;
    }

    /* Horizontal stats strip on tablet */
    .lrt-map-stats {
        flex-direction: row;
        gap: 16px;
        padding: 12px 16px;
    }

    .lrt-stat-item {
        flex: 1;
    }

    /* Compact trust block below map */
    .lrt-map-panel .lrt-trust-wrap {
        padding: 12px 16px 14px;
    }
}

@media (max-width: 560px) {
    /* ——— FORM ——— */
    .lrt-form-body {
        padding: 16px 14px 18px;
    }

    /* Date + time stay side-by-side (compact, touch-friendly) */
    .lrt-field-row-2 {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    /* Passengers + Currency side-by-side; flight full-width */
    .lrt-field-row-3 {
        grid-template-columns: 1fr 1fr;
    }

    /* Place flight on its own row */
    .lrt-field-row-3 .lrt-field:last-child {
        grid-column: 1 / -1;
    }

    /* Larger touch targets for quick-action buttons */
    .lrt-quick-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    /* CTA buttons — bigger tap area */
    .lrt-cta-btn {
        padding: 16px 20px;
        font-size: 17px;
    }

    /* Vehicle cards: stack content on small screens */
    .lrt-vehicle-card {
        flex-wrap: wrap;
        gap: 10px;
        padding: 14px;
    }

    .lrt-vehicle-main {
        flex: 1;
        min-width: 0;
    }

    .lrt-vehicle-meta {
        width: 100%;
        text-align: left;
        padding-right: 0;
    }

    .lrt-vehicle-price {
        font-size: 20px;
    }

    .lrt-vehicle-per-trip {
        text-align: left;
    }

    .lrt-card-check {
        top: 10px;
        right: 10px;
    }

    /* ——— MAP (compact strip below form) ——— */
    .lrt-map-canvas {
        height: 160px;
        transition: height .4s cubic-bezier(.4,0,.2,1);
    }

    .lrt-map-canvas.has-route {
        height: 240px;
    }

    .lrt-map-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        padding: 10px 14px;
    }

    .lrt-stat-item {
        flex: 1;
        min-width: 0;
    }

    .lrt-stat-icon {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .lrt-stat-label {
        font-size: 10px;
    }

    .lrt-stat-value {
        font-size: 14px;
    }

    /* Hide support card on mobile — noise before checkout */
    .lrt-support-card {
        display: none;
    }

    /* Trust badges — compact pills */
    .lrt-trust-badges {
        gap: 6px;
    }

    .lrt-trust-badge {
        font-size: 11px;
        padding: 5px 9px;
    }

    .lrt-map-panel .lrt-trust-wrap {
        padding: 10px 14px 12px;
    }
}

/* ============================================================
   Mobile sticky summary bar
   ============================================================ */

.lrt-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    border-top: 1.5px solid #e2e8f0;
    box-shadow: 0 -4px 24px rgba(0,0,0,.12);
    padding: 9px 14px;
    padding-bottom: calc(9px + env(safe-area-inset-bottom, 0px));
    /* Hidden on desktop – only flex on mobile (see breakpoint below) */
    display: none;
    align-items: center;
    transform: translateY(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    box-sizing: border-box;
    max-width: 100vw;
    overflow: hidden;
}

.lrt-sticky-bar:not(.is-hidden) {
    transform: translateY(0);
}

@media (max-width: 900px) {
    .lrt-sticky-bar {
        display: none !important;
    }

    /* Push the form content up so the sticky bar never covers the checkout button */
    .lrt-booking-main {
        padding-bottom: 0;
    }
}

.lrt-sticky-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 6px;
    width: 100%;
    min-width: 0;
}

.lrt-sticky-chips {
    display: flex;
    align-items: center;
    gap: 5px;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.lrt-sticky-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 700;
    color: #1e293b;
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
    line-height: 1.3;
}

.lrt-sticky-chip:first-child {
    flex: 0 0 auto;
}

.lrt-sticky-chip i {
    color: #374151;
    font-size: 10px;
}

.lrt-sticky-chip:nth-child(2) {
    flex: 1 1 auto;
    max-width: 100%;
    min-width: 0;
}

#lrt-bar-date,
#lrt-bar-route {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lrt-sticky-price {
    text-align: right;
    flex-shrink: 0;
    margin-left: auto;
    padding-left: 6px;
    max-width: 40%;
    min-width: 100px;
    min-width: 0;
    overflow: hidden;
}

.lrt-sticky-price-name {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: .04em;
    line-height: 1.2;
    white-space: nowrap;
    min-height: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lrt-sticky-price-amount {
    display: block;
    font-size: clamp(16px, 5.1vw, 21px);
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: -.02em;
    line-height: 1.1;
    transition: color .2s;
    white-space: nowrap;
}

.lrt-sticky-price-amount.has-price {
    color: #15803d;
}

@media (max-width: 420px) {
    .lrt-sticky-bar {
        padding: 8px 10px;
        padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    }

    .lrt-sticky-chip {
        font-size: 11px;
        padding: 4px 7px;
    }

    .lrt-sticky-price {
        min-width: 94px;
        max-width: 42%;
    }

    .lrt-sticky-price-name {
        font-size: 9px;
    }

    .lrt-sticky-chip:nth-child(2) i {
        display: none;
    }
}

/* =========================================================
   STEP PROGRESS BAR
   ========================================================= */
.lrt-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 18px 24px 0;
    margin-bottom: 4px;
}

.lrt-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
    opacity: .38;
    transition: opacity .3s;
}

.lrt-step.is-active {
    opacity: 1;
}

.lrt-step.is-done {
    opacity: .72;
}

.lrt-step-dot {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f3f4f6;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #9ca3af;
    transition: background .3s, border-color .3s, color .3s;
}

.lrt-step.is-active .lrt-step-dot {
    background: #111827;
    border-color: #111827;
    color: #fff;
}

.lrt-step.is-done .lrt-step-dot {
    background: #374151;
    border-color: #374151;
    color: #fff;
}

.lrt-step-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #9ca3af;
    white-space: nowrap;
    transition: color .3s;
}

.lrt-step.is-active .lrt-step-label {
    color: #111827;
}

.lrt-step.is-done .lrt-step-label {
    color: #374151;
}

.lrt-step-line {
    flex: 1;
    min-width: 36px;
    height: 2px;
    background: #e5e7eb;
    margin: 0 4px;
    margin-bottom: 22px; /* vertically align with dot centre */
    border-radius: 2px;
    transition: background .3s;
}

.lrt-step-line.is-filled {
    background: #374151;
}

/* =========================================================
   SECTION LABELS
   ========================================================= */
.lrt-section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0 10px;
}

.lrt-section-label span {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #9ca3af;
    white-space: nowrap;
}

.lrt-section-label::before,
.lrt-section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #f0f0f2;
}

.lrt-section-label--vehicles {
    margin-top: 28px;
}

/* =========================================================
   BEST VALUE CHIP
   ========================================================= */
.lrt-spec-chip--best {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fcd34d;
    font-weight: 700;
}

.lrt-spec-chip--best i {
    font-size: 9px;
}

/* =========================================================
   SECURE NOTICE (below checkout button)
   ========================================================= */
.lrt-secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
    color: #9ca3af;
    text-align: center;
    margin-top: 10px;
    letter-spacing: .01em;
    line-height: 1.5;
}

.lrt-secure-note i {
    font-size: 12px;
    color: #6b7280;
}

/* =========================================================
   BUTTON CLICK ANIMATIONS
   ========================================================= */

/* --- Ripple wave --- */
@keyframes lrt-ripple-anim {
    from { transform: scale(0); opacity: .45; }
    to   { transform: scale(4); opacity: 0; }
}

.lrt-btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    pointer-events: none;
    animation: lrt-ripple-anim .55s ease-out forwards;
    /* width/height/left/top set inline by JS */
}

/* --- Pulse ring while loading (search) --- */
@keyframes lrt-pulse-ring {
    0%   { box-shadow: 0 2px 10px rgba(0,0,0,.18), 0 0 0 0 rgba(17,24,39,.30); }
    60%  { box-shadow: 0 2px 10px rgba(0,0,0,.18), 0 0 0 10px rgba(17,24,39,0); }
    100% { box-shadow: 0 2px 10px rgba(0,0,0,.18), 0 0 0 0 rgba(17,24,39,0); }
}

.lrt-cta-btn.is-loading {
    animation: lrt-pulse-ring 1.1s ease-out infinite;
    pointer-events: none;
}

/* --- Shimmer sweep on checkout while submitting --- */
@keyframes lrt-shimmer-sweep {
    0%   { transform: translateX(-120%) skewX(-18deg); }
    100% { transform: translateX(220%) skewX(-18deg); }
}

.lrt-cta-btn--checkout.is-loading::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 50%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
    animation: lrt-shimmer-sweep .9s ease-in-out forwards;
}
