/* ============================================================================
   BOOKING MODAL V2 (prototype, 2026-07-17) — mock: Downloads/booking-flow_1.html
   Desktop-only redesign of the card booking modal: 1080px shell, 4-step flow
   (Date & time → Details → Extras → Payment) + right "Your booking" sidebar.
   Fonts per brand policy: Plus Jakarta Sans + JetBrains Mono kickers (mock's
   Oswald/Inter deliberately NOT used). Brand red #FF2800.
   Gated by JS to allow-listed products + >900px. Namespace: t4-bm2.
   ========================================================================== */

.t4-bm2 {
	--bm2-red: #FF2800;
	--bm2-red-soft: #ffece7;
	--bm2-ink: #141414;
	--bm2-body: #4a4a4a;
	--bm2-muted: #8a8a8a;
	--bm2-line: #e8e3d9;
	--bm2-line2: #f0ece4;
	--bm2-page: #f7f3ec;
	--bm2-card: #fff;
	--bm2-ok: #1F7A3D;
	--bm2-ok-bg: #e9f5ec;
	--bm2-warn: #B26A00;
	--bm2-err: #C4271B;
	position: fixed;
	inset: 0;
	z-index: 1200;
	background: rgba(20, 16, 10, .62);
	backdrop-filter: blur(5px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	font-family: var(--t4-sans);
	color: var(--bm2-ink);
	overflow-y: auto;
	overscroll-behavior: contain; /* wheel over the scrim must not scroll the page behind */
}
.t4-bm2[hidden] { display: none; }
/* pseudo-elements included: the radio ::before circles grow their border on select —
   without border-box they inflate outward and the cell jerks (user 2026-07-17) */
.t4-bm2 *, .t4-bm2 *::before, .t4-bm2 *::after { box-sizing: border-box; }
.t4-bm2 button { font-family: inherit; }

.t4-bm2__shell {
	max-width: 1080px;
	width: 100%;
	background: var(--bm2-card);
	border: 1px solid var(--bm2-line);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, .2);
	position: relative;
	margin: auto;
	animation: t4bm2In .32s cubic-bezier(.22, 1, .36, 1) both;
}
@keyframes t4bm2In { from { opacity: 0; transform: translateY(14px) scale(.99); } to { opacity: 1; transform: none; } }

/* ================= HEADER ================= */
.t4-bm2__hd { padding: 20px 28px 0; border-bottom: 1px solid var(--bm2-line); }
.t4-bm2__hdtop { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.t4-bm2__eyebrow {
	font-family: var(--t4-mono);
	font-size: var(--t4-fs-micro); letter-spacing: 2px; color: var(--bm2-red);
	text-transform: uppercase; font-weight: 600;
}
.t4-bm2__title {
	font-size: var(--t4-fs-h4); font-weight: 800; letter-spacing: .2px;
	text-transform: uppercase; margin: 5px 0 0; line-height: 1.1;
}
.t4-bm2__meta { font-size: var(--t4-fs-micro); color: var(--bm2-muted); margin-top: 5px; }
.t4-bm2__hdright { display: flex; align-items: flex-start; gap: 16px; flex: none; }
.t4-bm2__hdprice { text-align: right; }
.t4-bm2__hdprice .p { font-size: var(--t4-fs-h4); font-weight: 800; line-height: 1; }
.t4-bm2__hdprice .p s { font-size: var(--t4-fs-body); font-weight: 600; color: var(--bm2-muted); margin-right: 7px; }
.t4-bm2__hdprice .u { font-family: var(--t4-mono); font-size: var(--t4-fs-micro); color: var(--bm2-muted); letter-spacing: .5px; margin-top: 3px; }
.t4-bm2__close {
	width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--bm2-line);
	background: var(--bm2-page); display: flex; align-items: center; justify-content: center;
	cursor: pointer; flex: none; transition: .12s;
}
.t4-bm2__close:hover { border-color: #c9c2b4; }
.t4-bm2__close svg { width: 15px; height: 15px; stroke: var(--bm2-body); fill: none; stroke-width: 2; }

/* steps indicator */
.t4-bm2__steps { display: flex; align-items: center; margin-top: 16px; }
.t4-bm2__st {
	display: flex; align-items: center; gap: 9px; padding: 12px 0; flex: none;
	cursor: pointer; background: none; border: none;
}
.t4-bm2__st .dot {
	width: 21px; height: 21px; border-radius: 50%; border: 1.5px solid #d6d0c4;
	display: flex; align-items: center; justify-content: center;
	font-size: var(--t4-fs-micro); font-weight: 600; color: var(--bm2-muted); transition: .15s; flex: none;
}
.t4-bm2__st .nm {
	font-family: var(--t4-mono);
	font-size: var(--t4-fs-micro); letter-spacing: 1.2px; text-transform: uppercase;
	color: var(--bm2-muted); font-weight: 600;
}
.t4-bm2__st .dot svg { width: 11px; height: 11px; stroke: #fff; fill: none; stroke-width: 3; }
.t4-bm2__st.done .dot { background: var(--bm2-ok); border-color: var(--bm2-ok); }
.t4-bm2__st.done .nm { color: var(--bm2-body); }
.t4-bm2__st.on .dot { background: var(--bm2-red); border-color: var(--bm2-red); color: #fff; }
.t4-bm2__st.on .nm { color: var(--bm2-ink); }
.t4-bm2__st[disabled] { cursor: default; }
.t4-bm2__stline { flex: 1; height: 1.5px; background: #e6e1d7; margin: 0 12px; min-width: 24px; }
.t4-bm2__stline.done { background: var(--bm2-ok); }

/* ================= LAYOUT ================= */
/* Fixed-height window (user: the modal must NOT resize between steps) —
   steps scroll INSIDE the pane, the shell stays put. */
.t4-bm2__main { display: grid; grid-template-columns: minmax(0, 1fr) 316px; height: min(620px, calc(100vh - 232px)); }
/* scrollbar-gutter: stable — a scrollbar popping in/out (packages expanding etc.)
   must not steal width and nudge the whole pane (user 2026-07-17) */
.t4-bm2__pane { padding: 20px 28px 12px; min-width: 0; height: 100%; overflow-y: auto; overscroll-behavior: contain; scrollbar-gutter: stable; }
/* sidebar: no visible scrollbar ever (content is kept compact enough to fit; if a
   short viewport still overflows it stays scrollable — just without the bar) */
.t4-bm2__side { min-width: 0; height: 100%; overflow-y: auto; overscroll-behavior: contain; scrollbar-width: none; }
.t4-bm2__side::-webkit-scrollbar { display: none; }
.t4-bm2__pane::-webkit-scrollbar { width: 8px; }
.t4-bm2__pane::-webkit-scrollbar-thumb { background: #ddd6c8; border-radius: 8px; }
.t4-bm2__pane::-webkit-scrollbar-track { background: transparent; }
.t4-bm2__side {
	border-left: 1px solid var(--bm2-line); background: #fbf9f5;
	padding: 18px 22px 16px; display: flex; flex-direction: column;
}
.t4-bm2__secl {
	font-family: var(--t4-mono);
	font-size: var(--t4-fs-micro); letter-spacing: 1.8px; color: var(--bm2-muted);
	text-transform: uppercase; font-weight: 600; margin-bottom: 10px;
}
.t4-bm2__sec + .t4-bm2__sec { margin-top: 24px; }
.t4-bm2__subnote { font-size: var(--t4-fs-small); color: var(--bm2-muted); margin: -4px 0 14px; }

/* ================= STEP 1 (proxy) ================= */
.t4-bm2__datehd { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.t4-bm2__datehd .t4-bm2__secl { margin: 0; }
.t4-bm2__calbtn {
	display: inline-flex; align-items: center; gap: 7px; background: var(--bm2-card);
	border: 1px solid var(--bm2-line); border-radius: 9px; padding: 8px 13px;
	font-size: var(--t4-fs-micro); font-weight: 600; cursor: pointer; transition: .12s;
}
.t4-bm2__calbtn:hover { border-color: #c9c2b4; }
.t4-bm2__calbtn svg { width: 14px; height: 14px; stroke: var(--bm2-red); fill: none; stroke-width: 1.8; }

.t4-bm2__dates { display: flex; align-items: stretch; gap: 7px; }
.t4-bm2__arw {
	width: 30px; border: 1px solid var(--bm2-line); background: var(--bm2-card);
	border-radius: 9px; cursor: pointer; display: flex; align-items: center; justify-content: center; flex: none;
	transition: .12s;
}
.t4-bm2__arw:hover { border-color: #c9c2b4; }
.t4-bm2__arw:disabled { opacity: .35; cursor: not-allowed; }
.t4-bm2__arw svg { width: 14px; height: 14px; stroke: var(--bm2-body); fill: none; stroke-width: 2; }
.t4-bm2__drow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 7px; flex: 1; }
.t4-bm2__d {
	position: relative; border: 1px solid var(--bm2-line); background: var(--bm2-card);
	border-radius: 10px; padding: 9px 4px 8px; text-align: center; cursor: pointer; transition: .12s;
}
.t4-bm2__d:hover { border-color: #c9c2b4; }
.t4-bm2__d .dow { font-family: var(--t4-mono); font-size: var(--t4-fs-micro); letter-spacing: .8px; color: var(--bm2-muted); text-transform: uppercase; font-weight: 600; }
.t4-bm2__d .dd { font-size: var(--t4-fs-h4); font-weight: 800; line-height: 1.15; margin: 2px 0; }
.t4-bm2__d .mo { font-family: var(--t4-mono); font-size: var(--t4-fs-micro); letter-spacing: .8px; color: var(--bm2-muted); text-transform: uppercase; }
.t4-bm2__d.sel { background: var(--bm2-red); border-color: var(--bm2-red); }
.t4-bm2__d.sel .dow, .t4-bm2__d.sel .mo { color: rgba(255, 255, 255, .85); }
.t4-bm2__d.sel .dd { color: #fff; }
.t4-bm2__d .today {
	position: absolute; top: -7px; left: 50%; transform: translateX(-50%);
	background: #F5A623; color: #fff; font-size: 8px; font-weight: 600;
	letter-spacing: .5px; padding: 2px 6px; border-radius: 8px; white-space: nowrap;
}

.t4-bm2__slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.t4-bm2__slot {
	border: 1px solid var(--bm2-line); background: var(--bm2-card); border-radius: 10px;
	padding: 11px 12px; cursor: pointer; text-align: left; transition: .12s;
}
.t4-bm2__slot:hover { border-color: #c9c2b4; }
.t4-bm2__slot .t { font-size: var(--t4-fs-body); font-weight: 800; line-height: 1; }
.t4-bm2__slot .s { font-size: var(--t4-fs-micro); color: var(--bm2-muted); margin-top: 4px; }
.t4-bm2__slot .s.low { color: var(--bm2-warn); font-weight: 600; }
/* selected look = inset shadow, NOT a thicker border — border-width deltas shift layout */
.t4-bm2__slot.sel { border-color: var(--bm2-red); box-shadow: inset 0 0 0 1px var(--bm2-red); background: var(--bm2-red-soft); }
.t4-bm2__slot.sel .t { color: var(--bm2-red); }
.t4-bm2__slot:disabled { opacity: .4; cursor: not-allowed; }
.t4-bm2__slotsbox .t4-cutoff { margin: 0; }
.t4-bm2__loading { display: flex; align-items: center; gap: 10px; padding: 18px 4px; color: var(--bm2-body); font-size: var(--t4-fs-small); font-weight: 600; }
.t4-bm2__dots { display: inline-flex; gap: 4px; align-items: center; }
.t4-bm2__dots i {
	width: 6px; height: 6px; border-radius: 50%; background: var(--bm2-red); display: block;
	animation: t4bm2Dot 1.1s infinite ease-in-out;
}
.t4-bm2__dots i:nth-child(2) { animation-delay: .18s; }
.t4-bm2__dots i:nth-child(3) { animation-delay: .36s; }
@keyframes t4bm2Dot { 0%, 70%, 100% { opacity: .25; transform: translateY(0); } 32% { opacity: 1; transform: translateY(-4px); } }
.t4-bm2__empty { padding: 16px 4px; color: var(--bm2-muted); font-size: var(--t4-fs-small); }

.t4-bm2__qty {
	display: flex; align-items: center; justify-content: space-between; gap: 16px;
	border: 1px solid var(--bm2-line); background: var(--bm2-card); border-radius: 10px; padding: 12px 14px;
}
.t4-bm2__qty .lb { font-size: var(--t4-fs-small); font-weight: 600; }
.t4-bm2__qty .sb { font-size: var(--t4-fs-micro); color: var(--bm2-muted); margin-top: 2px; }
.t4-bm2__stepper {
	display: flex; align-items: center; gap: 2px; border: 1px solid var(--bm2-line);
	border-radius: 8px; overflow: hidden; flex: none;
}
.t4-bm2__stepper button {
	width: 32px; height: 32px; border: none; background: var(--bm2-page); cursor: pointer;
	display: flex; align-items: center; justify-content: center; font-size: var(--t4-fs-body); font-weight: 600; color: var(--bm2-ink);
}
.t4-bm2__stepper button:disabled { opacity: .3; cursor: not-allowed; }
.t4-bm2__stepper .n { width: 34px; text-align: center; font-size: var(--t4-fs-small); font-weight: 600; }

/* addon row (private / refund) */
.t4-bm2__addon {
	display: flex; align-items: center; gap: 12px; border: 1px solid var(--bm2-line);
	background: var(--bm2-card); border-radius: 10px; padding: 11px 14px; cursor: pointer; transition: .12s;
}
.t4-bm2__addon.on { border-color: var(--bm2-red); background: var(--bm2-red-soft); }
.t4-bm2__cbx {
	width: 19px; height: 19px; border: 1.5px solid #cfc8ba; border-radius: 5px; flex: none;
	display: flex; align-items: center; justify-content: center; background: #fff; transition: .12s;
}
.t4-bm2__addon.on .t4-bm2__cbx { background: var(--bm2-red); border-color: var(--bm2-red); }
.t4-bm2__cbx svg { width: 11px; height: 11px; stroke: #fff; fill: none; stroke-width: 3; opacity: 0; }
.t4-bm2__addon.on .t4-bm2__cbx svg { opacity: 1; }
.t4-bm2__addon .txt { flex: 1; }
.t4-bm2__addon .txt b { font-size: var(--t4-fs-small); font-weight: 600; display: block; }
.t4-bm2__addon .txt span { font-size: var(--t4-fs-micro); color: var(--bm2-muted); }
.t4-bm2__addon .pr { font-size: var(--t4-fs-small); font-weight: 600; color: var(--bm2-red); flex: none; }

/* ================= FORM HOST (steps 2-4 = the real .booking form, reskinned) ================= */
.t4-bm2__formhost { overflow: hidden; }
.t4-bm2__formhost .booking,
.t4-bm2__formhost .booking-step,
.t4-bm2__formhost .booking-step > div {
	width: 100% !important; max-width: 100% !important; min-width: 0 !important;
}
.t4-bm2__formhost .booking { display: block; padding: 0 !important; margin: 0 !important; }
.t4-bm2__formhost .booking-step { padding: 0 !important; margin: 0 !important; }
/* hide everything the sidebar/proxy already covers */
.t4-bm2__formhost .section-header,
.t4-bm2__formhost .booking-step__title,
.t4-bm2__formhost .booking-step__header,
.t4-bm2__formhost .calendar,
.t4-bm2__formhost .booking .variants,
.t4-bm2__formhost .booking-step__label,
.t4-bm2__formhost .js-number_of_buggies_list,
.t4-bm2__formhost .number-of-buggies,
.t4-bm2__formhost .booking-step__extra,
.t4-bm2__formhost .booking-step__extra-hint,
.t4-bm2__formhost .field:has(.field__select),
.t4-bm2__formhost .booking-step__footer,
.t4-bm2__formhost .booking-step__back,
.t4-bm2__formhost .js-create-order-button,
.t4-bm2__formhost .booking-checkout__total,
.t4-bm2__formhost .js-selected_tour_options,
.t4-bm2__formhost .modal__current,
.t4-bm2__formhost .booking__attention,
.t4-bm2__formhost .booking-step__recap,
.t4-bm2__formhost .booking-step__addons-toggle,
.t4-bm2__formhost .booking-step__note,
.t4-bm2__formhost .booking-checkout__title,
.t4-bm2__formhost .booking-checkout__table,
.t4-bm2__formhost .booking-checkout__btn,
.t4-bm2__formhost .modal__divider,
.t4-bm2__formhost .tabby-roadmap { display: none !important; }

/* packages live behind a collapsed toggle in the legacy step — v2 shows them open */
.t4-bm2__formhost .booking-step__addons-collapsible {
	display: block !important; height: auto !important; max-height: none !important; overflow: visible !important;
}

/* --- step 2: contact fields (mock layout: name+email 2-col, phone/pickup full) --- */
.t4-bm2__formhost .booking-step__fields {
	display: grid; gap: 14px; grid-template-columns: 1fr 1fr;
	max-width: none !important; width: 100% !important;
}
.t4-bm2__formhost .field { display: block !important; margin: 0 !important; padding: 0 !important; width: 100% !important; max-width: none !important; }
.t4-bm2__formhost .field:has(.js-fullname) { order: 1; }
.t4-bm2__formhost .field:has(.js-email) { order: 2; }
.t4-bm2__formhost .field:has(.js-phone) { order: 3; grid-column: 1 / -1; }
.t4-bm2__formhost .field:has(.js-pickup_location) { order: 4; grid-column: 1 / -1; }
.t4-bm2__formhost .field__label { display: block !important; padding: 0 !important; margin: 0 !important; }
.t4-bm2__formhost .field__input {
	width: 100%; border: 1px solid #ded8cc !important; background: var(--bm2-card) !important;
	border-radius: 10px !important; padding: 12px 13px !important; font-size: var(--t4-fs-small) !important;
	font-family: inherit !important; color: var(--bm2-ink) !important; height: auto !important;
	transition: .12s;
}
.t4-bm2__formhost .field__input:focus {
	outline: none; border-color: var(--bm2-red) !important;
	box-shadow: 0 0 0 3px rgba(255, 40, 0, .1);
}
.t4-bm2__formhost .field.t4-invalid .field__input { border-color: var(--bm2-err) !important; box-shadow: 0 0 0 3px rgba(196, 39, 27, .08); }
.t4-bm2__formhost .t4-ferr { color: var(--bm2-err); font-size: var(--t4-fs-micro); margin-top: 6px; }
.t4-bm2__formhost .iti { width: 100%; }

/* --- step 3: packages = real .extra-card grid, tier look --- */
.t4-bm2--s3 .t4-bm2__formhost .booking-step[data-id="step-2"] > * { margin: 0; }
.t4-bm2__formhost .booking-step__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; align-items: stretch; margin: 8px 0 0; }
.t4-bm2__formhost .extra-card {
	position: relative; border: 1px solid var(--bm2-line) !important; background: var(--bm2-card) !important;
	border-radius: 14px !important; padding: 16px 18px 14px !important; cursor: pointer;
	display: flex; flex-direction: column; transition: .12s; margin: 0 !important; width: auto !important;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .03);
}
.t4-bm2__formhost .extra-card:hover { border-color: #c9c2b4 !important; }
.t4-bm2__formhost .extra-card.active {
	border-color: var(--bm2-red) !important;
	box-shadow: inset 0 0 0 1px var(--bm2-red), 0 6px 20px rgba(255, 40, 0, .13);
}
.t4-bm2__formhost .extra-card__title {
	font-family: var(--t4-mono); font-size: var(--t4-fs-micro) !important; letter-spacing: 1.1px;
	text-transform: uppercase; font-weight: 600; display: flex; align-items: center; gap: 6px; line-height: 1.5;
}
.t4-bm2__formhost .extra-card__title::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #9AA0A6; }
.t4-bm2__formhost .extra-card--bronze .extra-card__title { color: #9C6633; }
.t4-bm2__formhost .extra-card--bronze .extra-card__title::before { background: #C08552; }
.t4-bm2__formhost .extra-card--silver .extra-card__title { color: #6E7176; }
.t4-bm2__formhost .extra-card--silver .extra-card__title::before { background: #9AA0A6; }
.t4-bm2__formhost .extra-card--gold .extra-card__title { color: #9A7B1F; }
.t4-bm2__formhost .extra-card--gold .extra-card__title::before { background: #D4AF37; }
.t4-bm2 .t4-bm2__formhost .extra-card .extra-card__sticker {
	position: absolute !important; top: 0 !important; bottom: auto !important; left: 50% !important; right: auto !important;
	transform: translate(-50%, -50%) !important; width: auto !important; height: auto !important;
	background: var(--bm2-red) !important; color: #fff !important; font-size: var(--t4-fs-micro) !important; font-weight: 600 !important;
	letter-spacing: 1px !important; padding: 4px 10px !important; border-radius: 10px !important;
	white-space: nowrap !important; text-transform: uppercase !important; line-height: 1.3 !important; margin: 0 !important;
	display: inline-block !important; z-index: 2;
}
/* 26px → 19px (user 2026-07-17: current price smaller; the struck original keeps its 14px) */
.t4-bm2__formhost .extra-card__price { font-size: var(--t4-fs-h4) !important; font-weight: 800 !important; line-height: 1.1; margin-top: 8px !important; letter-spacing: -.2px; color: var(--bm2-ink) !important; }
/* the legacy price markup splits currency/amount into styled spans — flatten them */
.t4-bm2__formhost .extra-card__price * {
	font-size: inherit !important; font-weight: inherit !important; color: inherit !important;
	margin: 0 !important; padding: 0 !important; letter-spacing: inherit !important; line-height: inherit !important;
	display: inline !important; vertical-align: baseline !important;
}
.t4-bm2__formhost .extra-card__price > *:first-child { margin-right: 6px !important; }
/* the "Worth AED N / if bought separately" line is retired (user 2026-07-17) — the
   struck original price now sits right before the current one inside __price */
.t4-bm2__formhost .extra-card__old-price { display: none !important; }
.t4-bm2__formhost .extra-card__price s.t4-bm2__pkold {
	display: inline !important; font-size: var(--t4-fs-small) !important; font-weight: 600 !important;
	color: var(--bm2-muted) !important; text-decoration: line-through !important;
	margin: 0 7px 0 0 !important; letter-spacing: 0 !important;
}
.t4-bm2__formhost .extra-card__list {
	list-style: none !important; margin: 12px 0 0 !important; padding: 12px 0 0 !important;
	border-top: 1px solid var(--bm2-line2); flex: 1 1 auto;
	display: flex; flex-direction: column; gap: 7px; width: 100% !important;
	align-content: flex-start;
}
.t4-bm2__formhost .extra-card__list li {
	font-size: var(--t4-fs-small); line-height: 1.4; color: var(--bm2-body); padding: 0 !important; margin: 0 !important;
	display: flex; gap: 8px; align-items: flex-start;
	list-style: none !important; background: none !important;
}
.t4-bm2__formhost .extra-card__list li::marker { content: none; }
.t4-bm2__formhost .extra-card__list li::after { display: none !important; content: none !important; }
.t4-bm2__formhost .extra-card__list li::before {
	content: '✓' !important; display: inline !important; position: static !important;
	width: auto !important; height: auto !important; background: none !important;
	color: var(--bm2-ok) !important; font-weight: 800; flex: none; font-size: var(--t4-fs-micro); margin: 1px 0 0 !important;
}
/* the legacy red check-icon inside each item dies (it doubled our green ✓) */
.t4-bm2__formhost .extra-card__list li > svg,
.t4-bm2__formhost .extra-card__list li > i,
.t4-bm2__formhost .extra-card__list li > img,
.t4-bm2__formhost .extra-card__list a { display: none !important; }
.t4-bm2__formhost .extra-card__header {
	display: flex; flex-direction: column; gap: 4px; align-items: flex-start;
	background: none !important; padding: 0 !important; margin: 0 !important; text-align: left !important;
	border: none !important; min-height: 0 !important;
	position: static !important; /* legacy relative header hijacked the sticker's containing block */
}
.t4-bm2__formhost .extra-card__header > *:not(.extra-card__sticker) { background: none !important; margin: 0 !important; text-align: left !important; }
.t4-bm2__formhost .extra-card .checkbox__input { position: absolute; opacity: 0; pointer-events: none; }
.t4-bm2__formhost .extra-card__saved {
	font-size: var(--t4-fs-micro) !important; font-weight: 600 !important; color: var(--bm2-ok) !important;
	background: var(--bm2-ok-bg) !important; padding: 4px 10px !important; border-radius: 8px !important;
	margin-top: 8px !important; display: inline-block !important; line-height: 1.3 !important;
	letter-spacing: 0 !important; text-transform: none !important; align-self: flex-start !important; width: auto !important;
}
/* compact qty stepper (legacy renders giant red grid buttons) */
.t4-bm2__formhost .extra-card__quantity.hidden { display: none !important; }
.t4-bm2__formhost .extra-card hr { display: none !important; }
/* mock's block order: tier → price → worth → save pill → list → CTA/qty */
.t4-bm2__formhost .extra-card__header { order: 0; }
.t4-bm2__formhost .extra-card__price { order: 1; }
.t4-bm2__formhost .extra-card__old-price { order: 2; }
.t4-bm2__formhost .extra-card > .extra-card__saved { order: 2; } /* JS moves it right after old-price */
.t4-bm2__formhost .extra-card__list { order: 3; }
.t4-bm2__formhost .extra-card__btn { order: 4; }
.t4-bm2__formhost .extra-card__quantity { order: 5; }
/* the "Most popular" pill is fully absolute (half outside the card edge) and must NOT
   change the card's own padding — the extra 24px pushed silver's content/Save pill
   below the neighbours' line (user 2026-07-17). Legacy short divider dies below. */
.t4-bm2__formhost .extra-card__old-price::before,
.t4-bm2__formhost .extra-card__old-price::after,
.t4-bm2__formhost .extra-card__price::before,
.t4-bm2__formhost .extra-card__price::after { display: none !important; content: none !important; }
.t4-bm2__formhost .extra-card__quantity {
	display: flex !important; align-items: center !important; gap: 0 !important;
	border: 1px solid var(--bm2-line) !important; border-radius: 8px !important; overflow: hidden !important;
	margin: 14px auto 0 !important; width: auto !important; align-self: center;
}
.t4-bm2 .t4-bm2__formhost .extra-card__quantity .quantity__btn {
	width: 32px !important; height: 32px !important; border: none !important; border-radius: 0 !important;
	background: var(--bm2-page) !important; color: var(--bm2-ink) !important; font-size: var(--t4-fs-body) !important;
	display: flex !important; align-items: center; justify-content: center; padding: 0 !important; min-width: 0 !important;
	box-shadow: none !important;
}
.t4-bm2 .t4-bm2__formhost .extra-card__quantity .quantity__btn svg {
	width: 13px !important; height: 13px !important; stroke: var(--bm2-ink) !important; fill: none;
}
.t4-bm2 .t4-bm2__formhost .extra-card__quantity .quantity__btn use { color: var(--bm2-ink); }
.t4-bm2 .t4-bm2__formhost .extra-card__quantity .quantity__input,
.t4-bm2 .t4-bm2__formhost .extra-card__quantity input {
	width: 36px !important; height: 32px !important; border: none !important; text-align: center !important;
	font-size: var(--t4-fs-small) !important; font-weight: 600 !important; background: #fff !important; padding: 0 !important;
	color: var(--bm2-ink) !important; opacity: 1 !important; display: block !important; min-width: 0 !important;
}
.t4-bm2__formhost .extra-card__btn {
	margin-top: 13px !important; border: 1px solid #e5dfd3 !important; background: var(--bm2-page) !important;
	border-radius: 10px !important; padding: 11px !important; font-size: var(--t4-fs-small) !important; font-weight: 600 !important;
	text-align: center; transition: .12s; color: var(--bm2-ink) !important; width: 100% !important; min-height: 0 !important;
}
.t4-bm2__formhost .extra-card__btn:hover { border-color: #c9c2b4 !important; }
.t4-bm2__formhost .extra-card.active .extra-card__btn {
	background: var(--bm2-red) !important; border-color: var(--bm2-red) !important; color: #fff !important;
}
.t4-bm2__formhost .extra-card__quantity { margin-top: 10px; }
/* an obvious secondary BUTTON, not a faint dashed hint (user 2026-07-17) */
.t4-bm2__skip {
	display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 14px;
	padding: 13px; border: 1px solid var(--bm2-line); border-radius: 11px; font-size: var(--t4-fs-small); font-weight: 600;
	color: var(--bm2-ink); cursor: pointer; background: var(--bm2-card); width: 100%;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .03); transition: .12s;
}
.t4-bm2__skip:hover { border-color: #c9c2b4; }
.t4-bm2__skip.sel { border-color: var(--bm2-red); background: var(--bm2-red-soft); color: var(--bm2-red); }

/* --- step 4: recap + payment --- */
.t4-bm2__recap { border: 1px solid var(--bm2-line); background: #fbf9f5; border-radius: 12px; padding: 2px 16px; }
.t4-bm2__rc { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 9px 0; font-size: var(--t4-fs-small); }
.t4-bm2__rc + .t4-bm2__rc { border-top: 1px solid var(--bm2-line2); }
.t4-bm2__rc .k { color: var(--bm2-muted); }
.t4-bm2__rc .vwrap { display: flex; align-items: center; }
.t4-bm2__rc .v { font-weight: 600; text-align: right; }
.t4-bm2__rc .ed {
	background: none; border: none; color: var(--bm2-red); font-size: var(--t4-fs-micro); font-weight: 600;
	cursor: pointer; margin-left: 10px; flex: none; padding: 0;
}
.t4-bm2__rc .ed:hover { text-decoration: underline; }

.t4-bm2__formhost .booking-checkout,
.t4-bm2__formhost .booking-checkout__order,
.t4-bm2__formhost .booking-step__columns,
.t4-bm2__formhost .booking-step__column {
	width: 100% !important; max-width: none !important; min-width: 0 !important;
	margin: 0 !important; padding: 0 !important; display: block !important;
}
.t4-bm2__formhost .booking-checkout__payments {
	display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 9px !important; margin: 0 !important; width: 100% !important;
}
.t4-bm2__formhost .booking-checkout__payment {
	display: flex !important; align-items: center !important; gap: 11px; border: 1px solid var(--bm2-line) !important;
	background: var(--bm2-card) !important; border-radius: 11px !important; padding: 13px 14px !important;
	cursor: pointer; min-height: 0 !important; margin: 0 !important; transition: .12s;
	width: 100% !important; min-width: 0 !important; max-width: none !important;
}
.t4-bm2__formhost .booking-checkout__payment:hover { border-color: #c9c2b4 !important; }
.t4-bm2__formhost .booking-checkout__payment:has(input:checked) {
	border-color: var(--bm2-red) !important; box-shadow: inset 0 0 0 1px var(--bm2-red) !important; background: var(--bm2-red-soft) !important;
}
.t4-bm2__formhost .booking-checkout__payment input { position: absolute; opacity: 0; pointer-events: none; }
.t4-bm2__formhost .booking-checkout__payment-inner {
	display: flex !important; align-items: center !important; justify-content: flex-start !important;
	gap: 11px; flex-direction: row !important; min-height: 0 !important; width: 100% !important;
	background: none !important; border: none !important; box-shadow: none !important;
	padding: 0 !important; margin: 0 !important; border-radius: 0 !important;
}
.t4-bm2__formhost .booking-checkout__payment-inner::before {
	content: ''; width: 17px; height: 17px; border-radius: 50%; border: 1.5px solid #cfc8ba; background: #fff; flex: none;
	transition: .12s; box-sizing: border-box; /* border grows INWARD on select — no size jump */
}
.t4-bm2__formhost .booking-checkout__payment:has(input:checked) .booking-checkout__payment-inner::before {
	border-color: var(--bm2-red); border-width: 5px;
}
.t4-bm2__formhost .booking-checkout__payment-title {
	font-size: var(--t4-fs-small) !important; font-weight: 600 !important; margin: 0 !important;
	flex: 1 !important; text-align: left !important; color: var(--bm2-ink) !important; white-space: nowrap;
	overflow: hidden; text-overflow: ellipsis;
}
.t4-bm2__formhost .booking-checkout__payment-icons {
	display: flex !important; gap: 4px; align-items: center; flex: none !important; margin: 0 0 0 auto !important;
}
.t4-bm2__formhost .booking-checkout__payment-icon,
.t4-bm2__formhost .booking-checkout__payment svg,
.t4-bm2__formhost .booking-checkout__payment img { height: 17px !important; width: 26px !important; flex: none; }
.t4-bm2__formhost .booking-checkout__payment img.t4-bm2__paycellico { height: 17px !important; width: auto !important; max-width: 32px; }
.t4-bm2__paynote {
	display: flex; align-items: center; gap: 8px; margin-top: 8px; font-size: var(--t4-fs-micro); color: var(--bm2-body);
	background: #fbf9f5; border: 1px solid var(--bm2-line); border-radius: 10px; padding: 9px 13px;
}
.t4-bm2__paynote svg { width: 14px; height: 14px; stroke: var(--bm2-ok); fill: none; stroke-width: 2.2; flex: none; }

/* terms row (real privacy checkbox restyled) */
.t4-bm2__formhost .booking-checkout__privacy,
.t4-bm2__formhost .checkbox { display: flex; align-items: flex-start; gap: 10px; margin-top: 18px !important; font-size: var(--t4-fs-micro); color: var(--bm2-body); line-height: 1.45; }
.t4-bm2__formhost .booking-checkout__privacy a { color: var(--bm2-red); text-decoration: underline; }

/* ================= SIDEBAR ================= */
.t4-bm2__sdt {
	font-size: var(--t4-fs-small); font-weight: 800; letter-spacing: .6px; text-transform: uppercase;
	padding-bottom: 10px; border-bottom: 1px solid var(--bm2-line);
}
.t4-bm2__sdrows { padding: 9px 0; display: flex; flex-direction: column; gap: 6px; }
.t4-bm2__sdr { display: flex; justify-content: space-between; gap: 10px; font-size: var(--t4-fs-micro); }
.t4-bm2__sdr .k { color: var(--bm2-muted); }
.t4-bm2__sdr .v { font-weight: 600; text-align: right; }
.t4-bm2__sdr.faint .v { color: #c2bbad; font-weight: 600; }
.t4-bm2__sdcost { border-top: 1px solid var(--bm2-line); padding: 9px 0; display: flex; flex-direction: column; gap: 5px; }
.t4-bm2__sdc { display: flex; justify-content: space-between; font-size: var(--t4-fs-micro); }
.t4-bm2__sdc .k { color: var(--bm2-body); }
.t4-bm2__sdc .v { font-weight: 600; }
.t4-bm2__sdc.disc .k, .t4-bm2__sdc.disc .v { color: var(--bm2-ok); font-weight: 600; }
.t4-bm2__sdc[hidden] { display: none; }
.t4-bm2__sdtot { border-top: 1.5px solid var(--bm2-ink); padding-top: 10px; display: flex; justify-content: space-between; align-items: baseline; }
.t4-bm2__sdtot .k {
	font-family: var(--t4-mono); font-size: var(--t4-fs-micro); letter-spacing: 1.4px;
	text-transform: uppercase; color: var(--bm2-muted); font-weight: 600;
}
.t4-bm2__sdtot .v { font-size: var(--t4-fs-h4); font-weight: 800; line-height: 1; }
.t4-bm2__cta {
	display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
	background: var(--bm2-red); color: #fff; border: none; font-size: var(--t4-fs-small); font-weight: 600;
	padding: 13px; border-radius: 11px; cursor: pointer; margin-top: 12px; transition: filter .15s; flex: none;
}
.t4-bm2__cta:hover { filter: brightness(.92); }
.t4-bm2__cta:disabled { background: #d9d3c6; cursor: not-allowed; filter: none; }
.t4-bm2__cta svg { width: 15px; height: 15px; stroke: #fff; fill: none; stroke-width: 2.2; }
/* Back = a REAL secondary button (user got lost hunting for the plain text link) */
.t4-bm2__back {
	display: flex; align-items: center; justify-content: center; gap: 7px;
	background: var(--bm2-card); border: 1px solid var(--bm2-line); border-radius: 11px;
	font-size: var(--t4-fs-small); font-weight: 600; color: var(--bm2-body); cursor: pointer;
	margin-top: 10px; text-align: center; width: 100%; padding: 11px; transition: .12s;
}
.t4-bm2__back:hover { border-color: #c9c2b4; color: var(--bm2-ink); }
.t4-bm2__back[hidden] { display: none; }
.t4-bm2__back { padding: 8px; margin-top: 7px; flex: none; }
.t4-bm2__trust { margin-top: auto; padding-top: 10px; border-top: 1px solid var(--bm2-line); display: flex; flex-direction: column; gap: 5px; }
.t4-bm2__trust div { display: flex; align-items: center; gap: 7px; font-size: var(--t4-fs-micro); color: var(--bm2-body); }
.t4-bm2__trust svg { width: 12px; height: 12px; stroke: var(--bm2-ok); fill: none; stroke-width: 2.2; flex: none; }
.t4-bm2__pays { display: flex; gap: 4px; margin-top: 7px; flex-wrap: wrap; }
.t4-bm2__pays span {
	display: inline-flex; align-items: center; gap: 4px;
	font-family: var(--t4-mono); font-size: var(--t4-fs-micro);
	border: 1px solid var(--bm2-line); background: var(--bm2-card); border-radius: 12px;
	padding: 3px 8px; color: var(--bm2-body);
}
.t4-bm2__pays svg, .t4-bm2__payico { height: 11px !important; width: auto !important; max-width: 24px; flex: none; }
.t4-bm2__pays img.t4-bm2__payico--img { height: 14px !important; width: auto !important; max-width: 30px; display: block; }
/* tabby: icon-only chip, a notch bigger (the badge is the icon) */
.t4-bm2__pays span.ico-only { padding: 3px 8px; }
.t4-bm2__pays span.ico-only img { height: 16px !important; }

/* ================= FULL CALENDAR OVERLAY ================= */
.t4-bm2__calovl {
	position: absolute; inset: 0; z-index: 5; background: rgba(20, 16, 10, .35);
	display: flex; align-items: center; justify-content: center; padding: 24px;
}
.t4-bm2__calovl[hidden] { display: none; }
.t4-bm2__cal {
	background: var(--bm2-card); border-radius: 16px; width: 460px; max-width: 100%;
	overflow: hidden; box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
}
.t4-bm2__calhd { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--bm2-line); }
.t4-bm2__calhd h3 { font-size: var(--t4-fs-body); font-weight: 800; letter-spacing: .6px; text-transform: uppercase; margin: 0; }
.t4-bm2__calbody { padding: 10px 14px 16px; }
/* the form's AirDatepicker gets parked here while the overlay is open */
.t4-bm2__calbody .calendar { display: block !important; }

/* ================= POLISH ROUND 1 (user feedback 2026-07-17) ================= */

/* hard page-scroll lock while the modal is open (inline overflow:hidden lost to something).
   The body is pinned at the pre-open offset via position:fixed + top:-Ypx (JS) and keeps
   its NATURAL height — a 100% clamp blanked everything below one viewport of content. */
html.t4-bm2-lock {
	overflow: hidden !important;
	height: 100% !important;
}
html.t4-bm2-lock body {
	position: fixed !important;
	left: 0 !important;
	right: 0 !important;
	width: 100% !important;
	height: auto !important;
	overflow: visible !important;
}

/* --- fields, mock-style: small label ABOVE, faint example INSIDE --- */
.t4-bm2__formhost .field__placeholder { display: none !important; }
.t4-bm2__flabel { display: block; font-size: var(--t4-fs-micro); font-weight: 600; color: var(--bm2-body); margin-bottom: 6px; }
.t4-bm2__flabel small { color: var(--bm2-muted); font-weight: 400; }
.t4-bm2__formhost .field__input::placeholder { color: #b8b2a6 !important; opacity: 1 !important; font-weight: 400; }
.t4-bm2__formhost .field__label { display: block; }
.t4-bm2__formhost .field.t4-invalid .field__input { border-color: var(--bm2-err) !important; box-shadow: 0 0 0 3px rgba(196, 39, 27, .08) !important; }

/* --- intlTelInput: dial code was overlapping the number --- */
.t4-bm2__formhost .iti { width: 100% !important; display: block !important; }
.t4-bm2__formhost .iti input.field__input,
.t4-bm2__formhost .iti input[type="tel"] { padding-left: 96px !important; }
.t4-bm2__formhost .iti__flag-container { padding: 0 !important; }
.t4-bm2__formhost .iti__selected-flag { padding: 0 10px 0 14px !important; background: none !important; width: 86px !important; }

/* --- "?" explainer badge + popover (no modal, inline card near the row) --- */
.t4-bm2__addon { position: relative; }
.t4-bm2__q {
	width: 19px; height: 19px; border-radius: 50%; border: 1px solid #cfc8ba; background: #fff;
	color: var(--bm2-muted); font-size: var(--t4-fs-micro); font-weight: 600; line-height: 1;
	display: inline-flex; align-items: center; justify-content: center; cursor: pointer; flex: none;
	transition: .12s; padding: 0;
}
.t4-bm2__q:hover { border-color: var(--bm2-red); color: var(--bm2-red); }
.t4-bm2__pop {
	position: absolute; right: 0; bottom: calc(100% + 10px); z-index: 8;
	width: 300px; background: #17181c; color: #fff; border-radius: 12px; padding: 13px 15px;
	font-size: var(--t4-fs-micro); line-height: 1.55; font-weight: 400; box-shadow: 0 12px 34px rgba(0, 0, 0, .28);
	animation: t4bm2In .18s ease both;
}
.t4-bm2__pop::after {
	content: ''; position: absolute; right: 22px; top: 100%;
	border: 7px solid transparent; border-top-color: #17181c;
}

/* --- Terms & Conditions: link opens the in-shell reader, not a browser tab --- */
.t4-bm2__link {
	background: none; border: none; padding: 0; color: var(--bm2-red); text-decoration: underline;
	font: inherit; cursor: pointer;
}
.t4-bm2__readovl {
	position: absolute; inset: 0; z-index: 6; background: rgba(20, 16, 10, .35);
	display: flex; align-items: center; justify-content: center; padding: 24px;
}
.t4-bm2__readovl[hidden] { display: none; }
.t4-bm2__read {
	background: var(--bm2-card); border-radius: 16px; width: 640px; max-width: 100%;
	max-height: calc(100% - 40px); display: flex; flex-direction: column;
	overflow: hidden; box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
}
.t4-bm2__readbody {
	padding: 6px 24px 24px; overflow-y: auto; font-size: var(--t4-fs-small); line-height: 1.65; color: var(--bm2-body);
	overscroll-behavior: contain;
}
.t4-bm2__readbody h1, .t4-bm2__readbody h2, .t4-bm2__readbody h3 { font-size: var(--t4-fs-body); margin: 18px 0 8px; color: var(--bm2-ink); }
.t4-bm2__readbody p, .t4-bm2__readbody li { margin: 0 0 10px; }
.t4-bm2__readbody::-webkit-scrollbar { width: 8px; }
.t4-bm2__readbody::-webkit-scrollbar-thumb { background: #ddd6c8; border-radius: 8px; }

/* --- full-calendar reskin (the raw AirDatepicker came with the legacy red header) --- */
.t4-bm2__calbody .calendar { background: none !important; padding: 0 !important; margin: 0 !important; width: 100% !important; box-shadow: none !important; border: none !important; }
.t4-bm2__calbody .air-datepicker,
.t4-bm2__calbody .air-datepicker--content,
.t4-bm2__calbody .air-datepicker--pointer { background: none !important; border: none !important; box-shadow: none !important; width: 100% !important; }
.t4-bm2__calbody .air-datepicker-nav {
	background: none !important; border: none !important; padding: 6px 4px 10px !important;
	display: flex !important; align-items: center; justify-content: space-between;
}
.t4-bm2__calbody .air-datepicker-nav--title {
	font-family: var(--t4-sans) !important; font-size: var(--t4-fs-small) !important; font-weight: 600 !important;
	color: var(--bm2-ink) !important; background: none !important; text-transform: none !important; letter-spacing: 0 !important;
}
.t4-bm2__calbody .air-datepicker-nav--title i { color: var(--bm2-muted) !important; font-style: normal; margin-left: 5px; }
/* arrows: black glyph in a rgb(74,74,74) outline — were invisible (user 2026-07-17) */
.t4-bm2__calbody .air-datepicker-nav--action {
	width: 30px !important; height: 30px !important; border: 1px solid rgb(74, 74, 74) !important;
	background: var(--bm2-card) !important; border-radius: 8px !important; color: #000 !important;
	opacity: 1 !important; visibility: visible !important;
}
.t4-bm2__calbody .air-datepicker-nav--action:hover { border-color: #000 !important; }
/* the legacy arrow glyph is a FILLED path (hover recolors fill) — paint it black */
.t4-bm2__calbody .air-datepicker-nav--action svg,
.t4-bm2__calbody .air-datepicker-nav--action path {
	fill: #000 !important; stroke: #000 !important; color: #000 !important;
}
.t4-bm2__calbody .air-datepicker-nav--action svg { width: 15px !important; height: 15px !important; }
.t4-bm2__calbody .air-datepicker-nav--action::before,
.t4-bm2__calbody .air-datepicker-nav--action::after { color: #000 !important; border-color: #000 !important; }
.t4-bm2__calbody .air-datepicker-body--day-name {
	font-family: var(--t4-mono) !important; font-size: var(--t4-fs-micro) !important; letter-spacing: .8px !important;
	color: var(--bm2-muted) !important; text-transform: uppercase !important; font-weight: 600 !important;
}
.t4-bm2__calbody .air-datepicker-cell {
	border-radius: 9px !important; border: 1px solid transparent !important; background: none !important;
	font-size: var(--t4-fs-small) !important; font-weight: 600 !important; color: var(--bm2-ink) !important;
	height: 38px !important; width: auto !important; transition: .1s;
}
.t4-bm2__calbody .air-datepicker-cell:hover:not(.-disabled-) { background: var(--bm2-page) !important; border-color: var(--bm2-line) !important; }
.t4-bm2__calbody .air-datepicker-cell.-current- { color: var(--bm2-red) !important; font-weight: 600 !important; }
.t4-bm2__calbody .air-datepicker-cell.-selected- {
	background: var(--bm2-red) !important; border-color: var(--bm2-red) !important; color: #fff !important; font-weight: 600 !important;
}
.t4-bm2__calbody .air-datepicker-cell.-disabled- { opacity: .28 !important; color: var(--bm2-muted) !important; cursor: not-allowed; }
.t4-bm2__calbody .air-datepicker-cell.-other-month- { opacity: 0 !important; pointer-events: none; }

/* --- refund guarantee: online payments only — dimmed when Pay later is selected.
   Contents are dimmed individually (row opacity would also dim the popover child) --- */
.t4-bm2__addon--off { cursor: not-allowed; border-color: var(--bm2-line2) !important; background: #fbf9f5 !important; }
.t4-bm2__addon--off > .t4-bm2__cbx,
.t4-bm2__addon--off > .txt,
.t4-bm2__addon--off > .pr { opacity: .45; }

/* --- unchecked terms: point at the row instead of greying the CTA out --- */
.t4-bm2__addon--err {
	border-color: var(--bm2-err) !important;
	box-shadow: 0 0 0 3px rgba(196, 39, 27, .12) !important;
	animation: t4bm2Shake .4s ease 1;
}
@keyframes t4bm2Shake {
	0%, 100% { transform: translateX(0); }
	25% { transform: translateX(-5px); }
	50% { transform: translateX(5px); }
	75% { transform: translateX(-3px); }
}

/* --- close confirmation (accidental scrim clicks were killing the whole booking) --- */
.t4-bm2__confirm {
	position: absolute; inset: 0; z-index: 9; background: rgba(20, 16, 10, .4);
	display: flex; align-items: center; justify-content: center; padding: 24px;
}
.t4-bm2__confirm[hidden] { display: none; }
.t4-bm2__confirmbox {
	background: var(--bm2-card); border-radius: 16px; width: 380px; max-width: 100%;
	padding: 24px; text-align: center; box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
	animation: t4bm2In .18s ease both;
}
.t4-bm2__confirmbox h4 { font-size: var(--t4-fs-body); font-weight: 800; margin: 0 0 6px; }
.t4-bm2__confirmbox p { font-size: var(--t4-fs-small); color: var(--bm2-body); margin: 0 0 16px; line-height: 1.5; }
.t4-bm2__confirmbox .t4-bm2__cta { margin-top: 0; }
.t4-bm2__confirmleave {
	background: none; border: none; font-size: var(--t4-fs-micro); color: var(--bm2-muted); cursor: pointer;
	margin-top: 10px; text-decoration: underline;
}
.t4-bm2__confirmleave:hover { color: var(--bm2-err); }

/* short/zoomed viewports: the trust bullets go first + everything tightens a notch
   so neither column ever scrolls. MUST live at the END of the file — the base rules
   above share specificity and would win otherwise. */
@media (max-height: 920px) {
	.t4-bm2__trust > div { display: none; }
	.t4-bm2__trust { border-top: none; padding-top: 0; }
	.t4-bm2__pays { margin-top: 0; }
	.t4-bm2__pane { padding-top: 16px; }
	.t4-bm2__rc { padding: 7px 0; }
	.t4-bm2__addon { padding: 9px 12px; }
	.t4-bm2__cta { padding: 11px; }
	.t4-bm2__sdt { padding-bottom: 8px; }
	.t4-bm2__sdrows { padding: 8px 0; gap: 5px; }
	.t4-bm2__sdcost { padding: 8px 0; gap: 4px; }
	.t4-bm2__back { padding: 7px; margin-top: 6px; }
	.t4-bm2__sdtot .v { font-size: 21px; }
}

/* step visibility */
.t4-bm2__p1, .t4-bm2__formhost, .t4-bm2__p4extra { display: none; }
.t4-bm2--s1 .t4-bm2__p1 { display: block; }
.t4-bm2--s2 .t4-bm2__formhost, .t4-bm2--s3 .t4-bm2__formhost, .t4-bm2--s4 .t4-bm2__formhost { display: block; }
.t4-bm2--s4 .t4-bm2__p4extra { display: block; }
/* per-step form-internal visibility is driven by .booking-step.active (booking.js) */

/* ================= MOTION POLISH (2026-07-17, ported from the mobile sheet) =================
   transform/opacity + short color transitions only — no layout animation. */
/* animated dismissal of the whole modal (JS adds --closing, teardown after) */
.t4-bm2--dismiss { animation: t4bm2FadeOut .22s ease both; }
.t4-bm2--dismiss .t4-bm2__shell { animation: t4bm2ShellOut .22s ease both; }
@keyframes t4bm2FadeOut { from { opacity: 1; } to { opacity: 0; } }
@keyframes t4bm2ShellOut { to { opacity: 0; transform: translateY(12px) scale(.99); } }
/* step indicator: connector lines FILL left→right, dots crossfade */
.t4-bm2__st .dot { transition: background-color .3s ease, border-color .3s ease, color .3s ease; }
.t4-bm2__st .nm { transition: color .3s ease; }
.t4-bm2__stline { position: relative; overflow: hidden; background: #e6e1d7; }
.t4-bm2__stline::after {
	content: ''; position: absolute; inset: 0;
	background: var(--bm2-ok); transform: scaleX(0); transform-origin: left center;
	transition: transform .45s cubic-bezier(.32, .72, 0, 1);
}
.t4-bm2__stline.done { background: #e6e1d7; }
.t4-bm2__stline.done::after { transform: scaleX(1); }
/* direction-aware step transition inside the pane */
.t4-bm2__pane--fwd { animation: t4bm2StepFwd .28s cubic-bezier(.25, .8, .35, 1) both; }
.t4-bm2__pane--bck { animation: t4bm2StepBck .28s cubic-bezier(.25, .8, .35, 1) both; }
@keyframes t4bm2StepFwd { from { opacity: 0; transform: translateX(22px); } to { opacity: 1; transform: none; } }
@keyframes t4bm2StepBck { from { opacity: 0; transform: translateX(-22px); } to { opacity: 1; transform: none; } }
/* smooth selection + press feedback */
.t4-bm2__d,
.t4-bm2__slot,
.t4-bm2__addon,
.t4-bm2__skip,
.t4-bm2__calbtn,
.t4-bm2__arw,
.t4-bm2__stepper button,
.t4-bm2__formhost .extra-card,
.t4-bm2__formhost .booking-checkout__payment {
	transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease,
		color .18s ease, transform .12s ease, opacity .18s ease;
}
.t4-bm2__slot .t, .t4-bm2__slot .s { transition: color .18s ease; }
.t4-bm2__d:active,
.t4-bm2__slot:active:not(:disabled),
.t4-bm2__addon:active:not(.t4-bm2__addon--off),
.t4-bm2__skip:active,
.t4-bm2__formhost .extra-card:active,
.t4-bm2__formhost .booking-checkout__payment:active { transform: scale(.98); }
.t4-bm2__cta { transition: background-color .2s ease, transform .12s ease, filter .15s; }
.t4-bm2__cta:active:not(:disabled) { transform: scale(.985); }
/* checks & radios settle with a tiny spring */
.t4-bm2__cbx { transition: background-color .18s ease, border-color .18s ease; }
.t4-bm2__cbx svg { transition: opacity .16s ease, transform .18s cubic-bezier(.34, 1.56, .64, 1); transform: scale(.4); }
.t4-bm2__addon.on .t4-bm2__cbx svg { transform: scale(1); }
.t4-bm2__formhost .booking-checkout__payment-inner::before { transition: border-color .18s ease, border-width .18s cubic-bezier(.34, 1.3, .64, 1); }
/* fresh content rises in softly */
.t4-bm2__slots, .t4-bm2__qty,
.t4-bm2__slotsbox .t4-cutoff,
.t4-bm2__empty { animation: t4bm2Rise .26s cubic-bezier(.25, .8, .35, 1) both; }
@keyframes t4bm2Rise { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
/* in-shell overlays (calendar / terms / confirm): fade + card pop, animated dismissal */
.t4-bm2__calovl, .t4-bm2__readovl, .t4-bm2__confirm { animation: t4bm2FadeIn .2s ease both; }
@keyframes t4bm2FadeIn { from { opacity: 0; } to { opacity: 1; } }
.t4-bm2__cal, .t4-bm2__read { animation: t4bm2Pop .24s cubic-bezier(.32, .72, 0, 1) both; }
@keyframes t4bm2Pop { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }
.t4-bm2__ovl--closing { animation: t4bm2FadeOut .18s ease both; }
.t4-bm2__ovl--closing .t4-bm2__cal,
.t4-bm2__ovl--closing .t4-bm2__read,
.t4-bm2__ovl--closing .t4-bm2__confirmbox { animation: t4bm2PopOut .18s ease both; }
@keyframes t4bm2PopOut { to { opacity: 0; transform: translateY(8px) scale(.98); } }

@media (prefers-reduced-motion: reduce) {
	.t4-bm2, .t4-bm2 *, .t4-bm2 *::before, .t4-bm2 *::after { animation: none !important; transition: none !important; }
}
