/* ───────────────────────────────────────────────────────────────
   MBW LOGIN — branded split-screen, full-bleed outside content area
   ─────────────────────────────────────────────────────────────── */
.mbw-login {
    --c-navy:    #0F1E35;
    --c-navy-2:  #1A2B49;
    --c-orange:  #FF5533;
    --c-or-hov:  #E04428;
    --c-bg:      #F8FAFC;
    --c-border:  #E5E7EB;
    --c-text:    #1A2B49;
    --c-muted:   #6B7280;

    /* break out of theme container; render edge-to-edge */
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: -40px;
    margin-bottom: -40px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    min-height: calc(100vh - 80px);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    color: var(--c-text);
    background: #fff;
}
.mbw-login *,
.mbw-login *::before,
.mbw-login *::after { box-sizing: border-box; }

/* ── Form side ──────────────────────────────────────────────── */
.mbw-login__form-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    background: #fff;
}
.mbw-login__form-inner {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.mbw-login__brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.mbw-login__back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--c-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color .15s;
}
.mbw-login__back:hover { color: var(--c-orange); }
.mbw-login__logo img { max-height: 38px; width: auto; display: block; }
.mbw-login__logo--text {
    text-decoration: none;
    font-weight: 800;
    color: var(--c-navy);
    font-size: 16px;
    letter-spacing: -.01em;
}

.mbw-login__pitch h1 {
    font-size: 30px;
    font-weight: 700;
    color: var(--c-text);
    line-height: 1.15;
    letter-spacing: -.02em;
    margin: 0 0 8px;
}
.mbw-login__pitch p {
    color: var(--c-muted);
    font-size: 14.5px;
    line-height: 1.5;
    margin: 0;
}

.mbw-login__form { display: flex; flex-direction: column; gap: 10px; }
.mbw-login__label {
    font-size: 12px;
    font-weight: 600;
    color: var(--c-text);
    letter-spacing: .2px;
}
.mbw-login__input-row {
    position: relative;
    display: block;
}
.mbw-login__input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--c-muted);
    pointer-events: none;
}
.mbw-login__input {
    width: 100%;
    padding: 14px 14px 14px 40px;
    border: 1.5px solid var(--c-border);
    border-radius: 10px;
    font-size: 15px;
    color: var(--c-text);
    background: #fff;
    transition: border-color .15s, box-shadow .15s;
    font-family: inherit;
}
.mbw-login__input:focus {
    outline: none;
    border-color: var(--c-orange);
    box-shadow: 0 0 0 4px rgba(255,85,51,.12);
}
.mbw-login__btn {
    margin-top: 4px;
    padding: 14px 22px;
    background: var(--c-orange);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14.5px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(255,85,51,.32);
    transition: background .15s, transform .1s, box-shadow .15s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
}
.mbw-login__btn:hover { background: var(--c-or-hov); box-shadow: 0 6px 18px rgba(255,85,51,.42); }
.mbw-login__btn:active { transform: translateY(1px); }
.mbw-login__hint {
    color: var(--c-muted);
    font-size: 12.5px;
    margin: 6px 0 0;
    line-height: 1.5;
}

.mbw-login__alt {
    text-align: center;
    color: var(--c-muted);
    font-size: 13px;
    padding-top: 18px;
    border-top: 1px solid var(--c-border);
    margin-top: 6px;
}
.mbw-login__alt a { color: var(--c-orange); text-decoration: none; font-weight: 600; }
.mbw-login__alt a:hover { text-decoration: underline; }

.mbw-login__notice {
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 13px;
    background: #ECFDF5;
    color: #065F46;
    border: 1px solid #6EE7B7;
}
.mbw-login__notice--error {
    background: #FEF2F2;
    color: #991B1B;
    border-color: #FCA5A5;
}

.mbw-login__foot {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--c-border);
    color: var(--c-muted);
    font-size: 11.5px;
    display: flex;
    justify-content: center;
}
.mbw-login__foot i { color: var(--c-orange); margin-right: 5px; }

/* ── Hero side ──────────────────────────────────────────────── */
.mbw-login__hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: var(--c-navy);
    display: flex;
    align-items: flex-end;
    padding: 60px 60px 60px;
    color: #fff;
    overflow: hidden;
    min-height: 600px;
}
.mbw-login__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,30,53,.25) 0%, rgba(15,30,53,.85) 100%);
}
.mbw-login__hero-content {
    position: relative;
    max-width: 480px;
    z-index: 1;
}
.mbw-login__hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .02em;
    margin-bottom: 26px;
    text-transform: none;
}
.mbw-login__hero-tag i { color: #FFB47A; font-size: 13px; }
.mbw-login__hero-tag strong { color: #FFB47A; font-weight: 800; }

.mbw-login__hero-content h2 {
    color: #fff;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.015em;
    margin: 0 0 16px;
    text-shadow: 0 2px 14px rgba(0,0,0,.25);
    max-width: 18ch;
}
.mbw-login__hero-lede {
    color: rgba(255,255,255,.88);
    font-size: 15px;
    line-height: 1.55;
    margin: 0 0 22px;
    max-width: 38ch;
}

/* Trust bullet list */
.mbw-login__hero-points {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mbw-login__hero-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.92);
    font-size: 14px;
    line-height: 1.4;
}
.mbw-login__hero-points i {
    color: #4ADE80;
    font-size: 16px;
    flex-shrink: 0;
}

/* Legacy author block (kept in case other places reference it) */
.mbw-login__hero-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0 24px;
    border-bottom: 1px solid rgba(255,255,255,.16);
}
.mbw-login__hero-author strong { display: block; font-size: 14px; color: #fff; }
.mbw-login__hero-author span { display: block; font-size: 12px; opacity: .75; margin-top: 2px; }

.mbw-login__hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.18);
    margin-top: 4px;
}
.mbw-login__hero-stats > div { text-align: left; }
.mbw-login__hero-stats strong {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: -.01em;
}
.mbw-login__hero-stats strong i { color: #FFB400; font-size: 18px; }
.mbw-login__hero-stats span {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,.65);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 600;
}

/* No hero image? Use a navy gradient — still looks branded */
.mbw-login[data-has-hero="0"] .mbw-login__hero {
    background-image: linear-gradient(135deg, #0F1E35 0%, #1A2B49 50%, #2D3B5D 100%);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 980px) {
    .mbw-login {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .mbw-login__hero {
        min-height: 320px;
        order: -1;
        padding: 30px;
        align-items: flex-end;
    }
    .mbw-login__hero-content h2 { font-size: 22px; margin-bottom: 18px; }
    .mbw-login__hero-stats strong { font-size: 20px; }
    .mbw-login__form-side { padding: 40px 24px 60px; }
}
@media (max-width: 480px) {
    .mbw-login__hero-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .mbw-login__pitch h1 { font-size: 24px; }
}

/* ───────────────────────────────────────────────────────────────
   MBW Customer Dashboard
   Frontend page for logged-in travelers — bookings, reviews, profile.
   ─────────────────────────────────────────────────────────────── */

.mbw-cd {
    --c-navy:    #0F1E35;
    --c-navy-2:  #1A2B49;
    --c-orange:  #FF5533;
    --c-or-hov:  #E04428;
    --c-bg:      #F8FAFC;
    --c-border:  #E5E7EB;
    --c-text:    #1A2B49;
    --c-muted:   #6B7280;
    --c-green:   #10B981;
    --c-green-bg: #ECFDF5;
    --c-amber:    #D97706;
    --c-amber-bg: #FEF3C7;
    --c-shadow:  0 1px 3px rgba(15,30,53,.06), 0 4px 12px rgba(15,30,53,.04);

    max-width: 1180px;
    margin: 0 auto 96px;
    padding: 120px 20px 0;        /* top padding clears the fixed site header */
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 36px;
    align-items: start;
    color: var(--c-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
}
/* When a full-bleed hero sits above the grid (booking detail), drop the top pad */
.mbw-cd--has-hero { padding-top: 40px; }
@media (max-width: 860px) {
    .mbw-cd {
        grid-template-columns: 1fr;
        padding-top: 96px;
        gap: 24px;
    }
}
.mbw-cd *,
.mbw-cd *::before,
.mbw-cd *::after { box-sizing: border-box; }
.mbw-cd h1, .mbw-cd h2, .mbw-cd h3 { color: var(--c-text); margin: 0; }

/* ─── Logged-out gate ──────────────────────────────────────────── */
.mbw-cd__login {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}
.mbw-cd__login-card {
    max-width: 440px;
    width: 100%;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 16px;
    padding: 36px 32px;
    text-align: center;
    box-shadow: var(--c-shadow);
}
.mbw-cd__login-icon {
    width: 64px; height: 64px;
    margin: 0 auto 16px;
    background: var(--c-bg);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    color: var(--c-orange);
}
.mbw-cd__login h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px;
}
.mbw-cd__login p {
    color: var(--c-muted);
    font-size: 14px;
    margin: 0 0 22px;
    line-height: 1.5;
}
.mbw-cd__form { display: flex; flex-direction: column; gap: 10px; }

/* ─── Sidebar ──────────────────────────────────────────────────── */
.mbw-cd__sidebar {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 14px;
    padding: 20px;
    position: sticky;
    top: 24px;
    box-shadow: var(--c-shadow);
}
.mbw-cd__profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--c-border);
}
.mbw-cd__avatar,
.mbw-login__hero-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--c-orange, #FF5533) !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-weight: 800 !important;
    font-size: 17px !important;
    line-height: 1 !important;
    letter-spacing: 0;
    text-transform: uppercase;
    flex-shrink: 0;
}
.mbw-login__hero-avatar {
    width: 48px; height: 48px;
    font-size: 19px !important;
}
.mbw-cd__profile strong {
    display: block;
    font-size: 14px;
    line-height: 1.2;
}
.mbw-cd__profile span {
    display: block;
    font-size: 11.5px;
    color: var(--c-muted);
    margin-top: 2px;
    word-break: break-all;
}
.mbw-cd__nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mbw-cd__nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--c-text);
    font-size: 13.5px;
    font-weight: 600;
    transition: background .15s, color .15s;
}
.mbw-cd__nav a:hover { background: var(--c-bg); }
.mbw-cd__nav a.is-active { background: var(--c-orange); color: #fff; }
.mbw-cd__nav a.is-active i { color: #fff; }
.mbw-cd__nav i { color: var(--c-orange); width: 16px; text-align: center; }

/* ─── Main column ──────────────────────────────────────────────── */
.mbw-cd__main { min-width: 0; }
.mbw-cd__greeting { margin-bottom: 28px; }
.mbw-cd__greeting h1 {
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 6px;
    letter-spacing: -.01em;
    font-family: 'Playfair Display', Georgia, serif;
}
.mbw-cd__greeting p {
    color: var(--c-muted);
    margin: 0;
    font-size: 15px;
}

/* ─── Review nudge ─────────────────────────────────────────────── */
.mbw-cd__nudge {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #FFF1E8 0%, #FFE3D2 100%);
    border: 1px solid #FFB791;
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 20px;
}
.mbw-cd__nudge i {
    font-size: 22px;
    color: var(--c-orange);
}
.mbw-cd__nudge strong { display: block; font-size: 14px; color: #7c2d12; }
.mbw-cd__nudge span   { display: block; font-size: 12.5px; color: #7c2d12; opacity: .8; }

/* ─── Sections ────────────────────────────────────────────────── */
.mbw-cd__section { margin-bottom: 48px; }
.mbw-cd__section:last-child { margin-bottom: 0; }
.mbw-cd__section-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 20px;
    position: relative;
    padding-bottom: 10px;
    color: var(--c-text);
    letter-spacing: -.005em;
}
.mbw-cd__section-title::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 40px; height: 3px;
    background: var(--c-orange);
    border-radius: 2px;
}

/* Booking cards — more air */
.mbw-cd__cards { gap: 18px; }

/* ─── Booking cards (list view) ────────────────────────────────── */
.mbw-cd__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
}
.mbw-cd__card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--c-shadow);
    transition: transform .2s, box-shadow .2s;
    display: block;
}
.mbw-cd__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(15,30,53,.1);
}
.mbw-cd__card-thumb {
    height: 140px;
    background: var(--c-bg);
    background-size: cover;
    background-position: center;
}
.mbw-cd__card-body { padding: 14px 16px 16px; }
.mbw-cd__card-body h3 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 6px;
    line-height: 1.3;
}
.mbw-cd__card-date {
    font-size: 12px;
    color: var(--c-muted);
    margin: 0 0 12px;
}
.mbw-cd__card-date i { color: var(--c-muted); margin-right: 4px; }
.mbw-cd__card-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}
.mbw-cd__price-tag {
    font-weight: 700;
    color: var(--c-orange);
    font-size: 14px;
}
.mbw-cd__pill {
    font-size: 10.5px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: .4px;
}
.mbw-cd__pill--confirmed { background: var(--c-green-bg); color: var(--c-green); }
.mbw-cd__pill--completed { background: var(--c-bg);       color: var(--c-muted); }
.mbw-cd__pill--review    { background: var(--c-amber-bg); color: var(--c-amber); }

/* ─── Empty state ──────────────────────────────────────────────── */
.mbw-cd__empty {
    background: var(--c-bg);
    border: 1px dashed var(--c-border);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    color: var(--c-muted);
}
.mbw-cd__empty i {
    font-size: 32px;
    color: var(--c-border);
    margin-bottom: 8px;
    display: block;
}
.mbw-cd__empty p { margin: 0; font-size: 13.5px; }

/* ─── Detail view ──────────────────────────────────────────────── */
.mbw-cd__back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--c-muted);
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 14px;
}
.mbw-cd__back:hover { color: var(--c-orange); }

.mbw-cd__detail {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--c-shadow);
}
.mbw-cd__detail-hero {
    background-size: cover;
    background-position: center;
    background-color: var(--c-navy);
    position: relative;
    padding: 40px 28px;
    min-height: 200px;
    color: #fff;
}
.mbw-cd__detail-hero::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(15,30,53,.55) 0%, rgba(15,30,53,.85) 100%);
}
.mbw-cd__detail-hero-inner { position: relative; }
.mbw-cd__detail-hero h1 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin: 8px 0 4px;
    line-height: 1.2;
}
.mbw-cd__detail-hero p { margin: 0; opacity: .85; font-size: 13.5px; }

.mbw-cd__pill--confirmed,
.mbw-cd__pill--completed { background: rgba(255,255,255,.16); color: #fff; }

/* ─── Status timeline ──────────────────────────────────────────── */
.mbw-cd__timeline {
    list-style: none;
    margin: 0; padding: 24px 28px;
    border-bottom: 1px solid var(--c-border);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    counter-reset: step;
}
.mbw-cd__timeline li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 10px;
    background: var(--c-bg);
    position: relative;
}
.mbw-cd__timeline li i {
    font-size: 18px;
    color: var(--c-border);
    flex-shrink: 0;
    margin-top: 2px;
}
.mbw-cd__timeline li.is-done i,
.mbw-cd__timeline li.is-current i { color: var(--c-orange); }
.mbw-cd__timeline li.is-done {
    background: var(--c-green-bg);
}
.mbw-cd__timeline li.is-done i { color: var(--c-green); }
.mbw-cd__timeline li.is-current {
    background: #FFF1E8;
    border: 1px solid #FFB791;
}
.mbw-cd__timeline li strong { display: block; font-size: 13px; font-weight: 700; }
.mbw-cd__timeline li span { display: block; font-size: 11.5px; color: var(--c-muted); margin-top: 1px; }
@media (max-width: 720px) {
    .mbw-cd__timeline { grid-template-columns: 1fr; }
}

/* ─── Detail grid ─────────────────────────────────────────────── */
.mbw-cd__detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 24px 28px;
    border-bottom: 1px solid var(--c-border);
}
.mbw-cd__detail-block { font-size: 14px; }
.mbw-cd__detail-block label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: 4px;
}
.mbw-cd__detail-block--full { grid-column: 1 / -1; }
.mbw-cd__price { font-weight: 700; color: var(--c-orange); font-size: 18px; }

/* ─── Review form ─────────────────────────────────────────────── */
.mbw-cd__review-form,
.mbw-cd__review-done {
    padding: 28px;
}
.mbw-cd__review-form h2 {
    font-size: 18px;
    margin: 0 0 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.mbw-cd__review-form h2 i { color: var(--c-orange); }
.mbw-cd__review-form > p {
    color: var(--c-muted);
    font-size: 13px;
    margin: 0 0 18px;
}
.mbw-cd__field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.mbw-cd__field label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--c-text);
}
.mbw-cd__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.mbw-cd__stars { display: flex; gap: 4px; }
.mbw-cd__star {
    background: transparent;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: var(--c-border);
    font-size: 24px;
    transition: color .12s, transform .1s;
}
.mbw-cd__star:hover { color: var(--c-orange); transform: scale(1.1); }
.mbw-cd__star.is-on { color: var(--c-orange); }
.mbw-cd__star.is-on i::before { content: "\f005"; } /* solid star */
.mbw-cd__star.is-on i { font-weight: 900; }

.mbw-cd__review-done {
    display: flex;
    gap: 14px;
    align-items: center;
    background: var(--c-green-bg);
    border-top: 1px solid #6EE7B7;
}
.mbw-cd__review-done i { font-size: 28px; color: var(--c-green); }
.mbw-cd__review-done strong { display: block; font-size: 14px; color: #065F46; }
.mbw-cd__review-done span { display: block; font-size: 12.5px; color: #065F46; opacity: .8; }

/* ─── Inputs & buttons ────────────────────────────────────────── */
.mbw-cd__input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--c-border);
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    color: var(--c-text);
    transition: border-color .15s, box-shadow .15s;
    font-family: inherit;
}
.mbw-cd__input:focus {
    outline: none;
    border-color: var(--c-orange);
    box-shadow: 0 0 0 3px rgba(255,85,51,.15);
}

.mbw-cd__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border: 1px solid var(--c-border);
    border-radius: 10px;
    background: #fff;
    color: var(--c-text);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background .15s, transform .1s, box-shadow .15s;
    font-family: inherit;
    text-decoration: none;
}
.mbw-cd__btn:hover { background: var(--c-bg); }
.mbw-cd__btn--primary {
    background: var(--c-orange);
    color: #fff;
    border-color: var(--c-orange);
    box-shadow: 0 4px 14px rgba(255,85,51,.32);
}
.mbw-cd__btn--primary:hover {
    background: var(--c-or-hov);
    border-color: var(--c-or-hov);
    box-shadow: 0 6px 20px rgba(255,85,51,.42);
}
.mbw-cd__btn--primary:active { transform: translateY(1px); }

/* ─── Notice ──────────────────────────────────────────────────── */
.mbw-cd__notice {
    margin-top: 14px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    background: var(--c-green-bg);
    color: #065F46;
    border: 1px solid #6EE7B7;
}
.mbw-cd__notice--error {
    background: #FEF2F2;
    color: #991B1B;
    border-color: #FCA5A5;
}

/* ─── Full-bleed booking hero (above the grid) ──────────────────── */
.mbw-hero {
    position: relative;
    min-height: 380px;
    padding: 140px 24px 56px;        /* clears fixed site header */
    background-color: #0F1E35;
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.mbw-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(15,30,53,.35) 0%, rgba(15,30,53,.55) 50%, rgba(15,30,53,.85) 100%);
}
.mbw-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
}
.mbw-hero__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.85);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(6px);
    transition: background .15s, color .15s;
}
.mbw-hero__back:hover { background: rgba(255,255,255,.22); color: #fff; }
.mbw-hero__pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 14px;
    background: rgba(255,255,255,.95);
    color: #1A2B49;
}
.mbw-hero__pill--confirmed { background: #FFE5DC; color: #B23A1C; }
.mbw-hero__pill--completed { background: #DCFCE7; color: #065F46; }
.mbw-hero__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.15;
    letter-spacing: -.01em;
}
.mbw-hero__date {
    margin: 0;
    color: rgba(255,255,255,.85);
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
@media (max-width: 720px) {
    .mbw-hero {
        min-height: 280px;
        padding: 120px 20px 40px;
    }
}

/* Hide the legacy in-main hero/back link since they're now in the full-bleed banner */
.mbw-cd__detail-hero,
.mbw-cd__back { display: none !important; }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 880px) {
    .mbw-cd { grid-template-columns: 1fr; }
    .mbw-cd__sidebar { position: static; }
    .mbw-cd__detail-grid { grid-template-columns: 1fr; }
    .mbw-cd__row { grid-template-columns: 1fr; }
}
