/*
 * WB Booking — frontend widget styles.
 * v1.0.4: sidebar stepper + inline calendar + country-code phone input.
 * All selectors prefixed under .wb-booking-app to avoid theme conflicts.
 */

.wb-booking-app {
	--sl-primary: #ee357a;
	--sl-primary-dark: #c52761;
	--sl-primary-soft: #fce7ef;
	--sl-primary-softer: #fdf2f7;
	--sl-bg: #fff;
	--sl-fg: #1f2937;
	--sl-muted: #6b7280;
	--sl-border: #e5e7eb;
	--sl-border-soft: #f1f1f4;
	--sl-success: #1f7a3a;
	--sl-error: #c0392b;
	--sl-warning: #d97706;
	--sl-radius: 12px;
	--sl-radius-sm: 8px;
	--sl-gap: 16px;
	/* v1.9.80 — divider/separator line colour (Formatting tab). Defaults to the
	   border colour so unconfigured installs look unchanged. */
	--wb-sep: var(--sl-border);
	--sl-shadow-soft: 0 1px 2px rgba(16, 24, 40, .04), 0 4px 16px rgba(16, 24, 40, .04);

	/* v1.9.8 — full width: fill the container the shortcode is placed in
	   (was capped at 1080px + centered). */
	max-width: 100%;
	width: 100%;
	margin: 32px 0;
	padding: 0;
	background: transparent;
	color: var(--sl-fg);
	font: 15px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	box-sizing: border-box;
}
.wb-booking-app *,
.wb-booking-app *::before,
.wb-booking-app *::after { box-sizing: border-box; }

.wb-booking-app h2 {
	/* v1.3.9 — step heading nudged back to 1.35rem so step titles
	   ("Service", "Your details", "Pick a date and time", "Summary") read
	   with proper weight. (1.3.6 dropped to 1.15, intermediate 1.25 was
	   still too soft per the client.) !important because Elementor's
	   .elementor-widget-container h2 typography otherwise wins. */
	font-size: 1.35rem !important;
	margin: 0 !important; /* v1.3.3 — margin-bottom 0; was 0 0 18px */
	font-weight: 700;
	color: var(--sl-fg);
	outline: none !important;
	box-shadow: none !important;
	border: 0 !important;
	background: transparent !important;
	padding: 0 !important;
}
.wb-booking-app h2:focus,
.wb-booking-app h2:focus-visible {
	outline: none !important;
	box-shadow: none !important;
}
.wb-booking-app h3 {
	font-size: 1rem;
	margin: 0 0 10px;
	font-weight: 600;
	background: transparent !important;
	border: 0 !important;
	padding: 0 !important;
}
.wb-booking-app h3 {
	font-size: 1rem;
	margin: 0 0 10px;
	font-weight: 600;
}
.wb-booking-app p { margin: 0 0 8px !important; }

/* v1.3.3 — typographic rhythm: headings sit tighter (1.3em), body/content
   reads looser (1.6em). !important so theme/Elementor line-heights can't leak in. */
.wb-booking-app h1,
.wb-booking-app h2,
.wb-booking-app h3,
.wb-booking-app h4,
.wb-booking-app h5,
.wb-booking-app h6 {
	line-height: 1.3em !important;
}
.wb-booking-app p,
.wb-booking-app li,
.wb-booking-app dd,
.wb-booking-app dt,
.wb-booking-app label,
.wb-booking-app span,
.wb-booking-app small,
.wb-booking-app a {
	line-height: 1.6em !important;
}
.wb-muted { color: var(--sl-muted); }
.wb-booking-empty {
	max-width: 720px; margin: 32px auto;
	background: #fff; border: 1px solid var(--sl-border); border-radius: var(--sl-radius);
	padding: 40px 16px; text-align: center; color: var(--sl-muted);
}

/* Error bar */
.wb-booking-error {
	background: #fdecea;
	color: var(--sl-error);
	border: 1px solid #f5c2c0;
	border-radius: var(--sl-radius);
	padding: 10px 14px;
	margin: 0 0 16px;
	font-size: 0.9rem;
}

/* Shell: sidebar + content.
 * align-items: start so the content panel sizes to its actual content
 * (instead of stretching to match the sidebar's height — which produced
 * a big empty area on short steps like Persons).
 */
.wb-booking-shell {
	display: grid !important;
	/* v1.1.43: sidebar shrunk from 260px to 200px so the Date & Time step's
	   slot column gets enough room to render two-line pills on one line. */
	grid-template-columns: 200px 1fr !important;
	gap: 24px !important;
	align-items: start !important;
}

/* ---------- Sidebar ---------- */
.wb-booking-sidebar {
	background: #fff;
	border: 1px solid var(--sl-border);
	border-radius: var(--sl-radius);
	padding: 14px;
	box-shadow: var(--sl-shadow-soft);
	position: sticky;
	top: 24px;
}
.wb-sidebar-steps {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.wb-sidebar-step {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 12px;
	border-radius: var(--sl-radius-sm);
	color: var(--sl-muted);
	font-weight: 500;
	transition: background .15s ease, color .15s ease;
	cursor: default;
}
.wb-sidebar-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	flex: 0 0 32px;
	border-radius: 8px;
	background: var(--sl-border-soft);
	color: var(--sl-muted);
}
.wb-sidebar-icon svg { width: 18px; height: 18px; }
.wb-sidebar-label { font-size: 0.95rem; }

/* Done state: pink-soft background, pink text on icon */
.wb-sidebar-step.is-done .wb-sidebar-icon {
	background: var(--sl-primary-soft);
	color: var(--sl-primary);
}
.wb-sidebar-step.is-done { color: var(--sl-fg); }

/* Active step: solid pink icon, pink text */
.wb-sidebar-step.is-active {
	background: transparent;
	color: var(--sl-primary);
}
.wb-sidebar-step.is-active .wb-sidebar-icon {
	background: var(--sl-primary);
	color: #fff;
	box-shadow: 0 4px 12px rgba(238, 53, 122, .25);
}
.wb-sidebar-step.is-active .wb-sidebar-label {
	font-weight: 600;
}

/* ---------- Content panel ---------- */
.wb-booking-content {
	background: #fff;
	border: 1px solid var(--sl-border);
	border-radius: var(--sl-radius);
	padding: var(--wb-content-pad, 28px);
	box-shadow: var(--sl-shadow-soft);
	display: flex;
	flex-direction: column;
	/* v1.9.80 — the visible widget box width is controlled here. Default 100%
	   fills the theme column (unchanged); the Formatting tab sets
	   --wb-content-max (px) + alignment margins to make the widget the width
	   the admin picks, and the root may break out to the viewport (fullbleed). */
	/* v1.9.84 — fill the container width explicitly and forbid content from
	   widening the box (min-width:0). Together with the block shell above this
	   makes the box width depend only on its container + --wb-content-max, so it
	   is identical on every step and the max-width cap can never be overridden by
	   a wide step's content. */
	width: 100%;
	min-width: 0;
	max-width: var(--wb-content-max, 100%);
	margin-left: var(--wb-content-ml, auto);
	margin-right: var(--wb-content-mr, auto);
}
.wb-booking-step {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* ---------- Cards (location + service) ----------
 * Defensive !important on layout properties — Elementor and many WP themes
 * inject very aggressive button rules that override plugin CSS. We're not
 * touching theme-cosmetic properties, just the structural ones the plugin
 * needs to render correctly.
 */
.wb-cards {
	display: grid !important;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
	gap: var(--sl-gap) !important;
	align-items: stretch !important;
	align-content: start !important;
	width: 100%;
}
.wb-services-list {
	display: grid !important;
	/* v1.9.26 — 3-column service layout on desktop. */
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 22px !important;
	align-items: stretch !important;
	align-content: start !important;
	width: 100%;
}
@media (max-width: 1100px) {
	.wb-services-list { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
.wb-booking-app .wb-card {
	all: unset;
	display: flex !important;
	flex-direction: column !important;
	align-items: flex-start !important;
	cursor: pointer !important;
	padding: 18px !important;
	border: 1.5px solid var(--sl-border) !important;
	border-radius: var(--sl-radius) !important;
	background: #fff !important;
	color: var(--sl-fg) !important;
	font: inherit !important;
	text-align: left !important;
	width: auto !important;
	height: auto !important;
	min-height: 0 !important;
	max-height: none !important;
	box-shadow: none !important;
	letter-spacing: normal !important;
	text-transform: none !important;
	line-height: 1.5 !important;
	/* v1.9.135 — every booking card carries role="button"; pin the transform and
	 * drop it from the transition so a theme's button scale() can't zoom the card.
	 * v1.9.136 — themes also zoom via the standalone `scale:` property and the
	 * legacy `zoom:` property, neither of which `transform:none` overrides. Pin
	 * all three so no theme rule can resize the card on hover/click/selection. */
	transition: border-color .15s ease, box-shadow .15s ease;
	transform: none !important;
	scale: none !important;
	zoom: normal !important;
}
.wb-booking-app .wb-card:hover,
.wb-booking-app .wb-card:focus,
.wb-booking-app .wb-card:focus-within,
.wb-booking-app .wb-card:focus-visible,
.wb-booking-app .wb-card:active,
.wb-booking-app .wb-card.is-selected {
	transform: none !important;
	scale: none !important;
	zoom: normal !important;
}
.wb-booking-app .wb-card > strong,
.wb-booking-app .wb-card > small,
.wb-booking-app .wb-card > .wb-card-meta {
	display: block !important;
	width: 100% !important;
	text-align: left !important;
}
.wb-booking-app .wb-card > strong { font-weight: 700 !important; font-size: 1rem !important; color: var(--sl-fg) !important; margin-bottom: 6px !important; }
.wb-booking-app .wb-card > small  { color: var(--sl-muted) !important; font-size: 0.9rem !important; line-height: 1.45 !important; margin-bottom: 8px !important; font-weight: 400 !important; }
/* Card states — ALWAYS keep a white (or very pale pink) background so the
 * text stays readable. The only thing that changes on hover/select is the
 * border color and a soft outer glow. No background fills under any state.
 */
.wb-booking-app .wb-card:hover,
.wb-booking-app .wb-card:focus,
.wb-booking-app .wb-card:focus-visible,
.wb-booking-app .wb-card:active {
	background: #fff !important;
	color: var(--sl-fg) !important;
	border-color: var(--sl-primary) !important;
	outline: none !important;
	box-shadow: 0 4px 12px rgba(238, 53, 122, .08) !important;
}
.wb-booking-app .wb-card.is-selected,
.wb-booking-app .wb-card.is-selected:hover,
.wb-booking-app .wb-card.is-selected:focus,
.wb-booking-app .wb-card.is-selected:focus-visible,
.wb-booking-app .wb-card.is-selected:active {
	background: #fff !important;
	color: var(--sl-fg) !important;
	border: 2px solid var(--sl-primary) !important;
	outline: none !important;
	box-shadow: 0 0 0 3px rgba(238, 53, 122, .15) !important;
	padding: 17px !important; /* compensate for the +0.5px border */
}
/* Explicit text colors for every text element inside a card, so theme
 * descendant selectors (like `button strong { color: pink }`) can't change them. */
.wb-booking-app .wb-card > strong,
.wb-booking-app .wb-card-body strong { color: var(--sl-fg) !important; font-weight: 700 !important; }
.wb-booking-app .wb-card > small,
.wb-booking-app .wb-card-body small,
.wb-booking-app .wb-card-meta { color: var(--sl-muted) !important; font-weight: 400 !important; }
/* Service description (rendered HTML from wp_kses_post). */
.wb-booking-app .wb-card-desc { color: var(--sl-muted) !important; font-size: 0.9rem !important; line-height: 1.5 !important; margin-bottom: 10px !important; width: 100% !important; }
.wb-booking-app .wb-card-desc p { margin: 0 0 0.6em !important; color: inherit !important; }
.wb-booking-app .wb-card-desc p:last-child { margin-bottom: 0 !important; }
.wb-booking-app .wb-card-desc strong { color: var(--sl-fg) !important; font-weight: 600 !important; }
.wb-booking-app .wb-card-desc em { font-style: italic !important; }
.wb-booking-app .wb-card-desc ul,
.wb-booking-app .wb-card-desc ol { margin: 0.4em 0 !important; padding-left: 1.4em !important; }
.wb-booking-app .wb-card-desc li { margin: 0.2em 0 !important; color: inherit !important; }
.wb-booking-app .wb-card-desc a { color: var(--sl-primary) !important; text-decoration: underline !important; }
/* Card-thumb stays in soft state by default, pink/white only when selected. */
.wb-booking-app .wb-card.is-selected .wb-card-thumb {
	background: var(--sl-primary) !important;
	color: #fff !important;
}
.wb-booking-app .wb-card,
.wb-booking-app .wb-card * {
	overflow-wrap: anywhere;
	word-break: break-word;
}
.wb-booking-app .wb-card.is-selected {
	border-color: var(--sl-primary) !important;
	background: var(--sl-primary-softer) !important;
}
.wb-booking-app .wb-card.is-selected .wb-card-thumb {
	background: var(--sl-primary) !important;
	color: #fff !important;
}
.wb-booking-app .wb-card--icon {
	flex-direction: row !important;
	align-items: center !important;
	gap: 14px !important;
}
.wb-booking-app .wb-card-thumb {
	flex: 0 0 48px !important;
	width: 48px !important;
	height: 48px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	background: var(--sl-border-soft) !important;
	color: var(--sl-muted) !important;
	border-radius: 10px !important;
	margin: 0 !important;
	transition: background .15s ease, color .15s ease;
}
.wb-booking-app .wb-card-thumb svg { width: 22px !important; height: 22px !important; }
.wb-booking-app .wb-card-body {
	display: flex !important;
	flex-direction: column !important;
	flex: 1 1 auto !important;
	min-width: 0 !important;
	text-align: left !important;
}
.wb-booking-app .wb-card-body strong { display: block !important; font-size: 1rem !important; font-weight: 700 !important; margin-bottom: 2px !important; color: var(--sl-fg) !important; line-height: 1.3 !important; }
.wb-booking-app .wb-card-body small  { display: block !important; color: var(--sl-muted) !important; font-size: 0.875rem !important; line-height: 1.4 !important; font-weight: 400 !important; }
.wb-card-meta { color: var(--sl-muted); margin-top: 6px; font-size: 0.875rem; }

/* ---------- Persons ---------- */
.wb-persons-controls {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 16px 0 8px;
	max-width: 320px;
}
.wb-persons-dec,
.wb-persons-inc {
	all: unset;
	cursor: pointer;
	/* v1.3.4 — flex-center the −/+ glyph. `all: unset` dropped display to
	   inline (so width/height were ignored and the glyph baseline-aligned).
	   inline-flex + center fixes both sizing and alignment. */
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	box-sizing: border-box !important;
	width: 44px !important;
	height: 44px !important;
	border: 1.5px solid var(--sl-primary);
	border-radius: var(--sl-radius-sm);
	background: #fff;
	color: var(--sl-primary);
	text-align: center;
	font-size: 22px !important;
	line-height: 1 !important;
	transition: background .15s ease, color .15s ease;
}
.wb-persons-dec:hover,
.wb-persons-inc:hover { background: var(--sl-primary); color: #fff; }
.wb-persons-input {
	flex: 1;
	height: 44px;
	text-align: center;
	font-size: 1rem;
	border: 1.5px solid var(--sl-border);
	border-radius: var(--sl-radius-sm);
}
.wb-persons-input:focus { outline: none; border-color: var(--sl-primary); }
.wb-total-preview { font-weight: 600; font-size: 1.05rem; }
.wb-package-info {
	margin: 8px 0 14px;
	padding: 10px 14px;
	background: var(--sl-primary-softer);
	border: 1px solid var(--sl-primary-soft);
	border-radius: var(--sl-radius-sm);
	font-size: 0.95rem;
	color: var(--sl-fg);
}
.wb-package-info strong { color: var(--sl-primary-dark); font-weight: 700; }
.wb-attendees-preview { margin-top: 6px; font-size: 0.95rem; }
.wb-attendees-preview strong { color: var(--sl-primary); }

/* ---------- Date & time (calendar + slots) ----------
 * Hard-grid layout: each child explicitly assigned to its grid column.
 * `overflow: hidden` on both columns prevents any content from spilling
 * sideways into the neighbouring column under any circumstance.
 */
.wb-booking-app .wb-datetime-grid {
	display: grid !important;
	/* v1.1.43: rebalanced from 7fr/3fr (calendar 70 / slots 30) to 5fr/4fr.
	   The new 2-column slot pills with "10:00 am – 10:20 am" + "30 slots
	   left" subtext need ~160px per pill to not wrap onto multiple lines. */
	grid-template-columns: 5fr 4fr !important;
	column-gap: 24px !important;
	row-gap: 0 !important;
	/* v1.3.6 update: kept align-items: start; height matching happens in JS
	   (syncSlotsColHeight in booking-flow.js). Tried `stretch` first, but a
	   CSS Grid row sizes to the TALLER child, which made the calendar grow
	   instead of the slots column shrinking. */
	align-items: start !important;
	justify-items: stretch !important;
	width: 100% !important;
	max-width: 100% !important;
}
.wb-booking-app .wb-calendar-wrap {
	grid-column: 1 !important;
	grid-row: 1 !important;
	width: 100% !important;
	min-width: 0 !important;
	overflow: hidden !important;
	/* v1.3.8 — 10px breathing room moved onto .wb-calendar (the inner
	   card) so the space is visibly *under the calendar box*. Margin on the
	   wrap put the space below the entire block (below the "Selected:" line)
	   which the customer never noticed. */
}
.wb-booking-app .wb-slots-col {
	grid-column: 2 !important;
	grid-row: 1 !important;
	/* v1.3.6 — flex column so the inner .wb-slots-list can grow to fill
	   the remaining space below the "Time Slot" heading. */
	display: flex !important;
	flex-direction: column !important;
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	min-height: 0 !important;
	overflow: hidden !important;
}
.wb-booking-app .wb-calendar {
	border: 1px solid var(--sl-border);
	border-radius: var(--sl-radius);
	padding: 16px;
	background: #fff;
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box !important;
	/* v1.3.8 — 10px below the calendar card. Sits *inside* .wb-calendar-wrap
	   so it's included in offsetHeight; the JS height match on the slots column
	   picks it up automatically and both columns still align at the bottom. */
	margin-bottom: 10px !important;
}

@media (max-width: 760px) {
	.wb-booking-app .wb-datetime-grid {
		grid-template-columns: 1fr !important;
	}
	.wb-booking-app .wb-calendar-wrap,
	.wb-booking-app .wb-slots-col {
		grid-column: 1 !important;
	}
	.wb-booking-app .wb-slots-col {
		grid-row: 2 !important;
	}
}
.wb-booking-app .wb-cal-header {
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 12px !important;
	margin-bottom: 12px !important;
	min-height: 36px !important;
}
.wb-booking-app .wb-cal-title {
	flex: 1 1 auto !important;
	font-weight: 700 !important;
	color: var(--sl-fg) !important;
	font-size: 1rem !important;
	text-align: center !important;
	line-height: 36px !important;
	margin: 0 !important;
}
.wb-booking-app .wb-cal-nav {
	all: unset;
	cursor: pointer !important;
	flex: 0 0 36px !important;
	width: 36px !important;
	height: 36px !important;
	border-radius: 8px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	color: var(--sl-primary) !important;
	background: var(--sl-primary-softer) !important;
	font-size: 1.1rem !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	padding: 0 !important;
	margin: 0 !important;
	box-sizing: border-box !important;
	border: 0 !important;
}
.wb-booking-app .wb-cal-nav:hover { background: var(--sl-primary-soft) !important; }
.wb-booking-app .wb-cal-nav[disabled] {
	opacity: 0.35 !important;
	cursor: not-allowed !important;
	background: var(--sl-border-soft) !important;
	color: var(--sl-muted) !important;
}

.wb-cal-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 2px;
	margin-top: 6px;
}
.wb-cal-dow {
	text-align: center;
	font-size: 0.7rem;
	color: var(--sl-muted);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 6px 0 4px;
}
/* Day cells render as <div role="button"> (not <button>) to dodge theme
   button styles. Every property below is force-set with !important so
   themes that style [role=button] or generic .button can't bleed in. */
.wb-booking-app .wb-cal-day {
	all: unset !important;
	box-sizing: border-box !important;
	cursor: pointer !important;
	height: 38px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	border: 1px solid transparent !important;
	border-radius: 8px !important;
	font-size: 0.9rem !important;
	font-weight: 500 !important;
	color: var(--sl-fg) !important;
	background: transparent !important;
	transition: background .12s ease, color .12s ease, border-color .12s ease !important;
}
/* Hover: soft-pink background + DARK text so the date number is always
   readable. (Pink on pink was the bug.) */
.wb-booking-app .wb-cal-day:hover:not(.is-disabled):not(.is-empty),
.wb-booking-app .wb-cal-day:focus-visible:not(.is-disabled):not(.is-empty) {
	background: var(--sl-primary-softer) !important;
	color: var(--sl-fg) !important;
	border-color: var(--sl-primary) !important;
	outline: none !important;
}
.wb-booking-app .wb-cal-day.is-today {
	font-weight: 700 !important;
	color: var(--sl-primary) !important;
}
.wb-booking-app .wb-cal-day.is-selected,
.wb-booking-app .wb-cal-day.is-selected:hover {
	background: var(--sl-primary) !important;
	color: #fff !important;
	border-color: var(--sl-primary) !important;
	font-weight: 700 !important;
}
/* v1.3.35 — calendar days that already have at least one
   confirmed/pending booking get a soft amber fill + a small dot
   below the day number, so it's easy to see at a glance which
   dates are filling up. The hover tint deepens slightly. When the
   day is also the selected one, the pink .is-selected rule wins
   (it appears earlier — but its !important + later override rule
   below pins the selected style). The dot remains visible. */
/* v1.3.37 — fill bar variant. The dot used in 1.3.35 was too easy
   to miss; the bar shows actual fullness (booked/(booked+left)).
   The width is driven by --wb-fill set per-cell by the JS. */
.wb-booking-app .wb-cal-day.is-booked {
	position: relative !important;
	font-weight: 600 !important;
}
.wb-booking-app .wb-cal-day.is-booked:not(.is-selected):not(.is-disabled):not(.is-empty) {
	background: #fff7e0 !important;
	border-color: #fcd58c !important;
	color: #92400e !important;
}
.wb-booking-app .wb-cal-day.is-booked:hover:not(.is-disabled):not(.is-empty):not(.is-selected) {
	background: #fde9b8 !important;
	border-color: #f59e0b !important;
}
/* The fill bar itself — a horizontal track at the bottom of the
   cell with width = --wb-fill (0-100%). Falls back to 30% if
   the JS hasn't set the variable yet. */
.wb-booking-app .wb-cal-day.is-booked::after {
	content: "" !important;
	position: absolute !important;
	bottom: 3px !important;
	left: 12% !important;
	height: 3px !important;
	width: calc((var(--wb-fill, 30%)) * 0.76) !important;
	background: #f59e0b !important;
	border-radius: 999px !important;
}
/* Half-full days get a slightly amber tint, more-than-85% full days
   get a stronger red-amber tint so heavy days pop. */
.wb-booking-app .wb-cal-day.is-booked-half:not(.is-selected)::after { background: #f97316 !important; }
.wb-booking-app .wb-cal-day.is-booked-full:not(.is-selected) {
	background: #fee2e2 !important;
	border-color: #fca5a5 !important;
	color: #991b1b !important;
}
.wb-booking-app .wb-cal-day.is-booked-full:not(.is-selected)::after {
	background: #dc2626 !important;
}
/* When the booked day is selected, the pink selection wins and the
   bar turns white for contrast. */
.wb-booking-app .wb-cal-day.is-booked.is-selected,
.wb-booking-app .wb-cal-day.is-booked.is-selected:hover {
	background: var(--sl-primary) !important;
	color: #fff !important;
	border-color: var(--sl-primary) !important;
}
.wb-booking-app .wb-cal-day.is-booked.is-selected::after {
	background: #fff !important;
}
.wb-booking-app .wb-cal-day.is-other-month {
	color: var(--sl-muted) !important;
	cursor: default !important;
	opacity: 0.55 !important;
}
.wb-booking-app .wb-cal-day.is-disabled {
	color: var(--sl-muted) !important;
	cursor: not-allowed !important;
	opacity: 0.55 !important;
	background: transparent !important;
}
.wb-booking-app .wb-cal-day.is-empty {
	cursor: default !important;
	background: transparent !important;
	border-color: transparent !important;
}

.wb-selected-date {
	margin-top: 18px !important;
	margin-bottom: 0 !important;
	font-size: 0.9rem;
	color: var(--sl-muted) !important;
}

.wb-slots-col {}
/* v1.1.42: heading is now a normal bold title ("Time Slot") instead of the
   uppercase muted label from v1.1.7. Timezone note becomes a small block
   line under it so the customer still sees Eastern / Pacific / etc. */
.wb-slots-heading {
	font-size: 1.15rem !important; /* v1.3.9 — bumped from 0.95rem so the "Time Slot" heading reads stronger next to the calendar */
	color: var(--sl-fg);
	margin: 0 0 14px 0;
	font-weight: 700;
	text-transform: none;
	letter-spacing: 0;
	line-height: 1.2;
	flex: 0 0 auto; /* v1.3.6 — heading stays its natural height inside the flex slots-col */
}
.wb-tz-note {
	display: block;
	margin: 4px 0 0 0;
	font-weight: 500;
	text-transform: none;
	letter-spacing: 0;
	color: var(--sl-muted);
	font-size: 0.78rem;
}
/* v1.1.42: slots-list is now a vertical stack of bucket sections (Morning /
   Afternoon / Evening), each containing its own 2-column grid. Old single
   1-column grid behaviour preserved for the empty / loading / no-slots
   states via the .wb-no-slots full-width row below. */
.wb-slots-list {
	display: flex !important;
	flex-direction: column !important;
	gap: 18px !important;
	margin-bottom: 0;
	/* v1.3.6 — slots list fills the height left by the calendar. The parent
	   .wb-slots-col gets an explicit height from JS (syncSlotsColHeight),
	   so this list grows via flex: 1 inside it and scrolls when content
	   exceeds that height. The 480px max-height is a pre-JS fallback so the
	   first paint is not absurdly tall on a cold cache. */
	flex: 1 1 auto !important;
	min-height: 0 !important;
	max-height: 480px !important;
	overflow-y: auto !important;
	width: 100%;
	padding-right: 6px;             /* leave space for scrollbar */
	/* Firefox: subtle pink scrollbar */
	scrollbar-width: thin;
	scrollbar-color: var(--sl-primary-soft) transparent;
}
.wb-booking-app .wb-slot-bucket {
	display: flex !important;
	flex-direction: column !important;
	gap: 10px !important;
}
.wb-booking-app .wb-slot-bucket-heading {
	all: unset;
	display: block !important;
	font-size: 0.95rem !important;
	font-weight: 700 !important;
	color: var(--sl-fg) !important;
	margin: 0 0 2px 0 !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
}
.wb-booking-app .wb-slot-grid {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	gap: 10px !important;
}
@media (max-width: 540px) {
	.wb-booking-app .wb-slot-grid {
		grid-template-columns: 1fr !important;
	}
}
/* WebKit / Chromium scrollbar styling */
.wb-slots-list::-webkit-scrollbar { width: 6px; }
.wb-slots-list::-webkit-scrollbar-track { background: transparent; }
.wb-slots-list::-webkit-scrollbar-thumb {
	background: var(--sl-primary-soft);
	border-radius: 3px;
}
.wb-slots-list::-webkit-scrollbar-thumb:hover {
	background: var(--sl-primary);
}
.wb-booking-app .wb-slot {
	all: unset;
	cursor: pointer;
	display: flex !important;
	flex-direction: column !important;
	align-items: flex-start !important;
	gap: 2px !important;
	padding: 10px 12px !important;
	border: 1.5px solid var(--sl-border) !important;
	border-radius: var(--sl-radius-sm) !important;
	background: #fff !important;
	text-align: left !important;
	color: var(--sl-fg) !important;
	transition: border-color .12s ease, background .12s ease, color .12s ease, box-shadow .12s ease;
	box-sizing: border-box;
	width: 100%;
}
.wb-booking-app .wb-slot-range {
	font-size: 0.79rem !important; /* v1.3.6 — 2px smaller (was 0.92rem) */
	font-weight: 600 !important;
	line-height: 1.2 !important;
	color: inherit !important;
	/* v1.1.43: keep "10:00 am – 10:20 am" on one line. If the column ever
	   becomes too narrow, the 2-col grid collapses to 1-col at <540px (see
	   .wb-slot-grid media query) — one-line ranges stay readable in
	   both cases. */
	white-space: nowrap !important;
}
/* v1.1.43: bump the 2-col → 1-col collapse breakpoint so narrow desktop
   columns also fall back to single-column rather than wrap. 660px matches
   the point where a 4fr column inside a 1024px viewport drops below ~160px. */
@media (max-width: 660px) {
	.wb-booking-app .wb-slot-grid {
		grid-template-columns: 1fr !important;
	}
}
.wb-booking-app .wb-slot-seats {
	font-size: 0.62rem !important; /* v1.3.6 — 2px smaller (was 0.75rem) */
	font-weight: 500 !important;
	color: var(--sl-muted) !important;
	line-height: 1.2 !important;
}
.wb-booking-app .wb-slot:hover {
	border-color: var(--sl-primary) !important;
	color: var(--sl-primary) !important;
	box-shadow: 0 2px 8px rgba(238, 53, 122, .08) !important;
}
.wb-booking-app .wb-slot[aria-pressed="true"] {
	border-color: var(--sl-primary) !important;
	background: var(--sl-primary) !important;
	color: #fff !important;
	box-shadow: 0 4px 12px rgba(238, 53, 122, .20) !important;
}
.wb-booking-app .wb-slot[aria-pressed="true"] .wb-slot-range {
	color: #fff !important;
	font-weight: 700 !important;
}
.wb-booking-app .wb-slot[aria-pressed="true"] .wb-slot-seats {
	color: rgba(255, 255, 255, .85) !important;
}
.wb-booking-app .wb-slot[disabled] { opacity: 0.4 !important; cursor: not-allowed !important; }
.wb-no-slots { color: var(--sl-muted); font-style: italic; }

.wb-lock-info {
	padding: 10px 14px;
	background: #fffbeb;
	border: 1px solid #fde68a;
	border-radius: var(--sl-radius-sm);
	font-size: 0.9rem;
	margin-top: 12px !important;
	width: 100%;
}
.wb-lock-info p { margin: 0 !important; }
.wb-lock-countdown { font-variant-numeric: tabular-nums; font-weight: 700; color: var(--sl-warning); }

/* ---------- Form ---------- */
/* v1.9.18 — narrower, centered details form (was full widget width).
   v1.9.26 — sits on a light panel with a border. */
.wb-details-form {
	margin: 6px auto 0;
	max-width: 680px;
	background: var(--sl-primary-softer);
	border: 1px solid var(--sl-border);
	border-radius: 16px;
	padding: 28px 30px;
}
.wb-details-form input,
.wb-details-form select,
.wb-details-form textarea { background: #fff; }
.wb-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--sl-gap);
}
.wb-form-stack,
.wb-form-row label {
	display: block;
	margin-bottom: 14px;
}
.wb-form-row label span,
.wb-form-stack span,
.wb-form-stack > .wb-form-label {
	display: block;
	font-size: 0.85rem;
	margin-bottom: 6px;
	font-weight: 600;
	color: var(--sl-fg);
}
.wb-details-form input,
.wb-details-form select,
.wb-details-form textarea {
	width: 100%;
	padding: 10px 12px;
	font: inherit;
	border: 1.5px solid var(--sl-border);
	border-radius: var(--sl-radius-sm);
	background: #fff;
	color: var(--sl-fg);
}
.wb-details-form input:focus,
.wb-details-form select:focus,
.wb-details-form textarea:focus {
	outline: none;
	border-color: var(--sl-primary);
	box-shadow: 0 0 0 3px rgba(238, 53, 122, .12);
}
.wb-form-row label em,
.wb-form-stack em { color: var(--sl-error); font-style: normal; }

/* v1.2.31 — inline field-level validation: highlight the invalid field red
   (replaces the page-top error banner on the Your-details step). */
.wb-details-form input.wb-field-invalid,
.wb-details-form select.wb-field-invalid,
.wb-details-form textarea.wb-field-invalid {
	border-color: var(--sl-error) !important;
	box-shadow: 0 0 0 3px rgba(220, 38, 38, .12);
}
.wb-details-form input.wb-field-invalid:focus,
.wb-details-form select.wb-field-invalid:focus,
.wb-details-form textarea.wb-field-invalid:focus {
	border-color: var(--sl-error) !important;
	box-shadow: 0 0 0 3px rgba(220, 38, 38, .2);
}
.wb-field-error-msg {
	/* v1.3.9 — !important on every property because the message <span> is
	   appended inside a <label> and the broader `.wb-form-row label span`
	   rule (display: block; font-size: 0.85rem; font-weight: 600; color:
	   var(--sl-fg)) wins on specificity. That selector was making errors
	   render dark-grey at label-size instead of small red. */
	display: block !important;
	margin: 5px 0 0 !important;
	font-size: 0.75rem !important;
	font-weight: 400 !important; /* v1.3.10 — was 500; client wants regular weight, no bold/semibold */
	line-height: 1.4 !important;
	color: var(--sl-error) !important;
}
.wb-details-form-error {
	margin: 0 0 14px;
	padding: 10px 12px;
	border: 1px solid #f5c2c0;
	border-radius: var(--sl-radius-sm);
	background: #fdecea;
	color: var(--sl-error);
	font-size: 0.85rem;
	font-weight: 600;
}

/* v1.3.0 — Extras (add-ons) on the Persons step. */
.wb-extras {
	margin: 18px 0 6px;
}
.wb-extras-heading {
	font-size: 1rem;
	font-weight: 700;
	margin: 0 0 10px;
	color: var(--sl-fg);
}
/* v1.3.3 — tighten the extras list spacing. */
.wb-booking-app .wb-extras-list {
	margin: 10px 0 0 !important;
}
/* v1.3.3 — the step-5 (Extras) service-name <p> is never populated by JS,
   so it rendered as an empty muted paragraph taking up blank space. Hide any
   empty .wb-service-name so it never reserves vertical space. */
.wb-booking-app .wb-service-name:empty {
	display: none !important;
}
.wb-extra-row {
	display: flex;
	align-items: center;
	gap: 12px;
	border: 1px solid var(--sl-border);
	border-radius: var(--sl-radius);
	padding: 12px 16px;
	margin-bottom: 10px;
}
.wb-extra-name {
	flex: 1 1 auto;
	font-weight: 600;
	color: var(--sl-fg);
}
.wb-extra-price {
	flex: 0 0 auto;
	font-weight: 700;
	color: var(--sl-primary);
}
.wb-extra-stepper {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--sl-border);
	border-radius: var(--sl-radius-sm);
	overflow: hidden;
}
.wb-extra-stepper button {
	/* v1.3.4 — flex-center the −/+ glyph so it sits dead-center, not baseline. */
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	box-sizing: border-box !important;
	width: 36px !important;
	height: 36px !important;
	border: 0;
	background: #fff;
	color: var(--sl-fg);
	font-size: 18px !important;
	line-height: 1 !important;
	cursor: pointer;
}
.wb-extra-stepper button:hover {
	/* v1.3.5 — the soft-pink hover was barely visible against white. Use the
	   solid primary + white glyph (matches the Persons stepper) for a clear
	   hover state. */
	background: var(--sl-primary) !important;
	color: #fff !important;
}
.wb-extra-qty {
	min-width: 42px;
	text-align: center;
	font-weight: 600;
	line-height: 36px;
	border-left: 1px solid var(--sl-border);
	border-right: 1px solid var(--sl-border);
	padding: 0 8px;
}
/* v1.9.117 — birthday service-fee note under the summary. */
.wb-booking-app .wb-fee-note {
	margin: 12px 0 0 !important;
	font-size: .9rem !important;
	line-height: 1.45 !important;
}

/* v1.9.104 — Semi/Private mode choice cards ("both" services). */
.wb-mode-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
}
@media (max-width: 480px) {
	.wb-mode-list { grid-template-columns: 1fr; }
}
/* v1.10.55 — "Pick your base" reuses .wb-mode-list's layout/card styling but
   overrides the column count: it typically lists many more items (8+) than
   the 2-option Semi/Private mode choice this grid was built for, and
   auto-fit's minmax(220px,1fr) was packing 4+ across on a normal-width
   screen — too dense for a name + price + button per card. Fixed at 2
   columns (still 1 on mobile via the shared rule above) with a bit more
   breathing room between cards. */
.wb-base-item-list {
	grid-template-columns: repeat(2, 1fr) !important;
	gap: 20px !important;
}
@media (max-width: 560px) {
	.wb-base-item-list { grid-template-columns: 1fr !important; }
}
/* Scoped + !important so these beat the generic `.wb-booking-app .wb-card`
   rules (which force align-items:flex-start / text-align:left / small padding)
   and the `.wb-booking-app h3` heading size. */
.wb-booking-app .wb-mode-card {
	align-items: center !important;
	text-align: center !important;
	gap: 12px !important;
	padding: 34px 24px !important;
	transition: border-color .15s ease, box-shadow .15s ease, transform .1s ease;
}
.wb-booking-app .wb-mode-card:hover {
	border-color: var(--sl-primary) !important;
	box-shadow: 0 10px 26px rgba(15,23,42,.10) !important;
	transform: translateY(-2px);
}
.wb-booking-app .wb-mode-icon {
	width: 88px !important;
	height: 88px !important;
	border-radius: 50% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	margin: 0 auto 4px !important;
	color: var(--sl-primary) !important;
	background: linear-gradient(135deg, rgba(224,33,138,.14), rgba(224,33,138,.06)) !important;
}
.wb-booking-app .wb-mode-icon svg { width: 46px !important; height: 46px !important; }
.wb-booking-app .wb-mode-name {
	margin: 0 !important;
	font-size: 1.6rem !important;
	font-weight: 800 !important;
	color: var(--sl-fg) !important;
	line-height: 1.2 !important;
	text-align: center !important;
}
.wb-booking-app .wb-mode-price {
	font-size: 2rem !important;
	font-weight: 800 !important;
	color: var(--sl-primary) !important;
	text-align: center !important;
}
.wb-booking-app .wb-mode-days {
	font-size: 1.6rem !important;
	font-weight: 700 !important;
	color: var(--sl-fg) !important;
	line-height: 1.2 !important;
	text-align: center !important;
}
.wb-booking-app .wb-mode-cta {
	margin-top: 6px !important;
	min-width: 160px;
	text-align: center !important;
	justify-content: center !important;
}

/* v1.3.1 — keep the booking widget on the site's Poppins font and stop it
   from inheriting the theme/Elementor heading fonts unevenly. Everything is
   scoped under .wb-booking-app, so the rule never leaks out to the rest
   of the page (the widget doesn't touch Elementor's global styles). */
.wb-booking-app,
.wb-booking-app h1,
.wb-booking-app h2,
.wb-booking-app h3,
.wb-booking-app h4,
.wb-booking-app p,
.wb-booking-app a,
.wb-booking-app span,
.wb-booking-app label,
.wb-booking-app small,
.wb-booking-app button,
.wb-booking-app input,
.wb-booking-app select,
.wb-booking-app textarea {
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif !important;
}

/* Phone with country code */
.wb-phone-row {
	display: grid;
	grid-template-columns: 130px 1fr;
	gap: 8px;
}
/* v1.9.124 — custom country-code dropdown (replaces the native <select>). */
.wb-booking-app .wb-cc { position: relative; font-size: 0.95rem; }
.wb-booking-app .wb-cc-btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 6px;
	padding: 10px 12px;
	font: inherit;
	line-height: 1.2;
	border: 1.5px solid var(--sl-border);
	border-radius: var(--sl-radius-sm);
	background: #fff;
	color: var(--sl-fg);
	cursor: pointer;
	text-align: left;
}
.wb-booking-app .wb-cc-btn:focus {
	outline: none;
	border-color: var(--sl-primary);
	box-shadow: 0 0 0 3px rgba(238, 53, 122, .12);
}
.wb-booking-app .wb-cc-caret {
	flex: 0 0 auto;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 6px solid currentColor;
	opacity: .55;
}
.wb-booking-app .wb-cc-list {
	position: absolute;
	z-index: 60;
	top: calc(100% + 4px);
	left: 0;
	min-width: 100%;
	max-height: 260px;
	overflow-y: auto;
	margin: 0;
	padding: 4px;
	list-style: none;
	background: #fff;
	border: 1px solid var(--sl-border);
	border-radius: var(--sl-radius-sm);
	box-shadow: 0 10px 28px rgba(0, 0, 0, .14);
}
.wb-booking-app .wb-cc-list[hidden] { display: none; }
.wb-booking-app .wb-cc-opt {
	padding: 8px 10px;
	border-radius: 6px;
	cursor: pointer;
	white-space: nowrap;
}
.wb-booking-app .wb-cc-opt:hover,
.wb-booking-app .wb-cc-opt.is-active { background: var(--sl-primary-softer); }
.wb-phone-input { font-variant-numeric: tabular-nums; }
.wb-help {
	/* v1.3.11 — moved above the phone-row (was below); reads as a hint under
	   the label. Italic + smaller so it doesn't compete with the label or
	   the input. !important on size + style because the `.wb-form-row
	   label span` and Elementor typography otherwise override it.
	   v1.3.12 — negative top margin (-4px) eats into the label's 6px
	   bottom margin so the hint sits snugly under "Phone *" (net gap ≈ 2px,
	   was ≈ 8px). Bottom margin kept at 6px to give the input breathing room. */
	display: block !important;
	margin: -4px 0 6px !important;
	font-size: 0.72rem !important;
	font-style: italic !important;
	font-weight: 400 !important;
	color: var(--sl-muted) !important;
	line-height: 1.4 !important;
}

.wb-opt-ins { border: 0; padding: 12px 0; margin: 0; }
.wb-opt-ins label {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
	font-size: 0.95rem;
	cursor: pointer;
}
.wb-opt-ins input[type="checkbox"] {
	width: 16px;
	height: 16px;
	accent-color: var(--sl-primary);
	margin: 0;
}
.wb-tcpa-note { margin-top: 8px; }

/* ---------- Summary panel ---------- */
.wb-summary {
	background: var(--sl-primary-softer);
	border: 1px solid var(--sl-primary-soft);
	padding: 16px 18px;
	border-radius: var(--sl-radius);
	margin-bottom: 18px;
}
.wb-summary h3 {
	color: var(--sl-primary-dark);
	margin-bottom: 10px;
	/* v1.3.9 — Elementor's .elementor-widget-container h3 rule was blowing
	   the "Order summary" heading up to ~2rem pink. Lock it small + !important
	   so it reads as a section label, not a hero title. */
	font-size: 1.05rem !important;
	font-weight: 700 !important;
	line-height: 1.3 !important;
}
.wb-summary dl {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 6px 12px;
	margin: 0;
	font-size: 0.95rem;
}
.wb-summary dt { color: var(--sl-muted); }
.wb-summary dd { margin: 0; font-weight: 600; color: var(--sl-fg); }
.wb-summary-final {
	padding: 16px 18px;
	background: var(--sl-primary-softer);
	border: 1px solid var(--sl-primary-soft);
	border-radius: var(--sl-radius);
	margin-bottom: 18px;
}
.wb-summary-final dl {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 6px 12px;
	margin: 0;
	font-size: 0.95rem;
}
.wb-summary-final dt { color: var(--sl-muted); }
.wb-summary-final dd { margin: 0; font-weight: 600; }

/* v1.9.86 — small, light-grey sub-note rendered under a summary value (e.g. the
   "balance due in person" line beneath the bold Pay Later amount). Prefixed +
   !important so it overrides the bold/dark dd rules in all three summaries. */
.wb-booking-app .wb-row-note {
	display: block;
	margin-top: 3px;
	font-size: 0.8rem !important;
	font-weight: 400 !important;
	color: var(--sl-muted) !important;
	line-height: 1.4 !important;
}

/* ---------- Buttons ---------- */
.wb-step-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid var(--sl-border-soft);
}
/* When the footer is the only child after a single action (no "Back"),
   keep the primary button right-aligned. The empty <span> placeholder we
   render in the location step takes care of that visually. */
.wb-btn {
	all: unset;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	/* v1.3.3 — normalize every action button. line-height was previously
	   left to `all: unset` (→ inherited the theme's large value), which made
	   "← Back" / "Back to services" render as tall boxes. Lock the four
	   sizing props with !important so themes can't inflate them. */
	padding: 12px 30px !important;
	border-radius: var(--sl-radius-sm);
	font-weight: 600 !important;
	font-size: 14px !important;
	line-height: 1.6 !important;
	text-align: center;
	transition: background .15s ease, color .15s ease, box-shadow .15s ease;
}
.wb-btn:focus-visible { outline: 2px solid var(--sl-primary); outline-offset: 2px; }
.wb-btn-primary {
	background: var(--sl-primary);
	color: #fff;
	box-shadow: 0 4px 12px rgba(238, 53, 122, .20);
}
.wb-btn-primary:hover:not([disabled]) { background: var(--sl-primary-dark); }
.wb-btn-primary[disabled] {
	background: var(--sl-primary);
	color: #fff;
	cursor: not-allowed;
	opacity: 0.45;
	box-shadow: none;
}
.wb-btn-ghost { background: transparent; color: var(--sl-muted); }
.wb-btn-ghost:hover { color: var(--sl-fg); }

/* ---------- Payment ---------- */
.wb-payment-area { margin-top: 12px; flex: 1; display: flex; flex-direction: column; }
.wb-payment-loading { padding: 24px; text-align: center; }
.wb-card-label {
	display: block;
	font-size: 0.9rem;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--sl-fg);
	letter-spacing: 0.01em;
}
/* v1.9.68 — Square (and Stripe) render their own bordered, padded field inside
   an iframe. Our old wrapper added a second border + 56px min-height, producing
   a hollow "box-in-a-box" with a lot of dead space. Let the processor's own
   field be the visible control; the wrapper is now just a spacing hook. */
.wb-card-container {
	padding: 0;
	border: 0;
	background: transparent;
	min-height: 0;
}
/* v1.9.69 — Card Holder field (plugin-owned; sits above Square's card widget). */
.wb-cardholder-field { margin-bottom: 16px; }
.wb-booking-app .wb-cardholder-input {
	width: 100%;
	box-sizing: border-box;
	padding: 12px 14px;
	border: 1.5px solid #d5d9e0;
	border-radius: 10px;
	background: #fff;
	font-size: 16px;
	font-family: inherit;
	line-height: 1.4;
	color: var(--sl-fg);
}
.wb-booking-app .wb-cardholder-input::placeholder { color: #9ca3af; }
.wb-booking-app .wb-cardholder-input:focus {
	outline: none;
	border-color: var(--sl-primary);
	box-shadow: 0 0 0 3px rgba(238, 53, 122, 0.15);
}
/* Comfortable breathing room between the card field, its inline validation
   message, and the "goes directly to Square" trust line. */
.wb-payment-square-form,
.wb-payment-stripe-form {
	margin-bottom: 4px;
}
.wb-payment-square-form .wb-payment-trust,
.wb-payment-stripe-form .wb-payment-trust {
	margin-top: 12px;
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--sl-muted);
}
/* v1.3.23 — Phase 1b: Authorize.Net Accept.js inline card form. Two-column
   grid on desktop (card number spans both columns), single column on mobile. */
.wb-booking-app .wb-anet-card-grid {
	display: grid !important;
	grid-template-columns: 1fr 1fr;
	gap: 12px 14px;
	margin-top: 4px;
}
.wb-booking-app .wb-anet-field { display: flex !important; flex-direction: column; }
.wb-booking-app .wb-anet-field-full { grid-column: 1 / -1; }
.wb-booking-app .wb-anet-card-grid input[type="text"] {
	padding: 12px 14px !important;
	border: 1.5px solid var(--sl-border);
	border-radius: var(--sl-radius-sm);
	background: #fff;
	font-size: 15px !important;
	font-family: inherit;
	line-height: 1.4 !important;
	letter-spacing: 0.01em;
}
.wb-booking-app .wb-anet-card-grid input[type="text"]:focus {
	outline: none;
	border-color: var(--sl-primary);
	box-shadow: 0 0 0 3px rgba(34, 113, 177, 0.15);
}
@media (max-width: 540px) {
	.wb-booking-app .wb-anet-card-grid { grid-template-columns: 1fr; }
	.wb-booking-app .wb-anet-field-full { grid-column: 1 / -1; }
}
.wb-payment-error {
	margin-top: 12px;
	padding: 10px 14px;
	background: #fdecea;
	color: var(--sl-error);
	border: 1px solid #f5c2c0;
	border-radius: var(--sl-radius-sm);
	font-size: 0.9rem;
}
.wb-payment-trust { margin-top: 8px; }
.wb-payment-unavailable {
	padding: 20px;
	background: #fdecea;
	border: 1px solid #f5c2c0;
	border-radius: var(--sl-radius);
}
.wb-bypass-banner {
	padding: 14px 16px;
	background: #fffbeb;
	border: 1px solid #fde68a;
	border-radius: var(--sl-radius-sm);
	margin-bottom: 18px;
}

/* ---------- Confirmation ---------- */
.wb-confirmation {
	padding: 18px 20px;
	background: #f0fff4;
	border: 1.5px solid #b7e4c7;
	border-radius: var(--sl-radius);
	margin-bottom: 18px;
}
.wb-confirmation dl {
	margin: 0;
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 8px 12px;
	font-size: 0.95rem;
}
.wb-confirmation dt { color: var(--sl-muted); }
.wb-confirmation dd { margin: 0; font-weight: 600; word-break: break-word; }
.wb-ics-link { text-decoration: none; }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
	.wb-booking-shell { grid-template-columns: 1fr; }
	.wb-booking-sidebar { position: static; }
	.wb-sidebar-steps {
		flex-direction: row;
		overflow-x: auto;
		gap: 6px;
		padding-bottom: 4px;
	}
	.wb-sidebar-step {
		flex: 0 0 auto;
		padding: 8px 10px;
	}
	.wb-sidebar-label { font-size: 0.85rem; }
	.wb-sidebar-icon { width: 28px; height: 28px; flex-basis: 28px; }
	.wb-sidebar-icon svg { width: 15px; height: 15px; }
	.wb-datetime-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
	.wb-booking-app { margin: 16px 8px; }
	.wb-booking-content { padding: 18px; }
	.wb-form-row { grid-template-columns: 1fr; }
	/* v1.10.13 — `.wb-services-list` is a FIXED-count grid (repeat(3,…) on
	   desktop, repeat(2,…) below 1100px — see line ~242), using
	   `minmax(0, 1fr)` with no floor so it can shrink to any width, not an
	   auto-fit grid with a safe minimum like `.wb-xp-grid`/`.wb-cards`. This
	   1-column override was missing `!important`, so the `!important`
	   2-column rule at the 1100px breakpoint always won on mobile too — the
	   card never actually got a full-width column, just a squeezed ~2-up
	   sliver, which is what broke long service titles into one letter per
	   line. Also widened from 560px to 768px to match the .wb-xp-grid fix
	   above (some phones report a layout width in that range). */
	.wb-cards,
	.wb-services-list { grid-template-columns: 1fr !important; }
	.wb-phone-row { grid-template-columns: 110px 1fr; }
	.wb-step-footer { flex-direction: column-reverse; align-items: stretch; }
	.wb-step-footer .wb-btn { width: 100%; justify-content: center; }
}

/* ===== v1.2.27 — Coupon field on Basic Details ===== */
.wb-booking-app .wb-coupon-row {
	margin-top: 14px !important;
}
.wb-booking-app .wb-coupon-input-row {
	display: flex !important;
	gap: 8px !important;
	align-items: stretch !important;
}
.wb-booking-app .wb-coupon-input {
	flex: 1 1 auto !important;
	min-width: 0 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.04em !important;
}
.wb-booking-app .wb-coupon-apply {
	flex: 0 0 auto !important;
	white-space: nowrap !important;
}
.wb-booking-app .wb-coupon-feedback {
	margin-top: 6px !important;
	font-size: 0.9rem !important;
	padding: 6px 10px !important;
	border-radius: 6px !important;
}
.wb-booking-app .wb-coupon-feedback.is-error {
	background: rgba(220,38,38,0.08) !important;
	color: #b91c1c !important;
}
.wb-booking-app .wb-coupon-feedback.is-success {
	background: rgba(16,185,129,0.08) !important;
	color: #047857 !important;
}
.wb-booking-app .wb-coupon-applied {
	margin-top: 8px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 10px !important;
	padding: 8px 12px !important;
	background: rgba(16,185,129,0.08) !important;
	color: #065f46 !important;
	border-radius: 6px !important;
	font-size: 0.92rem !important;
}
.wb-booking-app .wb-coupon-applied-line {
	font-weight: 500 !important;
}
.wb-booking-app .wb-coupon-remove {
	background: transparent !important;
	border: 0 !important;
	color: #047857 !important;
	cursor: pointer !important;
	font-weight: 600 !important;
	text-decoration: underline !important;
	padding: 4px 6px !important;
}

/* ===== v1.2.13 — Birthday service detail view + lightbox ===== */

/* v1.2.15 — hero image on birthday cards. Bleed to the card's edges
   (card padding is 18px) and round the top corners only so it sits
   flush against the card border. */
.wb-booking-app .wb-card-img {
	margin: -18px -18px 14px -18px !important;
	border-top-left-radius: var(--sl-radius) !important;
	border-top-right-radius: var(--sl-radius) !important;
	overflow: hidden !important;
	aspect-ratio: 16 / 10 !important;
	background: #f3f4f6 !important;
	width: calc(100% + 36px) !important;
}

.wb-booking-app .wb-card-img img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
}

/* v1.2.13 hint deprecated in v1.2.15. CSS retained in case it's still in DOM
   from a stale cache; visually hidden so it doesn't appear under the card. */
.wb-booking-app .wb-card-detail-hint { display: none !important; }

.wb-booking-app .wb-service-detail {
	display: block !important;
	background: #fff !important;
	border: 1px solid #e5e7eb !important;
	border-radius: 10px !important;
	padding: 22px !important;
	box-shadow: 0 1px 2px rgba(0,0,0,0.04) !important;
}

/* v1.2.17 — title+meta on the left, Book Now on the right vertically
   centered to the whole left block. */
.wb-booking-app .wb-detail-header {
	display: grid !important;
	grid-template-columns: 1fr auto !important;
	column-gap: 16px !important;
	align-items: center !important;
	margin-bottom: 18px !important;
}

.wb-booking-app .wb-detail-head-info {
	min-width: 0 !important;
}

.wb-booking-app .wb-detail-title {
	margin: 0 !important;
	font-size: 1.45rem !important;
	line-height: 1.25 !important;
	color: #111 !important;
	font-weight: 700 !important;
}

.wb-booking-app .wb-detail-book {
	white-space: nowrap !important;
	align-self: center !important;
}

.wb-booking-app .wb-detail-meta {
	color: #6b7280 !important;
	font-size: 0.92rem !important;
	margin: 6px 0 0 0 !important;
	line-height: 1.4 !important;
}

.wb-booking-app .wb-detail-meta-price {
	color: #2563eb !important;
	font-weight: 600 !important;
}

.wb-booking-app .wb-detail-meta-rest {
	color: #6b7280 !important;
}

/* v1.2.19 — 80/20 column split with construction-equal heights.
   v1.2.20 — heights halved. Hero aspect 8/3 → height = width × 3/8 = 0.3 × gallery_width.
   Sidebar aspect 2/3 → height = width × 3/2 = 0.3 × gallery_width. Same by construction. */
.wb-booking-app .wb-detail-gallery {
	display: grid !important;
	grid-template-columns: 4fr 1fr !important;
	gap: 10px !important;
	margin-bottom: 20px !important;
}

.wb-booking-app .wb-detail-hero {
	border-radius: 10px !important;
	overflow: hidden !important;
	background: #f3f4f6 !important;
	cursor: zoom-in !important;
	position: relative !important;
	aspect-ratio: 8 / 3 !important;
}

.wb-booking-app .wb-detail-hero img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	transition: opacity 180ms ease !important;
}

.wb-booking-app .wb-detail-hero.is-loading img {
	opacity: 0.55 !important;
}

.wb-booking-app .wb-detail-hero.is-loading::after {
	content: '' !important;
	position: absolute !important;
	top: 50% !important; left: 50% !important;
	width: 36px !important; height: 36px !important;
	margin: -18px 0 0 -18px !important;
	border: 3px solid rgba(255,255,255,0.55) !important;
	border-top-color: #2563eb !important;
	border-radius: 50% !important;
	animation: wb-spin 0.6s linear infinite !important;
}

@keyframes wb-spin { to { transform: rotate(360deg); } }

/* v1.2.19 — sidebar uses aspect-ratio: 1/3 so its height = sidebar_width × 3
   = 0.6 × gallery_width, which matches the hero's height exactly. Inside,
   grid 1fr 1fr divides that height between the two thumbs. min-height: 0
   chain keeps the inner img from pushing cells taller than the grid wants. */
.wb-booking-app .wb-detail-thumbs {
	display: grid !important;
	grid-template-rows: 1fr 1fr !important;
	gap: 10px !important;
	aspect-ratio: 2 / 3 !important;
	min-height: 0 !important;
}

.wb-booking-app .wb-detail-thumb {
	border: 2px solid transparent !important;
	padding: 0 !important;
	border-radius: 10px !important;
	overflow: hidden !important;
	background: #f3f4f6 !important;
	cursor: pointer !important;
	transition: border-color 120ms ease !important;
	width: 100% !important;
	min-height: 0 !important;
	position: relative !important;
}

.wb-booking-app .wb-detail-thumb img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	min-height: 0 !important;
	object-fit: cover !important;
}

.wb-booking-app .wb-detail-thumb.is-active {
	border-color: #2563eb !important;
	box-shadow: 0 0 0 2px rgba(37,99,235,0.18) !important;
}

.wb-booking-app .wb-detail-thumb:hover {
	border-color: #93c5fd !important;
}

/* v1.2.16 — overlay anchored at the bottom of the 2nd thumb with a top→bottom
   gradient (transparent at top, dark at bottom) so the image stays visible
   above and the text reads cleanly. */
.wb-booking-app .wb-detail-thumb-overlay {
	position: absolute !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	background: linear-gradient(
		to top,
		rgba(0,0,0,0.78) 0%,
		rgba(0,0,0,0.45) 60%,
		rgba(0,0,0,0)    100%
	) !important;
	color: #fff !important;
	display: flex !important;
	align-items: flex-end !important;
	justify-content: center !important;
	font-weight: 600 !important;
	font-size: 0.78rem !important; /* v1.3.9 — was 0.95rem; smaller overlay reads less obtrusive on small thumbs */
	letter-spacing: 0.01em !important;
	pointer-events: none !important;
	text-align: center !important;
	padding: 28px 8px 12px 8px !important;
}

.wb-booking-app .wb-detail-view-all:hover {
	background: #f9fafb !important;
}

.wb-booking-app .wb-detail-about-label {
	display: inline-block !important;
	color: #2563eb !important;
	font-weight: 600 !important;
	font-size: 1.15rem !important; /* v1.3.9 — pinned + bumped so "About Service" reads as a proper section label, not body text */
	padding-bottom: 6px !important;
	border-bottom: 2px solid #2563eb !important;
	margin-bottom: 10px !important;
}

.wb-booking-app .wb-detail-about {
	color: #374151 !important;
	line-height: 1.55 !important;
	margin-bottom: 20px !important;
}

.wb-booking-app .wb-detail-about p {
	margin: 0 0 12px 0 !important;
	line-height: 1.6 !important;
}

.wb-booking-app .wb-detail-about p:last-child {
	margin-bottom: 0 !important;
}

.wb-booking-app .wb-detail-about ul,
.wb-booking-app .wb-detail-about ol {
	margin: 0 0 12px 0 !important;
	padding-left: 1.4em !important;
}

.wb-booking-app .wb-detail-about ul { list-style: disc !important; }
.wb-booking-app .wb-detail-about ol { list-style: decimal !important; }

.wb-booking-app .wb-detail-about li {
	margin-bottom: 6px !important;
	line-height: 1.55 !important;
}

.wb-booking-app .wb-detail-about strong { font-weight: 700 !important; }
.wb-booking-app .wb-detail-about em     { font-style: italic !important; }
.wb-booking-app .wb-detail-about br     { display: block !important; content: '' !important; margin-top: 6px !important; }

.wb-booking-app .wb-detail-footer {
	display: flex !important;
	justify-content: space-between !important;
	gap: 10px !important;
	padding-top: 6px !important;
	border-top: 1px solid #f3f4f6 !important;
	margin-top: 8px !important;
}

@media (max-width: 720px) {
	.wb-booking-app .wb-detail-header {
		grid-template-columns: 1fr !important;
		row-gap: 10px !important;
	}
	.wb-booking-app .wb-detail-book { justify-self: stretch !important; }
	.wb-booking-app .wb-detail-gallery { grid-template-columns: 1fr !important; }
	.wb-booking-app .wb-detail-thumbs {
		grid-template-rows: none !important;
		grid-template-columns: 1fr 1fr !important;
		aspect-ratio: auto !important;
	}
	.wb-booking-app .wb-detail-thumb {
		aspect-ratio: 1 / 1 !important;
	}
}

/* Lightbox overlay (lives on document.body, not under .wb-booking-app, so
   no namespace prefix on these selectors). */
.wb-lightbox-overlay {
	position: fixed !important;
	inset: 0 !important;
	background: rgba(0,0,0,0.92) !important;
	z-index: 999999 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}

.wb-lightbox-stage {
	max-width: 92vw !important;
	max-height: 88vh !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}

.wb-lightbox-img {
	max-width: 92vw !important;
	max-height: 88vh !important;
	object-fit: contain !important;
	display: block !important;
	box-shadow: 0 4px 28px rgba(0,0,0,0.4) !important;
}

.wb-lightbox-close {
	position: absolute !important;
	top: 16px !important;
	right: 18px !important;
	width: 40px !important;
	height: 40px !important;
	border-radius: 50% !important;
	border: 0 !important;
	background: rgba(255,255,255,0.12) !important;
	color: #fff !important;
	font-size: 22px !important;
	line-height: 1 !important;
	cursor: pointer !important;
	/* v1.2.15 — flexbox-center the × glyph so it sits in the middle of the
	   circle (font baseline pushed it up before). */
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 0 !important;
	font-family: Arial, sans-serif !important;
}

.wb-lightbox-close:hover { background: rgba(255,255,255,0.22) !important; }

.wb-lightbox-nav {
	position: absolute !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	width: 48px !important;
	height: 48px !important;
	border-radius: 50% !important;
	border: 0 !important;
	background: rgba(255,255,255,0.12) !important;
	color: #fff !important;
	font-size: 20px !important;
	line-height: 1 !important;
	cursor: pointer !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 0 !important;
}

.wb-lightbox-nav:hover { background: rgba(255,255,255,0.22) !important; }
.wb-lightbox-prev { left: 18px !important; }
.wb-lightbox-next { right: 18px !important; }

.wb-lightbox-counter {
	position: absolute !important;
	bottom: 18px !important;
	left: 50% !important;
	transform: translateX(-50%) !important;
	color: #fff !important;
	font-size: 0.92rem !important;
	background: rgba(0,0,0,0.4) !important;
	padding: 4px 10px !important;
	border-radius: 999px !important;
}

@media (max-width: 560px) {
	.wb-lightbox-nav { width: 38px !important; height: 38px !important; font-size: 18px !important; }
	.wb-lightbox-prev { left: 8px !important; }
	.wb-lightbox-next { right: 8px !important; }
}

/* v1.3.4 — the HTML `hidden` attribute must always win. Many rules above set
   `display: … !important` (e.g. .wb-coupon-applied), which overrode the
   UA `[hidden]{display:none}` and left the empty green coupon box (with only
   "Remove") visible before any coupon was applied. This guard, last in the
   file with equal specificity, restores correct hide-when-hidden behavior
   everywhere the plugin toggles `hidden`. */
.wb-booking-app [hidden] {
	display: none !important;
}

/* =====================================================================
 * v1.9.4 — Sidebar removed → full-width content + top progress bar,
 * and rich "Experience" cards on step 0.
 * ===================================================================== */

.wb-booking-shell--nosidebar {
	/* v1.9.84 — the no-sidebar flow is a single column, so render the shell as a
	   plain BLOCK instead of a CSS grid. As a grid item, .wb-booking-content
	   inherited min-width:auto, which let the *content of the currently-visible
	   step* drive the box width — so every step rendered at a different width, and
	   a wide step could grow past the Formatting "Max width" cap (making the width
	   control appear to do nothing). A block box always takes its width from its
	   container, never from its content, so all steps are now the same width and
	   the max-width cap is honoured. */
	display: block !important;
	grid-template-columns: 1fr !important;
}

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

/* ---------- Top flow header (title + progress + secure pill) ---------- */
.wb-flow-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	text-align: center;
	/* v1.9.18 — more breathing room above and below the progress bar / divider. */
	padding: 14px 0 32px;
	margin-bottom: 32px;
	border-bottom: 1px solid var(--wb-sep);
}
.wb-flow-title {
	font-size: 1.9rem !important;
	font-weight: 800 !important;
	color: var(--sl-fg) !important;
	margin: 0 !important;
	letter-spacing: -0.01em;
}
.wb-stepbar {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 8px;
	width: 100%;
	max-width: 680px;
	flex-wrap: nowrap;
}
.wb-stepbar-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	color: var(--sl-muted);
	flex: 0 0 auto;
	min-width: 0;
	text-align: center;
}
.wb-stepbar-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px; height: 50px;
	flex: 0 0 50px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--sl-border);
	color: var(--sl-muted);
	font-weight: 800;
	font-size: 1.25rem;
	transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.wb-stepbar-text { display: flex; flex-direction: column; line-height: 1.2; }
.wb-stepbar-text strong { font-size: .95rem; color: var(--sl-fg); font-weight: 700; }
.wb-stepbar-text small { font-size: .8rem; color: var(--sl-muted); }
.wb-stepbar-line {
	flex: 1 1 auto;
	height: 2px;
	max-width: 90px;
	background: var(--wb-sep);
	border-radius: 2px;
	/* v1.9.18 — align to the vertical centre of the 50px number circle. */
	margin-top: 24px;
}
/* Active + done states */
.wb-stepbar-item.is-active .wb-stepbar-num {
	background: var(--sl-primary);
	border-color: var(--sl-primary);
	color: #fff;
	box-shadow: 0 4px 12px rgba(238, 53, 122, .25);
}
.wb-stepbar-item.is-done .wb-stepbar-num {
	background: var(--sl-primary-soft);
	border-color: var(--sl-primary-soft);
	color: var(--sl-primary);
}
.wb-secure-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--sl-primary);
	color: #fff;
	font-weight: 600;
	font-size: .9rem;
	padding: 9px 18px;
	border-radius: 999px;
	box-shadow: 0 4px 12px rgba(238, 53, 122, .25);
}
.wb-secure-pill svg { flex: 0 0 auto; }

/* ---------- Experience cards (step 0) ---------- */
.wb-xp-grid {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)) !important;
	gap: 26px !important;
	align-items: stretch !important;
	width: 100%;
	margin-top: 14px; /* room for the centred "Most Popular" pill on the top row */
}
.wb-booking-app .wb-xp-card {
	all: unset;
	position: relative;
	display: flex !important;
	flex-direction: column !important;
	cursor: pointer !important;
	background: #fff !important;
	border: 1.5px solid var(--sl-border) !important;
	border-radius: 16px !important;
	padding: 24px !important;
	padding-top: 40px !important; /* v1.9.40 — uniform 40px top padding on all experience cards */
	box-shadow: var(--sl-shadow-soft);
	transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
	box-sizing: border-box;
}
.wb-booking-app .wb-xp-card:hover,
.wb-booking-app .wb-xp-card:focus-visible,
.wb-booking-app .wb-xp-card.is-selected {
	border-color: var(--sl-primary) !important;
	box-shadow: 0 10px 30px rgba(238, 53, 122, .12);
	transform: translateY(-2px);
	outline: none !important;
}
/* v1.9.40 — all experience cards use a uniform 40px top padding (set on the base
   .wb-xp-card above), so the popular card matches the rest and their
   content stays top-aligned. The "Most Popular" pill dips ~16px in and clears. */
.wb-booking-app .wb-xp-card--popular { padding-top: 40px !important; }
/* v1.9.20 — title + booked/badge sit inline (no more absolute overlap). */
.wb-xp-titlerow {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
}
.wb-xp-badge,
.wb-xp-booked { flex: 0 0 auto; align-self: flex-start; }
.wb-xp-badge {
	background: var(--sl-primary);
	color: #fff;
	font-size: .7rem;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 999px;
	box-shadow: 0 4px 12px rgba(238, 53, 122, .25);
	white-space: nowrap;
}
.wb-xp-booked {
	background: #f1f5f9;
	color: #475569;
	font-size: .68rem;
	font-weight: 600;
	padding: 4px 9px;
	border-radius: 999px;
	border: 1px solid #e2e8f0;
	white-space: nowrap;
}
.wb-xp-audience {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--sl-primary);
	font-weight: 600;
	font-size: .9rem;
	margin: 2px 0 0 !important;
}
.wb-xp-audience svg { flex: 0 0 auto; }
.wb-xp-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 16px;
}
.wb-xp-pill {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: var(--sl-primary-soft);
	color: var(--sl-primary-dark);
	font-size: .76rem;
	font-weight: 600;
	padding: 5px 10px;
	border-radius: 999px;
}
.wb-xp-pill-ico { font-size: .9rem; line-height: 1; }
.wb-xp-pill svg { width: 14px; height: 14px; }
/* Image shown as a clean, fixed rounded icon box at the top-left (was a
   full-bleed banner that looked messy with small/transparent uploads). */
/* v1.9.17 — icon on the LEFT, title/description/ages stacked to its RIGHT. */
.wb-xp-top {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 18px;
	width: 100%;
}
.wb-xp-intro {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.wb-xp-media {
	width: 56px;
	height: 56px;
	flex: 0 0 56px;
	align-self: flex-start;
	border-radius: 14px;
	overflow: hidden;
	margin: 0;
	background: var(--sl-primary-soft);
}
.wb-xp-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
/* v1.9.19 — "Most Popular" is now a pink pill centred on the card's top edge. */
.wb-xp-popular {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--sl-primary);
	color: #fff;
	font-size: .8rem;
	font-weight: 700;
	padding: 7px 18px;
	border-radius: 999px;
	white-space: nowrap;
	box-shadow: 0 6px 16px rgba(238, 53, 122, .35);
}
.wb-xp-pill-ico { display: inline-flex; align-items: center; }
.wb-xp-pill-ico svg { display: block; }
.wb-xp-body { display: flex; flex-direction: column; flex: 1 1 auto; }
.wb-xp-name {
	font-size: 1.2rem !important;
	font-weight: 800 !important;
	color: var(--sl-fg) !important;
	margin: 0 !important;
	line-height: 1.25;
}
.wb-xp-desc { color: var(--sl-muted); font-size: .80rem; margin: 0; line-height: 1.45; }
.wb-xp-desc p { margin: 0px !important; }
.wb-xp-features {
	list-style: none !important;
	margin: 0 0 16px !important;
	padding: 0 !important;
	display: flex;
	flex-direction: column;
	gap: 9px;
}
.wb-xp-features li {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	color: var(--sl-fg);
	font-size: .88rem;
	margin: 0 !important;
}
.wb-xp-features li svg { color: var(--sl-success); flex: 0 0 auto; margin-top: 2px; }
/* Standout testimonial: gradient panel, accent left border, avatar + big
   decorative quote mark. */
.wb-xp-quote {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 13px;
	background: linear-gradient(135deg, #fff5fa 0%, #fdeaf3 100%);
	border: 1px solid #fbcfe8 !important;
	border-left: 4px solid var(--sl-primary) !important;
	border-radius: 14px;
	padding: 18px 18px 16px 20px;
	margin: 0 0 18px !important;
	overflow: hidden;
}
.wb-xp-quote-avatar {
	flex: 0 0 40px;
	width: 40px; height: 40px;
	border-radius: 50%;
	background: var(--sl-primary);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.05rem;
	box-shadow: 0 4px 12px rgba(238, 53, 122, .3);
}
.wb-xp-quote-body { display: flex; flex-direction: column; gap: 7px; position: relative; z-index: 1; }
.wb-xp-quote-text {
	font-style: italic;
	color: var(--sl-fg);
	font-size: .85rem;
	line-height: 1.5;
}
.wb-xp-quote-cite {
	color: var(--sl-primary-dark);
	font-style: normal;
	font-weight: 700;
	font-size: .85rem;
}
.wb-xp-quote-cite::before { content: "— "; }
.wb-booking-app .wb-xp-cta {
	margin-top: auto !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 15px 20px !important;
	font-size: 1.02rem !important;
	font-weight: 700 !important;
	border-radius: 12px !important;
	text-decoration: none !important;
}

@media (max-width: 768px) {
	.wb-flow-title { font-size: 1.5rem !important; }
	.wb-stepbar-text small { display: none; }
	.wb-stepbar-line { max-width: 40px; }
	/* v1.10.13 — matches the specificity of the .wb-booking-app .wb-card /
	   .wb-xp-card rules above (0,2,0); the bare .wb-xp-grid selector this used
	   to be was still correct on cascade, but bumped the breakpoint from 640
	   to 768 (some phones report a layout width in that range) and pinned the
	   card's own width so nothing upstream can flex/grid it back to a 48%
	   two-up layout. */
	.wb-booking-app .wb-xp-grid { grid-template-columns: 1fr !important; }
	.wb-booking-app .wb-xp-card { width: 100% !important; max-width: 100% !important; }
	/* v1.10.15 — on mobile the "N booked this week" pill sat beside the title
	   in the same row (.wb-xp-titlerow is display:flex, space-between),
	   squeezing the title down to whatever width was left. For a longer name
	   like "DIY Experiences" that meant the title itself wrapped mid-word
	   ("Experience" / "s"). Stack the row instead: pill moves above the title
	   (order:-1), right-aligned, and the title gets the card's full width.
	   v1.10.16 — the same titlerow can also carry a custom text badge
	   (.wb-xp-badge, e.g. "Budget Friendly") instead of/alongside the booked
	   count; it squeezed the title the same way and needs the same move. */
	.wb-xp-titlerow { flex-direction: column !important; align-items: stretch !important; }
	.wb-xp-badge,
	.wb-xp-booked { order: -1 !important; align-self: flex-end !important; }
	/* v1.10.16 — the service card's own head row (.wb-svc-head, name +
	   optional Most Popular / custom-text badges in .wb-svc-badges) has the
	   identical space-between squeeze as .wb-xp-titlerow above. Same fix.
	   !important on both blocks: .wb-svc-head's own base rule (further down
	   this file) and .wb-xp-titlerow's (further up) are equal specificity, so
	   without it the loser would be whichever one the cascade's source-order
	   tiebreak happens to favor, not reliably this one. */
	.wb-svc-head { flex-direction: column !important; align-items: stretch !important; }
	.wb-svc-badges { order: -1 !important; align-self: flex-end !important; }
}

/* =====================================================================
 * v1.10.17 — every text size in the widget nudged ~10% smaller on
 * mobile. One override per selector rather than editing each existing
 * rule in place, so nothing above needs to change and this whole block
 * can be tuned or reverted as a unit. All !important: several of the
 * base rules already carry it, and this block must win regardless of
 * where in the file a given selector's base rule happens to sit.
 * `.wb-flow-title` / `.wb-step-title` / `.wb-sidebar-label` are skipped
 * here — they already have their own hand-tuned mobile size elsewhere.
 * ===================================================================== */
@media (max-width: 768px) {
	.wb-booking-app h2 { font-size: 1.22rem !important; }
	.wb-booking-app h3 { font-size: 0.9rem !important; }
	.wb-booking-error { font-size: 0.81rem !important; }
	.wb-booking-app .wb-card > strong { font-size: 0.9rem !important; }
	.wb-booking-app .wb-card > small { font-size: 0.81rem !important; }
	.wb-booking-app .wb-card-desc { font-size: 0.81rem !important; }
	.wb-booking-app .wb-card-body strong { font-size: 0.9rem !important; }
	.wb-booking-app .wb-card-body small { font-size: 0.79rem !important; }
	.wb-card-meta { font-size: 0.79rem !important; }
	.wb-persons-input { font-size: 0.9rem !important; }
	.wb-total-preview { font-size: 0.95rem !important; }
	.wb-package-info { font-size: 0.86rem !important; }
	.wb-attendees-preview { font-size: 0.86rem !important; }
	.wb-booking-app .wb-cal-title { font-size: 0.9rem !important; }
	.wb-booking-app .wb-cal-nav { font-size: 0.99rem !important; }
	.wb-cal-dow { font-size: 0.63rem !important; }
	.wb-booking-app .wb-cal-day { font-size: 0.81rem !important; }
	.wb-selected-date { font-size: 0.81rem !important; }
	.wb-slots-heading { font-size: 1.03rem !important; }
	.wb-tz-note { font-size: 0.7rem !important; }
	.wb-booking-app .wb-slot-bucket-heading { font-size: 0.86rem !important; }
	.wb-booking-app .wb-slot-range { font-size: 0.71rem !important; }
	.wb-booking-app .wb-slot-seats { font-size: 0.56rem !important; }
	.wb-lock-info { font-size: 0.81rem !important; }
	.wb-form-row label span,
	.wb-form-stack span,
	.wb-form-stack > .wb-form-label { font-size: 0.77rem !important; }
	.wb-field-error-msg { font-size: 0.68rem !important; }
	.wb-details-form-error { font-size: 0.77rem !important; }
	.wb-extras-heading { font-size: 0.9rem !important; }
	.wb-booking-app .wb-fee-note { font-size: 0.81rem !important; }
	.wb-booking-app .wb-mode-name { font-size: 1.44rem !important; }
	.wb-booking-app .wb-mode-price { font-size: 1.8rem !important; }
	.wb-booking-app .wb-mode-days { font-size: 1.44rem !important; }
	.wb-booking-app .wb-cc { font-size: 0.86rem !important; }
	.wb-help { font-size: 0.65rem !important; }
	.wb-opt-ins label { font-size: 0.86rem !important; }
	.wb-summary h3 { font-size: 0.95rem !important; }
	.wb-summary dl { font-size: 0.86rem !important; }
	.wb-summary-final dl { font-size: 0.86rem !important; }
	.wb-booking-app .wb-row-note { font-size: 0.72rem !important; }
	.wb-card-label { font-size: 0.81rem !important; }
	.wb-payment-error { font-size: 0.81rem !important; }
	.wb-confirmation dl { font-size: 0.86rem !important; }
	.wb-booking-app .wb-coupon-feedback { font-size: 0.81rem !important; }
	.wb-booking-app .wb-coupon-applied { font-size: 0.83rem !important; }
	.wb-booking-app .wb-detail-title { font-size: 1.31rem !important; }
	.wb-booking-app .wb-detail-meta { font-size: 0.83rem !important; }
	.wb-booking-app .wb-detail-thumb-overlay { font-size: 0.7rem !important; }
	.wb-booking-app .wb-detail-about-label { font-size: 1.03rem !important; }
	.wb-lightbox-counter { font-size: 0.83rem !important; }
	.wb-stepbar-num { font-size: 1.13rem !important; }
	.wb-stepbar-text strong { font-size: 0.86rem !important; }
	.wb-stepbar-text small { font-size: 0.72rem !important; }
	.wb-secure-pill { font-size: 0.81rem !important; }
	.wb-xp-badge { font-size: 0.63rem !important; }
	.wb-xp-booked { font-size: 0.61rem !important; }
	.wb-xp-audience { font-size: 0.81rem !important; }
	.wb-xp-pill { font-size: 0.68rem !important; }
	.wb-xp-pill-ico { font-size: 0.81rem !important; }
	.wb-xp-popular { font-size: 0.72rem !important; }
	.wb-xp-name { font-size: 1.08rem !important; }
	.wb-xp-desc { font-size: 0.72rem !important; }
	.wb-xp-features li { font-size: 0.79rem !important; }
	.wb-xp-quote-avatar { font-size: 0.95rem !important; }
	.wb-xp-quote-text { font-size: 0.77rem !important; }
	.wb-xp-quote-cite { font-size: 0.77rem !important; }
	.wb-booking-app .wb-xp-cta { font-size: 0.92rem !important; }
	/* v1.10.18 — the gap between the top block (image/title/description/
	   audience line) and the body block (pills/features/quote/CTA) below it
	   read too large on mobile, especially above a short pills list.
	   v1.10.19 — still too much, cut further. */
	.wb-xp-top { margin-bottom: 2px !important; }
	.wb-loc-name { font-size: 1.08rem !important; }
	.wb-loc-desc { font-size: 0.83rem !important; }
	.wb-loc-addr { font-size: 0.81rem !important; }
	.wb-loc-price { font-size: 0.9rem !important; }
	.wb-booking-app .wb-loc-cta { font-size: 0.9rem !important; }
	.wb-step-chip { font-size: 0.74rem !important; }
	.wb-step-sub { font-size: 0.9rem !important; }
	.wb-svc-name { font-size: 1.17rem !important; }
	.wb-svc-badge { font-size: 0.68rem !important; }
	.wb-svc-desc { font-size: 0.86rem !important; }
	.wb-svc-features li { font-size: 0.86rem !important; }
	.wb-booking-app .wb-svc-duration { font-size: 0.83rem !important; }
	/* v1.10.18 — price and CTA button pulled down further than the blanket
	   ~10% pass above; the price ("$X /person") reads disproportionately
	   large next to the small duration text beside it, and the button text
	   was still bigger than it needs to be at this width. */
	.wb-booking-app .wb-svc-price { font-size: 1.1rem !important; }
	.wb-booking-app .wb-svc-cta { font-size: 0.85rem !important; }
	.wb-booking-app .wb-invoice-btn { font-size: 0.86rem !important; }
}

/* =====================================================================
 * v1.9.10 — Rich Location cards (full width, roomy spacing).
 * ===================================================================== */
.wb-loc-grid {
	display: grid !important;
	/* v1.9.82 — force a fixed 2-up grid on desktop (like .wb-services-list)
	   instead of auto-fit/minmax(340px). The old auto-fit needed ~702px
	   (340+340+22 gap) to show two cards, so inside a narrow/boxed widget
	   column (~700px) the two location cards collapsed to a single stacked
	   column. minmax(0,1fr) lets each column shrink to fit the box, so the
	   cards stay side-by-side regardless of container width. Drops to one
	   column on phones via the 640px query below. */
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 22px !important;
	align-items: stretch !important;
	width: 100%;
}
.wb-booking-app .wb-loc-card {
	all: unset;
	display: flex !important;
	flex-direction: column !important;
	cursor: pointer !important;
	background: #fff !important;
	border: 1.5px solid var(--sl-border) !important;
	border-radius: 16px !important;
	padding: 24px !important;
	box-shadow: var(--sl-shadow-soft);
	transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
	box-sizing: border-box;
}
.wb-booking-app .wb-loc-card:hover,
.wb-booking-app .wb-loc-card:focus-visible,
.wb-booking-app .wb-loc-card.is-selected {
	border-color: var(--sl-primary) !important;
	box-shadow: 0 10px 30px rgba(238, 53, 122, .12);
	transform: translateY(-2px);
	outline: none !important;
}
.wb-loc-head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; }
.wb-loc-ico {
	flex: 0 0 46px;
	width: 46px; height: 46px;
	border-radius: 12px;
	background: var(--sl-primary-soft);
	color: var(--sl-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.wb-loc-ico svg { width: 22px; height: 22px; }
.wb-loc-headtext { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.wb-loc-name { font-size: 1.2rem !important; font-weight: 800 !important; color: var(--sl-fg) !important; line-height: 1.25; }
.wb-loc-desc { color: var(--sl-muted); font-size: .92rem; line-height: 1.4; }
.wb-loc-addr {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	color: var(--sl-muted);
	font-size: .9rem;
	margin: 6px 0 0;
	line-height: 1.4;
}
.wb-loc-addr svg { flex: 0 0 auto; margin-top: 2px; color: var(--sl-primary); }
.wb-loc-price { color: var(--sl-primary); font-weight: 700; font-size: 1rem; margin: 4px 0 0; }
.wb-booking-app .wb-loc-cta {
	margin-top: auto !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 14px 20px !important;
	font-size: 1rem !important;
	font-weight: 700 !important;
	border-radius: 12px !important;
}
@media (max-width: 640px) {
	.wb-loc-grid { grid-template-columns: 1fr !important; }
}

/* =====================================================================
 * v1.9.15 — Per-step header (brand chip + title + subtitle).
 * ===================================================================== */
.wb-step-head {
	text-align: center;
	margin: 0 auto 26px;
	max-width: 680px;
}
.wb-step-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--sl-primary-soft);
	color: var(--sl-primary);
	font-weight: 700;
	font-size: .82rem;
	padding: 7px 16px;
	border-radius: 999px;
	margin-bottom: 14px;
}
.wb-step-chip svg { flex: 0 0 auto; }
.wb-booking-app .wb-step-title {
	font-size: 1.9rem !important;
	font-weight: 800 !important;
	color: var(--sl-fg) !important;
	margin: 0 0 6px !important;
	line-height: 1.15;
	padding: 0 !important;
}
.wb-step-sub { color: var(--sl-muted); font-size: 1rem; margin: 0; }
@media (max-width: 640px) {
	.wb-booking-app .wb-step-title { font-size: 1.5rem !important; }
}

/* =====================================================================
 * v1.9.16 — Rich Service cards (image + title + Most Popular + features
 * + duration/price + Select This Experience button).
 * ===================================================================== */
.wb-booking-app .wb-svc-card {
	all: unset;
	display: flex !important;
	flex-direction: column !important;
	/* v1.10.7 — the card also carries .wb-card, whose rule sets
	 * `align-items: flex-start !important`. On a flex COLUMN that makes every
	 * child size to its own content width instead of the card's, which is why
	 * the hero band took its width from each photo's intrinsic size, and why
	 * .wb-svc-foot and .wb-svc-cta each needed a hand-added `width: 100%` to
	 * work around it. .wb-svc-head never got that patch, so its
	 * `justify-content: space-between` did nothing and the badge sat next to the
	 * service name rather than at the card's right edge. Fixed once, here.
	 * (This selector is declared later than the .wb-card one at the same
	 * specificity, so it wins.) */
	align-items: stretch !important;
	cursor: pointer !important;
	background: #fff !important;
	border: 1.5px solid var(--sl-border) !important;
	border-radius: 16px !important;
	padding: 24px !important;
	box-shadow: var(--sl-shadow-soft);
	/* v1.9.135 — do NOT transition transform. The card carries role="button",
	 * so some themes apply a scale() on :active/:focus to button-like elements;
	 * transitioning transform here animated that into a visible "zoom" on click. */
	transition: border-color .15s ease, box-shadow .15s ease;
	box-sizing: border-box;
	/* Pin transform/scale/zoom so a theme rule (e.g. [role="button"]:active
	 * { transform:scale } or { scale:1.05 } or { zoom:1.05 }) cannot resize the
	 * card. Selection is shown by border + shadow only. (v1.9.136) */
	transform: none !important;
	scale: none !important;
	zoom: normal !important;
	/* v1.9.137 — clip the full-bleed hero image to the card's rounded corners so
	 * it can't spill over the top/edges of the card box. box-shadow (the pink
	 * selection glow) is drawn outside the box and is NOT affected by this. */
	overflow: hidden !important;
}
.wb-booking-app .wb-svc-card:hover,
.wb-booking-app .wb-svc-card:focus,
.wb-booking-app .wb-svc-card:focus-within,
.wb-booking-app .wb-svc-card:focus-visible,
.wb-booking-app .wb-svc-card:active,
.wb-booking-app .wb-svc-card.is-selected,
.wb-booking-app .wb-svc-card.is-selected:hover,
.wb-booking-app .wb-svc-card.is-selected:focus,
.wb-booking-app .wb-svc-card.is-selected:active {
	border-color: var(--sl-primary) !important;
	box-shadow: 0 10px 30px rgba(238, 53, 122, .12);
	transform: none !important;
	scale: none !important;
	zoom: normal !important;
	outline: none !important;
}
/* Full-bleed hero band at the top of a service card. The card's overflow:hidden
 * + border-radius clips the top corners, so no image spills over the box.
 *
 * v1.9.137 gave this a fixed height so object-fit:cover would crop every photo
 * to the same band. v1.10.7 — that still produced unequal images for TWO
 * reasons, both fixed here:
 *
 *  1. The rules were UNSCOPED and carried no !important. Themes and page
 *     builders routinely ship `img { height: auto !important }` (and
 *     max-height rules) for responsive images, which beat `.wb-svc-img img`
 *     and let each hero render at its own natural aspect ratio.
 *
 *  2. `.wb-svc-card` is `display:flex; flex-direction:column`, so this band is
 *     a FLEX ITEM and inherits `flex-shrink: 1`. Cards whose text content runs
 *     longer squashed the band by different amounts, so no two heroes matched
 *     even when the height rule did apply. `flex: 0 0 200px` pins it.
 *
 * Scoping + !important is the established convention in this file for
 * properties a theme must not be able to win (see .wb-svc-card, .wb-mode-card).
 */
.wb-booking-app .wb-svc-img {
	display: block !important;
	/* ROOT CAUSE of the unequal, off-centre heroes. The card carries BOTH
	 * .wb-svc-card and .wb-card, and `.wb-booking-app .wb-card` sets
	 * `align-items: flex-start !important`. In a flex COLUMN that makes every
	 * child size to its own content width instead of the card's width — so this
	 * band's width was resolved from each photo's intrinsic width. A 2000px
	 * group photo and a 600px logo therefore produced visibly different bands,
	 * neither filling the card. align-self:stretch restores full-width bleed. */
	align-self: stretch !important;
	width: auto !important;
	/* Never shrink or grow, whatever the sibling text does. */
	flex: 0 0 200px !important;
	height: 200px !important;
	min-height: 200px !important;
	max-height: 200px !important;
	margin: -24px -24px 18px !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 16px 16px 0 0 !important;
	overflow: hidden !important;
}
.wb-booking-app .wb-svc-img img {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	height: 100% !important;
	min-height: 100% !important;
	max-height: none !important;
	/* Centre the crop so the subject sits in the middle of the band. */
	object-fit: cover !important;
	object-position: center center !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	vertical-align: top !important;
}
/* v1.9.138 — kill any theme "image zoom on hover" effect. Many themes apply
 * `img:hover { transform: scale(1.05) }` (or the scale:/zoom: properties) to
 * images inside cards/links; with the card's overflow:hidden that reads as the
 * hero image zooming when you hover/select a card. Pin all three on the image
 * in every state so it stays put. */
.wb-booking-app .wb-svc-img,
.wb-booking-app .wb-svc-img img,
.wb-booking-app .wb-svc-img:hover img,
.wb-booking-app .wb-svc-img img:hover,
.wb-booking-app .wb-svc-card:hover .wb-svc-img img,
.wb-booking-app .wb-svc-card:focus .wb-svc-img img,
.wb-booking-app .wb-svc-card:focus-within .wb-svc-img img,
.wb-booking-app .wb-svc-card:active .wb-svc-img img,
.wb-booking-app .wb-svc-card.is-selected .wb-svc-img img {
	transform: none !important;
	scale: none !important;
	zoom: normal !important;
	transition: none !important;
}
.wb-svc-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 10px;
}
.wb-svc-name { font-size: 1.3rem !important; font-weight: 800 !important; color: var(--sl-fg) !important; line-height: 1.25; }
.wb-svc-badge {
	flex: 0 0 auto;
	background: var(--sl-primary);
	color: #fff;
	font-size: .76rem;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: 999px;
	white-space: nowrap;
	box-shadow: 0 4px 12px rgba(238, 53, 122, .25);
}
.wb-svc-desc { color: var(--sl-muted); font-size: .95rem; margin: 0 0 14px; line-height: 1.5; }
.wb-svc-desc p { margin: 0 0 8px; }
.wb-svc-features {
	list-style: none !important;
	margin: 0 0 16px !important;
	padding: 0 !important;
	display: flex;
	flex-direction: column;
	gap: 9px;
}
.wb-svc-features li {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	color: var(--sl-fg);
	font-size: .95rem;
	margin: 0 !important;
}
.wb-svc-features li svg { color: var(--sl-success); flex: 0 0 auto; margin-top: 2px; }
/* v1.10.51 — a feature line containing HTML (section headers like <h3>,
   inline <b> notes, etc.) renders as plain block content, no checkmark. */
.wb-svc-features li.wb-svc-features-raw {
	display: block !important;
	color: var(--sl-fg);
}
.wb-svc-features li.wb-svc-features-raw:not(:first-child) {
	margin-top: 4px !important;
}
.wb-svc-features li.wb-svc-features-raw h1,
.wb-svc-features li.wb-svc-features-raw h2,
.wb-svc-features li.wb-svc-features-raw h3,
.wb-svc-features li.wb-svc-features-raw h4,
.wb-svc-features li.wb-svc-features-raw h5,
.wb-svc-features li.wb-svc-features-raw h6 {
	margin: 0 0 2px;
	font-size: .85rem;
	font-weight: 700;
	color: var(--sl-fg);
}
.wb-svc-features li.wb-svc-features-raw p { margin: 0 0 4px; }
/* v1.9.25 — .wb-booking-app prefix + !important so a theme/Elementor
   rule can't reset the flex layout (which made duration + price bunch on the
   left). Divider bleeds full width via negative side margins. */
.wb-booking-app .wb-svc-foot {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 12px !important;
	/* v1.9.29 — inset divider (does not bleed to the card edges). */
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px solid var(--wb-sep);
	width: 100% !important;
	box-sizing: border-box;
}
.wb-booking-app .wb-svc-duration {
	display: inline-flex !important;
	align-items: center;
	gap: 7px;
	color: var(--sl-muted);
	font-size: .92rem;
	font-weight: 500;
	flex: 0 0 auto;
}
.wb-booking-app .wb-svc-price {
	color: var(--sl-primary);
	font-weight: 800;
	font-size: 1.5rem;
	margin-left: auto !important;
	text-align: right;
	flex: 0 0 auto;
}
.wb-booking-app .wb-svc-cta {
	margin-top: 16px !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 14px 20px !important;
	font-size: 1rem !important;
	font-weight: 700 !important;
	border-radius: 12px !important;
}

/* =====================================================================
 * v1.9.26 — Center-align the Persons ("How many people?") step body.
 * The footer (Back / Next) keeps its full-width space-between layout.
 * ===================================================================== */
.wb-booking-app .wb-booking-step[data-step="4"] { text-align: center; }
/* v1.9.42 — the stepper is a max-width:320px flex box; justify-content only
   centers its contents. Auto side margins center the box itself within the
   (text-align:center) step so the −/input/+ sit under the heading. */
.wb-booking-app .wb-booking-step[data-step="4"] .wb-persons-controls { justify-content: center; margin-left: auto !important; margin-right: auto !important; }
.wb-booking-app .wb-booking-step[data-step="4"] .wb-extras-list { text-align: left; }
.wb-booking-app .wb-booking-step[data-step="4"] .wb-step-footer { text-align: left; }

/* v1.9.47 — "Download invoice (PDF)" button on the confirmation screen. */
/* v1.10.40 — online-meeting join link on the confirmation step. Uses the
   widget's own separator/primary tokens so it inherits the Formatting tab's
   colour scheme rather than hardcoding one. */
.wb-booking-app .wb-confirmation-meeting {
	margin-top: 18px;
	padding: 14px 16px;
	border: 1px solid var(--wb-sep, #e2e8f0);
	border-radius: 10px;
	text-align: center;
	word-break: break-word;
}
.wb-booking-app .wb-confirmation-meeting-label {
	margin: 0 0 6px;
	font-weight: 700;
	font-size: .9rem;
}
.wb-booking-app .wb-confirmation-meeting-link {
	display: inline-block;
	font-size: .92rem;
	color: var(--sl-primary);
	text-decoration: underline;
	text-underline-offset: 2px;
}
.wb-booking-app .wb-confirmation-meeting .wb-muted { margin: 8px 0 0; font-size: .82rem; }

.wb-booking-app .wb-confirmation-actions { margin-top: 20px; text-align: center; }
.wb-booking-app .wb-invoice-btn {
	display: inline-block;
	padding: 10px 20px;
	background: var(--sl-primary);
	color: #fff;
	font-weight: 600;
	font-size: .95rem;
	line-height: 1;
	border-radius: 8px;
	text-decoration: none;
	transition: background .15s ease;
}
.wb-booking-app .wb-invoice-btn:hover,
.wb-booking-app .wb-invoice-btn:focus { background: #d81f66; color: #fff; }


/* =====================================================================
   v1.10.67.1 — "You're booking …" choice trail.
   Sits under the step heading and builds up as the customer chooses.
   Deliberately quiet: no filled pill, no shouty colour. It is context,
   not a control, and it must not compete with the step title above it
   or the calendar below. The furthest choice made carries the emphasis;
   the earlier ones read as the trail leading to it.
   ===================================================================== */
.wb-choice-summary {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: center;
	gap: 2px 10px;
	max-width: 680px;
	margin: -14px auto 28px;
	padding: 0;
	border: 0;
	background: none;
	line-height: 1.6;
}
.wb-choice-label {
	/* v1.10.69 — brand pink and a size up: it reads as the label for the trail
	   rather than a faint aside, and picks up the accent already used by the
	   step chip above it. */
	color: var(--sl-primary);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	opacity: 1;
}
.wb-choice-items {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: center;
	gap: 0 8px;
}
.wb-choice-chip {
	color: var(--sl-muted);
	font-size: 0.94rem;
	font-weight: 500;
}
.wb-choice-chip.is-current {
	color: var(--sl-fg);
	font-weight: 700;
}
.wb-choice-sep {
	/* v1.10.69 — pink too. At --sl-border they were almost invisible, so the
	   trail read as three loose phrases rather than a path. */
	color: var(--sl-primary);
	font-size: 0.95rem;
	font-weight: 600;
}
@media (max-width: 640px) {
	.wb-choice-summary {
		margin: -8px auto 20px;
		gap: 0 8px;
	}
	.wb-choice-label { font-size: 0.76rem; }
	.wb-choice-chip  { font-size: 0.86rem; }
}
