/**
 * Booking form block — frontend styles.
 *
 * Theme-driven via `var(--wp--preset--*)` and `var(--wp--custom--booking--*)`
 * CSS variables published by theme.json. The defaults wired in below are
 * calibrated against the M133 wizard mockup — a cream / forest-green
 * hospitality palette — but every value can be overridden upstream by the
 * theme via `settings.custom.booking.*`.
 */

.wp-block-workbench-booking-form {
	/* When IAPI scrolls the wizard into view on a step change
	 * (view.ts → scrollFormIntoView), leave a little breathing room
	 * above so the form doesn't sit flush against a sticky header. */
	scroll-margin-top: 24px;

	/* ─── Design tokens ──────────────────────────────────────────────────
	 * Three-tier resolution so the wizard adapts to whichever theme it's
	 * dropped into:
	 *   1. Theme can pin a booking-specific `--wp--custom--booking--*`
	 *      token (most explicit; from #2041's theme.json entries).
	 *   2. Otherwise inherit the theme's `--wp--preset--color--*`
	 *      palette — maroon-themed venue gets a maroon wizard, etc.
	 *   3. Hex fallbacks at the end are the M133 mockup defaults,
	 *      only applied when the theme is silent on both layers. */
	--wb-forms-booking-accent: var(
		--wp--custom--booking--accent,
		var(--wp--preset--color--primary, #3a4f2c)
	);
	--wb-forms-booking-accent-text: var(
		--wp--custom--booking--accent-text,
		var(--wp--preset--color--base, #ffffff)
	);
	--wb-forms-booking-surface: var(
		--wp--custom--booking--surface,
		var(--wp--preset--color--base, #fbfaf6)
	);
	--wb-forms-booking-page: var(
		--wp--custom--booking--page,
		var(--wp--preset--color--base-2, #f2ede5)
	);
	--wb-forms-booking-input-bg: var(
		--wp--custom--booking--input-background,
		var(--wp--preset--color--base-2, #e8dfd1)
	);
	--wb-forms-booking-input-bg-hover: var(
		--wp--custom--booking--input-background-hover,
		var(--wp--preset--color--base-3, #dfd5c4)
	);
	--wb-forms-booking-text: var(
		--wp--custom--booking--text,
		var(--wp--preset--color--contrast, #2a2622)
	);
	--wb-forms-booking-muted: var(
		--wp--custom--booking--muted,
		var(--wp--preset--color--contrast-3, #a39988)
	);
	--wb-forms-booking-line: var(
		--wp--custom--booking--line,
		var(--wp--preset--color--border-light, #d8cfbe)
	);
	--wb-forms-booking-highlight: var(
		--wp--custom--booking--highlight,
		var(--wp--preset--color--tertiary, #9b5a3e)
	);
	--wb-forms-booking-radius: var(--wp--custom--booking--radius, 20px);
	--wb-forms-booking-radius-sm: var(--wp--custom--booking--radius-sm, 12px);
	--wb-forms-booking-radius-pill: 999px;
	--wb-forms-booking-gap: var(--wp--style--block-gap, 28px);

	/* Sub-element tokens kept compatible with the earlier #1998 theme
	   surface so existing theme.json overrides keep working. */
	--wb-forms-booking-cell-selected-bg: var(
		--wp--custom--booking--cell--selected-background,
		var(--wb-forms-booking-accent)
	);
	--wb-forms-booking-cell-selected-text: var(
		--wp--custom--booking--cell--selected-text,
		var(--wb-forms-booking-accent-text)
	);
	--wb-forms-booking-cell-hover-bg: var(
		--wp--custom--booking--cell--hover-background,
		rgba(58, 79, 44, 0.08)
	);
	--wb-forms-booking-cell-disabled-opacity: var(
		--wp--custom--booking--cell--disabled-opacity,
		0.35
	);
	--wb-forms-booking-cell-today-border: var(
		--wp--custom--booking--cell--today-border,
		var(--wb-forms-booking-accent)
	);
	--wb-forms-booking-stepper-badge-bg: var(
		--wp--custom--booking--stepper--badge-background,
		var(--wb-forms-booking-surface)
	);
	--wb-forms-booking-stepper-badge-border: var(
		--wp--custom--booking--stepper--badge-border,
		var(--wb-forms-booking-line)
	);
	--wb-forms-booking-stepper-badge-text: var(
		--wp--custom--booking--stepper--badge-text,
		var(--wb-forms-booking-muted)
	);
	--wb-forms-booking-stepper-current-badge-bg: var(
		--wp--custom--booking--stepper--current-badge-background,
		var(--wb-forms-booking-accent)
	);
	--wb-forms-booking-stepper-current-badge-text: var(
		--wp--custom--booking--stepper--current-badge-text,
		var(--wb-forms-booking-accent-text)
	);
	--wb-forms-booking-stepper-line: var(
		--wp--custom--booking--stepper--line,
		var(--wb-forms-booking-line)
	);
	--wb-forms-booking-stepper-line-complete: var(
		--wp--custom--booking--stepper--line-complete,
		var(--wb-forms-booking-accent)
	);
	--wb-forms-booking-stepper-label-fs: var(
		--wp--custom--booking--stepper--label-font-size,
		0.75rem
	);
	--wb-forms-booking-summary-label-fw: var(
		--wp--custom--booking--summary--label-font-weight,
		500
	);
	--wb-forms-booking-summary-label-color: var(
		--wp--custom--booking--summary--label-color,
		var(--wb-forms-booking-highlight)
	);
	--wb-forms-booking-summary-value-color: var(
		--wp--custom--booking--summary--value-color,
		var(--wb-forms-booking-text)
	);

	display: flex;
	flex-direction: column;
	/* WordPress's `.is-layout-flex` (auto-applied from block.json's
	 * `layout: { type: 'flex', orientation: 'vertical' }`) sets
	 * `align-items: flex-start` on this element, which would shrink
	 * direct children (stepper, card, nav) to their content width.
	 * Override back to the flex default. */
	align-items: stretch;
	gap: var(--wb-forms-booking-gap);
	margin-inline: auto;
	max-width: 760px;
	width: 100%;
	color: var(--wb-forms-booking-text);
}

/* Belt-and-braces for the same width issue: WP's layout system also
 * sometimes targets `> *` with explicit width rules. Force every
 * direct child to fill the wrapper. */
.wp-block-workbench-booking-form > * {
	width: 100%;
}

.wp-block-workbench-booking-form[hidden] {
	display: none;
}

/* ─── Stepper ──────────────────────────────────────────────────────────── */
.wb-forms-booking__stepper {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0 12px;
}

.wb-forms-booking__stepper-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	position: relative;
	min-width: 0;
	color: var(--wb-forms-booking-muted);
	padding-inline: 8px;
}

/* The stepper item is rendered as a real <button> so it can be
 * clicked to navigate. Frontend render.php and the editor's Edit()
 * both emit `.wb-forms-booking__stepper-trigger`. Reset the button
 * chrome and stack badge + label vertically; colours come from the
 * badge / label rules below. */
.wb-forms-booking__stepper-trigger {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	background: transparent;
	border: 0;
	padding: 4px 8px;
	cursor: pointer;
	color: inherit;
	font: inherit;
	border-radius: 8px;
	transition: background 0.15s ease;
}

.wb-forms-booking__stepper-trigger:hover {
	background: rgba(0, 0, 0, 0.03);
}

.wb-forms-booking__stepper-trigger:focus-visible {
	outline: 2px solid var(--wb-forms-booking-accent);
	outline-offset: 2px;
}

/* Connecting line between badges. Rendered as a ::before on every item
 * except the first, positioned across the gap to the previous badge.
 * Badge sits at z-index above the line so the line tucks underneath. */
.wb-forms-booking__stepper-item:not(:first-child)::before {
	content: "";
	position: absolute;
	left: calc(-50% + 22px);
	right: calc(50% + 22px);
	top: 18px;
	height: 2px;
	background: var(--wb-forms-booking-stepper-line);
	z-index: 0;
}

.wb-forms-booking__stepper-item.is-current,
.wb-forms-booking__stepper-item.is-complete {
	color: var(--wb-forms-booking-text);
}

.wb-forms-booking__stepper-item.is-current:not(:first-child)::before,
.wb-forms-booking__stepper-item.is-complete:not(:first-child)::before {
	background: var(--wb-forms-booking-stepper-line-complete);
}

.wb-forms-booking__stepper-badge {
	display: inline-grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: var(--wb-forms-booking-radius-pill);
	background: var(--wb-forms-booking-stepper-badge-bg);
	border: 2px solid var(--wb-forms-booking-stepper-badge-border);
	color: var(--wb-forms-booking-stepper-badge-text);
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	font-size: 0.875rem;
	position: relative;
	z-index: 1;
	transition:
		background 0.2s ease,
		color 0.2s ease,
		border-color 0.2s ease;
}

.wb-forms-booking__stepper-item.is-current .wb-forms-booking__stepper-badge {
	background: var(--wb-forms-booking-stepper-current-badge-bg);
	border-color: var(--wb-forms-booking-stepper-current-badge-bg);
	color: var(--wb-forms-booking-stepper-current-badge-text);
}

/* Completed steps replace the numeral with a ✓ glyph. The number stays
 * in the DOM (matches the render output between frontend + editor); we
 * hide it via `font-size: 0` and overlay the check via an absolutely-
 * positioned ::before that flex-centres inside the badge.
 *
 * The absolute overlay is necessary because the badge is an inline-grid
 * with `place-items: center`. The hidden number still occupies a grid
 * track, so an inline ::before would auto-flow into the next track
 * and end up baseline-aligned (sitting near the top of the badge)
 * instead of geometrically centred. */
.wb-forms-booking__stepper-item.is-complete .wb-forms-booking__stepper-badge {
	background: var(--wb-forms-booking-stepper-current-badge-bg);
	border-color: var(--wb-forms-booking-stepper-current-badge-bg);
	color: transparent;
	font-size: 0;
	position: relative;
}

.wb-forms-booking__stepper-item.is-complete
	.wb-forms-booking__stepper-badge::before {
	content: "\2713";
	color: var(--wb-forms-booking-stepper-current-badge-text);
	font-size: 1rem;
	line-height: 1;
	font-weight: 700;
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wb-forms-booking__stepper-label {
	font-size: var(--wb-forms-booking-stepper-label-fs);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 100%;
	font-weight: 600;
}

.wb-forms-booking__stepper-item.is-current .wb-forms-booking__stepper-label {
	color: var(--wb-forms-booking-text);
}

/* ─── Card ─────────────────────────────────────────────────────────────── */
.wb-forms-booking__card {
	display: flex;
	flex-direction: column;
	gap: var(--wb-forms-booking-gap);
	padding: clamp(24px, 4vw, 44px);
	background: var(--wb-forms-booking-surface);
	border-radius: var(--wb-forms-booking-radius);
	/* Inherit from the wrapper so the parent block's per-instance
	 * `textColor` (serialised by WP as `has-text-color` +
	 * `has-*-color { color: ... !important }` on the wrapper) cascades
	 * into every widget. The wrapper's color rule below supplies the
	 * default. */
	color: inherit;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

/* Headings inside the card pick up theme.json's serif treatment via the
 * #2041 element-style block; we only ensure margin behaves. Colour
 * inherits from the wrapper so per-instance `textColor` cascades. */
.wb-forms-booking__card h1,
.wb-forms-booking__card h2,
.wb-forms-booking__card h3,
.wb-forms-booking__card h4 {
	margin: 0;
	color: inherit;
}

/* Selected-date subtitle (rendered just under the calendar by the
 * booking-calendar widget). */
.wb-forms-booking__selection-summary {
	margin: 0;
	text-align: center;
	color: var(--wb-forms-booking-highlight);
	font-weight: 500;
	letter-spacing: 0.01em;
}

.wb-forms-booking__selection-summary[hidden] {
	display: none;
}

/* Subtitle for Step 2 / 3 (e.g. "Thursday 21 May 2026 · 2 guests"). */
.wb-forms-booking__step-subtitle {
	margin: -12px 0 0;
	color: var(--wb-forms-booking-muted);
	font-size: 0.9375rem;
}

/* ─── Navigation ──────────────────────────────────────────────────────── */
.wb-forms-booking__nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	margin-top: 4px;
}

.wb-forms-booking__nav button[hidden] {
	display: none;
}

.wb-forms-booking__nav-back {
	background: transparent;
	border: 1px solid var(--wb-forms-booking-line);
	color: var(--wb-forms-booking-text);
	padding: 12px 24px;
	border-radius: var(--wb-forms-booking-radius-pill);
	font-size: 0.9375rem;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.15s ease;
}

.wb-forms-booking__nav-back:hover {
	background: var(--wb-forms-booking-input-bg);
}

.wb-forms-booking__nav-next,
.wb-forms-booking__nav-submit {
	background: var(--wb-forms-booking-accent);
	color: var(--wb-forms-booking-accent-text);
	border: none;
	padding: 14px 28px;
	border-radius: var(--wb-forms-booking-radius-pill);
	font-size: 0.9375rem;
	font-weight: 600;
	cursor: pointer;
	margin-inline-start: auto;
	transition:
		background 0.15s ease,
		opacity 0.15s ease;
}

.wb-forms-booking__nav-next:hover:not([disabled]),
.wb-forms-booking__nav-submit:hover:not([disabled]) {
	filter: brightness(1.08);
}

.wb-forms-booking__nav-next[disabled],
.wb-forms-booking__nav-submit[disabled] {
	background: var(--wb-forms-booking-input-bg);
	color: var(--wb-forms-booking-muted);
	cursor: not-allowed;
}

/* ─── Status banner ───────────────────────────────────────────────────── */
.wb-forms-booking__status {
	margin: 0;
	padding: 12px 16px;
	border-radius: var(--wb-forms-booking-radius-sm);
	background: var(--wb-forms-booking-input-bg);
	color: var(--wb-forms-booking-text);
	font-size: 0.9375rem;
}

.wb-forms-booking__status--error {
	background: rgba(192, 57, 43, 0.08);
	color: var(--wp--preset--color--error, #c0392b);
}

.wb-forms-booking__status[hidden] {
	display: none;
}

/* ─── Success panel ───────────────────────────────────────────────────── */
.wb-forms-booking__success {
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: center;
	text-align: center;
	padding: 40px 28px;
	border-radius: var(--wb-forms-booking-radius);
	background: var(--wb-forms-booking-surface);
}

.wb-forms-booking__success[hidden] {
	display: none;
}

.wb-forms-booking__success-message {
	margin: 0;
	font-size: 1.0625rem;
	line-height: 1.5;
	color: var(--wb-forms-booking-text);
	max-width: 480px;
}

.wb-forms-booking__success-reset {
	background: transparent;
	border: 1px solid var(--wb-forms-booking-line);
	color: var(--wb-forms-booking-text);
	padding: 10px 22px;
	border-radius: var(--wb-forms-booking-radius-pill);
	font-size: 0.9375rem;
	cursor: pointer;
	transition: background 0.15s ease;
}

.wb-forms-booking__success-reset:hover {
	background: var(--wb-forms-booking-input-bg);
}

/* ─── Fallback when orders-for-woocommerce is inactive ───────────────── */
.wb-forms-booking__fallback {
	padding: 20px 24px;
	border-radius: var(--wb-forms-booking-radius);
	background: var(--wb-forms-booking-input-bg);
	color: var(--wb-forms-booking-text);
}

.wb-forms-booking__fallback p {
	margin: 0;
}

/* ─── Field overrides (inside the booking card) ────────────────────────
 * Workbench-forms input blocks (text-input / email-input / phone-input /
 * select / textarea / radio-group) ship their own minimal global styles.
 * Inside the booking card we re-skin them to the wizard's filled / pill
 * palette so the wizard reads as a single connected surface.
 */
.wb-forms-booking__card .wb-form-field,
.wb-forms-booking__card .wb-form-textarea {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.wb-forms-booking__card .wb-form-field__label,
.wb-forms-booking__card .wb-form-textarea__label {
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--wb-forms-booking-text);
	/* The textarea block declares its label as a regular `.wb-form-textarea__label`
	 * span; without resetting the cascade, it inherits the theme's default
	 * heading scale (which is what the screenshots showed — "Dietary
	 * requirements" rendered at h2 size). The font-family / line-height
	 * pin keeps it inline with the rest of the booking card. */
	font-family: inherit;
	line-height: 1.4;
	margin: 0;
}

.wb-forms-booking__card .wb-form-field__required,
.wb-forms-booking__card .wb-form-textarea__required {
	color: var(--wb-forms-booking-highlight);
	font-weight: 700;
}

/* Outlined input style — matches the workbench/form contact-form aesthetic
 * (thin neutral border, no filled background) so the whole card reads as
 * one surface rather than nested panels. */
.wb-forms-booking__card .wb-forms-input,
.wb-forms-booking__card .wb-form-textarea textarea,
.wb-forms-booking__card .wb-form-phone .iti__tel-input,
.wb-forms-booking__card .wb-form-field input[type="text"],
.wb-forms-booking__card .wb-form-field input[type="email"],
.wb-forms-booking__card .wb-form-field input[type="tel"],
.wb-forms-booking__card .wb-form-field select,
.wb-forms-booking__card .wb-form-field textarea {
	width: 100%;
	padding: 14px 18px;
	background: transparent;
	border: 1px solid var(--wb-forms-booking-line);
	border-radius: var(--wb-forms-booking-radius-sm);
	color: var(--wb-forms-booking-text);
	font-size: 1rem;
	font-family: inherit;
	transition: border-color 0.15s ease;
}

.wb-forms-booking__card .wb-forms-input:focus,
.wb-forms-booking__card .wb-form-textarea textarea:focus,
.wb-forms-booking__card .wb-form-field input:focus,
.wb-forms-booking__card .wb-form-field select:focus,
.wb-forms-booking__card .wb-form-field textarea:focus {
	outline: none;
	border-color: var(--wb-forms-booking-accent);
}

.wb-forms-booking__card .wb-forms-input::placeholder,
.wb-forms-booking__card .wb-form-textarea textarea::placeholder,
.wb-forms-booking__card .wb-form-field input::placeholder,
.wb-forms-booking__card .wb-form-field textarea::placeholder {
	color: var(--wb-forms-booking-muted);
	opacity: 1;
}

/* Step content lays its children out as a wrapping flex row. Direct
 * children default to full-width (`flex: 1 1 100%`); fields opted
 * into half-width via `fieldWidth: 'half'` flip to `1 1 calc(50% - 9px)`
 * so two siblings fit side by side with the 18px gap.
 *
 * Both the frontend render.php and the editor's booking-step Edit
 * wrap inner content in `.wb-forms-booking__step-inner`; the editor
 * additionally injects WP's `.block-editor-block-list__layout` inside
 * that wrapper, so we flatten both for layout. */
.wb-forms-booking__step-inner,
.wb-forms-booking__step-inner .block-editor-block-list__layout {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 18px;
}

.wb-forms-booking__step-inner > *,
.wb-forms-booking__step-inner .block-editor-block-list__layout > * {
	flex: 1 1 100%;
	min-width: 0;
	max-width: 100%;
}

.wb-forms-booking__step-inner > .wb-form-field--half-width,
.wb-forms-booking__step-inner
	.block-editor-block-list__layout
	> .wb-form-field--half-width {
	flex: 1 1 calc(50% - 9px);
	max-width: calc(50% - 9px);
}

/* Stack half-width fields on small viewports. */
@media (max-width: 540px) {
	.wb-forms-booking__step-inner > .wb-form-field--half-width,
	.wb-forms-booking__step-inner
		.block-editor-block-list__layout
		> .wb-form-field--half-width {
		flex: 1 1 100%;
		max-width: 100%;
	}
}

/* Radio-group (seating-preference pill toggle) inside the booking card. */
.wb-forms-booking__card .wb-form-radio-group {
	border: 0;
	padding: 0;
	margin: 0;
}

.wb-forms-booking__card .wb-form-radio-group__legend {
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--wb-forms-booking-text);
	padding: 0;
	margin-bottom: 10px;
}

.wp-block-workbench-booking-form .wb-form-radio-group__options {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin: 0;
}

.wp-block-workbench-booking-form .wb-form-radio-group__option {
	position: relative;
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	width: auto;
	padding: 10px 22px;
	border: 1px solid var(--wb-forms-booking-line);
	border-radius: var(--wb-forms-booking-radius-pill);
	background: var(--wb-forms-booking-surface);
	color: var(--wb-forms-booking-text);
	cursor: pointer;
	font-size: 0.9375rem;
	line-height: 1.2;
	transition:
		background 0.15s ease,
		border-color 0.15s ease,
		color 0.15s ease;
}

.wp-block-workbench-booking-form .wb-form-radio-group__option:hover {
	border-color: var(--wb-forms-booking-accent);
}

.wp-block-workbench-booking-form
	.wb-form-radio-group__option
	input[type="radio"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.wp-block-workbench-booking-form
	.wb-form-radio-group__option:has(input[type="radio"]:checked) {
	background: var(--wb-forms-booking-accent);
	border-color: var(--wb-forms-booking-accent);
	color: var(--wb-forms-booking-accent-text);
}

.wp-block-workbench-booking-form
	.wb-form-radio-group__option:has(input[type="radio"]:focus-visible) {
	outline: 2px solid var(--wb-forms-booking-accent);
	outline-offset: 2px;
}

/* The label's inner <span> inherits text colour from the label so
 * it flips to white when the radio is checked. Without this, the
 * theme's default label-span colour bleeds through. */
.wp-block-workbench-booking-form .wb-form-radio-group__option span {
	color: inherit;
	line-height: inherit;
}

/* Select dropdown chevron — the native arrow looks off against the
 * filled background; replace with an SVG chevron. */
.wb-forms-booking__card .wb-form-field select {
	appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
	background-repeat: no-repeat;
	background-position: right 18px center;
	background-size: 16px;
	padding-right: 44px;
	cursor: pointer;
}

/* Two-column row helper. Used by markup that wraps Name + Phone in
 * a `.wb-forms-booking__field-row` grid container. The default
 * template doesn't use this today; provided so theme authors can
 * adopt it for visual parity with the design mockup. */
.wb-forms-booking__card .wb-forms-booking__field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

@media (max-width: 540px) {
	.wb-forms-booking__card .wb-forms-booking__field-row {
		grid-template-columns: 1fr;
	}
}

/* ─── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 540px) {
	.wb-forms-booking__stepper-label {
		display: none;
	}

	.wb-forms-booking__stepper-badge {
		width: 32px;
		height: 32px;
	}

	.wb-forms-booking__stepper-item:not(:first-child)::before {
		top: 16px;
		left: calc(-50% + 20px);
		right: calc(50% + 20px);
	}
}

/* ─── Reduced motion ──────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
	.wb-forms-booking__stepper-badge,
	.wb-forms-booking__nav-back,
	.wb-forms-booking__nav-next,
	.wb-forms-booking__nav-submit,
	.wb-forms-booking__card .wb-form-radio-group__option,
	.wb-forms-booking__card .wb-forms-input,
	.wb-forms-booking__card .wb-form-textarea textarea,
	.wb-forms-booking__card .wb-form-field input,
	.wb-forms-booking__card .wb-form-field select,
	.wb-forms-booking__card .wb-form-field textarea {
		transition: none;
	}
}
