/* ============================================================
   Welcome To — Travel Club
   Brand colours + typography per BRANDING/fonts_and_colours
   ============================================================ */

:root {
	--wt-light-grey: #f2f2f2;
	--wt-sand: #ece0d2;
	--wt-light-yellow: #f4cf70;
	--wt-deep-yellow: #fdc139;
	--wt-light-blue: #badae6;
	--wt-medium-blue: #7fccfc;
	--wt-dark-blue: #489ad8;
	--wt-black-blue: #202328;

	--wt-ink: var(--wt-black-blue);
	--wt-ink-soft: rgba(32, 35, 40, 0.7);
	--wt-ink-muted: rgba(32, 35, 40, 0.5);
	--wt-card: #ffffff;
	--wt-border: rgba(32, 35, 40, 0.08);
	--wt-border-strong: rgba(32, 35, 40, 0.16);
	--wt-primary: var(--wt-dark-blue);
	--wt-primary-deep: #2f7fbe;

	--wt-radius-sm: 10px;
	--wt-radius-md: 18px;
	--wt-radius-lg: 28px;
	--wt-radius-pill: 999px;

	--wt-shadow-sm: 0 4px 12px rgba(32, 35, 40, 0.08);
	--wt-shadow-md: 0 14px 36px rgba(32, 35, 40, 0.14);
	--wt-shadow-lg: 0 24px 60px rgba(32, 35, 40, 0.22);
}

/* ── Brand fonts ─────────────────────────────────────────────────── */
@font-face {
	font-family: "Charles";
	src: url("./fonts/Charles.otf") format("opentype");
	font-display: swap;
}
/* Brandon + Museo — Adobe Fonts kit zsl4hyl. Labels use Barlow (see client/FONTS.md). */

/* ── Reset ───────────────────────────────────────────────────────── */
*,
*::before,
*::after {
	box-sizing: border-box;
}
html,
body {
	margin: 0;
	padding: 0;
	min-height: 100%;
}
body {
	font-family: "museo-sans", system-ui, sans-serif;
	font-weight: 300;
	color: var(--wt-ink);
	background: var(--wt-medium-blue);
	background-image: url("./assets/welcometo-background.jpg");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	min-height: 100vh;
	overflow-x: hidden;
}
h1, h2 {
	font-family: "brandon-grotesque", sans-serif;
	margin: 0;
}
h1 { font-weight: 700; }
h2 { font-weight: 400; }
h3, h4 {
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	margin: 0;
}
p { margin: 0 0 0.4em; line-height: 1.5; }
a { color: var(--wt-primary); text-decoration: none; }
a:hover { color: var(--wt-primary-deep); }

/* ── Waves — fixed <img> elements, natural aspect ratio ─────────── */
.wave {
	position: fixed;
	left: 0;
	width: 100%;
	height: auto;   /* maintains aspect ratio — never stretches */
	display: block;
	pointer-events: none;
	z-index: 1;
}
.wave--top  { top: 0;    object-position: top;    }
.wave--bottom { bottom: 0; object-position: bottom; }

/* ── App shell ───────────────────────────────────────────────────── */
.app {
	position: relative;
	z-index: 2;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

/* ── Top nav ─────────────────────────────────────────────────────── */
.top-nav {
	position: relative;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 32px;
	gap: 16px;
}

/* Brand logo: hidden in hero mode (logo is in the hero), visible in results */
.top-nav__brand {
	display: flex;
	align-items: center;
	cursor: pointer;
	background: none;
	border: none;
	padding: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.45s ease;
	text-decoration: none;
}
body.results-mode .top-nav__brand {
	opacity: 1;
	pointer-events: auto;
}

.top-nav__logo-blue  { display: block;  height: 40px; width: auto; filter: drop-shadow(0 4px 12px rgba(32,35,40,0.2)); }
.top-nav__logo-white { display: none;   height: 40px; width: auto; filter: drop-shadow(0 4px 12px rgba(32,35,40,0.2)); }
body.results-mode .top-nav__logo-blue  { display: none;  }
body.results-mode .top-nav__logo-white { display: block; }

.top-nav__right {
	display: flex;
	align-items: center;
	gap: 22px;
}

.top-nav__links {
	display: flex;
	align-items: center;
	gap: 22px;
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}
.top-nav__link {
	color: var(--wt-ink);
	opacity: 0.75;
	cursor: pointer;
}
.top-nav__link:hover { opacity: 1; color: var(--wt-ink); }

.env-toggle {
	position: relative;
	display: inline-flex;
	padding: 3px;
	border-radius: var(--wt-radius-pill);
	border: 1px solid var(--wt-border-strong);
	background: rgba(255, 255, 255, 0.88);
}
.env-toggle__opt {
	padding: 5px 11px;
	border: none;
	border-radius: var(--wt-radius-pill);
	background: transparent;
	font-family: "Barlow", sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--wt-ink-muted);
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}
.env-toggle__opt:hover {
	color: var(--wt-ink);
}
.env-toggle__opt.is-active {
	background: var(--wt-dark-blue);
	color: #fff;
}
.env-toggle__select {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Currency selector */
.currency-select {
	appearance: none;
	-webkit-appearance: none;
	background: rgba(255, 255, 255, 0.85)
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23202328' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E")
		no-repeat right 8px center / 13px;
	border: 1px solid var(--wt-border-strong);
	border-radius: var(--wt-radius-pill);
	padding: 7px 28px 7px 13px;
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	font-size: 13px;
	color: var(--wt-ink);
	cursor: pointer;
	outline: none;
	transition: background-color 0.2s, border-color 0.2s;
}
.currency-select:hover,
.currency-select:focus {
	background-color: #fff;
	border-color: var(--wt-dark-blue);
}

/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: clamp(40px, 10vh, 120px) 24px clamp(80px, 12vh, 160px);
	gap: 32px;
	transition: gap 0.55s cubic-bezier(0.22, 1, 0.36, 1),
		padding 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__logo-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero__logo {
	width: min(560px, 78vw);
	height: auto;
	display: block;
	filter: drop-shadow(0 12px 32px rgba(32, 35, 40, 0.28));
	transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

body.results-mode .hero__logo-wrap { display: none; }
body.results-mode .hero {
	padding: 14px 24px 20px;
	gap: 14px;
	min-height: auto;
	flex: 0 0 auto;
	position: relative;
	z-index: 30;
}

/* ── Search bar ──────────────────────────────────────────────────── */
.search-card {
	position: relative;
	width: min(960px, 100%);
	background: rgba(255, 255, 255, 0.97);
	border-radius: var(--wt-radius-lg);
	box-shadow: var(--wt-shadow-md);
	padding: 10px 10px 10px 16px;
	display: flex;
	align-items: center;
	gap: 4px;
	transition: box-shadow 0.3s ease;
}
.search-card:hover { box-shadow: var(--wt-shadow-lg); }
body.results-mode .search-card {
	box-shadow: var(--wt-shadow-sm);
	transform: scale(0.97);
	transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.search-field {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	border-radius: 20px;
	cursor: text;
	transition: background 0.2s;
	min-width: 0;
}
.search-field:hover, .search-field:focus-within { background: var(--wt-light-grey); }
.search-field + .search-field { border-left: 1px solid var(--wt-border); }

.search-field__icon { width: 22px; height: 22px; flex-shrink: 0; object-fit: contain; opacity: 0.8; }
.search-field__body { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.search-field__label {
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wt-ink-muted);
	margin-bottom: 2px;
}
.search-field--date .search-field__date {
	position: relative;
	display: block;
	min-height: 22px;
}
.search-field--date .search-field__date-display {
	display: block;
	font-family: "museo-sans", sans-serif;
	font-weight: 100;
	font-size: 14px;
	line-height: 1.3;
	color: var(--wt-ink);
	pointer-events: none;
}
.search-field--date input[type="date"] {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
}
.search-field input,
.search-field select {
	border: none;
	background: transparent;
	font-family: "museo-sans", sans-serif;
	font-size: 14px;
	font-weight: 100;
	color: var(--wt-ink);
	padding: 0;
	width: 100%;
	outline: none;
}
.search-field input::placeholder { color: var(--wt-ink-muted); font-weight: 100; }

.search-submit {
	background: var(--wt-dark-blue);
	color: #fff;
	border: none;
	border-radius: var(--wt-radius-pill);
	height: 52px;
	min-width: 52px;
	padding: 0 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
	box-shadow: 0 6px 18px rgba(72, 154, 216, 0.4);
	transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.search-submit:hover { background: var(--wt-primary-deep); transform: translateY(-1px); }
.search-submit:active { transform: none; }
.search-submit__icon { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 2.5; }

/* Advanced drawer */
.advanced { width: min(960px, 100%); display: flex; flex-direction: column; align-items: center; }
.advanced__toggle {
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid var(--wt-border);
	color: var(--wt-ink);
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 7px 16px;
	border-radius: var(--wt-radius-pill);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: background 0.2s;
}
.advanced__toggle:hover { background: #fff; }
.advanced__caret {
	display: inline-block;
	width: 7px; height: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.3s ease;
	margin-top: -3px;
}
.advanced.is-open .advanced__caret { transform: rotate(-135deg); margin-top: 3px; }
.advanced__drawer {
	width: 100%; max-height: 0; overflow: hidden;
	opacity: 0; transform: translateY(-8px);
	transition: max-height 0.35s ease, opacity 0.3s ease, transform 0.3s ease, margin-top 0.3s ease;
}
.advanced.is-open .advanced__drawer { max-height: min(92vh, 1200px); opacity: 1; transform: none; margin-top: 12px; overflow-y: auto; }
.advanced .search-more-filters {
	margin-top: 0;
	width: 100%;
}
.advanced__field--dev {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid var(--wt-border);
}
.advanced__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 12px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: var(--wt-radius-md);
	padding: 16px;
	box-shadow: var(--wt-shadow-sm);
}
.advanced__field { display: flex; flex-direction: column; gap: 6px; }
.advanced__field label {
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wt-ink-muted);
}
.advanced__field input,
.advanced__field select {
	border: 1px solid var(--wt-border-strong);
	border-radius: 12px;
	padding: 9px 12px;
	font-family: inherit;
	font-size: 14px;
	font-weight: 500;
	color: var(--wt-ink);
	background: #fff;
	outline: none;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.advanced__field input:focus,
.advanced__field select:focus {
	border-color: var(--wt-dark-blue);
	box-shadow: 0 0 0 4px rgba(127, 204, 252, 0.25);
}
.advanced__field small { color: var(--wt-ink-muted); font-size: 11px; line-height: 1.3; }

.advanced__field--checkbox {
	grid-column: 1 / -1;
}
.advanced__check {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	margin: 0;
}
.advanced__check input {
	width: auto;
	min-width: 18px;
	height: 18px;
	accent-color: var(--wt-dark-blue);
}

/* ── Main content ────────────────────────────────────────────────── */
.main {
	position: relative;
	z-index: 2;
	width: min(1200px, 100%);
	margin: 0 auto;
	padding: 0 24px clamp(160px, 20vh, 260px);
	display: flex;
	flex-direction: column;
	gap: 20px;
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transition: opacity 0.5s ease 0.1s;
}
body.results-mode .main { opacity: 1; max-height: none; overflow: visible; }

.panel {
	background: rgba(255, 255, 255, 0.95);
	border-radius: var(--wt-radius-lg);
	box-shadow: var(--wt-shadow-md);
	padding: 26px;
	border: 1px solid var(--wt-border);
}
.panel--soft { background: rgba(255, 255, 255, 0.78); backdrop-filter: blur(8px); }

.section-title {
	font-family: "brandon-grotesque", sans-serif;
	font-weight: 700;
	font-size: 20px;
	color: var(--wt-ink);
	margin: 0 0 14px;
}

/* ── Loader (spinner) ────────────────────────────────────────────── */
#loader {
	display: none;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	padding: 36px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: var(--wt-radius-lg);
	box-shadow: var(--wt-shadow-sm);
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: 13px;
	color: var(--wt-ink);
}
#loader.is-visible { display: flex; animation: wt-fade-in 0.3s ease both; }
.spinner {
	width: 52px; height: 52px;
	border-radius: 50%;
	border: 5px solid var(--wt-light-blue);
	border-top-color: var(--wt-dark-blue);
	border-right-color: var(--wt-deep-yellow);
	animation: wt-spin 1.1s linear infinite;
}
@keyframes wt-spin { to { transform: rotate(360deg); } }
@keyframes wt-fade-in {
	from { opacity: 0; transform: translateY(8px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* ── Hotel search result cards ───────────────────────────────────── */
/* ── Search results sort bar ───────────────────────────────────────── */
.search-toolbar-wrap {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	gap: 12px;
	margin-bottom: 14px;
}
.search-sort-bar {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 12px 14px;
	border-radius: var(--wt-radius-md);
	border: 1px solid var(--wt-border-strong);
	background: rgba(255, 255, 255, 0.92);
}
.search-sort-bar__row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 12px;
}
.search-sort-bar__row--stars {
	align-items: flex-start;
}
.search-sort-bar__row--sort {
	padding-top: 4px;
	border-top: 1px solid var(--wt-border);
}
.search-sort-bar__sort-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 12px;
	flex: 1 1 auto;
	min-width: 0;
}
.search-sort-bar__label {
	flex: 0 0 auto;
	min-width: 72px;
	font-family: "Barlow", sans-serif;
	font-weight: 600;
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--wt-ink-muted);
}
.search-sort-bar__controls {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.search-sort-bar__btn {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 7px 14px;
	border-radius: var(--wt-radius-pill);
	border: 1px solid var(--wt-border-strong);
	background: rgba(255, 255, 255, 0.95);
	font-size: 13px;
	font-weight: 500;
	font-family: inherit;
	color: var(--wt-ink);
	cursor: pointer;
}
.search-sort-bar__btn:hover {
	border-color: var(--wt-dark-blue);
	color: var(--wt-dark-blue);
}
.search-sort-bar__btn.is-active {
	border-color: var(--wt-dark-blue);
	background: rgba(72, 154, 216, 0.12);
	color: var(--wt-dark-blue);
}
.search-sort-bar__dir {
	font-size: 12px;
	opacity: 0.85;
}
.search-sort-bar__more {
	margin-left: auto;
	padding: 7px 14px;
	border-radius: var(--wt-radius-pill);
	border: 1px solid var(--wt-border-strong);
	background: rgba(255, 255, 255, 0.95);
	font-size: 13px;
	font-weight: 600;
	font-family: inherit;
	color: var(--wt-dark-blue);
	cursor: pointer;
	white-space: nowrap;
}
.search-sort-bar__more:hover {
	border-color: var(--wt-dark-blue);
	background: rgba(72, 154, 216, 0.1);
}
.search-sort-bar__star-tiers {
	display: flex;
	flex: 1 1 200px;
	flex-wrap: wrap;
	gap: 8px;
}
.search-toolbar-wrap--map-open {
	flex-direction: column;
	align-items: stretch;
}
.search-toolbar-wrap--map-open .search-sort-bar {
	flex: 0 0 auto;
	width: 100%;
	position: relative;
	z-index: 2;
}
.search-map-teaser {
	flex: 0 0 188px;
	width: 188px;
	align-self: stretch;
	position: relative;
	border-radius: var(--wt-radius-md);
	overflow: hidden;
	border: 1px solid var(--wt-border-strong);
	background: #dceef5;
	transition: width 0.35s ease, height 0.35s ease, min-height 0.35s ease, flex-basis 0.35s ease;
}
.search-map-teaser--expanded {
	flex: 0 0 auto;
	width: 100%;
	height: min(340px, 42vh);
	min-height: min(340px, 42vh);
	max-height: min(340px, 42vh);
	display: flex;
	flex-direction: column;
	z-index: 1;
	overflow: hidden;
}
.search-map-teaser__static {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.55) 0%,
		rgba(255, 255, 255, 0.2) 45%,
		rgba(255, 255, 255, 0.35) 100%
	);
	transition: opacity 0.25s ease;
}
.search-map-teaser__static::after {
	content: none;
}
.search-map-teaser--expanded .search-map-teaser__static {
	opacity: 0;
}
.search-map-teaser__panel {
	display: block;
	position: absolute;
	inset: 0;
	background: #e8eef2;
	z-index: 0;
}
.search-map-teaser--expanded .search-map-teaser__panel {
	display: flex;
	flex-direction: column;
	position: relative;
	flex: 1 1 auto;
	min-height: 0;
	width: 100%;
	inset: auto;
	overflow: hidden;
}
.search-map-teaser:not(.search-map-teaser--expanded) .leaflet-pane.leaflet-tooltip-pane {
	display: none !important;
}
.search-map-teaser--expanded .leaflet-pane.leaflet-tooltip-pane {
	z-index: 700;
	pointer-events: none;
}
.search-map-teaser--expanded .leaflet-tooltip {
	pointer-events: auto;
}
.search-map-teaser__canvas {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 0;
	flex: 1 1 auto;
}
.search-map-teaser__panel .leaflet-container {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	font-family: inherit;
	background: #e8eef2;
}
.search-map-teaser__panel .leaflet-tile-pane {
	filter: saturate(0.72) contrast(0.96);
}
.search-map-panel-empty,
.search-map-panel-note {
	position: absolute;
	left: 0;
	right: 0;
	z-index: 3;
	margin: 0;
	padding: 10px 14px;
	font-size: 12px;
	line-height: 1.45;
	background: rgba(255, 255, 255, 0.94);
	color: var(--wt-ink);
}
.search-map-panel-empty {
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.search-map-panel-note {
	bottom: 0;
	border-top: 1px solid var(--wt-border);
}
.leaflet-tooltip.search-map-tooltip {
	margin: 0;
	padding: 0;
	border: 1px solid var(--wt-border-strong);
	border-radius: var(--wt-radius-md);
	background: #fff;
	box-shadow: 0 6px 18px rgba(32, 35, 40, 0.18);
	color: var(--wt-ink);
	font-family: inherit;
	font-size: 12px;
	line-height: 1.35;
	white-space: normal;
	overflow: hidden;
}
.leaflet-tooltip-top.search-map-tooltip::before {
	border-top-color: #fff;
}
.leaflet-tooltip-bottom.search-map-tooltip::before {
	border-bottom-color: #fff;
}
.leaflet-tooltip-left.search-map-tooltip::before {
	border-left-color: #fff;
}
.leaflet-tooltip-right.search-map-tooltip::before {
	border-right-color: #fff;
}
.search-map-tooltip-card {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 300px;
	max-width: min(320px, 88vw);
}
.search-map-tooltip__img {
	display: block;
	flex: 0 0 72px;
	width: 72px;
	height: 72px;
	object-fit: cover;
	background: #e8eef2;
	border-radius: var(--wt-radius-sm) 0 0 var(--wt-radius-sm);
}
.search-map-tooltip__img--placeholder {
	background: linear-gradient(160deg, #b8d4e8 0%, #dceef5 50%, #9ec5de 100%);
}
.search-map-tooltip__body {
	flex: 1 1 auto;
	min-width: 200px;
	padding: 8px 12px 8px 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
}
.search-map-tooltip__name {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	font-weight: 700;
	font-size: 12px;
	line-height: 1.3;
}
.search-map-tooltip__foot {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 10px;
}
.search-map-tooltip__foot-stars .stars,
.search-map-tooltip__foot .stars {
	font-size: 11px;
	letter-spacing: 0.04em;
	color: var(--wt-deep-yellow);
}
.search-map-tooltip__price {
	font-weight: 600;
	font-size: 12px;
	color: var(--wt-dark-blue);
	white-space: nowrap;
}
.search-map-tooltip__price .price-per-night {
	font-weight: 500;
	font-size: 11px;
	color: var(--wt-ink-muted);
}
.search-map-error {
	margin: 0 0 12px;
	padding: 12px 16px;
	font-size: 14px;
	color: var(--wt-ink);
}
.search-results-content {
	min-height: 120px;
}
.search-results-content--loading {
	display: flex;
	align-items: stretch;
}
.search-results-loader {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	width: 100%;
	padding: 48px 24px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: var(--wt-radius-lg);
	border: 1px solid var(--wt-border);
	box-shadow: var(--wt-shadow-sm);
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: 13px;
	color: var(--wt-ink);
}
.search-results-empty {
	text-align: center;
	padding: 36px 24px;
}
.search-more-filters-bar {
	width: 100%;
	margin-bottom: 14px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.search-more-filters-bar__toggle {
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid var(--wt-border-strong);
	color: var(--wt-ink);
	font-family: "Barlow", sans-serif;
	font-weight: 600;
	font-size: 13px;
	padding: 8px 16px;
	border-radius: var(--wt-radius-pill);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: background 0.2s, border-color 0.2s;
}
.search-more-filters-bar__toggle:hover {
	background: #fff;
	border-color: var(--wt-dark-blue);
	color: var(--wt-dark-blue);
}
.search-more-filters-bar__caret {
	display: inline-block;
	width: 7px;
	height: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.3s ease;
	margin-top: -3px;
}
.search-more-filters-bar.is-open .search-more-filters-bar__caret {
	transform: rotate(-135deg);
	margin-top: 3px;
}
.search-more-filters-bar__drawer {
	width: 100%;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transform: translateY(-6px);
	transition: max-height 0.35s ease, opacity 0.3s ease, transform 0.3s ease, margin-top 0.3s ease;
}
.search-more-filters-bar.is-open .search-more-filters-bar__drawer {
	max-height: min(85vh, 900px);
	opacity: 1;
	transform: none;
	margin-top: 10px;
	overflow-y: auto;
}
.search-more-filters-bar .search-more-filters {
	margin-top: 0;
}
.search-more-filters-bar .search-more-filters__section:first-child {
	margin-top: 0;
}
.search-more-filters__heading-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 8px;
}
.search-more-filters__heading-row .search-more-filters__heading {
	margin: 0;
}
.search-bed-filters__toggle {
	padding: 0;
	border: none;
	background: none;
	font-size: 12px;
	font-weight: 600;
	font-family: inherit;
	color: var(--wt-dark-blue);
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 2px;
}
.search-bed-filters__toggle:hover {
	color: var(--wt-primary-deep);
}
@media (max-width: 720px) {
	.search-toolbar-wrap {
		flex-direction: column;
	}
	.search-map-teaser {
		flex: 0 0 auto;
		width: 100%;
		min-height: 96px;
	}
	.search-map-teaser--expanded {
		height: min(280px, 40vh);
		min-height: min(280px, 40vh);
		max-height: min(280px, 40vh);
	}
}
.search-map-teaser__btn {
	position: absolute;
	left: 50%;
	bottom: 14px;
	z-index: 5;
	transform: translateX(-50%);
	pointer-events: auto;
	padding: 8px 16px;
	border: none;
	border-radius: var(--wt-radius-pill);
	background: #fff;
	box-shadow: 0 4px 14px rgba(32, 35, 40, 0.18);
	font-size: 13px;
	font-weight: 700;
	font-family: inherit;
	color: var(--wt-ink);
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.2s, color 0.2s, transform 0.2s;
}
.search-map-teaser__btn:hover {
	background: var(--wt-dark-blue);
	color: #fff;
}
.search-map-teaser--expanded .search-map-teaser__btn {
	bottom: 12px;
	z-index: 600;
	background: #fff;
}
.search-map-teaser--expanded .search-map-teaser__btn:hover {
	background: var(--wt-dark-blue);
	color: #fff;
}
.search-map-teaser__panel .leaflet-control-container {
	z-index: 400;
}
.search-more-filters {
	margin-top: 4px;
	padding: 14px;
	border-radius: var(--wt-radius-md);
	border: 1px solid var(--wt-border);
	background: rgba(255, 255, 255, 0.98);
}
.search-more-filters[hidden] {
	display: none !important;
}
.search-more-filters__heading {
	margin: 0 0 8px;
	font-family: "Barlow", sans-serif;
	font-size: 13px;
	font-weight: 700;
	color: var(--wt-ink);
}
.search-more-filters__row--split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 20px 28px;
	align-items: start;
}
.search-more-filters__row--split .search-more-filters__section {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}
.search-more-filters__row--split .search-more-filters__section + .search-more-filters__section {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}
.search-more-filters__section--beds {
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid var(--wt-border);
}
.search-more-filters__section + .search-more-filters__section {
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid var(--wt-border);
}
.search-pop-filters--grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 8px;
}
.search-pop-filters--grid .search-pop-filters__chip {
	min-width: 0;
}
@media (max-width: 640px) {
	.search-more-filters__row--split {
		grid-template-columns: 1fr;
	}
}
.search-more-filters__hint {
	margin: 8px 0 0;
	font-size: 11px;
	color: var(--wt-ink-muted);
}
.search-more-filters__actions {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	margin-top: 16px;
	padding-top: 12px;
	border-top: 1px solid var(--wt-border);
}
.search-more-filters__clear,
.search-more-filters__apply {
	padding: 8px 16px;
	border-radius: var(--wt-radius-pill);
	font-size: 13px;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
}
.search-more-filters__clear {
	border: 1px solid var(--wt-border-strong);
	background: transparent;
	color: var(--wt-ink-muted);
}
.search-more-filters__apply {
	border: none;
	background: var(--wt-dark-blue);
	color: #fff;
}
.search-pop-filters,
.search-bed-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.search-pop-filters__chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 12px;
	border-radius: var(--wt-radius-pill);
	border: 1px solid var(--wt-border-strong);
	background: rgba(255, 255, 255, 0.95);
	font-size: 13px;
	cursor: pointer;
	user-select: none;
}
.search-pop-filters__chip:has(input:checked) {
	border-color: var(--wt-dark-blue);
	background: rgba(72, 154, 216, 0.12);
	color: var(--wt-dark-blue);
}
.search-pop-filters__chip input {
	margin: 0;
	accent-color: var(--wt-dark-blue);
}
.search-price-filter__range-label {
	margin: 0 0 10px;
	font-size: 15px;
	font-weight: 700;
	color: var(--wt-ink);
}
.search-price-filter__hist-bars {
	display: flex;
	align-items: flex-end;
	gap: 2px;
	height: 48px;
	margin-bottom: 10px;
	padding: 0 2px;
}
.search-price-filter__hist-bar {
	flex: 1 1 0;
	min-width: 3px;
	border-radius: 2px 2px 0 0;
	background: rgba(72, 154, 216, 0.35);
}
.search-price-filter__sliders {
	--price-fill-left: 0%;
	--price-fill-right: 0%;
	position: relative;
	height: 28px;
	margin: 4px 0 0;
}
.search-price-filter__sliders::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	height: 4px;
	transform: translateY(-50%);
	border-radius: 2px;
	background: rgba(32, 35, 40, 0.12);
}
.search-price-filter__sliders::after {
	content: "";
	position: absolute;
	left: var(--price-fill-left);
	right: var(--price-fill-right);
	top: 50%;
	height: 4px;
	transform: translateY(-50%);
	border-radius: 2px;
	background: var(--wt-dark-blue);
	pointer-events: none;
}
.search-price-filter__sliders input[type="range"] {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	width: 100%;
	height: 28px;
	margin: 0;
	background: transparent;
	pointer-events: none;
	-webkit-appearance: none;
	appearance: none;
}
.search-price-filter__sliders input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 2px solid var(--wt-dark-blue);
	background: #fff;
	box-shadow: 0 1px 4px rgba(32, 35, 40, 0.2);
	pointer-events: auto;
	cursor: grab;
}
.search-price-filter__sliders input[type="range"]::-moz-range-thumb {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 2px solid var(--wt-dark-blue);
	background: #fff;
	box-shadow: 0 1px 4px rgba(32, 35, 40, 0.2);
	pointer-events: auto;
	cursor: grab;
}
.search-price-filter__sliders #searchPriceMax {
	z-index: 2;
}
.search-sort-bar__star {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
	min-width: 108px;
	padding: 10px 12px;
	border-radius: var(--wt-radius-md);
	border: 1px solid var(--wt-border-strong);
	background: rgba(255, 255, 255, 0.95);
	font-family: inherit;
	text-align: left;
	cursor: pointer;
	color: var(--wt-ink);
}
.search-sort-bar__star:hover:not(:disabled) {
	border-color: var(--wt-dark-blue);
	box-shadow: 0 2px 8px rgba(72, 154, 216, 0.15);
}
.search-sort-bar__star.is-active {
	border-color: var(--wt-dark-blue);
	background: rgba(72, 154, 216, 0.12);
}
.search-sort-bar__star.is-disabled {
	opacity: 0.45;
	cursor: not-allowed;
}
.search-sort-bar__star-rating {
	font-size: 14px;
	line-height: 1.2;
	letter-spacing: 0.04em;
	color: var(--wt-deep-yellow);
}
.search-sort-bar__star--all .search-sort-bar__star-rating {
	color: var(--wt-dark-blue);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.02em;
}
.search-sort-bar__star-from {
	font-size: 13px;
	font-weight: 600;
	color: var(--wt-ink);
}
.search-sort-bar__star-count {
	font-size: 11px;
	color: var(--wt-ink-muted);
}
.search-sort-bar__empty {
	grid-column: 1 / -1;
	margin: 8px 0 0;
	padding: 20px 16px;
	text-align: center;
	font-size: 14px;
	color: var(--wt-ink-muted);
	background: rgba(255, 255, 255, 0.7);
	border-radius: var(--wt-radius-md);
	border: 1px dashed var(--wt-border-strong);
}

.card-container { display: grid; grid-template-columns: 1fr; gap: 16px; }

.card {
	background: rgba(255, 255, 255, 0.88);   /* slight transparency */
	border: 1px solid var(--wt-border);
	border-radius: var(--wt-radius-lg);
	padding: 20px;
	box-shadow: var(--wt-shadow-sm);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	animation: wt-fade-in 0.4s ease both;
	cursor: pointer;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--wt-shadow-md); }

.card-image {
	width: 260px; height: 200px; min-width: 260px;
	border-radius: var(--wt-radius-md);
	overflow: hidden;
	background: var(--wt-sand);
	flex-shrink: 0;
}
.card-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.card-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding-left: 20px;
	min-width: 0;
}

.card-hotel-name {   /* primary title on search cards */
	font-family: "brandon-grotesque", sans-serif;
	font-weight: 700;
	font-size: 23px;
	color: var(--wt-ink);
	margin: 0 0 4px;
	line-height: 1.2;
}

.card-room-type {   /* room line — caps feel, muted, between small label and headline */
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wt-ink-muted);
	margin: 0 0 6px;
	line-height: 1.35;
}

.card-meta-row {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	margin: 2px 0 4px;
}

.stars {
	color: var(--wt-deep-yellow);
	font-size: 13px;
	letter-spacing: 1px;
	line-height: 1;
}

.card-address {
	font-size: 12px;
	color: var(--wt-ink-muted);
}

.card-meta {
	font-size: 13px;
	color: var(--wt-ink-soft);
	margin: 0;
}

.card-footer {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 14px;
	gap: 12px;
}

.card-price-label {
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--wt-ink-muted);
	margin: 0 0 2px;
}
.card-price {
	font-family: "brandon-grotesque", sans-serif;
	font-weight: 700;
	font-size: 26px;
	color: var(--wt-ink);
	margin: 0;
	line-height: 1;
}

.price-per-night {
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.02em;
	color: var(--wt-ink-muted);
}

.price-incl-taxes {
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 0.04em;
	color: var(--wt-ink-muted);
	margin: 4px 0 0;
	line-height: 1.3;
}

.rates-table__price-inner {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0;
	text-align: right;
}

.rates-table__price-inner .price-incl-taxes {
	margin-top: 2px;
}

.rates-table__price-amount {
	font-family: "brandon-grotesque", sans-serif;
	font-weight: 700;
	font-size: 18px;
	color: var(--wt-ink);
	line-height: 1.2;
}

.rates-table__price-inner .price-per-night {
	font-size: 12px;
}

/* Badges — always hug their text, never stretch */
.badge {
	display: inline-flex;
	align-self: flex-start;   /* critical: don't stretch in a flex column */
	align-items: center;
	gap: 4px;
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: var(--wt-radius-pill);
	width: max-content;
}
.badge--green {
	background: rgba(47, 138, 77, 0.1);
	color: #2f8a4d;
	border: 1px solid rgba(47, 138, 77, 0.2);
}
.badge--grey {
	background: rgba(32, 35, 40, 0.06);
	color: rgba(32, 35, 40, 0.55);
	border: 1px solid rgba(32, 35, 40, 0.12);
}

/* CTA button */
.price-btn,
button.price-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	background: var(--wt-dark-blue);
	color: #fff;
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 11px 18px;
	border: none;
	border-radius: var(--wt-radius-pill);
	cursor: pointer;
	text-decoration: none;
	box-shadow: 0 6px 18px rgba(72, 154, 216, 0.3);
	transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
	line-height: 1.2;
	margin-top: 0;
	white-space: nowrap;
}
.price-btn:hover {
	background: var(--wt-primary-deep);
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(72, 154, 216, 0.4);
}
.price-btn--compact {
	padding: 8px 14px;
	font-size: 11px;
}

/* Ghost / secondary button */
.btn-ghost {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.88);
	color: var(--wt-ink);
	border: 1px solid var(--wt-border-strong);
	border-radius: var(--wt-radius-pill);
	padding: 9px 16px;
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.2s;
}
.btn-ghost:hover { background: #fff; color: var(--wt-ink); }

/* Generic base button */
button {
	background: var(--wt-ink);
	border-radius: var(--wt-radius-pill);
	color: #fff;
	border: 0;
	padding: 11px 18px;
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform 0.15s, background 0.2s;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* ── Hotel detail view ───────────────────────────────────────────── */
.hotel-detail { animation: wt-fade-in 0.4s ease both; }

.hotel-detail__top {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	margin-bottom: 28px;
	align-items: start;
}
/* Let the grid shrink so wide images cannot blow out the layout (min-width: auto is the default). */
.hotel-detail__top > * {
	min-width: 0;
}

.hotel-detail__gallery {
	max-width: 100%;
	overflow: hidden;
}

/* Overlay gallery nav (room photos) */
.gallery-nav-wrap--overlay {
	display: block;
	position: relative;
	width: 100%;
}
.gallery-nav-wrap--overlay .room-rate-group__img-frame {
	position: relative;
	width: 100%;
}
.gallery-nav-wrap--single .gallery-nav--overlay {
	display: none;
}
.gallery-nav-wrap--overlay .hotel-detail__img-frame,
.gallery-nav-wrap--overlay .room-rate-group__img-frame {
	position: relative;
	width: 100%;
}
.hotel-detail__gallery-stage.gallery-nav-wrap--overlay {
	border-radius: var(--wt-radius-md);
	overflow: hidden;
}
.gallery-nav--overlay {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: auto;
	height: auto;
	padding: 4px 6px;
	border: none;
	border-radius: 0;
	background: transparent;
	color: #fff;
	font-size: 34px;
	font-weight: 300;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.65), 0 0 14px rgba(0, 0, 0, 0.45);
	z-index: 3;
	transition: transform 0.15s, opacity 0.15s;
}
.gallery-nav--overlay:hover {
	background: transparent;
	transform: translateY(-50%) scale(1.08);
	opacity: 0.95;
}
.gallery-nav--overlay.gallery-nav--prev { left: 10px; }
.gallery-nav--overlay.gallery-nav--next { right: 10px; }

.hotel-detail__main-wrap {
	width: 100%;
	max-width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: var(--wt-radius-md);
	overflow: hidden;
	background: var(--wt-sand);
	position: relative;
}
.hotel-detail__img-caption {
	position: absolute;
	left: 10px;
	bottom: 10px;
	max-width: min(92%, 420px);
	margin: 0;
	padding: 8px 11px;
	background: rgba(32, 35, 40, 0.62);
	color: #fff;
	font-size: 12px;
	line-height: 1.35;
	font-weight: 500;
	border-radius: 8px;
	z-index: 2;
	pointer-events: none;
}
.hotel-detail__img-caption[hidden] {
	display: none !important;
}
.hotel-detail__main-wrap img {
	width: 100%;
	height: 100%;
	max-width: 100%;
	object-fit: cover;
	display: block;
	transition: opacity 0.3s ease;
}

.hotel-detail__thumbs-label {
	font-family: "Barlow", sans-serif;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wt-ink-muted);
	margin: 10px 0 6px;
}

.hotel-detail__thumbs-wrap {
	margin-top: 10px;
}

.hotel-detail__thumbs {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	gap: 8px;
	overflow-x: auto;
	overflow-y: hidden;
	padding-bottom: 6px;
	scroll-snap-type: x proximity;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.hotel-detail__thumbs::-webkit-scrollbar {
	display: none;
}
.hotel-detail__thumb {
	flex: 0 0 108px;
	width: 108px;
	height: 80px;
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
	border: 2px solid transparent;
	transition: border-color 0.2s, transform 0.15s;
	scroll-snap-align: start;
}
.hotel-detail__thumb:hover { transform: scale(0.98); }
.hotel-detail__thumb.active { border-color: var(--wt-dark-blue); }
.hotel-detail__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.review-card {
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid var(--wt-border);
	border-radius: var(--wt-radius-md);
	padding: 18px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 14px;
}

/* Reviews — horizontal carousel (one row) */
.reviews-carousel {
	display: flex;
	align-items: stretch;
	gap: 8px;
	max-width: 100%;
}
.reviews-carousel__btn {
	flex: 0 0 40px;
	width: 40px;
	min-height: 120px;
	border: 1px solid var(--wt-border-strong);
	border-radius: var(--wt-radius-md);
	background: rgba(255, 255, 255, 0.92);
	color: var(--wt-ink);
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: background 0.2s, border-color 0.2s;
	align-self: center;
	height: 100px;
}
.reviews-carousel__btn:hover {
	background: #fff;
	border-color: var(--wt-dark-blue);
}
.reviews-carousel[data-single="1"] .reviews-carousel__btn {
	display: none;
}
.reviews-carousel[data-single="1"] .reviews-carousel__viewport {
	border-radius: var(--wt-radius-md);
}
.reviews-carousel__viewport {
	flex: 1;
	min-width: 0;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scrollbar-width: thin;
}
.reviews-carousel__track {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	gap: 12px;
	padding: 2px 4px 8px;
}
.review-card--carousel {
	flex: 0 0 min(320px, 88vw);
	max-width: 360px;
	min-height: 252px;
	padding: 12px 14px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.review-card--carousel .review-card__rating {
	font-size: 13px;
	margin: 0;
}
.review-card--carousel .review-card__body {
	font-size: 13px;
	line-height: 1.45;
	color: var(--wt-ink-soft);
	margin: 0;
	white-space: pre-line;
	display: -webkit-box;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
	overflow: hidden;
	flex: 1;
	min-height: 6.6em;
}
.review-card--carousel.review-card--expanded .review-card__body {
	display: block;
	-webkit-line-clamp: unset;
	max-height: 16em;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.review-card__more {
	align-self: flex-start;
	margin-top: 2px;
	padding: 2px 0;
	border: none;
	background: none;
	cursor: pointer;
	font-size: 12px;
	font-weight: 600;
	color: var(--wt-dark-blue);
	text-decoration: underline;
	font-family: inherit;
}
.review-card__more:hover {
	color: var(--wt-primary-deep);
}
.review-card--carousel .review-card__author {
	font-size: 11px;
	margin: 0;
	margin-top: auto;
	padding-top: 6px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.hotel-detail__info {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-height: 0;
}
.hotel-detail__stars { color: var(--wt-deep-yellow); font-size: 18px; letter-spacing: 2px; }
.hotel-detail__address { font-size: 13px; color: var(--wt-ink-muted); margin: 0; }
.hotel-detail__name {
	font-family: "brandon-grotesque", sans-serif;
	font-weight: 700;
	font-size: 28px;
	color: var(--wt-ink);
	line-height: 1.2;
	margin: 0;
}
.hotel-detail__col--left {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.hotel-detail__col--right {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-height: 0;
}
.hotel-detail__desc-wrap {
	position: relative;
	min-height: 0;
}
.hotel-detail__desc {
	font-size: 14px;
	color: var(--wt-ink-soft);
	line-height: 1.6;
	margin: 0;
	min-height: 0;
}
.hotel-detail__desc--rich {
	margin-top: 4px;
}
.hotel-detail__desc--rich p {
	margin: 0 0 0.75em;
}
.hotel-detail__desc--rich p:last-child {
	margin-bottom: 0;
}
.hotel-detail__desc--rich ul,
.hotel-detail__desc--rich ol {
	margin: 0 0 0.75em;
	padding-left: 1.25em;
}
.hotel-detail__desc--rich li {
	margin-bottom: 0.35em;
}
.hotel-detail__desc--rich h2,
.hotel-detail__desc--rich h3,
.hotel-detail__desc--rich h4 {
	font-family: "brandon-grotesque", sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: var(--wt-ink);
	margin: 1em 0 0.4em;
}
.hotel-detail__desc--expanded {
	max-height: none !important;
	overflow: visible !important;
}
.hotel-detail__desc-more[hidden] {
	display: none !important;
}
.hotel-detail__desc-more {
	display: inline-block;
	margin-top: 8px;
	padding: 0;
	border: none;
	background: none;
	font-family: inherit;
	font-size: 13px;
	font-weight: 600;
	color: var(--wt-dark-blue);
	cursor: pointer;
	text-decoration: underline;
}
.hotel-detail__desc-more:hover {
	color: var(--wt-primary-deep);
}
.hotel-detail__desc--rich a {
	color: var(--wt-dark-blue);
}
.hotel-detail__fac-sidebar {
	margin-top: 4px;
	padding-top: 14px;
	border-top: 1px solid var(--wt-border);
}
.hotel-detail__fac-sidebar-title {
	font-family: "Barlow", sans-serif;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wt-ink-muted);
	margin: 0 0 10px;
}
.hotel-detail__fac-sidebar .hotel-detail__fac-groups {
	gap: 10px;
}
.hotel-detail__fac-sidebar .hotel-detail__fac-group-title {
	font-size: 10px;
	margin-bottom: 5px;
}
.hotel-detail__fac-sidebar .hotel-detail__fac-more {
	margin-top: 8px;
	font-size: 12px;
	padding: 4px 0;
}
.facilities-tags--compact {
	gap: 5px;
}
.facility-tag--xs {
	font-size: 10px;
	padding: 3px 8px;
	line-height: 1.3;
}
.btn-ghost--sm {
	font-size: 12px;
}
.hotel-detail__fac-title {
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wt-ink-muted);
	margin-bottom: 8px;
}

.hotel-detail__section { margin-bottom: 28px; }

.hotel-detail__panel { padding: 0; overflow: visible; }
.hotel-detail__top { padding: 24px; }
.hotel-detail__body {
	padding: 0 24px 28px;
	border-top: 1px solid var(--wt-border);
}
.hotel-detail__body .hotel-detail__section {
	padding-top: 24px;
	margin-bottom: 0;
	border-bottom: 1px solid var(--wt-border);
	padding-bottom: 24px;
}
.hotel-detail__body .hotel-detail__section:last-child {
	border-bottom: none;
	padding-bottom: 8px;
}

.hotel-detail__rating-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 14px;
}
.hotel-detail__rating-gap { display: inline-flex; align-items: center; }
.hotel-detail__guest-score {
	font-family: "brandon-grotesque", sans-serif;
	font-weight: 700;
	font-size: 16px;
	color: var(--wt-ink);
}
.hotel-detail__guest-score-max { font-weight: 500; color: var(--wt-ink-muted); font-size: 13px; }
.hotel-detail__review-count,
.hotel-detail__review-count-only {
	font-size: 13px;
	font-weight: 500;
	color: var(--wt-ink-muted);
}
.hotel-detail__info-header {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0;
}
.hotel-detail__info-header-row {
	position: relative;
}
.hotel-detail__info-header-row:has(.hotel-detail__select-rooms) {
	padding-right: 132px;
}
.hotel-detail__info-header-row .hotel-detail__address {
	margin: 0;
}
.hotel-detail__info-header-row .hotel-detail__select-rooms {
	position: absolute;
	right: 0;
	top: -8px;
}
.hotel-detail__info-header .hotel-detail__rating-row {
	margin: 0;
}
.hotel-detail__subline {
	font-size: 14px;
	color: var(--wt-ink-soft);
	margin: 0;
}
.hotel-detail__select-rooms {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	flex-shrink: 0;
	padding: 8px 14px;
	border: 1px solid var(--wt-border-strong);
	border-radius: var(--wt-radius-pill);
	background: rgba(255, 255, 255, 0.92);
	color: var(--wt-dark-blue);
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.hotel-detail__select-rooms:hover {
	background: #fff;
	border-color: var(--wt-dark-blue);
	color: var(--wt-primary-deep);
}
.hotel-detail__select-rooms-chevron {
	display: block;
	margin-top: 1px;
}
.hotel-detail__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 0;
}
.hotel-detail__badge {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 5px 10px;
	border-radius: var(--wt-radius-pill);
	background: rgba(32, 35, 40, 0.06);
	color: var(--wt-ink-muted);
	border: 1px solid var(--wt-border);
}
.hotel-detail__badge--ok {
	background: rgba(47, 138, 77, 0.1);
	color: #2f8a4d;
	border-color: rgba(47, 138, 77, 0.25);
}

.guests-saying__header {
	margin-bottom: 18px;
}
.guests-saying__headline-row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 12px 28px;
}
.guests-saying__headline-row .guests-saying__scoreline {
	margin-bottom: 0;
	flex: 0 0 auto;
}
.guests-saying__header-aside {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 28px;
	font-size: 12px;
	max-width: min(520px, 100%);
}
.guests-saying__header-aside .sentiment-lists__title {
	font-size: 11px;
	margin-bottom: 6px;
}
.guests-saying__header-aside ul {
	margin: 0;
	padding-left: 1.1em;
	line-height: 1.45;
	color: var(--wt-ink-soft);
}
.guests-saying__reviews-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 14px;
	margin-top: 4px;
}
.guests-saying__reviews-panel {
	flex: 1 1 100%;
	min-width: 0;
}
.guests-saying__reviews-panel[hidden] {
	display: none !important;
}
.guests-saying__reviews-carousel {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
}
.guests-saying__reviews-carousel[data-single='1'] .guests-saying__reviews-nav {
	display: none;
}
.guests-saying__reviews-viewport {
	flex: 1;
	min-width: 0;
	overflow: hidden;
}
.guests-saying__reviews-track {
	display: flex;
	transition: transform 0.28s ease;
	will-change: transform;
}
.guests-saying__reviews-page {
	flex: 0 0 100%;
	min-width: 0;
	box-sizing: border-box;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}
.guests-saying__reviews-page .review-card--inline {
	min-width: 0;
}
@media (max-width: 720px) {
	.guests-saying__reviews-page {
		grid-template-columns: 1fr;
	}
}
.guests-saying__reviews-nav {
	flex: 0 0 32px;
	width: 32px;
	height: 32px;
	border: none;
	background: rgba(32, 35, 40, 0.06);
	border-radius: 50%;
	color: var(--wt-ink);
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
}
.guests-saying__reviews-nav:hover {
	background: rgba(72, 154, 216, 0.15);
}
.review-card--inline {
	padding: 12px 14px;
	min-height: 0;
}
.review-card--inline .review-card__body {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.review-card--inline.review-card--expanded .review-card__body {
	display: block;
	-webkit-line-clamp: unset;
	max-height: 12em;
	overflow-y: auto;
}
.guests-saying__scoreline {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 2px 8px;
	margin: 0;
}
.guests-saying__score {
	font-family: "brandon-grotesque", sans-serif;
	font-weight: 700;
	font-size: 34px;
	line-height: 1.05;
	letter-spacing: -0.02em;
}
.guests-saying__count {
	font-weight: 500;
	color: var(--wt-ink-muted);
	font-size: 15px;
}
.guests-saying__reviews-toggle {
	display: inline-block;
	margin: 0;
	padding: 0;
	border: none;
	background: none;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	color: var(--wt-dark-blue);
	cursor: pointer;
	text-decoration: underline;
	flex-shrink: 0;
}
.guests-saying__reviews-toggle:hover {
	color: var(--wt-primary-deep);
}
.guests-saying__sentiment {
	margin-bottom: 0;
}

.hotel-detail__fac-groups { display: flex; flex-direction: column; gap: 16px; }
.hotel-detail__fac-group--hidden { display: none; }
.hotel-detail__fac-group-title {
	font-family: "Barlow", sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wt-ink-muted);
	margin: 0 0 8px;
}
.hotel-detail__fac-more { margin-top: 14px; }
.hotel-detail__fac-more--link {
	display: inline-block;
	margin-top: 10px;
	padding: 0;
	border: none;
	background: none;
	font-family: inherit;
	font-size: 12px;
	font-weight: 600;
	color: var(--wt-dark-blue);
	cursor: pointer;
	text-decoration: underline;
}
.hotel-detail__fac-more--link:hover {
	color: var(--wt-primary-deep);
}

/* Popular facilities (under gallery, left column) */
.hotel-detail__fac-preview {
	margin-top: 4px;
	padding-top: 18px;
	border-top: 1px solid var(--wt-border);
}
.hotel-detail__fac-preview-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
}
.hotel-detail__fac-preview-title {
	font-family: "brandon-grotesque", sans-serif;
	font-weight: 700;
	font-size: 18px;
	color: var(--wt-ink);
	margin: 0;
}
.hotel-detail__fac-see-all {
	flex-shrink: 0;
	margin: 0;
	padding: 0;
	border: none;
	background: none;
	font-family: inherit;
	font-size: 13px;
	font-weight: 600;
	color: var(--wt-dark-blue);
	cursor: pointer;
	text-decoration: underline;
}
.hotel-detail__fac-see-all:hover {
	color: var(--wt-primary-deep);
}
.popular-facilities {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 18px;
}
@media (min-width: 520px) {
	.popular-facilities {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
.popular-facilities__item {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
	font-size: 13px;
	line-height: 1.35;
	color: var(--wt-ink-soft);
}
.popular-facilities__label {
	min-width: 0;
}
.facility-icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	color: var(--wt-ink-muted);
}
.facility-icon svg {
	width: 20px;
	height: 20px;
	display: block;
}
.facility-icon--sm {
	width: 18px;
	height: 18px;
}
.facility-icon--sm svg {
	width: 18px;
	height: 18px;
}

/* Facilities modal */
.facilities-modal {
	position: fixed;
	inset: 0;
	z-index: 10050;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 16px;
	box-sizing: border-box;
}
.facilities-modal[hidden] {
	display: none !important;
}
.facilities-modal.is-open {
	animation: wt-fade-in 0.2s ease both;
}
.facilities-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(32, 35, 40, 0.45);
}
.facilities-modal__panel {
	position: relative;
	z-index: 1;
	width: min(720px, 100%);
	max-height: min(88vh, 820px);
	background: #fff;
	border-radius: var(--wt-radius-lg);
	box-shadow: 0 20px 48px rgba(32, 35, 40, 0.18);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}
.facilities-modal__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 22px 12px;
	flex-shrink: 0;
}
.facilities-modal__title {
	font-family: "brandon-grotesque", sans-serif;
	font-weight: 700;
	font-size: 22px;
	margin: 0;
	color: var(--wt-ink);
}
.facilities-modal__close {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border: 1px solid var(--wt-border);
	border-radius: 50%;
	background: #fff;
	color: var(--wt-ink);
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.facilities-modal__close:hover {
	background: rgba(32, 35, 40, 0.05);
}
.facilities-modal__body {
	padding: 4px 22px 24px;
	overflow-y: auto;
	flex: 1;
	min-height: 0;
}
.facilities-modal__subtitle {
	font-family: "brandon-grotesque", sans-serif;
	font-weight: 700;
	font-size: 15px;
	margin: 0 0 12px;
	color: var(--wt-ink);
}
.facilities-modal__divider {
	border: none;
	border-top: 1px solid var(--wt-border);
	margin: 20px 0;
}
.popular-facilities--modal {
	margin-bottom: 4px;
}
.facilities-modal__groups {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px 28px;
}
@media (max-width: 560px) {
	.facilities-modal__groups {
		grid-template-columns: 1fr;
	}
}
.facilities-modal__group-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: "brandon-grotesque", sans-serif;
	font-weight: 700;
	font-size: 14px;
	margin: 0 0 10px;
	color: var(--wt-ink);
}
.facilities-modal__list {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 13px;
	line-height: 1.5;
	color: var(--wt-ink-soft);
}
.facilities-modal__list li + li {
	margin-top: 4px;
}
.facilities-modal__empty {
	margin: 0;
	font-size: 14px;
	color: var(--wt-ink-muted);
}

.hotel-detail__important-prose--spaced {
	margin-top: 20px;
}
.rates-table__occ-inner {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	flex-wrap: nowrap;
	white-space: nowrap;
}
.rates-table__occ-inner .rates-table__tip-wrap {
	flex-shrink: 0;
}

.hotel-detail__checkin-line { margin: 0 0 8px; font-size: 14px; }
.hotel-detail__checkin-list {
	margin: 0 0 12px;
	padding-left: 1.2em;
	font-size: 13px;
	line-height: 1.5;
	color: var(--wt-ink-soft);
}
.hotel-detail__checkin-special { font-size: 13px; line-height: 1.55; margin: 12px 0 0; }
.hotel-detail__policy-grid {
	list-style: none;
	margin: 16px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px 28px;
	align-items: start;
}
.hotel-detail__policy--left { grid-column: 1; }
.hotel-detail__policy--right { grid-column: 2; }
.hotel-detail__policy-name { display: block; font-size: 13px; margin-bottom: 4px; }
.hotel-detail__policy-body { margin: 0; font-size: 13px; line-height: 1.55; color: var(--wt-ink-soft); }
.hotel-detail__policies-block {
	margin-bottom: 0;
}
.hotel-detail__important-block {
	width: 100%;
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid var(--wt-border);
}
.hotel-detail__important-wrap {
	width: 100%;
}
.hotel-detail__important-read-more {
	margin-top: 10px;
	padding: 0;
	border: none;
	background: none;
	font-size: 13px;
	font-weight: 600;
	font-family: inherit;
	color: var(--wt-dark-blue);
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 2px;
}
.hotel-detail__important-read-more:hover {
	color: var(--wt-primary-deep);
}
@media (max-width: 640px) {
	.hotel-detail__policy-grid {
		grid-template-columns: 1fr;
	}
	.hotel-detail__policy--left,
	.hotel-detail__policy--right {
		grid-column: 1;
	}
}
.hotel-detail__meta-foot {
	font-size: 12px;
	color: var(--wt-ink-muted);
	margin: 14px 0 0;
}

.sentiment-cats {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 12px;
	margin-bottom: 18px;
}
.sentiment-cats__item {
	padding: 12px 14px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid var(--wt-border);
}
.sentiment-cats__head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 8px;
	margin-bottom: 6px;
}
.sentiment-cats__name { font-weight: 600; font-size: 13px; }
.sentiment-cats__score { font-weight: 700; font-size: 14px; }
.sentiment-cats__desc { margin: 0; font-size: 12px; line-height: 1.45; color: var(--wt-ink-soft); }
.sentiment-lists {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
}
.sentiment-lists__title {
	font-weight: 600;
	font-size: 13px;
	margin: 0 0 8px;
}
.sentiment-lists ul {
	margin: 0;
	padding-left: 1.15em;
	font-size: 13px;
	line-height: 1.5;
	color: var(--wt-ink-soft);
}

.hotel-detail__contact-list {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 14px;
}
.hotel-detail__contact-list li { margin-bottom: 8px; }
.hotel-detail__contact-k {
	font-weight: 600;
	margin-right: 6px;
	color: var(--wt-ink-muted);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.reviews-summary {
	margin: 0 0 14px;
	font-size: 15px;
}
.reviews-summary__score { font-weight: 700; }
.reviews-summary__count { color: var(--wt-ink-muted); font-weight: 500; }

.review-card--grid .review-card__body {
	font-size: 13px;
	line-height: 1.5;
	color: var(--wt-ink-soft);
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 7;
	-webkit-box-orient: vertical;
	overflow: hidden;
	white-space: pre-line;
}
.review-card--grid.review-card--expanded .review-card__body {
	display: block;
	-webkit-line-clamp: unset;
	max-height: 20em;
	overflow-y: auto;
}
.review-card--grid .review-card__author {
	margin-top: auto;
	padding-top: 8px;
}

.facility-tag--sm {
	font-size: 11px;
	padding: 4px 9px;
}

/* Facility tags */
.facilities-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}
.facility-tag {
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid var(--wt-border-strong);
	color: var(--wt-ink);
	font-size: 12px;
	font-weight: 500;
	padding: 5px 12px;
	border-radius: var(--wt-radius-pill);
}

/* Reviews — shared card sub-elements */
.review-card__rating {
	font-family: "brandon-grotesque", sans-serif;
	font-weight: 700;
	font-size: 15px;
	color: var(--wt-deep-yellow);
}
.review-card__text {
	font-size: 13px;
	line-height: 1.55;
	color: var(--wt-ink-soft);
	white-space: pre-line;
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 8;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0;
}
.review-card__author {
	font-size: 12px;
	font-weight: 500;
	color: var(--wt-ink-muted);
	margin: 0;
}

/* Rates table (Booking-style) */
.rates-table__hint {
	font-size: 13px;
	color: var(--wt-ink-muted);
	margin: 0 0 14px;
	line-height: 1.45;
}
.rates-table-wrap {
	width: 100%;
	overflow-x: auto;
	overflow-y: visible;
	border-radius: var(--wt-radius-md);
	border: 1px solid var(--wt-border);
	background: rgba(255, 255, 255, 0.92);
}
.rates-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
	min-width: 640px;
	table-layout: fixed;
}
.rates-table thead {
	background: rgba(72, 154, 216, 0.12);
	position: sticky;
	top: 0;
	z-index: 1;
}
.rates-table th {
	text-align: left;
	padding: 12px 14px;
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wt-ink-muted);
	border-bottom: 1px solid var(--wt-border-strong);
}
.rates-table td {
	padding: 14px;
	vertical-align: middle;
	border-bottom: 1px solid var(--wt-border);
	color: var(--wt-ink);
	overflow: visible;
}
.rates-table td.rates-table__room {
	vertical-align: top;
}
.rates-table tbody tr:hover {
	background: rgba(127, 204, 252, 0.12);
}
.rates-table__row--extra {
	display: none;
}
.rates-table--show-all .rates-table__row--extra {
	display: table-row;
}
.rates-table__footer {
	text-align: center;
	padding: 12px 0 6px;
}
.rates-table__room-inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	max-width: 320px;
}
.rates-table__bed-wrap {
	display: flex;
	align-items: flex-start;
	gap: 6px;
	max-width: 100%;
	min-width: 0;
	line-height: 1.35;
}
.rates-table__bed-text {
	flex: 1 1 0;
	min-width: 0;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	word-break: break-word;
}
.rates-table__policy-inner {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	flex-wrap: nowrap;
	max-width: 100%;
}
.rates-table__policy-inner .rates-table__pill {
	flex-shrink: 0;
}
.rates-table__tip-wrap {
	position: relative;
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	vertical-align: middle;
}
.rates-table__tip-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 17px;
	height: 17px;
	border-radius: 50%;
	border: 1px solid rgba(32, 35, 40, 0.35);
	font-size: 10px;
	font-weight: 800;
	font-style: italic;
	line-height: 1;
	color: var(--wt-ink-muted);
	cursor: help;
	font-family: Georgia, "Times New Roman", serif;
	text-transform: none;
}
.rates-table__tip-pop {
	display: none;
	position: absolute;
	z-index: 90;
	left: 50%;
	transform: translateX(-50%);
	top: calc(100% + 8px);
	min-width: 248px;
	max-width: min(380px, 88vw);
	padding: 10px 12px;
	background: #202328;
	color: #f4f4f4;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.45;
	text-align: left;
	letter-spacing: 0.02em;
	text-transform: none;
	white-space: normal;
	border-radius: 10px;
	box-shadow: 0 12px 32px rgba(32, 35, 40, 0.35);
	pointer-events: none;
}
.rates-table__tip-wrap:hover,
.rates-table__tip-wrap:focus-within {
	z-index: 200;
}
.rates-table__tip-wrap:hover .rates-table__tip-pop,
.rates-table__tip-wrap:focus-within .rates-table__tip-pop {
	display: block;
	pointer-events: auto;
}
/* Hotel detail: show cancellation tooltip above the icon so it is not clipped */
.rates-table--grouped .rates-table__tip-pop {
	top: auto;
	bottom: calc(100% + 8px);
	z-index: 300;
}
.rates-table__room-more {
	border: none;
	background: none;
	padding: 0;
	margin: 0;
	cursor: pointer;
	font-size: 11px;
	font-weight: 600;
	color: var(--wt-dark-blue);
	text-decoration: underline;
	font-family: inherit;
}
.rates-table__room-more:hover {
	color: var(--wt-primary-deep);
}
.rates-table__room-title {
	font-weight: 600;
	color: var(--wt-ink);
	line-height: 1.35;
	display: block;
	max-width: 320px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.rates-table__bed {
	color: var(--wt-ink-soft);
	width: 24%;
	max-width: 240px;
	vertical-align: top;
}
.rates-table__board {
	color: var(--wt-ink-soft);
	width: 14%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.rates-table__occ {
	color: var(--wt-ink-soft);
	width: 7%;
	min-width: 52px;
	max-width: 72px;
	white-space: nowrap;
	text-align: center;
}
.rates-table__policy {
	width: 16%;
	vertical-align: middle;
}
.rates-table__price {
	font-family: "brandon-grotesque", sans-serif;
	font-weight: 700;
	font-size: 17px;
	white-space: nowrap;
	width: 18%;
	min-width: 118px;
	vertical-align: middle;
}
.rates-table__pill {
	display: inline-block;
	padding: 4px 10px;
	border-radius: var(--wt-radius-pill);
	font-family: "Barlow", sans-serif;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	white-space: nowrap;
	flex-shrink: 0;
}
.rates-table__pill--ok {
	background: rgba(47, 138, 77, 0.1);
	color: #2f8a4d;
	border: 1px solid rgba(47, 138, 77, 0.2);
}
.rates-table__pill--muted {
	background: rgba(32, 35, 40, 0.06);
	color: rgba(32, 35, 40, 0.55);
	border: 1px solid rgba(32, 35, 40, 0.1);
}
.rates-table__cta {
	width: 88px;
	text-align: right;
	white-space: nowrap;
}
.rates-table--grouped .rates-table__board { width: 14%; }
.rates-table--grouped .rates-table__policy { width: 16%; }
.rates-table--grouped .rates-table__bed { width: 26%; }
.rates-table--grouped .rates-table__occ { width: 7%; }
.rates-table--grouped .rates-table__price { width: 19%; }

/* Hotel detail grouped rates: tighten only when the table is getting squeezed */
@media (max-width: 960px) {
	.rates-table--grouped th,
	.rates-table--grouped td {
		padding: 10px 10px;
	}
	.rates-table--grouped .rates-table__board {
		width: 11%;
		white-space: normal;
	}
	.rates-table--grouped .rates-table__policy { width: 14%; }
	.rates-table--grouped .rates-table__bed { width: 30%; }
	.rates-table--grouped .rates-table__occ { width: 8%; }
	.rates-table--grouped .rates-table__price {
		width: 20%;
		white-space: normal;
	}
	.rates-table--grouped .rates-table__price-amount {
		font-size: 16px;
	}
	.rates-table--grouped .rates-table__pill {
		font-size: 9px;
		padding: 3px 8px;
	}
	.rates-table--grouped .rates-table__policy-inner {
		flex-wrap: wrap;
	}
}
@media (max-width: 720px) {
	.room-rate-group__table.rates-table-wrap {
		overflow-x: auto;
		overflow-y: visible;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: thin;
	}
	.room-rate-group__table .rates-table {
		min-width: 620px;
	}
	.rates-table--grouped th,
	.rates-table--grouped td {
		padding: 10px 8px;
	}
	.rates-table--grouped th {
		font-size: 10px;
		letter-spacing: 0.06em;
	}
}

/* ── Lightbox ────────────────────────────────────────────────────── */
.lightbox {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 1000;
	background: rgba(32, 35, 40, 0.92);
	align-items: center;
	justify-content: center;
	padding: 48px 72px;
	cursor: zoom-out;
}
.lightbox.is-open { display: flex; animation: wt-fade-in 0.2s ease both; }

.lightbox__frame {
	position: relative;
	max-width: 100%;
	max-height: 90vh;
	cursor: default;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.lightbox__img {
	max-width: 100%;
	max-height: calc(90vh - 36px);
	border-radius: var(--wt-radius-md);
	box-shadow: 0 32px 80px rgba(0,0,0,0.6);
	display: block;
	object-fit: contain;
}

.lightbox__counter {
	color: rgba(255, 255, 255, 0.85);
	font-family: "Barlow", sans-serif;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.lightbox__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	border-radius: var(--wt-radius-pill);
	border: none;
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 0 4px;
	transition: background 0.2s;
	z-index: 2;
	text-transform: none;
	font-family: inherit;
	letter-spacing: 0;
}
.lightbox__nav:hover { background: rgba(255, 255, 255, 0.28); }
.lightbox__nav--prev { left: 12px; }
.lightbox__nav--next { right: 12px; }

.lightbox__close {
	position: absolute;
	top: 18px;
	right: 22px;
	background: rgba(255,255,255,0.12);
	border: none;
	color: #fff;
	font-size: 28px;
	line-height: 1;
	width: 42px;
	height: 42px;
	border-radius: var(--wt-radius-pill);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
	padding: 0;
	text-transform: none;
	font-family: inherit;
	letter-spacing: 0;
	z-index: 2;
}
.lightbox__close:hover { background: rgba(255,255,255,0.24); }

/* ── Booking form (legacy details page + shared field tokens) ───── */
#bookingForm:not(.booking-form) {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
#bookingForm br { display: none; }
#bookingForm:not(.booking-form) label,
.booking-field label {
	display: block;
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wt-ink-muted);
	margin-bottom: 5px;
}
#bookingForm:not(.booking-form) input[type="text"],
#bookingForm:not(.booking-form) input[type="email"],
#bookingForm:not(.booking-form) input[type="tel"],
.booking-field input[type="text"],
.booking-field input[type="email"],
.booking-field input[type="tel"],
.booking-field textarea {
	width: 100%;
	border: 1px solid var(--wt-border-strong);
	border-radius: 12px;
	padding: 10px 14px;
	font-family: inherit;
	font-size: 14px;
	color: var(--wt-ink);
	background: #fff;
	outline: none;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.booking-field textarea {
	resize: vertical;
	min-height: 88px;
}
#bookingForm:not(.booking-form) input[type="text"]:focus,
#bookingForm:not(.booking-form) input[type="email"]:focus,
#bookingForm:not(.booking-form) input[type="tel"]:focus,
.booking-field input:focus,
.booking-field textarea:focus {
	border-color: var(--wt-dark-blue);
	box-shadow: 0 0 0 4px rgba(127, 204, 252, 0.25);
}
#bookingForm input[type="submit"] {
	grid-column: 1 / -1;
	background: var(--wt-deep-yellow);
	color: var(--wt-ink);
	border: none;
	border-radius: var(--wt-radius-pill);
	padding: 14px 22px;
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	box-shadow: 0 8px 20px rgba(253, 193, 57, 0.4);
	transition: transform 0.15s, background 0.2s;
}
#bookingForm input[type="submit"]:hover { background: var(--wt-light-yellow); transform: translateY(-1px); }

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Payment widget */
#pe { background: rgba(255,255,255,0.95); border-radius: var(--wt-radius-lg); padding: 20px; box-shadow: var(--wt-shadow-sm); border: 1px solid var(--wt-border); }
#pe:empty { display: none; }
body.booking-active .booking-payment-mount #pe {
	background: transparent;
	border: none;
	box-shadow: none;
	padding: 0;
	margin-top: 8px;
}
body.booking-active .booking-payment-mount #payment-form:empty { display: none; }
body.booking-active .booking-payment-mount #payment-form:not(:empty) {
	margin: 0 0 8px;
	padding: 0;
	background: transparent;
	border: none;
}

#errorMessage:not(:empty) {
	background: rgba(255, 255, 255, 0.95);
	border-left: 4px solid var(--wt-deep-yellow);
	padding: 14px 18px;
	border-radius: var(--wt-radius-md);
	box-shadow: var(--wt-shadow-sm);
	font-weight: 500;
}

/* ── Utility classes ─────────────────────────────────────────────── */
.flex          { display: flex; }
.items-center  { display: flex; align-items: center; gap: 6px; }
.items-start   { display: flex; align-items: flex-start; gap: 4px; }
.flex-between  { display: flex; align-items: center; justify-content: space-between; }
.flex-col      { display: flex; flex-direction: column; }
.w-full        { width: 100%; }
.mb-0          { margin-bottom: 0; }
.mt-0          { margin-top: 0; }
.green         { color: #2f8a4d; }

/* ── Footer ──────────────────────────────────────────────────────── */
.site-footer {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: 18px 32px clamp(40px, 6vh, 60px);
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 20px;
}
.site-footer__links {
	display: flex;
	gap: 16px;
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wt-ink);
	opacity: 0.7;
}
.site-footer__links a { color: var(--wt-ink); opacity: 0.7; }
.site-footer__links a:hover { opacity: 1; }

/* ── Rate / details page ─────────────────────────────────────────── */
#rates {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 16px;
}
.rate-card {
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid var(--wt-border);
	border-radius: var(--wt-radius-md);
	padding: 20px;
	box-shadow: var(--wt-shadow-sm);
	transition: transform 0.2s, box-shadow 0.2s;
}
.rate-card:hover { transform: translateY(-2px); box-shadow: var(--wt-shadow-md); }
.rate-card h4 { font-family: "Barlow", sans-serif; font-weight: 500; font-size: 15px; color: var(--wt-ink); margin-bottom: 6px; }
.rate-card p  { color: var(--wt-ink-soft); font-size: 13px; margin: 4px 0; }
.rate-card button {
	background: var(--wt-dark-blue); color: #fff;
	border: none; padding: 9px 16px;
	font-family: "Barlow", sans-serif; font-weight: 500;
	font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
	border-radius: var(--wt-radius-pill); cursor: pointer; margin-top: 10px;
	box-shadow: 0 5px 14px rgba(72,154,216,0.28);
	transition: background 0.2s, transform 0.15s;
}
.rate-card button:hover { background: var(--wt-primary-deep); transform: translateY(-1px); }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
	.hotel-detail__top { grid-template-columns: 1fr; }
	.hotel-detail__thumb { flex: 0 0 92px; width: 92px; height: 68px; }
}

@media (max-width: 760px) {
	.search-card { flex-direction: column; align-items: stretch; border-radius: var(--wt-radius-md); padding: 12px; gap: 2px; }
	.search-field + .search-field { border-left: none; border-top: 1px solid var(--wt-border); }
	.search-submit { height: 48px; width: 100%; margin-top: 8px; }
	.card .items-start { flex-direction: column; }
	.card-image { width: 100%; min-width: 0; height: 200px; }
	.card-body { padding-left: 0; padding-top: 14px; }
	.card-footer { flex-direction: row; }
	.top-nav { padding: 14px 18px; }
	.top-nav__links { display: none; }
	.site-footer { padding: 14px 18px 50px; }
}

@media (max-width: 480px) {
	.hero { padding: 40px 16px clamp(60px, 10vh, 120px); }
	.hero__logo { width: min(380px, 88vw); }
	.hotel-detail__thumb { flex: 0 0 80px; width: 80px; height: 60px; }
}

/* ── Bed filter (advanced, multi-select) ───────────────────────────── */
.advanced__field--beds {
	grid-column: 1 / -1;
}
.bed-filter__head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 8px;
}
.bed-filter__label {
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wt-ink-muted);
}
.bed-filter__actions {
	display: flex;
	gap: 10px;
}
.bed-filter__action {
	border: none;
	background: none;
	padding: 0;
	font-size: 12px;
	font-weight: 600;
	color: var(--wt-dark-blue);
	cursor: pointer;
	text-decoration: underline;
	font-family: inherit;
}
.bed-filter__action:hover { color: var(--wt-primary-deep); }
.bed-filter__grid {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 8px;
}
.bed-filter__chip {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 12px;
	border-radius: var(--wt-radius-pill);
	border: 1px solid var(--wt-border-strong);
	background: rgba(255, 255, 255, 0.95);
	font-size: 13px;
	font-weight: 500;
	color: var(--wt-ink);
	cursor: pointer;
	user-select: none;
}
.bed-filter__chip:has(input:checked) {
	border-color: var(--wt-dark-blue);
	background: rgba(72, 154, 216, 0.1);
}
.bed-filter__chip input {
	width: 15px;
	height: 15px;
	accent-color: var(--wt-dark-blue);
	margin: 0;
	cursor: pointer;
}

/* ── Review score colours ─────────────────────────────────────────── */
.review-card__rating--good { color: #2f8a4d !important; }
.review-card__rating--mid { color: var(--wt-deep-yellow) !important; }
.review-card__rating--low { color: #c03434 !important; }
.review-card__rating-star { margin-right: 2px; }

/* ── Hotel meta (times + important info) ─────────────────────────── */
.hotel-detail__times {
	font-size: 14px;
	font-weight: 600;
	color: var(--wt-ink);
	margin: 0 0 12px;
}
.hotel-detail__important-prose {
	font-size: 13px;
	line-height: 1.55;
	color: var(--wt-ink-soft);
	white-space: pre-wrap;
	margin: 0;
	max-height: none;
	overflow: visible;
}

/* ── Booking flow ─────────────────────────────────────────────────── */
.booking-summary {
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid var(--wt-border-strong);
	border-radius: var(--wt-radius-md);
	padding: 18px 20px;
	margin-bottom: 22px;
	box-shadow: var(--wt-shadow-sm);
}
.booking-summary__title { margin-bottom: 10px !important; }
.booking-summary__hotel {
	font-family: "brandon-grotesque", sans-serif;
	font-weight: 700;
	font-size: 20px;
	color: var(--wt-ink);
	margin: 0 0 4px;
}
.booking-summary__addr {
	font-size: 13px;
	color: var(--wt-ink-muted);
	margin: 0 0 14px;
}
.booking-summary__dl {
	margin: 0;
	display: grid;
	gap: 10px;
}
.booking-summary__dl > div {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 10px;
	font-size: 14px;
	align-items: start;
}
.booking-summary__dl dt {
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wt-ink-muted);
	margin: 0;
}
.booking-summary__dl dd { margin: 0; color: var(--wt-ink); line-height: 1.4; }
.booking-summary__cancel {
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid var(--wt-border);
}
.booking-summary__cancel-title {
	margin: 0 0 8px;
	font-family: "Barlow", sans-serif;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wt-ink-muted);
}
.booking-summary__cancel-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.booking-summary__cancel-list li {
	font-size: 13px;
	line-height: 1.5;
	color: var(--wt-ink);
	padding-left: 16px;
	position: relative;
}
.booking-summary__cancel-list li::before {
	content: "•";
	position: absolute;
	left: 4px;
	top: 0;
	color: var(--wt-dark-blue);
	font-weight: 700;
}
.booking-summary__total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 16px 0 0;
	padding-top: 14px;
	border-top: 1px solid var(--wt-border);
	font-family: "Barlow", sans-serif;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--wt-ink-muted);
}
.booking-summary__total strong {
	font-family: "brandon-grotesque", sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: var(--wt-ink);
	text-transform: none;
	letter-spacing: 0;
}
.booking-guest-title { margin-top: 4px; }
.booking-proceed-btn,
.booking-continue-btn,
.booking-pay-btn {
	margin-top: 0;
	width: 100%;
	max-width: none;
}

/* ── Checkout layout (two-column) ─────────────────────────────────── */
.booking-checkout {
	padding: 22px 24px 28px;
	max-width: 1180px;
	margin: 0 auto;
}
.booking-checkout__head {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 22px;
	flex-wrap: wrap;
}
.booking-checkout__title {
	font-family: "brandon-grotesque", sans-serif;
	font-weight: 700;
	font-size: clamp(22px, 3vw, 28px);
	color: var(--wt-ink);
	margin: 0;
}
.booking-checkout__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
	gap: 24px;
	align-items: start;
}
.booking-checkout__notice {
	font-size: 13px;
	color: var(--wt-ink-muted);
	margin: 0 0 16px;
	padding: 10px 14px;
	background: rgba(186, 218, 230, 0.35);
	border-radius: var(--wt-radius-sm);
	border: 1px solid rgba(72, 154, 216, 0.2);
}
.booking-req { color: #c03434; font-weight: 700; }
.booking-card {
	background: #fff;
	border: 1px solid var(--wt-border-strong);
	border-radius: var(--wt-radius-md);
	padding: 20px 20px 22px;
	box-shadow: var(--wt-shadow-sm);
}
.booking-card + .booking-card { margin-top: 16px; }
.booking-card__title {
	font-family: "brandon-grotesque", sans-serif;
	font-weight: 700;
	font-size: 18px;
	margin: 0 0 16px;
	color: var(--wt-ink);
}
.booking-form__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px 16px;
}
.booking-field--full { grid-column: 1 / -1; }
.booking-field__hint {
	font-weight: 300;
	text-transform: none;
	letter-spacing: 0;
	font-size: 11px;
	color: var(--wt-ink-muted);
}
.booking-requests {
	margin-top: 14px;
	border-top: 1px solid var(--wt-border);
	padding-top: 12px;
}
.booking-requests summary {
	cursor: pointer;
	font-weight: 600;
	font-size: 14px;
	color: var(--wt-ink);
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.booking-requests summary::-webkit-details-marker { display: none; }
.booking-requests summary::after {
	content: "+";
	font-size: 20px;
	font-weight: 400;
	color: var(--wt-dark-blue);
}
.booking-requests[open] summary::after { content: "−"; }
.booking-requests .booking-field { margin-top: 12px; }
.booking-requests__note {
	margin: 8px 0 0;
	font-size: 12px;
	line-height: 1.45;
	color: var(--wt-ink-muted);
}
.booking-segment-field {
	margin: 16px 0 0;
}
.booking-segment-field__label {
	display: block;
	font-family: "brandon-grotesque", sans-serif;
	font-weight: 600;
	font-size: 14px;
	color: var(--wt-ink);
	margin-bottom: 8px;
}
.booking-segment {
	display: inline-flex;
	border: 1px solid var(--wt-border-strong);
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
}
.booking-segment__opt {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 16px;
	font-size: 13px;
	font-weight: 600;
	color: var(--wt-ink-muted);
	cursor: pointer;
	border-right: 1px solid var(--wt-border);
	transition: background 0.15s, color 0.15s;
}
.booking-segment__opt:last-child { border-right: none; }
.booking-segment__opt input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
.booking-segment__opt.is-selected,
.booking-segment__opt:has(input:checked) {
	background: rgba(72, 154, 216, 0.14);
	color: var(--wt-ink);
}
.booking-phone {
	display: flex;
	gap: 8px;
	align-items: stretch;
}
.booking-phone__dial {
	flex: 0 0 auto;
	min-width: 10.5rem;
	max-width: 46%;
	border: 1px solid var(--wt-border-strong);
	border-radius: 12px;
	padding: 10px 2rem 10px 12px;
	font-size: 14px;
	line-height: 1.35;
	background-color: #fff;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236d6e78' d='M1.4.6 6 5.2 10.6.6 12 2l-6 6-6-6z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 12px 8px;
	color: var(--wt-ink);
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
}
.booking-phone__dial:focus {
	outline: none;
	border-color: var(--wt-primary);
	box-shadow: 0 0 0 2px rgba(72, 154, 216, 0.25);
}
.booking-phone__dial option {
	font-size: 14px;
	padding: 6px 8px;
}
.booking-phone__local {
	flex: 1;
	min-width: 0;
}
.booking-aside__meta-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 12px;
	margin-top: 6px;
}
.booking-aside__stars {
	color: var(--wt-deep-yellow);
	font-size: 13px;
	letter-spacing: 1px;
}
.booking-aside__score-wrap {
	display: inline-flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 4px 6px;
	font-size: 13px;
}
.booking-aside__score {
	font-weight: 700;
	font-size: 15px;
}
.booking-aside__reviews {
	color: var(--wt-ink-muted);
	font-size: 12px;
}
.booking-promo-aside {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid var(--wt-border);
}
.booking-promo-applied {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 8px 12px;
	padding: 10px 12px;
	border-radius: var(--wt-radius-sm);
	border: 1px solid rgba(72, 154, 216, 0.35);
	background: rgba(72, 154, 216, 0.08);
	margin-bottom: 10px;
}
.booking-promo-applied--upsell {
	border-style: dashed;
}
.booking-promo-applied__headline {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	flex-basis: 100%;
}
.booking-promo-applied__lock-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 15px;
	height: 15px;
	color: var(--wt-ink-muted);
	flex-shrink: 0;
}
.booking-promo-applied__lock-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}
.booking-promo-applied__left {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 12px;
	flex: 1;
	min-width: 0;
}
.booking-promo-applied--loading .booking-promo-applied__left {
	flex-wrap: nowrap;
}
.booking-promo-applied__label {
	font-size: 12px;
	font-weight: 600;
	color: var(--wt-ink-muted);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}
.booking-promo-applied__meta-row {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex-basis: 100%;
	margin-top: -4px;
}
.booking-promo-applied__meta-link {
	font-size: 12px;
	color: #2d6ea6;
	text-decoration: underline;
	text-underline-offset: 2px;
}
.booking-promo-applied__meta-link:hover {
	color: #1f5584;
}
.booking-promo-applied .rates-table__tip-pop {
	top: auto;
	bottom: calc(100% + 8px);
	z-index: 300;
}
.booking-promo-applied__save {
	margin-left: auto;
	font-weight: 700;
	color: #2f8a4d;
	font-size: 14px;
}
.booking-promo-applied__save--muted {
	color: var(--wt-ink-muted);
}
.booking-promo-aside__label {
	display: block;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wt-ink-muted);
	margin-bottom: 6px;
}
.booking-promo-aside__row {
	display: flex;
	gap: 8px;
}
.booking-promo-aside__row input {
	flex: 1;
	border: 1px solid var(--wt-border-strong);
	border-radius: 12px;
	padding: 9px 12px;
	font-size: 14px;
}
.booking-promo-aside__apply {
	flex-shrink: 0;
	border: none;
	border-radius: var(--wt-radius-pill);
	padding: 9px 16px;
	background: var(--wt-dark-blue);
	color: #fff;
	font-weight: 600;
	font-size: 13px;
	cursor: pointer;
}
.booking-promo-aside__hint {
	margin: 6px 0 0;
	font-size: 12px;
	color: #c03434;
}
.booking-payment-prefill__lead {
	margin: 0 0 14px;
	font-size: 13px;
	line-height: 1.5;
	color: var(--wt-ink-soft);
}
.booking-payment-prefill--sandbox {
	margin-bottom: 14px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--wt-border);
}
.booking-payment-prefill--sandbox code {
	font-size: 12px;
}
.booking-payment-widget-label {
	margin: 0 0 10px;
	font-family: "Barlow", sans-serif;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wt-ink-muted);
}
.booking-expand-panel {
	margin-top: 12px;
	padding: 14px;
	border-radius: var(--wt-radius-sm);
	border: 1px solid var(--wt-border);
	background: rgba(242, 242, 242, 0.5);
}
.booking-expand-panel__lead {
	margin: 0 0 12px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--wt-ink-muted);
}
.booking-cancel-policy {
	margin-bottom: 14px;
}
.booking-cancel-policy__title {
	margin: 0 0 10px;
	font-family: "brandon-grotesque", sans-serif;
	font-weight: 700;
	font-size: 15px;
	color: var(--wt-ink);
}
.booking-cancel-policy__box {
	border: 1px solid var(--wt-border-strong);
	border-radius: var(--wt-radius-sm);
	background: #fff;
	padding: 10px 14px;
	overflow: hidden;
}
.booking-cancel-policy__tier {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 8px 14px;
	padding: 14px 0;
	margin: 0;
	border-bottom: 1px solid var(--wt-border);
	align-items: center;
}
.booking-cancel-policy__tier:last-child {
	border-bottom: none;
	padding-bottom: 14px;
}
.booking-cancel-policy__tier--compact {
	align-items: center;
	padding-top: 16px;
	padding-bottom: 16px;
}
.booking-cancel-policy__tier--compact:last-child {
	padding-bottom: 16px;
}
.booking-cancel-policy__when {
	display: block;
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--wt-ink-muted);
	margin-bottom: 2px;
}
.booking-cancel-policy__date {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: var(--wt-ink);
	line-height: 1.3;
}
.booking-cancel-policy__tier-col--right {
	text-align: right;
}
.booking-cancel-policy__status {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--wt-ink);
	margin-bottom: 4px;
}
.booking-cancel-policy__refund {
	display: block;
	font-size: 13px;
	color: var(--wt-ink-soft);
}
.booking-cancel-policy__refund--full { color: #2f8a4d; font-weight: 600; }
.booking-cancel-policy__refund--partial { color: var(--wt-ink); font-weight: 500; }
.booking-cancel-policy__refund--none { color: var(--wt-ink); font-weight: 500; }
.booking-cancel-policy__tz {
	margin: 10px 0 0;
	font-size: 11px;
	line-height: 1.4;
	color: var(--wt-ink-muted);
}
.booking-promo {
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid var(--wt-border);
}
.booking-promo > label {
	display: block;
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wt-ink-muted);
	margin-bottom: 8px;
}
.booking-promo__row input { width: 100%; }
.booking-checkout__actions { margin-top: 18px; }
.booking-payment-stage--locked {
	opacity: 0.45;
	filter: grayscale(0.15);
	pointer-events: none;
	user-select: none;
}
.booking-payment-stage--locked .booking-card__title {
	color: var(--wt-ink-muted);
}
.booking-payment-stage--locked .booking-payment-stage__body {
	pointer-events: none;
}
.booking-payment-stage--locked .booking-payment-stage__body * {
	pointer-events: none;
}
.booking-payment-mount { min-height: 0; }
.booking-payment-shell {
	border: none;
	border-radius: 0;
	background: transparent;
	padding: 0;
}
.booking-payment-loading {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin: 0;
	padding: 32px 16px;
	min-height: 120px;
	font-family: "Barlow", sans-serif;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--wt-ink-muted);
}
.booking-payment-loading[hidden] {
	display: none !important;
}
.booking-payment-loading .spinner {
	width: 40px;
	height: 40px;
	border-width: 4px;
}
.booking-payment-mount--loading {
	min-height: 0;
}
.booking-payment-amount {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	padding: 0 0 16px;
	margin: 0 0 16px;
	border-bottom: 1px solid var(--wt-border);
}
.booking-payment-amount__label {
	font-family: "Barlow", sans-serif;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wt-ink-muted);
}
.booking-payment-amount__value {
	font-family: "brandon-grotesque", sans-serif;
	font-weight: 700;
	font-size: 22px;
	color: var(--wt-ink);
}
.booking-payment-payee-title {
	margin: 0 0 4px;
	font-family: "brandon-grotesque", sans-serif;
	font-weight: 700;
	font-size: 15px;
	color: var(--wt-ink);
}
.booking-payment-payee-hint {
	margin: 0 0 12px;
	font-size: 12px;
	line-height: 1.45;
	color: var(--wt-ink-muted);
}
/* Stripe widget inside payment shell — flat layout, native Card / Link tabs */
body.booking-active .booking-payment-shell #pe {
	background: transparent;
	border: none;
	box-shadow: none;
	padding: 0;
	margin: 0;
}
body.booking-active .booking-payment-shell #pe [role="tablist"] {
	display: flex !important;
	gap: 10px;
	margin: 0 0 14px;
	border: none;
	background: transparent;
}
body.booking-active .booking-payment-shell #pe [role="tab"] {
	flex: 1;
	min-height: 48px;
	border: 1px solid var(--wt-border-strong) !important;
	border-radius: 8px !important;
	background: #fff !important;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
}
body.booking-active .booking-payment-shell #pe [role="tab"][aria-selected="true"] {
	border-color: var(--wt-primary) !important;
	box-shadow: inset 0 0 0 1px var(--wt-primary);
}
body.booking-active .booking-payment-shell #pe [role="tabpanel"],
body.booking-active .booking-payment-shell #pe [role="tabpanel"] > div,
body.booking-active .booking-payment-shell #pe [class*="Block"],
body.booking-active .booking-payment-shell #pe [class*="PaymentMethod"],
body.booking-active .booking-payment-shell #pe [class*="Accordion"],
body.booking-active .booking-payment-shell #pe [class*="Form"],
body.booking-active .booking-payment-shell #pe div:has(> iframe) {
	border: none !important;
	box-shadow: none !important;
	outline: none !important;
	background: transparent !important;
}
body.booking-active .booking-payment-shell #pe [role="tabpanel"] > div:has(iframe) {
	border: none !important;
	box-shadow: none !important;
	outline: none !important;
	background: transparent !important;
	padding: 0 !important;
	margin: 0 !important;
}
.booking-payment-payee-grid {
	margin: 0 0 1rem;
}
.booking-payment-card-extra {
	margin: 0 0 1rem;
}
body.booking-active .booking-payment-submit {
	margin-top: 20px !important;
	padding-top: 4px;
	width: 100%;
	display: flex;
	justify-content: center;
}
body.booking-active #pe button.pe-pay-styled,
body.booking-active #pe .pe-pay-styled {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	max-width: none !important;
	min-width: 0 !important;
	margin: 0 !important;
	padding: 11px 18px !important;
	background: var(--wt-dark-blue) !important;
	color: #fff !important;
	border: none !important;
	border-radius: var(--wt-radius-pill) !important;
	font-family: "Barlow", sans-serif !important;
	font-weight: 500 !important;
	font-size: 12px !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
	box-shadow: 0 6px 18px rgba(72, 154, 216, 0.3) !important;
}
body.booking-active #pe button.pe-pay-styled:hover {
	background: var(--wt-primary-deep) !important;
	color: #fff !important;
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(72, 154, 216, 0.4) !important;
}
.booking-aside__nights-row {
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px 12px;
	flex-wrap: wrap;
}
.booking-aside__nights-row .booking-aside__nights {
	margin: 0;
}
.booking-aside__important-link {
	margin: 0;
	padding: 0;
	border: none;
	background: none;
	font-family: "Barlow", sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: none;
	color: var(--wt-dark-blue);
	text-decoration: underline;
	text-underline-offset: 2px;
	cursor: pointer;
	text-align: right;
}
.booking-aside__important-link:hover {
	color: var(--wt-primary-deep);
}
.booking-aside__checkin-times {
	grid-column: 1 / -1;
	margin: 0;
	font-size: 12px;
	line-height: 1.45;
	color: var(--wt-ink-muted);
}
.booking-payment-stage--ready .booking-checkout__actions--pay {
	display: none !important;
}
#pe .booking-payment-tabs,
.booking-payment-tabs {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	gap: 0 !important;
	width: 100% !important;
	max-width: 420px;
	margin-bottom: 14px !important;
	border: 1px solid var(--wt-border-strong) !important;
	border-radius: 8px !important;
	overflow: hidden !important;
	background: #fff !important;
}
.booking-payment-tab {
	flex: 1 !important;
	justify-content: center !important;
	padding: 10px 12px !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	border: none !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	background: transparent !important;
	color: var(--wt-ink-muted) !important;
}
.booking-payment-tab[aria-selected="true"],
.booking-payment-tab[data-state="active"] {
	background: rgba(72, 154, 216, 0.12) !important;
	color: var(--wt-ink) !important;
}
.booking-payment-tab + .booking-payment-tab {
	border-left: 1px solid var(--wt-border) !important;
}
.booking-payment-voucher-inline {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	margin: 0 0 10px;
	font-size: 13px;
}
.booking-payment-voucher {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 10px 14px;
	background: rgba(244, 207, 112, 0.22);
	border: 1px solid rgba(253, 193, 57, 0.4);
	border-radius: var(--wt-radius-sm);
	font-size: 14px;
	margin-bottom: 10px;
}
.booking-checkout__aside {
	position: sticky;
	top: 16px;
}
.booking-aside {
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid var(--wt-border-strong);
	border-radius: var(--wt-radius-md);
	padding: 18px 18px 16px;
	box-shadow: var(--wt-shadow-md);
}
.booking-aside__hotel {
	display: flex;
	gap: 12px;
	margin-bottom: 16px;
}
.booking-aside__thumb {
	width: 72px;
	height: 72px;
	object-fit: cover;
	border-radius: var(--wt-radius-sm);
	flex-shrink: 0;
	background: var(--wt-light-grey);
}
.booking-aside__thumb--placeholder {
	background: linear-gradient(135deg, var(--wt-light-blue), var(--wt-medium-blue));
}
.booking-aside__name {
	font-family: "brandon-grotesque", sans-serif;
	font-weight: 700;
	font-size: 17px;
	line-height: 1.25;
	margin: 0 0 4px;
	color: var(--wt-ink);
}
.booking-aside__addr {
	font-size: 12px;
	line-height: 1.4;
	color: var(--wt-ink-muted);
	margin: 0;
}
.booking-aside__stay {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--wt-border);
	margin-bottom: 14px;
}
.booking-aside__date-label {
	display: block;
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wt-ink-muted);
	font-family: "Barlow", sans-serif;
	margin-bottom: 2px;
}
.booking-aside__date strong {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--wt-ink);
}
.booking-aside__stay-range {
	margin: 0 0 10px;
	font-size: 15px;
	font-weight: 600;
	color: var(--wt-ink);
	line-height: 1.35;
	letter-spacing: 0.01em;
}
.booking-aside__nights {
	margin: 0;
	font-size: 12px;
	font-weight: 600;
	color: var(--wt-dark-blue);
}
.booking-aside__room {
	font-weight: 600;
	font-size: 14px;
	margin: 0 0 4px;
	color: var(--wt-ink);
}
.booking-aside__meta {
	font-size: 12px;
	color: var(--wt-ink-muted);
	margin: 0 0 10px;
}
.booking-aside__line {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	font-size: 13px;
	margin-bottom: 6px;
	color: var(--wt-ink);
}
.booking-aside__line--muted { color: var(--wt-ink-muted); font-size: 12px; }
.booking-aside__line--member .booking-aside__was {
	text-decoration: line-through;
	color: var(--wt-ink-muted);
}
.booking-aside__line--save strong { color: #2f8a4d; }
.booking-aside__rate-note {
	margin: 10px 0 0;
	font-size: 12px;
	line-height: 1.45;
	color: var(--wt-ink-muted);
}
.booking-aside__rate-note--confirmed {
	color: #2f8a4d;
	font-weight: 600;
}
.booking-aside__rate-note[hidden] {
	display: none !important;
}
.booking-aside__total--loading .booking-aside__total-label,
.booking-promo-applied--loading .booking-promo-applied__label,
.booking-promo-applied--loading .booking-promo-applied__chip {
	display: none !important;
}
.booking-aside__total-left {
	flex: 1;
	min-width: 0;
	margin-right: 12px;
}
.booking-aside__inline-progress {
	display: block;
	width: 100%;
	max-width: 140px;
	height: 3px;
	border-radius: 999px;
	background: rgba(72, 154, 216, 0.18);
	overflow: hidden;
	position: relative;
}
.booking-promo-applied__progress.booking-aside__inline-progress {
	max-width: none;
	flex: 1;
	min-width: 48px;
}
.booking-aside__inline-progress[hidden] {
	display: none !important;
}
.booking-aside__inline-progress::after {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 42%;
	background: var(--wt-dark-blue);
	border-radius: inherit;
	animation: booking-aside-total-progress 1.1s ease-in-out infinite;
}
@keyframes booking-aside-total-progress {
	0% { transform: translateX(-120%); }
	100% { transform: translateX(280%); }
}
.booking-aside__total {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid var(--wt-border);
}
.booking-aside__total strong { font-size: 22px; }

@media (max-width: 900px) {
	.booking-checkout__grid {
		grid-template-columns: 1fr;
	}
	.booking-checkout__aside {
		position: static;
		order: -1;
	}
}
@media (max-width: 520px) {
	.booking-form__grid { grid-template-columns: 1fr; }
	.booking-checkout { padding: 16px; }
}

/* LiteAPI payment widget — Complete booking matches Confirm button */

/*
 * Markup-debug superscript (developer-only)
 *
 * Rendered next to every price as e.g. "$224 17.6%". Hidden by default — only
 * shown when `body.show-markup-debug` is set, which is wired to the
 * "Show markup % (developer)" checkbox in Advanced settings (state stored in
 * localStorage `wt:showMarkupDebug`). Color is intentionally bold red so it's
 * unmistakably a debug signal and won't be confused with a real UI element.
 */
.markup-debug {
	display: none;
	color: #d22;
	font-weight: 500;
	font-size: 0.45em;
	margin-left: 3px;
	vertical-align: super;
	font-family: "Nunito Sans", "Inter", system-ui, sans-serif;
	letter-spacing: 0;
}
body.show-markup-debug .markup-debug { display: inline; }

/* Dev breakdown on search cards (Net / SSP / markup) — same toggle as markup % */
.card-price-block { min-width: 0; }
.card-price-row {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 8px 12px;
}
.card-price-debug {
	display: none;
	font-family: "Nunito Sans", system-ui, sans-serif;
	font-size: 11px;
	font-weight: 400;
	line-height: 1.45;
	color: rgba(32, 35, 40, 0.72);
}
body.show-markup-debug .card-price-debug {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 10px;
}
.card-price-debug__item { white-space: nowrap; }
.card-price-debug__k {
	font-weight: 600;
	color: rgba(32, 35, 40, 0.5);
	margin-right: 2px;
}

/* ── Club gate (welcome.html) ───────────────────────────────────── */
body.club-gate-page {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
.club-gate {
	position: relative;
	z-index: 2;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: clamp(40px, 8vh, 90px) 24px clamp(120px, 18vh, 220px);
	gap: clamp(20px, 4vh, 40px);
}
.club-gate__logo img {
	width: min(420px, 70vw);
	height: auto;
	display: block;
	filter: drop-shadow(0 12px 32px rgba(32, 35, 40, 0.28));
}
.club-gate__card {
	width: min(520px, 100%);
	background: rgba(255, 255, 255, 0.97);
	border-radius: var(--wt-radius-lg);
	box-shadow: var(--wt-shadow-md);
	padding: clamp(28px, 4vw, 40px);
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.club-gate__notice {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin: 0 0 6px;
	padding: 14px 16px;
	border-radius: var(--wt-radius-md);
	background: linear-gradient(
		135deg,
		rgba(127, 204, 252, 0.14) 0%,
		rgba(244, 207, 112, 0.12) 100%
	);
	border: 1px solid rgba(72, 154, 216, 0.22);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}
.club-gate__notice-icon {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.85);
	color: var(--wt-dark-blue);
	box-shadow: 0 2px 8px rgba(72, 154, 216, 0.18);
}
.club-gate__notice-body {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}
.club-gate__notice-eyebrow {
	margin: 0;
	font-family: "Barlow", sans-serif;
	font-weight: 600;
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--wt-dark-blue);
}
.club-gate__notice-text {
	margin: 0;
	font-size: 13px;
	line-height: 1.55;
	color: var(--wt-ink-soft);
}
.club-gate__eyebrow {
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--wt-dark-blue);
	margin: 0;
}
.club-gate__title {
	font-family: "brandon-grotesque", sans-serif;
	font-weight: 700;
	font-size: clamp(26px, 3.4vw, 32px);
	color: var(--wt-ink);
	margin: 0;
	line-height: 1.2;
}
.club-gate__lead {
	color: var(--wt-ink-soft);
	font-size: 15px;
	line-height: 1.55;
	margin: 0 0 4px;
}
.club-gate__form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.club-gate__field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	background: var(--wt-light-grey);
	border-radius: var(--wt-radius-md);
	padding: 12px 16px;
	border: 1px solid transparent;
	transition: border-color 0.2s, background-color 0.2s;
}
.club-gate__field:focus-within {
	background: #fff;
	border-color: var(--wt-dark-blue);
}
.club-gate__label {
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wt-ink-muted);
}
.club-gate__field input {
	border: none;
	background: transparent;
	font-family: "brandon-grotesque", sans-serif;
	font-weight: 700;
	font-size: 22px;
	letter-spacing: 0.12em;
	color: var(--wt-ink);
	padding: 2px 0;
	outline: none;
	text-transform: uppercase;
}
.club-gate__field input::placeholder {
	color: rgba(32, 35, 40, 0.35);
	font-weight: 400;
	letter-spacing: 0.05em;
}
.club-gate__hint {
	font-size: 12px;
	color: var(--wt-ink-muted);
	line-height: 1.5;
}
.club-gate__hint code {
	background: rgba(127, 204, 252, 0.18);
	color: var(--wt-ink);
	padding: 1px 6px;
	border-radius: 4px;
	font-size: 12px;
	font-family: "SFMono-Regular", Menlo, Consolas, monospace;
	letter-spacing: 0.04em;
}
.club-gate__error {
	background: rgba(244, 207, 112, 0.32);
	border: 1px solid rgba(253, 193, 57, 0.55);
	border-radius: var(--wt-radius-md);
	padding: 10px 14px;
	font-size: 13px;
	font-weight: 500;
	color: var(--wt-ink);
	margin: 0;
}
.club-gate__submit {
	margin-top: 4px;
	background: var(--wt-dark-blue);
	color: #fff;
	border: none;
	border-radius: var(--wt-radius-pill);
	padding: 14px 24px;
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	box-shadow: 0 10px 24px rgba(72, 154, 216, 0.34);
	transition: background-color 0.2s, transform 0.15s ease, opacity 0.2s;
}
.club-gate__submit:hover:not(:disabled) { background: var(--wt-primary-deep); }
.club-gate__submit:disabled {
	opacity: 0.7;
	cursor: progress;
	transform: none;
}
.club-gate__divider {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--wt-ink-muted);
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 4px 0;
}
.club-gate__divider::before,
.club-gate__divider::after {
	content: "";
	flex: 1;
	height: 1px;
	background: var(--wt-border);
}
.club-gate__skip {
	background: transparent;
	border: 1px solid var(--wt-border-strong);
	color: var(--wt-ink);
	border-radius: var(--wt-radius-pill);
	padding: 12px 22px;
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	transition: border-color 0.2s, color 0.2s, background-color 0.2s;
}
.club-gate__skip:hover {
	border-color: var(--wt-dark-blue);
	color: var(--wt-dark-blue);
	background: rgba(72, 154, 216, 0.08);
}
.club-gate__footnote {
	font-size: 12px;
	color: var(--wt-ink-muted);
	line-height: 1.5;
	margin: 6px 0 0;
}
.club-gate__youtube {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 12px 20px;
	background: rgba(255, 255, 255, 0.92);
	border-radius: var(--wt-radius-pill);
	box-shadow: var(--wt-shadow-md);
	color: var(--wt-ink);
	text-decoration: none;
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 0.04em;
	transition: background-color 0.2s, color 0.2s, transform 0.15s ease;
}
.club-gate__youtube:hover {
	background: #fff;
	color: #c00;
	transform: translateY(-1px);
}
.club-gate__youtube-icon {
	flex-shrink: 0;
	color: #ff0000;
}
.club-gate__youtube-copy {
	display: flex;
	flex-direction: column;
	gap: 2px;
	line-height: 1.3;
}
.club-gate__youtube-sub {
	font-size: 11px;
	font-weight: 400;
	color: var(--wt-ink-muted);
	letter-spacing: 0.02em;
}

/* ── Tier chip (top nav on every gated page) ─────────────────────── */
.tier-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid var(--wt-border-strong);
	border-radius: var(--wt-radius-pill);
	padding: 6px 6px 6px 13px;
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wt-ink);
	transition: background-color 0.2s, border-color 0.2s;
}
.tier-chip:hover { background: #fff; border-color: var(--wt-dark-blue); }
.tier-chip[data-tier="5"]  { color: var(--wt-dark-blue); }
.tier-chip[data-tier="10"] { color: var(--wt-dark-blue); }
.tier-chip[data-tier="none"] { color: var(--wt-ink-muted); }
.tier-chip__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--wt-ink-muted);
}
.tier-chip[data-tier="5"]  .tier-chip__dot { background: var(--wt-deep-yellow); }
.tier-chip[data-tier="10"] .tier-chip__dot { background: var(--wt-dark-blue); }
.tier-chip__change {
	background: transparent;
	border: none;
	color: inherit;
	font: inherit;
	letter-spacing: inherit;
	text-transform: inherit;
	cursor: pointer;
	padding: 4px 10px;
	border-radius: var(--wt-radius-pill);
	background-color: rgba(72, 154, 216, 0.12);
	color: var(--wt-dark-blue);
	transition: background-color 0.2s, color 0.2s;
}
.tier-chip__change:hover { background-color: rgba(72, 154, 216, 0.22); }

/* ── Member "was" strikethrough on search cards / rates table ───── */
.card-price-was {
	margin: 0 0 2px;
	line-height: 1;
}
.card-price-was__strike {
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	font-size: 12px;
	color: var(--wt-ink-muted);
	text-decoration: line-through;
	text-decoration-thickness: 1px;
	letter-spacing: 0.04em;
}
.rates-table__price .card-price-was {
	margin-bottom: 1px;
	display: block;
}
.rate-card__was {
	margin: 0 0 4px;
	font-size: 12px;
	display: flex;
	gap: 6px;
	align-items: baseline;
}
.rate-card__was-label {
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wt-ink-muted);
}
.rate-card__was-strike {
	font-family: "Barlow", sans-serif;
	color: var(--wt-ink-muted);
	text-decoration: line-through;
}

/* ── Member savings line in booking summary ─────────────────────── */
.booking-summary__member {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 12px;
	margin: 6px 0 0;
	font-size: 13px;
}
.booking-summary__member span {
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wt-ink-muted);
}
.booking-summary__was {
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	color: var(--wt-ink-muted);
	text-decoration: line-through;
}
.booking-summary__member--save strong {
	color: var(--wt-dark-blue);
	font-family: "Barlow", sans-serif;
	font-weight: 700;
}

/* ── Places autocomplete ───────────────────────────────────────── */
.search-field--places {
	position: relative;
	z-index: 1;
	flex: 2.35;
	min-width: 0;
}
.search-field--guests {
	flex: 0.6;
	min-width: 68px;
	max-width: 96px;
}
.search-field--guests .search-field__body {
	min-width: 0;
}
.search-field--places:focus-within {
	z-index: 50;
}
.search-field--places .search-field__body {
	position: relative;
}
.places-dropdown {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 6px);
	z-index: 100;
	margin: 0;
	padding: 6px 0;
	list-style: none;
	background: #fff;
	border: 1px solid var(--wt-border);
	border-radius: 14px;
	box-shadow: 0 12px 32px rgba(32, 35, 40, 0.12);
	max-height: 280px;
	overflow-y: auto;
}
.places-dropdown__item {
	padding: 10px 14px;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.places-dropdown__item:hover,
.places-dropdown__item.is-active {
	background: rgba(186, 218, 230, 0.35);
}
.places-dropdown__row {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}
.places-dropdown__name {
	font-weight: 600;
	font-size: 14px;
	color: var(--wt-ink);
}
.places-dropdown__kind {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 2px 6px;
	border-radius: 4px;
	background: rgba(72, 154, 216, 0.2);
	color: var(--wt-dark-blue);
}
.places-dropdown__sub {
	font-size: 12px;
	color: var(--wt-ink-muted);
}
.places-dropdown__empty {
	padding: 12px 14px;
	font-size: 13px;
	color: var(--wt-ink-muted);
}

/* ── Taxes-included badge ───────────────────────────────────────── */
.badge--tax {
	display: inline-block;
	margin-top: 6px;
	margin-right: 6px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 3px 8px;
	border-radius: 999px;
	background: rgba(72, 154, 216, 0.15);
	color: var(--wt-dark-blue);
}
.badge--tax-muted {
	background: rgba(32, 35, 40, 0.08);
	color: var(--wt-ink-muted);
}
.card .badge--tax { margin-top: 4px; }
.rates-table__taxes {
	display: block;
	margin-bottom: 4px;
}

/* ── Room-grouped rates on hotel detail ─────────────────────────── */
.panel--hotel-detail {
	overflow: visible;
}

.room-rate-groups {
	display: flex;
	flex-direction: column;
	gap: 24px;
	overflow: visible;
}
.room-rate-group {
	border: 1px solid var(--wt-border);
	border-radius: 16px;
	overflow: visible;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: var(--wt-shadow-sm);
}
.room-rate-group__head {
	display: grid;
	grid-template-columns: minmax(160px, 240px) 1fr;
	gap: 20px;
	align-items: start;
	padding: 20px 20px 16px;
	border-bottom: 1px solid var(--wt-border);
	background: rgba(236, 224, 210, 0.35);
}
.room-rate-group__media-col {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
}
.room-rate-group__img-stage {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 14px rgba(32, 35, 40, 0.12);
}
.room-rate-group__img-frame {
	position: relative;
	width: 100%;
}
.room-rate-group__img {
	width: 100%;
	height: 140px;
	object-fit: cover;
	display: block;
}
.room-rate-group__img--zoom {
	cursor: zoom-in;
}
.room-rate-group__img--placeholder {
	background: linear-gradient(135deg, var(--wt-light-blue), var(--wt-sand));
	min-height: 140px;
	width: 100%;
	border-radius: 12px;
}
.room-rate-group__thumbs {
	display: flex;
	gap: 6px;
	overflow-x: auto;
	padding-bottom: 2px;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.room-rate-group__thumbs::-webkit-scrollbar {
	display: none;
}
.room-rate-group__thumb {
	flex: 0 0 52px;
	width: 52px;
	height: 40px;
	padding: 0;
	border: 2px solid transparent;
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	background: none;
}
.room-rate-group__thumb.is-active { border-color: var(--wt-dark-blue); }
.room-rate-group__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.room-rate-group__copy { min-width: 0; }
.room-rate-group__title {
	margin: 0 0 6px;
	font-family: "brandon-grotesque", sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: var(--wt-ink);
	line-height: 1.25;
}
.room-rate-group__meta {
	margin: 0 0 8px;
	font-size: 13px;
	color: var(--wt-ink-muted);
}
.room-rate-group__desc {
	margin: 0 0 10px;
	font-size: 13px;
	line-height: 1.5;
	color: var(--wt-ink-soft);
}
.room-rate-group__desc-more {
	border: none;
	background: none;
	padding: 0;
	font-size: inherit;
	font-weight: 600;
	color: var(--wt-dark-blue);
	cursor: pointer;
	text-decoration: underline;
	font-family: inherit;
}
.room-rate-group__amenities {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.room-rate-group__table.rates-table-wrap {
	overflow: visible;
	border: none;
	border-radius: 0;
	background: transparent;
}
.room-rate-group__table .rates-table {
	margin: 0;
	min-width: 0;
}
@media (max-width: 640px) {
	.guests-saying__header-aside {
		flex-direction: column;
		gap: 12px;
	}
}
@media (max-width: 640px) {
	.room-rate-group__head {
		grid-template-columns: 1fr;
	}
	.room-rate-group__img,
	.room-rate-group__img--placeholder {
		height: 180px;
		max-height: 42vw;
	}
}

/* ── Prebook failure alert on hotel detail ──────────────────────── */
.hotel-detail-alert {
	background: #fff;
	border-left: 4px solid var(--wt-deep-yellow);
	padding: 14px 18px;
	border-radius: 12px;
	margin-bottom: 16px;
	box-shadow: 0 4px 12px rgba(32, 35, 40, 0.06);
}
.hotel-detail-alert strong {
	display: block;
	margin-bottom: 6px;
	font-family: "Barlow", sans-serif;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 0.06em;
}
.hotel-detail-alert p {
	margin: 0;
	font-size: 14px;
	line-height: 1.45;
}

