/* =====================================================================
   GBE Chef Pro — Multi-step wizard (mobile-first, editorial)
   Theme variables inherited from editorial or dark-gold theme.
   Aesthetic: menu curato, tipografia da ricettario. Fraunces per numeri
   e prezzi (italic + tabular-nums), DM Sans per UI.
   ===================================================================== */

.gbe-chef-pro {
	max-width: 720px;
	margin: 0 auto;
	padding: 0;
	position: relative;
	/* Avoid odd clipping when this section is dropped inside Elementor / Gutenberg
	   columns that set overflow:hidden by default — the wizard itself stays
	   visually self-contained, but allow descendants (e.g. shadows) to render. */
	overflow: visible;
}
.gbe-chef-pro *,
.gbe-chef-pro *::before,
.gbe-chef-pro *::after {
	box-sizing: border-box;
}

/* === Progress bar ===
   Redesigned again to live cleanly INSIDE the section width — no negative
   margins (they previously caused clipping when the section sat inside an
   Elementor container with overflow:hidden). The progress is now a visually
   distinct band: airy padding, soft separator, sticky to the top of the
   viewport so the user always knows their position in the journey. */
.gbe-cp-progress {
	position: sticky;
	top: 0;
	z-index: 10;
	background: linear-gradient(180deg, #FDFAF4 0%, #FDFAF4 78%, rgba(253,250,244,0.92) 100%);
	padding: 22px 24px 24px;
	margin: 0 0 20px;
	/* Border-radius matches the step cards (.gbe-cp-step → 18px) for visual
	   coherence — no more "square header on rounded body" mismatch. */
	border-radius: 18px;
	border: 1px solid rgba(168, 71, 43, 0.12);
	box-shadow: 0 4px 14px -8px rgba(168, 71, 43, 0.18);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}
.gbe-cp-progress__meta {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: .78rem;
	letter-spacing: .04em;
}
.gbe-cp-progress__step-label {
	color: #6B5A47;
	text-transform: uppercase;
	font-weight: 600;
}
.gbe-cp-progress__current {
	color: #7E2E16;
	font-size: .92rem;
	font-weight: 700;
	font-family: 'Fraunces', Georgia, serif;
	font-style: italic;
	margin: 0 2px;
}
.gbe-cp-progress__sep { opacity: .55; margin: 0 2px; }
.gbe-cp-progress__total { color: #1A1612; font-weight: 600; }
.gbe-cp-progress__pct {
	color: var(--gbe-terracotta, #A8472B);
	font-weight: 700;
	font-feature-settings: 'tnum';
	font-variant-numeric: tabular-nums;
	font-size: .82rem;
	transition: color .3s ease;
}
.gbe-cp-progress.is-complete .gbe-cp-progress__pct { color: #5A6B3A; } /* sage on complete */

.gbe-cp-progress__track {
	position: relative;
	height: 10px;
	background: #EFE3CC;
	border-radius: 999px;
	/* IMPORTANT: no overflow:hidden here — the leading knob extends past the
	   fill's right edge and must remain visible. Shimmer clipping is handled
	   inside the fill itself via clip-path on ::after. */
	box-shadow: inset 0 1px 2px rgba(123, 87, 51, 0.18);
	/* Right inset so when the bar is at 100%, the knob's halo (12px wide)
	   never touches the parent's edge — keeps it visually contained. */
	margin-right: 6px;
}
.gbe-cp-progress__fill {
	position: relative;
	height: 100%;
	background: linear-gradient(90deg,
		#7E2E16 0%,
		var(--gbe-terracotta, #A8472B) 35%,
		#C97A3A 65%,
		#D9A434 100%);
	background-size: 200% 100%;
	background-position: 0 0;
	border-radius: 999px;
	transition: width 580ms var(--gbe-ease, cubic-bezier(.19, 1, .22, 1));
	box-shadow:
		0 0 10px rgba(168, 71, 43, 0.35),
		0 0 22px -2px rgba(217, 164, 52, 0.45);
	min-width: 10px; /* always show a sliver even at 0% */
}
/* Clip the shimmer inside the fill (the knob is OUTSIDE this clip — see below). */
.gbe-cp-progress__fill::after {
	clip-path: inset(0 0 0 0 round 999px);
}
/* Shimmer overlay travelling along the fill — adds life without distraction. */
.gbe-cp-progress__fill::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg,
		transparent 0%,
		rgba(255,255,255,0.55) 50%,
		transparent 100%);
	transform: translateX(-100%);
	animation: gbe-cp-progress-shimmer 2.6s ease-in-out infinite;
}
@keyframes gbe-cp-progress-shimmer {
	0%   { transform: translateX(-100%); }
	60%  { transform: translateX(120%); }
	100% { transform: translateX(120%); }
}
/* Leading knob — a soft round head whose CENTER sits exactly on the fill's
   right edge (right: -50% of own width) so it visually terminates the bar. */
.gbe-cp-progress__knob {
	position: absolute;
	right: -8px;            /* half the knob width → center on fill edge */
	top: 50%;
	width: 16px;
	height: 16px;
	transform: translateY(-50%);
	border-radius: 50%;
	background: #fff;
	border: 3px solid var(--gbe-terracotta, #A8472B);
	box-shadow:
		0 2px 6px rgba(168, 71, 43, 0.45),
		0 0 0 4px rgba(168, 71, 43, 0.10);
	transition: border-color .35s ease, box-shadow .35s ease;
	pointer-events: none;
}
.gbe-cp-progress.is-complete .gbe-cp-progress__knob {
	border-color: #5A6B3A;
	box-shadow:
		0 2px 6px rgba(90, 107, 58, 0.45),
		0 0 0 4px rgba(90, 107, 58, 0.12);
}
.gbe-cp-progress.is-complete .gbe-cp-progress__fill {
	background: linear-gradient(90deg, #5A6B3A 0%, #7B8B4A 100%);
}
.gbe-cp-progress.is-complete .gbe-cp-progress__fill::after { animation: none; }

/* Reduced-motion: keep the indicator informative but stop the shimmer. */
@media (prefers-reduced-motion: reduce) {
	.gbe-cp-progress__fill::after { animation: none; display: none; }
	.gbe-cp-progress__fill { transition: width 280ms ease; }
}

/* Mobile tightening — bar stays prominent but padding shrinks. */
@media (max-width: 480px) {
	.gbe-cp-progress { padding: 16px 18px 18px; margin-bottom: 14px; }
	.gbe-cp-progress__meta { font-size: .72rem; margin-bottom: 9px; }
	.gbe-cp-progress__current { font-size: .85rem; }
	.gbe-cp-progress__track { height: 9px; margin-right: 5px; }
	.gbe-cp-progress__knob  { width: 14px; height: 14px; border-width: 2.5px; right: -7px; }
}

/* === Wizard container ===
   Horizontal padding matches the progress bar's so headings, cards and the
   progress meta align on the same vertical guides — gives a coherent grid. */
.gbe-cp-wizard {
	padding: 4px 24px 48px;
}
@media (max-width: 480px) {
	.gbe-cp-wizard { padding: 4px 18px 36px; }
}

/* === Step panel === */
.gbe-cp-step {
	background: var(--gbe-clay-50, #FDFAF4);
	border: 1px solid var(--gbe-clay-200, #E8DCC4);
	border-radius: 18px;
	padding: 36px 24px;
	position: relative;
	animation: gbe-cp-step-in 480ms var(--gbe-ease, cubic-bezier(.19, 1, .22, 1)) both;
	box-shadow: 0 1px 0 rgba(0,0,0,0.03), 0 30px 60px -40px rgba(126,46,22,.18);
}
/* Editorial index mark — small italic "I / II / III" at top of each step */
.gbe-cp-step::before {
	content: '';
	position: absolute;
	top: 0; left: 32px; right: 32px;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--gbe-clay-200, #E8DCC4), transparent);
}
.gbe-cp-step[hidden] { display: none !important; }

@keyframes gbe-cp-step-in {
	0%   { opacity: 0; transform: translateY(14px) scale(0.995); }
	60%  { opacity: 1; }
	100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* === Title & Subtitle — editorial treatment === */
.gbe-cp-title {
	font-family: var(--gbe-font-display, 'Fraunces', serif);
	font-weight: 440;
	font-size: clamp(1.5rem, 4.5vw, 2.1rem);
	color: var(--gbe-terracotta, var(--gbe-terracotta, #A8472B));
	text-align: center;
	margin: 0 0 10px;
	letter-spacing: -0.015em;
	line-height: 1.15;
	font-style: italic;
	font-variation-settings: 'opsz' 72, 'SOFT' 30;
}
/* Small saffron flourish under the title */
.gbe-cp-title + .gbe-cp-sub::before {
	content: '';
	display: block;
	width: 36px;
	height: 2px;
	margin: 0 auto 14px;
	background: linear-gradient(90deg, transparent, var(--gbe-saffron, #D9A434), transparent);
	opacity: 0.8;
}
.gbe-cp-sub {
	text-align: center;
	font-size: clamp(.88rem, 2.5vw, .95rem);
	color: var(--gbe-clay-500, #6B5A47);
	line-height: 1.6;
	margin: 0 auto 32px;
	max-width: 520px;
	font-family: var(--gbe-font-body, 'DM Sans', sans-serif);
}

/* === Options layouts — intelligent auto-fit grids ===
   Tutti gli array di opzioni si ridimensionano intelligentemente
   con CSS Grid `auto-fit` + `minmax()`. Più opzioni → più colonne.
   ===================================================================== */
.gbe-cp-options {
	display: grid;
	gap: 12px;
	margin-bottom: 24px;
	width: 100%;
	/* Max 100% prevents grid overflow parent */
	grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--cp-min-col, 200px)), 1fr));
}
/* Radio-card (service_type): cards ricche con icona+testo, min 260px */
.gbe-cp-options--3       { --cp-min-col: 260px; }
/* Stack (levels, meal_time): una per riga idealmente, ma si può passare a 2 col se cap sufficiente */
.gbe-cp-options--stack   { --cp-min-col: 100%; }
/* Sì/No (wine, dietary): 2 colonne max, stringono se serve */
.gbe-cp-options--2col    { --cp-min-col: 140px; }
/* Grid di pill (cuisine): min 160px — su 700px mostra 3-4 col, su mobile 1-2 */
.gbe-cp-options--grid    { --cp-min-col: 160px; }

/* Opzione quantitativa: se pochi elementi, allineali verso il centro */
.gbe-cp-options:has(> :nth-child(1):nth-last-child(1)) {
	grid-template-columns: minmax(280px, 500px);
	justify-content: center;
}

/* === Radio card (service type) === */
/* Radio card — no dot indicator, color change on selection, min-height for 4 lines */
.gbe-cp-radio-card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 22px 22px;
	background: #fff;
	border: 1.5px solid var(--gbe-clay-200, #E8DCC4);
	border-radius: 14px;
	cursor: pointer;
	transition: all 280ms var(--gbe-ease, cubic-bezier(.19, 1, .22, 1));
	position: relative;
	min-height: 170px; /* ~ icon row + 4 text lines */
	width: 100%;
	box-sizing: border-box;
	overflow: hidden;
	-webkit-tap-highlight-color: transparent;
}
/* Subtle top ribbon appears on hover/active */
.gbe-cp-radio-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 18px;
	right: 18px;
	height: 3px;
	background: var(--gbe-terracotta, var(--gbe-terracotta, #A8472B));
	border-radius: 0 0 3px 3px;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 300ms var(--gbe-ease, cubic-bezier(.19, 1, .22, 1));
}
.gbe-cp-radio-card:hover {
	border-color: var(--gbe-terracotta, var(--gbe-terracotta, #A8472B));
	transform: translateY(-3px);
	box-shadow: 0 14px 32px -12px rgba(168,71,43,.3);
}
.gbe-cp-radio-card:hover::before,
.gbe-cp-radio-card:has(input:checked)::before,
.gbe-cp-radio-card.gbe-cp-selected::before {
	transform: scaleX(1);
}
.gbe-cp-radio-card input[type="radio"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
/* Selected state — full tint, stronger border, subtle inset glow */
.gbe-cp-radio-card:has(input:checked),
.gbe-cp-radio-card.gbe-cp-selected {
	border-color: var(--gbe-terracotta, var(--gbe-terracotta, #A8472B));
	background: rgba(168, 71, 43, 0.05);
	box-shadow: 0 8px 24px -12px rgba(168, 71, 43, 0.3),
	            inset 0 0 0 1px rgba(168, 71, 43, 0.2);
}
.gbe-cp-radio-card:has(input:checked) .gbe-cp-radio-card__title,
.gbe-cp-radio-card.gbe-cp-selected .gbe-cp-radio-card__title {
	color: var(--gbe-terracotta-d, #7E2E16);
}
/* Icon badge — circular, contained */
.gbe-cp-radio-card__icon {
	font-size: 1.5rem;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--gbe-clay-100, #FAF4EA);
	border: 1.5px solid var(--gbe-clay-200, #E8DCC4);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 280ms var(--gbe-ease, cubic-bezier(.19, 1, .22, 1));
}
.gbe-cp-radio-card:hover .gbe-cp-radio-card__icon,
.gbe-cp-radio-card:has(input:checked) .gbe-cp-radio-card__icon,
.gbe-cp-radio-card.gbe-cp-selected .gbe-cp-radio-card__icon {
	background: #fff;
	border-color: var(--gbe-terracotta, var(--gbe-terracotta, #A8472B));
	transform: scale(1.05);
}
.gbe-cp-radio-card__text {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.gbe-cp-radio-card__title {
	display: block;
	font-family: var(--gbe-font-display, 'Fraunces', serif);
	font-weight: 480;
	font-style: italic;
	font-size: 1.15rem;
	color: var(--gbe-clay-900, #1A1612);
	letter-spacing: -0.01em;
	line-height: 1.2;
	transition: color 280ms ease;
}
.gbe-cp-radio-card__desc {
	display: block;
	font-family: var(--gbe-font-body, 'DM Sans', sans-serif);
	font-size: .85rem;
	color: var(--gbe-clay-500, #6B5A47);
	line-height: 1.5;
}

/* === Pill option (meal time, cuisine, levels, wine Yes/No, dietary Yes/No) === */
.gbe-cp-pill-option {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px 18px;
	background: #fff;
	border: 1.5px solid var(--gbe-clay-200, #E8DCC4);
	border-radius: 12px;
	cursor: pointer;
	font-family: var(--gbe-font-body, 'DM Sans', sans-serif);
	font-size: .92rem;
	font-weight: 500;
	color: var(--gbe-clay-900, #1A1612);
	text-align: center;
	transition: all 260ms var(--gbe-ease, cubic-bezier(.19, 1, .22, 1));
	min-height: 58px;
	width: 100%;
	box-sizing: border-box;
	word-break: break-word;
	hyphens: auto;
	line-height: 1.35;
	position: relative;
	-webkit-tap-highlight-color: transparent;
}
.gbe-cp-pill-option:hover:not(:has(input:checked)) {
	border-color: var(--gbe-clay-300, #C9B89F);
}
.gbe-cp-pill-option span {
	display: inline-block;
	max-width: 100%;
}
/* Level/price display: give <strong> an editorial italic treatment */
.gbe-cp-pill-option strong {
	font-family: var(--gbe-font-display, 'Fraunces', serif);
	font-weight: 480;
	font-style: italic;
	font-size: 1.08em;
	color: var(--gbe-terracotta, var(--gbe-terracotta, #A8472B));
	letter-spacing: -0.01em;
	margin-right: 4px;
}

/* Level pill with dual pricing (adults + children) */
.gbe-cp-level-pill {
	min-height: 78px;
	padding: 18px 22px;
	text-align: left;
}
.gbe-cp-level-pill__row {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	flex-wrap: wrap;
}
.gbe-cp-level-pill__name {
	flex: 0 0 auto;
	font-size: 1.08rem;
}
.gbe-cp-level-pill__name strong {
	font-size: 1.2em;
	margin-right: 0;
}
.gbe-cp-level-pill__prices {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 2px;
	flex: 0 0 auto;
}
.gbe-cp-level-pill__price {
	font-family: var(--gbe-font-display, 'Fraunces', serif);
	font-style: italic;
	font-weight: 440;
	font-size: .95rem;
	color: var(--gbe-clay-700, #3D332A);
	letter-spacing: -0.01em;
	font-variant-numeric: tabular-nums;
}
.gbe-cp-level-pill__price--kid {
	color: var(--gbe-saffron, #D9A434);
	filter: saturate(0.9) brightness(0.85);
	font-size: .82rem;
}
@media (max-width: 480px) {
	.gbe-cp-level-pill__row { flex-direction: column; align-items: flex-start; }
	.gbe-cp-level-pill__prices { align-items: flex-start; flex-direction: row; gap: 12px; }
}
.gbe-cp-pill-option input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
.gbe-cp-pill-option:hover {
	border-color: var(--gbe-terracotta, var(--gbe-terracotta, #A8472B));
	transform: translateY(-1px);
}
.gbe-cp-pill-option:has(input:checked),
.gbe-cp-pill-option.gbe-cp-selected {
	border-color: var(--gbe-terracotta, var(--gbe-terracotta, #A8472B));
	background: rgba(168, 71, 43, 0.06);
	font-weight: 600;
}

/* === Field (date, location, text) === */
.gbe-cp-field {
	display: block;
	margin-bottom: 20px;
}
.gbe-cp-field__label {
	display: block;
	font-size: .85rem;
	font-weight: 600;
	color: var(--gbe-clay-900, #1A1612);
	margin-bottom: 6px;
}
.gbe-cp-input {
	width: 100%;
	padding: 14px 16px;
	border: 2px solid var(--gbe-clay-200, #E8DCC4);
	border-radius: 12px !important;       /* defend against theme overrides */
	background: #fff;
	font-size: 1rem;
	color: var(--gbe-clay-900, #1A1612);
	font-family: inherit;
	box-sizing: border-box;
	transition: all 200ms ease;
	-webkit-appearance: none;             /* disable native iOS/Safari styling */
	-moz-appearance: none;                /* disable Firefox native styling */
	appearance: none;                     /* keeps our radius/padding intact */
}
.gbe-cp-input:focus {
	outline: none;
	border-color: var(--gbe-terracotta, var(--gbe-terracotta, #A8472B));
	box-shadow: 0 0 0 3px rgba(168,71,43,.12);
}
.gbe-cp-input--pin {
	padding-left: 40px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23A8472B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: 14px center;
	background-size: 16px;
}

/* Calendar input — opens modal picker on click */
.gbe-cp-input--calendar {
	padding-left: 44px;
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23A8472B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: 14px center;
	background-size: 18px;
}
.gbe-cp-input--calendar:hover {
	border-color: var(--gbe-terracotta, var(--gbe-terracotta, #A8472B));
	background-color: rgba(168,71,43,0.03);
}

/* === Counter row (adults, children, wine) === */
.gbe-cp-counter-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 4px;
	border-bottom: 1px dashed rgba(201, 184, 159, 0.4);
}
.gbe-cp-counter-row:last-of-type { border-bottom: 0; }
.gbe-cp-counter__label {
	font-family: var(--gbe-font-display, 'Fraunces', serif);
	font-weight: 440;
	font-size: 1.1rem;
	color: var(--gbe-clay-900, #1A1612);
	letter-spacing: -0.01em;
}
.gbe-cp-counter__hint {
	font-family: var(--gbe-font-body, 'DM Sans', sans-serif);
	font-size: .75rem;
	color: var(--gbe-clay-500, #6B5A47);
	margin-top: 3px;
	font-style: italic;
}
.gbe-cp-counter {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 4px 10px;
	background: rgba(250, 244, 234, 0.5);
	border-radius: 999px;
	border: 1px solid var(--gbe-clay-200, #E8DCC4);
}
.gbe-cp-counter__btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #fff;
	border: 1.5px solid var(--gbe-clay-200, #E8DCC4);
	font-size: 1.2rem;
	line-height: 1;
	font-weight: 400;
	color: var(--gbe-terracotta, var(--gbe-terracotta, #A8472B));
	cursor: pointer;
	transition: all 200ms var(--gbe-ease, cubic-bezier(.19, 1, .22, 1));
	font-family: inherit;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-tap-highlight-color: transparent;
}
.gbe-cp-counter__btn:hover:not(:disabled) {
	border-color: var(--gbe-terracotta, var(--gbe-terracotta, #A8472B));
	background: var(--gbe-terracotta, var(--gbe-terracotta, #A8472B));
	color: #fff;
	transform: scale(1.08);
}
.gbe-cp-counter__btn:active:not(:disabled) {
	transform: scale(0.94);
}
.gbe-cp-counter__btn:disabled {
	opacity: 0.35;
	cursor: not-allowed;
	color: var(--gbe-clay-300, #C9B89F);
}
.gbe-cp-counter__value {
	min-width: 32px;
	text-align: center;
	font-family: var(--gbe-font-display, 'Fraunces', serif);
	font-style: italic;
	font-weight: 440;
	font-size: 1.35rem;
	color: var(--gbe-clay-900, #1A1612);
	font-variant-numeric: tabular-nums;
	line-height: 1;
	transition: transform 250ms cubic-bezier(.34, 1.56, .64, 1);
	display: inline-block;
}
/* Bounce animation when value changes — triggered via JS adding the class */
.gbe-cp-counter__value.gbe-cp-bump {
	animation: gbe-cp-bump 380ms cubic-bezier(.34, 1.56, .64, 1);
}
@keyframes gbe-cp-bump {
	0%   { transform: scale(1); }
	40%  { transform: scale(1.25); color: var(--gbe-terracotta, var(--gbe-terracotta, #A8472B)); }
	100% { transform: scale(1); }
}

/* Wine row layout — editorial list style */
.gbe-cp-wine-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 20px;
	margin-bottom: 10px;
	background: #fff;
	border: 1px solid var(--gbe-clay-200, #E8DCC4);
	border-radius: 12px;
	gap: 14px;
	flex-wrap: wrap;
	width: 100%;
	box-sizing: border-box;
	transition: all 220ms ease;
}
.gbe-cp-wine-row:hover {
	border-color: var(--gbe-clay-300, #C9B89F);
	background: linear-gradient(90deg, #fff 0%, rgba(250,244,234,0.5) 100%);
}
.gbe-cp-wine-row__label {
	font-family: var(--gbe-font-display, 'Fraunces', serif);
	font-style: italic;
	font-weight: 440;
	font-size: 1rem;
	color: var(--gbe-clay-900, #1A1612);
	flex: 1 1 auto;
	min-width: 160px;
	word-break: break-word;
	letter-spacing: -0.01em;
}
.gbe-cp-wine-row__label::before {
	content: '·';
	color: var(--gbe-saffron, #D9A434);
	margin-right: 10px;
	font-size: 1.3em;
	vertical-align: middle;
}
.gbe-cp-wine-row .gbe-cp-counter {
	flex-shrink: 0;
}

/* === Name row — side-by-side First name + Last name (stacks on mobile) === */
.gbe-cp-name-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}
.gbe-cp-name-row .gbe-cp-field { margin: 0; }
@media (max-width: 520px) {
	.gbe-cp-name-row { grid-template-columns: 1fr; gap: 10px; }
}

/* === Phone prefix === */
.gbe-cp-phone-row {
	display: flex;
	gap: 10px;
	align-items: stretch;
}
.gbe-cp-phone-prefix {
	padding: 14px 14px;
	background: #fff;
	border: 2px solid var(--gbe-clay-200, #E8DCC4);
	border-radius: 12px;
	font-size: 1rem;
	font-weight: 500;
	color: var(--gbe-clay-700, #3D332A);
	white-space: nowrap;
	display: flex;
	align-items: center;
}
.gbe-cp-phone-row .gbe-cp-input { flex: 1; }

.gbe-cp-privacy {
	font-size: .8rem;
	color: var(--gbe-clay-500, #6B5A47);
	margin: 16px 0 0;
}
.gbe-cp-privacy a {
	color: var(--gbe-terracotta, var(--gbe-terracotta, #A8472B));
	font-weight: 600;
	text-decoration: none;
}
.gbe-cp-privacy a:hover { text-decoration: underline; }

/* === Navigation buttons === */
.gbe-cp-nav {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	margin-top: 32px;
	flex-wrap: wrap;
	padding-top: 20px;
	border-top: 1px dashed rgba(201, 184, 159, 0.4);
}
.gbe-cp-btn {
	padding: 14px 28px;
	border-radius: 999px;
	font-family: var(--gbe-font-body, 'DM Sans', sans-serif);
	font-size: .92rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	cursor: pointer;
	border: 1.5px solid transparent;
	transition: all 280ms var(--gbe-ease, cubic-bezier(.19, 1, .22, 1));
	min-height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	-webkit-tap-highlight-color: transparent;
	position: relative;
	overflow: hidden;
}
.gbe-cp-btn--primary {
	background: linear-gradient(180deg, var(--gbe-terracotta, var(--gbe-terracotta, #A8472B)) 0%, var(--gbe-terracotta-d, #7E2E16) 100%);
	color: #fff;
	box-shadow: 0 6px 16px -6px rgba(168, 71, 43, .45),
	            inset 0 1px 0 rgba(255,255,255,0.15);
}
.gbe-cp-btn--primary:not(:disabled):hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 32px -10px rgba(168, 71, 43, .6),
	            inset 0 1px 0 rgba(255,255,255,0.2);
}
.gbe-cp-btn--primary:not(:disabled):active {
	transform: translateY(0);
	box-shadow: 0 4px 10px -4px rgba(168, 71, 43, .5);
}
.gbe-cp-btn--primary:disabled {
	opacity: 0.35;
	cursor: not-allowed;
	box-shadow: none;
	background: var(--gbe-clay-300, #C9B89F);
}
.gbe-cp-btn--ghost {
	background: transparent;
	color: var(--gbe-clay-700, #3D332A);
	border-color: var(--gbe-clay-300, #C9B89F);
}
.gbe-cp-btn--ghost:hover {
	background: var(--gbe-clay-100, #FAF4EA);
	border-color: var(--gbe-terracotta, var(--gbe-terracotta, #A8472B));
	color: var(--gbe-terracotta, var(--gbe-terracotta, #A8472B));
	transform: translateX(-2px);
}

/* =====================================================================
   RECAP STEP — editorial "receipt" / bill from a curated restaurant.
   Cream paper, zigzag top & bottom edges, dashed separators, total
   in large Fraunces italic with a terracotta accent.
   ===================================================================== */
.gbe-cp-step--recap {
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
}
.gbe-cp-step--recap::before { display: none; }

.gbe-cp-recap {
	position: relative;
	background:
		/* Very subtle parchment grain */
		radial-gradient(1000px 500px at 10% 0%, rgba(217,164,52,0.04), transparent 60%),
		radial-gradient(800px 400px at 95% 100%, rgba(168,71,43,0.05), transparent 60%),
		linear-gradient(180deg, #FFFCF6 0%, var(--gbe-clay-50, #FDFAF4) 100%);
	padding: 8px 0;
	border-left: 1px solid var(--gbe-clay-200, #E8DCC4);
	border-right: 1px solid var(--gbe-clay-200, #E8DCC4);
	box-shadow:
		0 1px 0 rgba(0,0,0,0.02),
		0 40px 80px -50px rgba(126, 46, 22, 0.25);
}

/* Zigzag / scalloped edges top & bottom (receipt feel) */
.gbe-cp-recap__edge {
	display: block;
	height: 10px;
	background:
		linear-gradient(-45deg, transparent 33.333%, var(--gbe-clay-50, #FDFAF4) 33.333%, var(--gbe-clay-50, #FDFAF4) 66.667%, transparent 66.667%),
		linear-gradient( 45deg, transparent 33.333%, var(--gbe-clay-50, #FDFAF4) 33.333%, var(--gbe-clay-50, #FDFAF4) 66.667%, transparent 66.667%);
	background-size: 16px 20px;
	background-position: 0 0, 8px 0;
	position: relative;
}
.gbe-cp-recap__edge--top {
	margin-top: -10px;
	margin-bottom: 20px;
}
.gbe-cp-recap__edge--bottom {
	margin-top: 20px;
	margin-bottom: -10px;
	transform: scaleY(-1);
}

/* Header */
.gbe-cp-recap__header {
	text-align: center;
	padding: 18px 32px 28px;
	position: relative;
}
.gbe-cp-recap__header::after {
	content: '✱';
	position: absolute;
	left: 50%;
	bottom: 10px;
	transform: translateX(-50%);
	color: var(--gbe-saffron, #D9A434);
	font-size: .9rem;
	opacity: 0.7;
}
.gbe-cp-recap__eyebrow {
	display: block;
	font-family: var(--gbe-font-body, 'DM Sans', sans-serif);
	font-size: .68rem;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: var(--gbe-clay-500, #6B5A47);
	font-weight: 600;
	margin-bottom: 8px;
}
.gbe-cp-recap__title {
	font-family: var(--gbe-font-display, 'Fraunces', serif);
	font-style: italic;
	font-weight: 440;
	font-size: clamp(1.8rem, 5vw, 2.4rem);
	color: var(--gbe-terracotta, var(--gbe-terracotta, #A8472B));
	letter-spacing: -0.015em;
	margin: 0 0 10px;
	line-height: 1.05;
}
.gbe-cp-recap__lead {
	font-family: var(--gbe-font-body, 'DM Sans', sans-serif);
	font-size: .92rem;
	color: var(--gbe-clay-500, #6B5A47);
	line-height: 1.55;
	margin: 0 auto;
	max-width: 400px;
}

/* Items list */
.gbe-cp-recap__list {
	padding: 0 32px;
	margin: 0;
}
.gbe-cp-recap__section {
	padding: 14px 0;
	border-top: 1px dashed rgba(201, 184, 159, 0.55);
}
.gbe-cp-recap__section:first-child {
	border-top: 0;
}
.gbe-cp-recap__group {
	font-family: var(--gbe-font-body, 'DM Sans', sans-serif);
	font-size: .64rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gbe-saffron, #D9A434);
	font-weight: 700;
	margin-bottom: 10px;
	filter: saturate(0.9) brightness(0.85);
	display: flex;
	align-items: center;
	gap: 8px;
}
.gbe-cp-recap__group::before {
	content: '';
	display: inline-block;
	width: 14px;
	height: 1px;
	background: var(--gbe-saffron, #D9A434);
	opacity: 0.6;
}
.gbe-cp-recap__item {
	display: flex;
	align-items: baseline;
	gap: 0;
	padding: 7px 0;
	position: relative;
}
/* Dotted leader line running across the item — behind key & value */
.gbe-cp-recap__item::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 9px;
	height: 1px;
	background-image: radial-gradient(circle, var(--gbe-clay-300, #C9B89F) 1px, transparent 1px);
	background-size: 6px 2px;
	background-repeat: repeat-x;
	background-position: left center;
	opacity: 0.6;
}
.gbe-cp-recap__key {
	font-family: var(--gbe-font-body, 'DM Sans', sans-serif);
	font-size: .85rem;
	color: var(--gbe-clay-500, #6B5A47);
	flex: 0 0 auto;
	font-weight: 500;
	position: relative;
	z-index: 1;
	background: linear-gradient(90deg, #FFFCF6 0%, #FFFCF6 calc(100% - 8px), transparent 100%);
	padding-right: 10px;
	letter-spacing: 0.01em;
}
.gbe-cp-recap__val {
	font-family: var(--gbe-font-display, 'Fraunces', serif);
	font-weight: 440;
	font-size: 1rem;
	color: var(--gbe-clay-900, #1A1612);
	margin: 0 0 0 auto;
	text-align: right;
	line-height: 1.4;
	letter-spacing: -0.005em;
	font-variant-numeric: tabular-nums;
	word-break: break-word;
	position: relative;
	z-index: 1;
	background: linear-gradient(90deg, transparent 0%, #FFFCF6 8px, #FFFCF6 100%);
	padding-left: 10px;
	max-width: 60%;
}
.gbe-cp-recap__hint {
	display: block;
	font-family: var(--gbe-font-body, 'DM Sans', sans-serif);
	font-style: italic;
	font-size: .72rem;
	color: var(--gbe-clay-500, #6B5A47);
	margin-top: 2px;
	font-weight: 400;
}

/* Total row — bold, terracotta accent */
.gbe-cp-recap__total-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin: 18px 32px 0;
	padding: 22px 0 20px;
	border-top: 2px solid var(--gbe-clay-900, #1A1612);
	border-bottom: 1px solid var(--gbe-clay-200, #E8DCC4);
	position: relative;
}
.gbe-cp-recap__total-label {
	display: flex;
	flex-direction: column;
}
.gbe-cp-recap__total-eyebrow {
	font-family: var(--gbe-font-body, 'DM Sans', sans-serif);
	font-size: .68rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--gbe-clay-900, #1A1612);
}
.gbe-cp-recap__total-note {
	font-family: var(--gbe-font-body, 'DM Sans', sans-serif);
	font-size: .72rem;
	color: var(--gbe-clay-500, #6B5A47);
	font-style: italic;
	margin-top: 3px;
}
.gbe-cp-recap__total-amount {
	font-family: var(--gbe-font-display, 'Fraunces', serif);
	font-style: italic;
	font-weight: 480;
	font-size: clamp(2rem, 6vw, 2.6rem);
	color: var(--gbe-terracotta, var(--gbe-terracotta, #A8472B));
	letter-spacing: -0.02em;
	font-variant-numeric: tabular-nums;
	line-height: 1;
	white-space: nowrap;
}

/* Mobile tweaks — stack key/value vertically, hide leader dots */
@media (max-width: 560px) {
	.gbe-cp-recap__header { padding: 14px 20px 22px; }
	.gbe-cp-recap__list { padding: 0 20px; }
	.gbe-cp-recap__total-row { margin: 12px 20px 0; padding: 18px 0; }
	.gbe-cp-recap__item {
		flex-direction: column;
		align-items: flex-start;
		gap: 2px;
		padding: 10px 0;
	}
	.gbe-cp-recap__item::before { display: none; }
	.gbe-cp-recap__key {
		background: none;
		padding-right: 0;
	}
	.gbe-cp-recap__val {
		text-align: left;
		background: none;
		padding-left: 0;
		margin-left: 0;
		max-width: 100%;
		font-size: 1.02rem;
	}
}

/* =====================================================================
   LOCATION STEP — mode cards + panels (domicile / partner)
   ===================================================================== */
.gbe-cp-loc-modes {
	margin-bottom: 20px;
}
.gbe-cp-loc-panel {
	animation: gbe-cp-step-in 320ms var(--gbe-ease, cubic-bezier(.19,1,.22,1)) both;
	margin-top: 14px;
}
.gbe-cp-field__hint {
	margin: 8px 4px 0;
	font-size: .78rem;
	color: var(--gbe-clay-500, #6B5A47);
	font-style: italic;
}

/* Venue list (partner mode) */
.gbe-cp-venue-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
	gap: 12px;
	margin-top: 16px;
}
.gbe-cp-venue-list__loader,
.gbe-cp-venue-list__empty {
	grid-column: 1 / -1;
	padding: 20px;
	text-align: center;
	color: var(--gbe-clay-500, #6B5A47);
	font-style: italic;
	background: rgba(250, 244, 234, 0.6);
	border-radius: 10px;
	border: 1px dashed var(--gbe-clay-200, #E8DCC4);
}
.gbe-cp-venue-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1.5px solid var(--gbe-clay-200, #E8DCC4);
	border-radius: 12px;
	cursor: pointer;
	overflow: hidden;
	transition: all 260ms var(--gbe-ease, cubic-bezier(.19,1,.22,1));
	min-height: 210px;
	position: relative;
}
.gbe-cp-venue-card input[type="radio"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
.gbe-cp-venue-card:hover {
	border-color: var(--gbe-terracotta, var(--gbe-terracotta, #A8472B));
	transform: translateY(-3px);
	box-shadow: 0 12px 28px -12px rgba(168,71,43,.3);
}
.gbe-cp-venue-card--selected {
	border-color: var(--gbe-terracotta, var(--gbe-terracotta, #A8472B));
	background: rgba(168, 71, 43, 0.04);
	box-shadow: 0 8px 24px -12px rgba(168,71,43,.3), inset 0 0 0 1px rgba(168,71,43,.2);
}
.gbe-cp-venue-card__img {
	width: 100%;
	height: 110px;
	object-fit: cover;
	background: var(--gbe-clay-100, #FAF4EA);
	display: block;
}
.gbe-cp-venue-card__img--ph {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: var(--gbe-clay-300, #C9B89F);
}
.gbe-cp-venue-card__body {
	padding: 14px 16px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	flex: 1;
}
.gbe-cp-venue-card__name {
	font-family: var(--gbe-font-display, 'Fraunces', serif);
	font-style: italic;
	font-weight: 460;
	font-size: 1.05rem;
	color: var(--gbe-clay-900, #1A1612);
	line-height: 1.2;
}
.gbe-cp-venue-card__addr {
	font-size: .82rem;
	color: var(--gbe-clay-500, #6B5A47);
	line-height: 1.4;
}
.gbe-cp-venue-card__meta {
	margin-top: auto;
	font-size: .72rem;
	color: var(--gbe-clay-500, #6B5A47);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-weight: 600;
	padding-top: 8px;
	border-top: 1px dashed var(--gbe-clay-200, #E8DCC4);
}

/* === Payment step (reuses .gbe-pm-card etc.) === */
.gbe-cp-step--payment .gbe-price-recap {
	background: var(--gbe-clay-900, #1A1612);
	color: #fff;
	border-radius: 12px;
	padding: 16px 20px;
	margin-bottom: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}
.gbe-cp-payment-grid {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 16px;
}

/* === Thank-you hero === */
.gbe-cp-step--thankyou {
	padding: 0;
	overflow: hidden;
	border-radius: 16px;
	border: 0;
}
.gbe-cp-hero {
	position: relative;
	min-height: 420px;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	padding: 40px 24px;
	color: #fff;
}
.gbe-cp-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.35) 100%);
	pointer-events: none;
}
.gbe-cp-hero__content {
	position: relative;
	z-index: 1;
	max-width: 560px;
}
.gbe-cp-hero__title {
	font-family: var(--gbe-font-display, 'Fraunces', serif);
	font-size: clamp(1.8rem, 6vw, 3rem);
	font-weight: 420;
	color: #fff;
	line-height: 1.1;
	margin: 0 0 16px;
	letter-spacing: -0.02em;
}
.gbe-cp-hero__text {
	font-size: clamp(.95rem, 2.5vw, 1.05rem);
	color: #fff;
	line-height: 1.55;
	margin: 0 0 18px;
	opacity: 0.9;
}
.gbe-cp-hero__code {
	display: inline-block;
	margin-top: 8px;
	padding: 10px 18px;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.25);
	border-radius: 8px;
	font-family: 'JetBrains Mono', monospace;
	font-size: .95rem;
	backdrop-filter: blur(8px);
}

/* === Mobile responsive ===
   Grid auto-fit already collapses to 1 column on narrow screens grazie a minmax().
   Qui solo ritocchi di padding/typography per schermi piccoli.
   ===================================================================== */
@media (max-width: 600px) {
	.gbe-chef-pro { padding: 0; }
	.gbe-cp-step { padding: 24px 16px; border-radius: 12px; }
	.gbe-cp-nav { flex-direction: column-reverse; }
	.gbe-cp-btn { width: 100%; }
	.gbe-cp-hero { padding: 32px 20px; min-height: 380px; }
	.gbe-cp-radio-card { padding: 14px; gap: 10px; min-height: auto; }
	.gbe-cp-radio-card__icon { width: 40px; height: 40px; font-size: 1.3rem; }
	.gbe-cp-pill-option { padding: 12px 14px; font-size: .88rem; min-height: 52px; }
	/* Su mobile la grid pill (cuisine) può restare 2 col se le etichette sono corte */
	.gbe-cp-options--grid { --cp-min-col: 140px; }
	/* Sì/No sempre 2 colonne fisse su mobile */
	.gbe-cp-options--2col { grid-template-columns: repeat(2, 1fr) !important; }
}

/* Ultra-mobile: < 380px */
@media (max-width: 380px) {
	.gbe-cp-options--grid { --cp-min-col: 100%; }
	.gbe-cp-title { font-size: 1.3rem; }
	.gbe-cp-radio-card__title { font-size: .88rem; }
	.gbe-cp-radio-card__desc { font-size: .75rem; }
}

/* Tablet intermedio: più spazio */
@media (min-width: 700px) {
	.gbe-cp-step { padding: 40px 36px; }
	.gbe-cp-options { gap: 14px; }
}

/* === Reduced motion === */
@media (prefers-reduced-motion: reduce) {
	.gbe-cp-step, .gbe-cp-progress__fill, .gbe-cp-btn, .gbe-cp-radio-card, .gbe-cp-pill-option {
		animation: none !important;
		transition: none !important;
	}
}

/* === Multi-day date range (Chef Pro) =================================
   Shown only when the chosen service_type has data-is-ranged="1".
   Layout: check-in input → arrow → check-out input, stacks on mobile.
   ====================================================================*/
.gbe-cp-daterange {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 12px;
	/* Align by the START of each field — the chip sits at the top of every
	   field at the same y-coordinate, and since chips have identical height
	   the inputs below them line up naturally. Using `end` caused check-in
	   to drift up when the (absent on check-out) `time-hint` line appeared
	   below the input and pushed the field's bottom down. */
	align-items: start;
}
.gbe-cp-daterange__field {
	margin: 0;
	/* Anchor for the absolutely-positioned `time-hint` — keeps the input
	   row height stable so check-in/check-out inputs always share the
	   same baseline regardless of whether the time hint is visible. */
	position: relative;
}
.gbe-cp-daterange__arrow {
	font-size: 1.4rem;
	color: var(--gbe-terracotta, var(--gbe-terracotta, #A8472B));
	font-weight: 600;
	padding-bottom: 14px;        /* align with input baseline */
	user-select: none;
}
.gbe-cp-daterange__nights {
	/* Margin top reserves space for the absolutely-positioned `time-hint`
	   that floats below the check-in input. ~32px = hint line-height + breath. */
	margin: 38px 0 0;
	color: var(--gbe-terracotta, var(--gbe-terracotta, #A8472B));
	font-weight: 600;
	font-style: italic;
	font-family: var(--gbe-font-display, 'Fraunces', serif);
	font-size: 1rem;
	text-align: center;
}
/* When the time-hint is NOT rendered (e.g. user hasn't picked a slot yet)
   we don't want the extra reserved space — JS toggles a class on the parent
   wizard step or just relies on the hint being absent. The :has() selector
   collapses the gap automatically when no time-hint child exists. */
.gbe-cp-field.gbe-cp-date-range:not(:has(.gbe-cp-daterange__time-hint)) .gbe-cp-daterange__nights {
	margin-top: 12px;
}
@media (max-width: 520px) {
	.gbe-cp-daterange {
		grid-template-columns: 1fr;
		gap: 8px;
	}
	.gbe-cp-daterange__arrow {
		text-align: center;
		padding: 0;
		transform: rotate(90deg);
	}
}

/* === Date step CTA inputs ============================================
   The single + range inputs are presented as "card buttons" rather
   than plain form fields — placeholder doubles as the call-to-action,
   no redundant <span> label outside.
   ====================================================================*/
.gbe-cp-input--cta {
	cursor: pointer;
	text-align: center;
	font-family: var(--gbe-font-display, 'Fraunces', serif);
	font-style: italic;
	font-weight: 440;
	font-size: 1.05rem;
	padding: 18px 20px;
	background: #fff;
	border: 1.5px dashed rgba(168, 71, 43, 0.35);
	border-radius: 14px !important;       /* defend against theme overrides */
	color: var(--gbe-clay-900, #1A1612);
	transition: all 200ms ease;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.gbe-cp-input--cta::placeholder {
	color: var(--gbe-terracotta, var(--gbe-terracotta, #A8472B));
	opacity: 1;
	font-style: italic;
	letter-spacing: -.005em;
}
.gbe-cp-input--cta:hover {
	border-style: solid;
	border-color: var(--gbe-terracotta, var(--gbe-terracotta, #A8472B));
	background: linear-gradient(180deg, #fff 0%, #FDFAF4 100%);
	transform: translateY(-1px);
	box-shadow: 0 8px 18px -10px rgba(168, 71, 43, 0.35);
}
.gbe-cp-input--cta:focus,
.gbe-cp-input--cta:focus-visible {
	outline: none;
	border-style: solid;
	border-color: var(--gbe-terracotta-d, #7E2E16);
	box-shadow: 0 0 0 3px rgba(168, 71, 43, 0.18);
}

/* Chip labels for check-in / check-out — small, uppercase, terracotta */
.gbe-cp-daterange__chip {
	display: inline-block;
	font-family: var(--gbe-font-body, 'DM Sans', sans-serif);
	font-style: normal;
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--gbe-terracotta, var(--gbe-terracotta, #A8472B));
	padding: 3px 10px;
	background: rgba(168, 71, 43, 0.08);
	border-radius: 999px;
	margin-bottom: 8px;
}

/* === Locked end-date picker (fixed-duration service) =================
   When duration_days > 0, the end input is auto-computed and locked:
   visually muted, lock badge top-right, "no-drop" cursor.
   ====================================================================*/
.gbe-cp-daterange__field { position: relative; }
.gbe-cp-daterange__field.is-locked .gbe-cp-input--cta {
	cursor: not-allowed;
	background: #FAF4EA;
	border-style: solid;
	border-color: rgba(168, 71, 43, 0.18);
	color: var(--gbe-clay-700, #3D332A);
	font-style: normal;
	opacity: .85;
	transform: none !important;
	box-shadow: none !important;
}
.gbe-cp-daterange__field.is-locked .gbe-cp-input--cta:hover {
	border-color: rgba(168, 71, 43, 0.18);
	background: #FAF4EA;
	transform: none;
	box-shadow: none;
}
/* Wrapper: positioning context for the lock badge. Replaces the previous
   field-level absolute positioning (which depended on hard-coded chip+input
   measurements). The lock now centers on the input regardless of layout. */
.gbe-cp-daterange__input-wrap {
	position: relative;
}
.gbe-cp-daterange__lock {
	position: absolute;
	top: 50%;
	right: 16px;
	transform: translateY(-50%);
	font-size: 1.1rem;
	line-height: 1;
	opacity: .7;
	pointer-events: none;
	filter: grayscale(.4);
}
.gbe-cp-daterange__locked-hint {
	color: var(--gbe-clay-500, #6B5A47);
	font-style: italic;
	font-size: .85rem;
	text-align: center;
	margin: 6px 0 0;
}

/* Time hint below the check-in input — only when user has confirmed a slot.
   Absolute-positioned so it never affects the field's height (which would
   throw off the check-in vs check-out grid alignment). */
.gbe-cp-daterange__time-hint {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	margin: 6px 0 0;
	color: var(--gbe-terracotta, var(--gbe-terracotta, #A8472B));
	font-size: .92rem;
	font-style: italic;
	font-family: var(--gbe-font-display, 'Fraunces', serif);
	font-weight: 500;
	text-align: center;
	pointer-events: none;
}
