:root {
    --amber: #3577bb;
    --amber-dark: #2a5f9e;
    --secondary: #b7cd00;
    --secondary-dark: #9aad00;
    --dark: #1C1C22;
    --dark-2: #2A2A33;
    --gray-100: #F5F5F7;
    --gray-200: #E8E8ED;
    --gray-400: #9999A5;
    --gray-600: #6B6B78;
    --white: #FFFFFF;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--dark); line-height: 1.6; background: #F5F6FA; }
a { text-decoration: none; color: inherit; }

/* Brand name color */
.koco-brand { color: var(--secondary); font-style: normal; -webkit-text-fill-color: var(--secondary); }

.nav { position: sticky; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--gray-200); }
main { margin-top: 0; }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 8px; }
.nav-brand img { height: 36px; width: auto; border-radius: 0; }
.nav-brand-full-logo { height: 36px; width: auto; display: block; }
.nav-brand span { font-size: 22px; font-weight: 800; color: var(--secondary); -webkit-text-fill-color: var(--secondary); }
.auth-brand-full-logo { height: 32px; width: auto; display: block; }
.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--gray-600); transition: color 0.2s; }
.nav-links a:hover { color: var(--amber); }

/* Nav chips */
.nav-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid var(--gray-200);
    background: transparent;
    color: var(--gray-600);
    transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.nav-chip:hover { background: var(--gray-100); color: var(--dark); }
.nav-chip.active {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}
.nav-cta { background: var(--amber); color: var(--white); padding: 10px 22px; border-radius: 100px; font-weight: 600; font-size: 13px; transition: background 0.2s; }
.nav-cta:hover { background: var(--amber-dark); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--dark); margin: 5px 0; transition: 0.3s; }

/* Nav right auth area */
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-signin-btn {
    padding: 8px 18px;
    border-radius: 100px;
    border: 1.5px solid var(--dark);
    background: transparent;
    color: var(--dark);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
}
.nav-signin-btn:hover { background: var(--dark); color: var(--white); }
.nav-user { display: flex; align-items: center; gap: 8px; cursor: pointer; padding: 4px 8px; border-radius: 20px; transition: background 0.18s; }
.nav-user:hover { background: var(--gray-100); }
.nav-avatar { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }
.nav-user-name { font-size: 13px; font-weight: 600; color: var(--dark); max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nav-user-chevron { font-size: 10px; color: var(--gray-400); }
.nav-signout-btn { background: none; border: none; font-size: 13px; color: var(--gray-600); cursor: pointer; padding: 4px 8px; border-radius: 6px; transition: background 0.18s; }
.nav-signout-btn:hover { background: var(--gray-100); color: var(--dark); }

/* ── Profile dropdown ───────────────────────────────── */
.profile-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    width: 280px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.14);
    border: 1px solid var(--gray-200);
    padding: 16px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.18s, transform 0.18s;
}
.profile-dropdown.pd-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.pd-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.pd-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.pd-avatar-fallback { width: 44px; height: 44px; border-radius: 50%; background: var(--amber); color: #fff; font-size: 20px; font-weight: 700; align-items: center; justify-content: center; flex-shrink: 0; }
.pd-header-text { display: flex; flex-direction: column; overflow: hidden; }
.pd-name { font-size: 15px; font-weight: 700; color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pd-sub { font-size: 12px; color: var(--gray-400); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pd-divider { height: 1px; background: var(--gray-200); margin: 10px 0; }
.pd-row { display: flex; align-items: center; gap: 8px; padding: 5px 0; }
.pd-icon { font-size: 15px; width: 20px; text-align: center; flex-shrink: 0; }
.pd-label { font-size: 13px; color: var(--gray-400); }
.pd-val { font-size: 13px; color: var(--dark); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pd-wallet-val { font-weight: 700; color: var(--amber); margin-left: auto; }
.pd-signout-btn { width: 100%; margin-top: 4px; background: none; border: 1.5px solid var(--gray-200); border-radius: 10px; padding: 9px; font-size: 13px; font-weight: 600; color: var(--gray-600); cursor: pointer; transition: background 0.18s, color 0.18s; }
.pd-signout-btn:hover { background: #fff1f0; color: #e53e3e; border-color: #fed7d7; }
/* Bookings in dropdown */
.pd-bookings-header { font-size: 11px; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.pd-bookings-list { display: flex; flex-direction: column; gap: 8px; max-height: 260px; overflow-y: auto; }
.pd-bookings-loading, .pd-bookings-empty { font-size: 12px; color: var(--gray-400); padding: 4px 0; }
.pd-bk-item {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: 14px;
    padding: 12px 14px;
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.pd-bk-item:hover { border-color: var(--amber); box-shadow: 0 2px 12px rgba(53,119,187,0.12); }
.pd-bk-top { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.pd-bk-status-badge {
    font-size: 10px; font-weight: 700; border-radius: 20px; padding: 2px 8px; white-space: nowrap; flex-shrink: 0;
}
.pd-bk-status-badge.confirmed  { background: #DCFCE7; color: #15803D; }
.pd-bk-status-badge.cancelled  { background: #FEE2E2; color: #DC2626; }
.pd-bk-status-badge.pending    { background: #FEF9C3; color: #A16207; }
.pd-bk-hotel { font-size: 13px; font-weight: 700; color: var(--dark); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; flex: 1; }
.pd-bk-ref { font-size: 11px; color: var(--amber); font-weight: 700; letter-spacing: 0.05em; flex-shrink: 0; }
.pd-bk-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 2px; }
.pd-bk-dates { font-size: 11px; color: var(--gray-400); }
.pd-bk-total { font-size: 12px; font-weight: 700; color: var(--dark); }
.pd-bk-nights { font-size: 11px; color: var(--gray-400); }
.pd-bk-arrow { font-size: 13px; color: var(--gray-400); margin-left: 4px; }

/* ── Booking Detail Modal ─────────────────────────────── */
#booking-detail-modal .modal-card {
    max-width: 540px;
    width: 100%;
    padding: 0;
    border-radius: 24px;
    overflow: hidden;
}
.bkd-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 24px 28px 20px;
    color: #fff;
}
.bkd-hotel-name { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.bkd-hotel-city { font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 14px; }
.bkd-status-row { display: flex; align-items: center; gap: 10px; }
.bkd-status-badge {
    font-size: 11px; font-weight: 700; border-radius: 20px; padding: 4px 12px;
}
.bkd-status-badge.confirmed { background: #DCFCE7; color: #15803D; }
.bkd-status-badge.cancelled { background: #FEE2E2; color: #DC2626; }
.bkd-status-badge.pending   { background: #FEF9C3; color: #A16207; }
.bkd-ref {
    font-size: 13px; font-weight: 700; color: var(--amber); background: rgba(53,119,187,0.15);
    border-radius: 8px; padding: 4px 12px; cursor: pointer; letter-spacing: 0.1em;
    display: flex; align-items: center; gap: 6px;
}
.bkd-ref:hover { background: rgba(53,119,187,0.28); }
.bkd-body { padding: 24px 28px; display: flex; flex-direction: column; gap: 20px; }
.bkd-section-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--gray-500); margin-bottom: 10px; }
.bkd-dates-row { display: flex; gap: 0; border: 1.5px solid var(--gray-200); border-radius: 14px; overflow: hidden; }
.bkd-date-box { flex: 1; padding: 14px 16px; }
.bkd-date-box + .bkd-date-box { border-left: 1.5px solid var(--gray-200); }
.bkd-date-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-500); margin-bottom: 4px; }
.bkd-date-val { font-size: 17px; font-weight: 800; color: var(--dark); }
.bkd-date-sub { font-size: 12px; color: var(--gray-400); margin-top: 2px; }
.bkd-info-row { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--gray-100); }
.bkd-info-row:last-child { border-bottom: none; }
.bkd-info-icon { font-size: 16px; width: 24px; text-align: center; flex-shrink: 0; }
.bkd-info-label { font-size: 12px; color: var(--gray-400); }
.bkd-info-val { font-size: 14px; font-weight: 600; color: var(--dark); }
.bkd-payment-box {
    background: var(--gray-100); border-radius: 14px; padding: 16px 18px;
    display: flex; justify-content: space-between; align-items: flex-start;
}
.bkd-payment-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-500); margin-bottom: 4px; }
.bkd-payment-now { font-size: 22px; font-weight: 800; color: var(--dark); }
.bkd-payment-later { font-size: 13px; color: var(--gray-400); margin-top: 2px; }
.bkd-payment-badge {
    font-size: 11px; font-weight: 700; border-radius: 20px; padding: 4px 12px; white-space: nowrap;
}
.bkd-payment-badge.prepaid { background: #EFF6FF; color: #1D4ED8; }
.bkd-payment-badge.pay-later { background: #FEF9C3; color: #A16207; }
.bkd-cancel-timeline { display: flex; flex-direction: column; gap: 0; }
.bkd-cancel-item { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--gray-100); }
.bkd-cancel-item:last-child { border-bottom: none; }
.bkd-cancel-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 4px; }
.bkd-cancel-dot.free   { background: #22C55E; }
.bkd-cancel-dot.fee    { background: #F97316; }
.bkd-cancel-dot.nore   { background: #EF4444; }
.bkd-cancel-text { font-size: 13px; color: var(--dark); }
.bkd-cancel-date { font-size: 11px; color: var(--gray-400); margin-top: 2px; }
.bkd-footer { padding: 0 28px 24px; display: flex; gap: 10px; }
.bkd-close-btn { flex: 1; background: none; border: 1.5px solid var(--gray-200); border-radius: 100px; padding: 12px; font-size: 14px; font-weight: 600; color: var(--gray-600); cursor: pointer; }
.bkd-close-btn:hover { background: var(--gray-100); }
.bkd-skeleton-line { background: linear-gradient(90deg, #ececec 25%, #f5f5f5 50%, #ececec 75%); background-size: 600px 100%; animation: shimmer 1.4s infinite linear; border-radius: 8px; height: 14px; margin-bottom: 10px; }

/* ── Mis Reservas Modal ───────────────────────────────── */
/* Profile dropdown button */
.pd-reservas-btn {
    display: flex; align-items: center; gap: 8px; width: 100%;
    background: #FFF8F3; border: 1.5px solid #FFE0C4; border-radius: 12px;
    padding: 10px 14px; font-size: 13px; font-weight: 700; color: var(--amber);
    cursor: pointer; transition: background 0.15s, border-color 0.15s;
}
.pd-reservas-btn:hover { background: #FFE8D0; border-color: var(--amber); }
.pd-reservas-chevron { margin-left: auto; }

/* Full-screen overlay */
#my-bookings-modal { align-items: flex-start; justify-content: flex-start; padding: 0; background: #F4F5F8; }
.mbm-shell {
    width: 100%; max-width: 100%; height: 100%; max-height: 100dvh;
    background: #F4F5F8; display: flex; flex-direction: column; overflow: hidden;
    border-radius: 0;
}
@media (max-width: 700px) { .mbm-shell { border-radius: 0; } }
.mbm-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 28px 18px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    flex-shrink: 0;
    width: 100%; box-sizing: border-box;
}
.mbm-title { font-size: 22px; font-weight: 800; color: #fff; }
.mbm-sub   { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 2px; }
.mbm-close {
    width: 38px; height: 38px; border-radius: 50%; border: none;
    background: rgba(255,255,255,0.12); color: #fff; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.15s;
}
.mbm-close:hover { background: rgba(255,255,255,0.22); }
.mbm-body { flex: 1; overflow-y: auto; padding: 24px 20px; max-width: 1100px; margin: 0 auto; width: 100%; box-sizing: border-box; }

/* Skeleton */
.mbm-skeleton-wrap { display: flex; flex-direction: column; gap: 16px; }
.mbm-skeleton-card {
    display: flex; gap: 14px; background: #fff; border-radius: 18px; padding: 14px; overflow: hidden;
}
.mbm-sk-img { width: 90px; height: 90px; border-radius: 12px; flex-shrink: 0;
    background: linear-gradient(90deg, #ececec 25%, #f5f5f5 50%, #ececec 75%);
    background-size: 600px 100%; animation: shimmer 1.4s infinite linear; }
.mbm-sk-lines { flex: 1; display: flex; flex-direction: column; gap: 10px; padding-top: 6px; }
.mbm-sk-line { height: 13px; border-radius: 6px;
    background: linear-gradient(90deg, #ececec 25%, #f5f5f5 50%, #ececec 75%);
    background-size: 600px 100%; animation: shimmer 1.4s infinite linear; }
.mbm-sk-line.w70 { width: 70%; }
.mbm-sk-line.w50 { width: 50%; }
.mbm-sk-line.w40 { width: 40%; }

/* Empty state */
.mbm-empty { display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 12px; padding: 60px 20px; text-align: center; }
.mbm-empty-title { font-size: 17px; font-weight: 700; color: var(--dark); }
.mbm-empty-sub { font-size: 14px; color: var(--gray-400); }

/* Cards grid */
.mbm-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 500px)  { .mbm-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px)  { .mbm-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (min-width: 1200px) { .mbm-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }

.mbm-card {
    background: #fff; border-radius: 20px; overflow: hidden; cursor: pointer;
    border: 1.5px solid var(--gray-200);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: box-shadow 0.18s, border-color 0.18s;
    display: flex; flex-direction: column;
}
.mbm-card:hover { box-shadow: 0 6px 22px rgba(0,0,0,0.10); border-color: var(--amber); }

.mbm-card-img-wrap { position: relative; height: 150px; background: #E8EEF5; flex-shrink: 0; }
.mbm-card-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mbm-card-img-placeholder {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    background: #E8EEF5;
}
/* Flight card hero */
.mbm-card-img-wrap--flight { background: #EEF2F8; display: flex; align-items: center; justify-content: center; }
.mbm-flight-logo { max-height: 64px; max-width: 80%; object-fit: contain; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.08)); }
.mbm-flight-logo-fallback { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.mbm-card-status {
    position: absolute; top: 10px; left: 10px;
    font-size: 11px; font-weight: 700; border-radius: 100px; padding: 4px 10px;
    backdrop-filter: blur(6px);
}
.mbm-card-status.confirmed { background: rgba(220,252,231,0.92); color: #15803D; }
.mbm-card-status.cancelled { background: rgba(254,226,226,0.92); color: #DC2626; }
.mbm-card-status.pending   { background: rgba(254,249,195,0.92); color: #A16207; }

.mbm-card-body { padding: 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.mbm-card-name { font-size: 15px; font-weight: 800; color: var(--dark); line-height: 1.25; }
.mbm-card-city { font-size: 12px; color: var(--gray-400); }
.mbm-card-room { font-size: 12px; color: var(--gray-500); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mbm-card-dates {
    display: flex; align-items: center; gap: 5px; flex-wrap: wrap;
    font-size: 12px; color: var(--gray-600); margin-top: 4px;
}
.mbm-card-nights { color: var(--gray-400); }
.mbm-card-footer {
    display: flex; align-items: center; justify-content: space-between; margin-top: 4px;
}
.mbm-card-total { font-size: 14px; font-weight: 800; color: var(--dark); }
.mbm-card-ref {
    font-size: 11px; font-weight: 700; color: var(--amber);
    background: #FFF8F3; border-radius: 8px; padding: 3px 8px; letter-spacing: 0.06em;
}
/* Guests dropdown button */
.guests-dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    height: 42px;
    padding: 0 12px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    background: var(--white);
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    text-align: left;
    transition: border-color 0.18s;
}
.guests-dropdown-btn:hover, .guests-dropdown-btn:focus { border-color: var(--amber); outline: none; }
.guests-dropdown-btn svg { color: var(--gray-400); flex-shrink: 0; transition: transform 0.18s; }

/* Guests popover */
.guests-popover {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    z-index: 200;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    padding: 16px;
    width: 240px;
    display: none;
}
.guests-popover.gp-open { display: block; }
.gp-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--gray-100); }
.gp-row:last-of-type { border-bottom: none; }
.gp-label-wrap { display: flex; flex-direction: column; }
.gp-label { font-size: 14px; font-weight: 600; color: var(--dark); }
.gp-sub { font-size: 12px; color: var(--gray-400); }
.gp-stepper { display: flex; align-items: center; gap: 12px; }
.gp-btn {
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 1.5px solid var(--gray-200);
    background: var(--white);
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: border-color 0.15s, background 0.15s;
}
.gp-btn:hover { border-color: var(--amber); background: #FFF3E8; }
.gp-stepper span { font-size: 15px; font-weight: 600; min-width: 20px; text-align: center; }
.gp-done-btn {
    width: 100%; margin-top: 12px;
    background: var(--amber); color: var(--white);
    border: none; border-radius: 8px;
    padding: 9px; font-size: 14px; font-weight: 600;
    cursor: pointer; transition: background 0.18s;
}
.gp-done-btn:hover { background: var(--amber-dark); }

/* ── Booking receipt ──────────────────────────────── */
.booking-receipt { width: 100%; }
.rcpt-header { text-align: center; margin-bottom: 16px; }
.rcpt-confirmed-badge { font-size: 18px; font-weight: 800; color: #15803D; display: inline-flex; align-items: center; justify-content: center; gap: 6px; }
.rcpt-confirmed-icon { width: 20px; height: 20px; display: inline-flex; }
.rcpt-confirmed-icon svg { width: 100%; height: 100%; display: block; }
.rcpt-confirmed-at { font-size: 12px; color: var(--gray-400); margin-top: 4px; }
.rcpt-media-wrap {
    width: 100%;
    height: 180px;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
    background: var(--gray-100);
}
.rcpt-media-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.rcpt-media-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7C8397;
    background: linear-gradient(135deg, #f7f8fb 0%, #eceff5 100%);
}
.rcpt-media-placeholder svg {
    width: 52px;
    height: 52px;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.rcpt-ref-row { display: flex; align-items: center; justify-content: space-between; background: var(--gray-100); border-radius: 10px; padding: 10px 14px; margin-bottom: 12px; }
.rcpt-ref-label { font-size: 12px; color: var(--gray-400); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.rcpt-ref { font-size: 20px; font-weight: 800; letter-spacing: 0.06em; color: var(--dark); }
.rcpt-hotel-row { margin-bottom: 14px; }
.rcpt-stars { color: #F59E0B; font-size: 13px; margin-bottom: 2px; }
.rcpt-hotel-name { font-size: 17px; font-weight: 800; color: var(--dark); margin-bottom: 2px; }
.rcpt-hotel-addr { font-size: 12px; color: var(--gray-400); display: flex; align-items: center; gap: 5px; }
.rcpt-dates-grid { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.rcpt-date-box { flex: 1; background: var(--gray-100); border-radius: 10px; padding: 10px 12px; }
.rcpt-date-label { font-size: 11px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 2px; }
.rcpt-date-val { font-size: 15px; font-weight: 700; color: var(--dark); }
.rcpt-date-time { font-size: 11px; color: #9999A5; margin-top: 3px; }
.rcpt-date-sub { font-size: 11px; color: var(--gray-400); margin-top: 2px; }
.rcpt-date-arrow { width: 22px; height: 22px; color: var(--gray-400); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.rcpt-date-arrow svg { width: 100%; height: 100%; display: block; }
.rcpt-section { margin-bottom: 14px; }
.rcpt-section-title { font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.04em; }
.rcpt-billing { border: 1px solid var(--gray-200); border-radius: 10px; overflow: hidden; }
.rcpt-bill-row { display: flex; justify-content: space-between; padding: 8px 12px; font-size: 13px; border-bottom: 1px solid var(--gray-100); }
.rcpt-bill-row:last-child { border-bottom: none; }
.rcpt-bill-total { font-weight: 700; font-size: 14px; background: var(--gray-100); }
.rcpt-bill-due { color: var(--gray-600); font-style: italic; }
.rcpt-cancel-row { display: flex; align-items: center; justify-content: space-between; padding: 5px 0; font-size: 12px; }
.rcpt-cancel-ok { color: #15803D; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.rcpt-cancel-no { color: #DC2626; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.rcpt-cancel-when { color: var(--gray-400); }
.rcpt-inline-icon { width: 14px; height: 14px; display: inline-flex; }
.rcpt-inline-icon svg { width: 100%; height: 100%; display: block; }
.rcpt-key { font-size: 13px; color: var(--gray-600); background: var(--gray-100); border-radius: 8px; padding: 10px 12px; margin: 0; line-height: 1.6; }
.rcpt-guest-row { font-size: 13px; color: var(--gray-600); padding: 8px 0; border-top: 1px solid var(--gray-100); margin-top: 8px; }
.rcpt-email-note { font-size: 12px; color: var(--gray-400); margin-top: 6px; }

/* ── Modals shared ──────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.modal-box {
    background: var(--white);
    border-radius: 20px;
    padding: 32px 28px;
    width: 100%;
    max-width: 420px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 24px 80px rgba(0,0,0,0.22);
    animation: modal-in 0.22s ease;
}
@keyframes modal-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.modal-close {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    width: 32px; height: 32px;
    font-size: 15px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.18s;
}
.modal-close:hover { background: var(--gray-200); }
.modal-logo { font-size: 36px; margin-bottom: 12px; }
.modal-title { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.modal-subtitle { font-size: 14px; color: var(--gray-600); margin-bottom: 20px; }

/* Auth */
.auth-provider-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 20px;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    background: var(--white);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s;
    margin-bottom: 4px;
}
.auth-provider-btn:hover { background: var(--gray-100); border-color: var(--gray-400); }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 16px 0; color: var(--gray-400); font-size: 13px; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--gray-200); }
.auth-tabs { display: flex; gap: 8px; margin-bottom: 16px; }
.auth-tab {
    flex: 1;
    padding: 8px;
    border-radius: 8px;
    border: 1.5px solid var(--gray-200);
    background: transparent;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    color: var(--gray-600);
    transition: all 0.18s;
}
.auth-tab.active { background: var(--dark); color: var(--white); border-color: var(--dark); }
.auth-panel { display: flex; flex-direction: column; gap: 10px; }
.auth-input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.18s;
}
.auth-input:focus { border-color: var(--amber); }
.auth-error { font-size: 12px; color: #E53E3E; min-height: 16px; }
.auth-hint { font-size: 13px; color: var(--gray-600); }
.auth-submit-btn {
    width: 100%;
    padding: 13px;
    background: var(--amber);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
}
.auth-submit-btn:hover { background: var(--amber-dark); }
.auth-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.auth-link-btn { background: none; border: none; color: var(--amber); font-size: 13px; font-weight: 600; cursor: pointer; text-align: center; padding: 4px; font-family: inherit; }
.auth-link-btn:hover { text-decoration: underline; }
.auth-back-btn {
    background: none;
    border: none;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    padding: 0;
    margin-bottom: 16px;
    font-family: inherit;
    display: block;
}
.auth-back-btn:hover { color: var(--dark); }
.auth-brand-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.auth-brand-icon { width: 36px; height: 36px; border-radius: 10px; }
.auth-brand-name { font-size: 20px; font-weight: 800; background: linear-gradient(135deg, #2a5f9e, #3577bb); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.auth-input--code { font-size: 22px; letter-spacing: 8px; text-align: center; font-weight: 700; }
.auth-submit-btn--outline {
    background: transparent;
    color: var(--dark);
    border: 1.5px solid var(--gray-200);
}
.auth-submit-btn--outline:hover { background: var(--gray-100); }
.footer-email-contact { color: var(--gray-400); font-size: 13px; }

/* ── Custom phone selector ─────────────────────────── */
.phone-field {
    display: flex;
    width: 100%;
    margin-bottom: 10px;
}
.phone-dialcode {
    border: 1.5px solid var(--gray-200);
    border-right: none;
    border-radius: 10px 0 0 10px;
    background: var(--gray-100);
    padding: 0 10px;
    font-size: 14px;
    font-family: inherit;
    color: var(--dark);
    cursor: pointer;
    outline: none;
    transition: border-color 0.18s;
    white-space: nowrap;
}
.phone-dialcode:focus { border-color: var(--amber); }
.phone-number-input {
    border-radius: 0 10px 10px 0 !important;
    border-left: none !important;
    flex: 1;
    margin-bottom: 0 !important;
}
.phone-number-input:focus { border-color: var(--amber) !important; }

/* Booking modal */
.booking-step { width: 100%; }
.booking-page-overlay {
    align-items: flex-start;
    justify-content: center;
    padding: 0;
    background: #f3f4f8;
    backdrop-filter: none;
    overflow-y: auto;
}
.booking-modal-box {
    max-width: 1180px;
    width: min(100vw, 1180px);
    min-height: 100vh;
    max-height: none;
    border-radius: 0;
    padding: 34px 28px 56px;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    animation: none;
}
.booking-page-shell {
    margin: 0 auto;
    box-shadow: none;
}
.booking-checkout-layout {
    display: grid;
    grid-template-columns: minmax(320px, 400px) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}
.booking-checkout-left,
.booking-checkout-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.booking-checkout-left {
    position: sticky;
    top: 20px;
}
.booking-checkout-hero {
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}
.booking-checkout-photo-wrap {
    width: 100%;
    height: 210px;
    background: var(--gray-100);
}
.booking-checkout-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.booking-checkout-photo--airline-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f7f8fb 0%, #eceff5 100%);
    padding: 24px;
}
.booking-checkout-airline-logo {
    max-width: min(68%, 260px);
    max-height: 84px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 16px rgba(15, 23, 42, 0.10));
}
.booking-checkout-airline-fallback {
    width: 100%;
    height: 100%;
}
.booking-checkout-airline-fallback .booking-checkout-photo--placeholder {
    width: 100%;
    height: 100%;
}
.booking-checkout-photo--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f7f8fb 0%, #eceff5 100%);
    color: #7C8397;
}
.booking-checkout-fallback-icon {
    width: 58px;
    height: 58px;
}
.booking-checkout-title-wrap {
    padding: 12px 14px 14px;
}
.booking-checkout-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    margin: 4px 0;
    line-height: 1.2;
}
.booking-checkout-trip-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #EFF6FF;
    border: 1px solid #DBEAFE;
    color: #1D4ED8;
    font-size: 11px;
    font-weight: 700;
    margin-top: 2px;
}
.booking-checkout-sub {
    font-size: 13px;
    color: var(--gray-600);
    margin-top: 8px;
}
.booking-section-card {
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    background: #fff;
    padding: 18px;
}
.booking-section-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}
.booking-pay-hint {
    font-size: 12px;
    color: var(--gray-600);
    margin-bottom: 8px;
}
.booking-pay-fallback {
    background: #FFFBEB;
    border: 1px solid #FDE68A;
    color: #92400E;
    border-radius: 12px;
    font-size: 13px;
    padding: 12px;
}
.booking-pay-hotel {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #F0FDF4;
    border: 1.5px solid #86EFAC;
    border-radius: 14px;
    padding: 16px 18px;
}
.booking-pay-hotel-icon {
    font-size: 28px;
    flex-shrink: 0;
    line-height: 1;
}
.booking-pay-hotel-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #14532D;
    margin-bottom: 4px;
}
.booking-pay-hotel-text p {
    font-size: 13px;
    color: #166534;
    line-height: 1.5;
    margin: 0;
}
.booking-payment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}
.booking-payment-badges span {
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-600);
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    padding: 4px 8px;
}
.booking-policy-card { background: #fffdf8; border-color: #fde68a; }
.booking-policy-list {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 7px;
    color: var(--gray-600);
    font-size: 13px;
}
.booking-credibility-card {
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    background: #fff;
    padding: 16px;
}
.booking-credibility-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
}
.booking-cred-item {
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 9px 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: #fcfcff;
}
.booking-cred-icon-svg {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    color: #1F2937;
    opacity: 0.88;
    margin-top: 1px;
}
.booking-cred-icon-svg svg {
    width: 100%;
    height: 100%;
    display: block;
}
.booking-cred-item strong { font-size: 12px; color: var(--dark); display: block; line-height: 1.25; }
.booking-cred-item small { font-size: 11px; color: var(--gray-600); line-height: 1.25; display: block; margin-top: 2px; }
.booking-step-subtitle {
    margin-top: -2px;
    margin-bottom: 20px;
    color: var(--gray-600);
    line-height: 1.45;
    max-width: 760px;
    padding-left: 58px;
}
.booking-page-shell .modal-title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 6px;
    padding-left: 58px;
}
.booking-page-shell .modal-close {
    top: 18px;
    left: 18px;
    right: auto;
    width: 40px;
    height: 40px;
    border: 1px solid var(--gray-200);
    background: #fff;
    color: #111827;
    border-radius: 999px;
    z-index: 4;
}
.booking-back-icon {
    width: 20px;
    height: 20px;
    display: block;
}
.booking-policy-card {
    background: #fff;
    border-color: var(--gray-200);
}
.booking-label { font-size: 12px; font-weight: 600; color: var(--gray-600); margin-bottom: 5px; display: block; margin-top: 10px; }
.booking-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* ── Country Picker ────────────────────────────────────────── */
.country-picker-wrap { position: relative; }
.country-picker-display {
    width: 100%; padding: 12px 14px;
    border: 1.5px solid var(--gray-200); border-radius: 10px;
    font-size: 14px; font-family: inherit; background: #fff;
    display: flex; align-items: center; gap: 8px; cursor: pointer;
    user-select: none; transition: border-color 0.18s;
}
.country-picker-display:focus, .country-picker-display.is-open { border-color: var(--amber); outline: none; }
.cp-flag { font-size: 18px; line-height: 1; flex-shrink: 0; }
.cp-name { flex: 1; color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cp-name.placeholder { color: #9999A5; }
.cp-arrow { width: 16px; height: 16px; flex-shrink: 0; color: var(--gray-600); transition: transform 0.18s; }
.country-picker-display.is-open .cp-arrow { transform: rotate(180deg); }
.country-picker-dropdown {
    position: absolute; top: calc(100% + 4px); left: 0; right: 0; z-index: 999;
    background: #fff; border: 1.5px solid var(--gray-200); border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.13); overflow: hidden;
}
.cp-search {
    width: 100%; padding: 10px 14px; border: none; border-bottom: 1px solid var(--gray-200);
    font-size: 14px; font-family: inherit; outline: none; background: #fafafa;
}
.cp-list { max-height: 220px; overflow-y: auto; }
.cp-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; cursor: pointer; font-size: 14px; transition: background 0.12s;
}
.cp-item:hover, .cp-item.is-active { background: #FFF8EC; }
.cp-item .cp-item-flag { font-size: 18px; flex-shrink: 0; }
.cp-item .cp-item-name { flex: 1; }
.cp-item .cp-item-code { font-size: 12px; color: var(--gray-600); font-weight: 600; }

/* ── Country Picker Overlay (full-screen sheet) ─── */
#cpOverlay {
    display: none; position: fixed; inset: 0; z-index: 99999;
    background: rgba(0,0,0,0.45); align-items: flex-end; justify-content: center;
}
#cpSheet {
    background: #fff; width: 100%; max-width: 520px; border-radius: 20px 20px 0 0;
    max-height: 70vh; display: flex; flex-direction: column; overflow: hidden;
}
#cpSheetHeader {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 16px; border-bottom: 1px solid var(--gray-200);
}
#cpSheetSearch {
    flex: 1; padding: 9px 12px; border: 1.5px solid var(--gray-200);
    border-radius: 10px; font-size: 15px; font-family: inherit; outline: none;
}
#cpSheetSearch:focus { border-color: var(--amber); }
#cpSheetClose {
    background: none; border: none; font-size: 18px; cursor: pointer;
    color: var(--gray-600); padding: 4px 8px; border-radius: 8px;
}
#cpSheetList { flex: 1; overflow-y: auto; padding: 6px 0; }
.booking-center-state { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 220px; text-align: center; }
.booking-guest-summary { margin-bottom: 12px; }
.booking-mini-card {
    border: 1px solid var(--gray-200);
    background: var(--gray-100);
    border-radius: 12px;
    padding: 12px 14px;
}
.booking-mini-hotel { font-size: 14px; font-weight: 700; color: var(--dark); }
.booking-mini-meta { font-size: 12px; color: var(--gray-600); margin-top: 2px; }
.booking-mini-total { font-size: 18px; font-weight: 800; color: var(--dark); margin-top: 6px; }
.booking-spinner {
    width: 44px; height: 44px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--amber);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.booking-ref-tag {
    display: inline-block;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    font-family: monospace;
    margin-top: 8px;
}
.booking-payment-layout { margin-bottom: 16px; }
.booking-stripe-box {
    border: 1.5px solid var(--gray-200);
    border-radius: 14px;
    background: var(--white);
    padding: 14px;
}
.bsc {
    background: var(--gray-100);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.bsc-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 13px;
    gap: 12px;
}
.bsc-row span:last-child { text-align: right; max-width: 60%; }
.bsc-label { color: var(--gray-600); flex-shrink: 0; }
.bsc-total { border-top: 1px solid var(--gray-200); padding-top: 8px; margin-top: 4px; font-weight: 700; font-size: 15px; }

.booking-pro-summary {
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
}
.booking-pro-summary.is-compact .booking-pro-grid {
    grid-template-columns: 1fr;
}
.booking-pro-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--gray-200);
    background: linear-gradient(180deg, #FFFFFF 0%, #FBFCFF 100%);
}
.booking-pro-kicker {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-600);
}
.booking-pro-hotel { font-size: 20px; font-weight: 800; color: var(--dark); margin: 4px 0 4px; line-height: 1.2; }
.booking-pro-room { font-size: 13px; color: var(--gray-600); }
.booking-pro-status {
    font-size: 11px;
    font-weight: 700;
    color: #0F766E;
    background: #CCFBF1;
    border-radius: 999px;
    padding: 5px 10px;
    white-space: nowrap;
}
.booking-pro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 14px 16px;
}
.booking-pro-card {
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 12px;
    background: #fff;
}
.booking-pro-card h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}
.booking-pro-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
    color: var(--dark);
    padding: 5px 0;
}
.booking-pro-row span { color: var(--gray-600); }
.booking-pro-row strong { color: var(--dark); text-align: right; }
.booking-pro-row.total {
    margin-top: 5px;
    padding-top: 9px;
    border-top: 1px solid var(--gray-200);
    font-weight: 800;
}
.booking-pro-row.total span,
.booking-pro-row.total strong {
    color: var(--dark);
    font-size: 15px;
}
.booking-pro-row.split strong { color: #0F766E; font-weight: 700; }
.booking-pro-note {
    margin-top: 8px;
    font-size: 12px;
    color: var(--gray-600);
    line-height: 1.4;
}
.booking-pro-policy {
    margin: 0 16px 10px;
    border-radius: 10px;
    padding: 9px 12px;
    font-size: 12px;
    font-weight: 600;
}
.booking-pro-policy.ok { background: #ECFDF5; color: #166534; }
.booking-pro-policy.warn { background: #FEF2F2; color: #991B1B; }
.booking-pro-footnote {
    margin: 0 16px 14px;
    font-size: 11px;
    color: var(--gray-600);
    line-height: 1.45;
}

/* Reservar button in rate row */
.sd-rate-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.sd-rate-book-btn {
    padding: 9px 18px;
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.18s, transform 0.15s;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 6px;
}
.sd-rate-book-btn::after { content: '→'; font-size: 14px; }
.sd-rate-book-btn:hover { background: var(--amber); }

/* Legacy hero (app download section) */
.hero { padding: 80px 24px 60px; background: linear-gradient(160deg, var(--white) 40%, rgba(53,119,187,0.06) 100%); text-align: center; }
.hero-icon { width: 80px; height: 80px; margin: 0 auto 24px; border-radius: 20px; box-shadow: 0 8px 32px rgba(53,119,187,0.18); }
.hero h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; line-height: 1.15; margin-bottom: 16px; color: var(--dark); }
.hero h1 em { background: linear-gradient(135deg, #2a5f9e, #3577bb); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-style: normal; }
.hero p { font-size: 17px; color: var(--gray-600); max-width: 520px; margin: 0 auto 36px; line-height: 1.7; }
.store-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.store-btn { display: inline-block; transition: opacity 0.2s; }
.store-btn:hover { opacity: 0.8; }
.store-btn img { height: 50px; }

/* ── Stays Hero ────────────────────────────────── */
.hero-stays {
    position: relative;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image:
        linear-gradient(to bottom, rgba(15,18,35,0.35) 0%, rgba(15,18,35,0.10) 35%, rgba(15,18,35,0.55) 75%, rgba(15,18,35,0.80) 100%),
        url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1920&q=85&auto=format&fit=crop');
    background-size: cover;
    background-position: center 60%;
    overflow: visible;
    padding-top: 24px;
    padding-bottom: 6px;
    margin: 16px auto 0;
    max-width: 900px;
    width: calc(100% - 96px);
    border-radius: 24px;
    transition: padding 0.35s ease, background-color 0.35s ease;
}

/* ── Collapsed state: hero shrinks to just the search bar ── */
.hero-stays.hero-collapsed {
    min-height: 0 !important;
    padding-top: 16px;
    padding-bottom: 0;
    margin-top: 8px;
    background-image:
        linear-gradient(to bottom, rgba(15,18,35,0.97) 0%, rgba(15,18,35,0.97) 100%),
        url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1920&q=85&auto=format&fit=crop');
    background-position: center 60%;
    border-radius: 16px;
}
.hero-stays.hero-collapsed.hero-flights {
    background-image:
        linear-gradient(to bottom, rgba(15,18,35,0.97) 0%, rgba(15,18,35,0.97) 100%),
        url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1920&q=85&auto=format&fit=crop');
}

.hero-stays.hero-flights {
    background-image:
        linear-gradient(to bottom, rgba(8,18,42,0.40) 0%, rgba(8,18,42,0.12) 35%, rgba(8,18,42,0.58) 75%, rgba(8,18,42,0.80) 100%),
        url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1920&q=85&auto=format&fit=crop');
    background-position: center 40%;
}

.hero-stays-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 16px 24px 12px;
    text-align: center;
    /* Animate out when hero collapses */
    overflow: hidden;
    max-height: 500px;
    opacity: 1;
    transition: max-height 0.3s ease,
                opacity 0.2s ease,
                padding 0.3s ease;
}
.hero-collapsed .hero-stays-content {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    pointer-events: none;
}

.hero-stays-eyebrow {
    display: inline-block;
    background: rgba(53,119,187,0.22);
    color: rgba(255,255,255,0.92);
    border: 1px solid rgba(53,119,187,0.45);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-stays-title {
    font-size: clamp(22px, 3.2vw, 40px);
    font-weight: 800;
    line-height: 1.12;
    color: var(--white);
    margin-bottom: 8px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-flights .hero-stays-title {
    font-size: clamp(20px, 2.8vw, 36px);
    margin-bottom: 6px;
}

.hero-flights .hero-stays-sub {
    font-size: 13px;
}

.hero-stays-title em {
    background: linear-gradient(135deg, #b7cd00, #3577bb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
}

.hero-stays-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.78);
    max-width: 480px;
    line-height: 1.5;
    margin: 0 auto;
}

.features { padding: 80px 24px; background: var(--gray-100); }
.features-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.features-inner h2 { font-size: 32px; font-weight: 800; margin-bottom: 8px; }
.features-inner h2 em { color: var(--amber); font-style: normal; }
.features-subtitle { color: var(--gray-600); font-size: 16px; margin-bottom: 48px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.feature-card { background: var(--white); border-radius: 16px; padding: 28px 24px; text-align: left; transition: transform 0.2s, box-shadow 0.2s; border: 1px solid var(--gray-200); }
.feature-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.feature-emoji { font-size: 28px; margin-bottom: 12px; }
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.feature-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

.how-it-works { padding: 80px 24px; }
.how-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.how-inner h2 { font-size: 32px; font-weight: 800; margin-bottom: 48px; }
.how-inner h2 em { color: var(--amber); font-style: normal; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step-num { width: 44px; height: 44px; background: var(--amber); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 800; margin: 0 auto 14px; }
.step h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.step p { font-size: 13px; color: var(--gray-600); }

.download-cta { padding: 80px 24px; background: var(--dark); text-align: center; color: var(--white); margin-top: 140px; }
.download-cta h2 { font-size: 32px; font-weight: 800; margin-bottom: 10px; }
.download-cta h2 em { color: var(--amber); font-style: normal; }
.download-cta p { color: var(--gray-400); font-size: 15px; max-width: 440px; margin: 0 auto 28px; }

footer { background: var(--dark-2); color: var(--gray-400); padding: 40px 24px 20px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-brand-name { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.footer-brand-full-logo { height: 30px; width: auto; display: block; }
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 300px; }
.footer-col h4 { color: var(--white); font-size: 13px; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col a { display: block; font-size: 13px; color: var(--gray-400); margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: var(--amber); }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding-top: 20px; margin-top: 28px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12px; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: var(--gray-400); transition: color 0.2s; font-size: 12px; }
.footer-legal a:hover { color: var(--amber); }

.stays-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px;
}

.stays-filter-bar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 14px;
}
.stays-filter-controls {
    display: grid;
    grid-template-columns: repeat(3, minmax(160px, 1fr)) auto;
    gap: 10px;
    align-items: end;
    width: 100%;
}
.stays-filter-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.stays-filter-field label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--gray-600);
    text-transform: uppercase;
}
.stays-filter-field input,
.stays-filter-field select {
    height: 40px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 0 11px;
    font-size: 14px;
    color: var(--dark);
    background: #fff;
    font-family: inherit;
}
.stays-filter-clear {
    height: 40px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    background: #fff;
    color: var(--dark);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 0 14px;
}
.stays-filter-clear:hover {
    background: var(--gray-100);
}
.stays-result-count {
    min-width: 132px;
    text-align: right;
    font-size: 13px;
    color: var(--gray-600);
    font-weight: 600;
}

.stays-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.stay-card {
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #D7DFEE;
    transition: box-shadow 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
    box-shadow: 0 2px 10px rgba(26, 32, 56, 0.05);
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: 176px;
}

.stay-card:hover {
    border-color: #8AADE8;
    box-shadow: 0 10px 30px rgba(38, 86, 160, 0.14);
    transform: translateY(-1px);
}

.stay-card-img {
    position: relative;
    height: 100%;
}

.stay-card-img img {
    position: absolute;
    inset: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    object-fit: cover;
    border-radius: 18px;
}

.stay-card-img .fav-btn {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(255,255,255,0.95);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    color: var(--dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    z-index: 2;
}

.stay-card-body {
    padding: 16px 20px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 18px;
    align-items: stretch;
}

.stay-card-body h3 {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    margin: 2px 0 4px;
    letter-spacing: -0.01em;
}

.stay-card-body .location {
    font-size: 13px;
    color: #4B5A83;
    margin-bottom: 0;
    max-width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 7px;
}

.stay-card-body .location .ui-pin-icon {
    width: 14px;
    height: 14px;
    color: #7A86A4;
    flex-shrink: 0;
}

.stay-card-body .location span:last-child {
    min-width: 0;
    overflow: hidden;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.35;
}

.stay-card-main {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stay-stars {
    color: #FF8A1E;
    letter-spacing: 2px;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 4px;
}

.stay-meta-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
}

.stay-distance,
.stay-cancel {
    font-size: 11px;
    margin-top: 0;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 2px 8px;
    white-space: nowrap;
}

.stay-distance {
    color: #4B5A83;
    background: #F2F5FB;
}

.stay-cancel {
    color: #0C8B42;
    background: #EAF8F1;
    font-weight: 700;
}

.stay-card-price {
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 6px;
}

.stay-meta-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.stay-meta-rating-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-align: right;
}

.stay-meta-rating-text strong {
    font-size: 14px;
    color: #2E344A;
}

.stay-meta-rating-text span {
    font-size: 11px;
    color: #5F6880;
    font-weight: 600;
}

.stay-meta-score {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #12B76A;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
}

.stay-card-price .discount-badge {
    background: #15A55A;
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 8px;
}

.stay-price-wrap {
    margin-bottom: 4px;
}

.stay-old-price {
    text-decoration: line-through;
    color: #5B6484;
    font-size: 14px;
    opacity: 0.78;
    line-height: 1;
    margin-bottom: 2px;
    font-weight: 530;
}

.stay-new-price {
    color: #0E1530;
    font-size: 26px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.stay-new-price span {
    font-size: 50%;
    color: #555E79;
    font-weight: 650;
    letter-spacing: 0;
}

.stay-card-price .total {
    font-size: 11px;
    color: #4F5976;
    margin-top: 1px;
    margin-bottom: 6px;
    font-weight: 560;
    max-width: 210px;
}

.stay-view-btn {
    border: 0;
    background: #3A8BE7;
    color: var(--white);
    padding: 9px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background .18s ease;
    margin-top: auto;
}

.stay-view-btn:hover {
    background: #2F79CB;
}

.search-container {
    background: transparent;
    padding: 0 20px 0;
    position: relative;
    z-index: 10;
    margin-bottom: 0;
    transform: translateY(34%);
    transition: padding 0.3s ease;
}
.hero-collapsed .search-container {
    padding-bottom: 28px;
    transform: translateY(0);
}

/* ════════════════════════════════════════════════════
   STAYS SEARCH FORM  — card style (not pill)
   ════════════════════════════════════════════════════ */
#stays-search-form {
    /* Override the shared pill styles */
    display: flex;
    flex-direction: column !important;
    align-items: stretch !important;
    max-width: 760px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.26), 0 4px 20px rgba(0,0,0,0.10);
    border: none;
    overflow: visible;
    position: relative;
    z-index: 10;
    padding: 0;
}
#stays-search-form::before { display: none; }

/* Row 1 — Destination */
.ssf-destination-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 24px 18px;
    border-bottom: 1.5px solid var(--gray-100);
    position: relative;
}
.ssf-dest-icon {
    color: var(--amber);
    flex-shrink: 0;
    line-height: 0;
}
.ssf-dest-input {
    flex: 1;
    border: none !important;
    outline: none !important;
    background: transparent !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: var(--dark) !important;
    font-family: inherit !important;
    padding: 0 !important;
    border-radius: 0 !important;
    line-height: 1.3;
}
.ssf-dest-input::placeholder { color: var(--gray-400); font-weight: 400; font-size: 17px; }
.ssf-clear-btn {
    background: var(--gray-200);
    border: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
    color: var(--gray-600);
    display: none;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
}
.ssf-clear-btn.visible { display: flex; }

/* Row 2 — Dates, Guests, Button */
.ssf-bottom-row {
    display: flex;
    align-items: center;
    padding: 14px 14px 14px 24px;
    gap: 0;
}
.ssf-field {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    padding: 4px 16px 4px 0;
    cursor: pointer;
    border-radius: 12px;
    transition: background 0.1s ease;
    min-width: 0;
}
.ssf-field:hover { background: #fafbfc; }
.ssf-field-label {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--dark);
    white-space: nowrap;
}
.ssf-field-value {
    border: none !important;
    outline: none !important;
    background: transparent !important;
    padding: 0 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: var(--dark) !important;
    font-family: inherit !important;
    cursor: pointer;
    border-radius: 0 !important;
}
.ssf-field-value::placeholder { color: var(--gray-400); font-weight: 400; }
.ssf-guests-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    border: none;
    background: transparent;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    font-family: inherit;
    cursor: pointer;
    text-align: left;
    width: 100%;
}
.ssf-guests-btn:hover, .ssf-guests-btn:focus { outline: none; }
.ssf-sep {
    width: 1px;
    height: 32px;
    background: var(--gray-200);
    flex-shrink: 0;
    margin: 0 4px;
}
.ssf-submit-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--amber);
    color: var(--white);
    border: none;
    border-radius: 16px;
    padding: 14px 22px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: 12px;
    box-shadow: 0 4px 18px rgba(53,119,187,0.42);
    transition: background 0.12s ease, box-shadow 0.12s ease;
    white-space: nowrap;
}
.ssf-submit-btn:hover {
    background: #e06800;
    box-shadow: 0 4px 18px rgba(53,119,187,0.46);
}

/* Override shared form rules that might bleed into stays */
#stays-search-form .ssf-dest-input,
#stays-search-form .ssf-field-value {
    border-radius: 0 !important;
}

/* Mobile */
@media (max-width: 768px) {
    #stays-search-form {
        border-radius: 20px;
        max-width: 100%;
    }
    .ssf-destination-row { padding: 16px 18px 14px; }
    .ssf-dest-input { font-size: 16px !important; }
    .ssf-bottom-row {
        flex-wrap: wrap;
        padding: 10px 14px 14px;
        gap: 0;
    }
    /* Check-in y Check-out: cada uno ocupa el 50% de la fila */
    .ssf-field--checkin,
    .ssf-field--checkout {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 6px 8px 6px 0;
    }
    /* Huéspedes: fila completa debajo */
    .ssf-field--guests {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 6px 0 2px;
        border-top: 1px solid var(--gray-200);
        margin-top: 6px;
    }
    .ssf-field-value {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .ssf-guests-btn {
        white-space: nowrap;
    }
    .ssf-sep { display: none; }
    .ssf-submit-btn { width: 100%; margin: 10px 0 0; justify-content: center; border-radius: 14px; }
}

/* ── Search breadcrumb ────────────────────────────── */
.search-breadcrumb {
    max-width: 980px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
}
.sb-sep { color: rgba(255,255,255,0.35); }
.sb-link { cursor: default; }
.sb-current { color: rgba(255,255,255,0.95); font-weight: 600; }

.stay-detail {
    max-width: 1200px;
    margin: 28px auto 0;
    padding: 0 24px;
    display: none;
}

/* ── Stay Detail Card ─────────────────────────────── */
.sd-card {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    overflow: clip;
    box-shadow: 0 4px 32px rgba(0,0,0,0.07);
}

.sd-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid var(--gray-200);
    background: var(--white);
}

.sd-back {
    background: none;
    border: 1.5px solid var(--gray-200);
    border-radius: 100px;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: background 0.18s;
}
.sd-back:hover { background: var(--gray-100); }

.sd-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    background: rgba(255,255,255,0.9);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    transition: background 0.2s;
}
.sd-close:hover { background: var(--gray-200); }

/* Gallery */
.sd-gallery { display: flex; gap: 6px; height: 320px; overflow: hidden; position: relative; }
.sd-gallery-main { flex: 2; width: 0; object-fit: cover; }
.sd-gallery-thumbs { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.sd-gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.sd-photo-count {
    position: absolute;
    right: 12px;
    bottom: 12px;
    border: 0;
    background: rgba(0,0,0,0.63);
    color: #fff;
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.sd-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin: 2px 0 16px;
    padding-bottom: 4px;
}
.sd-tab-btn {
    border: 1px solid var(--gray-200);
    background: #fff;
    color: var(--gray-600);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
}
.sd-tab-btn.is-active {
    border-color: #1D6FD8;
    color: #1D6FD8;
    background: rgba(29,111,216,0.08);
}
.sd-tab-btn--ai {
    color: #C026D3;
    border-color: #F2C6F8;
    background: #fff8ff;
}
.sd-tab-btn--ai span {
    font-size: 10px;
    margin-left: 5px;
    border: 1px solid #F2C6F8;
    border-radius: 999px;
    padding: 1px 6px;
}

.sd-rating-line {
    font-size: 13px;
    color: var(--gray-600);
    margin-top: 4px;
}

/* ── Map inline link ────────────────────────────────── */
.sd-map-inline-btn {
    background: none;
    border: none;
    padding: 0;
    margin-left: 8px;
    color: #1D6FD8;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    white-space: nowrap;
    font-family: inherit;
}
.sd-map-inline-btn:hover { color: #1558b0; }

/* ── Location section (simple address block) ─────── */
.sd-location-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.sd-location-addr-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #374151;
}
.sd-location-map-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    background: none;
    border: 1.5px solid #1D6FD8;
    color: #1D6FD8;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 10px;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.18s, color 0.18s;
    white-space: nowrap;
}
.sd-location-map-btn:hover { background: #1D6FD8; color: #fff; }

/* ── Full-screen map modal ───────────────────────── */
.sd-map-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99998;
    background: #000;
    flex-direction: column;
}
.sd-map-modal.is-open { display: flex; }
.sd-map-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 17px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,.25);
    color: #374151;
}
.sd-map-modal-close:hover { background: #F3F4F6; }
.sd-map-container {
    flex: 1;
    width: 100%;
    min-height: 0;
}

/* Price bubble markers */
.sd-map-bubble {
    cursor: pointer;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.3));
    transition: transform 0.15s;
}
.sd-map-bubble span {
    display: block;
    background: #fff;
    color: #111827;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
    border: 1.5px solid rgba(0,0,0,.08);
    box-shadow: 0 2px 8px rgba(0,0,0,.18);
    position: relative;
}
.sd-map-bubble span::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    border: 7px solid transparent;
    border-top-color: #fff;
    border-bottom: none;
}
.sd-map-bubble--active span {
    background: #1D6FD8;
    color: #fff;
}
.sd-map-bubble--active span::after {
    border-top-color: #1D6FD8;
}
.sd-map-bubble:hover { transform: scale(1.06); }

.sd-map-bubble--current .sd-map-current-photo-wrap {
    width: 62px;
    height: 48px;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    border: 2px solid #1D6FD8;
    border-bottom: none;
    box-shadow: 0 3px 10px rgba(0,0,0,.28);
    background: #fff;
    margin: 0 auto;
}
.sd-map-bubble--current .sd-map-current-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sd-map-bubble--current span {
    margin-top: -1px;
    border: 2px solid #1D6FD8;
    border-radius: 0 0 14px 14px;
    padding-top: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,.28);
}

/* Hotel card that appears at bottom of map on marker click */
.sd-map-hotel-card {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: calc(100% - 32px);
    max-width: 420px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,.22);
    animation: mapCardIn 0.22s ease;
}
@keyframes mapCardIn {
    from { transform: translateX(-50%) translateY(20px); opacity: 0; }
    to   { transform: translateX(-50%) translateY(0);    opacity: 1; }
}
.sd-map-card-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    cursor: pointer;
}
.sd-map-card-photo {
    width: 80px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}
.sd-map-card-info { flex: 1; min-width: 0; }
.sd-map-card-name {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sd-map-card-stars { font-size: 11px; color: #FBBF24; margin-bottom: 3px; }
.sd-map-card-score {
    background: #0D9F6E;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 6px;
}
.sd-map-card-price {
    font-size: 15px;
    font-weight: 800;
    color: #111827;
    margin-top: 4px;
}
.sd-map-card-price span { font-size: 12px; font-weight: 400; color: #6B7280; }
.sd-map-card-arrow { flex-shrink: 0; }

.mapboxgl-popup-content { font-family: 'Inter', sans-serif; font-size: 13px; border-radius: 10px; padding: 8px 12px; box-shadow: 0 4px 16px rgba(0,0,0,.15); }
.sd-embed-map-directions:hover { background: #1558b0; }

/* Price bubble marker (like app) */
.sd-map-price-bubble {
    cursor: pointer;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,.25));
}
.sd-map-price-inner {
    background: #1D6FD8;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 999px;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
    position: relative;
}
.sd-map-price-inner::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #1D6FD8;
    border-bottom: none;
}

/* ── Reviews Section ──────────────────────────────── */
.sdrev-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}
.sdrev-score-badge {
    padding: 8px 14px;
    border-radius: 14px;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    flex-shrink: 0;
}
.sdrev-word {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: #111827;
}
.sdrev-count {
    font-size: 13px;
    color: #6B7280;
    margin-top: 2px;
}
.sdrev-sub {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 10px;
}
.sdrev-highlights { margin-bottom: 20px; }
.sdrev-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.sdrev-chip {
    background: #E6F6EE;
    color: #0D6E47;
    border: 1px solid #B7E4C7;
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 13px;
    font-weight: 600;
}
/* Category progress bars */
.sdrev-cats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px 24px;
    margin-bottom: 20px;
}
.sdrev-cat-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 8px;
}
.sdrev-cat-name { font-size: 13px; color: #374151; }
.sdrev-cat-bar {
    width: 80px;
    height: 6px;
    background: #E5E7EB;
    border-radius: 999px;
    overflow: hidden;
}
.sdrev-cat-fill {
    height: 100%;
    background: #0D9F6E;
    border-radius: 999px;
}
.sdrev-cat-score { font-size: 13px; font-weight: 700; color: #111827; }

/* AI summary note */
.sdrev-ia-note {
    font-size: 12px;
    color: #6D28D9;
    font-weight: 500;
    margin: 0 0 20px;
}

/* Traveler breakdown */
.sdrev-traveler-section { margin-bottom: 24px; }
.sdrev-traveler-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.sdrev-traveler-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 60px;
}
.sdrev-traveler-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #F1F5F9;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sdrev-traveler-icon svg { width: 26px; height: 26px; color: #4B5563; }
.sdrev-traveler-label { font-size: 12px; font-weight: 600; color: #374151; }
.sdrev-traveler-item strong { font-size: 14px; font-weight: 800; color: #111827; }

/* Review cards horizontal scroll */
.sdrev-cards-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}
.sdrev-cards-scroll::-webkit-scrollbar { height: 4px; }
.sdrev-cards-scroll::-webkit-scrollbar-thumb { background: #D1D5DB; border-radius: 2px; }

.sdrev-card {
    flex-shrink: 0;
    width: 272px;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    padding: 14px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sdrev-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}
.sdrev-card-author strong {
    font-size: 14px;
    font-weight: 800;
    color: #111827;
    display: block;
}
.sdrev-card-type {
    font-size: 12px;
    color: #6B7280;
}
.sdrev-card-date {
    font-size: 11px;
    color: #9CA3AF;
    margin-top: 2px;
}
.sdrev-card-score {
    flex-shrink: 0;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    border-radius: 8px;
    padding: 3px 9px;
}
.sdrev-card-title {
    font-size: 13px;
    font-weight: 700;
    color: #1F2937;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sdrev-card-body {
    font-size: 12px;
    color: #4B5563;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Description section ─────────────────────────── */
.sd-desc-text {
    font-size: 14.5px;
    line-height: 1.65;
    color: #222;
}
.sd-desc-text p { margin: 0 0 12px; }
.sd-desc-text strong, .sd-desc-text b { font-weight: 700; }
.sd-desc-text h1, .sd-desc-text h2, .sd-desc-text h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 14px 0 4px;
}
.sd-desc-empty {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
    border-radius: 12px;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    font-size: 13px;
    color: #6B7280;
}
.sd-desc-empty svg { width: 18px; height: 18px; color: #9CA3AF; flex-shrink: 0; }

@media (max-width: 640px) {
    .sdrev-cats-grid { grid-template-columns: 1fr 1fr; }
    .sdrev-traveler-row { gap: 12px; }
}


.sd-ai-thread {
    max-height: 240px;
    overflow-y: auto;
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sd-ai-turn {
    border-radius: 12px;
    padding: 10px 12px;
}
.sd-ai-turn span {
    font-size: 11px;
    font-weight: 700;
    display: block;
    margin-bottom: 3px;
}
.sd-ai-turn p {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
}
.sd-ai-turn.is-user {
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
}
.sd-ai-turn.is-ai {
    background: #FBF5FF;
    border: 1px solid #F2C6F8;
}

.sd-ai-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 8px 0 10px;
}
.sd-ai-chip {
    border: 1px solid #E9D5FF;
    background: #fff;
    color: #7C3AED;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    cursor: pointer;
}

.sd-ai-input-row {
    display: flex;
    gap: 8px;
}
.sd-ai-input-row input {
    flex: 1;
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    padding: 10px 12px;
    font-size: 13px;
}
.sd-ai-input-row button {
    border: 0;
    background: #C026D3;
    color: #fff;
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}
.sd-ai-input-row button:disabled {
    opacity: .55;
    cursor: wait;
}
.sd-ai-note {
    margin-top: 8px;
    font-size: 11px;
    color: var(--gray-500);
}

/* Body */
.sd-body { padding: 24px 28px 32px; }

.sd-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.sd-stars { color: #F59E0B; font-size: 15px; margin-bottom: 4px; }
.sd-title { font-size: 24px; font-weight: 800; margin-bottom: 4px; }
.sd-address {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 4px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.sd-address .ui-pin-icon {
    width: 14px;
    height: 14px;
    color: #7A86A4;
    flex-shrink: 0;
}
.sd-chain { font-size: 13px; color: var(--amber); font-weight: 600; }

.sd-dates {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gray-100);
    border-radius: 100px;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}
.sd-arrow { color: var(--gray-400); }

.sd-checkin-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--gray-600);
    background: var(--gray-100);
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 20px;
}

.sd-section { margin-bottom: 24px; }
.sd-section-title { font-size: 16px; font-weight: 700; margin-bottom: 12px; color: var(--dark); }
.sd-desc { font-size: 14px; color: var(--gray-600); line-height: 1.7; }

/* Amenities */
.sd-amenities { display: flex; flex-wrap: wrap; gap: 8px; }
.sd-chip {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--dark);
}

/* Rooms */
.sd-rooms { display: flex; flex-direction: column; gap: 16px; }
.sd-room {
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 220px 1fr;
}
.sd-room-photo { width: 100%; height: 100%; object-fit: cover; }
.sd-room-photos { width: 220px; flex-shrink: 0; display: flex; flex-direction: column; gap: 4px; overflow: hidden; }
.sd-room-photos img { width: 100%; flex: 1; object-fit: cover; min-height: 0; }
.sd-room-info { padding: 16px 20px; }
.sd-room-name { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.sd-room-beds { font-size: 13px; color: var(--gray-600); margin-bottom: 14px; }

/* Rates inside a room — 3-column grid card design */
.sd-rate-list { display: flex; flex-direction: column; gap: 10px; }
.sd-rate {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    align-items: center;
    gap: 0;
    padding: 16px;
    background: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
}
.sd-rate:hover {
    border-color: var(--amber);
    box-shadow: 0 4px 12px rgba(53,119,187,0.12);
}
.sd-rate-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    padding-right: 20px;
    border-right: 1px solid #F0F1F3;
}
.sd-rate-board {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}
.sd-rate-badge {
    font-size: 12px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 8px;
    display: inline-block;
    width: fit-content;
}
.sd-rate-badge.free-cancel {
    background: #DCFCE7;
    color: #15803D;
}
.sd-rate-badge.no-cancel {
    background: #FEE2E2;
    color: #991B1B;
}
.sd-rate-conds {
    font-size: 13px;
    color: #6B7280;
}
.sd-rate-right {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
    padding: 0 20px;
    border-right: 1px solid #F0F1F3;
}
.sd-rate-price {
    text-align: left;
}
.sd-rate-price strong {
    font-size: 20px;
    font-weight: 800;
    display: block;
    color: #111827;
}
.sd-rate-price span {
    font-size: 13px;
    color: #6B7280;
}
.sd-rate-book-btn {
    background: #1D6FD8;
    color: var(--white);
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    transition: background 0.2s ease;
}
.sd-rate-book-btn:hover {
    background: #1558b0;
}
.sd-no-rooms { font-size: 14px; color: var(--gray-400); padding: 12px 0; }

@media (max-width: 640px) {
    .sd-gallery { height: 200px; }
    .sd-gallery-thumbs { display: none; }
    .sd-photo-count { bottom: 8px; right: 8px; }
    .sd-room { grid-template-columns: 1fr; }
    .sd-room-photo { height: 160px; width: 100%; }
    .sd-room-photos { width: 100%; height: 160px; flex-direction: row; }
    .sd-header { flex-direction: column; }
    .sd-map-wrap img { height: 170px; }
    .sd-ai-input-row { flex-direction: column; }
    .sd-ai-input-row button { width: 100%; }
    .sd-rate { grid-template-columns: 1fr; gap: 12px; }
    .sd-rate-left { border-right: none; border-bottom: 1px solid #F0F1F3; padding-right: 0; padding-bottom: 12px; }
    .sd-rate-right { border-right: none; border-bottom: 1px solid #F0F1F3; padding: 12px 0; }
    .sd-rate-book-btn { width: 100%; }
}

/* ── Search form — floating pill card ─────────────── */
#stays-search-form, #flights-search-form {
    display: flex;
    align-items: stretch;
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
    background: var(--white);
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.22), 0 4px 16px rgba(0,0,0,0.08);
    border: 1.5px solid rgba(255,255,255,0.95);
    overflow: visible;
    position: relative;
    z-index: 10;
}
#stays-search-form::before, #flights-search-form::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--white);
    border-radius: inherit;
    z-index: -1;
}

/* Each field inside the form */
.sf-field {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 14px 16px 12px;
    flex: 1;
    min-width: 0;
    position: relative;
    cursor: text;
    transition: background 0.15s;
    border-radius: 28px;
}
.sf-field:hover { background: #FFF8F3; }
.sf-field--destination { flex: 1.6; border-radius: 28px 0 0 28px; }
.sf-field--date { flex: 1; }
.sf-field--guests { flex: 1.1; cursor: pointer; }

.sf-field label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 5px;
    pointer-events: none;
    white-space: nowrap;
}

.sf-field input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    font-family: inherit;
    width: 100%;
    padding: 0;
    line-height: 1.4;
}
.sf-field input::placeholder { color: var(--gray-400); font-weight: 400; }
.sf-field input:focus { outline: none; }

/* Vertical divider between fields */
.sf-divider {
    width: 1px;
    background: var(--gray-200);
    align-self: stretch;
    margin: 12px 0;
    flex-shrink: 0;
}

/* ── Detail page: hotel header ──────────────────────── */
.sd-hotel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    padding: 20px 28px 16px;
    border-bottom: 1px solid var(--gray-200);
}
.sd-hotel-header-left { flex: 1; min-width: 0; }
.sd-rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}
.sd-rating-badge {
    background: #0D9F6E;
    color: #fff;
    border-radius: 10px;
    padding: 4px 10px;
    font-size: 14px;
    font-weight: 800;
}
.sd-rating-label {
    font-size: 13px;
    color: #374151;
}

/* ── Sticky nav (replaces old tab pills) ─────────────── */
.sd-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
}
.sd-nav-inner {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0 12px;
}
.sd-nav-inner::-webkit-scrollbar { display: none; }
.sd-nav-btn {
    border: none;
    background: none;
    color: #6B7280;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    padding: 14px 14px 12px;
    border-bottom: 2.5px solid transparent;
    transition: color 0.18s, border-color 0.18s;
    font-family: inherit;
}
.sd-nav-btn.is-active {
    color: #1D6FD8;
    font-weight: 700;
    border-bottom-color: #1D6FD8;
}
.sd-nav-btn--ai { color: #C026D3; }
.sd-nav-btn--ai.is-active { color: #C026D3; border-bottom-color: #C026D3; }
.sd-beta {
    font-size: 9px;
    border: 1px solid rgba(192,38,211,0.4);
    border-radius: 6px;
    padding: 1px 5px;
    vertical-align: middle;
    margin-left: 4px;
    font-weight: 700;
}

/* ── Body sections ────────────────────────────────── */
.sd-body { padding: 0; }
.sd-section {
    padding: 24px 28px;
    margin-bottom: 0;
}
.sd-section-divider {
    height: 8px;
    background: #F3F4F6;
}

/* ── AI Highlights ────────────────────────────────── */
.sd-highlights-block {
    margin-top: 20px;
}
.sd-highlights-block::before { display: none; }
.sd-highlights-hdr {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 14px;
}
.sd-highlights-title {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}
.sd-ai-label {
    font-size: 11px;
    color: #7C3AED;
}
.sd-highlights-list {
    display: flex;
    flex-direction: row;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
}
.sd-highlights-list::-webkit-scrollbar { display: none; }
.sd-highlight-skel {
    flex: 0 0 220px;
    height: 130px;
    border-radius: 16px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
}
@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.sd-highlight-card {
    flex: 0 0 220px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    border-radius: 16px;
    background: #fff;
    border: 1.5px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    position: relative;
    transition: box-shadow 0.18s, transform 0.18s;
}
.sd-highlight-card::before {
    content: '';
    position: absolute;
    inset: -1.5px;
    border-radius: 17px;
    background: linear-gradient(135deg, rgba(167,139,250,0.55) 0%, rgba(236,72,153,0.3) 100%);
    z-index: -1;
}
.sd-highlight-card:hover {
    box-shadow: 0 4px 20px rgba(124,58,237,0.15);
    transform: translateY(-2px);
}
.sd-highlight-icon {
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
}
.sd-highlight-title {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
}
.sd-highlight-body {
    font-size: 13px;
    color: #6B7280;
    line-height: 1.5;
}

/* ── Facilities grid (2-col) ─────────────────────── */
.sd-fac-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
}
.sd-fac-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #374151;
}
.sd-fac-item svg {
    width: 16px;
    height: 16px;
    color: #0D9F6E;
    flex-shrink: 0;
}

/* ── Room Cards – Booking.com-style horizontal ──────── */
.sd-room-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Outer card per room type */
/* ── Room cards — horizontal layout ─────────────────── */
.sd-room-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.sdrc-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    margin: 0 0 14px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}
.sdrc-card:first-child { border-top: 1px solid #E5E7EB; }

/* ── Hard size lock for ALL inline SVGs inside room cards ──
   Prevents oversized SVGs when global rules / cascading inline width/height
   on dynamically-injected markup get overridden by a parent flex container. */
.sdrc-card svg,
.sdrc-room-meta svg,
.sdrc-room-specs svg {
    max-width: 18px !important;
    max-height: 18px !important;
    width: auto;
    height: auto;
    flex-shrink: 0 !important;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
}
.sdrc-card .sdrc-btn svg {
    max-width: 22px !important;
    max-height: 22px !important;
}

/* Room card name (top of each card) */
.sdrc-name {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    padding: 14px 18px 10px;
    line-height: 1.35;
}
.sdrc-room-detail-label {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    padding: 12px 14px 4px;
}
.sdrc-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 4px 14px 10px;
}
.sdrc-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #4B5563;
}
.sdrc-meta svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #6B7280;
}
.sdrc-amenities {
    padding: 6px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.sdrc-amenities strong {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
}
.sdrc-amenities ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.sdrc-amenities li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #4B5563;
}
.sdrc-amenities li svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: #6B7280;
}
.sdrc-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    min-height: 220px;
}

/* ── Left col: carousel + room meta ── */
.sdrc-left {
    border-right: 1px solid #F3F4F6;
    display: flex;
    flex-direction: column;
    padding: 14px;
    gap: 10px;
}
.sdrc-carousel {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #F3F4F6;
    flex-shrink: 0;
    border-radius: 10px;
}
.sdrc-track {
    display: flex;
    height: 100%;
    transition: transform 0.28s ease;
}
.sdrc-track img {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sdrc-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,.45);
    color: #fff;
    border: none;
    font-size: 22px;
    line-height: 1;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.15s;
}
.sdrc-btn:hover { background: rgba(0,0,0,.7); }
.sdrc-prev { left: 6px; }
.sdrc-next { right: 6px; }
.sdrc-counter {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,.55);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.sdrc-room-meta {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.sdrc-room-name-left {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
}
.sdrc-room-specs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.sdrc-room-specs span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #6B7280;
}
.sdrc-room-specs span svg {
    width: 13px !important;
    height: 13px !important;
    min-width: 13px !important;
    min-height: 13px !important;
    max-width: 13px !important;
    max-height: 13px !important;
    flex-shrink: 0;
    color: #9CA3AF;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
}
.sdrc-room-specs span img,
.sdrc-room-specs span i,
.sdrc-room-specs span .material-icons,
.sdrc-room-specs span .material-symbols-outlined {
    width: 13px !important;
    height: 13px !important;
    min-width: 13px;
    min-height: 13px;
    max-width: 13px;
    max-height: 13px;
    font-size: 13px !important;
    line-height: 13px !important;
    flex-shrink: 0;
}
.sdrc-amenities-preview {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 2px;
}
.sdrc-amenities-label {
    font-size: 11px;
    font-weight: 700;
    color: #6B7280;
    margin-bottom: 2px;
}
.sdrc-amenity-row {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #374151;
}
.sdrc-amenity-row svg {
    width: 13px !important;
    height: 13px !important;
    min-width: 13px !important;
    min-height: 13px !important;
    max-width: 13px !important;
    max-height: 13px !important;
    flex-shrink: 0;
    overflow: hidden;
}
.sdrc-amenity-row img,
.sdrc-amenity-row i,
.sdrc-amenity-row .material-icons,
.sdrc-amenity-row .material-symbols-outlined {
    width: 13px !important;
    height: 13px !important;
    min-width: 13px;
    min-height: 13px;
    max-width: 13px;
    max-height: 13px;
    font-size: 13px !important;
    line-height: 13px !important;
    flex-shrink: 0;
}
.sdrc-details-link {
    background: none;
    border: none;
    padding: 0;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #1D6FD8;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.sdrc-details-link:hover { color: #1558b0; }

/* ── Right col: rate rows ── */
.sdrc-right {
    display: flex;
    flex-direction: column;
    padding: 14px;
    background: #F8FAFC;
}
.sdrc-rate-row {
    display: grid;
    grid-template-columns: minmax(260px, 1.3fr) minmax(230px, 1fr) minmax(200px, auto);
    gap: 0;
    align-items: center;
    padding: 0;
    border-bottom: 1px solid #F9FAFB;
}
.sdrc-rate-row:last-child { border-bottom: none; }
.sdrc-rate-row.is-hidden { display: none; }
.sdrc-no-rates {
    padding: 20px 18px;
    font-size: 13px;
    color: #9CA3AF;
}
.sdrc-toggle-rates {
    border: none;
    border-top: 1px solid #EEF2F7;
    background: #F9FAFB;
    color: #374151;
    font-size: 14px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-family: inherit;
    cursor: pointer;
    padding: 12px 14px;
}
.sdrc-toggle-rates:hover { color: #111827; background: #F3F4F6; }

/* Board-type rate groups inside a room card */
.sdrc-rate-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0;
}
.sdrc-rate-group + .sdrc-rate-group {
    border-top: 1px solid #F1F5F9;
    padding-top: 14px;
}
.sdrc-board-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 0 4px 2px;
    font-size: 12px;
    font-weight: 800;
    color: #111827;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}
.sdrc-board-count {
    font-size: 11px;
    font-weight: 600;
    color: #6B7280;
    text-transform: none;
    letter-spacing: 0;
}
/* Override flat row → make each rate row a rounded card */
.sdrc-rate-group .sdrc-rate-row,
.sdrc-right > .sdrc-rate-row {
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 0;
    background: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}
.sdrc-rate-group .sdrc-rate-row:last-child,
.sdrc-right > .sdrc-rate-row:last-child { border-bottom: 1px solid #E5E7EB; }
.sdrc-rate-group .sdrc-toggle-rates {
    border: 1px dashed #D1D5DB;
    border-radius: 10px;
    background: #fff;
    color: #1D6FD8;
    text-decoration: none;
    font-size: 13px;
    padding: 10px 14px;
    text-align: center;
    margin-top: 0;
}
.sdrc-right > .sdrc-toggle-rates {
    border: 1px dashed #D1D5DB;
    border-radius: 10px;
    background: #fff;
    color: #1D6FD8;
    text-decoration: none;
    font-size: 13px;
    padding: 10px 14px;
    text-align: center;
}
.sdrc-rate-group .sdrc-toggle-rates:hover { background: #F0F7FF; color: #1554A8; border-color: #1D6FD8; }
.sdrc-right > .sdrc-toggle-rates:hover { background: #F0F7FF; color: #1554A8; border-color: #1D6FD8; }
.sdrc-rate-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 22px;
}
.sdrc-rate-name {
    font-size: 17px;
    font-weight: 800;
    color: #111827;
}
.sdrc-rate-detail {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 15px;
    line-height: 1.28;
    color: #374151;
}
.sdrc-rate-detail svg { flex-shrink: 0; margin-top: 1px; width: 14px !important; height: 14px !important; max-width: 14px !important; max-height: 14px !important; overflow: hidden; }
.sdrc-rate-detail.ok { color: #15803D; }
.sdrc-rate-detail.ok svg { color: #15803D; }
.sdrc-rate-detail.warn { color: #9A3412; }
.sdrc-rate-detail.warn svg { color: #9A3412; }
.sdrc-rate-detail.neutral { color: #374151; }
/* Rate-row board / cancellation badges (added) */
.sdrc-rate-board,
.sdrc-rate-cancel {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #374151;
}
.sdrc-rate-board svg,
.sdrc-rate-cancel svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}
.sdrc-rate-cancel.is-free { color: #15803D; }
.sdrc-rate-cancel.is-free svg { color: #15803D; }
.sdrc-rate-cancel.is-no { color: #9A3412; }
.sdrc-rate-cancel.is-no svg { color: #9A3412; }

.sdrc-rate-price-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    min-width: 240px;
    border-left: 1px solid #E5E7EB;
    padding: 20px 24px;
}
.sdrc-discount-badge {
    background: #15803D;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    padding: 6px 11px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}
.sdrc-rate-price {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.05;
    color: #111827;
    white-space: nowrap;
}
.sdrc-rate-price span {
    font-size: 65%;
    font-weight: 400;
    color: #6B7280;
    margin-left: 4px;
}
.sdrc-old-price {
    font-size: 18px;
    font-weight: 500;
    color: #9CA3AF;
    text-decoration: line-through;
}
.sdrc-rate-nights {
    font-size: 13px;
    color: #6B7280;
    text-align: left;
    max-width: 260px;
}
.sdrc-rate-action {
    flex-shrink: 0;
    border-left: 1px solid #E5E7EB;
    padding: 20px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sdrc-book-btn {
    background: #1D6FD8;
    color: #fff;
    border: none;
    border-radius: 14px;
    min-width: 210px;
    min-height: 56px;
    padding: 0 22px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    transition: background 0.18s;
}
.sdrc-book-btn:hover { background: #1558b0; }

@media (max-width: 680px) {
    .sdrc-layout { grid-template-columns: 1fr; }
    .sdrc-left { border-right: none; border-bottom: 1px solid #F3F4F6; }
    .sdrc-carousel { height: 180px; }
    .sdrc-right { padding: 10px; }
    .sdrc-rate-group { gap: 10px; }
    .sdrc-rate-row { grid-template-columns: 1fr auto; gap: 10px; }
    .sdrc-rate-info,
    .sdrc-rate-price-col,
    .sdrc-rate-action { padding: 14px; }
    .sdrc-rate-price-col,
    .sdrc-rate-action { border-left: none; }
    .sdrc-rate-action { grid-column: 1 / -1; }
    .sdrc-book-btn { width: 100%; }
    .sdrc-rate-price-col { align-items: flex-start; }
    .sdrc-toggle-rates { text-align: left; }
    .rds-pop-grid { grid-template-columns: repeat(2, 1fr); }
    .rds-cat-grid { grid-template-columns: 1fr; }
}


.rds-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,.45);
    align-items: flex-end;
    justify-content: center;
}
.rds-overlay.is-open { display: flex; }
.rds-panel {
    width: 100%;
    max-width: 680px;
    max-height: 92vh;
    background: #fff;
    border-radius: 20px 20px 0 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: rdsSlideUp 0.28s cubic-bezier(0.16,1,0.3,1);
}
@keyframes rdsSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}
.rds-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 14px;
    border-bottom: 1px solid #F3F4F6;
    flex-shrink: 0;
}
.rds-header-title { font-size: 17px; font-weight: 800; color: #111827; }
.rds-close-btn {
    background: #F3F4F6; border: none; border-radius: 50%;
    width: 32px; height: 32px; font-size: 16px; cursor: pointer;
    display: flex; align-items: center; justify-content: center; color: #374151;
    flex-shrink: 0;
}
.rds-close-btn:hover { background: #E5E7EB; }
.rds-scroll { flex: 1; overflow-y: auto; }
.rds-gallery {
    position: relative; height: 260px;
    overflow: hidden; background: #F3F4F6;
}
.rds-gallery-track {
    display: flex; height: 100%;
    transition: transform 0.28s ease;
}
.rds-gallery-track img { flex-shrink: 0; width: 100%; height: 100%; object-fit: cover; }
.rds-gal-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    border: none; background: rgba(0,0,0,.45); color: #fff;
    font-size: 22px; width: 36px; height: 36px; border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 2;
}
.rds-gal-prev { left: 8px; }
.rds-gal-next { right: 8px; }
.rds-gal-counter {
    position: absolute; bottom: 10px; right: 12px;
    background: rgba(0,0,0,.55); color: #fff;
    font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 999px;
}
.rds-info { padding: 20px 20px 8px; }
.rds-room-name { font-size: 22px; font-weight: 800; color: #111827; margin: 0 0 12px; }
.rds-meta {
    display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid #F3F4F6;
}
.rds-meta span {
    display: flex; align-items: center; gap: 5px;
    font-size: 13px; color: #374151;
}
.rds-meta span svg,
.rds-pop-item svg,
.rds-cat-title svg,
.rds-meta span img,
.rds-pop-item img,
.rds-cat-title img,
.rds-meta span i,
.rds-pop-item i,
.rds-cat-title i,
.rds-meta span .material-icons,
.rds-pop-item .material-icons,
.rds-cat-title .material-icons,
.rds-meta span .material-symbols-outlined,
.rds-pop-item .material-symbols-outlined,
.rds-cat-title .material-symbols-outlined {
    width: 14px !important;
    height: 14px !important;
    min-width: 14px;
    min-height: 14px;
    max-width: 14px;
    max-height: 14px;
    font-size: 14px !important;
    line-height: 14px !important;
    flex-shrink: 0;
}
.rds-description {
    font-size: 13px; color: #4B5563; line-height: 1.6; margin: 0 0 12px;
}
.rds-divider { height: 1px; background: #F3F4F6; margin: 4px 0; }

/* Popular services */
.rds-pop-section { padding: 14px 20px 8px; }
.rds-pop-title {
    font-size: 14px; font-weight: 700; color: #111827; margin-bottom: 10px;
}
.rds-pop-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.rds-pop-item {
    display: flex; align-items: center; gap: 6px;
    font-size: 12px; color: #374151;
}

/* Categorized amenity sections */
.rds-cats { padding: 8px 20px 20px; }
.rds-cat-section { margin-bottom: 16px; }
.rds-cat-title {
    display: flex; align-items: center; gap: 6px;
    font-size: 14px; font-weight: 700; color: #111827;
    margin-bottom: 8px;
}
.rds-cat-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 5px 16px;
}
.rds-cat-item {
    font-size: 12px; color: #374151; padding: 2px 0;
}

/* ── Bottom sticky cheapest-price bar ──────────────── */
.sd-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: #fff;
    border-top: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.10);
    display: none; /* shown via JS */
}
.sd-bottom-info {
    display: flex;
    align-items: baseline;
    gap: 5px;
    font-size: 14px;
    color: #374151;
}
.sd-bottom-info strong {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
}
.sd-bottom-btn {
    border: none;
    background: #1D6FD8;
    color: #fff;
    border-radius: 12px;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.18s;
}
.sd-bottom-btn:hover { background: #1A5EBF; }

@media (max-width: 640px) {
    .sd-fac-grid { grid-template-columns: 1fr; }
    .sd-hotel-header { padding: 16px 16px 12px; }
    .sd-section { padding: 18px 16px; }
    .sd-bottom-bar { padding: 10px 16px 14px; }
    .sd-nav-btn { padding: 12px 10px 10px; font-size: 12px; }
}

/* Guests button — no border, matches field style */
.guests-dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    height: auto;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    text-align: left;
    transition: none;
    font-family: inherit;
}
.guests-dropdown-btn:hover, .guests-dropdown-btn:focus { border-color: transparent; outline: none; }
.guests-dropdown-btn svg { color: var(--gray-400); flex-shrink: 0; transition: transform 0.18s; }

/* Search icon button — amber pill on the right */
.search-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    min-width: 62px;
    margin: 10px 10px 10px 6px;
    background: var(--amber);
    color: var(--white);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(53,119,187,0.4);
}
.search-submit:hover {
    background: #e06800;
    transform: scale(1.06);
    box-shadow: 0 6px 22px rgba(53,119,187,0.5);
}
.search-submit svg { pointer-events: none; }

#stays-search-form .form-group, #flights-search-form .form-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 14px 20px 12px;
    flex: 1;
    min-width: 0;
    position: relative;
}

#stays-search-form label, #flights-search-form label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 3px;
    line-height: 1.2;
}

#stays-search-form input, #flights-search-form input {
    padding: 0;
    border: none;
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    background: transparent;
    outline: none;
}
#stays-search-form input::placeholder, #flights-search-form input::placeholder { color: var(--gray-400); font-weight: 400; }

.input-with-action {
    position: relative;
}

.input-with-action input {
    width: 100%;
    padding-right: 42px;
}

.clear-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: var(--gray-600);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    padding: 4px;
}

.location-suggestions {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    z-index: 30;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    max-height: 260px;
    overflow-y: auto;
    display: none;
}

.suggestion-item {
    width: 100%;
    text-align: left;
    border: 0;
    background: transparent;
    padding: 10px 12px;
    font-size: 13px;
    color: var(--dark);
    cursor: pointer;
}

.suggestion-item:hover {
    background: var(--gray-100);
}

.stay-card {
    cursor: pointer;
}

.stay-card:focus {
    outline: 2px solid var(--amber);
    outline-offset: 2px;
}

/* search-submit already defined in the sf-field block above */

main {
    padding-top: 0;
    margin-top: -2px;
}

@media (max-width: 768px) {
    main { padding-top: 0; }
    .stay-card {
        grid-template-columns: 1fr;
        border-radius: 18px;
        min-height: 0;
    }
    .stay-card-img {
        min-height: 220px;
    }
    .stay-card-img img {
        inset: 8px;
        width: calc(100% - 16px);
        height: calc(100% - 16px);
        border-radius: 14px;
    }
    .stay-card-img .fav-btn {
        top: 16px;
        left: 16px;
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
    .stay-card-body {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 14px 16px 18px;
    }
    .stay-card-body h3 {
        font-size: 19px;
        margin: 2px 0 4px;
    }
    .stay-card-body .location,
    .stay-distance,
    .stay-cancel {
        font-size: 13px;
        max-width: 100%;
    }
    .stay-meta-line {
        gap: 6px;
        margin-top: 2px;
    }
    .stay-distance,
    .stay-cancel {
        font-size: 11px;
    }
    .stay-stars {
        font-size: 15px;
    }
    .stay-card-price {
        align-items: flex-start;
        text-align: left;
        gap: 10px;
    }
    .stay-meta-rating {
        align-self: stretch;
        justify-content: space-between;
        width: 100%;
    }
    .stay-meta-rating-text {
        text-align: left;
    }
    .stay-meta-rating-text strong {
        font-size: 18px;
    }
    .stay-meta-rating-text span {
        font-size: 14px;
    }
    .stay-meta-score {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
    .stay-card-price .discount-badge {
        font-size: 14px;
        padding: 8px 12px;
        border-radius: 10px;
    }
    .stay-old-price {
        font-size: 20px;
    }
    .stay-new-price {
        font-size: 34px;
    }
    .stay-card-price .total {
        font-size: 13px;
        margin-bottom: 10px;
    }
    .stay-view-btn {
        width: 100%;
        justify-content: center;
        font-size: 16px;
        padding: 13px 18px;
        border-radius: 12px;
    }
    .hero-stays { min-height: 0; padding-top: 20px; padding-bottom: 28px; background-position: center 62%; margin: 8px 16px 0; border-radius: 20px; width: calc(100% - 32px); box-sizing: border-box; }
    .hero-stays-content { padding: 12px 16px 10px; text-align: center; }
    .search-container { padding: 0 0; width: 100%; box-sizing: border-box; transform: translateY(0); }
    #stays-search-form, #flights-search-form { width: 100%; box-sizing: border-box; margin: 0 auto; }
    .nav-inner { padding: 10px 14px; }
    .nav-brand-full-logo { height: 30px; }
    .nav-links { display: flex !important; flex-direction: row !important; position: static !important; background: none !important; padding: 0 !important; border: none !important; box-shadow: none !important; gap: 4px; }
    .nav-chip { padding: 6px 10px; font-size: 12px; gap: 4px; }
    .nav-signin-btn { padding: 6px 12px; font-size: 12px; }
    .nav-cta { display: none; }
    .mobile-toggle { display: none; }
    .steps { grid-template-columns: 1fr; gap: 24px; }
    .footer-inner { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    #stays-search-form, #flights-search-form {
        flex-direction: column;
        border-radius: 20px !important;
        background: rgba(255,255,255,0.95) !important;
        background-color: rgba(255,255,255,0.95) !important;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(0,0,0,0.18) !important;
        border: none !important;
        gap: 0;
        padding: 8px 12px 12px;
    }
    #stays-search-form::before, #flights-search-form::before {
        display: none !important;
    }
    .sf-field {
        border-radius: 14px !important;
        padding: 14px 16px 12px;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        border-bottom: 1px solid rgba(0,0,0,0.06) !important;
    }
    .sf-field:last-of-type { border-bottom: none !important; }
    .search-submit {
        width: 100%;
        min-width: unset;
        margin: 4px 0 0;
        padding: 18px;
        border-radius: 22px;
        flex-direction: row;
        gap: 10px;
        font-size: 16px;
        font-weight: 800;
        background: var(--amber);
        box-shadow: 0 6px 24px rgba(53,119,187,0.45);
        letter-spacing: 0.02em;
    }
    .search-submit::after { content: 'Buscar'; }

    .stays-filter-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .stays-filter-controls {
        grid-template-columns: 1fr;
    }
    .stays-result-count {
        text-align: left;
        min-width: 0;
    }

    .booking-page-shell .modal-close {
        top: 12px;
        left: 12px;
    }
    .booking-page-shell .modal-title,
    .booking-step-subtitle {
        padding-left: 64px;
    }

    .download-cta {
        margin-top: 0;
    }

    .booking-modal-box {
        width: 100%;
        max-width: 100%;
        padding: 16px 12px 14px;
        border-radius: 0;
        max-height: 100vh;
    }
    .booking-page-overlay {
        padding: 0;
        backdrop-filter: none;
        background: #f6f7fb;
    }
    .booking-page-shell { box-shadow: none; }
    .booking-checkout-layout {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .booking-checkout-left {
        position: static;
        top: auto;
    }
    .booking-checkout-photo-wrap { height: 170px; }
    .booking-section-card { padding: 12px; }
    .booking-credibility-grid { grid-template-columns: 1fr; }
    .booking-form-grid { grid-template-columns: 1fr; gap: 8px; }
    .booking-pro-head { padding: 14px; }
    .booking-pro-hotel { font-size: 17px; }
    .booking-pro-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 10px 12px;
    }
    .booking-pro-policy,
    .booking-pro-footnote { margin-left: 12px; margin-right: 12px; }
}

@media (min-width: 769px) and (max-width: 992px) {
    #stays-search-form, #flights-search-form {
        flex-wrap: wrap;
    }
    .sf-field { min-width: calc(50% - 1px); }
    .sf-divider:nth-child(4) { display: none; }
}

/* ── Skeleton loading ──────────────────────────────── */
@keyframes shimmer {
    0%   { background-position: -600px 0; }
    100% { background-position: 600px 0; }
}

.skel-block,
.skel-line {
    background: linear-gradient(90deg, #ececec 25%, #f5f5f5 50%, #ececec 75%);
    background-size: 1200px 100%;
    animation: shimmer 1.4s infinite linear;
    border-radius: 8px;
}

.skel-block { width: 100%; }

.skel-line {
    height: 14px;
    margin-bottom: 10px;
    width: 100%;
}
.skel-line--title { height: 20px; width: 75%; margin-bottom: 12px; }
.skel-line--sub   { height: 13px; width: 55%; }
.skel-line--price { height: 18px; width: 40%; margin-top: 14px; }

.stay-card--skeleton {
    pointer-events: none;
}
.stay-card--skeleton .stay-card-img {
    position: relative;
    min-height: 220px;
    overflow: hidden;
}
.stay-card--skeleton .stay-card-img .skel-block {
    position: absolute;
    inset: 10px;
    border-radius: 18px;
}

/* ── Trip type selector (Flights) ───────────────── */
.trip-type-bar {
    display: flex;
    gap: 6px;
    margin: 0 auto 10px;
    padding: 0 4px;
    justify-content: center;
    max-width: 980px;
}
.trip-type-btn {
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.35);
    color: rgba(255,255,255,0.88);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    backdrop-filter: blur(4px);
}
.trip-type-btn:hover {
    background: rgba(255,255,255,0.28);
    color: var(--white);
}
.trip-type-btn.active {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

/* ── Multi-city legs ─────────────────────────────── */
.multi-leg {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border-radius: 14px;
    padding: 10px 16px;
    margin-bottom: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    flex-wrap: wrap;
    position: relative;
    z-index: 1; /* below the flights form so pax popover renders on top */
}
.multi-leg input[type="text"] {
    flex: 1;
    min-width: 140px;
    border: none;
    outline: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    background: transparent;
    font-family: inherit;
    padding: 6px 0;
    border-bottom: 1.5px solid var(--gray-200);
}
.multi-leg input[type="text"]:focus { border-bottom-color: var(--amber); }
.multi-leg input[type="text"]::placeholder { color: var(--gray-400); font-weight: 400; }
.ml-date { max-width: 130px !important; }
.ml-arrow { font-size: 18px; color: var(--amber); font-weight: 700; flex-shrink: 0; }
.ml-remove {
    background: none; border: none; color: var(--gray-400);
    font-size: 18px; cursor: pointer; padding: 0 4px; flex-shrink: 0;
}
.ml-remove:hover { color: #DC2626; }

/* ── Flights filter bar ─────────────────────────── */
.flights-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 860px;
    margin: 0 auto 14px;
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: 100px;
    padding: 8px 8px 8px 16px;
}
.ffb-left { display: flex; align-items: center; }
.ffb-right { display: flex; align-items: center; gap: 6px; }
.ffb-sort-label { font-size: 12px; color: var(--gray-500); font-weight: 600; margin-right: 2px; }
.ffb-sort-btn {
    font-size: 12px; font-weight: 600;
    color: var(--gray-500);
    background: none; border: none;
    padding: 6px 14px;
    border-radius: 100px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
.ffb-sort-btn.active { background: var(--dark); color: #fff; }
.ffb-sort-btn:not(.active):hover { background: var(--gray-100); color: var(--dark); }

.ffb-toggle {
    display: flex; align-items: center; gap: 8px;
    background: none; border: none;
    font-size: 13px; font-weight: 600;
    color: var(--gray-500);
    cursor: pointer;
    padding: 4px 0;
    transition: color 0.15s;
}
.ffb-toggle.active { color: var(--amber); }
.ffb-toggle-dot {
    width: 36px; height: 20px;
    background: var(--gray-200);
    border-radius: 100px;
    position: relative;
    flex-shrink: 0;
    transition: background 0.2s;
}
.ffb-toggle-dot::after {
    content: '';
    position: absolute;
    width: 14px; height: 14px;
    background: #fff;
    border-radius: 50%;
    top: 3px; left: 3px;
    transition: transform 0.2s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.ffb-toggle.active .ffb-toggle-dot { background: var(--amber); }
.ffb-toggle.active .ffb-toggle-dot::after { transform: translateX(16px); }

.flights-result-count {
    max-width: 860px; margin: 0 auto 12px;
    font-size: 13px; color: var(--gray-500);
}
.ffb-direct-hint { color: #15803D; font-weight: 600; }

/* ── Trip type selector ─────────────────────────── */
.flights-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 860px;
    margin: 0 auto;
}

.flight-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 28px;
    padding: 24px 28px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: box-shadow 0.18s ease;
    cursor: default;
}
.flight-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.09);
}
.flight-card.best-offer {
    border: 2px solid var(--amber);
    box-shadow: 0 4px 24px rgba(53,119,187,0.15);
}
.fc-best-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #3577bb, #b7cd00);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
    padding: 3px 10px;
    margin-left: 8px;
    letter-spacing: 0.02em;
}

.flight-card-airline {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}
.flight-airline-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 6px;
    border: 1px solid var(--gray-200);
    background: var(--white);
}
.flight-airline-abbr {
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    background: var(--gray-100); border-radius: 6px;
    font-size: 13px; font-weight: 700; color: var(--gray-600);
}
.flight-airline-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
}

.flight-card-route {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.flight-time-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 64px;
}
.flight-time-col.right { align-items: flex-end; }
.flight-time {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}
.flight-city {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 3px;
}
.flight-middle {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.flight-duration {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-600);
}
.flight-line {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 4px;
}
.flight-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--gray-400);
    flex-shrink: 0;
}
.flight-track {
    flex: 1;
    height: 1.5px;
    background: var(--gray-300);
}
.flight-stops {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    margin-top: 2px;
}
.flight-stops.direct {
    background: #DCFCE7;
    color: #15803D;
}
.flight-stops.stops {
    background: #FEF9C3;
    color: #92400E;
}

.flight-card-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 14px;
    border-top: 1px solid var(--gray-200);
}
.flight-price-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    justify-content: space-between;
}
.flight-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    display: block;
}
.fc-price-note {
    font-size: 11px;
    color: var(--gray-500);
    font-weight: 500;
    display: block;
    margin-top: 1px;
}
.flight-book-btn {
    background: var(--amber);
    color: var(--white);
    border: none;
    border-radius: 100px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.18s, transform 0.15s;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(53,119,187,0.35);
}
.flight-book-btn:hover { background: #e06800; }

/* Round-trip slice rows */
.fc-slice { padding: 10px 0; }
.fc-slice + .fc-slice { padding-top: 4px; }
.fc-slice-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-500);
    margin-bottom: 6px;
    display: block;
}
.fc-slice-date {
    font-size: 12px;
    color: var(--gray-400);
    margin-top: 4px;
}
/* Flight detail — multi-slice layout */
.fd-slice-block { margin-bottom: 4px; }
.fd-slice-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.fd-slice-label-tag {
    background: linear-gradient(135deg, #3577bb, #b7cd00);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
    padding: 3px 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.fd-slice-summary {
    font-size: 13px;
    color: var(--gray-500);
}
.fd-slice-divider-main {
    border: none;
    border-top: 2px dashed var(--gray-200);
    margin: 20px 0;
}
.fc-slice-divider {
    border: none;
    border-top: 1px dashed var(--gray-200);
    margin: 6px 0;
}
.fc-rt-badge {
    background: #EFF6FF;
    color: #1D4ED8;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    padding: 2px 9px;
    margin-left: 6px;
}

/* Multi-city combo: per-leg airline chips */
.fc-combo-airlines {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.fc-leg-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--gray-100);
    border-radius: 100px;
    padding: 3px 10px 3px 5px;
    font-size: 12px;
    font-weight: 600;
}
.fc-chip-logo { width: 20px; height: 20px; border-radius: 50%; object-fit: contain; }
.fc-chip-abbr { font-size: 11px; font-weight: 800; color: var(--dark); }
.fc-chip-name { font-size: 12px; }
.fc-chip-direct { font-size: 10px; font-weight: 700; color: #16a34a; background: #dcfce7; border-radius: 100px; padding: 1px 6px; margin-left: 2px; }
.fc-chip-sep { font-size: 14px; color: var(--gray-400); font-weight: 400; }
.fc-combo-leg-block { padding: 12px 0; }
.fc-combo-leg-head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.fc-combo-leg-route { display: flex; align-items: center; gap: 6px; font-size: 13px; padding: 4px 0; }


/* Back button */
.sd-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    color: var(--dark);
    border-radius: 100px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
    font-family: inherit;
}
.sd-back-btn:hover {
    border-color: var(--dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.flight-card.skeleton { pointer-events: none; }
.sk-line {
    background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
    border-radius: 8px;
}

/* airport suggestion item */
.sugg-iata {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    color: var(--amber);
    background: rgba(53,119,187,0.10);
    border-radius: 5px;
    padding: 1px 6px;
    margin-right: 6px;
    letter-spacing: 0.04em;
}
.sugg-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}
.sugg-sub {
    font-size: 12px;
    color: var(--gray-500);
    margin-left: 6px;
}
.no-results {
    text-align: center;
    padding: 48px 24px;
    color: var(--gray-600);
    font-size: 15px;
}

@media (max-width: 768px) {
    .flight-time { font-size: 20px; }
    .flight-card-footer { flex-direction: column; align-items: flex-start; gap: 12px; }
    .flight-price-wrap { width: 100%; justify-content: space-between; }
}

/* ── Flight Detail Panel ─────────────────────────── */
.fd-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}
.fd-airline-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
}
.fd-route-label {
    font-size: 13px;
    color: var(--gray-600);
    margin-top: 3px;
}

.fd-segs { display: flex; flex-direction: column; gap: 0; margin-bottom: 24px; }

.fd-seg {
    background: var(--gray-100);
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 8px;
}
.fd-seg-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}
.fd-carrier { font-size: 14px; font-weight: 700; color: var(--dark); }
.fd-flight-num { font-size: 13px; color: var(--gray-500); }
.fd-aircraft { font-size: 12px; color: var(--gray-400); margin-left: auto; }

.fd-seg-route {
    display: flex;
    align-items: center;
    gap: 12px;
}
.fd-seg-point {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 90px;
}
.fd-seg-point.right { align-items: flex-end; }
.fd-seg-time { font-size: 28px; font-weight: 800; color: var(--dark); line-height: 1; }
.fd-seg-iata { font-size: 13px; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px; }
.fd-seg-city { font-size: 12px; color: var(--gray-500); margin-top: 1px; }
.fd-seg-date { font-size: 11px; color: var(--gray-400); margin-top: 2px; }
.fd-seg-mid {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.fd-seg-dur { font-size: 12px; font-weight: 600; color: var(--gray-600); }
.fd-cabin {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: capitalize;
    margin-top: 2px;
}

.fd-seg-connector {
    text-align: center;
    font-size: 12px;
    color: var(--gray-500);
    padding: 6px 0;
    font-weight: 600;
}

.fd-conditions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.fd-cond {
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
}
.fd-cond.ok { background: #DCFCE7; color: #15803D; }
.fd-cond.no { background: #FEE2E2; color: #DC2626; }

.fd-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
    gap: 16px;
    flex-wrap: wrap;
}
.fd-price { font-size: 28px; font-weight: 800; color: var(--dark); }
.fd-price-sub { font-size: 12px; color: var(--gray-500); display: block; margin-top: 2px; }

/* ── Lightbox ────────────────────────────────────────────────────── */
#lbOverlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}
#lbImg {
    max-width: 92vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    user-select: none;
}
#lbClose {
    position: fixed;
    top: 18px;
    right: 22px;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 26px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background .2s;
}
#lbClose:hover { background: rgba(255,255,255,0.3); }
#lbPrev, #lbNext {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 44px;
    width: 52px;
    height: 72px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background .2s;
    padding: 0;
}
#lbPrev { left: 12px; }
#lbNext { right: 12px; }
#lbPrev:hover, #lbNext:hover { background: rgba(255,255,255,0.3); }
#lbCounter {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    background: rgba(0,0,0,0.4);
    padding: 4px 14px;
    border-radius: 100px;
}
.sd-gallery-img { cursor: zoom-in !important; }
.sd-room-photos img { cursor: zoom-in !important; }