yes /* ==========================================================================
   Page: Book Appointment
   ========================================================================== */

/* Short hero variant */
.about-hero--short .about-hero__inner {
	min-height: 280px;
}

/* ── Trust Bar ───────────────────────────────────────────────────── */
.booking-trust {
	background: var(--color-slate-50, #f8fafc);
	border-bottom: 1px solid var(--color-slate-200);
	padding: 1rem 0;
}
.booking-trust__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem 2.5rem;
}
.booking-trust__item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--color-slate-700);
}
.booking-trust__item .material-symbols-outlined {
	font-size: 1.125rem;
	color: var(--color-brand-teal);
}

/* ── Wizard Layout ───────────────────────────────────────────────── */
.booking-wizard__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}
@media (min-width: 1024px) {
	.booking-wizard__grid {
		grid-template-columns: 1fr 320px;
		gap: 3rem;
	}
}

.booking-wizard__main {
	min-width: 0;
}

/* ── Progress Steps ──────────────────────────────────────────────── */
.bw-progress {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	margin-bottom: 2.5rem;
	padding: 1.5rem;
	background: #fff;
	border-radius: var(--radius-xl);
	box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.bw-progress__step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.375rem;
	min-width: 0;
}
.bw-progress__step span {
	font-size: 0.6875rem;
	font-weight: 600;
	color: var(--color-slate-400);
	white-space: nowrap;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}
.bw-progress__circle {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--color-slate-200);
	color: var(--color-slate-500);
	font-weight: 700;
	font-size: 0.875rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.bw-progress__step--active .bw-progress__circle {
	background: #08a8d9;
	color: #fff;
	box-shadow: 0 2px 8px rgba(8, 168, 217, 0.3);
}
.bw-progress__step--active span {
	color: var(--color-brand-teal);
}
.bw-progress__step--done .bw-progress__circle {
	background: var(--color-brand-teal);
	color: #fff;
}
.bw-progress__step--done span {
	color: var(--color-slate-600);
}
.bw-progress__line {
	flex: 1;
	height: 2px;
	background: var(--color-slate-200);
	min-width: 20px;
	max-width: 80px;
	margin: 0 0.5rem;
	margin-bottom: 1.25rem;
	border-radius: 1px;
}

/* ── Steps ───────────────────────────────────────────────────────── */
.bw-step {
	display: none;
}
.bw-step--active {
	display: block;
	animation: bwStepIn 0.35s ease;
}
@keyframes bwStepIn {
	from { opacity: 0; transform: translateX(20px); }
	to   { opacity: 1; transform: translateX(0); }
}

.bw-step h2 {
	font-size: 1.375rem;
	margin-bottom: 0.375rem;
}
.bw-step > p {
	color: var(--color-slate-600);
	margin-bottom: 1.5rem;
}

/* ── Service Selection Cards ─────────────────────────────────────── */
.bw-services {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}
@media (min-width: 640px)  { .bw-services { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .bw-services { grid-template-columns: repeat(3, 1fr); } }

.bw-service-card {
	cursor: pointer;
}
.bw-service-card input[type="radio"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
.bw-service-card__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 1.25rem 1rem;
	border: 2px solid var(--color-slate-200);
	border-radius: var(--radius-xl);
	background: #fff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.bw-service-card__inner:hover {
	border-color: var(--color-brand-teal);
	box-shadow: 0 4px 16px rgba(8, 168, 217, 0.1);
}
.bw-service-card--active .bw-service-card__inner,
.bw-service-card input:checked + .bw-service-card__inner {
	border-color: var(--color-brand-teal);
	background: rgba(8, 168, 217, 0.03);
	box-shadow: 0 0 0 3px rgba(8, 168, 217, 0.12);
	transform: scale(1.02);
}
.bw-service-card__icon {
	font-size: 1.75rem;
	color: var(--color-brand-teal);
	margin-bottom: 0.5rem;
}
.bw-service-card__inner strong {
	font-size: 0.875rem;
	display: block;
	margin-bottom: 0.25rem;
}
.bw-service-card__price {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--color-slate-500);
}

/* ── Navigation Buttons ──────────────────────────────────────────── */
.bw-nav {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 1.5rem;
}

/* ── Booking Summary ─────────────────────────────────────────────── */
.bw-summary {
	background: var(--color-slate-50, #f8fafc);
	border-radius: var(--radius-xl);
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}
.bw-summary h3 {
	font-size: 1rem;
	margin-bottom: 1rem;
}
.bw-summary__table {
	width: 100%;
	border-collapse: collapse;
}
.bw-summary__table td {
	padding: 0.625rem 0;
	font-size: 0.875rem;
	border-bottom: 1px solid var(--color-slate-200);
}
.bw-summary__table td:first-child {
	font-weight: 600;
	color: var(--color-slate-600);
	width: 120px;
}
.bw-summary__table td:last-child {
	color: var(--color-slate-900);
}
.bw-summary__total td {
	border-bottom: none;
	font-weight: 700;
	font-size: 1rem;
	padding-top: 0.75rem;
	color: var(--color-slate-900);
}
.bw-summary__total td:last-child {
	color: var(--color-brand-teal);
	font-size: 1.125rem;
}

/* ── Stripe Card Element ─────────────────────────────────────────── */
.bw-payment {
	margin-bottom: 1.25rem;
}
.bw-payment label {
	display: block;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--color-slate-700);
	margin-bottom: 0.375rem;
}
.bw-stripe-element {
	padding: 0.875rem 1rem;
	border: 1px solid var(--color-slate-200);
	border-radius: var(--radius-lg);
	background: #fff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.bw-stripe-element.StripeElement--focus {
	border-color: var(--color-brand-teal);
	box-shadow: 0 0 0 3px rgba(8, 168, 217, 0.1);
}
.bw-stripe-element.StripeElement--invalid {
	border-color: #ef4444;
}

/* ── Confirmation ────────────────────────────────────────────────── */
.bw-confirm {
	text-align: center;
	padding: 2rem 0;
}
.bw-confirm__icon {
	font-size: 4rem;
	color: #22c55e;
	display: block;
	margin-bottom: 1rem;
}
.bw-confirm h2 {
	font-size: 1.75rem;
	margin-bottom: 0.5rem;
}
.bw-confirm > p {
	color: var(--color-slate-600);
	margin-bottom: 1.5rem;
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}
.bw-confirm__details {
	max-width: 400px;
	margin: 0 auto 1.5rem;
	text-align: left;
}

/* ── Sidebar Cards ───────────────────────────────────────────────── */
.booking-wizard__sidebar {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}
@media (min-width: 1024px) {
	.booking-wizard__sidebar {
		position: sticky;
		top: 100px;
		align-self: start;
	}
}

.booking-sidebar-card {
	background: #fff;
	border-radius: var(--radius-xl);
	padding: 1.5rem;
	box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.booking-sidebar-card h3 {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1rem;
	margin-bottom: 0.75rem;
}
.booking-sidebar-card h3 .material-symbols-outlined {
	font-size: 1.25rem;
	color: var(--color-brand-teal);
}
.booking-sidebar-card p {
	font-size: 0.875rem;
	color: var(--color-slate-600);
	margin-bottom: 1rem;
}

.booking-sidebar-card__checklist {
	list-style: none;
	padding: 0;
	margin: 0;
}
.booking-sidebar-card__checklist li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.375rem 0;
	font-size: 0.875rem;
	color: var(--color-slate-700);
}
.booking-sidebar-card__checklist li .material-symbols-outlined {
	font-size: 1rem;
	color: var(--color-brand-teal);
	flex-shrink: 0;
}
