/* ============================================================================
   CONFIGURATOR V2 (pilot, 2026-07-17) — mock: Downloads/booking-configurator.html
   Desktop-only rebuild of the family configurator, living NEXT TO the current
   one (configurator-v4 untouched). Iteration 2 (user): the pick phase is
   IN-PAGE like the mock — family chips select the family, the configurator
   (01 Adventure → 02 Duration → 03 Date → 04 Time → 05 Buggies, sticky dark
   "Your tour" sidebar, section lock chain) renders right on the page; only the
   checkout opens a modal (3 steps Details · Extras · Payment on the accepted
   bm2 patterns). No double modals, zero programmatic scrolling.
   Fonts per brand policy: Plus Jakarta Sans + JetBrains Mono kickers (mock's
   Oswald/Inter deliberately NOT used). Brand red #FF2800. Namespace: t4-cf2.
   ========================================================================== */

/* design tokens live on every cf2 root: the in-page section, the booking modal
   overlay and the standalone full-calendar overlay */
.t4-cf2,
.t4-cf2__pilot,
.t4-cf2__calovl {
	--cf2-red: #FF2800;
	--cf2-red-soft: #ffece7;
	--cf2-ink: #141414;
	--cf2-body: #4a4a4a;
	--cf2-muted: #8a8a8a;
	--cf2-line: #e8e3d9;
	--cf2-line2: #f0ece4;
	--cf2-page: #f7f3ec;
	--cf2-card: #fff;
	--cf2-ok: #1F7A3D;
	--cf2-ok-bg: #e9f5ec;
	--cf2-warn: #B26A00;
	--cf2-err: #C4271B;
	--cf2-dark: #161412;
	--cf2-dark2: #232019;
	--cf2-dark-line: #3a352c;
	--cf2-dark-mut: #8f887a;
	font-family: var(--t4-sans);
	color: var(--cf2-ink);
}
.t4-cf2 *, .t4-cf2 *::before, .t4-cf2 *::after,
.t4-cf2__pilot *, .t4-cf2__pilot *::before, .t4-cf2__pilot *::after,
.t4-cf2__calovl *, .t4-cf2__calovl *::before, .t4-cf2__calovl *::after { box-sizing: border-box; }
.t4-cf2 button, .t4-cf2__pilot button, .t4-cf2__calovl button { font-family: inherit; }
.t4-cf2 [hidden], .t4-cf2__pilot [hidden] { display: none !important; }

/* ================= PILOT SECTION (in-page) =================
   The section holds ONLY the V2 panel now — it swaps in for the old
   configurator's family card grid (JS hides [data-cfg-families]) right in the
   same container, so no extra outer spacing of its own. */
.t4-cf2__pilot { margin: 0; }
.t4-cf2__pilottag {
	font-family: var(--t4-mono); font-size: var(--t4-fs-micro); letter-spacing: 1.2px;
	text-transform: uppercase; font-weight: 600; color: #fff; background: var(--cf2-red);
	padding: 3px 8px; border-radius: 8px; flex: none;
}
@media (max-width: 900px) { .t4-cf2__pilot { display: none; } } /* mobile version is a separate task (user) */

/* prototype header: "← All buggies" pill + family h1 */
.t4-cf2__panelhead { margin-bottom: 18px; }
.t4-cf2__backfams {
	display: inline-flex; align-items: center; gap: 7px; border: 1px solid var(--cf2-line);
	background: var(--cf2-card); border-radius: 22px; padding: 8px 16px;
	font-size: var(--t4-fs-small); font-weight: 600; cursor: pointer; color: var(--cf2-ink);
	transition: border-color .18s ease, transform .12s ease;
}
.t4-cf2__backfams:hover { border-color: #c9c2b4; }
.t4-cf2__backfams:active { transform: scale(.97); }
.t4-cf2__famtitle {
	display: flex; align-items: center; gap: 12px;
	font-size: var(--t4-fs-h3); font-weight: 800; letter-spacing: .2px; text-transform: uppercase;
	margin: 14px 0 0; line-height: 1.1; color: var(--cf2-ink);
}

/* ================= IN-PAGE PANEL (sections + sticky dark sidebar) ================= */
.t4-cf2__panel { margin-top: 4px; }
.t4-cf2__panel--in { animation: t4cf2Rise .3s cubic-bezier(.25, .8, .35, 1) both; }
.t4-cf2__cols {
	display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 20px; align-items: start;
}
.t4-cf2__secs { min-width: 0; }
.t4-cf2__formpark { display: none !important; }

/* ---- sections + lock chain (prototype: locked sections collapse to a header row;
   grey interactive elements look clickable and breed dead scroll — so they don't render) ---- */
.t4-cf2__sec {
	background: var(--cf2-card); border: 1px solid var(--cf2-line); border-radius: 14px;
	transition: opacity .15s ease;
}
.t4-cf2__sec + .t4-cf2__sec { margin-top: 12px; }
.t4-cf2__sechd { display: flex; align-items: center; gap: 11px; padding: 15px 18px; }
.t4-cf2__sec--open .t4-cf2__sechd { padding-bottom: 12px; }
.t4-cf2__sechd .no {
	font-family: var(--t4-mono); font-size: var(--t4-fs-micro); font-weight: 600;
	color: var(--cf2-red); flex: none;
}
.t4-cf2__sec--lock .t4-cf2__sechd .no { color: #cfc8ba; }
.t4-cf2__sechd h3 { font-size: var(--t4-fs-body); font-weight: 600; flex: 1; margin: 0; }
.t4-cf2__sec--lock .t4-cf2__sechd h3 { color: #b5aea0; font-weight: 600; }
.t4-cf2__sechd .hint {
	font-family: var(--t4-mono); font-size: var(--t4-fs-micro); letter-spacing: 1.4px;
	text-transform: uppercase; color: var(--cf2-muted); flex: none;
}
.t4-cf2__sec--lock .t4-cf2__sechd .hint { color: #c4bdaf; }
.t4-cf2__sechd .tick {
	width: 17px; height: 17px; border-radius: 50%; background: var(--cf2-ok);
	display: flex; align-items: center; justify-content: center; flex: none;
	animation: t4cf2TickPop .3s cubic-bezier(.34, 1.56, .64, 1) both;
}
@keyframes t4cf2TickPop { from { transform: scale(.3); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.t4-cf2__sechd .tick svg { width: 9px; height: 9px; stroke: #fff; fill: none; stroke-width: 3.4; }
.t4-cf2__secbd { padding: 0 18px 18px; }
.t4-cf2__sec--lock .t4-cf2__secbd { display: none; }
.t4-cf2__sec--open .t4-cf2__secbd { animation: t4cf2Rise .26s cubic-bezier(.25, .8, .35, 1) both; }

/* ---- 01 experience cards ---- */
.t4-cf2__expgrid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.t4-cf2__exp {
	position: relative; border: 1px solid var(--cf2-line); background: var(--cf2-card);
	border-radius: 11px; overflow: hidden; cursor: pointer; text-align: left; padding: 0;
	display: flex; flex-direction: column;
}
.t4-cf2__exp:hover { border-color: #c9c2b4; }
.t4-cf2__exp.sel { border-color: var(--cf2-red); box-shadow: inset 0 0 0 1px var(--cf2-red); }
.t4-cf2__exp .im {
	height: 96px; background: linear-gradient(160deg, #c9a06a, #8f5f3d);
	background-size: cover; background-position: center; position: relative; flex: none; display: block;
}
.t4-cf2__exp .best, .t4-cf2__exp .reqb {
	position: absolute; top: 7px; right: 7px; background: var(--cf2-red); color: #fff;
	font-family: var(--t4-mono); font-size: 8.5px; font-weight: 600;
	letter-spacing: .8px; padding: 3px 7px; border-radius: 7px; text-transform: uppercase;
}
.t4-cf2__exp .reqb { background: var(--cf2-warn); }
.t4-cf2__exp .tx { padding: 10px 11px 11px; flex: 1; display: flex; flex-direction: column; }
.t4-cf2__exp .nm { font-size: var(--t4-fs-small); font-weight: 600; line-height: 1.25; }
.t4-cf2__exp .pr { font-size: var(--t4-fs-micro); margin-top: 5px; }
.t4-cf2__exp .pr .fr {
	font-family: var(--t4-mono); font-size: var(--t4-fs-micro); letter-spacing: .8px;
	color: var(--cf2-muted); text-transform: uppercase; margin-right: 4px;
}
.t4-cf2__exp .pr s { color: var(--cf2-muted); margin-right: 4px; font-size: var(--t4-fs-micro); }
.t4-cf2__exp .pr b { font-weight: 800; }
.t4-cf2__exp .sb {
	font-family: var(--t4-mono); font-size: 8.5px; letter-spacing: .6px;
	color: var(--cf2-muted); text-transform: uppercase; margin-top: auto; padding-top: 7px; line-height: 1.5;
}
.t4-cf2__exp.sel .nm { color: var(--cf2-red); }

/* sub-choice row (sunrise breakfast / dinner venue) */
.t4-cf2__subrow { margin-top: 12px; padding-top: 12px; border-top: 1px dashed var(--cf2-line); }
.t4-cf2__subrow:not([hidden]) { animation: t4cf2Rise .26s cubic-bezier(.25, .8, .35, 1) both; }
.t4-cf2__sublabel { font-size: var(--t4-fs-small); font-weight: 600; margin-bottom: 9px; }
.t4-cf2__expgrid--sub .t4-cf2__exp .im { height: 68px; }

/* ---- 02 duration ---- */
.t4-cf2__durgrid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.t4-cf2__dur {
	display: flex; align-items: center; justify-content: space-between; gap: 10px;
	border: 1px solid var(--cf2-line); background: var(--cf2-card); border-radius: 11px;
	padding: 13px 15px; cursor: pointer;
}
.t4-cf2__dur:hover { border-color: #c9c2b4; }
.t4-cf2__dur.sel { border-color: var(--cf2-red); box-shadow: inset 0 0 0 1px var(--cf2-red); background: var(--cf2-red-soft); }
.t4-cf2__dur .l { display: flex; align-items: center; gap: 8px; }
.t4-cf2__dur .h { font-size: var(--t4-fs-small); font-weight: 600; }
.t4-cf2__dur .best, .t4-cf2__dur .reqb {
	background: var(--cf2-red); color: #fff; font-family: var(--t4-mono);
	font-size: 8.5px; font-weight: 600; letter-spacing: .8px; padding: 2.5px 7px;
	border-radius: 7px; text-transform: uppercase;
}
.t4-cf2__dur .reqb { background: var(--cf2-warn); }
.t4-cf2__dur .r { text-align: right; white-space: nowrap; }
.t4-cf2__dur .r s { color: var(--cf2-muted); font-size: var(--t4-fs-micro); margin-right: 5px; }
.t4-cf2__dur .r b { font-size: var(--t4-fs-body); font-weight: 800; }
.t4-cf2__dur .r span {
	font-family: var(--t4-mono); font-size: 8.5px; letter-spacing: .6px;
	color: var(--cf2-muted); text-transform: uppercase; margin-left: 4px;
}

/* ---- 03 dates ---- */
.t4-cf2__dates { display: flex; align-items: stretch; gap: 7px; }
.t4-cf2__arw {
	width: 30px; border: 1px solid var(--cf2-line); background: var(--cf2-card); border-radius: 9px;
	cursor: pointer; display: flex; align-items: center; justify-content: center; flex: none;
}
.t4-cf2__arw:hover { border-color: #c9c2b4; }
.t4-cf2__arw:disabled { opacity: .35; cursor: not-allowed; }
.t4-cf2__arw svg { width: 14px; height: 14px; stroke: var(--cf2-body); fill: none; stroke-width: 2; }
.t4-cf2__drow { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 7px; flex: 1; }
.t4-cf2__d {
	position: relative; border: 1px solid var(--cf2-line); background: var(--cf2-card);
	border-radius: 10px; padding: 9px 4px 8px; text-align: center; cursor: pointer;
}
.t4-cf2__d:hover { border-color: #c9c2b4; }
.t4-cf2__d .dow, .t4-cf2__d .mo {
	font-family: var(--t4-mono); font-size: var(--t4-fs-micro); letter-spacing: .8px;
	color: var(--cf2-muted); text-transform: uppercase; font-weight: 600;
}
.t4-cf2__d .dd { font-size: var(--t4-fs-h4); font-weight: 800; line-height: 1.15; margin: 2px 0; }
.t4-cf2__d.sel { background: var(--cf2-red); border-color: var(--cf2-red); }
.t4-cf2__d.sel .dow, .t4-cf2__d.sel .mo { color: rgba(255, 255, 255, .85); }
.t4-cf2__d.sel .dd { color: #fff; }
.t4-cf2__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; z-index: 1;
}
.t4-cf2__calbtn {
	display: inline-flex; align-items: center; gap: 7px; background: none; border: none;
	color: var(--cf2-red); font-size: var(--t4-fs-micro); font-weight: 600; cursor: pointer;
	margin-top: 12px; padding: 0;
}
.t4-cf2__calbtn svg { width: 14px; height: 14px; stroke: var(--cf2-red); fill: none; stroke-width: 2; }
.t4-cf2__calbtn:hover { text-decoration: underline; }

/* ---- 04 slots ---- */
.t4-cf2__slots { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.t4-cf2__slot {
	border: 1px solid var(--cf2-line); background: var(--cf2-card); border-radius: 10px;
	padding: 11px 12px; cursor: pointer; text-align: left;
}
.t4-cf2__slot:hover { border-color: #c9c2b4; }
.t4-cf2__slot .t { font-size: var(--t4-fs-body); font-weight: 800; line-height: 1; }
.t4-cf2__slot .s { font-size: var(--t4-fs-micro); color: var(--cf2-muted); margin-top: 4px; }
.t4-cf2__slot .s.low { color: var(--cf2-warn); font-weight: 600; }
.t4-cf2__slot.sel { border-color: var(--cf2-red); box-shadow: inset 0 0 0 1px var(--cf2-red); background: var(--cf2-red-soft); }
.t4-cf2__slot.sel .t { color: var(--cf2-red); }
.t4-cf2__slot:disabled { opacity: .4; cursor: not-allowed; }
.t4-cf2__loading {
	display: flex; align-items: center; gap: 10px; padding: 14px 4px;
	color: var(--cf2-body); font-size: var(--t4-fs-small); font-weight: 600;
}
.t4-cf2__dots { display: inline-flex; gap: 4px; align-items: center; }
.t4-cf2__dots i {
	width: 6px; height: 6px; border-radius: 50%; background: var(--cf2-red); display: block;
	animation: t4cf2Dot 1.1s infinite ease-in-out;
}
.t4-cf2__dots i:nth-child(2) { animation-delay: .18s; }
.t4-cf2__dots i:nth-child(3) { animation-delay: .36s; }
@keyframes t4cf2Dot { 0%, 70%, 100% { opacity: .25; transform: translateY(0); } 32% { opacity: 1; transform: translateY(-4px); } }
.t4-cf2__empty { padding: 12px 4px; color: var(--cf2-muted); font-size: var(--t4-fs-small); }
[data-cf2-slotsbox] .t4-cutoff { margin: 0; }

/* ---- 05 buggies ---- */
.t4-cf2__qty {
	display: flex; align-items: center; justify-content: space-between; gap: 16px;
	border: 1px solid var(--cf2-line); background: var(--cf2-card); border-radius: 10px;
	padding: 12px 14px;
}
.t4-cf2__qty .lb { font-size: var(--t4-fs-small); font-weight: 600; }
.t4-cf2__qty .sb { font-size: var(--t4-fs-micro); color: var(--cf2-muted); margin-top: 2px; }
.t4-cf2__stp {
	display: flex; align-items: center; border: 1px solid var(--cf2-line); border-radius: 8px;
	overflow: hidden; flex: none;
}
.t4-cf2__stp button {
	width: 34px; height: 34px; border: none; background: var(--cf2-page); cursor: pointer;
	display: flex; align-items: center; justify-content: center; padding: 0;
}
.t4-cf2__stp button:disabled { opacity: .3; cursor: not-allowed; }
.t4-cf2__stp svg { width: 13px; height: 13px; stroke: var(--cf2-ink); fill: none; stroke-width: 2.4; }
.t4-cf2__stp .n { width: 34px; text-align: center; font-size: var(--t4-fs-small); font-weight: 600; }

/* private addon (page) + refund/terms rows (modal) */
.t4-cf2__addon, .t4-cf2__addon2 {
	position: relative; display: flex; align-items: center; gap: 12px;
	border: 1px solid var(--cf2-line); background: var(--cf2-card); border-radius: 10px;
	padding: 11px 14px; cursor: pointer;
}
.t4-cf2__addon { margin-top: 10px; }
.t4-cf2__addon.on, .t4-cf2__addon2.on { border-color: var(--cf2-red); background: var(--cf2-red-soft); }
.t4-cf2__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;
}
.t4-cf2__addon.on .t4-cf2__cbx, .t4-cf2__addon2.on .t4-cf2__cbx { background: var(--cf2-red); border-color: var(--cf2-red); }
.t4-cf2__cbx svg { width: 11px; height: 11px; stroke: #fff; fill: none; stroke-width: 3; opacity: 0; }
.t4-cf2__addon.on .t4-cf2__cbx svg, .t4-cf2__addon2.on .t4-cf2__cbx svg { opacity: 1; }
.t4-cf2__addon .tx2, .t4-cf2__addon2 .txt { flex: 1; }
.t4-cf2__addon .tx2 b, .t4-cf2__addon2 .txt b { font-size: var(--t4-fs-small); font-weight: 600; display: block; }
.t4-cf2__addon .tx2 span, .t4-cf2__addon2 .txt span { font-size: var(--t4-fs-micro); color: var(--cf2-muted); }
.t4-cf2__addon .pr, .t4-cf2__addon2 .pr { font-size: var(--t4-fs-small); font-weight: 600; color: var(--cf2-red); flex: none; }
.t4-cf2__addon2 .txt--terms { font-size: var(--t4-fs-micro); color: var(--cf2-body); }
.t4-cf2__terms { margin-top: 10px; }
/* terms link = a plain link, same treatment as the booking form (user 2026-07-17) */
.t4-cf2__link { color: var(--cf2-red); text-decoration: underline; font: inherit; }
.t4-cf2__link:hover { color: var(--cf2-red); }

/* "?" badge + dark popover (bm2) */
.t4-cf2__q {
	width: 19px; height: 19px; border-radius: 50%; border: 1px solid #cfc8ba; background: #fff;
	color: var(--cf2-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-cf2__q:hover { border-color: var(--cf2-red); color: var(--cf2-red); }
.t4-cf2__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: t4cf2In .18s ease both;
}
.t4-cf2__pop::after {
	content: ''; position: absolute; right: 22px; top: 100%;
	border: 7px solid transparent; border-top-color: #17181c;
}

/* ================= DARK SIDEBAR (in-page, sticky like the mock) ================= */
.t4-cf2__side {
	position: sticky; top: 96px; /* fixed V4 header bottoms out at ~83px */
	background: var(--cf2-dark); color: #fff; padding: 22px; border-radius: 16px;
	display: flex; flex-direction: column; min-width: 0;
}
.t4-cf2__side .ttl {
	font-family: var(--t4-mono); font-size: var(--t4-fs-micro); letter-spacing: 2px;
	text-transform: uppercase; color: var(--cf2-dark-mut); font-weight: 600;
}
.t4-cf2__side .rows { margin-top: 14px; display: flex; flex-direction: column; gap: 11px; }
.t4-cf2__side .r { display: flex; justify-content: space-between; gap: 12px; font-size: var(--t4-fs-small); align-items: baseline; }
.t4-cf2__side .r .k { color: #d8d2c6; }
.t4-cf2__side .r .v { font-weight: 600; text-align: right; }
.t4-cf2__side .r .v.empty { color: var(--cf2-dark-mut); font-weight: 400; }
.t4-cf2__side .hr { height: 1px; background: var(--cf2-dark-line); margin: 16px 0; flex: none; }
.t4-cf2__side .brk { display: flex; flex-direction: column; gap: 7px; margin-bottom: 12px; }
.t4-cf2__side .brk:empty { display: none; }
.t4-cf2__side .brk .b { display: flex; justify-content: space-between; font-size: var(--t4-fs-micro); color: #c3bcae; }
.t4-cf2__side .req {
	background: rgba(178, 106, 0, .16); border: 1px solid rgba(178, 106, 0, .45); color: #f0c380;
	border-radius: 10px; padding: 10px 12px; font-size: var(--t4-fs-micro); line-height: 1.5; margin-bottom: 12px;
}
.t4-cf2__side .prow { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.t4-cf2__side .prow .k {
	font-family: var(--t4-mono); font-size: var(--t4-fs-micro); letter-spacing: 1.6px;
	text-transform: uppercase; color: var(--cf2-dark-mut); font-weight: 600;
}
.t4-cf2__side .prow .v { font-size: var(--t4-fs-h2); font-weight: 800; line-height: 1; }
.t4-cf2__side .prow .u {
	font-family: var(--t4-mono); font-size: var(--t4-fs-micro); letter-spacing: 1px;
	color: var(--cf2-dark-mut); text-transform: uppercase; display: block; text-align: right; margin-top: 4px;
}
.t4-cf2__side .dash { display: inline-block; width: 26px; height: 3px; background: #fff; border-radius: 2px; vertical-align: middle; }
.t4-cf2__side .fine {
	font-family: var(--t4-mono); font-size: 8.5px; letter-spacing: 1.1px;
	text-transform: uppercase; color: var(--cf2-dark-mut); text-align: center; margin-top: 12px; line-height: 1.6;
}
/* CTA (shared look, bm2) */
.t4-cf2__cta {
	display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
	background: var(--cf2-red); color: #fff; border: none; font-size: var(--t4-fs-small); font-weight: 600;
	padding: 13px; border-radius: 11px; cursor: pointer; margin-top: 16px; flex: none;
}
.t4-cf2__cta:hover { filter: brightness(.92); }
.t4-cf2__cta svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2.2; }
.t4-cf2__side .t4-cf2__cta:disabled { background: var(--cf2-dark2); color: #6b6559; cursor: not-allowed; filter: none; }
.t4-cf2__bside .t4-cf2__cta:disabled { background: #d9d3c6; cursor: not-allowed; filter: none; }

/* ================= BOOKING MODAL (bm2 minus the date step) ================= */
.t4-cf2[data-cf2-ovl] {
	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;
	overflow-y: auto;
	overscroll-behavior: contain;
}
/* page-scroll lock (bm2 recipe: body pinned via position:fixed + top:-Ypx in JS) */
html.t4-cf2-lock { overflow: hidden !important; height: 100% !important; }
html.t4-cf2-lock body {
	position: fixed !important; left: 0 !important; right: 0 !important;
	width: 100% !important; height: auto !important; overflow: visible !important;
}

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

.t4-cf2__hd { padding: 20px 28px 0; border-bottom: 1px solid var(--cf2-line); flex: none; }
.t4-cf2__hdtop { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.t4-cf2__eyebrow {
	font-family: var(--t4-mono); font-size: var(--t4-fs-micro); letter-spacing: 2px;
	color: var(--cf2-red); text-transform: uppercase; font-weight: 600;
}
.t4-cf2__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-cf2__meta { font-size: var(--t4-fs-micro); color: var(--cf2-muted); margin-top: 5px; }
.t4-cf2__close {
	width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--cf2-line);
	background: var(--cf2-page); display: flex; align-items: center; justify-content: center;
	cursor: pointer; flex: none; transition: .12s;
}
.t4-cf2__close:hover { border-color: #c9c2b4; }
.t4-cf2__close svg { width: 15px; height: 15px; stroke: var(--cf2-body); fill: none; stroke-width: 2; }

.t4-cf2__steps { display: flex; align-items: center; margin-top: 16px; }
.t4-cf2__st { display: flex; align-items: center; gap: 9px; padding: 12px 0; flex: none; cursor: pointer; background: none; border: none; }
.t4-cf2__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(--cf2-muted); flex: none;
	transition: background-color .3s ease, border-color .3s ease, color .3s ease;
}
.t4-cf2__st .nm {
	font-family: var(--t4-mono); font-size: var(--t4-fs-micro); letter-spacing: 1.2px;
	text-transform: uppercase; color: var(--cf2-muted); font-weight: 600; transition: color .3s ease;
}
.t4-cf2__st .dot svg { width: 11px; height: 11px; stroke: #fff; fill: none; stroke-width: 3; }
.t4-cf2__st.done .dot { background: var(--cf2-ok); border-color: var(--cf2-ok); }
.t4-cf2__st.done .nm { color: var(--cf2-body); }
.t4-cf2__st.on .dot { background: var(--cf2-red); border-color: var(--cf2-red); color: #fff; }
.t4-cf2__st.on .nm { color: var(--cf2-ink); }
.t4-cf2__stline { flex: 1; height: 1.5px; margin: 0 12px; min-width: 24px; position: relative; overflow: hidden; background: #e6e1d7; }
.t4-cf2__stline::after {
	content: ''; position: absolute; inset: 0; background: var(--cf2-ok);
	transform: scaleX(0); transform-origin: left center;
	transition: transform .45s cubic-bezier(.32, .72, 0, 1);
}
.t4-cf2__stline.done::after { transform: scaleX(1); }

.t4-cf2__bmain { display: grid; grid-template-columns: minmax(0, 1fr) 316px; height: min(660px, calc(100vh - 210px)); }
.t4-cf2__bpane {
	padding: 20px 28px 14px; min-width: 0; height: 100%; overflow-y: auto;
	overscroll-behavior: contain; scrollbar-gutter: stable;
}
.t4-cf2__bpane::-webkit-scrollbar { width: 8px; }
.t4-cf2__bpane::-webkit-scrollbar-thumb { background: #ddd6c8; border-radius: 8px; }
.t4-cf2__bpane::-webkit-scrollbar-track { background: transparent; }
.t4-cf2__bside {
	border-left: 1px solid var(--cf2-line); background: #fbf9f5; padding: 18px 22px 16px;
	display: flex; flex-direction: column; min-width: 0; height: 100%; overflow-y: auto;
	overscroll-behavior: contain; scrollbar-width: none;
}
.t4-cf2__bside::-webkit-scrollbar { display: none; }
.t4-cf2__secl {
	font-family: var(--t4-mono); font-size: var(--t4-fs-micro); letter-spacing: 1.8px;
	color: var(--cf2-muted); text-transform: uppercase; font-weight: 600; margin-bottom: 10px;
}
.t4-cf2__bsec + .t4-cf2__bsec { margin-top: 24px; }
.t4-cf2__subnote { font-size: var(--t4-fs-small); color: var(--cf2-muted); margin: -4px 0 14px; }
.t4-cf2__p3extra .t4-cf2__bsec { margin-bottom: 20px; }
[data-cf2-p3bottom] .t4-cf2__bsec { margin: 18px 0 0; }
.t4-cf2__paynote {
	display: flex; align-items: center; gap: 8px; margin-top: 12px; font-size: var(--t4-fs-micro); color: var(--cf2-body);
	background: #fbf9f5; border: 1px solid var(--cf2-line); border-radius: 10px; padding: 9px 13px;
}
.t4-cf2__paynote svg { width: 14px; height: 14px; stroke: var(--cf2-ok); fill: none; stroke-width: 2.2; flex: none; }

/* step visibility: our step 1/2 = form steps (details/extras), recap+refund+terms on 3 */
.t4-cf2__p3extra { display: none; }
.t4-cf2__book--s3 .t4-cf2__p3extra { display: block; }

/* refund off-state (Pay later) + terms error highlight */
.t4-cf2__addon2--off { cursor: not-allowed; border-color: var(--cf2-line2) !important; background: #fbf9f5 !important; }
.t4-cf2__addon2--off > .t4-cf2__cbx,
.t4-cf2__addon2--off > .txt,
.t4-cf2__addon2--off > .pr { opacity: .45; }
.t4-cf2__addon2--err {
	border-color: var(--cf2-err) !important;
	box-shadow: 0 0 0 3px rgba(196, 39, 27, .12) !important;
	animation: t4cf2Shake .4s ease 1;
}
@keyframes t4cf2Shake {
	0%, 100% { transform: translateX(0); }
	25% { transform: translateX(-5px); }
	50% { transform: translateX(5px); }
	75% { transform: translateX(-3px); }
}

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

/* light sidebar */
.t4-cf2__sdt {
	font-size: var(--t4-fs-small); font-weight: 800; letter-spacing: .6px; text-transform: uppercase;
	padding-bottom: 10px; border-bottom: 1px solid var(--cf2-line);
}
.t4-cf2__sdrows { padding: 9px 0; display: flex; flex-direction: column; gap: 6px; }
.t4-cf2__sdr { display: flex; justify-content: space-between; gap: 10px; font-size: var(--t4-fs-micro); }
.t4-cf2__sdr .k { color: var(--cf2-muted); flex: none; }
.t4-cf2__sdr .v { font-weight: 600; text-align: right; }
.t4-cf2__sdr.faint .v { color: #c2bbad; font-weight: 600; }
.t4-cf2__sdcost { border-top: 1px solid var(--cf2-line); padding: 9px 0; display: flex; flex-direction: column; gap: 5px; }
.t4-cf2__sdc { display: flex; justify-content: space-between; font-size: var(--t4-fs-micro); }
.t4-cf2__sdc .k { color: var(--cf2-body); }
.t4-cf2__sdc .v { font-weight: 600; }
.t4-cf2__sdtot { border-top: 1.5px solid var(--cf2-ink); padding-top: 10px; display: flex; justify-content: space-between; align-items: baseline; }
.t4-cf2__sdtot .k {
	font-family: var(--t4-mono); font-size: var(--t4-fs-micro); letter-spacing: 1.4px;
	text-transform: uppercase; color: var(--cf2-muted); font-weight: 600;
}
.t4-cf2__sdtot .v { font-size: var(--t4-fs-h4); font-weight: 800; line-height: 1; }
.t4-cf2__backbtn {
	display: flex; align-items: center; justify-content: center; gap: 7px;
	background: var(--cf2-card); border: 1px solid var(--cf2-line); border-radius: 11px;
	font-size: var(--t4-fs-small); font-weight: 600; color: var(--cf2-body); cursor: pointer;
	margin-top: 7px; text-align: center; width: 100%; padding: 8px; transition: .12s; flex: none;
}
.t4-cf2__backbtn:hover { border-color: #c9c2b4; color: var(--cf2-ink); }
.t4-cf2__trust { margin-top: auto; padding-top: 10px; border-top: 1px solid var(--cf2-line); display: flex; flex-direction: column; gap: 5px; }
.t4-cf2__trust div { display: flex; align-items: center; gap: 7px; font-size: var(--t4-fs-micro); color: var(--cf2-body); }
.t4-cf2__trust svg { width: 12px; height: 12px; stroke: var(--cf2-ok); fill: none; stroke-width: 2.2; flex: none; }
.t4-cf2__pays { display: flex; gap: 4px; margin-top: 7px; flex-wrap: wrap; }
.t4-cf2__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(--cf2-line); background: var(--cf2-card); border-radius: 12px;
	padding: 3px 8px; color: var(--cf2-body);
}
.t4-cf2__pays svg, .t4-cf2__payico { height: 11px !important; width: auto !important; max-width: 24px; flex: none; }
.t4-cf2__pays img.t4-cf2__payico--img { height: 14px !important; width: auto !important; max-width: 30px; display: block; }

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

/* --- step 1 Details: contact fields --- */
.t4-cf2__formhost .booking-step__fields {
	display: grid; gap: 14px; grid-template-columns: 1fr 1fr;
	max-width: none !important; width: 100% !important;
}
.t4-cf2__formhost .field { display: block !important; margin: 0 !important; padding: 0 !important; width: 100% !important; max-width: none !important; }
.t4-cf2__formhost .field:has(.js-fullname) { order: 1; }
.t4-cf2__formhost .field:has(.js-email) { order: 2; }
.t4-cf2__formhost .field:has(.js-phone) { order: 3; grid-column: 1 / -1; }
.t4-cf2__formhost .field:has(.js-pickup_location) { order: 4; grid-column: 1 / -1; }
.t4-cf2__formhost .field__label { display: block !important; padding: 0 !important; margin: 0 !important; }
.t4-cf2__formhost .field__placeholder { display: none !important; }
.t4-cf2__flabel { display: block; font-size: var(--t4-fs-micro); font-weight: 600; color: var(--cf2-body); margin-bottom: 6px; }
.t4-cf2__flabel small { color: var(--cf2-muted); font-weight: 400; }
.t4-cf2__formhost .field__input {
	width: 100%; border: 1px solid #ded8cc !important; background: var(--cf2-card) !important;
	border-radius: 10px !important; padding: 12px 13px !important; font-size: var(--t4-fs-small) !important;
	font-family: inherit !important; color: var(--cf2-ink) !important; height: auto !important;
	transition: .12s;
}
.t4-cf2__formhost .field__input::placeholder { color: #b8b2a6 !important; opacity: 1 !important; font-weight: 400; }
.t4-cf2__formhost .field__input:focus {
	outline: none; border-color: var(--cf2-red) !important;
	box-shadow: 0 0 0 3px rgba(255, 40, 0, .1);
}
.t4-cf2__formhost .field.t4-invalid .field__input { border-color: var(--cf2-err) !important; box-shadow: 0 0 0 3px rgba(196, 39, 27, .08) !important; }
.t4-cf2__formhost .t4-ferr { color: var(--cf2-err); font-size: var(--t4-fs-micro); margin-top: 6px; }
.t4-cf2__formhost .iti { width: 100% !important; display: block !important; }
.t4-cf2__formhost .iti input.field__input,
.t4-cf2__formhost .iti input[type="tel"] { padding-left: 96px !important; }
.t4-cf2__formhost .iti__flag-container { padding: 0 !important; }
.t4-cf2__formhost .iti__selected-flag { padding: 0 10px 0 14px !important; background: none !important; width: 86px !important; }

/* --- step 2 Extras: real .extra-card grid, tier look (bm2) --- */
.t4-cf2__book--s2 .t4-cf2__formhost .booking-step[data-id="step-2"] > * { margin: 0; }
.t4-cf2__formhost .booking-step__cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; align-items: stretch; margin: 8px 0 0; }
.t4-cf2__formhost .extra-card {
	position: relative; border: 1px solid var(--cf2-line) !important; background: var(--cf2-card) !important;
	border-radius: 14px !important; padding: 16px 18px 14px !important; cursor: pointer;
	display: flex; flex-direction: column; margin: 0 !important; width: auto !important;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .03);
}
.t4-cf2__formhost .extra-card:hover { border-color: #c9c2b4 !important; }
.t4-cf2__formhost .extra-card.active {
	border-color: var(--cf2-red) !important;
	box-shadow: inset 0 0 0 1px var(--cf2-red), 0 6px 20px rgba(255, 40, 0, .13);
}
.t4-cf2__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-cf2__formhost .extra-card__title::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #9AA0A6; }
.t4-cf2__formhost .extra-card--bronze .extra-card__title { color: #9C6633; }
.t4-cf2__formhost .extra-card--bronze .extra-card__title::before { background: #C08552; }
.t4-cf2__formhost .extra-card--silver .extra-card__title { color: #6E7176; }
.t4-cf2__formhost .extra-card--silver .extra-card__title::before { background: #9AA0A6; }
.t4-cf2__formhost .extra-card--gold .extra-card__title { color: #9A7B1F; }
.t4-cf2__formhost .extra-card--gold .extra-card__title::before { background: #D4AF37; }
.t4-cf2 .t4-cf2__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(--cf2-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;
}
.t4-cf2__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(--cf2-ink) !important; }
.t4-cf2__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-cf2__formhost .extra-card__price > *:first-child { margin-right: 6px !important; }
.t4-cf2__formhost .extra-card__old-price { display: none !important; }
.t4-cf2__formhost .extra-card__price s.t4-cf2__pkold {
	display: inline !important; font-size: var(--t4-fs-small) !important; font-weight: 600 !important;
	color: var(--cf2-muted) !important; text-decoration: line-through !important;
	margin: 0 7px 0 0 !important; letter-spacing: 0 !important;
}
.t4-cf2__formhost .extra-card__list {
	list-style: none !important; margin: 12px 0 0 !important; padding: 12px 0 0 !important;
	border-top: 1px solid var(--cf2-line2); flex: 1 1 auto;
	display: flex; flex-direction: column; gap: 7px; width: 100% !important;
	align-content: flex-start;
}
.t4-cf2__formhost .extra-card__list li {
	font-size: var(--t4-fs-small); line-height: 1.4; color: var(--cf2-body); padding: 0 !important; margin: 0 !important;
	display: flex; gap: 8px; align-items: flex-start;
	list-style: none !important; background: none !important;
}
.t4-cf2__formhost .extra-card__list li::marker { content: none; }
.t4-cf2__formhost .extra-card__list li::after { display: none !important; content: none !important; }
.t4-cf2__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(--cf2-ok) !important; font-weight: 800; flex: none; font-size: var(--t4-fs-micro); margin: 1px 0 0 !important;
}
.t4-cf2__formhost .extra-card__list li > svg,
.t4-cf2__formhost .extra-card__list li > i,
.t4-cf2__formhost .extra-card__list li > img,
.t4-cf2__formhost .extra-card__list a { display: none !important; }
.t4-cf2__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 hijacks the sticker's containing block */
}
.t4-cf2__formhost .extra-card__header > *:not(.extra-card__sticker) { background: none !important; margin: 0 !important; text-align: left !important; }
.t4-cf2__formhost .extra-card .checkbox__input { position: absolute; opacity: 0; pointer-events: none; }
.t4-cf2__formhost .extra-card__saved {
	font-size: var(--t4-fs-micro) !important; font-weight: 600 !important; color: var(--cf2-ok) !important;
	background: var(--cf2-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;
}
.t4-cf2__formhost .extra-card__quantity.hidden { display: none !important; }
.t4-cf2__formhost .extra-card hr { display: none !important; }
.t4-cf2__formhost .extra-card__header { order: 0; }
.t4-cf2__formhost .extra-card__price { order: 1; }
.t4-cf2__formhost .extra-card__old-price { order: 2; }
.t4-cf2__formhost .extra-card > .extra-card__saved { order: 2; }
.t4-cf2__formhost .extra-card__list { order: 3; }
.t4-cf2__formhost .extra-card__btn { order: 4; }
.t4-cf2__formhost .extra-card__quantity { order: 5; }
.t4-cf2__formhost .extra-card__old-price::before,
.t4-cf2__formhost .extra-card__old-price::after,
.t4-cf2__formhost .extra-card__price::before,
.t4-cf2__formhost .extra-card__price::after { display: none !important; content: none !important; }
.t4-cf2__formhost .extra-card__quantity {
	display: flex !important; align-items: center !important; gap: 0 !important;
	border: 1px solid var(--cf2-line) !important; border-radius: 8px !important; overflow: hidden !important;
	margin: 14px auto 0 !important; width: auto !important; align-self: center;
}
.t4-cf2 .t4-cf2__formhost .extra-card__quantity .quantity__btn {
	width: 32px !important; height: 32px !important; border: none !important; border-radius: 0 !important;
	background: var(--cf2-page) !important; color: var(--cf2-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-cf2 .t4-cf2__formhost .extra-card__quantity .quantity__btn svg {
	width: 13px !important; height: 13px !important; stroke: var(--cf2-ink) !important; fill: none;
}
.t4-cf2 .t4-cf2__formhost .extra-card__quantity .quantity__btn use { color: var(--cf2-ink); }
.t4-cf2 .t4-cf2__formhost .extra-card__quantity .quantity__input,
.t4-cf2 .t4-cf2__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(--cf2-ink) !important; opacity: 1 !important; display: block !important; min-width: 0 !important;
}
.t4-cf2__formhost .extra-card__btn {
	margin-top: 13px !important; border: 1px solid #e5dfd3 !important; background: var(--cf2-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(--cf2-ink) !important; width: 100% !important; min-height: 0 !important;
}
.t4-cf2__formhost .extra-card__btn:hover { border-color: #c9c2b4 !important; }
.t4-cf2__formhost .extra-card.active .extra-card__btn {
	background: var(--cf2-red) !important; border-color: var(--cf2-red) !important; color: #fff !important;
}
.t4-cf2__skip {
	display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 14px;
	padding: 13px; border: 1px solid var(--cf2-line); border-radius: 11px; font-size: var(--t4-fs-small); font-weight: 600;
	color: var(--cf2-ink); cursor: pointer; background: var(--cf2-card); width: 100%;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .03); transition: .12s;
}
.t4-cf2__skip:hover { border-color: #c9c2b4; }

/* --- step 3 Payment: methods grid --- */
.t4-cf2__formhost .booking-checkout,
.t4-cf2__formhost .booking-checkout__order,
.t4-cf2__formhost .booking-step__columns,
.t4-cf2__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-cf2__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-cf2__formhost .booking-checkout__payment {
	display: flex !important; align-items: center !important; gap: 11px; border: 1px solid var(--cf2-line) !important;
	background: var(--cf2-card) !important; border-radius: 11px !important; padding: 13px 14px !important;
	cursor: pointer; min-height: 0 !important; margin: 0 !important;
	width: 100% !important; min-width: 0 !important; max-width: none !important;
}
.t4-cf2__formhost .booking-checkout__payment:hover { border-color: #c9c2b4 !important; }
.t4-cf2__formhost .booking-checkout__payment:has(input:checked) {
	border-color: var(--cf2-red) !important; box-shadow: inset 0 0 0 1px var(--cf2-red) !important; background: var(--cf2-red-soft) !important;
}
.t4-cf2__formhost .booking-checkout__payment input { position: absolute; opacity: 0; pointer-events: none; }
.t4-cf2__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-cf2__formhost .booking-checkout__payment-inner::before {
	content: ''; width: 17px; height: 17px; border-radius: 50%; border: 1.5px solid #cfc8ba; background: #fff; flex: none;
	box-sizing: border-box; transition: border-color .18s ease, border-width .18s cubic-bezier(.34, 1.3, .64, 1);
}
.t4-cf2__formhost .booking-checkout__payment:has(input:checked) .booking-checkout__payment-inner::before {
	border-color: var(--cf2-red); border-width: 5px;
}
.t4-cf2__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(--cf2-ink) !important; white-space: nowrap;
	overflow: hidden; text-overflow: ellipsis;
}
.t4-cf2__formhost .booking-checkout__payment-icons {
	display: flex !important; gap: 4px; align-items: center; flex: none !important; margin: 0 0 0 auto !important;
}
.t4-cf2__formhost .booking-checkout__payment-icon,
.t4-cf2__formhost .booking-checkout__payment svg,
.t4-cf2__formhost .booking-checkout__payment img { height: 17px !important; width: 26px !important; flex: none; }
.t4-cf2__formhost .booking-checkout__payment img.t4-cf2__paycellico { height: 17px !important; width: auto !important; max-width: 32px; }
.t4-cf2__formhost .booking-checkout__privacy,
.t4-cf2__formhost .checkbox { display: flex; align-items: flex-start; gap: 10px; margin-top: 18px !important; font-size: var(--t4-fs-micro); color: var(--cf2-body); line-height: 1.45; }
.t4-cf2__formhost .booking-checkout__privacy a { color: var(--cf2-red); text-decoration: underline; }
/* the on-request amber note ships inside the form's checkout — let it show cleanly */
.t4-cf2__formhost .booking-checkout__request-note { margin: 12px 0 0 !important; }

/* ================= FULL CALENDAR OVERLAY (standalone, used by the in-page date step) ================= */
.t4-cf2__calovl {
	position: fixed; inset: 0; z-index: 1300; background: rgba(20, 16, 10, .45);
	display: flex; align-items: center; justify-content: center; padding: 24px;
	animation: t4cf2Fade .2s ease both;
}
.t4-cf2__calovl[hidden] { display: none !important; }
.t4-cf2__cal {
	background: var(--cf2-card); border-radius: 16px; width: 460px; max-width: 100%;
	overflow: hidden; box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
	animation: t4cf2Pop .24s cubic-bezier(.32, .72, 0, 1) both;
}
.t4-cf2__calhd { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--cf2-line); }
.t4-cf2__calhd h3 { font-size: var(--t4-fs-body); font-weight: 800; letter-spacing: .6px; text-transform: uppercase; margin: 0; }
.t4-cf2__calbody { padding: 10px 14px 16px; }
.t4-cf2__ovl--closing { animation: t4cf2FadeOut .18s ease both; }
.t4-cf2__ovl--closing .t4-cf2__cal { animation: t4cf2PopOut .18s ease both; }

/* full-calendar reskin (raw AirDatepicker ships the legacy red header — bm2 recipe) */
.t4-cf2__calbody .calendar { display: block !important; background: none !important; padding: 0 !important; margin: 0 !important; width: 100% !important; box-shadow: none !important; border: none !important; }
.t4-cf2__calbody .air-datepicker,
.t4-cf2__calbody .air-datepicker--content,
.t4-cf2__calbody .air-datepicker--pointer { background: none !important; border: none !important; box-shadow: none !important; width: 100% !important; }
.t4-cf2__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-cf2__calbody .air-datepicker-nav--title {
	font-family: var(--t4-sans) !important; font-size: var(--t4-fs-small) !important; font-weight: 600 !important;
	color: var(--cf2-ink) !important; background: none !important; text-transform: none !important; letter-spacing: 0 !important;
}
.t4-cf2__calbody .air-datepicker-nav--title i { color: var(--cf2-muted) !important; font-style: normal; margin-left: 5px; }
.t4-cf2__calbody .air-datepicker-nav--action {
	width: 30px !important; height: 30px !important; border: 1px solid rgb(74, 74, 74) !important;
	background: var(--cf2-card) !important; border-radius: 8px !important; color: #000 !important;
	opacity: 1 !important; visibility: visible !important;
}
.t4-cf2__calbody .air-datepicker-nav--action:hover { border-color: #000 !important; }
.t4-cf2__calbody .air-datepicker-nav--action svg,
.t4-cf2__calbody .air-datepicker-nav--action path {
	fill: #000 !important; stroke: #000 !important; color: #000 !important;
}
.t4-cf2__calbody .air-datepicker-nav--action svg { width: 15px !important; height: 15px !important; }
.t4-cf2__calbody .air-datepicker-nav--action::before,
.t4-cf2__calbody .air-datepicker-nav--action::after { color: #000 !important; border-color: #000 !important; }
.t4-cf2__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(--cf2-muted) !important; text-transform: uppercase !important; font-weight: 600 !important;
}
.t4-cf2__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(--cf2-ink) !important;
	height: 38px !important; width: auto !important; transition: .1s;
}
.t4-cf2__calbody .air-datepicker-cell:hover:not(.-disabled-) { background: var(--cf2-page) !important; border-color: var(--cf2-line) !important; }
.t4-cf2__calbody .air-datepicker-cell.-current- { color: var(--cf2-red) !important; font-weight: 600 !important; }
.t4-cf2__calbody .air-datepicker-cell.-selected- {
	background: var(--cf2-red) !important; border-color: var(--cf2-red) !important; color: #fff !important; font-weight: 600 !important;
}
.t4-cf2__calbody .air-datepicker-cell.-disabled- { opacity: .28 !important; color: var(--cf2-muted) !important; cursor: not-allowed; }
.t4-cf2__calbody .air-datepicker-cell.-other-month- { opacity: 0 !important; pointer-events: none; }

/* ================= IN-SHELL TERMS READER (T&C in a modal, like everywhere else) ================= */
.t4-cf2__readovl {
	position: absolute; inset: 0; z-index: 6; background: rgba(20, 16, 10, .35);
	display: flex; align-items: center; justify-content: center; padding: 24px;
	animation: t4cf2Fade .2s ease both;
}
.t4-cf2__read {
	background: var(--cf2-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);
	animation: t4cf2Pop .24s cubic-bezier(.32, .72, 0, 1) both;
}
.t4-cf2__readbody {
	padding: 6px 24px 24px; overflow-y: auto; font-size: var(--t4-fs-small); line-height: 1.65; color: var(--cf2-body);
	overscroll-behavior: contain;
}
.t4-cf2__readbody h1, .t4-cf2__readbody h2, .t4-cf2__readbody h3 { font-size: var(--t4-fs-body); margin: 18px 0 8px; color: var(--cf2-ink); }
.t4-cf2__readbody p, .t4-cf2__readbody li { margin: 0 0 10px; }
.t4-cf2__readbody::-webkit-scrollbar { width: 8px; }
.t4-cf2__readbody::-webkit-scrollbar-thumb { background: #ddd6c8; border-radius: 8px; }
.t4-cf2__ovl--closing .t4-cf2__read { animation: t4cf2PopOut .18s ease both; }

/* ================= PAYMENT STEP COMPACTION (no left-pane scroll, user 2026-07-17) ================= */
.t4-cf2__book--s3 .t4-cf2__bpane { padding-top: 16px; }
.t4-cf2__book--s3 .t4-cf2__secl { margin-bottom: 8px; }
.t4-cf2__p3extra .t4-cf2__bsec { margin-bottom: 14px; }
[data-cf2-p3bottom] .t4-cf2__bsec { margin: 12px 0 0; }
.t4-cf2__rc { padding: 7px 0; }
.t4-cf2__book--s3 .t4-cf2__addon2 { padding: 9px 12px; }
.t4-cf2__paynote { margin-top: 8px; padding: 8px 12px; }
.t4-cf2__terms { margin-top: 8px; }
.t4-cf2__formhost .booking-checkout__payment { padding: 11px 13px !important; }

/* ================= MOTION (bm2's polish, verbatim behaviors) ================= */
.t4-cf2--dismiss { animation: t4cf2FadeOut .22s ease both; }
.t4-cf2--dismiss .t4-cf2__shell { animation: t4cf2ShellOut .22s ease both; }
@keyframes t4cf2Fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes t4cf2FadeOut { from { opacity: 1; } to { opacity: 0; } }
@keyframes t4cf2ShellOut { to { opacity: 0; transform: translateY(12px) scale(.99); } }
@keyframes t4cf2Pop { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes t4cf2PopOut { to { opacity: 0; transform: translateY(8px) scale(.98); } }
@keyframes t4cf2Rise { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.t4-cf2__bpane--fwd { animation: t4cf2StepFwd .28s cubic-bezier(.25, .8, .35, 1) both; }
.t4-cf2__bpane--bck { animation: t4cf2StepBck .28s cubic-bezier(.25, .8, .35, 1) both; }
@keyframes t4cf2StepFwd { from { opacity: 0; transform: translateX(22px); } to { opacity: 1; transform: none; } }
@keyframes t4cf2StepBck { from { opacity: 0; transform: translateX(-22px); } to { opacity: 1; transform: none; } }
.t4-cf2__exp,
.t4-cf2__dur,
.t4-cf2__d,
.t4-cf2__slot,
.t4-cf2__addon,
.t4-cf2__addon2,
.t4-cf2__skip,
.t4-cf2__calbtn,
.t4-cf2__arw,
.t4-cf2__stp button,
.t4-cf2__formhost .extra-card,
.t4-cf2__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-cf2__slot .t, .t4-cf2__slot .s, .t4-cf2__exp .nm, .t4-cf2__dur .h { transition: color .18s ease; }
.t4-cf2__exp:active,
.t4-cf2__dur:active,
.t4-cf2__d:active,
.t4-cf2__slot:active:not(:disabled),
.t4-cf2__addon:active,
.t4-cf2__addon2:active:not(.t4-cf2__addon2--off),
.t4-cf2__skip:active,
.t4-cf2__chip:active,
.t4-cf2__formhost .extra-card:active,
.t4-cf2__formhost .booking-checkout__payment:active { transform: scale(.98); }
.t4-cf2__cta { transition: background-color .2s ease, transform .12s ease, filter .15s; }
.t4-cf2__cta:active:not(:disabled) { transform: scale(.985); }
.t4-cf2__cbx { transition: background-color .18s ease, border-color .18s ease; }
.t4-cf2__cbx svg { transition: opacity .16s ease, transform .18s cubic-bezier(.34, 1.56, .64, 1); transform: scale(.4); }
.t4-cf2__addon.on .t4-cf2__cbx svg, .t4-cf2__addon2.on .t4-cf2__cbx svg { transform: scale(1); }
.t4-cf2__slots, .t4-cf2__qty, .t4-cf2__empty,
[data-cf2-slotsbox] .t4-cutoff { animation: t4cf2Rise .26s cubic-bezier(.25, .8, .35, 1) both; }

/* short viewports: compact the booking sidebar so it never scrolls (bm2 gotcha:
   this block must stay at the END of the file — equal specificity) */
@media (max-height: 920px) {
	.t4-cf2__trust > div { display: none; }
	.t4-cf2__trust { border-top: none; padding-top: 0; }
	.t4-cf2__pays { margin-top: 0; }
	.t4-cf2__bpane { padding-top: 16px; }
	.t4-cf2__rc { padding: 7px 0; }
	.t4-cf2__addon2 { padding: 9px 12px; }
	.t4-cf2__cta { padding: 11px; }
	.t4-cf2__sdt { padding-bottom: 8px; }
	.t4-cf2__sdrows { padding: 8px 0; gap: 5px; }
	.t4-cf2__sdcost { padding: 8px 0; gap: 4px; }
	.t4-cf2__backbtn { padding: 7px; margin-top: 6px; }
	.t4-cf2__sdtot .v { font-size: 21px; }
}

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