/*
 * WebsitesByMike Booking System v5
 * My Happy Place frontend UI
 */

.wbm-booking-app {
	--wbm-pink: #F64AD7;
	--wbm-pink-dark: #D934BB;
	--wbm-pink-soft: #FCEBFF;
	--wbm-purple: #32104D;
	--wbm-purple-soft: #F8F1FF;
	--wbm-dark: #1E2638;
	--wbm-text: #384154;
	--wbm-muted: #626B7F;
	--wbm-cream: #FFF9F2;
	--wbm-card: #FFFFFF;
	--wbm-border: #F4D4EC;
	--wbm-border-soft: #EDF0F7;
	--wbm-yellow: #FFD84D;
	--wbm-green: #34B96F;
	--wbm-green-soft: #F4FFF7;
	--wbm-red: #E65353;
	--wbm-red-soft: #FFF4F4;
	--wbm-grey: #B9BDC9;
	--wbm-shadow: 0 16px 45px rgba(30, 38, 56, 0.08);
	--wbm-shadow-hover: 0 18px 45px rgba(246, 74, 215, 0.18);
	--wbm-focus: 0 0 0 4px rgba(246, 74, 215, 0.22);
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
	margin: 0 auto;
	font-family: "Quicksand", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--wbm-dark);
}

.wbm-booking-app,
.wbm-booking-app * {
	box-sizing: border-box;
}

.wbm-booking-app button,
.wbm-booking-app input {
	font-family: inherit;
}

.wbm-booking-app button {
	-webkit-tap-highlight-color: transparent;
}

.wbm-booking-app button:focus-visible,
.wbm-booking-app input:focus-visible {
	outline: none;
	box-shadow: var(--wbm-focus);
}

.wbm-flow-stage {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 720px;
	min-height: 720px;
	margin: 0 auto;
}

.wbm-flow-panel {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	max-width: 100%;
	height: 720px;
	min-height: 720px;
	margin: 0;
	overflow-y: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateX(105%);
	transition:
		transform 0.42s cubic-bezier(.22,.8,.22,1),
		opacity 0.28s ease,
		visibility 0.28s ease;
	will-change: transform, opacity;
}

.wbm-flow-panel.is-active {
	position: absolute;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(0);
	z-index: 2;
}

.wbm-flow-panel.is-prev {
	transform: translateX(-105%);
}

.wbm-flow-panel.is-next {
	transform: translateX(105%);
}

.wbm-back-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--wbm-border);
	border-radius: 999px;
	background: #FFFFFF;
	color: var(--wbm-pink);
	padding: 10px 15px;
	margin: 0 0 16px;
	font-weight: 900;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.wbm-back-btn:hover,
.wbm-back-btn:focus-visible {
	background: var(--wbm-pink);
	border-color: var(--wbm-pink);
	color: #FFFFFF;
	transform: translateY(-1px);
	box-shadow: 0 8px 22px rgba(246, 74, 215, 0.18);
}

.wbm-focus-target {
	animation: wbmPulse 1.15s ease;
}

@keyframes wbmPulse {
	0% { box-shadow: 0 0 0 0 rgba(246, 74, 215, 0.42), var(--wbm-shadow); }
	100% { box-shadow: 0 0 0 26px rgba(246, 74, 215, 0), var(--wbm-shadow); }
}

/* Steps */

.wbm-steps {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin: 0 0 18px;
}

.wbm-steps span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--wbm-card);
	border: 1px solid var(--wbm-border);
	border-radius: 999px;
	padding: 10px 14px;
	font-weight: 800;
	font-size: 13px;
	line-height: 1;
	color: var(--wbm-muted);
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.wbm-steps .is-active {
	background: var(--wbm-pink);
	border-color: var(--wbm-pink);
	color: #FFFFFF;
	box-shadow: 0 8px 25px rgba(246, 74, 215, 0.25);
}

/* Panels */

.wbm-panel {
	background: var(--wbm-card);
	border: 1px solid var(--wbm-border);
	border-radius: 30px;
	padding: 28px;
	margin: 18px 0;
	box-shadow: var(--wbm-shadow);
}

.wbm-panel h3 {
	font-size: clamp(24px, 3vw, 32px);
	line-height: 1.12;
	margin: 0 0 8px;
	font-weight: 900;
	letter-spacing: -0.03em;
	color: var(--wbm-dark);
}

.wbm-muted {
	margin: 0 0 20px;
	color: var(--wbm-muted);
	font-weight: 700;
	line-height: 1.55;
}

/* Experience Cards */

.wbm-experience-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.wbm-experience-card {
	appearance: none;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	overflow: hidden;
	min-height: 170px;
	width: 100%;
	border: 2px solid var(--wbm-border);
	background: var(--wbm-card);
	border-radius: 24px;
	padding: 18px;
	text-align: left;
	cursor: pointer;
	color: var(--wbm-dark);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.wbm-experience-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 20% 15%, rgba(246, 74, 215, 0.14), transparent 36%),
		radial-gradient(circle at 80% 20%, rgba(255, 216, 77, 0.20), transparent 38%),
		linear-gradient(180deg, rgba(255,255,255,0.45), rgba(255,255,255,0.96));
	pointer-events: none;
	z-index: 1;
}

.wbm-exp-img,
.wbm-exp-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.18;
	z-index: 0;
	pointer-events: none;
}

.wbm-experience-card strong,
.wbm-experience-card small {
	position: relative;
	z-index: 2;
}

.wbm-experience-card strong {
	font-size: 18px;
	line-height: 1.2;
	font-weight: 900;
	color: var(--wbm-dark);
}

.wbm-experience-card small {
	display: -webkit-box;
	margin-top: 6px;
	color: var(--wbm-muted);
	font-weight: 800;
	font-size: 13px;
	line-height: 1.35;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.wbm-experience-card:hover {
	border-color: var(--wbm-pink);
	transform: translateY(-3px);
	box-shadow: var(--wbm-shadow-hover);
}

.wbm-experience-card.is-selected {
	border-color: var(--wbm-pink);
	background: #FFFFFF;
	box-shadow: 0 14px 38px rgba(246, 74, 215, 0.22);
}

.wbm-experience-card.is-selected::after {
	content: "\2713";
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 3;
	width: 30px;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: var(--wbm-pink);
	color: #FFFFFF;
	font-size: 16px;
	font-weight: 900;
	box-shadow: 0 8px 18px rgba(246, 74, 215, 0.28);
}

/* Calendar */

.wbm-calendar-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
}

.wbm-calendar-head button {
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 999px;
	background: var(--wbm-pink-soft);
	color: var(--wbm-pink);
	font-size: 28px;
	line-height: 1;
	font-weight: 900;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.wbm-calendar-head button:hover {
	background: var(--wbm-pink);
	color: #FFFFFF;
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(246, 74, 215, 0.22);
}

.wbm-month-title {
	flex: 1;
	text-align: center;
	font-size: clamp(22px, 3vw, 30px);
	font-weight: 900;
	letter-spacing: -0.02em;
	color: var(--wbm-dark);
}

.wbm-calendar-legend {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin: 14px 0 18px;
	color: var(--wbm-muted);
	font-weight: 800;
	font-size: 13px;
}

.wbm-calendar-legend span {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
}

.wbm-calendar-legend i {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	margin-right: 6px;
}

.wbm-calendar-legend .ok { background: var(--wbm-green); }
.wbm-calendar-legend .few { background: #F2BD2E; }
.wbm-calendar-legend .full { background: var(--wbm-red); }
.wbm-calendar-legend .closed { background: var(--wbm-grey); }

.wbm-calendar {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 10px;
	width: 100%;
	overflow: visible;
}

.wbm-day-label {
	min-width: 0;
	text-align: center;
	font-weight: 900;
	color: var(--wbm-muted);
	font-size: 12px;
	line-height: 1;
	padding: 0 0 3px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.wbm-date-spacer {
	min-height: 1px;
}

.wbm-date {
	appearance: none;
	position: relative;
	width: 100%;
	min-width: 0;
	min-height: 76px;
	border: 1px solid var(--wbm-border-soft);
	background: var(--wbm-card);
	border-radius: 18px;
	padding: 10px;
	cursor: pointer;
	text-align: left;
	color: var(--wbm-dark);
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.wbm-date strong {
	display: block;
	font-size: 18px;
	line-height: 1;
	font-weight: 900;
	color: inherit;
}

.wbm-date small {
	display: block;
	font-size: 11px;
	line-height: 1.2;
	font-weight: 900;
	margin-top: 7px;
	color: inherit;
	opacity: 0.82;
}

.wbm-date:hover:not(.full):not(.closed):not(:disabled) {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(30, 38, 56, 0.09);
	border-color: var(--wbm-pink);
}

.wbm-date.available {
	border-color: #BCECCF;
	background: var(--wbm-green-soft);
}

.wbm-date.available::after { background: var(--wbm-green); }

.wbm-date.few {
	border-color: #FFE2A0;
	background: #FFFAF0;
}

.wbm-date.few::after { background: #F2BD2E; }

.wbm-date.full {
	border-color: #FFC5C5;
	background: var(--wbm-red-soft);
	color: #9B3B3B;
	cursor: not-allowed;
}

.wbm-date.full::after { background: var(--wbm-red); }

.wbm-date.closed,
.wbm-date:disabled {
	background: #F1F2F6;
	color: #99A0AD;
	cursor: not-allowed;
}

.wbm-date.closed::after,
.wbm-date:disabled::after { background: var(--wbm-grey); }

.wbm-date.available::after,
.wbm-date.few::after,
.wbm-date.full::after,
.wbm-date.closed::after,
.wbm-date:disabled::after {
	content: "";
	position: absolute;
	top: 9px;
	right: 9px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
}

.wbm-date.is-selected {
	outline: 3px solid rgba(246, 74, 215, 0.28);
	border-color: var(--wbm-pink);
	box-shadow: 0 12px 28px rgba(246, 74, 215, 0.16);
}

.wbm-date.is-selected::before {
	content: "\2713";
	position: absolute;
	right: 7px;
	bottom: 7px;
	width: 22px;
	height: 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: var(--wbm-pink);
	color: #FFFFFF;
	font-size: 12px;
	font-weight: 900;
}

/* Times */

.wbm-times {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.wbm-time {
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 120px;
	border: 2px solid var(--wbm-border);
	background: var(--wbm-card);
	border-radius: 999px;
	padding: 13px 16px;
	color: var(--wbm-dark);
	font-weight: 900;
	cursor: pointer;
	line-height: 1;
	white-space: nowrap;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.wbm-time small {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	margin-left: 0;
	padding: 5px 7px;
	border-radius: 999px;
	background: var(--wbm-pink-soft);
	color: var(--wbm-muted);
	font-size: 10px;
	line-height: 1;
	font-weight: 900;
}

.wbm-time:hover:not(:disabled),
.wbm-time:focus-visible:not(:disabled) {
	border-color: var(--wbm-pink);
	color: var(--wbm-pink);
	transform: translateY(-1px);
	box-shadow: 0 8px 22px rgba(246, 74, 215, 0.14);
}

.wbm-time.is-selected {
	border-color: var(--wbm-pink);
	background: var(--wbm-pink);
	color: #FFFFFF;
	box-shadow: 0 8px 24px rgba(246, 74, 215, 0.25);
}

.wbm-time.is-selected small {
	background: rgba(255,255,255,0.18);
	color: #FFFFFF;
	opacity: 1;
}

.wbm-time[disabled] {
	opacity: 0.45;
	cursor: not-allowed;
	background: #F1F2F6;
	color: #8F96A6;
}

/* Price Options */

.wbm-prices {
	display: grid;
	gap: 12px;
}

.wbm-price-option {
	appearance: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 14px;
	width: 100%;
	border: 2px solid var(--wbm-border);
	background: var(--wbm-card);
	border-radius: 20px;
	padding: 16px 18px;
	cursor: pointer;
	text-align: left;
	color: var(--wbm-dark);
	font-weight: 900;
	transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.wbm-price-option:hover,
.wbm-price-option:focus-visible {
	border-color: var(--wbm-pink);
	transform: translateY(-1px);
	box-shadow: 0 10px 26px rgba(246, 74, 215, 0.13);
}

.wbm-price-option.is-selected {
	border-color: var(--wbm-pink);
	background: linear-gradient(180deg, #FFFFFF 0%, #FFF8FD 100%);
	box-shadow: 0 8px 25px rgba(246, 74, 215, 0.15);
}

.wbm-price-option small {
	display: block;
	color: var(--wbm-muted);
	font-weight: 800;
	margin-top: 3px;
	line-height: 1.35;
}

.wbm-price-option .wbm-price {
	color: var(--wbm-pink);
	white-space: nowrap;
	font-weight: 900;
}

/* Add-ons */

.wbm-addons {
	display: grid;
	gap: 12px;
	margin: 18px 0;
}

.wbm-siblings,
.wbm-extra-adults {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	border-radius: 20px;
	padding: 16px;
	font-weight: 900;
	color: var(--wbm-dark);
}

.wbm-siblings {
	background: var(--wbm-cream);
	border: 1px solid #F7E2C7;
}

.wbm-extra-adults {
	background: var(--wbm-purple-soft);
	border: 1px solid #EAD8FF;
}

.wbm-siblings div,
.wbm-extra-adults div {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.wbm-siblings button,
.wbm-extra-adults button {
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 999px;
	background: var(--wbm-pink);
	color: #FFFFFF;
	font-size: 22px;
	font-weight: 900;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.wbm-siblings button:hover,
.wbm-extra-adults button:hover {
	background: var(--wbm-pink-dark);
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(246, 74, 215, 0.22);
}

.wbm-siblings input,
.wbm-extra-adults input {
	width: 44px;
	border: 0;
	text-align: center;
	font-weight: 900;
	font-size: 17px;
	background: transparent;
	color: var(--wbm-dark);
	-moz-appearance: textfield;
}

.wbm-siblings input::-webkit-outer-spin-button,
.wbm-siblings input::-webkit-inner-spin-button,
.wbm-extra-adults input::-webkit-outer-spin-button,
.wbm-extra-adults input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.wbm-capacity-note {
	margin: 14px 0;
	color: var(--wbm-muted);
	font-weight: 800;
	line-height: 1.45;
	background: var(--wbm-cream);
	border: 1px solid var(--wbm-border);
	border-radius: 16px;
	padding: 12px 14px;
}

/* Total + CTA */

.wbm-checkout-row {
	display: flex;
	align-items: center;
	gap: 22px;
	width: 100%;
	margin: 22px 0 0;
}

.wbm-total {
	flex: 0 0 320px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 18px;
	min-height: 74px;
	background: #101426;
	color: #FFFFFF;
	border-radius: 999px;
	padding: 18px 28px;
	margin: 0;
	font-size: 23px;
	font-weight: 900;
	box-shadow: 0 12px 30px rgba(16, 20, 38, 0.16);
}

.wbm-total strong {
	color: var(--wbm-yellow);
	white-space: nowrap;
	font-size: 28px;
	line-height: 1;
}

.wbm-book-btn {
	flex: 1 1 auto;
	min-width: 260px;
	min-height: 74px;
	border: 0;
	border-radius: 999px;
	background: var(--wbm-pink);
	color: #FFFFFF;
	padding: 18px 32px;
	font-size: 18px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	cursor: pointer;
	box-shadow: 0 10px 30px rgba(246, 74, 215, 0.35);
	transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.wbm-book-btn:hover,
.wbm-book-btn:focus-visible {
	background: var(--wbm-pink-dark);
	transform: translateY(-2px);
	box-shadow: 0 14px 36px rgba(246, 74, 215, 0.42);
}

.wbm-book-btn:disabled {
	opacity: 0.55;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

/* Messages */

.wbm-message {
	margin-top: 14px;
	font-weight: 900;
	line-height: 1.45;
}

.wbm-message.error,
.wbm-message.success {
	border-radius: 16px;
	padding: 12px 14px;
}

.wbm-message.error {
	color: #B83232;
	background: #FFF4F4;
	border: 1px solid #FFC5C5;
}

.wbm-message.success {
	color: #21824C;
	background: #F4FFF7;
	border: 1px solid #BCECCF;
}


/* Fixed app sizing */

@media (min-width: 1025px) {
	.wbm-booking-app {
		width: 80%;
		min-width: 960px;
		max-width: 1280px;
	}

	.wbm-flow-stage,
	.wbm-flow-panel,
	.wbm-panel {
		width: 100%;
		max-width: 100%;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.wbm-booking-app {
		width: 92%;
		min-width: 0;
		max-width: 920px;
	}

	.wbm-flow-stage,
	.wbm-flow-panel,
	.wbm-panel {
		width: 100%;
		max-width: 100%;
	}
}

@media (max-width: 767px) {
	.wbm-booking-app {
		width: 100%;
		min-width: 0;
		max-width: 100%;
	}

	.wbm-flow-stage,
	.wbm-flow-panel,
	.wbm-panel {
		width: 100%;
		max-width: 100%;
	}
}


/* Keep hidden booking steps from creating sideways overflow on touch devices. */
@media (max-width: 1024px) {
	.wbm-booking-app {
		overflow-x: hidden;
	}

	.wbm-flow-stage {
		height: auto;
		min-height: 0;
		overflow: hidden;
		max-width: 100%;
	}

	.wbm-flow-panel,
	.wbm-flow-panel.is-prev,
	.wbm-flow-panel.is-next {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 0;
		min-height: 0;
		overflow: hidden;
		transform: none;
		transition: none;
	}

	.wbm-flow-panel.is-active {
		position: relative;
		height: auto;
		min-height: 0;
		overflow: visible;
		transform: none;
	}
}


/* Responsive */

@media (max-width: 900px) {
	.wbm-flow-stage { height: auto; min-height: 0; }
	.wbm-flow-panel.is-active { height: auto; min-height: 0; }
	.wbm-panel { padding: 24px; border-radius: 26px; }
	.wbm-experience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.wbm-calendar { gap: 7px; }
	.wbm-date { min-height: 68px; border-radius: 15px; padding: 8px; }
	.wbm-date strong { font-size: 16px; }
	.wbm-checkout-row { gap: 14px; }
	.wbm-total { flex-basis: 260px; min-height: 66px; padding: 16px 22px; font-size: 18px; }
	.wbm-total strong { font-size: 24px; }
	.wbm-book-btn { min-height: 66px; min-width: 220px; font-size: 15px; padding: 16px 22px; }
}

@media (max-width: 520px) {
	.wbm-flow-stage { height: auto; min-height: 0; }
	.wbm-flow-panel.is-active { height: auto; min-height: 0; }
	.wbm-steps { gap: 6px; margin-bottom: 14px; }
	.wbm-steps span { font-size: 11px; padding: 8px 9px; }
	.wbm-panel { padding: 18px; border-radius: 24px; margin: 14px 0; }
	.wbm-panel h3 { font-size: 24px; }
	.wbm-muted { font-size: 14px; margin-bottom: 16px; }
	.wbm-experience-grid { grid-template-columns: 1fr; gap: 12px; }
	.wbm-experience-card { min-height: 142px; border-radius: 20px; padding: 16px; }
	.wbm-calendar-head { gap: 8px; }
	.wbm-calendar-head button { width: 40px; height: 40px; font-size: 24px; }
	.wbm-month-title { font-size: 21px; }
	.wbm-calendar-legend { gap: 9px; font-size: 11px; margin: 12px 0 14px; }
	.wbm-calendar { gap: 5px; }
	.wbm-day-label { font-size: 10px; letter-spacing: 0; }
	.wbm-date { min-height: 54px; border-radius: 12px; padding: 7px 5px; text-align: center; }
	.wbm-date strong { font-size: 15px; }
	.wbm-date small { display: none; }
	.wbm-date.available::after,
	.wbm-date.few::after,
	.wbm-date.full::after,
	.wbm-date.closed::after,
	.wbm-date:disabled::after { width: 7px; height: 7px; top: 6px; right: 6px; }
	.wbm-date.is-selected::before { width: 18px; height: 18px; font-size: 10px; right: 4px; bottom: 4px; }
	.wbm-times { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
	.wbm-time { width: 100%; padding: 13px 10px; text-align: center; }
	.wbm-time {
		flex-direction: column;
		gap: 6px;
		min-width: 0;
		border-radius: 18px;
	}
	.wbm-time small {
		display: inline-flex;
		margin: 0;
		min-width: 0;
	}
	.wbm-price-option { display: grid; grid-template-columns: 1fr; gap: 7px; padding: 15px; border-radius: 18px; }
	.wbm-price-option .wbm-price { white-space: normal; }
	.wbm-siblings,
	.wbm-extra-adults { align-items: flex-start; flex-direction: column; padding: 14px; border-radius: 18px; }
	.wbm-siblings div,
	.wbm-extra-adults div { width: 100%; justify-content: space-between; }
	.wbm-checkout-row { flex-direction: column; align-items: stretch; gap: 12px; }
	.wbm-total { flex: none; width: 100%; min-height: 64px; padding: 15px 20px; border-radius: 999px; font-size: 17px; }
	.wbm-total strong { font-size: 23px; }
	.wbm-book-btn { width: 100%; min-width: 0; min-height: 64px; padding: 16px 20px; font-size: 13px; }
}

@media (max-width: 380px) {
	.wbm-flow-stage { height: auto; min-height: 0; }
	.wbm-flow-panel.is-active { height: auto; min-height: 0; }
	.wbm-panel { padding: 14px; }
	.wbm-calendar { gap: 4px; }
	.wbm-date { min-height: 48px; padding: 6px 3px; border-radius: 10px; }
	.wbm-date strong { font-size: 14px; }
	.wbm-times { grid-template-columns: 1fr; }
}

/* Prevent auto-opened deep links from visibly animating/focusing while the calendar loads. */
.wbm-booking-app.wbm-no-motion,
.wbm-booking-app.wbm-no-motion * {
	transition: none !important;
	animation: none !important;
	scroll-behavior: auto !important;
}

/* Fixed course date sets */
.wbm-course-run {
	appearance: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 100%;
	margin: 0 0 12px;
	padding: 20px;
	border: 2px solid var(--wbm-border);
	border-radius: 22px;
	background: #ffffff;
	color: var(--wbm-dark);
	text-align: left;
	cursor: pointer;
	box-shadow: 0 10px 28px rgba(30, 38, 56, 0.06);
	transition: 0.22s ease;
}

.wbm-course-run strong {
	font-size: 18px;
	font-weight: 900;
	line-height: 1.2;
	color: var(--wbm-dark);
}

.wbm-course-run small {
	font-size: 14px;
	font-weight: 800;
	line-height: 1.55;
	color: var(--wbm-muted);
}

.wbm-course-run em {
	font-style: normal;
	display: inline-flex;
	align-self: flex-start;
	border-radius: 999px;
	padding: 7px 11px;
	background: var(--wbm-pink-soft);
	color: var(--wbm-pink-dark);
	font-size: 12px;
	font-weight: 900;
}

.wbm-course-run:hover:not(:disabled),
.wbm-course-run:focus-visible:not(:disabled),
.wbm-course-run.is-selected {
	border-color: var(--wbm-pink);
	transform: translateY(-2px);
	box-shadow: var(--wbm-shadow-hover);
}

.wbm-course-run:disabled {
	cursor: not-allowed;
	opacity: 0.58;
	background: var(--wbm-red-soft);
}

.wbm-course-date-summary {
	margin: 0 0 18px;
	padding: 18px 20px;
	border-radius: 20px;
	background: linear-gradient(135deg, #fff9f2, #fcebff);
	border: 1px solid var(--wbm-border);
}

.wbm-course-date-summary strong {
	display: block;
	margin-bottom: 10px;
	color: var(--wbm-dark);
	font-size: 17px;
	font-weight: 900;
}

.wbm-course-date-summary ul {
	margin: 0;
	padding-left: 20px;
	color: var(--wbm-text);
	font-weight: 800;
	line-height: 1.7;
}


/* =========================================================
   v3.0.3 - No Scroll Lock / Free Page Scrolling
   The booking flow must never trap, lock or hijack vertical scrolling.
   ========================================================= */
.wbm-booking-app,
.wbm-booking-app * {
	overscroll-behavior: auto !important;
}

.wbm-flow-stage {
	position: relative !important;
	height: auto !important;
	min-height: 0 !important;
	max-height: none !important;
	overflow: visible !important;
}

.wbm-flow-panel,
.wbm-flow-panel.is-prev,
.wbm-flow-panel.is-next {
	display: none !important;
	position: relative !important;
	top: auto !important;
	left: auto !important;
	right: auto !important;
	height: auto !important;
	min-height: 0 !important;
	max-height: none !important;
	overflow: visible !important;
	overflow-y: visible !important;
	-webkit-overflow-scrolling: auto !important;
	transform: none !important;
	transition: none !important;
	will-change: auto !important;
	opacity: 1 !important;
	visibility: visible !important;
	pointer-events: auto !important;
}

.wbm-flow-panel.is-active {
	display: block !important;
	position: relative !important;
	height: auto !important;
	min-height: 0 !important;
	max-height: none !important;
	overflow: visible !important;
	overflow-y: visible !important;
	transform: none !important;
	transition: none !important;
	opacity: 1 !important;
	visibility: visible !important;
	pointer-events: auto !important;
	z-index: 2 !important;
}

/* v4.0.7 Front-end experience organisation */
.wbm-empty-experiences {
	padding: 24px;
	border: 2px dashed var(--wbm-border);
	border-radius: 22px;
	background: #fff;
	color: var(--wbm-muted);
	display: grid;
	gap: 6px;
}

.wbm-empty-experiences strong {
	color: var(--wbm-dark);
	font-size: 18px;
}

.wbm-experience-group {
	margin-top: 22px;
	padding: 18px;
	border: 2px solid rgba(246, 205, 236, 0.85);
	border-radius: 28px;
	background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,250,254,0.92));
}

.wbm-experience-group + .wbm-experience-group {
	margin-top: 28px;
}

.wbm-experience-group-head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 16px;
}

.wbm-group-icon {
	width: 48px;
	height: 48px;
	display: inline-grid;
	place-items: center;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 8px 20px rgba(26, 33, 53, 0.08);
	font-size: 24px;
	flex: 0 0 auto;
}

.wbm-experience-group-head h4 {
	margin: 0;
	font-size: 24px;
	line-height: 1.1;
	color: var(--wbm-dark);
}

.wbm-experience-group-head p {
	margin: 4px 0 0;
	font-weight: 800;
	color: var(--wbm-muted);
	line-height: 1.35;
}

.wbm-experience-group .wbm-experience-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wbm-experience-badge {
	position: relative;
	z-index: 2;
	align-self: flex-start;
	margin-bottom: auto;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(255,255,255,0.88);
	border: 1px solid rgba(246, 74, 215, 0.18);
	color: var(--wbm-muted);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.02em;
}

.wbm-experience-card-course .wbm-experience-badge {
	border-color: rgba(36, 136, 178, 0.22);
}

.wbm-experience-card-course::before {
	background:
		radial-gradient(circle at 20% 15%, rgba(36, 136, 178, 0.12), transparent 36%),
		radial-gradient(circle at 80% 20%, rgba(255, 216, 77, 0.20), transparent 38%),
		linear-gradient(180deg, rgba(255,255,255,0.45), rgba(255,255,255,0.96));
}

@media (max-width: 1024px) {
	.wbm-experience-group .wbm-experience-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.wbm-experience-group {
		margin-top: 16px;
		padding: 14px;
		border-radius: 22px;
	}

	.wbm-experience-group-head {
		align-items: flex-start;
		gap: 10px;
		margin-bottom: 12px;
	}

	.wbm-group-icon {
		width: 40px;
		height: 40px;
		font-size: 20px;
		border-radius: 14px;
	}

	.wbm-experience-group-head h4 {
		font-size: 20px;
	}

	.wbm-experience-group-head p {
		font-size: 13px;
	}

	.wbm-experience-group .wbm-experience-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.wbm-experience-card {
		min-height: 132px;
	}
}

/* 4.0.9 - Required booking details, terms and consent */
.wbm-booking-details {
	margin: 18px 0;
	padding: 18px;
	border: 1px solid rgba(246, 74, 215, 0.16);
	border-radius: 20px;
	background: rgba(255,255,255,0.72);
	box-shadow: 0 12px 32px rgba(88, 38, 80, 0.06);
}

.wbm-booking-details h4 {
	margin: 0 0 6px;
	font-size: 20px;
}

.wbm-field-label,
.wbm-checkbox-row,
.wbm-radio-row {
	display: block;
	font-weight: 800;
	color: var(--wbm-text, #3a2d3d);
}

.wbm-field-label span,
.wbm-photo-consent > strong span {
	color: #d63638;
}

.wbm-booking-mobile {
	display: block;
	width: 100%;
	box-sizing: border-box;
	margin-top: 8px;
	padding: 13px 14px;
	border: 1px solid rgba(88, 38, 80, 0.16);
	border-radius: 14px;
	background: #fff;
	font: inherit;
}

.wbm-checkbox-row,
.wbm-radio-row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-top: 14px;
	line-height: 1.45;
}

.wbm-checkbox-row input,
.wbm-radio-row input {
	margin-top: 3px;
	flex: 0 0 auto;
}

.wbm-terms-box {
	margin-top: 12px;
	padding: 12px 14px;
	border-radius: 14px;
	background: rgba(255,255,255,0.9);
	border: 1px solid rgba(88, 38, 80, 0.12);
}

.wbm-terms-box summary {
	cursor: pointer;
	font-weight: 900;
}

.wbm-terms-box div {
	margin-top: 10px;
	max-height: 260px;
	overflow: auto;
	padding-right: 6px;
}

.wbm-terms-box p {
	margin: 0 0 10px;
	font-size: 13px;
	line-height: 1.5;
}

.wbm-photo-consent {
	margin-top: 16px;
}

.wbm-photo-consent > strong {
	display: block;
	margin-bottom: 4px;
}

@media (max-width: 640px) {
	.wbm-booking-details {
		padding: 14px;
		border-radius: 18px;
	}
}

/* Age-aware booking calendar and optional add-ons */
.wbm-filter-collapse {
	border: 1px solid var(--wbm-border-soft);
	background: #fff;
	border-radius: 18px;
	margin: 0 0 14px;
	box-shadow: 0 10px 24px rgba(78, 47, 95, 0.08);
	overflow: hidden;
}

.wbm-filter-collapse summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 16px;
	color: var(--wbm-purple);
}

.wbm-filter-collapse summary::-webkit-details-marker {
	display: none;
}

.wbm-filter-collapse summary span {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.wbm-filter-collapse summary strong {
	font-size: 15px;
	font-weight: 950;
}

.wbm-filter-collapse summary small {
	font-size: 12px;
	color: var(--wbm-muted);
	font-weight: 800;
}

.wbm-filter-collapse summary em {
	font-style: normal;
	font-size: 12px;
	font-weight: 950;
	border-radius: 999px;
	padding: 6px 10px;
	background: var(--wbm-purple-soft);
	color: var(--wbm-purple);
	white-space: nowrap;
}

.wbm-filter-collapse summary::after {
	content: "⌄";
	font-weight: 950;
	color: var(--wbm-purple);
	transition: transform 0.18s ease;
}

.wbm-filter-collapse[open] summary::after {
	transform: rotate(180deg);
}

.wbm-age-filter {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin: 0;
	padding: 0 16px 16px;
}

.wbm-age-filter-chip {
	appearance: none;
	border: 1px solid var(--wbm-border);
	background: #fff;
	color: var(--wbm-purple);
	border-radius: 999px;
	padding: 9px 12px;
	font-weight: 900;
	font-size: 13px;
	cursor: pointer;
}

.wbm-age-filter-chip.is-active,
.wbm-age-filter-chip:hover,
.wbm-age-filter-chip:focus-visible {
	background: var(--wbm-pink);
	border-color: var(--wbm-pink);
	color: #fff;
}

.wbm-time {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.wbm-time > span {
	display: flex;
	flex-direction: column;
	gap: 3px;
	text-align: left;
}

.wbm-time em {
	font-style: normal;
	font-size: 12px;
	font-weight: 900;
	color: var(--wbm-purple);
	background: var(--wbm-purple-soft);
	border-radius: 999px;
	padding: 4px 8px;
	width: fit-content;
}

.wbm-custom-addons {
	margin-top: 16px;
	border-top: 1px solid var(--wbm-border-soft);
	padding-top: 16px;
}

.wbm-custom-addons h4 {
	margin: 0 0 10px;
	font-size: 17px;
	font-weight: 900;
}

.wbm-custom-addon {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	border: 1px solid var(--wbm-border);
	border-radius: 18px;
	padding: 14px;
	background: #fff;
	margin-bottom: 10px;
	cursor: pointer;
}

.wbm-custom-addon input {
	width: 20px;
	height: 20px;
}

.wbm-custom-addon span {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.wbm-custom-addon strong {
	font-weight: 900;
}

.wbm-custom-addon small {
	color: var(--wbm-muted);
	font-weight: 700;
}

.wbm-custom-addon em {
	font-style: normal;
	font-weight: 900;
	color: var(--wbm-pink);
}

@media (max-width: 560px) {
	.wbm-age-filter {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.wbm-age-filter-chip,
	.wbm-custom-addon {
		width: 100%;
	}
	.wbm-custom-addon {
		grid-template-columns: auto minmax(0, 1fr);
	}
	.wbm-custom-addon em {
		grid-column: 2;
	}
}

.wbm-date-times-inline {
	margin-top: 18px;
}

.wbm-inline-times-title {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 900;
	color: var(--wbm-dark);
}


/* 4.5.2 - inline available time cards under the calendar */
.wbm-date-times-inline .wbm-times,
.wbm-times.wbm-times-inline {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 16px;
	align-items: stretch;
	width: 100%;
}

.wbm-date-times-inline .wbm-time,
.wbm-times.wbm-times-inline .wbm-time {
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 18px !important;
	width: 100%;
	min-width: 0;
	min-height: 112px;
	padding: 26px 28px;
	border-radius: 34px;
	text-align: left;
}

.wbm-date-times-inline .wbm-time > span,
.wbm-times.wbm-times-inline .wbm-time > span {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	min-width: 0;
}

.wbm-date-times-inline .wbm-time strong,
.wbm-times.wbm-times-inline .wbm-time strong {
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1;
}

.wbm-date-times-inline .wbm-time em,
.wbm-times.wbm-times-inline .wbm-time em {
	font-size: clamp(14px, 1.7vw, 20px);
	line-height: 1.05;
	padding: 8px 14px;
}

.wbm-date-times-inline .wbm-time small,
.wbm-times.wbm-times-inline .wbm-time small {
	flex: 0 0 auto;
	min-width: 70px;
	padding: 10px 14px;
	font-size: clamp(13px, 1.5vw, 18px);
}

@media (min-width: 980px) {
	.wbm-date-times-inline .wbm-times,
	.wbm-times.wbm-times-inline {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 700px) {
	.wbm-date-times-inline .wbm-times,
	.wbm-times.wbm-times-inline {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.wbm-date-times-inline .wbm-time,
	.wbm-times.wbm-times-inline .wbm-time {
		min-height: 92px;
		padding: 20px 22px;
		border-radius: 28px;
	}
}


/* v4.6.4: keep age/session filter chips clickable above surrounding slider/flow layers. */
.wbm-age-filter {
	position: relative !important;
	z-index: 50 !important;
	pointer-events: auto !important;
}

.wbm-age-filter-chip {
	position: relative !important;
	z-index: 51 !important;
	pointer-events: auto !important;
	touch-action: manipulation;
}

.wbm-age-filter::before,
.wbm-age-filter::after,
.wbm-age-filter-chip::before,
.wbm-age-filter-chip::after {
	pointer-events: none !important;
}

/* v4.7.0 - Also Show In calendar checkboxes */
.wbm-v4-check-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(190px,1fr));
    gap:10px;
    margin-top:12px;
}
.wbm-v4-check-card{
    display:flex;
    align-items:center;
    gap:10px;
    background:#fff;
    border:1px solid rgba(15,23,42,.12);
    border-radius:14px;
    padding:12px 14px;
    font-weight:800;
    cursor:pointer;
}
.wbm-v4-check-card input{margin:0;}
