.veb-booking {
	--veb-border: #d9d9d9;
	--veb-muted: #666;
	--veb-radius: 10px;
	font: inherit;
	width: 100%;
}

.veb-booking *,
.veb-booking *::before,
.veb-booking *::after {
	box-sizing: border-box;
}

.veb-booking__eyebrow,
.veb-step__count {
	color: var(--veb-muted);
	font-size: 1.3rem;
	letter-spacing: 0.06em;
	margin: 0 0 0.35rem;
	text-transform: uppercase;
}

.veb-booking__eyebrow {
	text-transform: none;
}

.veb-booking__title {
	margin: 0;
}

.veb-product-title__city,
.veb-product-title__details,
.veb-product-title__detail-line {
	display: block;
}

.veb-product-title__city {
	font-size: 1em;
}

.veb-product-title__details {
	font-size: 16px;
}

.veb-product-title__detail-line {
	font-size: 20px;
    font-weight: 600;
}

.veb-booking__progress {
	align-items: center;
	display: flex;
	margin: 1.5rem 0 2rem;
}

.veb-progress-dot {
	border: 2px solid var(--veb-border);
	border-radius: 999px;
	height: 12px;
	width: 12px;
}

.veb-progress-dot.is-active {
	background: currentColor;
	border-color: currentColor;
}

.veb-progress-line {
	background: var(--veb-border);
	flex: 1;
	height: 2px;
}

.veb-step[hidden],
#veb-guardian-section[hidden],
.veb-availability[hidden],
.veb-summary[hidden] {
	display: none !important;
}

.veb-step h3 {
	margin: 0 0 1.25rem;
}

.veb-quantity {
	align-items: center;
	display: grid;
	gap: 0.75rem;
	grid-template-columns: 52px minmax(80px, 120px) 52px;
}

.veb-quantity__button,
.veb-choice,
.veb-button {
	cursor: pointer;
	font: inherit;
}

.veb-quantity__button {
	align-items: center;
	background: transparent;
	border: 1px solid var(--veb-border);
	border-radius: var(--veb-radius);
	display: inline-flex;
	font-size: 1.5rem;
	height: 52px;
	justify-content: center;
}

.veb-quantity input {
	border: 1px solid var(--veb-border);
	border-radius: var(--veb-radius);
	font: inherit;
	height: 52px;
	text-align: center;
	width: 100%;
}

.veb-choice-group {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.veb-choice {
	background: transparent;
	border: 1px solid var(--veb-border);
	border-radius: var(--veb-radius);
	min-height: 54px;
	padding: 0.8rem 1rem;
}

.veb-choice.is-selected {
	border-color: currentColor;
	box-shadow: inset 0 0 0 1px currentColor;
}

.veb-field-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-bottom: 1.75rem;
}

.veb-field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.veb-field label {
	color: #1d1d1d;
	font-weight: 600;
}

.veb-field input {
	background: #fff;
	color: #1d1d1d;
	border: 1px solid var(--veb-border);
	border-radius: var(--veb-radius);
	font: inherit;
	min-height: 48px;
	padding: 0.7rem 0.85rem;
	width: 100%;
}

.veb-participant {
	border: 1px solid var(--veb-border);
	border-radius: var(--veb-radius);
	margin: 0 0 1.25rem;
	padding: 1rem;
}

.veb-participant legend {
	font-weight: 600;
	padding: 0 0.35rem;
}

.veb-participant .veb-field-grid {
	margin-bottom: 0;
}

.veb-actions {
	align-items: center;
	display: flex;
	gap: 0.75rem;
	justify-content: space-between;
	margin-top: 1.75rem;
}

.veb-actions--end {
	justify-content: flex-end;
}

.veb-button {
	border: 1px solid currentColor;
	border-radius: var(--veb-radius);
	min-height: 48px;
	padding: 0.75rem 1.15rem;
}

.veb-button--primary {
	background: #1d1d1d;
	border-color: #1d1d1d;
}

.veb-button--primary {
	color: #fff;
}

.veb-button--secondary {
	background: transparent;
}

.veb-button:disabled {
	cursor: wait;
	opacity: 0.65;
}

.veb-summary {
	background: rgba(0, 0, 0, 0.04);
	border-radius: var(--veb-radius);
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	padding: 1rem;
}

.veb-message {
	margin-top: 1rem;
}

.veb-message.is-error {
	color: #a40000;
}

.veb-message.is-processing {
	color: var(--veb-muted);
}

.veb-availability {
	color: var(--veb-muted);
	font-size: 0.9rem;
	margin-top: 0.7rem;
}

.veb-sr-only {
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}

@media (max-width: 600px) {
	.veb-field-grid {
		grid-template-columns: 1fr;
	}

	.veb-actions {
		align-items: stretch;
		flex-direction: column-reverse;
	}

	.veb-button {
		width: 100%;
	}
}

/* Velocity booking theme */
.veb-booking {
	--veb-surface: #111418;
	--veb-teal: #15908c;
	--veb-teal-light: #1fb6b2;
	--veb-border: #15908c;
	--veb-muted: #1fb6b2;
	background: transparent;
	color: var(--veb-teal);
	min-height: 100%;
}

.veb-booking__eyebrow,
.veb-step__count,
.veb-availability,
.veb-message.is-processing {
	color: var(--veb-teal-light);
}

.veb-booking__title,
.veb-step h3,
.veb-field label,
.veb-participant legend,
.veb-summary {
	color: var(--veb-teal);
}

.veb-step[data-step="1"] h3,
.veb-step[data-step="2"] h3 {
	font-size: 80%;
	line-height: 1.2;
}

.veb-progress-dot,
.veb-quantity__button,
.veb-quantity input,
.veb-choice,
.veb-field input,
.veb-participant {
	border-color: var(--veb-teal);
}

.veb-progress-dot.is-active,
.veb-progress-line {
	background: var(--veb-teal);
	border-color: var(--veb-teal);
}

.veb-quantity__button,
.veb-quantity input,
.veb-choice,
.veb-field input,
.veb-button--secondary {
	background: transparent;
	color: var(--veb-teal);
}

.veb-quantity input,
.veb-field input {
	color-scheme: dark;
	margin-top: 10px;
}

.veb-button--primary {
	background: var(--veb-teal);
	border-color: var(--veb-teal);
	color: #fff;
}

.veb-summary {
	background: rgba(21, 144, 140, 0.12);
}

.veb-participant legend {
	border-bottom: none;
}