.nhsa-public-booking,
.nhsa-public-booking * {
	box-sizing: border-box;
}

.nhsa-public-booking {
	--nhsa-booking-bg: #f5f7fc;
	--nhsa-booking-card: #ffffff;
	--nhsa-booking-ink: #071326;
	--nhsa-booking-muted: #556070;
	--nhsa-booking-border: #c3c7d0;
	--nhsa-booking-soft: #edf3ff;
	--nhsa-booking-green: #007a4d;
	--nhsa-booking-green-soft: #64eda4;
	--nhsa-booking-red: #c40000;
	--nhsa-booking-shadow: 0 2px 0 #c4c7cf;
	width: 100%;
	color: var(--nhsa-booking-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	letter-spacing: 0;
}

.nhsa-public-booking-loading,
.nhsa-booking-empty,
.nhsa-booking-error {
	border: 1px solid var(--nhsa-booking-border);
	border-radius: 5px;
	background: var(--nhsa-booking-card);
	padding: 18px;
	color: var(--nhsa-booking-muted);
}

.nhsa-booking-shell {
	display: grid;
	gap: 0;
	width: min(100%, 1180px);
	margin: 0 auto;
	padding: 0;
	overflow: hidden;
	border: 1px solid var(--nhsa-booking-border);
	border-radius: 6px;
	background: var(--nhsa-booking-card);
	box-shadow: var(--nhsa-booking-shadow);
}

.nhsa-booking-hero {
	display: grid;
	gap: 8px;
}

.nhsa-booking-eyebrow {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: var(--nhsa-booking-muted);
}

.nhsa-booking-hero h2,
.nhsa-booking-step h3,
.nhsa-review-card h3,
.nhsa-booking-success h2 {
	margin: 0;
	color: var(--nhsa-booking-ink);
	line-height: 1.08;
	font-weight: 900;
}

.nhsa-booking-hero h2 {
	font-size: clamp(34px, 4vw, 54px);
}

.nhsa-booking-hero p,
.nhsa-section-heading p,
.nhsa-review-card p {
	margin: 0;
	color: var(--nhsa-booking-muted);
	font-size: 16px;
	line-height: 1.45;
}

.nhsa-booking-progress {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	margin: 0;
	padding: 18px clamp(18px, 3vw, 34px) 34px;
	list-style: none;
	border: 0;
	border-radius: 0;
	background: #ffffff;
	box-shadow: none;
}

.nhsa-booking-progress li {
	position: relative;
	display: flex;
	justify-content: center;
	flex: 1 1 0;
	min-width: 0;
}

.nhsa-booking-progress li:not(:last-child)::after {
	content: "";
	position: absolute;
	left: calc(50% + 20px);
	right: calc(-50% + 20px);
	top: 17px;
	height: 2px;
	background: #dfe5ef;
}

.nhsa-booking-progress li.is-complete:not(:last-child)::after {
	background: var(--nhsa-booking-green);
}

.nhsa-booking-progress button {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-width: 0;
	min-height: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: #4d596b;
	font: inherit;
	font-size: 12px;
	font-weight: 800;
	cursor: pointer;
	position: relative;
	z-index: 1;
	padding: 0;
	text-align: center;
	line-height: 1.2;
}

.nhsa-booking-progress button:disabled {
	cursor: default;
	opacity: 1;
}

.nhsa-booking-progress .is-active button {
	color: var(--nhsa-booking-ink);
}

.nhsa-booking-progress .is-complete button {
	color: #006b43;
}

.nhsa-booking-progress-marker {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	color: currentColor;
	background: #eef2fa;
	border: 1px solid #d8dfeb;
	box-shadow: 0 0 0 5px #ffffff;
}

.nhsa-booking-progress .is-active .nhsa-booking-progress-marker,
.nhsa-booking-progress .is-complete .nhsa-booking-progress-marker {
	background: #dffbea;
	color: #007a4d;
	border-color: #64eda4;
}

.nhsa-booking-progress .is-active .nhsa-booking-progress-marker {
	background: var(--nhsa-booking-green);
	color: #ffffff;
	border-color: var(--nhsa-booking-green);
}

.nhsa-booking-progress li:not(.is-active):not(.is-complete) button {
	color: #7b8494;
}

.nhsa-booking-progress-number {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.nhsa-booking-progress button > .nhsa-booking-icon {
	display: none;
}

.nhsa-booking-progress-marker .nhsa-booking-icon {
	display: block;
}

.nhsa-booking-progress button > span:not(.nhsa-booking-progress-marker):not(.nhsa-booking-progress-number) {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.nhsa-booking-icon {
	width: 16px;
	height: 16px;
	flex: 0 0 auto;
}

.nhsa-booking-body,
.nhsa-booking-actions {
	background: var(--nhsa-booking-card);
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.nhsa-booking-body {
	border-top: 1px solid #dfe3ea;
	overflow: hidden;
}

.nhsa-booking-step {
	display: grid;
	gap: 22px;
	padding: clamp(20px, 3vw, 34px);
}

.nhsa-booking-step h3 {
	font-size: clamp(24px, 2.4vw, 34px);
}

.nhsa-section-heading {
	display: grid;
	gap: 6px;
}

.nhsa-booking-field-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.nhsa-booking-field {
	display: grid;
	gap: 8px;
	min-width: 0;
	color: #445063;
	font-size: 14px;
	font-weight: 800;
}

.nhsa-booking-field input,
.nhsa-booking-field select,
.nhsa-booking-field textarea {
	width: 100%;
	min-height: 48px;
	border: 1px solid var(--nhsa-booking-border);
	border-radius: 5px;
	background: #ffffff;
	color: var(--nhsa-booking-ink);
	font: inherit;
	font-size: 16px;
	font-weight: 500;
	padding: 10px 14px;
}

.nhsa-booking-field textarea {
	min-height: 120px;
	resize: vertical;
}

.nhsa-booking-field input:focus,
.nhsa-booking-field select:focus,
.nhsa-booking-field textarea:focus,
.nhsa-booking-progress button:focus,
.nhsa-booking-primary:focus,
.nhsa-booking-secondary:focus {
	outline: 2px solid rgba(0, 122, 77, 0.28);
	outline-offset: 2px;
}

.nhsa-booking-note {
	margin: 0;
	color: var(--nhsa-booking-muted);
	font-size: 14px;
}

.nhsa-room-choice-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.nhsa-room-choice {
	display: grid;
	grid-template-rows: auto 1fr;
	min-height: 240px;
	overflow: hidden;
	border: 1px solid var(--nhsa-booking-border);
	border-radius: 5px;
	background: #ffffff;
	transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.nhsa-room-choice:hover {
	border-color: #7d8797;
	box-shadow: 0 10px 24px rgba(7, 19, 38, 0.08);
	transform: translateY(-1px);
}

.nhsa-room-choice.is-selected {
	border-color: var(--nhsa-booking-green);
	box-shadow: 0 0 0 2px rgba(0, 122, 77, 0.14), var(--nhsa-booking-shadow);
}

.nhsa-room-choice.is-disabled {
	background: #f4f6fa;
	color: #828a98;
	transform: none;
}

.nhsa-room-choice-media {
	aspect-ratio: 16 / 9;
	background-color: #e9effa;
	background-position: center;
	background-size: cover;
}

.nhsa-room-choice-body {
	display: grid;
	gap: 14px;
	padding: 16px;
}

.nhsa-room-choice-top,
.nhsa-room-choice-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.nhsa-room-choice h4 {
	margin: 0;
	color: var(--nhsa-booking-ink);
	font-size: 18px;
	line-height: 1.2;
	font-weight: 900;
}

.nhsa-room-choice p {
	margin: 0;
	color: #4d596b;
	font-size: 14px;
	line-height: 1.45;
}

.nhsa-availability-pill,
.nhsa-room-amenities span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 24px;
	border-radius: 999px;
	padding: 0 10px;
	font-size: 12px;
	font-weight: 800;
	white-space: nowrap;
}

.nhsa-availability-pill {
	background: #64eda4;
	color: #064629;
}

.nhsa-availability-pill.is-empty {
	background: #ffd4d4;
	color: var(--nhsa-booking-red);
}

.nhsa-room-amenities {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.nhsa-room-amenities span {
	background: #dcebff;
	color: #183e73;
}

.nhsa-room-choice-bottom strong {
	color: var(--nhsa-booking-ink);
	font-size: 16px;
	font-weight: 900;
}

.nhsa-room-price {
	white-space: nowrap;
}

.nhsa-room-quantity {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 40px;
	border: 1px solid var(--nhsa-booking-border);
	border-radius: 5px;
	background: #f8faff;
	padding: 4px;
}

.nhsa-room-quantity-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: 1px solid var(--nhsa-booking-border);
	border-radius: 5px;
	background: #ffffff;
	color: var(--nhsa-booking-ink);
	cursor: pointer;
	transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.nhsa-room-quantity-button:hover:not(:disabled),
.nhsa-room-quantity-button:focus-visible {
	border-color: var(--nhsa-booking-green);
	background: #eafff4;
	color: var(--nhsa-booking-green);
	outline: none;
}

.nhsa-room-quantity-button:disabled {
	opacity: 0.42;
	cursor: default;
}

.nhsa-room-quantity-button .nhsa-booking-icon {
	width: 16px;
	height: 16px;
}

.nhsa-room-quantity-count {
	min-width: 24px;
	color: var(--nhsa-booking-ink);
	font-size: 15px;
	font-weight: 900;
	text-align: center;
}

.nhsa-review-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
	gap: 18px;
}

.nhsa-review-card {
	display: grid;
	align-content: start;
	gap: 12px;
	border: 1px solid var(--nhsa-booking-border);
	border-radius: 5px;
	background: #ffffff;
	padding: 20px;
}

.nhsa-review-card h3 {
	font-size: 22px;
}

.nhsa-review-card h4 {
	margin: 10px 0 0;
	font-size: 16px;
	font-weight: 900;
}

.nhsa-price-card strong {
	display: block;
	margin-top: 8px;
	border-top: 3px solid var(--nhsa-booking-ink);
	padding-top: 14px;
	font-size: 26px;
	line-height: 1.15;
	font-weight: 900;
}

.nhsa-secure-note {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-top: 8px;
	border-radius: 5px;
	background: var(--nhsa-booking-soft);
	padding: 12px;
	color: #415067;
	font-size: 13px;
	line-height: 1.35;
}

.nhsa-booking-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 14px;
	padding: 18px clamp(18px, 3vw, 34px);
	border-top: 1px solid #dfe3ea;
	background: #eaf1ff;
}

.nhsa-booking-primary,
.nhsa-booking-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 170px;
	min-height: 48px;
	border: 1px solid var(--nhsa-booking-border);
	border-radius: 5px;
	font: inherit;
	font-size: 15px;
	font-weight: 900;
	cursor: pointer;
}

.nhsa-booking-primary {
	border-color: var(--nhsa-booking-green);
	background: var(--nhsa-booking-green);
	color: #ffffff;
}

.nhsa-booking-secondary {
	background: #ffffff;
	color: #2d3748;
}

.nhsa-booking-primary:disabled,
.nhsa-booking-secondary:disabled {
	opacity: 0.65;
	cursor: default;
}

.nhsa-booking-error {
	border-color: #ffc7c7;
	background: #fff7f7;
	color: var(--nhsa-booking-red);
	font-weight: 700;
}

.nhsa-booking-success {
	display: grid;
	justify-items: center;
	gap: 14px;
	border: 1px solid var(--nhsa-booking-border);
	border-radius: 5px;
	background: #ffffff;
	padding: clamp(28px, 5vw, 52px);
	text-align: center;
	box-shadow: var(--nhsa-booking-shadow);
}

.nhsa-booking-success .nhsa-booking-icon {
	width: 48px;
	height: 48px;
	color: var(--nhsa-booking-green);
}

.nhsa-booking-code {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	border-radius: 5px;
	background: #071326;
	color: #ffffff;
	padding: 0 18px;
	font-size: 18px;
	letter-spacing: 0.08em;
}

@media (max-width: 980px) {
	.nhsa-booking-field-grid,
	.nhsa-room-choice-grid,
	.nhsa-review-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.nhsa-booking-shell {
		border-radius: 5px;
	}

	.nhsa-booking-progress {
		display: flex;
		overflow-x: auto;
		scrollbar-width: thin;
		padding: 14px 14px 28px;
	}

	.nhsa-booking-progress li {
		flex: 0 0 112px;
	}

	.nhsa-booking-progress li:not(:last-child)::after {
		left: calc(50% + 18px);
		right: calc(-50% + 18px);
	}

	.nhsa-booking-actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.nhsa-booking-primary,
	.nhsa-booking-secondary {
		width: 100%;
	}

	.nhsa-room-choice-top,
	.nhsa-room-choice-bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.nhsa-room-quantity {
		width: 100%;
		justify-content: space-between;
	}
}
