﻿/*
 * alnokhba-booking-wizard-design.css
 * Booking wizard — dark luxury design
 * Targets: .an-book-wiz__* (static PHP + dynamic JS classes)
 */

/* ═══════════════════════════════════════════════
   CSS VARIABLE ALIASES (used by inline JS styles)
   ═══════════════════════════════════════════════ */

.an-book-wiz {
	--an-primary: #C9A97A;
	--an-muted:   rgba(255,255,255,.3);
}

/* ═══════════════════════════════════════════════
   PAGE WRAPPER
   ═══════════════════════════════════════════════ */

body.alnokhba-page-booking .alnokhba-main {
	background: #000;
}

.an-book-wiz {
	background: #000;
	min-height: 100vh;
	direction: rtl;
}

/* ═══════════════════════════════════════════════
   HERO / PAGE HEADER
   ═══════════════════════════════════════════════ */

.an-book-wiz__hero {
	border-bottom: 1px solid rgba(255,255,255,.08);
	padding: 3.5rem 0 0;
}

.an-book-wiz__hero-inner {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 1.5rem 2.5rem;
	text-align: center;
}

/* Eyebrow row */
.an-book-wiz__eyebrow-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

.an-book-wiz__eyebrow-line {
	display: block;
	height: 1px;
	width: 3rem;
	background: linear-gradient(to left, rgba(201,169,122,.5), transparent);
}

.an-book-wiz__eyebrow-line--rev {
	background: linear-gradient(to right, rgba(201,169,122,.5), transparent);
}

.an-book-wiz__eyebrow {
	font-family: 'Inter', 'Cairo', sans-serif;
	font-size: 0.6rem;
	letter-spacing: 0.35em;
	text-transform: uppercase;
	color: #C9A97A;
	opacity: .8;
}

/* Title */
.an-book-wiz__title {
	font-family: 'Playfair Display', 'Cairo', serif;
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	color: #fff;
	line-height: 1;
	margin: 0 0 2rem;
}

.an-book-wiz__title em {
	font-style: italic;
	color: rgba(255,255,255,.3);
	margin-inline-start: 0.3em;
}

/* ═══════════════════════════════════════════════
   PROGRESS STEPS
   ═══════════════════════════════════════════════ */

.an-book-wiz__steps {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	overflow-x: auto;
	scrollbar-width: none;
	padding: 0 0.5rem;
}

.an-book-wiz__steps::-webkit-scrollbar { display: none; }

.an-book-wiz__step-item {
	display: flex;
	align-items: center;
	gap: 0;
	flex-shrink: 0;
}

.an-book-wiz__step-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.4rem;
}

.an-book-wiz__step-dot {
	width: 2rem;
	height: 2rem;
	border: 1px solid rgba(255,255,255,.18);
	background: rgba(255,255,255,.03);
	color: rgba(255,255,255,.25);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Playfair Display', serif;
	font-size: 0.8rem;
	transition: border-color .3s, background .3s, color .3s;
}

.an-book-wiz__step-item.is-active .an-book-wiz__step-dot {
	border-color: #C9A97A;
	background: rgba(201,169,122,.1);
	color: #C9A97A;
	box-shadow: 0 0 12px rgba(201,169,122,.2);
}

.an-book-wiz__step-item.is-done .an-book-wiz__step-dot {
	border-color: #C9A97A;
	background: #C9A97A;
	color: #000;
}

.an-book-wiz__step-label {
	font-family: 'Inter', 'Cairo', sans-serif;
	font-size: 0.55rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: rgba(255,255,255,.2);
	white-space: nowrap;
	transition: color .3s;
}

.an-book-wiz__step-item.is-active .an-book-wiz__step-label {
	color: rgba(255,255,255,.7);
}

.an-book-wiz__step-item.is-done .an-book-wiz__step-label {
	color: rgba(201,169,122,.6);
}

/* Connector line between steps */
.an-book-wiz__step-connector {
	display: block;
	width: 3rem;
	height: 1px;
	background: rgba(255,255,255,.08);
	margin: 0 0.25rem;
	transition: background .3s;
	flex-shrink: 0;
}

.an-book-wiz__step-connector.is-done {
	background: rgba(201,169,122,.4);
}

/* ═══════════════════════════════════════════════
   BODY — panels + nav
   ═══════════════════════════════════════════════ */

.an-book-wiz__body {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 1.5rem 5rem;
}

.an-book-wiz__panels {
	padding: 2.5rem 0 1.5rem;
	min-height: 340px;
}

/* ─── Step headings ─── */
.an-book-wiz__step-title {
	font-family: 'Playfair Display', 'Cairo', serif;
	font-size: clamp(1.1rem, 2.5vw, 1.5rem);
	font-weight: 700;
	color: #fff;
	margin: 0 0 0.375rem;
}

.an-book-wiz__step-lead {
	font-family: 'Inter', 'Cairo', sans-serif;
	font-size: 0.825rem;
	color: rgba(255,255,255,.35);
	line-height: 1.7;
	margin: 0 0 1.75rem;
}

.an-book-wiz__section-kicker {
	font-family: 'Inter', 'Cairo', sans-serif;
	font-size: 0.55rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: rgba(255,255,255,.3);
	margin: 0 0 0.875rem;
}

/* ─── Divider ─── */
.an-book-wiz__divider {
	display: flex;
	align-items: center;
	gap: 0.875rem;
	font-family: 'Inter', 'Cairo', sans-serif;
	font-size: 0.6rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255,255,255,.2);
	margin: 1.5rem 0;
}

.an-book-wiz__divider::before,
.an-book-wiz__divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: rgba(255,255,255,.07);
}

/* ═══════════════════════════════════════════════
   STEP 1 — SERVICES (BookingPage.tsx)
   ═══════════════════════════════════════════════ */

.an-book-wiz__svc-block {
	margin-bottom: 2.5rem;
}

.an-book-wiz__svc-intro {
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(255,255,255,.1);
}

.an-book-wiz__svc-intro-lead {
	font-family: 'Inter', 'Tajawal', 'Cairo', sans-serif;
	font-size: 0.875rem;
	color: rgba(255,255,255,.6);
	margin: 0 0 0.5rem;
	line-height: 1.6;
}

.an-book-wiz__svc-intro-vat {
	font-family: 'Inter', 'Tajawal', 'Cairo', sans-serif;
	font-size: 0.75rem;
	color: rgba(255,255,255,.3);
	margin: 0 0 0.5rem;
	line-height: 1.5;
}

.an-book-wiz__svc-intro-multi {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-family: 'Inter', 'Tajawal', 'Cairo', sans-serif;
	font-size: 0.75rem;
	color: #C9A97A;
	margin: 0;
	line-height: 1.5;
}

.an-book-wiz__svc-intro-multi svg {
	flex-shrink: 0;
	color: #C9A97A;
}

.an-book-wiz__svc-empty {
	font-family: 'Inter', 'Cairo', sans-serif;
	font-size: 0.8125rem;
	color: rgba(255,255,255,.35);
	margin: 0 0 1rem;
}

.an-book-wiz__svc-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.75rem;
}

@media (min-width: 640px) {
	.an-book-wiz__svc-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.an-book-wiz__svc-card {
	position: relative;
	width: 100%;
	text-align: right;
	background: transparent;
	border: 1px solid rgba(255,255,255,.2);
	padding: 1.5rem;
	cursor: pointer;
	transition: border-color .2s, background .2s;
	font: inherit;
	color: inherit;
	appearance: none;
	-webkit-appearance: none;
}

.an-book-wiz__svc-card:hover {
	border-color: rgba(255,255,255,.5);
}

.an-book-wiz__svc-card.is-selected {
	border-color: #fff;
	background: rgba(255,255,255,.05);
}

.an-book-wiz__svc-check {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #C9A97A;
	line-height: 0;
}

.an-book-wiz__svc-name {
	font-family: 'Playfair Display', 'Cairo', serif;
	font-size: 1.1rem;
	font-weight: 400;
	color: #fff;
	margin: 0 0 0.5rem;
	line-height: 1.35;
}

.an-book-wiz__svc-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}

.an-book-wiz__svc-dur {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	font-family: 'Inter', 'Tajawal', 'Cairo', sans-serif;
	font-size: 0.75rem;
	color: rgba(255,255,255,.4);
}

.an-book-wiz__svc-dur svg {
	flex-shrink: 0;
	opacity: .85;
}

.an-book-wiz__svc-price {
	font-family: 'Playfair Display', 'Cairo', serif;
	font-size: 1rem;
	color: #fff;
	white-space: nowrap;
}

.an-book-wiz__svc-currency {
	font-family: 'Inter', 'Cairo', sans-serif;
	font-size: 0.875rem;
	color: rgba(255,255,255,.4);
}

/* ═══════════════════════════════════════════════
   STEP 1 — EXPERTS LIST
   ═══════════════════════════════════════════════ */

/* Auto expert card */
.an-book-wiz__auto-card {
	border: 1px solid rgba(255,255,255,.1);
	padding: 1.25rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 1rem;
	transition: border-color .2s, background .2s;
	margin-bottom: 0.5rem;
}

.an-book-wiz__auto-card:hover,
.an-book-wiz__auto-card.is-selected {
	border-color: #C9A97A;
	background: rgba(201,169,122,.05);
}

.an-book-wiz__auto-icon {
	width: 3.5rem;
	height: 3.5rem;
	min-width: 3.5rem;
	border: 1px solid rgba(201,169,122,.3);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #C9A97A;
	font-size: 1.25rem;
	gap: 0.2rem;
}

/* Expert rows */
.an-book-wiz__experts-list {
	display: flex;
	flex-direction: column;
	gap: 1px;
	background: rgba(255,255,255,.07);
}

.an-book-wiz__expert-row {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.25rem;
	background: #000;
	cursor: pointer;
	transition: background .2s;
	border-inline-start: 2px solid transparent;
}

.an-book-wiz__expert-row:hover {
	background: #0a0a0a;
}

.an-book-wiz__expert-row.is-selected {
	background: rgba(201,169,122,.05);
	border-inline-start-color: #C9A97A;
}

.an-book-wiz__expert-row.is-unavailable {
	opacity: .45;
	pointer-events: none;
}

/* Expert photo */
.an-book-wiz__expert-photo {
	position: relative;
	width: 2.5rem;
	height: 2.5rem;
	min-width: 2.5rem;
	flex-shrink: 0;
}

.an-book-wiz__expert-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(40%);
	transition: filter .3s;
}

.an-book-wiz__expert-row.is-selected .an-book-wiz__expert-photo img {
	filter: grayscale(0%);
}

/* Status dot */
.an-book-wiz__expert-status-dot {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 8px;
	height: 8px;
	border: 2px solid #000;
}

.an-book-wiz__expert-status-dot--yes { background: #34d399; }
.an-book-wiz__expert-status-dot--no  { background: #ef4444; }

/* Locked expert (preselected) */
.an-book-wiz__locked-expert {
	margin-bottom: 2rem;
}

/* Multi expert auto */
.an-book-wiz__multi-auto {
	text-align: center;
	padding: 2rem;
	border: 1px solid rgba(255,255,255,.08);
}

/* ═══════════════════════════════════════════════
   STEP 2 — CALENDAR + TIME
   ═══════════════════════════════════════════════ */

.an-book-wiz__step1-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 640px) {
	.an-book-wiz__step1-grid {
		grid-template-columns: 1fr 1fr;
	}
}

/* Calendar */
.an-book-wiz__cal-box {
	border: 1px solid rgba(255,255,255,.08);
	overflow: hidden;
}

.an-book-wiz__cal-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.875rem 1rem;
	border-bottom: 1px solid rgba(255,255,255,.07);
}

.an-book-wiz__cal-month {
	font-family: 'Playfair Display', 'Cairo', serif;
	font-size: 0.9rem;
	color: #fff;
	font-weight: 700;
}

.an-book-wiz__cal-nav {
	background: none;
	border: none;
	color: rgba(255,255,255,.4);
	font-size: 1.25rem;
	cursor: pointer;
	padding: 0.2rem 0.5rem;
	transition: color .2s;
}

.an-book-wiz__cal-nav:hover {
	color: #C9A97A;
}

.an-book-wiz__cal-weekdays {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 0;
	padding: 0.5rem 0.75rem;
	border-bottom: 1px solid rgba(255,255,255,.05);
}

.an-book-wiz__cal-weekdays span {
	font-family: 'Inter', sans-serif;
	font-size: 0.55rem;
	letter-spacing: 0.1em;
	color: rgba(255,255,255,.2);
	text-align: center;
	text-transform: uppercase;
}

.an-book-wiz__cal-days {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 1px;
	padding: 0.75rem;
	background: rgba(255,255,255,.04);
}

.an-book-wiz__cal-day {
	background: #000;
	border: none;
	color: rgba(255,255,255,.55);
	font-family: 'Inter', 'Cairo', sans-serif;
	font-size: 0.8rem;
	padding: 0.5rem 0;
	text-align: center;
	cursor: pointer;
	transition: background .2s, color .2s;
}

.an-book-wiz__cal-day:hover:not(:disabled) {
	background: rgba(255,255,255,.05);
	color: #fff;
}

.an-book-wiz__cal-day.is-selected {
	background: #C9A97A;
	color: #000;
	font-weight: 700;
}

.an-book-wiz__cal-day:disabled {
	opacity: .2;
	cursor: not-allowed;
}

.an-book-wiz__cal-note {
	padding: 0.5rem 0.875rem;
	font-family: 'Inter', 'Cairo', sans-serif;
	font-size: 0.65rem;
	color: rgba(255,255,255,.2);
	text-align: center;
	margin: 0;
	border-top: 1px solid rgba(255,255,255,.05);
}

.an-book-wiz__date-picked {
	padding: 0.625rem 0.875rem;
	border-top: 1px solid rgba(255,255,255,.06);
	font-family: 'Inter', 'Cairo', sans-serif;
	font-size: 0.75rem;
}

/* Times box */
.an-book-wiz__times-box {
	border: 1px solid rgba(255,255,255,.08);
	padding: 1rem;
	min-height: 180px;
}

.an-book-wiz__times-empty {
	text-align: center;
	padding: 2rem 1rem;
	font-family: 'Inter', 'Cairo', sans-serif;
	font-size: 0.8rem;
	color: rgba(255,255,255,.25);
}

.an-book-wiz__times-hint {
	font-family: 'Inter', 'Cairo', sans-serif;
	font-size: 0.7rem;
	color: rgba(255,255,255,.25);
	margin: 0 0 0.75rem;
}

.an-book-wiz__times-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: rgba(255,255,255,.06);
}

.an-book-wiz__time-btn {
	background: #000;
	border: none;
	color: rgba(255,255,255,.5);
	font-family: 'Inter', 'Cairo', sans-serif;
	font-size: 0.775rem;
	padding: 0.625rem;
	cursor: pointer;
	text-align: center;
	transition: background .2s, color .2s;
}

.an-book-wiz__time-btn:hover {
	background: rgba(255,255,255,.04);
	color: #fff;
}

.an-book-wiz__time-btn.is-selected {
	background: rgba(201,169,122,.1);
	color: #C9A97A;
	font-weight: 600;
}

/* مواعيد محجوزة من قِبَل آخرين */
.an-book-wiz__time-btn.is-booked {
	background: rgba(255,255,255,.02) !important;
	color: rgba(255,255,255,.18) !important;
	cursor: not-allowed !important;
	position: relative;
	text-decoration: line-through;
	text-decoration-color: rgba(255,80,80,.4);
}

.an-book-wiz__time-btn.is-booked::after {
	content: "×";
	position: absolute;
	top: 2px;
	inset-inline-end: 4px;
	font-size: 0.6rem;
	color: rgba(255,80,80,.45);
	line-height: 1;
}

/* موعد محجوز بواسطة المستخدم الحالي نفسه */
.an-book-wiz__time-btn.is-blocked {
	background: rgba(201,169,122,.03) !important;
	color: rgba(201,169,122,.3) !important;
	cursor: not-allowed !important;
	position: relative;
}

.an-book-wiz__time-btn.is-blocked::after {
	content: "✓";
	position: absolute;
	top: 2px;
	inset-inline-end: 4px;
	font-size: 0.6rem;
	color: rgba(201,169,122,.4);
	line-height: 1;
}

/* حالة disabled العامة (fallback) */
.an-book-wiz__time-btn:disabled:not(.is-booked):not(.is-blocked) {
	background: rgba(255,255,255,.02) !important;
	color: rgba(255,255,255,.15) !important;
	cursor: not-allowed !important;
}

/* ═══════════════════════════════════════════════
   STEP 3 — SUMMARY + FORM + PAYMENT
   ═══════════════════════════════════════════════ */

/* Summary */
.an-book-wiz__summary {
	border: 1px solid rgba(255,255,255,.08);
	margin-bottom: 2rem;
}

.an-book-wiz__summary-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	background: rgba(255,255,255,.06);
}

.an-book-wiz__summary-grid > div {
	background: #000;
	padding: 1rem 1.25rem;
}

.an-book-wiz__summary-grid > div.is-full {
	grid-column: 1 / -1;
}

.an-book-wiz__summary-label {
	font-family: 'Inter', 'Cairo', sans-serif;
	font-size: 0.55rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255,255,255,.25);
	margin: 0 0 0.25rem;
}

.an-book-wiz__summary-val {
	font-family: 'Playfair Display', 'Cairo', serif;
	font-size: 0.95rem;
	color: rgba(255,255,255,.8);
	margin: 0;
}

.an-book-wiz__summary-val--gold {
	color: #C9A97A;
}

.an-book-wiz__summary-total {
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.25rem;
	border-top: 1px solid rgba(255,255,255,.07);
}

/* Form section */
.an-book-wiz__form-section {
	border: 1px solid rgba(255,255,255,.08);
	padding: 1.5rem;
	margin-bottom: 1.25rem;
}

.an-book-wiz__form-head {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.25rem;
	padding-bottom: 0.875rem;
	border-bottom: 1px solid rgba(255,255,255,.06);
}

.an-book-wiz__form-num {
	width: 1.75rem;
	height: 1.75rem;
	min-width: 1.75rem;
	border: 1px solid #C9A97A;
	color: #C9A97A;
	font-family: 'Playfair Display', serif;
	font-size: 0.85rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.an-book-wiz__logged-hint {
	font-family: 'Inter', 'Cairo', sans-serif;
	font-size: 0.75rem;
	color: rgba(255,255,255,.35);
	margin-bottom: 1rem;
}

.an-book-wiz__form-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.an-book-wiz__form-grid--2 {
	grid-template-columns: 1fr 1fr;
}

@media (max-width: 480px) {
	.an-book-wiz__form-grid--2 {
		grid-template-columns: 1fr;
	}
}

/* Form fields */
.an-book-wiz__field {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.an-book-wiz__field label {
	font-family: 'Inter', 'Cairo', sans-serif;
	font-size: 0.6rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255,255,255,.3);
}

.an-book-wiz__field input,
.an-book-wiz__field textarea {
	background: rgba(255,255,255,.04) !important;
	border: 1px solid rgba(255,255,255,.12) !important;
	color: #fff !important;
	padding: 0.75rem 0.875rem !important;
	font-family: 'Inter', 'Cairo', sans-serif !important;
	font-size: 0.875rem !important;
	border-radius: 0 !important;
	outline: none !important;
	transition: border-color .2s !important;
	width: 100% !important;
	box-sizing: border-box !important;
}

.an-book-wiz__field input:focus,
.an-book-wiz__field textarea:focus {
	border-color: rgba(201,169,122,.5) !important;
}

.an-book-wiz__field input::placeholder,
.an-book-wiz__field textarea::placeholder {
	color: rgba(255,255,255,.2) !important;
}

.an-book-wiz__field textarea {
	resize: vertical;
	min-height: 80px;
}

/* Payment methods */
.an-book-wiz__pay-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1px;
	background: rgba(255,255,255,.07);
}

@media (min-width: 640px) {
	.an-book-wiz__pay-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.an-book-wiz__pay-card {
	background: #000;
	padding: 1.25rem;
	cursor: pointer;
	border-bottom: 2px solid transparent;
	transition: background .2s, border-color .2s;
}

.an-book-wiz__pay-card:hover {
	background: #080808;
}

.an-book-wiz__pay-card.is-selected {
	background: rgba(201,169,122,.05);
	border-bottom-color: #C9A97A;
}

.an-book-wiz__pay-note {
	font-family: 'Inter', 'Cairo', sans-serif;
	font-size: 0.775rem;
	color: rgba(255,255,255,.35);
	line-height: 1.7;
	padding: 0.875rem 1.25rem;
	border: 1px solid rgba(255,255,255,.06);
	margin-top: 1rem;
}

/* ═══════════════════════════════════════════════
   WIZARD NAVIGATION BAR
   ═══════════════════════════════════════════════ */

.an-book-wiz__nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.25rem 0 0;
	border-top: 1px solid rgba(255,255,255,.07);
}

.an-book-wiz__nav-prev,
.an-book-wiz__nav-next {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background: transparent;
	border: 1px solid rgba(255,255,255,.2);
	color: rgba(255,255,255,.6);
	font-family: 'Inter', 'Cairo', sans-serif;
	font-size: 0.65rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	padding: 0.625rem 1.25rem;
	cursor: pointer;
	transition: background .25s, color .25s, border-color .25s;
}

.an-book-wiz__nav-prev:hover {
	background: rgba(255,255,255,.05);
	color: #fff;
}

.an-book-wiz__nav-next {
	border-color: #fff;
	color: #fff;
}

.an-book-wiz__nav-next:hover:not(:disabled) {
	background: #fff;
	color: #000;
}

.an-book-wiz__nav-next:disabled {
	opacity: .3;
	cursor: not-allowed;
}

.an-book-wiz__nav-progress {
	font-family: 'Inter', 'Cairo', sans-serif;
	font-size: 0.6rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: rgba(255,255,255,.25);
	margin: 0;
}

/* ═══════════════════════════════════════════════
   OTP MODAL
   ═══════════════════════════════════════════════ */

.an-book-wiz__otp {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
}

.an-book-wiz__otp[hidden] {
	display: none;
}

.an-book-wiz__otp-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,.85);
	backdrop-filter: blur(4px);
	cursor: pointer;
}

.an-book-wiz__otp-card {
	position: relative;
	z-index: 1;
	background: #0a0a0a;
	border: 1px solid rgba(201,169,122,.2);
	padding: 2.5rem 2rem;
	max-width: 360px;
	width: 100%;
	text-align: center;
	animation: an-otp-in .25s ease-out;
}

@keyframes an-otp-in {
	from { opacity: 0; transform: translateY(1.5rem) scale(.96); }
	to   { opacity: 1; transform: translateY(0) scale(1); }
}

.an-book-wiz__otp-icon {
	font-size: 2.25rem;
	margin-bottom: 1rem;
}

.an-book-wiz__otp-title {
	font-family: 'Playfair Display', 'Cairo', serif;
	font-size: 1.25rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 0.375rem;
}

.an-book-wiz__otp-lead {
	font-family: 'Inter', 'Cairo', sans-serif;
	font-size: 0.8rem;
	color: rgba(255,255,255,.4);
	margin: 0 0 0.25rem;
}

.an-book-wiz__otp-phone {
	font-family: 'Playfair Display', serif;
	font-size: 1.1rem;
	color: #C9A97A;
	margin: 0 0 1.5rem;
	direction: ltr;
}

.an-book-wiz__otp-inputs {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
	direction: ltr;
}

.an-book-wiz__otp-inputs input {
	width: 3rem !important;
	height: 3.5rem !important;
	text-align: center !important;
	font-family: 'Playfair Display', serif !important;
	font-size: 1.5rem !important;
	background: rgba(255,255,255,.04) !important;
	border: 1px solid rgba(255,255,255,.15) !important;
	color: #fff !important;
	border-radius: 0 !important;
	outline: none !important;
	transition: border-color .2s !important;
}

.an-book-wiz__otp-inputs input:focus {
	border-color: #C9A97A !important;
	background: rgba(201,169,122,.06) !important;
}

.an-book-wiz__otp-timer {
	font-family: 'Inter', 'Cairo', sans-serif;
	font-size: 0.75rem;
	color: rgba(255,255,255,.3);
	margin: 0 0 1.25rem;
	min-height: 1.5em;
}

.an-book-wiz__otp-actions {
	display: flex;
	gap: 0.625rem;
	justify-content: center;
}

.an-book-wiz__otp-cancel {
	background: transparent;
	border: 1px solid rgba(255,255,255,.15);
	color: rgba(255,255,255,.45);
	font-family: 'Inter', 'Cairo', sans-serif;
	font-size: 0.65rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	padding: 0.625rem 1.25rem;
	cursor: pointer;
	transition: background .2s, color .2s;
}

.an-book-wiz__otp-cancel:hover {
	background: rgba(255,255,255,.04);
	color: #fff;
}

.an-book-wiz__otp-submit {
	background: transparent;
	border: 1px solid #fff;
	color: #fff;
	font-family: 'Inter', 'Cairo', sans-serif;
	font-size: 0.65rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	padding: 0.625rem 1.5rem;
	cursor: pointer;
	transition: background .25s, color .25s;
}

.an-book-wiz__otp-submit:hover:not(:disabled) {
	background: #fff;
	color: #000;
}

.an-book-wiz__otp-submit:disabled {
	opacity: .35;
	cursor: not-allowed;
}

/* ─── Responsive ─── */
@media (max-width: 640px) {
	.an-book-wiz__hero-inner {
		padding: 0 1rem 2rem;
	}

	.an-book-wiz__body {
		padding: 0 1rem 3rem;
	}

	.an-book-wiz__panels {
		padding: 2rem 0 1rem;
	}

	.an-book-wiz__step-connector {
		width: 1.5rem;
	}

	.an-book-wiz__otp-card {
		padding: 2rem 1.25rem;
	}
}
