.vvb-booking {
	--vvb-magenta: #b1266f;
	--vvb-magenta-dark: #921a59;
	--vvb-magenta-soft: #f9edf4;
	--vvb-primary: var(--vvb-magenta);
	--vvb-primary-dark: var(--vvb-magenta-dark);
	--vvb-primary-shadow: rgba(177, 38, 111, 0.18);
	--vvb-primary-shadow-strong: rgba(177, 38, 111, 0.24);
	--vvb-primary-focus: rgba(177, 38, 111, 0.1);
	--vvb-ink: #1f2433;
	--vvb-muted: #6b7487;
	--vvb-line: #e8eaf1;
	--vvb-surface: #ffffff;
	--vvb-surface-soft: #fafbfe;
	--vvb-bg: #f4f5f9;
	--vvb-success: #dff5e6;
	max-width: 980px;
	margin: 0 auto;
	padding: 28px;
	border: 1px solid rgba(29, 36, 51, 0.08);
	border-radius: 28px;
	background: linear-gradient(180deg, #ffffff 0%, #fcfcfe 100%);
	color: var(--vvb-ink);
	box-shadow: 0 22px 48px rgba(22, 28, 45, 0.06);
	font: inherit;
}

.vvb-booking,
.vvb-booking * {
	box-sizing: border-box;
}

.vvb-booking__header {
	display: grid;
	justify-items: center;
	text-align: center;
	gap: 8px;
	margin-bottom: 22px;
}

.vvb-booking__eyebrow {
	margin: 0;
	font-size: 0.84rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--vvb-magenta);
}

.vvb-booking__title {
	margin: 0;
	font: inherit;
	font-size: clamp(2rem, 4vw, 2.5rem);
	font-weight: 700;
	line-height: 1.08;
}

.vvb-booking__intro {
	max-width: 560px;
	margin: 0;
	font-size: 1rem;
	line-height: 1.7;
	color: var(--vvb-muted);
}

.vvb-notice {
	display: flex;
	justify-content: center;
	margin: 0 auto 22px;
	padding: 0.9rem 1.15rem;
	max-width: 420px;
	border-radius: 999px;
	border: 1px solid #d7e4ff;
	background: #edf4ff;
	color: #2a518d;
	text-align: center;
}

.vvb-notice p {
	margin: 0;
	font-size: 0.92rem;
	font-weight: 600;
}

.vvb-stepper {
	max-width: 520px;
	margin: 0 auto 28px;
}

.vvb-stepper__bar {
	height: 2px;
	margin: 0 44px -19px;
	background: #eed7e4;
}

.vvb-stepper__progress {
	display: block;
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, var(--vvb-primary-dark), var(--vvb-primary));
	transition: width 0.2s ease;
}

.vvb-stepper__steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: start;
	gap: 1rem;
}

.vvb-stepper__step {
	display: grid;
	justify-items: center;
	gap: 0.4rem;
	color: var(--vvb-muted);
}

.vvb-stepper__step span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 999px;
	border: 1px solid #e6d7e0;
	background: #fff;
	font-weight: 700;
}

.vvb-stepper__step strong {
	font-size: 0.86rem;
	font-weight: 600;
}

.vvb-stepper__step.is-active,
.vvb-stepper__step.is-complete {
	color: var(--vvb-ink);
}

.vvb-stepper__step.is-active span,
.vvb-stepper__step.is-complete span {
	border-color: var(--vvb-primary);
	background: linear-gradient(135deg, var(--vvb-primary-dark), var(--vvb-primary));
	color: #fff;
	box-shadow: 0 12px 24px var(--vvb-primary-shadow);
}

.vvb-panel {
	border: 1px solid var(--vvb-line);
	border-radius: 24px;
	background: var(--vvb-surface);
	box-shadow: 0 12px 28px rgba(22, 28, 45, 0.045);
	margin-bottom: 18px;
	overflow: hidden;
}

.vvb-panel--picker {
	padding: 0;
}

.vvb-picker {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
}

.vvb-picker__calendar,
.vvb-picker__slots {
	padding: 26px 28px;
}

.vvb-picker__calendar {
	border-right: 1px solid var(--vvb-line);
}

.vvb-booking[data-vvb-current-step="1"] .vvb-picker__slots {
	background: linear-gradient(180deg, #fcfcff 0%, #fafbfe 100%);
}

.vvb-booking[data-vvb-current-step="1"] .vvb-picker__slots .vvb-panel__back {
	visibility: hidden;
}

.vvb-panel__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 18px;
}

.vvb-panel__header--stack {
	align-items: flex-start;
}

.vvb-panel__step {
	margin: 0 0 0.35rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--vvb-muted);
}

.vvb-panel__title {
	margin: 0;
	font: inherit;
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1.15;
}

.vvb-panel__selection {
	margin: 0 0 0.45rem;
	font-size: 1rem;
	font-weight: 700;
	min-height: 1.4em;
}

.vvb-panel__help {
	margin: 0 0 1rem;
	line-height: 1.7;
	color: var(--vvb-muted);
}

.vvb-panel__back,
.vvb-calendar__nav,
.vvb-slot,
.vvb-submit,
.vvb-secondary,
.vvb-selection-card__action {
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 18px;
	border: 1px solid #dedfe7;
	border-radius: 14px;
	background: #fff;
	color: var(--vvb-ink);
	cursor: pointer;
	font: inherit;
	font-weight: 600;
	text-decoration: none;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.vvb-submit {
	background: linear-gradient(135deg, var(--vvb-primary-dark), var(--vvb-primary));
	border-color: transparent;
	color: #fff;
	box-shadow: 0 12px 22px var(--vvb-primary-shadow);
}

.vvb-calendar__nav:hover,
.vvb-slot:hover,
.vvb-submit:hover,
.vvb-secondary:hover,
.vvb-panel__back:hover,
.vvb-selection-card__action:hover,
.vvb-day:not(.vvb-day--static):hover {
	transform: translateY(-1px);
	box-shadow: 0 14px 28px rgba(18, 26, 42, 0.08);
}

.vvb-calendar__toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 1.15rem;
}

.vvb-calendar__month {
	font-size: 1rem;
	font-weight: 700;
	text-align: center;
}

.vvb-calendar__weekdays,
.vvb-calendar__grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 0.45rem;
}

.vvb-calendar__weekdays {
	margin-bottom: 0.55rem;
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--vvb-muted);
}

.vvb-calendar__weekdays span {
	text-align: center;
}

.vvb-calendar__empty,
.vvb-day {
	min-height: 52px;
}

.vvb-day {
	padding: 0.65rem 0.45rem;
	border-radius: 14px;
	border: 1px solid transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	color: inherit;
	font: inherit;
	text-align: center;
	box-shadow: inset 0 0 0 1px #eef0f5;
}

button.vvb-day {
	cursor: pointer;
}

.vvb-day__number {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1;
}

.vvb-day--available {
	background: #fff;
}

.vvb-day--full {
	background: #faf1ef;
	color: #be6c4c;
	box-shadow: inset 0 0 0 1px #edd8d1;
}

.vvb-day--unavailable {
	background: #f5f6f9;
	color: rgba(31, 36, 51, 0.34);
	box-shadow: inset 0 0 0 1px #eceef3;
}

.vvb-day--static {
	cursor: not-allowed;
}

.vvb-day--active {
	background: linear-gradient(135deg, var(--vvb-primary-dark), var(--vvb-primary));
	color: #fff;
	box-shadow: 0 16px 28px var(--vvb-primary-shadow-strong);
}

.vvb-booking__legend {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem 1rem;
	margin-top: 1.25rem;
	font-size: 0.9rem;
	color: var(--vvb-muted);
}

.vvb-legend__item {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
}

.vvb-legend__swatch {
	display: inline-block;
	width: 0.7rem;
	height: 0.7rem;
	border-radius: 999px;
}

.vvb-legend__swatch--available {
	background: var(--vvb-primary);
}

.vvb-legend__swatch--full {
	background: #8aa8de;
}

.vvb-legend__swatch--unavailable {
	background: #cfcfd6;
}

.vvb-slots {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
}

.vvb-slot {
	min-height: 52px;
	text-align: center;
}

.vvb-slot--active {
	background: linear-gradient(135deg, var(--vvb-primary-dark), var(--vvb-primary));
	color: #fff;
	border-color: transparent;
}

.vvb-details {
	padding: 26px 30px 32px;
}

.vvb-panel--details .vvb-panel__header,
.vvb-panel--success {
	padding: 26px 30px 0;
}

.vvb-panel--details {
	padding-bottom: 0;
}

.vvb-selection-card {
	display: grid;
	grid-template-columns: 26px minmax(0, 1fr) auto;
	gap: 18px;
	align-items: center;
	margin-bottom: 1.35rem;
	padding: 18px 20px;
	border: 1px solid #e8eaf2;
	border-radius: 20px;
	background: linear-gradient(180deg, #fbfcfe 0%, #f8fafe 100%);
}

.vvb-selection-card__accent {
	width: 26px;
	height: 26px;
	border-radius: 9px;
	background: linear-gradient(135deg, #f6dbe8, #fbf0f6);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.vvb-selection-card__accent span {
	display: block;
	width: 11px;
	height: 11px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--vvb-primary-dark), var(--vvb-primary));
}

.vvb-selection-card__content {
	display: grid;
	gap: 5px;
}

.vvb-selection-card__content strong {
	font-size: 1.03rem;
	line-height: 1.2;
}

.vvb-selection-card__content span {
	color: var(--vvb-muted);
	line-height: 1.5;
}

.vvb-form {
	display: grid;
	gap: 1.15rem;
}

.vvb-form__status,
.vvb-details-placeholder__message {
	margin: 0;
}

.vvb-form__status {
	min-height: 1.35em;
	color: var(--vvb-primary);
	font-weight: 600;
}

.vvb-details-placeholder__message {
	padding: 18px;
	border: 1px dashed #dfe3ed;
	border-radius: 16px;
	background: #fafbfe;
	color: var(--vvb-muted);
}

.vvb-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.2rem 1.2rem;
}

.vvb-field {
	display: grid;
	gap: 0.52rem;
	margin: 0;
}

.vvb-field[hidden],
[data-vvb-insurance-other-wrap][hidden] {
	display: none !important;
}

.vvb-field span,
.vvb-field legend {
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--vvb-ink);
}

.vvb-field__label {
	display: inline-flex;
	align-items: center;
	gap: 0.28rem;
	line-height: 1.4;
}

.vvb-field__required {
	color: var(--vvb-magenta);
	font-weight: 700;
}

.vvb-field--full {
	grid-column: 1 / -1;
}

.vvb-field--choice {
	align-content: start;
	padding-top: 0.1rem;
	border: 0;
	padding-left: 0;
	padding-right: 0;
	padding-bottom: 0;
}

.vvb-field input,
.vvb-field select,
.vvb-field textarea {
	width: 100%;
	min-height: 52px;
	border: 1px solid #dbe0ea;
	border-radius: 16px;
	padding: 0.86rem 0.95rem;
	font: inherit;
	background: #fff;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.vvb-field textarea {
	min-height: 140px;
	resize: vertical;
	padding-top: 1rem;
}

.vvb-field input:focus,
.vvb-field select:focus,
.vvb-field textarea:focus {
	outline: none;
	border-color: var(--vvb-primary);
	box-shadow: 0 0 0 4px var(--vvb-primary-focus);
}

.vvb-radio-group {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem 1rem;
	padding: 0.35rem 0 0.1rem;
}

.vvb-radio {
	display: inline-flex;
	align-items: center;
	gap: 0.68rem;
	min-height: 46px;
	padding: 0.55rem 0.85rem;
	border: 1px solid #e2e6ef;
	border-radius: 999px;
	background: #fff;
	cursor: pointer;
	transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.vvb-radio:hover {
	border-color: #d9c0d0;
	background: #fcfbfd;
}

.vvb-radio input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.vvb-radio__control {
	position: relative;
	width: 18px;
	height: 18px;
	border: 1.5px solid #c3cbda;
	border-radius: 999px;
	background: #fff;
	flex: 0 0 18px;
}

.vvb-radio__control::after {
	content: "";
	position: absolute;
	inset: 3px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--vvb-primary-dark), var(--vvb-primary));
	transform: scale(0);
	transition: transform 0.16s ease;
}

.vvb-radio__text {
	color: var(--vvb-ink);
	font-size: 0.94rem;
	font-weight: 500;
}

.vvb-radio input:checked + .vvb-radio__control {
	border-color: var(--vvb-primary);
}

.vvb-radio input:checked + .vvb-radio__control::after {
	transform: scale(1);
}

.vvb-radio input:checked ~ .vvb-radio__text {
	font-weight: 600;
}

.vvb-radio:focus-within {
	border-color: var(--vvb-primary);
	box-shadow: 0 0 0 4px var(--vvb-primary-focus);
}

.vvb-form__honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.vvb-form__actions,
.vvb-success__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: space-between;
	align-items: center;
}

.vvb-form__actions {
	padding-top: 0.45rem;
	border-top: 1px solid rgba(232, 234, 241, 0.8);
}

.vvb-form__actions .vvb-submit {
	min-width: 210px;
}

.vvb-form__actions .vvb-secondary {
	border-color: #dde2ec;
	background: #fff;
	color: #273246;
	box-shadow: none;
}

.vvb-success {
	display: grid;
	gap: 1rem;
	padding: 0 0 28px;
}

.vvb-success__eyebrow {
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--vvb-magenta);
}

.vvb-success__title {
	margin: 0;
	font: inherit;
	font-size: clamp(1.55rem, 2vw, 2.05rem);
	font-weight: 700;
	line-height: 1.1;
}

.vvb-success__message {
	margin: 0;
	line-height: 1.7;
	color: var(--vvb-muted);
}

.vvb-success__summary {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.85rem;
	padding: 18px;
	border-radius: 18px;
	background: #f7f9fc;
}

.vvb-success__item {
	padding: 0.9rem 1rem;
	border: 1px solid rgba(31, 36, 51, 0.08);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.9);
}

.vvb-success__item span {
	display: block;
	margin-bottom: 0.35rem;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--vvb-muted);
}

.vvb-success__note {
	margin: 0;
	padding: 1rem 1.1rem;
	border-radius: 16px;
	background: #eef5ff;
	border: 1px solid #d8e7ff;
	color: #2b508a;
	line-height: 1.65;
}

@media (max-width: 900px) {
	.vvb-booking {
		padding: 22px;
	}

	.vvb-picker,
	.vvb-success__summary {
		grid-template-columns: 1fr;
	}

	.vvb-picker__calendar {
		border-right: 0;
		border-bottom: 1px solid var(--vvb-line);
	}
}

@media (max-width: 767px) {
	.vvb-booking {
		padding: 18px;
		border-radius: 22px;
	}

	.vvb-stepper__bar {
		margin: 0 24px -19px;
	}

	.vvb-stepper__steps {
		grid-template-columns: repeat(3, 1fr);
		gap: 0.5rem;
	}

	.vvb-stepper__step {
		min-width: 0;
		text-align: center;
	}

	.vvb-stepper__step strong {
		font-size: 0.8rem;
		line-height: 1.25;
	}

	.vvb-panel__header {
		flex-direction: column;
		align-items: flex-start;
	}

	.vvb-calendar__weekdays,
	.vvb-calendar__grid {
		gap: 0.3rem;
	}

	.vvb-day {
		min-height: 46px;
	}

	.vvb-form__grid {
		grid-template-columns: 1fr;
	}

	.vvb-slots {
		grid-template-columns: repeat(3, 1fr);
		gap: 0.55rem;
	}

	.vvb-slot {
		min-height: 48px;
		padding: 0 8px;
		font-size: 0.88rem;
		line-height: 1.2;
	}

	.vvb-selection-card {
		grid-template-columns: 1fr;
	}

	.vvb-selection-card__accent {
		display: none;
	}

	.vvb-form__actions,
	.vvb-success__actions {
		flex-direction: column;
	}

	.vvb-submit,
	.vvb-secondary,
	.vvb-selection-card__action {
		width: 100%;
	}

	.vvb-radio-group {
		flex-direction: column;
	}

	.vvb-radio {
		width: 100%;
	}
}
