/* ── PXC Appointments – Frontend Styles ──────────────────────────────────── */

/*
 * Button reset: neutralise theme defaults. Specificity is intentionally LOW
 * so that our own button selectors (which all carry .pxca-booking prefix)
 * reliably override it — and so does the theme reset above them.
 */
.pxca-booking button {
	color: var(--pxca-text);
	font-family: inherit;
	font-size: inherit;
	background: transparent;
	border: none;
	padding: 0;
	margin: 0;
	cursor: pointer;
	text-transform: none;
	letter-spacing: normal;
	box-shadow: none;
	text-decoration: none;
}

/*
 * GLOBAL HOVER/FOCUS NEUTRALISER — do not remove.
 * Some themes/reset stylesheets (e.g. the active site's reset.css) set an
 * accent background on EVERY button:hover / :focus (here a magenta #cc3366).
 * That bled into every button we add unless we explicitly overrode :hover.
 * This rule neutralises it for ALL buttons inside our container in one place,
 * so any new button is safe by default. Specificity (0,2,1) beats the bare
 * `button:hover` (0,1,1); our own .pxca-btn--* variants (≥0,3,0) still win.
 */
.pxca-booking button:hover,
.pxca-booking button:focus,
.pxca-booking button:active {
	background-color: transparent;
	color: inherit;
}

.pxca-booking {
	/* ── Brand (overridden by inline style from settings) ── */
	--pxca-primary:        #2563eb;
	--pxca-primary-h:      color-mix(in srgb, var(--pxca-primary) 82%, black);
	--pxca-primary-light:  color-mix(in srgb, var(--pxca-primary) 9%, white);
	--pxca-primary-border: color-mix(in srgb, var(--pxca-primary) 28%, white);
	--pxca-primary-text:   #ffffff;

	/* ── Semantic ── */
	--pxca-success:    #16a34a;
	--pxca-error:      #dc2626;
	--pxca-error-bg:   #fef2f2;
	--pxca-error-brd:  #fecaca;

	/* ── Neutrals ── */
	--pxca-border:    #e5e7eb;
	--pxca-bg:        #f9fafb;
	--pxca-bg-white:  #ffffff;
	--pxca-text:      #111827;
	--pxca-muted:     #6b7280;

	/* ── Card colors (overridable via Settings → Design) ── */
	--pxca-card-bg:    #ffffff;
	--pxca-card-hover: #eff6ff;

	/* ── Shape ── */
	--pxca-radius:    10px;
	--pxca-radius-lg: 16px;
	--pxca-shadow:    0 2px 8px rgba(0,0,0,.07);

	font-family: inherit;
	color: var(--pxca-text);
	width: 100%;
	box-sizing: border-box;
	position: relative;
}
.pxca-booking *,
.pxca-booking *::before,
.pxca-booking *::after { box-sizing: border-box; }

/* ── Steps ───────────────────────────────────────────────────────────────── */
.pxca-step--hidden { display: none !important; }
.pxca-step         { padding: 2.5rem 0; }

.pxca-step__title {
	font-size: 1.4rem;
	font-weight: 700;
	margin: 0 0 1.75rem;
}

/* ── Back button ─────────────────────────────────────────────────────────── */
.pxca-booking .pxca-back-btn {
	display: inline-flex;
	align-items: center;
	gap: .3rem;
	background: transparent;
	border: 1.5px solid var(--pxca-border);
	border-radius: var(--pxca-radius);
	color: var(--pxca-muted);
	cursor: pointer;
	font-size: .875rem;
	font-family: inherit;
	padding: .45rem .9rem;
	margin-bottom: 1.5rem;
	transition: color .15s, border-color .15s, background .15s;
}
.pxca-booking .pxca-back-btn:hover {
	color: var(--pxca-primary);
	border-color: var(--pxca-primary-border);
	background: var(--pxca-primary-light);
}

/* ── Type Selection ──────────────────────────────────────────────────────── */
.pxca-type-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.pxca-booking .pxca-type-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: .9rem;
	padding: 3rem 2rem;
	min-height: 220px;
	border: 2px solid var(--pxca-border);
	border-radius: var(--pxca-radius-lg);
	background: var(--pxca-bg-white);
	cursor: pointer;
	text-align: center;
	transition: border-color .18s, box-shadow .18s, background .18s;
}
.pxca-booking .pxca-type-btn:hover,
.pxca-booking .pxca-type-btn:focus-visible {
	border-color: var(--pxca-primary);
	box-shadow: 0 0 0 4px var(--pxca-primary-light);
	background: var(--pxca-bg-white);
	color: var(--pxca-text);
	outline: none;
}
.pxca-type-btn__icon  { font-size: 3rem; line-height: 1; color: var(--pxca-primary); }
.pxca-type-btn__icon i,
.pxca-type-btn__icon .fa-duotone {
	color: var(--pxca-primary);
	--fa-primary-color: var(--pxca-primary);
	--fa-secondary-color: var(--pxca-primary);
	--fa-secondary-opacity: 0.38;
}
.pxca-type-btn__label { font-weight: 700; font-size: 1.2rem; }
.pxca-type-btn__sub   { font-size: .9rem; color: var(--pxca-muted); }

/* ── Location Grid ───────────────────────────────────────────────────────── */
.pxca-location-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 1rem;
}

.pxca-booking .pxca-location-btn {
	display: flex;
	flex-direction: column;
	gap: .4rem;
	padding: 1.5rem 1.75rem;
	border: 2px solid var(--pxca-border);
	border-radius: var(--pxca-radius);
	background: var(--pxca-bg-white);
	text-align: left;
	cursor: pointer;
	font-family: inherit;
	transition: border-color .15s, box-shadow .15s, background .15s;
}
.pxca-booking .pxca-location-btn:hover,
.pxca-booking .pxca-location-btn:focus-visible {
	border-color: var(--pxca-primary);
	box-shadow: 0 0 0 4px var(--pxca-primary-light);
	background: var(--pxca-bg-white);
	outline: none;
}
.pxca-location-btn strong { font-size: 1.05rem; }
.pxca-location-btn span   { font-size: .875rem; color: var(--pxca-muted); }

/* ── Calendar ────────────────────────────────────────────────────────────── */
.pxca-calendar {
	border: 1px solid var(--pxca-border);
	border-radius: var(--pxca-radius-lg);
	overflow: hidden;
	background: var(--pxca-bg-white);
	box-shadow: var(--pxca-shadow);
}

.pxca-calendar__nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem 1.75rem;
	background: var(--pxca-bg);
	border-bottom: 1px solid var(--pxca-border);
}

.pxca-booking .pxca-calendar__nav-btn {
	background: var(--pxca-bg-white);
	border: 1px solid var(--pxca-border);
	border-radius: var(--pxca-radius);
	cursor: pointer;
	font-size: 1.1rem;
	color: var(--pxca-text);
	padding: .55rem 1rem;
	transition: background .12s, border-color .12s, color .12s;
	line-height: 1;
}
.pxca-booking .pxca-calendar__nav-btn:hover {
	background: var(--pxca-primary-light);
	border-color: var(--pxca-primary-border);
	color: var(--pxca-primary);
}

.pxca-calendar__month-label {
	font-weight: 700;
	font-size: 1.15rem;
}

.pxca-calendar__grid { padding: 1.5rem; }

.pxca-calendar__weekdays,
.pxca-calendar__days   { display: grid; grid-template-columns: repeat(7, 1fr); }

.pxca-calendar__weekdays { margin-bottom: .5rem; }
.pxca-calendar__weekdays span {
	text-align: center;
	padding: .4rem 0;
	font-size: .78rem;
	font-weight: 700;
	color: var(--pxca-muted);
	text-transform: uppercase;
	letter-spacing: .05em;
}

.pxca-calendar__days { gap: 4px; }

.pxca-calendar__day {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	border-radius: var(--pxca-radius);
	font-size: .95rem;
	cursor: default;
	color: var(--pxca-muted);
	transition: background .3s, color .3s;
	user-select: none;
}
.pxca-calendar__day--empty { visibility: hidden; }

.pxca-calendar__day--available {
	color: var(--pxca-text);
	font-weight: 700;
	cursor: pointer;
	background: var(--pxca-primary-light);
}
.pxca-calendar__day--available::after {
	content: '';
	position: absolute;
	bottom: 7px;
	left: 50%;
	transform: translateX(-50%);
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--pxca-primary);
}
.pxca-calendar__day--available:hover,
.pxca-calendar__day--available:focus-visible {
	background: var(--pxca-primary);
	color: var(--pxca-primary-text);
	outline: none;
}
.pxca-calendar__day--available:hover::after,
.pxca-calendar__day--available:focus-visible::after {
	background: rgba(255,255,255,.6);
}
.pxca-calendar__day--selected {
	background: var(--pxca-primary) !important;
	color: var(--pxca-primary-text) !important;
	box-shadow: 0 2px 8px color-mix(in srgb, var(--pxca-primary) 40%, transparent);
}
.pxca-calendar__day--selected::after { background: rgba(255,255,255,.6) !important; }
.pxca-calendar__day--past { opacity: .28; }

/* ── Topbar: Zurück-Button (links) + zentrierter Stepper ─────────────────── */
.pxca-topbar {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: .75rem;
	padding: .9rem 0 1.5rem;
}
.pxca-topbar__spacer { display: block; }

.pxca-booking .pxca-global-back {
	justify-self: start;
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	background: transparent;
	border: 1.5px solid var(--pxca-border);
	border-radius: var(--pxca-radius);
	color: var(--pxca-muted);
	cursor: pointer;
	font-size: .875rem;
	font-family: inherit;
	padding: .45rem .9rem;
	transition: color .15s, border-color .15s, background .15s;
}
.pxca-booking .pxca-global-back:hover {
	color: var(--pxca-primary);
	border-color: var(--pxca-primary-border);
	background: var(--pxca-primary-light);
}
.pxca-booking .pxca-global-back[hidden] { display: none; }

/* ── Smart Progress Pills (Stepper + Summary) ────────────────────────────── */
.pxca-stepper {
	grid-column: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: .4rem;
}
.pxca-stepper--hidden { display: none !important; }

.pxca-stepper__item {
	display: inline-flex;
	align-items: center;
	gap: .3rem;
	padding: .38rem .9rem;
	border-radius: 999px;
	font-size: .82rem;
	font-weight: 600;
	white-space: nowrap;
	line-height: 1.4;
	transition: background .25s, color .25s, border-color .25s, box-shadow .25s;
}
.pxca-stepper__item--pending {
	background: var(--pxca-bg);
	color: var(--pxca-muted);
	border: 1.5px solid var(--pxca-border);
}
.pxca-stepper__item--active {
	background: var(--pxca-bg-white);
	color: var(--pxca-primary);
	border: 1.5px solid var(--pxca-primary);
	box-shadow: 0 0 0 3px var(--pxca-primary-light);
}
.pxca-stepper__item--done {
	background: var(--pxca-primary-light);
	color: var(--pxca-primary);
	border: 1.5px solid var(--pxca-primary-border);
}
.pxca-stepper__check {
	font-size: .75rem;
	opacity: .85;
}
/* Compact step number — hidden on desktop, shown instead of the label on mobile. */
.pxca-stepper__num {
	display: none;
	align-items: center;
	justify-content: center;
}
.pxca-stepper__label {
	display: inline-flex;
	align-items: center;
	gap: .3rem;
}
.pxca-stepper__sep {
	color: var(--pxca-border);
	font-size: .85rem;
	user-select: none;
	flex-shrink: 0;
}

/* ── Loading ─────────────────────────────────────────────────────────────── */
.pxca-loading {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2.5rem;
}

.pxca-spinner {
	display: inline-block;
	width: 28px;
	height: 28px;
	border: 3px solid var(--pxca-border);
	border-top-color: var(--pxca-primary);
	border-radius: 50%;
	animation: pxca-spin .65s linear infinite;
	flex-shrink: 0;
}

.pxca-spinner--inline {
	display: inline-block;
	width: 18px;
	height: 18px;
	border: 2px solid rgba(255,255,255,.35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: pxca-spin .65s linear infinite;
	vertical-align: middle;
}

.pxca-spinner--lg {
	width: 48px;
	height: 48px;
	border-width: 4px;
}

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

/* ── Loading overlay ─────────────────────────────────────────────────────── */
.pxca-loading-overlay {
	position: absolute;
	inset: 0;
	background: rgba(255,255,255,.88);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
	border-radius: var(--pxca-radius);
}
.pxca-loading-overlay__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}
.pxca-loading-overlay__inner p {
	font-size: .95rem;
	color: var(--pxca-muted);
	margin: 0;
}

/* ── Time Slots ──────────────────────────────────────────────────────────── */
.pxca-slots {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid var(--pxca-border);
}
.pxca-slots--hidden { display: none; }

.pxca-slots__title {
	font-size: 1rem;
	font-weight: 700;
	margin: 0 0 1rem;
}

.pxca-slots__list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
	gap: .875rem;
}

.pxca-booking .pxca-slot-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: .25rem;
	padding: 1.1rem 1rem;
	border: 2px solid var(--pxca-border);
	border-radius: var(--pxca-radius);
	background: var(--pxca-card-bg);
	color: var(--pxca-text);
	cursor: pointer;
	font-weight: 700;
	font-size: .95rem;
	font-family: inherit;
	width: 100%;
	transition: border-color .15s, background .15s, box-shadow .15s, color .15s;
}
.pxca-slot-btn small { font-size: .78rem; font-weight: 400; color: var(--pxca-muted); }
.pxca-booking .pxca-slot-btn:hover,
.pxca-booking .pxca-slot-btn:focus-visible {
	border-color: var(--pxca-primary);
	background: var(--pxca-card-hover);
	color: var(--pxca-primary);
	box-shadow: 0 2px 8px color-mix(in srgb, var(--pxca-primary) 15%, transparent);
	outline: none;
}
.pxca-no-slots { color: var(--pxca-muted); font-size: .95rem; }

/* ── Global Summary Card ─────────────────────────────────────────────────── */
.pxca-global-summary {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: .35rem .75rem;
	background: var(--pxca-bg);
	border: 1px solid var(--pxca-border);
	border-radius: var(--pxca-radius);
	padding: .75rem 1.25rem;
	margin-bottom: 1.5rem;
	font-size: .875rem;
}
.pxca-global-summary--hidden { display: none !important; }

.pxca-global-summary__item {
	display: inline-flex;
	align-items: baseline;
	gap: .3rem;
	white-space: nowrap;
}
.pxca-global-summary__label { color: var(--pxca-muted); }
.pxca-global-summary__value { font-weight: 600; color: var(--pxca-text); }
.pxca-global-summary__sep  {
	color: var(--pxca-border);
	font-size: .85rem;
	user-select: none;
	flex-shrink: 0;
}

/* ── Customer form ───────────────────────────────────────────────────────── */
.pxca-form {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: .75rem;
	max-width: none;
	width: 100%;
	text-align: left;
}
.pxca-form__field         { text-align: left; }
.pxca-form__field--full   { grid-column: 1 / -1; }
/* No reserved height when empty → consistent field spacing; shows only on error. */
.pxca-form__error { color: var(--pxca-error); font-size: .8rem; display: block; margin-top: .3rem; }
.pxca-form__error:empty { display: none; }

/* ─────────────────────────────────────────────────────────────────────────
 * UNIFIED FORM CONTROLS — floating labels. One look for EVERY input/textarea/
 * select the plugin renders on the frontend (booking + voucher shop). Each
 * control needs placeholder=" " and a <label class="pxca-float"> right AFTER it.
 * ───────────────────────────────────────────────────────────────────────── */
.pxca-booking .pxca-field { position: relative; width: 100%; text-align: left; }

.pxca-booking .pxca-control {
	width: 100%;
	height: 3.5rem;
	padding: 1.35rem .9rem .35rem;
	border: 1.5px solid var(--pxca-border);
	border-radius: var(--pxca-radius);
	font-size: 1rem;
	font-family: inherit;
	color: var(--pxca-text);
	background: var(--pxca-bg-white);
	transition: border-color .15s, box-shadow .15s;
	box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
}
.pxca-booking textarea.pxca-control { height: auto; min-height: 6.5rem; padding-top: 1.6rem; resize: vertical; }
.pxca-booking .pxca-control::placeholder { color: transparent; }   /* the floating label IS the placeholder */
.pxca-booking .pxca-control:focus {
	outline: none;
	border-color: var(--pxca-primary);
	box-shadow: 0 0 0 3px var(--pxca-primary-light);
}

/* Resting state: label sits vertically centred in the field (acts as placeholder). */
.pxca-booking .pxca-float {
	position: absolute;
	left: .95rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1rem;
	color: #9aa3b2;
	pointer-events: none;
	transition: transform .15s ease, font-size .15s ease, color .15s ease, top .15s ease;
}
/* Floated state: small label pinned to the top. */
.pxca-booking .pxca-control:focus + .pxca-float,
.pxca-booking .pxca-control:not(:placeholder-shown) + .pxca-float {
	top: .5rem;
	transform: none;
	font-size: .7rem;
	color: var(--pxca-primary);
}
/* Textarea: label rests near the top (not centred in the tall box). */
.pxca-booking textarea.pxca-control + .pxca-float { top: 1.2rem; transform: none; }
.pxca-booking textarea.pxca-control:focus + .pxca-float,
.pxca-booking textarea.pxca-control:not(:placeholder-shown) + .pxca-float { top: .5rem; }

/* Required-field marker: a centred bullet that follows the label colour
 * (placeholder-grey while resting, accent once the label floats up). */
.pxca-booking .pxca-req { color: inherit; font-size: .55em; vertical-align: middle; margin-left: .2em; }

.pxca-form__checkbox-label {
	display: flex;
	align-items: center;
	gap: .5rem;
	font-size: .95rem;
	color: var(--pxca-text);
	cursor: pointer;
	user-select: none;
}
.pxca-form__checkbox-label input[type="checkbox"] {
	width: 1rem;
	height: 1rem;
	accent-color: var(--pxca-primary);
	cursor: pointer;
	flex-shrink: 0;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.pxca-booking .pxca-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	min-height: 3.5rem;          /* same height as inputs + across both flows */
	padding: 0 1.9rem;
	border: none;
	border-radius: var(--pxca-radius);
	font-size: 1.05rem;
	font-weight: 700;
	font-family: inherit;
	line-height: 1;
	cursor: pointer;
	transition: background .15s, transform .08s, opacity .15s;
}
.pxca-booking .pxca-btn--primary                                       { background: var(--pxca-primary); color: var(--pxca-primary-text); }
.pxca-booking .pxca-btn--primary:hover,
.pxca-booking .pxca-btn--primary:focus                                 { background: var(--pxca-primary-h); color: var(--pxca-primary-text); }
.pxca-booking .pxca-btn--primary:hover                                 { transform: translateY(-1px); }
.pxca-booking .pxca-btn--primary:active                                { transform: none; }
.pxca-booking .pxca-btn--primary:disabled                             { opacity: .6; cursor: not-allowed; transform: none; }

.pxca-booking .pxca-btn--secondary {
	background: var(--pxca-primary-light, #eff6ff);
	color: var(--pxca-primary);
	box-shadow: inset 0 0 0 1.5px var(--pxca-primary-border, #cbd5e1);
}
.pxca-booking .pxca-btn--secondary:hover,
.pxca-booking .pxca-btn--secondary:focus    { background: color-mix(in srgb, var(--pxca-primary) 16%, white); color: var(--pxca-primary); }
.pxca-booking .pxca-btn--secondary:disabled { opacity: .6; cursor: not-allowed; }

.pxca-booking .pxca-form .pxca-btn--primary {
	grid-column: 1 / -1;
	margin-top: .5rem;
}

.pxca-booking .pxca-btn--pay {
	width: 100%;
	margin-top: 1.5rem;
	letter-spacing: .01em;
}

/* ── Payment ─────────────────────────────────────────────────────────────── */
.pxca-payment-wrap { max-width: 520px; margin: 1.5rem auto 0; }
.pxca-cc-discount-note {
	margin: 0 0 1rem;
	padding: .75rem 1rem;
	border-radius: var(--pxca-radius);
	background: color-mix(in srgb, var(--pxca-success) 10%, white);
	border: 1px solid color-mix(in srgb, var(--pxca-success) 30%, white);
	color: color-mix(in srgb, var(--pxca-success) 75%, black);
	font-size: .9rem;
	text-align: center;
}
#pxca-direct-section { text-align: center; }
#pxca-direct-section .pxca-btn { width: 100%; margin-top: .5rem; }
#pxca-direct-info { text-align: center; }

.pxca-card-element {
	padding: 1rem 1.1rem;
	border: 1.5px solid var(--pxca-border);
	border-radius: var(--pxca-radius);
	background: var(--pxca-bg-white);
	transition: border-color .15s, box-shadow .15s;
}
.pxca-card-element:focus-within {
	border-color: var(--pxca-primary);
	box-shadow: 0 0 0 3px var(--pxca-primary-light);
}

.pxca-card-errors {
	color: var(--pxca-error);
	font-size: .875rem;
	min-height: 1.25em;
	margin-top: .5rem;
}

/* ── Amount due ──────────────────────────────────────────────────────────── */
.pxca-payment-amount {
	text-align: center;
	font-size: 2rem;
	font-weight: 800;
	color: var(--pxca-primary);
	line-height: 1.1;
	margin: 0 0 1.5rem;
}
.pxca-payment-amount:empty { display: none; }

/* ── Payment method picker (segmented control, full container width) ──────── */
#pxca-payment-methods-list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: .75rem;
	width: 100%;
	max-width: none;
	margin-top: .5rem;
}

.pxca-booking .pxca-method-seg {
	flex: 1 1 200px;
	min-width: 0;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: .35rem;
	padding: 1rem 1.1rem;
	border: 2px solid var(--pxca-border);
	border-radius: var(--pxca-radius);
	background: var(--pxca-card-bg);
	cursor: pointer;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 600;
	color: var(--pxca-text);
	text-align: center;
	transition: border-color .15s, background .15s, box-shadow .15s, color .15s;
}
/* Oversized, cut-off thin icon as a subtle watermark (bottom-right). */
.pxca-method-seg__bg-icon {
	position: absolute;
	right: -.6rem;
	bottom: -1.1rem;
	font-size: 5rem;
	line-height: 1;
	color: var(--pxca-primary);
	opacity: .06;
	pointer-events: none;
	z-index: 0;
}
/* Keep the real content above the watermark. */
.pxca-method-seg__head,
.pxca-method-seg__note,
.pxca-method-seg__badge { position: relative; z-index: 1; }
/* Prominent discount/condition badge at the top of the card. */
.pxca-booking .pxca-method-seg--badged { padding-top: 2.5rem; padding-bottom: 1.4rem; }
.pxca-method-seg__badge {
	position: absolute;
	top: .85rem;
	left: 50%;
	transform: translateX(-50%);
	display: inline-block;
	max-width: calc(100% - 1.4rem);
	padding: .25rem .7rem;
	border-radius: 999px;
	background: var(--pxca-primary);
	color: #fff;
	font-size: .72rem;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: .01em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	box-shadow: 0 2px 6px rgba(0,0,0,.12);
}
.pxca-booking .pxca-method-seg:hover,
.pxca-booking .pxca-method-seg:focus-visible {
	border-color: var(--pxca-primary);
	background: var(--pxca-card-hover);
	color: var(--pxca-primary);
	outline: none;
}
.pxca-booking .pxca-method-seg.is-active {
	border-color: var(--pxca-primary);
	background: var(--pxca-primary-light);
	color: var(--pxca-primary);
	box-shadow: 0 0 0 3px var(--pxca-primary-light);
}
.pxca-method-seg__head {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
}
.pxca-method-seg__check {
	display: none;
	font-weight: 800;
	flex-shrink: 0;
}
.pxca-booking .pxca-method-seg.is-active .pxca-method-seg__check { display: inline-flex; }
.pxca-method-seg__note {
	font-size: .8rem;
	font-weight: 400;
	color: var(--pxca-muted);
	line-height: 1.3;
}
.pxca-booking .pxca-method-seg.is-active .pxca-method-seg__note { color: inherit; opacity: .85; }

.pxca-package-info {
	margin: 1.75rem 0 0;
	text-align: center;
	color: var(--pxca-muted);
	font-size: 1.1rem;
}
.pxca-package-info a { color: var(--pxca-primary); font-weight: 600; }

/* ── Therapist selection ─────────────────────────────────────────────────── */
.pxca-therapist-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}
.pxca-booking .pxca-therapist-btn {
	flex: 1 1 240px;          /* grow to fill the row; wrap when too many */
	min-width: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.25rem;
	border: 2px solid var(--pxca-border);
	border-radius: var(--pxca-radius-lg);
	background: var(--pxca-card-bg);
	color: var(--pxca-text);
	cursor: pointer;
	font-family: inherit;
	text-align: left;
	transition: border-color .15s, box-shadow .15s, background .15s, color .15s;
}
.pxca-booking .pxca-therapist-btn:hover,
.pxca-booking .pxca-therapist-btn:focus-visible {
	border-color: var(--pxca-primary);
	box-shadow: 0 0 0 4px var(--pxca-primary-light);
	background: var(--pxca-card-hover);
	color: var(--pxca-text);
	outline: none;
}
.pxca-therapist-btn__img,
.pxca-therapist-btn__icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	flex-shrink: 0;
}
.pxca-therapist-btn__img { object-fit: cover; }
.pxca-therapist-btn__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--pxca-primary-light);
	font-size: 1.5rem;
	color: var(--pxca-primary);
	--fa-primary-color: var(--pxca-primary);
	--fa-secondary-color: var(--pxca-primary);
	--fa-secondary-opacity: .38;
}
.pxca-therapist-btn__text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}
.pxca-therapist-btn__name { font-weight: 700; font-size: 1.05rem; overflow-wrap: anywhere; }
.pxca-therapist-btn__sub  { font-size: .8rem; color: var(--pxca-muted); }

/* ── Package selection ───────────────────────────────────────────────────── */
.pxca-packages-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.25rem;
}

.pxca-booking .pxca-package-btn {
	display: flex;
	flex-direction: column;
	gap: .5rem;
	flex: 1 1 220px;
	max-width: 420px;
	min-width: 0;
	overflow: hidden;
	position: relative;
	padding: 1.75rem;
	border: 2px solid var(--pxca-border);
	border-radius: var(--pxca-radius-lg);
	background: var(--pxca-card-bg);
	color: var(--pxca-text);
	text-align: left;
	cursor: pointer;
	font-family: inherit;
	transition: border-color .15s, box-shadow .15s, background .15s, color .15s;
}
.pxca-booking .pxca-package-btn:hover,
.pxca-booking .pxca-package-btn:focus-visible {
	border-color: var(--pxca-primary);
	box-shadow: 0 0 0 4px var(--pxca-primary-light);
	background: var(--pxca-card-hover);
	color: var(--pxca-text);
	outline: none;
}
.pxca-package-btn__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: var(--pxca-primary-light);
	color: var(--pxca-primary);
	font-size: 1.6rem;
	margin-bottom: .5rem;
}
/* Oversized, cut-off thin icon as a very subtle card watermark */
.pxca-package-btn__bg-icon {
	position: absolute;
	right: -1.5rem;
	bottom: -2.5rem;
	font-size: 11rem;
	line-height: 1;
	color: var(--pxca-primary);
	opacity: .05;
	pointer-events: none;
	z-index: 0;
}
/* Keep the actual content above the watermark */
.pxca-package-btn__icon,
.pxca-package-btn__name,
.pxca-package-btn__offer,
.pxca-package-btn__price,
.pxca-package-btn__desc { position: relative; z-index: 1; }
.pxca-package-btn__ribbon { z-index: 2; }

/* Bottom-anchor the text block so titles, prices & descriptions line up across cards */
.pxca-package-btn__name  { margin-top: auto; font-weight: 700; font-size: 1.1rem; color: var(--pxca-text); display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; overflow-wrap: anywhere; }
.pxca-package-btn__price { display: flex; flex-direction: column; line-height: 1.15; }
.pxca-package-btn__price-now { font-size: 1.5rem; font-weight: 800; color: var(--pxca-primary); line-height: 1.1; }
.pxca-package-btn__price-old {
	display: block;
	min-height: 1.25em;          /* reserve the row even when empty, for alignment */
	font-size: 1rem;
	font-weight: 500;
	color: var(--pxca-muted);
	text-decoration: line-through;
	line-height: 1.2;
}
.pxca-package-btn__offer {
	align-self: flex-start;
	display: inline-block;
	padding: .15rem .6rem;
	border-radius: 999px;
	background: #fde68a;
	color: #92400e;
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .02em;
	text-transform: uppercase;
}
.pxca-package-btn__offer--empty { visibility: hidden; }
.pxca-package-btn__desc  { font-size: .875rem; color: var(--pxca-muted); overflow-wrap: anywhere; word-break: break-word; white-space: normal; max-width: 100%; }
.pxca-package-btn__badge {
	display: inline-block;
	padding: .15rem .55rem;
	border-radius: 999px;
	background: var(--pxca-primary);
	color: var(--pxca-primary-text);
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .03em;
	text-transform: uppercase;
}

/* Highlighted ("Beliebt") package */
.pxca-booking .pxca-package-btn--highlight {
	border-color: var(--pxca-primary);
	box-shadow: 0 0 0 3px var(--pxca-primary-light);
	background: color-mix(in srgb, var(--pxca-primary) 5%, var(--pxca-card-bg));
}
.pxca-package-btn__ribbon {
	position: absolute;
	top: 0;
	right: 0;
	padding: .3rem .85rem;
	background: var(--pxca-primary);
	color: var(--pxca-primary-text);
	font-size: .7rem;
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
	border-bottom-left-radius: var(--pxca-radius);
}

/* ── Group sessions ──────────────────────────────────────────────────────── */
.pxca-group-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 1.25rem;
}

.pxca-booking .pxca-group-card {
	display: flex;
	flex-direction: column;
	gap: .35rem;
	padding: 1.5rem 1.75rem;
	border: 2px solid var(--pxca-border);
	border-radius: var(--pxca-radius-lg);
	background: var(--pxca-card-bg);
	color: var(--pxca-text);
	text-align: left;
	cursor: pointer;
	font-family: inherit;
	transition: border-color .15s, box-shadow .15s, background .15s, color .15s;
}
.pxca-booking .pxca-group-card:hover,
.pxca-booking .pxca-group-card:focus-visible {
	border-color: var(--pxca-primary);
	box-shadow: 0 0 0 4px var(--pxca-primary-light);
	background: var(--pxca-card-hover);
	color: var(--pxca-text);
	outline: none;
}
/* Prominent type pill, centered at the top of the card. */
.pxca-group-card__pill {
	align-self: flex-start;
	margin: 0 0 .55rem;
	padding: .3rem .95rem;
	border-radius: 999px;
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .07em;
	text-transform: uppercase;
	line-height: 1.2;
}
.pxca-group-card__pill--online {
	background: var(--pxca-primary-light);
	color: var(--pxca-primary);
}
.pxca-group-card__pill--onsite {
	background: #ede9fe;
	color: #6d28d9;
}
.pxca-group-card__when    { display: flex; flex-direction: column; }
.pxca-group-card__weekday { font-weight: 700; font-size: 1.1rem; line-height: 1.25; color: var(--pxca-text); }
.pxca-group-card__date    { font-weight: 600; font-size: .92rem; color: var(--pxca-muted); }
.pxca-group-card__meta    { display: flex; flex-wrap: wrap; align-items: baseline; gap: .15rem .55rem; margin-top: .1rem; }
.pxca-group-card__time    { font-size: .95rem; font-weight: 700; color: var(--pxca-primary); }
.pxca-group-card__title   { font-size: .9rem; color: var(--pxca-muted); }
.pxca-group-card__spots {
	margin-top: .4rem;
	align-self: flex-start;
	padding: .2rem .6rem;
	border-radius: 999px;
	background: color-mix(in srgb, var(--pxca-success) 12%, white);
	color: var(--pxca-success);
	font-size: .78rem;
	font-weight: 700;
}
.pxca-group-card__spots--low {
	background: #fff4e5;
	color: #b45309;
}
.pxca-group-card__status {
	margin-top: .4rem;
	align-self: flex-start;
	padding: .2rem .6rem;
	border-radius: 999px;
	font-size: .78rem;
	font-weight: 700;
}
.pxca-group-card__status--go {
	background: color-mix(in srgb, var(--pxca-success) 14%, white);
	color: var(--pxca-success);
}
.pxca-group-card__status--wait {
	background: #fff4e5;
	color: #b45309;
}

/* ── Confirmation ────────────────────────────────────────────────────────── */
.pxca-confirmation {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 3rem 1rem 2rem;
}
.pxca-confirmation__icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: color-mix(in srgb, var(--pxca-success) 12%, white);
	color: var(--pxca-success);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}
.pxca-confirmation__title {
	font-size: 1.6rem;
	font-weight: 800;
	margin: 0 0 .5rem;
	text-align: center;
	width: 100%;
	max-width: 480px;
}
.pxca-confirmation__subtitle {
	font-size: 1rem;
	color: var(--pxca-muted);
	margin: 0 0 1.5rem;
	text-align: center;
	max-width: 480px;
	line-height: 1.5;
}
.pxca-confirmation__details {
	background: var(--pxca-bg);
	border: 1px solid var(--pxca-border);
	border-radius: var(--pxca-radius);
	padding: 1rem 1.5rem;
	text-align: left;
	margin-bottom: 1.25rem;
	width: 100%;
	max-width: 480px;
}
.pxca-confirmation__row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 1rem;
	padding: .6rem 0;
	border-bottom: 1px solid var(--pxca-border);
	font-size: .95rem;
}
.pxca-confirmation__row:last-child { border-bottom: none; }
.pxca-confirmation__row-label {
	font-weight: 600;
	color: var(--pxca-text);
	flex-shrink: 0;
}
.pxca-confirmation__row-value {
	text-align: right;
	color: var(--pxca-muted);
	word-break: break-word;
}
.pxca-confirmation__row-value a { color: var(--pxca-primary); }
.pxca-confirmation__note {
	color: var(--pxca-muted);
	font-size: .9rem;
	margin: 0;
	width: 100%;
	max-width: 480px;
	text-align: center;
}

/* ── Error message ───────────────────────────────────────────────────────── */
.pxca-error-msg {
	color: var(--pxca-error);
	background: var(--pxca-error-bg);
	border: 1px solid var(--pxca-error-brd);
	border-radius: var(--pxca-radius);
	padding: .75rem 1rem;
	font-size: .9rem;
	margin-bottom: 1rem;
}

/* ── Elementor integration ───────────────────────────────────────────────── */
.elementor-widget:has(#pxca-booking),
.elementor-widget-html:has(#pxca-booking) {
	width: 100% !important;
	max-width: 100% !important;
	flex-basis: 100% !important;
	align-self: stretch !important;
}

/* ── Mobile ──────────────────────────────────────────────────────────────── */
@media (max-width: 720px) {
	.pxca-form { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
	/* Topbar: back button centered ABOVE the stepper */
	.pxca-topbar          { grid-template-columns: 1fr; gap: .6rem; justify-items: center; }
	.pxca-stepper         { grid-column: 1; }
	.pxca-topbar__spacer  { display: none; }
	.pxca-booking .pxca-global-back { justify-self: center; }

	/* Stepper: compact number pills instead of full labels */
	.pxca-stepper__label  { display: none; }
	.pxca-stepper__num    { display: inline-flex; }
	.pxca-stepper__item {
		padding: 0;
		width: 2rem;
		height: 2rem;
		gap: 0;
		justify-content: center;
		font-size: .85rem;
	}

	/* Package cards fill the full available width */
	.pxca-booking .pxca-package-btn { flex-basis: 100%; max-width: none; }

	/*
	 * Payment method cards: slimmer. In a column-direction list, the base rule
	 * `flex: 1 1 200px` makes flex-basis the HEIGHT (200px) and flex-grow:1
	 * stretches the card to fill the list — hence the oversized cards. Reset to
	 * content height and stack the label/note left-aligned with tight padding.
	 */
	.pxca-booking .pxca-method-seg {
		flex: 0 0 auto;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		gap: .2rem;
		padding: .7rem 1rem;
		text-align: left;
	}
	/* Badge moves to the right edge, vertically centered, next to the label. */
	.pxca-booking .pxca-method-seg--badged { padding: .7rem 1rem; padding-right: 8.75rem; }
	.pxca-method-seg__badge {
		top: 50%;
		left: auto;
		right: 1rem;
		transform: translateY(-50%);
		max-width: 7.5rem;
	}

	.pxca-group-grid      { grid-template-columns: 1fr; }
	.pxca-type-grid { grid-template-columns: 1fr; }
	.pxca-booking .pxca-type-btn {
		min-height: 100px;
		flex-direction: row;
		padding: 1.25rem 1.5rem;
		gap: 1rem;
		text-align: left;
		justify-content: flex-start;
	}
	.pxca-type-btn__icon { font-size: 2rem; }
	.pxca-form              { grid-template-columns: 1fr; }
	#pxca-payment-methods-list { flex-direction: column; }
	.pxca-calendar__grid    { padding: .75rem; }
	.pxca-calendar__day     { min-height: 40px; font-size: .85rem; }
	.pxca-slots__list       { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: .5rem; }
	.pxca-confirmation__title,
	.pxca-confirmation__note { max-width: 100%; }
	.pxca-confirmation__details { max-width: 100%; }
	.pxca-voucher-row { flex-wrap: wrap; }
}

/* ── Voucher redemption (booking step 5) ─────────────────────────────────── */
.pxca-booking .pxca-voucher-box { margin: 0 0 1.75rem; }
/* Small inline button right under the amount — slightly more prominent than a link. */
.pxca-booking .pxca-voucher-toggle {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	margin-top: .75rem;
	padding: .55rem .95rem;
	border: none;
	border-radius: var(--pxca-radius);
	background: var(--pxca-primary-light, #eff6ff);
	box-shadow: inset 0 0 0 1.5px var(--pxca-primary-border, #cbd5e1);
	color: var(--pxca-primary);
	font-weight: 600;
	font-size: .9rem;
	cursor: pointer;
	text-decoration: none;
}
.pxca-booking .pxca-voucher-toggle:hover { background: color-mix(in srgb, var(--pxca-primary) 14%, white); }
.pxca-booking .pxca-voucher-fields { margin-top: .8rem; padding-bottom: .25rem; }
.pxca-booking .pxca-voucher-row {
	display: flex;
	align-items: stretch;
	gap: .5rem;
}
.pxca-booking .pxca-voucher-field { flex: 1; min-width: 0; }
.pxca-booking .pxca-voucher-apply { flex-shrink: 0; }
.pxca-booking .pxca-voucher-remove {
	flex-shrink: 0;
	width: 3.5rem;
	border-radius: var(--pxca-radius);
	background: #f3f4f6;
	color: #6b7280;
	font-size: .9rem;
	line-height: 1;
	border: none;
	cursor: pointer;
}
.pxca-booking .pxca-voucher-msg { margin-top: .45rem; font-size: .85rem; min-height: 1.1em; }
.pxca-booking .pxca-voucher-msg.is-error { color: #dc2626; }
.pxca-booking .pxca-voucher-msg.is-ok    { color: #16a34a; }

/* ── Additional participants (bundle booking, step 4) ────────────────────── */
.pxca-booking .pxca-participants:empty { display: none; }
.pxca-booking .pxca-participants__head {
	font-weight: 700;
	margin: .5rem 0 .25rem;
	padding-top: 1rem;
	border-top: 1.5px solid var(--pxca-border);
}
.pxca-booking .pxca-participant {
	margin-top: 1rem;
	padding: 1rem;
	border: 1.5px solid var(--pxca-border);
	border-radius: var(--pxca-radius);
	background: var(--pxca-bg, #f9fafb);
}
.pxca-booking .pxca-participant__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: .6rem;
}
.pxca-booking .pxca-participant__title { font-weight: 600; font-size: .95rem; color: var(--pxca-muted); }
.pxca-booking .pxca-participant__remove {
	flex-shrink: 0;
	width: 1.9rem;
	height: 1.9rem;
	border-radius: 999px;
	border: none;
	background: #f3f4f6;
	color: #6b7280;
	font-size: .85rem;
	line-height: 1;
	cursor: pointer;
}
.pxca-booking .pxca-participant__remove:hover { background: var(--pxca-error-bg, #fef2f2); color: var(--pxca-error, #dc2626); }
.pxca-booking .pxca-participant__row { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-bottom: .6rem; }
.pxca-booking .pxca-add-participant {
	margin-top: 1rem;
	font-size: .95rem;
	padding: 0 1.1rem;
	min-height: 2.9rem;
}
@media ( max-width: 600px ) { .pxca-booking .pxca-participant__row { grid-template-columns: 1fr; } }

/* ── Secondary booking-mode choice (inline, under the packages) ───────────── */
.pxca-booking .pxca-mode-inline {
	margin-top: 1.25rem;
}
.pxca-booking .pxca-mode-inline__title {
	margin: 0 0 .75rem;
	font-size: 1rem;
	font-weight: 700;
}
.pxca-booking .pxca-package-btn.is-selected {
	border-color: var(--pxca-primary);
	box-shadow: 0 0 0 2px var(--pxca-primary-light, #eff6ff);
}
/* Once a package is chosen, drop the "Beliebt" highlight emphasis from the other
   (non-selected) packages so only the actual selection carries the primary border. */
.pxca-booking .pxca-packages-grid.pxca-has-selection .pxca-package-btn--highlight:not(.is-selected) {
	border-color: var(--pxca-border);
	box-shadow: none;
	background: var(--pxca-card-bg);
}

/* Full width (matches the package row) with two equal, compact cards. */
.pxca-booking .pxca-mode-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
	width: 100%;
}
/* Compact horizontal card, sized like the therapist cards. */
.pxca-booking .pxca-mode-btn {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.25rem;
	border: 2px solid var(--pxca-border);
	border-radius: var(--pxca-radius-lg);
	background: var(--pxca-card-bg);
	color: var(--pxca-text);
	cursor: pointer;
	font-family: inherit;
	text-align: left;
	transition: border-color .15s, box-shadow .15s, background .15s;
}
.pxca-booking .pxca-mode-btn:hover,
.pxca-booking .pxca-mode-btn:focus-visible,
.pxca-booking .pxca-mode-btn.is-active {
	border-color: var(--pxca-primary);
	box-shadow: 0 0 0 4px var(--pxca-primary-light);
	background: var(--pxca-card-hover);
	outline: none;
}
.pxca-booking .pxca-mode-btn__icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--pxca-primary-light);
	font-size: 1.5rem;
	color: var(--pxca-primary);
}
.pxca-booking .pxca-mode-btn__text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.pxca-booking .pxca-mode-btn__label { font-weight: 700; font-size: 1.05rem; }
.pxca-booking .pxca-mode-btn__sub   { font-size: .8rem; color: var(--pxca-muted); }

@media ( max-width: 600px ) {
	.pxca-booking .pxca-mode-grid { grid-template-columns: 1fr; }
}
.pxca-booking .pxca-mode-count {
	margin-top: 1.25rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .75rem;
}
.pxca-booking .pxca-mode-count__label { font-weight: 700; }
.pxca-booking .pxca-mode-count__ctrl { display: inline-flex; align-items: center; gap: 1rem; }
.pxca-booking .pxca-mode-count__btn {
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 999px;
	border: 1.5px solid var(--pxca-primary-border, #cbd5e1);
	background: var(--pxca-primary-light, #eff6ff);
	color: var(--pxca-primary);
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
}
.pxca-booking .pxca-mode-count__val { font-size: 1.5rem; font-weight: 800; min-width: 2ch; text-align: center; }

/* ── Multi-booking: consecutive vs. independent time selection ──────────────── */
.pxca-multi-mode--hidden { display: none; }
.pxca-booking .pxca-multi-mode {
	margin: 0 0 1.25rem;
	padding: 1rem;
	border: 1.5px solid var(--pxca-border, #e2e4e9);
	border-radius: 12px;
	background: #fafbfc;
}
.pxca-booking .pxca-multi-mode__toggle {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}
.pxca-booking .pxca-multi-mode__btn {
	flex: 1 1 0;
	min-width: 12ch;
	padding: 0.6rem 0.9rem;
	border: 1.5px solid var(--pxca-border, #e2e4e9);
	border-radius: 9px;
	background: #fff;
	font: inherit;
	font-weight: 600;
	color: #5b6270;
	cursor: pointer;
	transition: border-color .15s, background .15s, color .15s, box-shadow .15s;
}
.pxca-booking .pxca-multi-mode__btn:hover { border-color: var(--pxca-primary-border); }
.pxca-booking .pxca-multi-mode__btn.is-active {
	color: var(--pxca-primary);
	border-color: var(--pxca-primary);
	background: var(--pxca-primary-light);
	box-shadow: 0 0 0 3px var(--pxca-primary-light);
}
.pxca-booking .pxca-multi-mode__hint { margin: 0.85rem 0 0.5rem; font-size: 0.9rem; color: #5b6270; }
.pxca-booking .pxca-multi-mode__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.35rem; }
.pxca-booking .pxca-multi-mode__person {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.5rem 0.7rem;
	border: 1.5px solid var(--pxca-border, #e2e4e9);
	border-radius: 8px;
	background: #fff;
	font-size: 0.92rem;
}
.pxca-booking .pxca-multi-mode__person.is-current {
	border-color: var(--pxca-primary);
	background: var(--pxca-primary-light);
	color: var(--pxca-primary);
	font-weight: 600;
}
.pxca-booking .pxca-multi-mode__person.is-done { color: #2b3040; }
.pxca-booking .pxca-multi-mode__reset {
	margin-top: 0.75rem;
	padding: 0.4rem 0.8rem;
	border: none;
	background: none;
	color: var(--pxca-primary);
	font: inherit;
	font-weight: 600;
	text-decoration: underline;
	cursor: pointer;
}

/*
 * FULL-WIDTH IN ELEMENTOR — do not remove.
 * Elementor flex containers with `align-items: start` shrink a shortcode widget
 * to its content width (so our 100%-wide block looked narrow). Forcing the
 * widget that wraps our shortcode to stretch makes it fill the container.
 * Scoped via :has() to widgets containing our markup; no effect on non-Elementor
 * themes (the selector simply won't match).
 */
.elementor-widget-shortcode:has(.pxca-booking),
.elementor-widget-shortcode:has(.pxca-voucher-shop) {
	align-self: stretch !important;
	width: 100% !important;
}
