/* ============================================================
   Oxygen Cart — professional UI v2  (prefix: oxc-)
   Inspired by booking.com / airbnb refinement; brand-neutral with
   careful typography, hairline dividers, tabular numerics, calm shadows.
   ============================================================ */
:root {
    --oxc-bg: #f5f6f8;
    --oxc-surface: #ffffff;
    --oxc-surface-2: #fafbfc;
    --oxc-ink: #0f172a;
    --oxc-ink-2: #1e293b;
    --oxc-muted: #5a6675;
    --oxc-subtle: #94a0ad;
    --oxc-accent: #f26522;
    --oxc-accent-2: #ea580c;
    --oxc-blue: #0b4f9c;
    --oxc-blue-2: #0a63c9;
    --oxc-line: #e5e8ec;
    --oxc-line-2: #eef0f3;
    --oxc-success: #15803d;
    --oxc-success-bg: #f0fdf4;
    --oxc-warning: #c2410c;
    --oxc-warning-bg: #fff7ed;
    --oxc-danger: #b91c1c;
    --oxc-danger-bg: #fef2f2;
    --oxc-radius: 10px;
    --oxc-radius-sm: 6px;
    --oxc-radius-lg: 14px;
    --oxc-shadow-1: 0 1px 2px rgba(15,23,42,.04);
    --oxc-shadow-2: 0 1px 2px rgba(15,23,42,.04), 0 4px 12px rgba(15,23,42,.04);
    --oxc-shadow-3: 0 8px 24px -8px rgba(15,23,42,.12);
}

body.cart-page {
    background: var(--oxc-bg);
    font-size: 13.5px;
    font-feature-settings: "ss01", "cv11";
    -webkit-font-smoothing: antialiased;
    color: var(--oxc-ink);
}
body.cart-page :where(strong, .oxc-num) { font-variant-numeric: tabular-nums; }

/* ============================================================
   HERO
   ============================================================ */
.oxc-hero {
    background: linear-gradient(180deg, #0a1830 0%, #0d2549 100%);
    color: #fff;
    padding: 1.6rem 0 1.8rem;
    position: relative; overflow: hidden;
    border-bottom: 1px solid rgba(15,23,42,.4);
}
.oxc-hero-pattern {
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 88% 20%, rgba(242,101,34,.16) 0%, transparent 45%),
        radial-gradient(circle at 8% 90%, rgba(11,79,156,.32) 0%, transparent 45%);
    pointer-events: none;
}
.oxc-crumb { font-size: .72rem; }
.oxc-crumb .breadcrumb-item a { color: rgba(255,255,255,.65); text-decoration: none; font-weight: 500; transition: color .15s; }
.oxc-crumb .breadcrumb-item a:hover { color: #fff; }
.oxc-crumb .breadcrumb-item.active { color: #fff; font-weight: 600; }
.oxc-crumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.32); }

.oxc-eyebrow {
    display: inline-flex; align-items: center; gap: .4em;
    font-size: .62rem; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase;
    background: rgba(242,101,34,.16);
    color: #ffd2b3;
    border: 1px solid rgba(242,101,34,.32);
    padding: .3em .8em; border-radius: 3px;
    margin-bottom: .65rem;
}
.oxc-title {
    font-size: clamp(1.45rem, 2.6vw, 1.85rem);
    font-weight: 800; letter-spacing: -.02em; line-height: 1.12;
    color: #fff; margin-bottom: .35rem;
}
.oxc-sub { color: rgba(255,255,255,.7); font-size: .85rem; line-height: 1.55; max-width: 38rem; margin: 0; }

/* Stepper rail */
.oxc-progress-steps {
    display: flex; align-items: center; gap: .55rem;
    margin-top: .9rem;
    padding: .5rem .9rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px;
    backdrop-filter: blur(8px);
}
@media (min-width: 992px) { .oxc-progress-steps { margin-top: 0; justify-content: flex-end; } }
.oxc-step { display: flex; align-items: center; gap: .42rem; opacity: .55; transition: opacity .2s; }
.oxc-step.is-active, .oxc-step.is-current { opacity: 1; }
.oxc-step-num {
    width: 22px; height: 22px; border-radius: 50%;
    background: rgba(255,255,255,.12); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: .68rem; font-weight: 700;
    border: 1.5px solid rgba(255,255,255,.18);
}
.oxc-step.is-active .oxc-step-num { background: var(--oxc-accent); border-color: var(--oxc-accent); box-shadow: 0 0 0 3px rgba(242,101,34,.2); }
.oxc-step.is-current .oxc-step-num { background: rgba(255,255,255,.2); border-color: #fff; }
.oxc-step-lbl { font-size: .7rem; font-weight: 600; letter-spacing: .02em; }
.oxc-step-line { flex: 1; max-width: 26px; height: 1.5px; background: linear-gradient(90deg, rgba(255,255,255,.28), rgba(255,255,255,.08)); border-radius: 1px; }

/* ============================================================
   BODY
   ============================================================ */
.oxc-body { padding: 1.5rem 0 3rem; }

.oxc-alert {
    display: flex; gap: .7rem;
    background: var(--oxc-warning-bg);
    border: 1px solid #fed7aa;
    border-left: 3px solid var(--oxc-warning);
    border-radius: var(--oxc-radius-sm);
    padding: .65rem .85rem;
    color: #7c2d12;
    font-size: .8rem;
}
.oxc-alert-icon { color: var(--oxc-warning); font-size: 1.05rem; flex-shrink: 0; }

/* ============================================================
   CARD
   ============================================================ */
.oxc-card {
    background: var(--oxc-surface);
    border: 1px solid var(--oxc-line);
    border-radius: var(--oxc-radius);
    box-shadow: var(--oxc-shadow-1);
    overflow: hidden;
    transition: box-shadow .15s, border-color .15s;
}
.oxc-card-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: .75rem .95rem;
    border-bottom: 1px solid var(--oxc-line-2);
    gap: .65rem; flex-wrap: wrap;
    background: var(--oxc-surface-2);
}
.oxc-card-title {
    font-weight: 700; color: var(--oxc-ink);
    font-size: .82rem; line-height: 1.2;
    letter-spacing: -.005em;
}
.oxc-card-sub { color: var(--oxc-muted); font-size: .7rem; margin-top: .05rem; }

.oxc-icon-pill {
    width: 30px; height: 30px; border-radius: var(--oxc-radius-sm);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: .92rem; flex-shrink: 0;
}
.oxc-icon-pill--blue { background: #e0eeff; color: var(--oxc-blue); }
.oxc-icon-pill--orange { background: #ffead9; color: var(--oxc-accent); }

.oxc-nights-pill {
    display: inline-flex; align-items: center;
    font-size: .68rem; font-weight: 700;
    background: #eef4fb; color: var(--oxc-blue);
    border: 1px solid #c8dcf2;
    padding: .22em .65em; border-radius: 999px;
    letter-spacing: .02em;
}

/* ============================================================
   INPUTS
   ============================================================ */
.oxc-label {
    display: block;
    font-size: .64rem; font-weight: 700;
    color: var(--oxc-muted);
    text-transform: uppercase; letter-spacing: .07em;
    margin-bottom: .3rem;
}
.oxc-input-wrap { position: relative; cursor: pointer; }
.oxc-input-icon {
    position: absolute; left: .8em; top: 50%;
    transform: translateY(-50%);
    color: var(--oxc-blue); font-size: .85rem;
    pointer-events: none;
}
.oxc-input {
    padding: .5rem .7rem .5rem 2.05rem;
    border: 1px solid var(--oxc-line);
    border-radius: var(--oxc-radius-sm);
    font-size: .82rem; font-weight: 600;
    color: var(--oxc-ink);
    background: #fff;
    transition: border-color .15s, box-shadow .15s;
    width: 100%; cursor: pointer;
}
.oxc-input:hover { border-color: #cbd2db; }
.oxc-input:focus {
    border-color: var(--oxc-blue);
    box-shadow: 0 0 0 3px rgba(11,79,156,.12);
    outline: none;
}
.oxc-input[type="date"]::-webkit-calendar-picker-indicator { cursor: pointer; opacity: .55; }
.oxc-input[type="date"]:hover::-webkit-calendar-picker-indicator { opacity: 1; }

/* ============================================================
   BUTTONS
   ============================================================ */
.oxc-btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: .4em;
    padding: .52rem 1rem;
    border-radius: var(--oxc-radius-sm);
    font-size: .78rem; font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer; text-decoration: none;
    transition: all .15s;
    line-height: 1.2; white-space: nowrap;
}
.oxc-btn-sm { padding: .38rem .7rem; font-size: .72rem; }
.oxc-btn-primary {
    background: var(--oxc-blue); color: #fff;
    border-color: var(--oxc-blue);
    box-shadow: 0 1px 2px rgba(11,79,156,.25);
}
.oxc-btn-primary:hover { background: var(--oxc-blue-2); border-color: var(--oxc-blue-2); color:#fff; box-shadow: 0 4px 10px -2px rgba(11,79,156,.4); }
.oxc-btn-ghost { background: transparent; color: var(--oxc-muted); }
.oxc-btn-ghost:hover { background: var(--oxc-line-2); color: var(--oxc-ink); }
.oxc-btn-outline { background: #fff; color: var(--oxc-ink); border-color: var(--oxc-line); }
.oxc-btn-outline:hover { border-color: var(--oxc-blue); color: var(--oxc-blue); background: #f3f8fe; }
.oxc-btn-danger-ghost { background:#fff; color: var(--oxc-muted); border-color: var(--oxc-line); }
.oxc-btn-danger-ghost:hover { background: var(--oxc-danger-bg); color: var(--oxc-danger); border-color: #fecaca; }

/* ============================================================
   ITEMS HEADER
   ============================================================ */
.oxc-items-head {
    display: flex; align-items: center; justify-content: space-between;
    margin: 1rem 0 .55rem;
    flex-wrap: wrap; gap: .35rem;
}
.oxc-section-title {
    font-size: .72rem; font-weight: 700;
    color: var(--oxc-muted); margin: 0;
    display: flex; align-items: center; gap: .4em;
    text-transform: uppercase; letter-spacing: .08em;
}
.oxc-section-title i { font-size: .85rem; color: var(--oxc-blue); }
.oxc-count-chip {
    background: var(--oxc-ink); color:#fff;
    font-size: .58rem; font-weight: 800;
    padding: .15em .55em; border-radius: 999px;
    margin-left: .25em; letter-spacing: .04em;
}
.oxc-link {
    color: var(--oxc-blue); font-size: .72rem; font-weight: 600; text-decoration: none;
    display: inline-flex; align-items: center; gap: .25em;
}
.oxc-link:hover { color: var(--oxc-accent); }

/* ============================================================
   LINE CARD — compact pro
   ============================================================ */
.oxc-line {
    margin-bottom: .55rem;
    transition: box-shadow .2s, border-color .15s, transform .12s;
    border-radius: var(--oxc-radius);
    /* overflow visible so the occupancy popover isn't clipped (overrides .oxc-card) */
    overflow: visible;
    position: relative;
}
/* Line body wraps the inner grid — keep its rounded corners crisp without clipping the popover */
.oxc-line-body { position: relative; }
.oxc-line .oxc-line-media { border-top-left-radius: var(--oxc-radius); border-bottom-left-radius: var(--oxc-radius); }
@media (max-width: 560px) {
    .oxc-line .oxc-line-media { border-radius: var(--oxc-radius) var(--oxc-radius) 0 0; }
}
.oxc-line::before {
    /* Subtle accent line on the left edge — premium-card cue */
    content: ''; position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px; background: var(--oxc-accent);
    opacity: 0; transition: opacity .15s;
}
.oxc-line:hover { border-color: #cfd5dd; box-shadow: var(--oxc-shadow-2); }
.oxc-line:hover::before { opacity: 1; }

.oxc-line-grid {
    display: grid;
    grid-template-columns: 132px 1fr;
    gap: 0;
}
@media (max-width: 720px) { .oxc-line-grid { grid-template-columns: 116px 1fr; } }
@media (max-width: 560px) { .oxc-line-grid { grid-template-columns: 1fr; } }

.oxc-line-media {
    position: relative; overflow: hidden;
    display: block;
    background: #eef0f3;
}
.oxc-line-media::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15,23,42,.5));
    pointer-events: none;
}
.oxc-line-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
    min-height: 100%;
    display: block;
}
.oxc-line-media:hover img { transform: scale(1.05); }
.oxc-line-badge {
    position: absolute; bottom: .35rem; left: .35rem;
    background: rgba(255,255,255,.96);
    color: var(--oxc-ink);
    font-size: .72rem; font-weight: 800;
    padding: .2em .5em; border-radius: 4px;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(15,23,42,.2);
    z-index: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -.005em;
}
.oxc-line-badge small {
    font-size: .5rem; color: var(--oxc-muted);
    font-weight: 600; margin-left: .12em;
    text-transform: uppercase; letter-spacing: .04em;
}
@media (max-width: 560px) {
    .oxc-line-media { aspect-ratio: 16/9; }
    .oxc-line-media img { min-height: 0; }
}

.oxc-line-body {
    padding: .65rem .8rem .75rem;
    display: flex; flex-direction: column;
    gap: .4rem;
}
.oxc-line-top {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: .5rem; flex-wrap: wrap;
}
.oxc-hotel-tag {
    font-size: .54rem; font-weight: 700;
    color: var(--oxc-muted);
    letter-spacing: .1em; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: .3em;
}
.oxc-hotel-tag i { color: var(--oxc-blue); font-size: .6rem; }
.oxc-stars {
    display: inline-flex; align-items: center; gap: .15em;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
    font-size: .55rem; font-weight: 800;
    padding: .15em .4em; border-radius: 3px;
    letter-spacing: .02em; line-height: 1;
    margin-right: .25em;
}
.oxc-stars i { color: #fff !important; font-size: .55rem !important; }
.oxc-room-name {
    font-size: .95rem; font-weight: 700;
    color: var(--oxc-ink); line-height: 1.2;
    margin: .1rem 0 0;
    letter-spacing: -.01em;
}
.oxc-line-badges { display: flex; gap: .25em; flex-wrap: wrap; align-items: center; }

.oxc-gst-pill {
    font-size: .58rem; font-weight: 700;
    padding: .2em .55em; border-radius: 3px;
    text-transform: uppercase; letter-spacing: .04em;
}
.oxc-gst-low { background: var(--oxc-success-bg); color: var(--oxc-success); border: 1px solid #bbf7d0; }
.oxc-gst-high { background: #fef3c7; color: #854d0e; border: 1px solid #fde68a; }

.oxc-avail-pill {
    font-size: .58rem; font-weight: 700;
    padding: .2em .55em; border-radius: 3px;
    display: inline-flex; align-items: center; gap: .25em;
    letter-spacing: .03em; text-transform: uppercase;
}
.oxc-avail-good { background: var(--oxc-success-bg); color: var(--oxc-success); border: 1px solid #bbf7d0; }
.oxc-avail-low  { background: #fff7ed; color: var(--oxc-warning); border: 1px solid #fed7aa; }
.oxc-avail-out  { background: var(--oxc-danger-bg); color: var(--oxc-danger); border: 1px solid #fecaca; }

.oxc-chips {
    display: flex; flex-wrap: wrap; gap: .25rem;
    padding: 0;
    background: transparent;
    border: 0;
}
.oxc-chip {
    display: inline-flex; align-items: center; gap: .3em;
    font-size: .6rem; font-weight: 600;
    background: var(--oxc-surface-2);
    border: 1px solid var(--oxc-line-2);
    color: var(--oxc-muted);
    padding: .18em .5em; border-radius: 4px;
}
.oxc-chip i { color: var(--oxc-blue); font-size: .65rem; }
.oxc-chip-accent {
    background: #fff7ed; color: #9a3412;
    border-color: #fed7aa;
}
.oxc-chip-accent i { color: var(--oxc-accent); }
.oxc-chip-accent small { color: #9a3412; font-weight: 500; opacity: .85; margin-left: .15em; }

/* (#1) Free cancellation chip */
.oxc-chip-cancel {
    background: var(--oxc-success-bg); color: var(--oxc-success);
    border-color: #bbf7d0;
}
.oxc-chip-cancel i { color: var(--oxc-success); }

/* (#9) Smart bundle suggestion chip — clickable feel */
.oxc-chip-bundle {
    background: linear-gradient(135deg, #eef4fb, #fff);
    border: 1px dashed var(--oxc-blue);
    color: var(--oxc-blue);
    cursor: help;
    font-weight: 700;
}
.oxc-chip-bundle i { color: var(--oxc-accent); }

/* (#15) Sold-out highlight on the line */
.oxc-line:has(.oxc-soldout) { border-color: #fecaca; }
.oxc-soldout {
    display: flex; align-items: center; gap: .55rem;
    padding: .5rem .65rem;
    background: var(--oxc-danger-bg);
    border: 1px solid #fecaca;
    border-radius: var(--oxc-radius-sm);
    color: #7f1d1d;
}
.oxc-soldout i { color: var(--oxc-danger); font-size: 1rem; flex-shrink: 0; }
.oxc-soldout strong { display: block; font-size: .76rem; line-height: 1.2; }
.oxc-soldout span { display: block; font-size: .66rem; color: #991b1b; margin-top: .15rem; }

/* (#3) Line subtotal toggle + breakdown collapse */
.oxc-toggle-bd { cursor: pointer; user-select: none; transition: background .12s; }
.oxc-toggle-bd:hover { background: var(--oxc-surface-2); border-radius: 4px; }
.oxc-bd-arrow { font-size: .65rem; margin-left: .15em; transition: transform .2s; opacity: .55; }
.oxc-toggle-bd.is-open .oxc-bd-arrow { transform: rotate(180deg); opacity: 1; }
.oxc-tax-preview {
    font-size: .5rem; color: var(--oxc-subtle);
    text-align: right; margin-top: .12rem;
    font-weight: 600; letter-spacing: .03em; text-transform: uppercase;
}
.oxc-line-breakdown {
    background: var(--oxc-surface-2);
    border-top: 1px dashed var(--oxc-line);
    padding: .55rem .8rem;
    animation: oxcSlideDown .25s ease;
}
@keyframes oxcSlideDown { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
.oxc-bd-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: .15rem 0;
    font-size: .68rem; color: var(--oxc-muted); gap: .4rem;
}
.oxc-bd-row span:last-child { color: var(--oxc-ink); font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; }
.oxc-bd-row i { color: var(--oxc-accent); font-size: .7rem; margin-right: .15em; }
.oxc-bd-row--gst {
    margin-top: .15rem; padding-top: .25rem;
    border-top: 1px dashed var(--oxc-line);
}
.oxc-bd-row--gst span:first-child { color: #854d0e; font-weight: 700; }
.oxc-bd-row--gst span:last-child { color: #854d0e; }
.oxc-bd-row--total {
    margin-top: .25rem; padding-top: .35rem;
    border-top: 1.5px solid var(--oxc-ink);
    font-size: .8rem;
}
.oxc-bd-row--total span:first-child { color: var(--oxc-ink); font-weight: 700; }
.oxc-bd-row--total strong {
    color: var(--oxc-accent); font-weight: 800;
    font-size: .92rem; font-variant-numeric: tabular-nums;
}

/* (#11) Stay-length nudge */
.oxc-nudge {
    display: flex; gap: .65rem; align-items: center;
    margin-top: .65rem; padding: .65rem .85rem;
    background: linear-gradient(135deg, #fff7ed, #fff2e0);
    border: 1px dashed #fdba74;
    border-radius: var(--oxc-radius-sm);
    color: #7c2d12;
}
.oxc-nudge i { font-size: 1.2rem; color: var(--oxc-accent); flex-shrink: 0; }
.oxc-nudge strong { display: block; font-size: .8rem; line-height: 1.2; color: var(--oxc-ink); }
.oxc-nudge span { display: block; font-size: .68rem; color: #7c2d12; margin-top: .15rem; }
.oxc-nudge code { background: rgba(255,255,255,.7); padding: .05em .35em; border-radius: 3px; color: var(--oxc-accent); font-weight: 800; }

/* (#13) Inactive-line prompt */
.oxc-prompt {
    display: flex; gap: .55rem; align-items: center;
    margin-top: .55rem; padding: .55rem .8rem;
    background: #eef4fb;
    border: 1px solid #c8dcf2;
    border-radius: var(--oxc-radius-sm);
    color: #1e3a8a; font-size: .76rem;
}
.oxc-prompt i { color: var(--oxc-blue); font-size: 1rem; }

/* (#12) Loading skeleton — replace flat opacity dim during smoothRefresh */
body.oxc-refreshing .oxc-body { opacity: 1 !important; }
body.oxc-refreshing .oxc-line,
body.oxc-refreshing .oxc-summary,
body.oxc-refreshing .oxc-addons {
    position: relative; overflow: hidden;
}
body.oxc-refreshing .oxc-line::after,
body.oxc-refreshing .oxc-summary::after,
body.oxc-refreshing .oxc-addons::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.45) 50%, transparent 100%);
    animation: oxcShimmer 1.1s linear infinite;
    pointer-events: none;
    z-index: 5;
}
@keyframes oxcShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ============================================================
   LINE CONTROLS
   ============================================================ */
/* Controls grid — Occupancy chip + Meal + Totals + Actions */
.oxc-controls {
    display: grid;
    grid-template-columns: minmax(220px, 1.4fr) minmax(150px, 1fr) auto auto;
    grid-template-areas: "occ meal totals actions";
    gap: .55rem;
    align-items: center;
    margin-top: .15rem;
    padding-top: .55rem;
    border-top: 1px solid var(--oxc-line-2);
    position: relative;
}
.oxc-occ           { grid-area: occ; position: relative; }
.oxc-control-meal  { grid-area: meal; }
.oxc-line-totals   { grid-area: totals; }
.oxc-line-actions  { grid-area: actions; }
@media (max-width: 760px) {
    .oxc-controls {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "occ occ"
            "meal meal"
            "totals actions";
    }
}
@media (max-width: 480px) {
    .oxc-controls {
        grid-template-columns: 1fr;
        grid-template-areas:
            "occ"
            "meal"
            "totals"
            "actions";
    }
}

/* ===== Occupancy summary trigger chip ===== */
.oxc-occ-trigger {
    display: inline-flex; align-items: center; gap: .55rem;
    background: #fff;
    border: 1px solid var(--oxc-line);
    border-radius: var(--oxc-radius-sm);
    padding: .42rem .65rem;
    cursor: pointer;
    text-align: left;
    width: 100%;
    transition: border-color .12s, box-shadow .12s;
}
.oxc-occ-trigger:hover { border-color: var(--oxc-blue); box-shadow: 0 0 0 3px rgba(11,79,156,.08); }
.oxc-occ-trigger[aria-expanded="true"] {
    border-color: var(--oxc-blue);
    box-shadow: 0 0 0 3px rgba(11,79,156,.12);
}
.oxc-occ-trigger > i:first-child {
    color: var(--oxc-blue);
    font-size: 1rem;
    flex-shrink: 0;
}
.oxc-occ-trigger-main {
    display: flex; flex-direction: column;
    flex: 1; min-width: 0; line-height: 1.2;
}
.oxc-occ-rooms {
    font-size: .82rem; font-weight: 800; color: var(--oxc-ink);
    letter-spacing: -.005em;
    font-variant-numeric: tabular-nums;
}
.oxc-occ-summary {
    font-size: .62rem; color: var(--oxc-muted);
    margin-top: .1rem;
    font-weight: 600;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.oxc-occ-edit {
    color: var(--oxc-muted); font-size: .78rem;
    transition: color .12s;
}
.oxc-occ-trigger:hover .oxc-occ-edit { color: var(--oxc-blue); }

/* ===== Occupancy popover ===== */
.oxc-occ { position: relative; }
.oxc-occ-pop {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 380px;
    max-width: calc(100vw - 2rem);
    background: #fff;
    border: 1px solid var(--oxc-line);
    border-radius: var(--oxc-radius);
    box-shadow: 0 12px 32px rgba(15,23,42,.16), 0 2px 6px rgba(15,23,42,.08);
    z-index: 9999;
    animation: oxcPopIn .18s ease;
}
/* When teleported to body for stacking-context safety */
.oxc-occ-pop.oxc-occ-pop--floating {
    position: fixed;
    z-index: 10050;
}
@keyframes oxcPopIn { from { opacity: 0; transform: translateY(-6px) scale(.98); } to { opacity: 1; transform: none; } }
.oxc-occ-pop-head {
    display: flex; justify-content: space-between; align-items: center;
    padding: .65rem .85rem;
    background: var(--oxc-surface-2);
    border-bottom: 1px solid var(--oxc-line-2);
    border-radius: var(--oxc-radius) var(--oxc-radius) 0 0;
}
.oxc-occ-pop-head strong { font-size: .8rem; color: var(--oxc-ink); }
.oxc-occ-cap {
    font-size: .58rem; font-weight: 700; letter-spacing: .04em;
    text-transform: uppercase; color: var(--oxc-muted);
    background: #fff; border: 1px solid var(--oxc-line);
    padding: .15em .5em; border-radius: 999px;
}

.oxc-occ-pop-grid { padding: .35rem 0; }
.oxc-occ-row {
    display: flex; justify-content: space-between; align-items: center;
    gap: .85rem;
    padding: .55rem .85rem;
    border-bottom: 1px solid var(--oxc-line-2);
}
.oxc-occ-row:last-child { border-bottom: 0; }
.oxc-occ-row-info { min-width: 0; line-height: 1.25; }
.oxc-occ-row-info strong {
    display: block;
    font-size: .82rem; font-weight: 700; color: var(--oxc-ink);
    letter-spacing: -.005em;
}
.oxc-occ-row-info strong small { font-size: .7rem; color: var(--oxc-muted); font-weight: 500; margin-left: .15em; }
.oxc-occ-row-info span {
    display: block;
    font-size: .62rem; color: var(--oxc-muted);
    margin-top: .1rem;
}
.oxc-occ-row .oxc-stepper { flex-shrink: 0; }

.oxc-occ-pop-foot {
    display: flex; justify-content: space-between; align-items: center;
    padding: .55rem .85rem;
    background: var(--oxc-surface-2);
    border-top: 1px solid var(--oxc-line-2);
    border-radius: 0 0 var(--oxc-radius) var(--oxc-radius);
}
.oxc-occ-pop-foot > span {
    font-size: .72rem; color: var(--oxc-muted);
    display: inline-flex; align-items: center; gap: .35em;
}
.oxc-occ-pop-foot i { color: var(--oxc-blue); }
.oxc-occ-pop-foot strong.oxc-occ-total {
    color: var(--oxc-ink); font-size: .9rem; font-weight: 800;
    font-variant-numeric: tabular-nums; margin-right: .12em;
}

@media (max-width: 480px) {
    .oxc-occ-pop {
        position: fixed;
        top: auto; bottom: 0; left: 0; right: 0;
        width: 100%; max-width: 100%;
        border-radius: var(--oxc-radius) var(--oxc-radius) 0 0;
        animation: oxcSheetUp .22s ease;
    }
    @keyframes oxcSheetUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
}
.oxc-control-qty   { grid-area: qty; }
.oxc-control-ad    { grid-area: ad; }
.oxc-control-eb    { grid-area: eb; }
.oxc-control-cwb   { grid-area: cwb; }
.oxc-control-child { grid-area: child; }
.oxc-control-inf   { grid-area: inf; }
.oxc-control-meal  { grid-area: meal; }
.oxc-line-totals   { grid-area: totals; }
.oxc-line-actions  { grid-area: actions; }

@media (max-width: 1280px) {
    .oxc-controls {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
        grid-template-areas:
            "qty ad eb cwb child inf"
            "meal meal meal meal meal meal"
            "totals totals totals totals actions actions";
    }
    .oxc-line-totals { text-align: left !important; padding-left: 0 !important; border-left: 0 !important; padding-top: .55rem; border-top: 1px solid var(--oxc-line-2); }
    .oxc-line-actions { justify-content: flex-end; padding-top: .55rem; border-top: 1px solid var(--oxc-line-2); }
}
@media (max-width: 760px) {
    .oxc-controls {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-areas:
            "qty ad eb"
            "cwb child inf"
            "meal meal meal"
            "totals totals actions";
    }
}
@media (max-width: 480px) {
    .oxc-controls {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "qty ad"
            "eb cwb"
            "child inf"
            "meal meal"
            "totals totals"
            "actions actions";
    }
}

.oxc-control-label {
    display: block;
    font-size: .52rem; font-weight: 700;
    color: var(--oxc-muted);
    text-transform: uppercase; letter-spacing: .06em;
    margin-bottom: .15rem; line-height: 1.15;
}

/* Steppers — slim 26px */
.oxc-stepper {
    display: inline-flex; align-items: center;
    background: #fff;
    border: 1px solid var(--oxc-line);
    border-radius: var(--oxc-radius-sm);
    overflow: hidden;
    height: 26px;
    transition: border-color .12s;
}
.oxc-stepper:hover { border-color: #cbd2db; }
.oxc-step-btn {
    border: 0;
    background: #fff;
    width: 22px; height: 24px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--oxc-blue);
    font-size: .78rem; font-weight: 700;
    cursor: pointer;
    transition: background .1s, color .1s;
}
.oxc-step-btn:disabled { color: #cbd2db; cursor: not-allowed; }
.oxc-step-btn:not(:disabled):hover { background: #f1f7ff; color: var(--oxc-blue-2); }
.oxc-step-btn:not(:disabled):active { background: #dde9f8; }
.oxc-stepper-input {
    width: 28px; border: 0; text-align: center;
    font-size: .74rem; font-weight: 800;
    color: var(--oxc-ink); background: transparent;
    padding: 0; appearance: textfield; height: 24px;
    border-left: 1px solid var(--oxc-line);
    border-right: 1px solid var(--oxc-line);
    font-variant-numeric: tabular-nums;
}
.oxc-stepper-input::-webkit-outer-spin-button,
.oxc-stepper-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.oxc-stepper-input:focus { outline: 0; }

.oxc-line-totals {
    text-align: right;
    padding-left: .5rem;
    border-left: 1px solid var(--oxc-line-2);
}
.oxc-line-total-lbl { font-size: .5rem; font-weight: 700; color: var(--oxc-muted); text-transform: uppercase; letter-spacing: .08em; }
.oxc-line-total-val {
    font-size: 1.05rem; font-weight: 800;
    color: var(--oxc-ink); line-height: 1;
    margin: .15rem 0 .1rem;
    font-variant-numeric: tabular-nums;
    letter-spacing: -.015em;
}
.oxc-line-total-sub {
    font-size: .58rem; color: var(--oxc-muted);
    display: flex; gap: .4em; justify-content: flex-end; flex-wrap: wrap;
}
.oxc-line-gst-hint {
    font-size: .5rem; color: var(--oxc-subtle);
    text-align: right; margin-top: .18rem;
    font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
}
.oxc-line-gst-hint i { color: var(--oxc-accent); }
.oxc-line-actions {
    display: flex; gap: .35rem; align-items: center;
    padding-left: .35rem;
}

/* ============================================================
   MEAL SELECT
   ============================================================ */
.oxc-control-meal { min-width: 140px; }
.oxc-meal-select {
    width: 100%;
    padding: .3rem .5rem; padding-right: 1.4rem;
    border: 1px solid var(--oxc-line);
    border-radius: var(--oxc-radius-sm);
    background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 16 16'><path fill='%235a6675' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") no-repeat right .5rem center;
    appearance: none; -webkit-appearance: none;
    font-size: .68rem; font-weight: 600;
    color: var(--oxc-ink);
    cursor: pointer; height: 26px;
    transition: border-color .12s, box-shadow .12s;
}
.oxc-meal-select:hover { border-color: #cbd2db; }
.oxc-meal-select:focus { border-color: var(--oxc-blue); box-shadow: 0 0 0 3px rgba(11,79,156,.12); outline: none; }
.oxc-meal-hint {
    font-size: .54rem !important;
    line-height: 1.3 !important;
    margin-top: .15rem !important;
    color: var(--oxc-warning) !important;
    font-weight: 600;
}

/* ============================================================
   SAVING / SAVED STATE
   ============================================================ */
.oxc-line-form { transition: background .25s; }
.oxc-line-form.is-saving { position: relative; }
.oxc-line-form.is-saving::after {
    content: ''; position: absolute; inset: -3px;
    border-radius: 12px; pointer-events: none;
    box-shadow: 0 0 0 2px rgba(11,79,156,.16) inset;
    animation: oxcPulse .9s ease-in-out infinite;
}
@keyframes oxcPulse { 0%,100% { opacity: .55; } 50% { opacity: 1; } }
.oxc-line-form.just-saved { animation: oxcJustSaved .85s ease; }
@keyframes oxcJustSaved {
    0%   { background: rgba(21,128,61,.06); }
    100% { background: transparent; }
}
.oxc-saving-pill {
    display: inline-flex; align-items: center;
    font-size: .56rem; font-weight: 700;
    padding: .2em .55em; border-radius: 3px;
    background: var(--oxc-success-bg); color: var(--oxc-success);
    border: 1px solid #bbf7d0;
    opacity: 0; transition: opacity .2s;
    letter-spacing: .04em; text-transform: uppercase;
}
.oxc-line-form.is-saved .oxc-saving-pill { opacity: 1; }
.oxc-line-form.is-saving .oxc-saving-pill {
    opacity: 1; background: #fef7ed; color: var(--oxc-warning); border-color: #fed7aa;
}
.oxc-line-form.is-saving .oxc-saving-pill i { display: none; }
button.is-busy { opacity: .65; cursor: progress; }

body.oxc-refreshing .oxc-body { transition: opacity .12s; opacity: .94; cursor: progress; }

/* ============================================================
   ADD-ON CHARGES
   ============================================================ */
.oxc-addons { overflow: hidden; }
.oxc-addon-list { list-style: none; margin: 0; padding: 0; }
.oxc-addon-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: .65rem .9rem;
    border-top: 1px solid var(--oxc-line-2);
    gap: .65rem;
}
.oxc-addon-row:first-child { border-top: 0; }
.oxc-addon-name { font-weight: 700; color: var(--oxc-ink); font-size: .8rem; }
.oxc-addon-desc { font-size: .68rem; color: var(--oxc-muted); line-height: 1.4; margin-top: .1rem; }
.oxc-addon-type { color: var(--oxc-subtle); font-size: .6rem; margin-top: .12rem; font-weight: 600; }
.oxc-addon-right { display: flex; align-items: center; gap: .55rem; }
.oxc-addon-amt { font-size: .85rem; color: var(--oxc-ink); white-space: nowrap; font-weight: 800; font-variant-numeric: tabular-nums; }

/* ============================================================
   CART FOOTER
   ============================================================ */
.oxc-cart-footer {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: .7rem; padding: .55rem .85rem;
    background: #fff; border: 1px solid var(--oxc-line);
    border-radius: var(--oxc-radius-sm);
}

/* ============================================================
   FEATURED ROOMS
   ============================================================ */
.oxc-featured {
    margin-top: 1.5rem;
    padding: 1.1rem 1.1rem 1.2rem;
    background: var(--oxc-surface);
    border: 1px solid var(--oxc-line);
    border-radius: var(--oxc-radius);
    box-shadow: var(--oxc-shadow-1);
}
.oxc-featured-head {
    display: flex; justify-content: space-between; align-items: flex-end;
    gap: .65rem; flex-wrap: wrap;
    margin-bottom: .85rem;
    padding-bottom: .6rem;
    border-bottom: 1px solid var(--oxc-line-2);
}
.oxc-featured-eyebrow {
    display: inline-flex; align-items: center; gap: .4em;
    font-size: .6rem; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--oxc-accent);
    margin-bottom: .25rem;
}
.oxc-featured-eyebrow i { color: var(--oxc-accent); font-size: .72rem; }
.oxc-featured-title {
    font-size: .98rem; font-weight: 700;
    color: var(--oxc-ink); margin: 0;
    letter-spacing: -.005em;
}
.oxc-featured-all {
    font-size: .7rem; font-weight: 700;
    color: var(--oxc-blue); text-decoration: none;
    text-transform: uppercase; letter-spacing: .04em;
    display: inline-flex; align-items: center; gap: .3em;
}
.oxc-featured-all:hover { color: var(--oxc-accent); }

.oxc-featured-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .6rem;
}
@media (max-width: 991.98px) { .oxc-featured-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 420px)    { .oxc-featured-grid { grid-template-columns: 1fr; } }

.oxc-featured-card {
    display: flex; flex-direction: column;
    background: #fff;
    border: 1px solid var(--oxc-line);
    border-radius: var(--oxc-radius-sm);
    overflow: hidden;
    transition: border-color .15s, box-shadow .15s, transform .12s;
}
.oxc-featured-card:hover {
    border-color: rgba(242,101,34,.4);
    box-shadow: 0 6px 16px rgba(15,23,42,.07);
    transform: translateY(-1px);
}
.oxc-featured-media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: #eef0f3; }
.oxc-featured-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.oxc-featured-card:hover .oxc-featured-media img { transform: scale(1.04); }
.oxc-featured-price {
    position: absolute; bottom: .4rem; left: .4rem;
    background: rgba(15,23,42,.88); color: #fff;
    font-size: .72rem; font-weight: 800;
    padding: .22em .55em; border-radius: 4px;
    font-variant-numeric: tabular-nums;
    backdrop-filter: blur(4px);
}
.oxc-featured-price small { font-size: .55rem; font-weight: 500; opacity: .75; margin-left: .15em; }

.oxc-featured-body {
    padding: .55rem .65rem .65rem;
    display: flex; flex-direction: column; gap: .4rem;
    flex: 1;
}
.oxc-featured-name {
    font-size: .8rem; font-weight: 700;
    color: var(--oxc-ink); line-height: 1.25;
    letter-spacing: -.005em;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden;
}
.oxc-featured-specs {
    display: flex; flex-wrap: wrap; gap: .25rem .55rem;
    font-size: .62rem; color: var(--oxc-muted);
}
.oxc-featured-specs span { display: inline-flex; align-items: center; gap: .25em; }
.oxc-featured-specs i { color: var(--oxc-blue); font-size: .7rem; }
.oxc-featured-gst {
    background: #fef3c7; color: #854d0e;
    border: 1px solid #fde68a;
    padding: .12em .42em; border-radius: 3px;
    font-weight: 700; letter-spacing: .03em;
    font-size: .55rem !important;
    text-transform: uppercase;
}
.oxc-featured-add {
    margin-top: auto;
    background: var(--oxc-accent); color: #fff;
    border: 0; border-radius: 4px;
    padding: .42rem .6rem;
    font-size: .72rem; font-weight: 700;
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    gap: .3em;
    transition: background .15s;
}
.oxc-featured-add i { font-size: .78rem; }
.oxc-featured-add:hover { background: var(--oxc-accent-2); }

/* ============================================================
   EMPTY STATE
   ============================================================ */
.oxc-empty { padding: 2.75rem 1.5rem; text-align: center; }
.oxc-empty-illus {
    position: relative; display: inline-flex;
    width: 78px; height: 78px;
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    border-radius: 50%;
    align-items: center; justify-content: center;
    margin-bottom: .9rem;
}
.oxc-empty-illus i { font-size: 2.1rem; color: var(--oxc-accent); }
.oxc-empty-badge {
    position: absolute; top: -4px; right: -4px;
    background: var(--oxc-blue); color: #fff;
    font-size: .62rem; font-weight: 800;
    width: 24px; height: 24px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    border: 2.5px solid #fff;
}
.oxc-empty-title { font-weight: 700; font-size: 1.1rem; color: var(--oxc-ink); margin-bottom: .35rem; letter-spacing: -.01em; }
.oxc-empty-text { color: var(--oxc-muted); font-size: .82rem; max-width: 26rem; margin: 0 auto 1rem; line-height: 1.55; }

/* Empty-state suggestion grid — popular hotels */
.oxc-empty-suggest {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px dashed var(--oxc-line);
    text-align: left;
}
.oxc-empty-suggest-head { text-align: center; margin-bottom: 1rem; }
.oxc-empty-suggest-eyebrow {
    display: inline-flex; align-items: center; gap: .35em;
    padding: .25em .7em; border-radius: 999px;
    background: rgba(242,101,34,.10); color: #b34516;
    font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    margin-bottom: .5rem;
}
.oxc-empty-suggest-sub { display: block; font-size: .76rem; color: var(--oxc-muted); }
.oxc-empty-suggest-grid {
    display: grid; gap: .75rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 767px) { .oxc-empty-suggest-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .oxc-empty-suggest-grid { grid-template-columns: 1fr; } }

.oxc-empty-suggest-card {
    display: flex; flex-direction: column;
    border: 1px solid var(--oxc-line);
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    background: #fff;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.oxc-empty-suggest-card:hover {
    transform: translateY(-2px);
    border-color: rgba(242,101,34,.4);
    box-shadow: 0 8px 22px -10px rgba(15,23,42,.18);
}
.oxc-empty-suggest-img {
    position: relative; aspect-ratio: 16 / 10;
    overflow: hidden; background: #f1f5f9;
}
.oxc-empty-suggest-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .35s ease;
}
.oxc-empty-suggest-card:hover .oxc-empty-suggest-img img { transform: scale(1.05); }
.oxc-empty-suggest-stars {
    position: absolute; top: .4rem; left: .4rem;
    background: rgba(15,23,42,.85); color: #fff;
    font-size: .58rem; font-weight: 700;
    padding: .15em .5em; border-radius: 999px;
    display: inline-flex; align-items: center; gap: .25em;
}
.oxc-empty-suggest-stars i { color: #f59e0b; }
.oxc-empty-suggest-body { padding: .5rem .65rem .65rem; }
.oxc-empty-suggest-body strong {
    display: block; font-size: .76rem; font-weight: 700;
    color: var(--oxc-ink); line-height: 1.25;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.oxc-empty-suggest-body small {
    display: inline-flex; align-items: center; gap: .25em;
    margin-top: .15rem;
    font-size: .62rem; color: var(--oxc-muted);
}
.oxc-empty-suggest-body small i { color: var(--oxc-accent); font-size: .9em; }

/* ============================================================
   SUMMARY SIDEBAR
   ============================================================ */
.oxc-summary-wrap { position: sticky; top: 90px; }
@media (max-width: 991px) { .oxc-summary-wrap { position: static; } }
.oxc-summary {
    border: 1px solid var(--oxc-line);
    box-shadow: var(--oxc-shadow-2);
}
.oxc-summary-head {
    display: flex; align-items: center; gap: .6rem;
    padding: .85rem 1rem;
    border-bottom: 1px solid var(--oxc-line-2);
    background: var(--oxc-surface-2);
}
.oxc-summary-body { padding: .85rem 1rem 1rem; }

.oxc-mini-lines {
    background: var(--oxc-surface-2);
    border: 1px solid var(--oxc-line-2);
    border-radius: var(--oxc-radius-sm);
    padding: .35rem .6rem;
    margin-bottom: .75rem;
    max-height: 320px; overflow-y: auto;
}
.oxc-mini-line {
    padding: .45rem 0;
    border-bottom: 1px solid var(--oxc-line-2);
}
.oxc-mini-line:last-child { border-bottom: 0; }
.oxc-mini-line-head {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: .45rem;
}
.oxc-mini-line-name { font-size: .76rem; color: var(--oxc-ink); line-height: 1.3; flex: 1; min-width: 0; }
.oxc-mini-line-name strong { display: inline; font-weight: 700; }
.oxc-mini-line-sub { font-size: .58rem; color: var(--oxc-muted); margin-top: .08rem; }
.oxc-mini-line-amt { font-size: .8rem; font-weight: 800; color: var(--oxc-ink); white-space: nowrap; font-variant-numeric: tabular-nums; }

.oxc-mini-line-detail {
    margin-top: .3rem;
    padding: .35rem .55rem;
    background: #fff;
    border: 1px solid var(--oxc-line-2);
    border-radius: 5px;
}
.oxc-mini-detail-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: .1rem 0;
    font-size: .62rem;
    color: var(--oxc-muted);
    line-height: 1.3;
    gap: .4rem;
}
.oxc-mini-detail-row span:last-child {
    color: var(--oxc-ink); font-weight: 600;
    font-variant-numeric: tabular-nums; white-space: nowrap;
}
.oxc-mini-detail-row i { color: var(--oxc-accent); font-size: .68rem; margin-right: .15em; }
.oxc-mini-detail-row--gst {
    margin-top: .15rem;
    padding-top: .25rem;
    border-top: 1px dashed var(--oxc-line);
}
.oxc-mini-detail-row--gst span:first-child { color: #854d0e; font-weight: 700; }
.oxc-mini-detail-row--gst span:last-child { color: #854d0e; }

/* Coupon nudge banner — subtotal is close to a coupon's minimum */
.oxc-coupon-nudge {
    display: flex; align-items: center; gap: .55rem;
    padding: .55rem .7rem;
    margin: 0 0 .65rem;
    background: linear-gradient(135deg, #fff7ed, #fed7aa);
    border: 1px dashed #fb923c;
    border-radius: 8px;
    color: #7c2d12;
    line-height: 1.3;
}
.oxc-coupon-nudge-ico {
    width: 28px; height: 28px; flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
    display: inline-grid; place-items: center;
    font-size: .8rem;
    box-shadow: 0 4px 10px -3px rgba(242,101,34,.55);
}
.oxc-coupon-nudge-text { display: flex; flex-direction: column; min-width: 0; font-size: .7rem; }
.oxc-coupon-nudge-text strong { color: #7c2d12; font-weight: 800; font-size: .76rem; }
.oxc-coupon-nudge-text span { color: #9a3412; font-size: .68rem; }
.oxc-coupon-nudge-text code {
    background: rgba(255,255,255,.7);
    border: 1px solid rgba(124,45,18,.18);
    color: #7c2d12; font-weight: 800;
    padding: 0 .35em; border-radius: 4px;
    font-size: .92em;
}

.oxc-summary-rows { font-size: .76rem; }
.oxc-summary-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: .35rem 0; color: var(--oxc-muted);
    border-bottom: 1px solid var(--oxc-line-2);
}
.oxc-summary-row:last-child { border-bottom: 0; }
.oxc-summary-row strong { color: var(--oxc-ink); font-weight: 700; font-variant-numeric: tabular-nums; }
.oxc-summary-row--discount { color: var(--oxc-success); }
.oxc-summary-row--discount strong { color: var(--oxc-success); }

/* Grand total — flat dark navy with orange accent number */
.oxc-grand {
    display: flex; justify-content: space-between; align-items: center;
    margin: .9rem 0 .35rem;
    padding: .85rem 1rem;
    background: var(--oxc-ink);
    color: #fff;
    border-radius: var(--oxc-radius-sm);
}
.oxc-grand-lbl { font-weight: 700; font-size: .85rem; letter-spacing: -.005em; }
.oxc-grand-sub { font-size: .56rem; color: rgba(255,255,255,.55); letter-spacing: .06em; text-transform: uppercase; margin-top: .12rem; }
.oxc-grand-amt {
    font-size: 1.25rem; font-weight: 800; letter-spacing: -.015em;
    color: var(--oxc-accent); font-variant-numeric: tabular-nums;
}

/* ============================================================
   COUPON
   ============================================================ */
.oxc-coupon-form { margin-top: .5rem; }
.oxc-coupon-wrap {
    display: flex; align-items: center;
    background: var(--oxc-surface-2);
    border: 1px dashed #cbd2db;
    border-radius: var(--oxc-radius-sm);
    padding: .2rem;
    transition: all .12s;
}
.oxc-coupon-wrap:focus-within { border-color: var(--oxc-blue); border-style: solid; }
.oxc-coupon-wrap.is-applied {
    background: var(--oxc-success-bg);
    border-color: var(--oxc-success);
    border-style: solid;
}
.oxc-coupon-ico {
    font-size: .92rem; color: var(--oxc-muted);
    padding: 0 .55rem;
}
.oxc-coupon-wrap.is-applied .oxc-coupon-ico { color: var(--oxc-success); }
.oxc-coupon-input {
    flex: 1; border: 0; background: transparent;
    font-size: .8rem; font-weight: 600;
    color: var(--oxc-ink);
    padding: .35rem .25rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    min-width: 0;
}
.oxc-coupon-input::placeholder { color: var(--oxc-subtle); font-weight: 500; letter-spacing: 0; text-transform: none; }
.oxc-coupon-input:focus { outline: 0; }
.oxc-coupon-btn {
    background: var(--oxc-ink); color: #fff;
    border: 0; border-radius: 4px;
    padding: .35rem .8rem;
    font-size: .66rem; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase;
    cursor: pointer; transition: background .12s;
}
.oxc-coupon-btn:hover { background: var(--oxc-accent); }
.oxc-coupon-msg { font-size: .65rem; margin-top: .35rem; font-weight: 600; }
.oxc-coupon-msg--ok { color: var(--oxc-success); }
.oxc-coupon-msg--err { color: var(--oxc-danger); }

/* ============================================================
   CHECKOUT CTA
   ============================================================ */
.oxc-checkout-btn {
    display: flex; align-items: center; justify-content: space-between;
    gap: .5rem;
    margin-top: .85rem;
    padding: .82rem 1rem;
    background: var(--oxc-accent);
    color: #fff;
    border-radius: var(--oxc-radius-sm);
    text-decoration: none;
    font-weight: 700; font-size: .85rem;
    transition: background .15s, box-shadow .15s, transform .12s;
    box-shadow: 0 2px 6px -2px rgba(242,101,34,.4);
}
.oxc-checkout-btn:hover {
    background: var(--oxc-accent-2); color: #fff;
    box-shadow: 0 6px 14px -4px rgba(242,101,34,.5);
    transform: translateY(-1px);
}
.oxc-checkout-lbl { display: inline-flex; align-items: center; }
.oxc-checkout-amt { font-size: .92rem; font-weight: 800; letter-spacing: -.01em; font-variant-numeric: tabular-nums; }
.oxc-checkout-arrow { font-size: 1.1rem; transition: transform .15s; }
.oxc-checkout-btn:hover .oxc-checkout-arrow { transform: translateX(3px); }
.oxc-checkout-btn.is-disabled { pointer-events: none; opacity: .55; filter: grayscale(.3); }

/* ============================================================
   TRUST + NOTES
   ============================================================ */
.oxc-trust {
    display: flex; justify-content: space-around;
    margin-top: .85rem; padding-top: .75rem;
    border-top: 1px solid var(--oxc-line-2);
    gap: .35rem;
}
.oxc-trust-item {
    display: inline-flex; flex-direction: column; align-items: center;
    gap: .2rem;
    font-size: .6rem; font-weight: 600; color: var(--oxc-muted);
    text-align: center; flex: 1;
}
.oxc-trust-item i { font-size: .95rem; color: var(--oxc-success); }

.oxc-gst-note {
    margin-top: .65rem;
    padding: .5rem .7rem;
    background: var(--oxc-surface-2);
    border: 1px solid var(--oxc-line-2);
    border-radius: 5px;
    font-size: .62rem; color: var(--oxc-muted);
    text-align: center; line-height: 1.5;
}

.oxc-promo-card {
    display: flex; gap: .6rem; align-items: center;
    margin-top: .75rem;
    padding: .65rem .85rem;
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    border: 1px dashed #fed7aa;
    border-radius: var(--oxc-radius-sm);
    color: #7c2d12; font-size: .74rem;
}
.oxc-promo-icon {
    width: 32px; height: 32px; border-radius: 6px;
    background: var(--oxc-accent); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: .92rem; flex-shrink: 0;
    box-shadow: 0 4px 10px -4px rgba(242,101,34,.5);
}
.oxc-promo-card strong { font-size: .76rem; }
.oxc-promo-card .small { font-size: .64rem; color: #9a3412; margin-top: .1rem; }
.oxc-promo-card code {
    background: rgba(255,255,255,.7);
    padding: .08em .4em; border-radius: 3px;
    color: var(--oxc-accent); font-weight: 800;
    letter-spacing: .04em; font-size: .7rem;
}

.oxc-summary-empty { padding: .85rem 0; opacity: .5; }
.oxc-summary-empty i { font-size: 2rem; color: var(--oxc-muted); }

/* ============================================================
   SMALL SCREENS
   ============================================================ */
@media (max-width: 575px) {
    body.cart-page { font-size: 12.5px; }
    .oxc-title { font-size: 1.25rem; }
    .oxc-hero { padding: 1rem 0 1.2rem; }
    .oxc-line-total-val { font-size: .94rem; }
    .oxc-room-name { font-size: .92rem; }
    .oxc-step-lbl { display: none; }
    .oxc-progress-steps { padding: .35rem .65rem; }
}
