/**
 * Rydeo Child — booking-confirmation.css
 * Matches the modern car rental UI from the provided mockup.
 *
 * Design tokens
 * ─────────────
 * --rydeo-red:   #E8192C   (brand / CTA)
 * --rydeo-dark:  #1A1A2E   (headings, nav)
 * --rydeo-mid:   #2D2D44   (body text)
 * --rydeo-grey:  #6B7280   (muted text)
 * --rydeo-line:  #E5E7EB   (borders)
 * --rydeo-bg:    #F9FAFB   (page background)
 * --rydeo-white: #FFFFFF
 * --rydeo-green: #10B981
 */

/* ── Reset / base ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

:root {
    --rydeo-red:     #E8192C;
    --rydeo-dark:    #1A1A2E;
    --rydeo-mid:     #374151;
    --rydeo-grey:    #6B7280;
    --rydeo-line:    #E5E7EB;
    --rydeo-bg:      #F9FAFB;
    --rydeo-white:   #FFFFFF;
    --rydeo-green:   #10B981;
    --rydeo-amber:   #F59E0B;
    --rydeo-radius:  10px;
    --rydeo-shadow:  0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.06);
    --rydeo-shadow-lg: 0 4px 24px rgba(0,0,0,.12);
    --rydeo-font:    'Inter', 'Segoe UI', system-ui, sans-serif;
    --sidebar-width: 340px;
}

/* ── Outer wrapper ───────────────────────────────────── */
.rydeo-booking-wrap {
    font-family: var(--rydeo-font);
    color: var(--rydeo-mid);
    background: var(--rydeo-bg);
    padding: 0 0 60px;
}

/* ── Step bar ────────────────────────────────────────── */
.rydeo-steps-bar {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0 0 32px;
    padding: 20px 0 24px;
    border-bottom: 1px solid var(--rydeo-line);
}
.rydeo-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--rydeo-grey);
    font-weight: 500;
    flex: 1;
    position: relative;
}
.rydeo-step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% - 100px);
    height: 2px;
    background: var(--rydeo-line);
}
.rydeo-step--active .rydeo-step:not(:last-child)::after,
.rydeo-step--done ~ .rydeo-step::before { background: var(--rydeo-red); }

.rydeo-step__icon {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--rydeo-line);
    color: var(--rydeo-grey);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700;
    flex-shrink: 0;
    transition: background .2s, color .2s;
}
.rydeo-step--active .rydeo-step__icon {
    background: var(--rydeo-red);
    color: #fff;
}
.rydeo-step--done .rydeo-step__icon {
    background: var(--rydeo-green);
    color: #fff;
}
.rydeo-step__label { white-space: nowrap; }
.rydeo-step--active .rydeo-step__label { color: var(--rydeo-dark); font-weight: 600; }


/* ── Two-column layout ───────────────────────────────── */
.rydeo-booking-layout {
    display: grid;
    grid-template-columns: 1fr var(--sidebar-width);
    gap: 28px;
    align-items: start;
}
@media (max-width: 900px) {
    .rydeo-booking-layout {
        grid-template-columns: 1fr;
    }
    .rydeo-booking-sidebar {
        order: -1;
    }
}


/* ── Sections ────────────────────────────────────────── */
.rydeo-section {
    background: var(--rydeo-white);
    border: 1px solid var(--rydeo-line);
    border-radius: var(--rydeo-radius);
    padding: 24px 28px;
    margin-bottom: 20px;
    box-shadow: var(--rydeo-shadow);
}

.rydeo-section__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--rydeo-red);
    margin: 0 0 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.rydeo-section__title i { font-size: 15px; }
.rydeo-section__title--collapsible { cursor: pointer; user-select: none; }
.rydeo-chevron { margin-left: auto; font-size: 12px; transition: transform .2s; }
.rydeo-section__title--collapsible.open .rydeo-chevron { transform: rotate(180deg); }
.rydeo-section__collapsible { display: none; }
.rydeo-section__collapsible.open { display: block; }

.rydeo-section__desc {
    font-size: 13px;
    color: var(--rydeo-grey);
    margin: -10px 0 18px;
}
.rydeo-optional { font-size: 12px; color: var(--rydeo-grey); font-weight: 400; margin-left: 4px; }


/* ── Grid / fields ───────────────────────────────────── */
.rydeo-grid { display: grid; gap: 16px; }
.rydeo-grid--2col { grid-template-columns: 1fr 1fr; }
.rydeo-field--full { grid-column: 1 / -1; }

@media (max-width: 600px) {
    .rydeo-grid--2col { grid-template-columns: 1fr; }
}

.rydeo-field { display: flex; flex-direction: column; gap: 6px; }
.rydeo-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--rydeo-dark);
}
.rydeo-field input,
.rydeo-field select,
.rydeo-field textarea,
.rydeo-booking-wrap input[type="text"],
.rydeo-booking-wrap input[type="email"],
.rydeo-booking-wrap input[type="tel"],
.rydeo-booking-wrap input[type="password"],
.rydeo-booking-wrap select,
.rydeo-booking-wrap textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--rydeo-line);
    border-radius: 8px;
    font-size: 14px;
    color: var(--rydeo-mid);
    background: #fff;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    font-family: var(--rydeo-font);
}
.rydeo-booking-wrap input:focus,
.rydeo-booking-wrap select:focus,
.rydeo-booking-wrap textarea:focus {
    border-color: var(--rydeo-red);
    box-shadow: 0 0 0 3px rgba(232,25,44,.08);
}
.rydeo-booking-wrap select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.rydeo-booking-wrap textarea { resize: vertical; min-height: 96px; }
.req { color: var(--rydeo-red); margin-left: 2px; }

/* char count */
.rydeo-char-count { font-size: 12px; color: var(--rydeo-grey); text-align: right; margin-top: 4px; display: block; }


/* ── Notices ─────────────────────────────────────────── */
.rydeo-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.55;
}
.rydeo-notice--idenfy {
    background: #FFF7ED;
    border: 1.5px solid #FED7AA;
    color: #92400E;
}
.rydeo-notice--success {
    background: #ECFDF5;
    border: 1.5px solid #A7F3D0;
    color: #065F46;
}
.rydeo-notice--error {
    background: #FEF2F2;
    border: 1.5px solid #FECACA;
    color: #991B1B;
}
.rydeo-notice--info {
    background: #EFF6FF;
    border: 1.5px solid #BFDBFE;
    color: #1E40AF;
}
.rydeo-notice--warning {
    background: #FFFBEB;
    border: 1.5px solid #FDE68A;
    color: #92400E;
}
.rydeo-notice--sm { padding: 10px 14px; font-size: 13px; }
.rydeo-notice__icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.rydeo-notice__body { flex: 1; }
.rydeo-notice__body p { margin: 0 0 10px; }
.rydeo-notice i { flex-shrink: 0; }


/* ── Upload zone ─────────────────────────────────────── */
.rydeo-upload-zone {
    border: 2px dashed var(--rydeo-line);
    border-radius: 10px;
    padding: 28px 20px;
    text-align: center;
    background: #FAFAFA;
    transition: border-color .2s, background .2s;
    position: relative;
    cursor: pointer;
}
.rydeo-upload-zone:hover,
.rydeo-upload-zone.drag-over {
    border-color: var(--rydeo-red);
    background: #FFF5F5;
}
.rydeo-upload-zone__placeholder i { font-size: 32px; color: var(--rydeo-red); margin-bottom: 10px; }
.rydeo-upload-zone__placeholder p { margin: 0 0 4px; font-weight: 600; color: var(--rydeo-dark); }
.rydeo-upload-zone__placeholder span { font-size: 12px; color: var(--rydeo-grey); display: block; margin-bottom: 14px; }

.rydeo-upload-zone__preview {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
}
.rydeo-upload-zone__preview img {
    width: 72px; height: 56px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--rydeo-line);
}
.rydeo-upload-zone__preview-info { flex: 1; }
.rydeo-upload-zone__preview-info span { display: block; font-size: 13px; }

.rydeo-upload-progress {
    margin-top: 14px;
}
.rydeo-upload-progress__bar {
    height: 4px;
    background: var(--rydeo-red);
    border-radius: 2px;
    width: 0%;
    transition: width .3s ease;
}
.rydeo-remove-upload {
    background: none;
    border: 1px solid var(--rydeo-line);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 12px;
    color: var(--rydeo-grey);
    cursor: pointer;
    transition: all .2s;
}
.rydeo-remove-upload:hover { border-color: var(--rydeo-red); color: var(--rydeo-red); }


/* ── Rental Details grid ─────────────────────────────── */
.rydeo-rental-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.rydeo-rental-details__item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px;
    background: var(--rydeo-bg);
    border: 1px solid var(--rydeo-line);
    border-radius: 8px;
}
.rydeo-rental-details__label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--rydeo-grey);
    font-weight: 600;
}
.rydeo-rental-details__val {
    font-size: 14px;
    font-weight: 600;
    color: var(--rydeo-dark);
    display: flex;
    align-items: center;
    gap: 6px;
}
@media (max-width: 560px) {
    .rydeo-rental-details { grid-template-columns: 1fr; }
}


/* ── Coverage cards ──────────────────────────────────── */
.rydeo-coverage-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.rydeo-coverage-card {
    border: 2px solid var(--rydeo-line);
    border-radius: 10px;
    padding: 16px;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: #fff;
}
.rydeo-coverage-card:hover { border-color: #ccc; }
.rydeo-coverage-card--selected {
    border-color: var(--rydeo-red);
    box-shadow: 0 0 0 3px rgba(232,25,44,.1);
}
.rydeo-coverage-card__radio {
    width: 18px; height: 18px;
    border: 2px solid var(--rydeo-line);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    transition: border-color .2s;
    position: relative;
}
.rydeo-coverage-card--selected .rydeo-coverage-card__radio {
    border-color: var(--rydeo-red);
    background: var(--rydeo-red);
    box-shadow: inset 0 0 0 4px #fff;
}
.rydeo-coverage-card__title {
    font-size: 13px;
    font-weight: 700;
    color: var(--rydeo-dark);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.rydeo-coverage-card__body p { font-size: 12px; color: var(--rydeo-grey); margin: 0; }

@media (max-width: 640px) {
    .rydeo-coverage-cards { grid-template-columns: 1fr; }
}


/* ── Badges ──────────────────────────────────────────── */
.rydeo-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    display: inline-block;
}
.rydeo-badge--green { background: #D1FAE5; color: #065F46; }
.rydeo-badge--red   { background: #FEE2E2; color: #991B1B; }


/* ── Checkboxes ──────────────────────────────────────── */
.rydeo-checkboxes { display: flex; flex-direction: column; gap: 12px; }
.rydeo-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    color: var(--rydeo-mid);
}
.rydeo-checkbox input[type="checkbox"] {
    width: 18px; height: 18px;
    margin-top: 1px;
    accent-color: var(--rydeo-red);
    flex-shrink: 0;
    cursor: pointer;
}
.rydeo-checkbox a { color: var(--rydeo-red); text-decoration: underline; }


/* ── Buttons ─────────────────────────────────────────── */
.rydeo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .2s;
    font-family: var(--rydeo-font);
    text-decoration: none;
}
.rydeo-btn--primary {
    background: var(--rydeo-red);
    color: #fff;
    border-color: var(--rydeo-red);
}
.rydeo-btn--primary:hover { background: #C8101F; border-color: #C8101F; }
.rydeo-btn--primary:disabled,
.rydeo-btn--primary[aria-disabled="true"] {
    background: #D1D5DB;
    border-color: #D1D5DB;
    cursor: not-allowed;
    opacity: .7;
}
.rydeo-btn--outline {
    background: transparent;
    border-color: var(--rydeo-red);
    color: var(--rydeo-red);
}
.rydeo-btn--outline:hover { background: var(--rydeo-red); color: #fff; }
.rydeo-btn--sm { padding: 6px 14px; font-size: 13px; }
.rydeo-btn--lg { width: 100%; padding: 16px 24px; font-size: 16px; border-radius: 10px; }


/* ── CTA footer ──────────────────────────────────────── */
.rydeo-booking-cta { margin-top: 8px; text-align: center; }
.rydeo-secure-note {
    font-size: 12px;
    color: var(--rydeo-grey);
    margin: 10px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.rydeo-spinner { display: inline-flex; }


/* ── Sidebar ─────────────────────────────────────────── */
.rydeo-booking-sidebar { position: relative; }
.rydeo-sidebar-sticky {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Vehicle card */
.rydeo-vehicle-card {
    background: var(--rydeo-white);
    border: 1px solid var(--rydeo-line);
    border-radius: var(--rydeo-radius);
    overflow: hidden;
    box-shadow: var(--rydeo-shadow);
}
.rydeo-vehicle-card__image { position: relative; }
.rydeo-vehicle-card__image img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}
.rydeo-vehicle-card__rating {
    position: absolute;
    top: 10px; left: 10px;
    background: rgba(0,0,0,.72);
    color: #FFD700;
    font-size: 13px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.rydeo-vehicle-card__wishlist {
    position: absolute;
    top: 10px; right: 10px;
    background: rgba(255,255,255,.85);
    border: none;
    border-radius: 50%;
    width: 32px; height: 32px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--rydeo-grey);
    transition: color .2s;
}
.rydeo-vehicle-card__wishlist:hover { color: var(--rydeo-red); }
.rydeo-vehicle-card__body { padding: 16px; }
.rydeo-vehicle-card__body h4 { font-size: 16px; font-weight: 700; color: var(--rydeo-dark); margin: 0 0 10px; }
.rydeo-vehicle-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.rydeo-vehicle-meta span {
    font-size: 12px;
    color: var(--rydeo-grey);
    display: flex;
    align-items: center;
    gap: 4px;
}
.rydeo-vehicle-meta i { color: var(--rydeo-grey); }

/* Sidebar boxes */
.rydeo-sidebar-box {
    background: var(--rydeo-white);
    border: 1px solid var(--rydeo-line);
    border-radius: var(--rydeo-radius);
    padding: 18px 20px;
    box-shadow: var(--rydeo-shadow);
}
.rydeo-sidebar-box__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--rydeo-dark);
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.rydeo-sidebar-box--deposit { background: #FFFBEB; border-color: #FDE68A; }
.rydeo-deposit-amount { font-size: 22px; font-weight: 800; color: var(--rydeo-dark); margin-bottom: 8px; }
.rydeo-sidebar-box--deposit p { font-size: 13px; color: var(--rydeo-grey); margin: 0; }

/* Summary list */
.rydeo-summary-list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex; flex-direction: column; gap: 10px;
}
.rydeo-summary-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 13px;
    gap: 8px;
}
.rydeo-summary-list li > span:first-child { color: var(--rydeo-grey); white-space: nowrap; }
.rydeo-summary-list__val { text-align: right; font-weight: 600; color: var(--rydeo-dark); }

/* Price list */
.rydeo-price-list {
    list-style: none;
    margin: 0 0 16px; padding: 0;
    display: flex; flex-direction: column; gap: 10px;
}
.rydeo-price-list li {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--rydeo-grey);
}
.rydeo-price-list li span:last-child { font-weight: 600; color: var(--rydeo-dark); }
.rydeo-coupon-row { flex-direction: column; gap: 6px; }
.rydeo-coupon-row > span:first-child { font-size: 12px; }
#rydeo-coupon-form { display: flex; gap: 8px; margin-top: 6px; }
#rydeo-coupon-form input { flex: 1; }

/* Total row */
.rydeo-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid var(--rydeo-line);
    padding-top: 14px;
    margin-top: 4px;
}
.rydeo-total-row > span:first-child { font-size: 15px; font-weight: 700; color: var(--rydeo-dark); }
.rydeo-total {
    font-size: 22px;
    font-weight: 800;
    color: var(--rydeo-red);
}

/* Policy list */
.rydeo-policy-list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex; flex-direction: column; gap: 8px;
}
.rydeo-policy-list li {
    font-size: 13px;
    color: var(--rydeo-mid);
    display: flex;
    align-items: center;
    gap: 7px;
}

/* Payment methods */
.rydeo-payment-methods { display: flex; flex-direction: column; gap: 10px; }
.rydeo-payment-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1.5px solid var(--rydeo-line);
    border-radius: 8px;
    cursor: pointer;
    transition: border-color .2s;
    font-size: 14px;
    color: var(--rydeo-mid);
}
.rydeo-payment-option:has(input:checked) { border-color: var(--rydeo-red); background: #FFF5F5; }
.rydeo-payment-option input[type="radio"] { accent-color: var(--rydeo-red); flex-shrink: 0; }
.rydeo-payment-option__label { flex: 1; font-weight: 500; }
.rydeo-paypal-icon { color: #003087; font-size: 20px; }

/* Trust badges */
.rydeo-trust-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.rydeo-trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 8px;
    background: var(--rydeo-white);
    border: 1px solid var(--rydeo-line);
    border-radius: 8px;
    text-align: center;
    font-size: 11px;
    color: var(--rydeo-grey);
}
.rydeo-trust-badge i { font-size: 18px; color: var(--rydeo-red); }


/* ── Utility ─────────────────────────────────────────── */
.rydeo-accent { color: var(--rydeo-red); }
.rydeo-green  { color: var(--rydeo-green); }
.rydeo-muted  { color: var(--rydeo-grey); font-size: 12px; }

/* ── Verification status (sidebar) ─────────────────── */
.rydeo-verify-status-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.rydeo-verify-status-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    border-bottom: 1px solid var(--rydeo-line);
}
.rydeo-verify-status-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.rydeo-verify-status-item__label {
    flex: 1 1 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--rydeo-dark);
}
.rydeo-verify-status-item__label i {
    color: var(--rydeo-grey);
    width: 16px;
    text-align: center;
}
.rydeo-verify-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}
.rydeo-verify-badge--ok {
    background: #D1FAE5;
    color: #065F46;
}
.rydeo-verify-badge--pending {
    background: #FEE2E2;
    color: #991B1B;
}
.rydeo-verify-profile-link {
    margin: 12px 0 0;
    font-size: 12px;
}
.rydeo-verify-profile-link a {
    color: var(--rydeo-red);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.rydeo-verify-profile-link a:hover {
    text-decoration: underline;
}
.rydeo-booking-hint--warn {
    color: #991B1B;
    font-size: 13px;
    margin-top: 10px;
}
.rydeo-modal__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}
body.rydeo-modal-open {
    overflow: hidden;
}


/* ── iDenfy Modal ────────────────────────────────────── */
.rydeo-modal {
    position: fixed; inset: 0; z-index: 99999;
    display: flex; align-items: center; justify-content: center;
    pointer-events: none; opacity: 0;
    transition: opacity .25s;
}
.rydeo-modal.open { opacity: 1; pointer-events: all; }
.rydeo-modal__overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(3px);
}
.rydeo-modal__content {
    position: relative;
    background: #fff;
    border-radius: 14px;
    padding: 32px;
    width: 90%;
    max-width: 520px;
    box-shadow: var(--rydeo-shadow-lg);
    z-index: 1;
}
.rydeo-modal__content h3 { font-size: 18px; font-weight: 700; margin: 0 0 8px; color: var(--rydeo-dark); }
.rydeo-modal__content p  { color: var(--rydeo-grey); font-size: 14px; margin: 0 0 20px; }
.rydeo-modal__close {
    position: absolute; top: 16px; right: 16px;
    background: none; border: none; cursor: pointer;
    font-size: 18px; color: var(--rydeo-grey);
    transition: color .2s;
}
.rydeo-modal__close:hover { color: var(--rydeo-red); }
#rydeo-idenfy-iframe {
    width: 100%; height: 480px;
    border-radius: 8px;
    display: block;
}
#rydeo-idenfy-loading {
    text-align: center;
    padding: 40px 0;
    color: var(--rydeo-grey);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}


/* ── WooCommerce fields reset inside Rydeo ───────────── */
.rydeo-booking-wrap .woocommerce-address-fields,
.rydeo-booking-wrap .address-field {
    width: 100%;
    margin: 0;
    padding: 0;
}
.rydeo-booking-wrap p.form-row { margin: 0; }
.rydeo-booking-wrap .select2-container { width: 100% !important; }
#listeo-delete-account-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#listeo-delete-account-modal .listeo-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(3px);
}

#listeo-delete-account-modal .listeo-modal-dialog {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 450px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    overflow: hidden;
    animation: modalFadeIn .25s ease;
}

#listeo-delete-account-modal .listeo-modal-header {
    padding: 30px 25px 20px;
    text-align: center;
}

#listeo-delete-account-modal .listeo-modal-header h3 {
    margin: 0;
    color: #222;
    font-size: 22px;
    font-weight: 700;
}

#listeo-delete-account-modal .listeo-modal-body {
    padding: 0 25px 20px;
    text-align: center;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

#listeo-delete-account-modal .listeo-modal-footer {
    padding: 20px 25px 25px;
    text-align: center;
}

#listeo-delete-account-modal .btn-cancel {
    min-width: 140px;
    border: none;
    border-radius: 8px;
    padding: 12px 25px;
    cursor: pointer;
    font-weight: 600;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
div#listeo-delete-account-modal .listeo-modal-dialog {
    padding: 0!important;
}
div#listeo-delete-account-modal .listeo-modal-dialog .listeo-modal-header {
    background: #f91942;
    color: #fff;
    display: flex;
    gap: 15px;
    padding: 20px;
    justify-content: center;
    font-size: 17px;
    align-items: center;
    margin-bottom: 40px;
}
div#listeo-delete-account-modal .listeo-modal-dialog .listeo-modal-header h3 {
    color: #fff;
}
div#listeo-delete-account-modal .listeo-modal-dialog button.button.btn-cancel {
    background: #f91942;
    color: #fff!important;
    border-radius: 70px;
}