/**
 * Lumière — صفحة الحجز متعددة الخطوات (BookingPage.tsx)
 */

body.lumiere-page-booking .lumiere-main {
  background: #fff;
}

.lm-book-wiz {
  background: #fff;
  min-height: 100vh;
  direction: rtl;
}

.lm-book-wiz__hero {
  background: #fbf7ee;
  border-bottom: 1px solid rgba(180, 150, 100, 0.2);
  padding: clamp(3rem, 8vw, 3.5rem) clamp(1.25rem, 4vw, 2.5rem) clamp(2rem, 5vw, 2.5rem);
}

.lm-book-wiz__hero-inner {
  max-width: 56.25rem;
  margin: 0 auto;
  text-align: center;
}

.lm-book-wiz__eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  margin-bottom: 0.875rem;
}

.lm-book-wiz__eyebrow-line {
  height: 2px;
  width: 3.75rem;
  background: linear-gradient(to left, var(--lm-primary), transparent);
  box-shadow: 0 0 15px rgba(201, 169, 110, 0.35);
}

.lm-book-wiz__eyebrow-line--rev {
  background: linear-gradient(to right, var(--lm-primary), transparent);
}

.lm-book-wiz__eyebrow {
  color: var(--lm-primary);
  font-size: 0.625rem;
  letter-spacing: 0.35em;
}

.lm-book-wiz__title {
  margin: 0 0 2rem;
  font-weight: 400;
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: var(--lm-fg);
}

.lm-book-wiz__title em {
  color: var(--lm-primary);
  font-style: italic;
}

.lm-book-wiz__steps {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  padding: 0;
}

.lm-book-wiz__step-item {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.lm-book-wiz__step-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
}

.lm-book-wiz__step-dot {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(201, 169, 110, 0.15);
  color: var(--lm-muted);
  background: transparent;
  transition: all 0.3s;
  flex-shrink: 0;
}

.lm-book-wiz__step-item.is-active .lm-book-wiz__step-dot {
  border: 2px solid var(--lm-primary);
  color: var(--lm-primary);
  background: transparent;
  box-shadow: 0 0 15px rgba(201, 169, 110, 0.35);
}

.lm-book-wiz__step-item.is-done .lm-book-wiz__step-dot {
  background: linear-gradient(135deg, var(--lm-primary), #e8c98e);
  border: none;
  color: #0a0608;
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.35);
}

.lm-book-wiz__step-label {
  font-size: 0.625rem;
  letter-spacing: 0.06em;
  color: var(--lm-muted);
  white-space: nowrap;
}

.lm-book-wiz__step-item.is-active .lm-book-wiz__step-label,
.lm-book-wiz__step-item.is-done .lm-book-wiz__step-label {
  color: var(--lm-primary);
}

.lm-book-wiz__step-connector {
  width: clamp(1.25rem, 5vw, 3.75rem);
  height: 2px;
  margin: 0 0.25rem;
  margin-bottom: 1.25rem;
  align-self: center;
  background: rgba(201, 169, 110, 0.15);
  transition: background 0.3s, box-shadow 0.3s;
  flex-shrink: 0;
}

.lm-book-wiz__step-connector.is-done {
  background: var(--lm-primary);
  box-shadow: 0 0 10px rgba(201, 169, 110, 0.35);
}

.lm-book-wiz--checkout {
  background: #fff;
  min-height: 100vh;
  direction: rtl;
}

body.lumiere-page-booking-checkout .lumiere-main {
  background: #fff;
}

.lm-book-wiz__body--checkout {
  max-width: 75rem;
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.lm-book-wiz__body--checkout .woocommerce {
  max-width: none;
  margin: 0;
  padding: 0;
}

.lm-book-wiz__body {
  max-width: 56.25rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 8vw, 3.75rem) clamp(1.25rem, 4vw, 2.5rem);
}

.lm-book-wiz__step-title {
  margin: 0 0 0.5rem;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--lm-fg);
}

.lm-book-wiz__step-lead {
  margin: 0 0 2.25rem;
  color: var(--lm-muted);
  font-size: 0.8125rem;
  line-height: 1.7;
}

.lm-book-wiz__section-kicker {
  margin: 0 0 1.25rem;
  color: var(--lm-primary);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
}

.lm-book-wiz__svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16.25rem, 1fr));
  gap: 1px;
  background: rgba(201, 169, 110, 0.15);
  margin-bottom: 2.5rem;
}

.lm-book-wiz__svc-card {
  background: var(--lm-surface, #faf8f5);
  padding: 1.75rem 1.5rem;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  transition: all 0.2s;
}

.lm-book-wiz__svc-card.is-selected {
  background: rgba(201, 169, 110, 0.1);
  border-color: var(--lm-primary);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.2);
}

.lm-book-wiz__svc-check {
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  width: 1.25rem;
  height: 1.25rem;
  background: var(--lm-primary);
  color: #0a0608;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
}

.lm-book-wiz__svc-card.is-selected .lm-book-wiz__svc-check {
  display: flex;
}

.lm-book-wiz__svc-cat {
  margin: 0 0 0.5rem;
  color: var(--lm-primary);
  font-size: 0.5625rem;
  letter-spacing: 0.2em;
}

.lm-book-wiz__svc-name {
  margin: 0 0 0.625rem;
  font-weight: 400;
  font-size: 1rem;
  color: var(--lm-fg);
}

.lm-book-wiz__svc-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lm-book-wiz__svc-price {
  color: var(--lm-primary);
  font-size: 1.125rem;
}

.lm-book-wiz__svc-dur {
  color: var(--lm-muted);
  font-size: 0.6875rem;
}

.lm-book-wiz__auto-card,
.lm-book-wiz__expert-row {
  cursor: pointer;
  border: 1px solid rgba(201, 169, 110, 0.15);
  transition: all 0.2s;
}

.lm-book-wiz__auto-card {
  background: #fbf7ee;
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.lm-book-wiz__auto-card.is-selected,
.lm-book-wiz__expert-row.is-selected {
  background: rgba(201, 169, 110, 0.08);
  border: 2px solid var(--lm-primary);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.2);
}

.lm-book-wiz__auto-icon {
  width: 5rem;
  height: 5rem;
  flex-shrink: 0;
  border: 1px solid rgba(201, 169, 110, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f5edd8;
  font-size: 1.75rem;
}

.lm-book-wiz__divider {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin: 1rem 0;
  color: var(--lm-muted);
  font-size: 0.625rem;
  letter-spacing: 0.15em;
}

.lm-book-wiz__divider::before,
.lm-book-wiz__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(201, 169, 110, 0.15);
}

.lm-book-wiz__experts-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(201, 169, 110, 0.15);
}

.lm-book-wiz__expert-row {
  background: var(--lm-surface, #faf8f5);
  padding: 1.5rem 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.lm-book-wiz__expert-row.is-unavailable {
  opacity: 0.45;
  cursor: default;
}

.lm-book-wiz__expert-photo {
  position: relative;
  flex-shrink: 0;
}

.lm-book-wiz__expert-photo img {
  width: 4.75rem;
  height: 4.75rem;
  object-fit: cover;
  filter: brightness(0.85);
}

.lm-book-wiz__expert-status-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  border: 2px solid #e5e7eb;
}

.lm-book-wiz__expert-status-dot--yes {
  background: #10b981;
}

.lm-book-wiz__expert-status-dot--no {
  background: #ef4444;
}

.lm-book-wiz__multi-auto {
  background: rgba(201, 169, 110, 0.07);
  border: 2px solid var(--lm-primary);
  padding: 2rem 2.25rem;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.2);
}

.lm-book-wiz__locked-expert {
  margin-bottom: 2rem;
}

.lm-book-wiz__locked-expert .lm-book-wiz__expert-row {
  margin-top: 0.75rem;
  pointer-events: none;
}

.lm-book-wiz__step1-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .lm-book-wiz__step1-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.lm-book-wiz__cal-box,
.lm-book-wiz__times-box {
  background: var(--lm-surface, #faf8f5);
  border: 1px solid rgba(201, 169, 110, 0.15);
  padding: 1.75rem;
}

.lm-book-wiz__cal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.lm-book-wiz__cal-month {
  font-size: 0.9375rem;
  color: var(--lm-fg);
}

.lm-book-wiz__cal-nav {
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(201, 169, 110, 0.15);
  background: none;
  color: var(--lm-fg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lm-book-wiz__cal-weekdays,
.lm-book-wiz__cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.lm-book-wiz__cal-weekdays {
  margin-bottom: 0.5rem;
}

.lm-book-wiz__cal-weekdays span {
  text-align: center;
  color: var(--lm-muted);
  font-size: 0.5625rem;
  padding: 0.25rem 0;
}

.lm-book-wiz__cal-day {
  aspect-ratio: 1;
  border: 1px solid transparent;
  background: #fff;
  color: var(--lm-fg);
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.15s;
}

.lm-book-wiz__cal-day:disabled {
  background: rgba(180, 150, 100, 0.06);
  color: rgba(180, 150, 100, 0.35);
  cursor: not-allowed;
}

.lm-book-wiz__cal-day.is-selected {
  border: 2px solid var(--lm-primary);
  background: linear-gradient(135deg, var(--lm-primary), #e8c98e);
  color: #1a1209;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.35);
}

.lm-book-wiz__cal-note {
  margin: 0.875rem 0 0;
  color: var(--lm-muted);
  font-size: 0.625rem;
}

.lm-book-wiz__date-picked {
  margin-top: 0.75rem;
  background: rgba(201, 169, 110, 0.07);
  border: 1px solid rgba(201, 169, 110, 0.15);
  padding: 0.75rem 1.125rem;
  font-size: 0.8125rem;
}

.lm-book-wiz__times-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--lm-muted);
}

.lm-book-wiz__times-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.375rem;
}

.lm-book-wiz__time-btn {
  padding: 0.6875rem 0.375rem;
  font-size: 0.6875rem;
  border: 1px solid rgba(201, 169, 110, 0.15);
  background: #fff;
  color: var(--lm-fg);
  cursor: pointer;
  transition: all 0.15s;
}

.lm-book-wiz__time-btn:disabled {
  background: rgba(180, 150, 100, 0.06);
  color: rgba(180, 150, 100, 0.35);
  cursor: not-allowed;
}

.lm-book-wiz__time-btn.is-selected {
  border: 2px solid var(--lm-primary);
  background: linear-gradient(135deg, var(--lm-primary), #e8c98e);
  color: #1a1209;
  font-weight: 700;
}

.lm-book-wiz__summary {
  background: var(--lm-surface, #faf8f5);
  border: 2px solid rgba(201, 169, 110, 0.15);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 30px rgba(201, 169, 110, 0.15);
}

.lm-book-wiz__summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.lm-book-wiz__summary-grid .is-full {
  grid-column: 1 / -1;
}

.lm-book-wiz__summary-label {
  margin: 0 0 0.25rem;
  color: var(--lm-muted);
  font-size: 0.625rem;
}

.lm-book-wiz__summary-val {
  margin: 0;
  color: var(--lm-fg);
  font-size: 0.9375rem;
}

.lm-book-wiz__summary-val--gold {
  color: var(--lm-primary);
}

.lm-book-wiz__summary-total {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  padding-top: 0.75rem;
  margin-top: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lm-book-wiz__form-section {
  max-width: 42.5rem;
  margin-bottom: 2.5rem;
}

.lm-book-wiz__form-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.lm-book-wiz__form-num {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lm-primary), #e8c98e);
  color: #0a0608;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.lm-book-wiz__form-grid {
  display: grid;
  gap: 0.875rem;
}

@media (min-width: 640px) {
  .lm-book-wiz__form-grid--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.lm-book-wiz__field label {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
  color: var(--lm-fg);
}

.lm-book-wiz__field input,
.lm-book-wiz__field textarea {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(180, 150, 100, 0.22);
  color: var(--lm-fg);
  padding: 0.875rem 1rem;
  font-size: 0.8125rem;
  font-family: inherit;
}

.lm-book-wiz__field textarea {
  resize: vertical;
  max-width: 100%;
}

.lm-book-wiz__field input[type="email"] {
  direction: ltr;
  text-align: left;
}

.lm-book-wiz__field input[aria-invalid="true"],
.lm-book-wiz__field textarea[aria-invalid="true"] {
  border-color: #dc2626;
}

.lm-book-wiz__field-error {
  margin: 0.35rem 0 0;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #b91c1c;
  line-height: 1.4;
}

.lm-book-wiz__field-error[hidden] {
  display: none !important;
}

.lm-book-wiz__logged-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.125rem;
  padding: 0.625rem 0.875rem;
  background: rgba(201, 169, 110, 0.06);
  border: 1px solid rgba(201, 169, 110, 0.25);
  font-size: 0.8125rem;
  color: var(--lm-muted);
}

.lm-book-wiz__pay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.lm-book-wiz__pay-card {
  border: 1px solid rgba(201, 169, 110, 0.15);
  background: var(--lm-surface, #faf8f5);
  padding: 1.5rem 1.25rem;
  cursor: pointer;
  transition: all 0.2s;
}

.lm-book-wiz__pay-card.is-selected {
  border: 2px solid var(--lm-primary);
  background: rgba(201, 169, 110, 0.07);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.2);
}

.lm-book-wiz__pay-note {
  margin: 0.75rem 0 0;
  padding: 1rem 1.25rem;
  background: rgba(201, 169, 110, 0.05);
  border: 1px solid rgba(201, 169, 110, 0.15);
  color: var(--lm-muted);
  font-size: 0.8125rem;
  line-height: 1.75;
}

.lm-book-wiz__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
}

.lm-book-wiz__nav-prev,
.lm-book-wiz__nav-next {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}

.lm-book-wiz__nav-prev {
  background: transparent;
  border: 1px solid rgba(201, 169, 110, 0.15);
  color: var(--lm-muted);
}

.lm-book-wiz__nav-next {
  background: linear-gradient(135deg, var(--lm-primary), #e8c98e);
  border: none;
  color: #0a0608;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.35);
}

.lm-book-wiz__nav-next:disabled {
  background: rgba(201, 169, 110, 0.15);
  color: var(--lm-muted);
  font-weight: 400;
  box-shadow: none;
  cursor: not-allowed;
}

.lm-book-wiz__nav-progress {
  margin: 0;
  color: var(--lm-primary);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
}

.lm-book-wiz__otp {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.lm-book-wiz__otp[hidden] {
  display: none !important;
}

.lm-book-wiz__otp-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.lm-book-wiz__otp-card {
  position: relative;
  background: #fff;
  max-width: 30rem;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(201, 169, 110, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  padding: 2.25rem 2.5rem;
  text-align: center;
}

body.lm-otp-open {
  overflow: hidden;
}

.lm-book-wiz__otp-icon {
  width: 4rem;
  height: 4rem;
  border: 2px solid var(--lm-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
}

.lm-book-wiz__otp-title {
  margin: 0 0 0.5rem;
  font-weight: 400;
  font-size: 1.5rem;
}

.lm-book-wiz__otp-lead {
  margin: 0 0 0.375rem;
  color: var(--lm-muted);
  font-size: 0.8125rem;
}

.lm-book-wiz__otp-phone {
  margin: 0 0 1.5rem;
  color: var(--lm-primary);
  font-size: 1rem;
  direction: ltr;
}

.lm-book-wiz__otp-inputs {
  display: flex;
  gap: 0.625rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.lm-book-wiz__otp-inputs input {
  width: 4.25rem;
  height: 4.5rem;
  text-align: center;
  font-size: 1.75rem;
  border: 1px solid rgba(201, 169, 110, 0.15);
  outline: none;
}

.lm-book-wiz__otp-inputs input.is-filled {
  border: 2px solid var(--lm-primary);
  background: rgba(201, 169, 110, 0.08);
}

.lm-book-wiz__otp-timer {
  margin: 0 0 1.5rem;
  color: var(--lm-muted);
  font-size: 0.75rem;
}

.lm-book-wiz__otp-actions {
  display: flex;
  gap: 0.75rem;
}

.lm-book-wiz__otp-cancel,
.lm-book-wiz__otp-submit {
  flex: 1;
  padding: 0.875rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-family: inherit;
  cursor: pointer;
}

.lm-book-wiz__otp-cancel {
  background: transparent;
  border: 1px solid rgba(201, 169, 110, 0.15);
  color: var(--lm-muted);
}

.lm-book-wiz__otp-submit {
  background: linear-gradient(135deg, var(--lm-primary), #e8c98e);
  border: none;
  color: #1a1209;
  font-weight: 700;
}

.lm-book-wiz__otp-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

@media (orientation: landscape) and (max-height: 32rem) {
  .lm-book-wiz__otp {
    align-items: flex-start;
    overflow-y: auto;
    padding: 0.75rem;
  }

  .lm-book-wiz__otp-card {
    max-height: calc(100vh - 1.5rem);
    overflow-y: auto;
    margin: auto;
    padding: 1.5rem 1.25rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   BookingProgress parity — مطابق لـ React BookingProgress.tsx
   (شريط الخطوات فقط بدون ترويسة زخرفية، ونقاط دائرية ممتلئة)
   ═══════════════════════════════════════════════════════════════ */
.lm-book-wiz__eyebrow-row,
.lm-book-wiz__title { display: none; }
.lm-book-wiz__hero { padding-top: 1.5rem; padding-bottom: .5rem; }
.lm-book-wiz__step-dot {
  width: 2rem; height: 2rem; border-radius: 999px;
  border: 2px solid var(--border); background: #fff; color: var(--muted-foreground);
  box-shadow: none;
}
.lm-book-wiz__step-item.is-active .lm-book-wiz__step-dot {
  background: var(--primary); border-color: var(--primary); color: #fff;
  box-shadow: 0 0 0 4px rgba(184,138,68,.2);
}
.lm-book-wiz__step-item.is-done .lm-book-wiz__step-dot {
  background: var(--primary); border: none; color: #fff; box-shadow: none;
}
.lm-book-wiz__step-label { font-size: 11px; font-weight: 500; color: var(--muted-foreground); }
.lm-book-wiz__step-item.is-active .lm-book-wiz__step-label { color: var(--primary); }
.lm-book-wiz__step-item.is-done .lm-book-wiz__step-label { color: var(--foreground); }
.lm-book-wiz__step-connector { background: var(--border); }
.lm-book-wiz__step-connector.is-done { background: var(--primary); box-shadow: none; }

/* ═══════════════════════════════════════════════════════════════
   Booking panels — React parity (EmployeeSelection / service select)
   namespace .lm-bw-
   ═══════════════════════════════════════════════════════════════ */
.lm-book-wiz__step-title { font-family: 'Scheherazade New','Amiri',serif; font-size: 1.5rem; font-weight: 500; color: var(--foreground); margin: 0 0 .25rem; letter-spacing: 0; }
.lm-book-wiz__step-lead { color: var(--muted-foreground); font-size: .875rem; margin: 0 0 1.5rem; }
.lm-bw-kicker { color: var(--primary); font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; margin: 0 0 .75rem; }
.lm-bw-muted { color: var(--muted-foreground); font-size: .8125rem; }

/* Option cards (auto + expert rows) */
.lm-bw-experts { display: flex; flex-direction: column; gap: 1rem; }
.lm-bw-opt {
  width: 100%; display: flex; align-items: center; gap: 1rem; padding: 1.25rem;
  border-radius: 1rem; border: 1px solid var(--border); background: var(--card);
  cursor: pointer; text-align: right; transition: border-color .2s, background .2s, box-shadow .2s;
}
.lm-bw-opt:hover { border-color: rgba(184,138,68,.5); }
.lm-bw-opt.is-selected { border-color: var(--primary); background: rgba(184,138,68,.05); box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.lm-bw-opt.is-unavailable { opacity: .55; cursor: not-allowed; }
.lm-bw-opt--auto { margin-bottom: 0; }
.lm-bw-opt__icon { width: 3.5rem; height: 3.5rem; border-radius: .75rem; background: var(--secondary); color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lm-bw-opt__avatar { position: relative; width: 3.5rem; height: 3.5rem; border-radius: .75rem; overflow: visible; flex-shrink: 0; }
.lm-bw-opt__avatar img { width: 3.5rem; height: 3.5rem; border-radius: .75rem; object-fit: cover; }
.lm-bw-opt__dot { position: absolute; bottom: -.25rem; left: -.25rem; width: 1rem; height: 1rem; background: #10b981; border-radius: 999px; border: 2px solid #fff; }
.lm-bw-opt__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: .125rem; }
.lm-bw-opt__title { font-size: .875rem; font-weight: 600; color: var(--foreground); }
.lm-bw-opt__sub { font-size: .75rem; color: var(--muted-foreground); }
.lm-bw-opt__hint { font-size: .75rem; color: #059669; font-weight: 500; margin-top: .125rem; }
.lm-bw-opt__role { font-size: .75rem; color: var(--primary); }
.lm-bw-opt__rate { display: inline-flex; align-items: center; gap: .25rem; color: var(--primary); }
.lm-bw-opt__rate-num { font-size: .75rem; font-weight: 600; color: var(--foreground); }
.lm-bw-opt__rate-count { font-size: .75rem; color: var(--muted-foreground); }
.lm-bw-opt__avail { font-size: .75rem; color: var(--muted-foreground); }
.lm-bw-opt__avail.is-on { color: #059669; font-weight: 500; }
.lm-bw-radio { width: 1.25rem; height: 1.25rem; border-radius: 999px; border: 2px solid var(--muted-foreground); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff; transition: all .2s; }
.lm-bw-radio svg { opacity: 0; }
.lm-bw-opt.is-selected .lm-bw-radio { border-color: var(--primary); background: var(--primary); }
.lm-bw-opt.is-selected .lm-bw-radio svg { opacity: 1; }

.lm-bw-divider { display: flex; align-items: center; gap: .75rem; margin: 1.25rem 0; color: var(--muted-foreground); font-size: .75rem; }
.lm-bw-divider::before, .lm-bw-divider::after { content: ""; flex: 1; height: 1px; background: var(--border); }

/* زر استعادة قائمة الخبيرات بعد اختيار "أفضل متخصصة متاحة" */
.lm-bw-expert-restore {
  display: block;
  width: 100%;
  margin-top: 1rem;
  padding: .75rem 1rem;
  background: none;
  border: 1px dashed var(--border);
  border-radius: .75rem;
  color: var(--primary);
  font-family: inherit;
  font-size: .8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.lm-bw-expert-restore:hover { border-color: var(--primary); background: rgba(184,138,68,.06); }

/* Service select grid */
.lm-bw-svc-section { margin-top: 2rem; margin-bottom: 1rem; }
.lm-bw-svc-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: .75rem; }
@media (min-width: 640px){ .lm-bw-svc-grid { grid-template-columns: repeat(3,1fr); } }
.lm-bw-svc {
  position: relative; text-align: right; display: flex; flex-direction: column; gap: .25rem;
  padding: 1rem; border-radius: 1rem; border: 1px solid var(--border); background: var(--card);
  cursor: pointer; transition: border-color .2s, background .2s;
}
.lm-bw-svc:hover { border-color: rgba(184,138,68,.5); }
.lm-bw-svc.is-selected { border-color: var(--primary); background: rgba(184,138,68,.05); }
.lm-bw-svc__check { position: absolute; top: .5rem; left: .5rem; width: 1.25rem; height: 1.25rem; border-radius: 999px; background: var(--primary); color: #fff; display: none; align-items: center; justify-content: center; }
.lm-bw-svc.is-selected .lm-bw-svc__check { display: flex; }
.lm-bw-svc__cat { font-size: .625rem; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: .08em; }
.lm-bw-svc__name { font-size: .875rem; font-weight: 600; color: var(--foreground); }
.lm-bw-svc__foot { display: flex; align-items: center; justify-content: space-between; margin-top: .5rem; }
.lm-bw-svc__price { font-size: .8125rem; font-weight: 700; color: var(--primary); }
.lm-bw-svc__dur { font-size: .6875rem; color: var(--muted-foreground); }

/* ═══════════ DateTimeSelection parity (step 1) ═══════════ */
.lm-book-wiz__step1-grid { display: flex; flex-direction: column; gap: 1.25rem; }
.lm-book-wiz__cal-box, .lm-book-wiz__times-box {
  background: var(--card); border: 1px solid var(--border); border-radius: 1rem; padding: 1.25rem;
}
.lm-book-wiz__cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.lm-book-wiz__cal-month { font-weight: 600; color: var(--foreground); font-size: 1rem; font-family: 'Tajawal',sans-serif; }
.lm-book-wiz__cal-nav { width: 2.25rem; height: 2.25rem; border-radius: .75rem; border: none; background: transparent; color: var(--foreground); cursor: pointer; font-size: 1.25rem; line-height: 1; transition: background .2s; }
.lm-book-wiz__cal-nav:hover { background: var(--secondary); }
.lm-book-wiz__cal-nav:disabled { opacity: .3; cursor: not-allowed; }
.lm-book-wiz__cal-weekdays { display: grid; grid-template-columns: repeat(7,1fr); margin-bottom: .75rem; }
.lm-book-wiz__cal-weekdays span { text-align: center; font-size: .75rem; font-weight: 500; color: var(--muted-foreground); padding: .25rem 0; }
.lm-book-wiz__cal-days { display: grid; grid-template-columns: repeat(7,1fr); gap: .25rem; }
.lm-book-wiz__cal-days > span { aspect-ratio: 1; }
.lm-book-wiz__cal-day {
  width: 100%; aspect-ratio: 1; border: none; background: transparent; border-radius: .75rem;
  font-size: .875rem; font-weight: 500; color: var(--foreground); cursor: pointer; transition: all .2s;
}
.lm-book-wiz__cal-day:hover:not(:disabled) { background: var(--secondary); }
.lm-book-wiz__cal-day:disabled { color: color-mix(in srgb, var(--muted-foreground) 40%, transparent); cursor: not-allowed; }
.lm-book-wiz__cal-day.is-selected { background: var(--primary); color: #fff; box-shadow: 0 4px 12px rgba(184,138,68,.3); }
.lm-book-wiz__cal-note { font-size: .6875rem; color: var(--muted-foreground); margin: 1rem 0 0; }
.lm-book-wiz__date-picked { margin-top: .75rem; font-size: .8125rem; }

.lm-book-wiz__times-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: .5rem; }
.lm-book-wiz__time-btn {
  padding: .625rem; border-radius: .75rem; border: 1px solid var(--border); background: var(--card);
  font-size: .75rem; font-weight: 500; color: var(--foreground); cursor: pointer; transition: all .2s;
}
.lm-book-wiz__time-btn:hover:not(:disabled) { border-color: var(--primary); color: var(--primary); }
.lm-book-wiz__time-btn.is-selected { border-color: var(--primary); background: var(--primary); color: #fff; box-shadow: 0 4px 12px rgba(184,138,68,.3); }
.lm-book-wiz__time-btn:disabled { color: color-mix(in srgb, var(--muted-foreground) 40%, transparent); background: color-mix(in srgb, var(--muted) 50%, transparent); cursor: not-allowed; }
.lm-book-wiz__times-empty { text-align: center; color: var(--muted-foreground); font-size: .8125rem; padding: 2rem 1rem; }
.lm-book-wiz__times-hint { color: var(--muted-foreground); font-size: .6875rem; margin: 0 0 1rem; }

/* ═══════════ Summary + CustomerInfo + Payment parity (step 2) ═══════════ */
.lm-book-wiz__summary { background: var(--card); border: 1px solid var(--border); border-radius: 1rem; padding: 1.25rem; margin-bottom: 1.5rem; }
.lm-book-wiz__summary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.lm-book-wiz__summary-grid .is-full { grid-column: 1 / -1; }
.lm-book-wiz__summary-label { font-size: .6875rem; color: var(--muted-foreground); margin: 0 0 .25rem; }
.lm-book-wiz__summary-val { font-size: .875rem; font-weight: 600; color: var(--foreground); margin: 0; }
.lm-book-wiz__summary-val--gold { color: var(--primary); }
.lm-book-wiz__summary-line { display: flex; justify-content: space-between; padding: .5rem .75rem; background: rgba(184,138,68,.05); border: 1px solid var(--border); border-radius: .5rem; margin-top: .375rem; font-size: .8125rem; }
.lm-book-wiz__summary-line-price { color: var(--primary); font-weight: 600; }
.lm-book-wiz__summary-total { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; margin-top: .5rem; border-top: 1px solid var(--border); }
.lm-book-wiz__summary-total-label { color: var(--muted-foreground); font-size: .75rem; }
.lm-book-wiz__summary-total-val { color: var(--primary); font-size: 1.375rem; font-weight: 700; }

.lm-book-wiz__form-section { background: var(--card); border: 1px solid var(--border); border-radius: 1rem; padding: 1.25rem; margin-bottom: 1.5rem; }
.lm-book-wiz__form-head { display: flex; align-items: center; gap: .625rem; margin-bottom: 1rem; }
.lm-book-wiz__form-num { width: 1.5rem; height: 1.5rem; border-radius: 999px; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; flex-shrink: 0; }
.lm-book-wiz__form-title { margin: 0; font-size: 1rem; font-weight: 600; color: var(--foreground); font-family: 'Tajawal',sans-serif; }
.lm-book-wiz__logged-hint { display: flex; align-items: center; gap: .375rem; background: rgba(184,138,68,.08); color: var(--foreground); border-radius: .5rem; padding: .5rem .75rem; font-size: .75rem; margin-bottom: 1rem; }
.lm-book-wiz__logged-mark { color: var(--primary); }
.lm-book-wiz__form-grid--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px){ .lm-book-wiz__form-grid--2 { grid-template-columns: 1fr; } }
.lm-book-wiz__field { display: flex; flex-direction: column; }
.lm-book-wiz__field--notes { margin-top: .875rem; }
.lm-book-wiz__field label { font-size: .75rem; font-weight: 500; color: var(--muted-foreground); margin-bottom: .375rem; }
.lm-book-wiz__field input, .lm-book-wiz__field textarea {
  background: var(--input-background); border: 1.5px solid var(--border); border-radius: .75rem;
  padding: .625rem .875rem; width: 100%; color: var(--foreground); font-family: 'Tajawal',sans-serif;
  font-size: .875rem; transition: border-color .2s, box-shadow .2s; outline: none;
}
.lm-book-wiz__field input:focus, .lm-book-wiz__field textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(184,138,68,.12); }
.lm-book-wiz__req { color: var(--destructive); }
.lm-book-wiz__field-error { color: var(--destructive); font-size: .6875rem; margin: .25rem 0 0; }

.lm-book-wiz__section-kicker--center { text-align: center; }
.lm-book-wiz__pay-grid { display: grid; grid-template-columns: 1fr; gap: .75rem; }
@media (min-width: 560px){ .lm-book-wiz__pay-grid { grid-template-columns: repeat(3,1fr); } }
.lm-book-wiz__pay-card {
  position: relative; text-align: right; display: flex; flex-direction: column; gap: .25rem;
  padding: 1rem; border-radius: 1rem; border: 1px solid var(--border); background: var(--card);
  cursor: pointer; transition: border-color .2s, background .2s;
}
.lm-book-wiz__pay-card:hover { border-color: rgba(184,138,68,.5); }
.lm-book-wiz__pay-card.is-selected { border-color: var(--primary); background: rgba(184,138,68,.05); }
.lm-book-wiz__pay-radio { position: absolute; top: .625rem; left: .625rem; width: 1.125rem; height: 1.125rem; border-radius: 999px; border: 2px solid var(--muted-foreground); display: flex; align-items: center; justify-content: center; color: #fff; }
.lm-book-wiz__pay-radio svg { opacity: 0; }
.lm-book-wiz__pay-card.is-selected .lm-book-wiz__pay-radio { border-color: var(--primary); background: var(--primary); }
.lm-book-wiz__pay-card.is-selected .lm-book-wiz__pay-radio svg { opacity: 1; }
.lm-book-wiz__pay-kicker { font-size: .625rem; color: var(--primary); text-transform: uppercase; letter-spacing: .1em; }
.lm-book-wiz__pay-title { font-size: .875rem; font-weight: 600; color: var(--foreground); }
.lm-book-wiz__pay-desc { font-size: .6875rem; color: var(--muted-foreground); line-height: 1.5; }

/* =========================================================================
   5-step booking flow — inline OTP + React Payment parity
   ========================================================================= */

/* Service chip on the expert step */
.lm-bw-svc-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: 1.25rem;
  padding: .5rem .875rem;
  background: var(--secondary, #E9DDD0);
  border-radius: .75rem;
  font-size: .75rem;
  color: var(--muted-foreground, #8B7E74);
}
.lm-bw-svc-chip strong { color: var(--primary, #B88A44); font-weight: 600; }

/* Customer step note */
.lm-book-wiz__note-box {
  margin-top: 1.25rem;
  padding: 1rem;
  background: rgba(233, 221, 208, .5);
  border-radius: .75rem;
  font-size: .75rem;
  line-height: 1.7;
  color: var(--muted-foreground, #8B7E74);
}

/* ——— OTP as an inline step (React OTPVerification.tsx) ——— */
.lm-bw-otp {
  max-width: 24rem;
  margin: 0 auto;
  padding: 2rem 0 1rem;
  text-align: center;
}
.lm-bw-otp__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 1rem;
  background: var(--secondary, #E9DDD0);
  color: var(--primary, #B88A44);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lm-bw-otp__title {
  font-family: 'Scheherazade New', 'Amiri', serif;
  font-weight: 500;
  font-size: 1.5rem;
  margin: 0 0 .5rem;
  color: var(--foreground, #1E1E1E);
}
.lm-bw-otp__lead { font-size: .875rem; color: var(--muted-foreground, #8B7E74); margin: 0; }
.lm-bw-otp__phone { font-weight: 600; margin: .25rem 0 0; color: var(--foreground, #1E1E1E); }
.lm-bw-otp__inputs {
  display: flex;
  gap: .75rem;
  justify-content: center;
  margin: 1.75rem 0 1rem;
}
.lm-bw-otp__inputs input {
  width: 3.5rem;
  height: 3.5rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  border: 2px solid var(--border, #ECE8E1);
  border-radius: .75rem;
  background: var(--input-background, #F5F2EE);
  color: var(--foreground, #1E1E1E);
  outline: none;
  transition: border-color .15s ease, background .15s ease;
}
.lm-bw-otp__inputs input:focus { border-color: var(--primary, #B88A44); box-shadow: 0 0 0 3px rgba(184,138,68,.15); }
.lm-bw-otp__inputs input.is-filled { border-color: var(--primary, #B88A44); background: rgba(184,138,68,.05); color: var(--primary, #B88A44); }
.lm-bw-otp__inputs input:disabled { opacity: .55; cursor: not-allowed; }
.lm-bw-otp__timer { font-size: .75rem; color: var(--muted-foreground, #8B7E74); min-height: 1.1rem; margin: 0 0 1.25rem; }
.lm-bw-otp__verify {
  width: 100%;
  padding: .875rem;
  border-radius: .75rem;
  font-weight: 600;
  font-family: inherit;
  border: 0;
  cursor: pointer;
}
.lm-bw-otp__verify:disabled { opacity: .5; cursor: not-allowed; }
.lm-bw-otp__edit {
  display: block;
  width: 100%;
  margin-top: .875rem;
  background: none;
  border: 0;
  color: var(--muted-foreground, #8B7E74);
  font-family: inherit;
  font-size: .75rem;
  text-decoration: underline;
  cursor: pointer;
}
.lm-bw-otp__edit:hover { color: var(--foreground, #1E1E1E); }

/* ——— Payment step (React Payment.tsx) ——— */
.lm-bw-pay-recap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
  background: rgba(233, 221, 208, .5);
  border-radius: 1rem;
}
.lm-bw-pay-recap__name { font-weight: 600; font-size: .875rem; margin: 0; color: var(--foreground, #1E1E1E); }
.lm-bw-pay-recap__meta { font-size: .75rem; color: var(--muted-foreground, #8B7E74); margin: .15rem 0 0; }
.lm-bw-pay-recap__total { font-weight: 700; font-size: 1.125rem; color: var(--primary, #B88A44); margin: 0; white-space: nowrap; }

.lm-bw-pay-secure {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: 1.25rem 0;
  padding: .75rem;
  background: rgba(233, 221, 208, .5);
  border-radius: .75rem;
  font-size: .75rem;
  line-height: 1.6;
  color: var(--muted-foreground, #8B7E74);
}
.lm-bw-pay-secure svg { color: var(--primary, #B88A44); flex-shrink: 0; }

.lm-bw-pay-btn {
  width: 100%;
  padding: 1rem;
  border-radius: .75rem;
  font-weight: 600;
  font-size: 1rem;
  font-family: inherit;
  border: 0;
  cursor: pointer;
}
.lm-bw-pay-btn:disabled { opacity: .5; cursor: not-allowed; }

/* =========================================================================
   Customer Info step (React CustomerInfo.tsx) + OTP inline states
   ========================================================================= */
.lm-bw-cf-eyebrow {
  color: var(--primary, #B88A44);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .12em;
  margin: 0 0 .25rem;
}

.lm-bw-cf-loggedin {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
  padding: .75rem 1rem;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: .75rem;
}
.lm-bw-cf-loggedin__dot { width: .5rem; height: .5rem; border-radius: 50%; background: #10b981; flex-shrink: 0; }
.lm-bw-cf-loggedin p { margin: 0; font-size: .875rem; color: #047857; }
.lm-bw-cf-loggedin strong { font-weight: 700; }

/* single-column stacked form (space-y-5) */
.lm-bw-cust-form { display: flex; flex-direction: column; gap: 1.25rem; }

.lm-bw-cf__label {
  display: block;
  font-size: .875rem;
  font-weight: 500;
  margin-bottom: .375rem;
  color: var(--foreground, #1E1E1E);
}
.lm-bw-cf__hint { font-weight: 400; font-size: .75rem; }
.lm-bw-cf__hint.is-muted { color: var(--muted-foreground, #8B7E74); }
.lm-bw-cf__hint.is-primary { color: var(--primary, #B88A44); }

.lm-bw-cf__wrap { position: relative; }
.lm-bw-cf__icon {
  position: absolute;
  right: .875rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-foreground, #8B7E74);
  display: flex;
  pointer-events: none;
}
.lm-bw-cf__icon--top { top: .9rem; transform: none; }

.lm-bw-cf__input { width: 100%; padding-right: 2.5rem !important; }
.lm-bw-cf__input--pass { padding-left: 2.5rem !important; }
.lm-bw-cf__textarea { resize: none; }

.lm-bw-cf__eye {
  position: absolute;
  left: .875rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  padding: 0;
  color: var(--muted-foreground, #8B7E74);
  cursor: pointer;
  display: flex;
}
.lm-bw-cf__eye:hover { color: var(--foreground, #1E1E1E); }

.lm-bw-cf.is-disabled .lm-bw-cf__input { opacity: .6; cursor: not-allowed; background: var(--secondary, #E9DDD0); }
.lm-bw-cf__input[aria-invalid="true"] { border-color: var(--destructive, #C0392B) !important; }
.lm-book-wiz__field-error { color: var(--destructive, #C0392B); font-size: .75rem; margin: .35rem 0 0; }

.lm-bw-cf-note {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(233, 221, 208, .5);
  border-radius: .75rem;
  font-size: .75rem;
  line-height: 1.7;
  color: var(--muted-foreground, #8B7E74);
}

/* OTP inline states */
.lm-bw-otp__loading { font-size: .875rem; color: var(--primary, #B88A44); font-weight: 500; margin: 0 0 1rem; }
.lm-bw-otp__foot { display: flex; flex-direction: column; gap: .5rem; align-items: center; }
.lm-bw-otp__resent { font-size: .75rem; color: #059669; font-weight: 500; margin: 0; }
.lm-bw-otp__resend-line { font-size: .75rem; color: var(--muted-foreground, #8B7E74); margin: 0; }
.lm-bw-otp__resend {
  background: none;
  border: 0;
  padding: 0;
  color: var(--primary, #B88A44);
  font-family: inherit;
  font-size: .75rem;
  font-weight: 500;
  cursor: pointer;
}
.lm-bw-otp__resend:hover { text-decoration: underline; }
.lm-bw-otp__badge {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #B88A44, #D4A96A, #B88A44);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(184, 138, 68, .4);
}
.lm-bw-otp--verified { padding-top: 2.5rem; }

/* =========================================================================
   Booking Summary step (React BookingSummary.tsx)
   ========================================================================= */
.lm-bw-sum-eyebrow {
  color: var(--primary, #B88A44);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .12em;
  margin: 0 0 .25rem;
}
/* Salon card — img + name + category + address (React BookingSummary.tsx) */
.lm-bw-sum-salon {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--card, #fff);
  border: 1px solid var(--border, #ECE8E1);
  border-radius: 1rem;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}
.lm-bw-sum-salon__img {
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  border-radius: .75rem;
  object-fit: cover;
  display: block;
}
.lm-bw-sum-salon__img--plain { background: linear-gradient(135deg, var(--primary, #B88A44), #d4a96a); }
.lm-bw-sum-salon__info { min-width: 0; }
.lm-bw-sum-salon__name { margin: 0; font-weight: 600; font-size: 1rem; color: var(--foreground, #1E1E1E); }
.lm-bw-sum-salon__cat { margin: .1rem 0 0; font-size: .75rem; color: var(--muted-foreground, #8B7E74); }
.lm-bw-sum-salon__addr { display: flex; align-items: center; gap: .25rem; margin: .25rem 0 0; font-size: .75rem; color: var(--muted-foreground, #8B7E74); line-height: 1.5; }
.lm-bw-sum-salon__addr svg { flex-shrink: 0; }

.lm-bw-sum-rows {
  background: var(--card, #fff);
  border: 1px solid var(--border, #ECE8E1);
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.lm-bw-sum-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .875rem 1.25rem;
  border-bottom: 1px solid var(--border, #ECE8E1);
}
.lm-bw-sum-row:last-child { border-bottom: 0; }
.lm-bw-sum-row__ic { color: var(--primary, #B88A44); flex-shrink: 0; display: inline-flex; align-items: center; }
.lm-bw-sum-row__label { font-size: .875rem; color: var(--muted-foreground, #8B7E74); width: 5rem; flex-shrink: 0; }
.lm-bw-sum-row__val { font-size: .875rem; font-weight: 500; color: var(--foreground, #1E1E1E); }

.lm-bw-sum-price {
  background: var(--card, #fff);
  border: 1px solid var(--border, #ECE8E1);
  border-radius: 1rem;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}
.lm-bw-sum-price__lines { margin-bottom: 1rem; }
.lm-bw-sum-price__line {
  display: flex;
  justify-content: space-between;
  font-size: .875rem;
  color: var(--foreground, #1E1E1E);
  margin-bottom: .5rem;
}
.lm-bw-sum-price__line:last-child { margin-bottom: 0; }
.lm-bw-sum-price__line > span:first-child { color: var(--muted-foreground, #8B7E74); }
.lm-bw-sum-price__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border, #ECE8E1);
  padding-top: .75rem;
  font-weight: 600;
  color: var(--foreground, #1E1E1E);
}
.lm-bw-sum-price__total-val { font-weight: 700; font-size: 1.25rem; color: var(--primary, #B88A44); }

/* =========================================================================
   Service selection — horizontal cards (React BookingEntry.tsx)
   ========================================================================= */
.lm-bw-svclist { display: flex; flex-direction: column; gap: 1rem; }
.lm-bw-svcrow {
  width: 100%;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  text-align: right;
  background: var(--card, #fff);
  border: 1px solid var(--border, #ECE8E1);
  border-radius: 1rem;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.lm-bw-svcrow:hover { border-color: rgba(184,138,68,.4); box-shadow: 0 6px 18px rgba(0,0,0,.06); transform: translateY(-2px); }
.lm-bw-svcrow.is-selected { border-color: var(--primary, #B88A44); box-shadow: 0 4px 20px rgba(184,138,68,.2); background: rgba(184,138,68,.05); }
.lm-bw-svcrow__thumb {
  width: 5rem; height: 5rem; flex-shrink: 0;
  border-radius: .75rem; overflow: hidden;
  background: var(--secondary, #E9DDD0);
  display: block;
}
.lm-bw-svcrow__thumb img { width: 100%; height: 100%; object-fit: cover; }
.lm-bw-svcrow__body { flex: 1; min-width: 0; }
.lm-bw-svcrow__head { display: flex; align-items: flex-start; justify-content: space-between; gap: .75rem; }
.lm-bw-svcrow__name { display: block; font-weight: 600; font-size: .875rem; color: var(--foreground, #1E1E1E); }
.lm-bw-svcrow__cat { display: block; font-size: .6875rem; color: var(--muted-foreground, #8B7E74); margin-top: .1rem; }
.lm-bw-svcrow__meta { text-align: left; flex-shrink: 0; }
.lm-bw-svcrow__price { display: block; font-weight: 700; font-size: .875rem; color: var(--primary, #B88A44); }
.lm-bw-svcrow__dur { display: block; font-size: .6875rem; color: var(--muted-foreground, #8B7E74); margin-top: .1rem; }
.lm-bw-svcrow__desc {
  display: block; margin-top: .4rem;
  font-size: .75rem; line-height: 1.6; color: var(--muted-foreground, #8B7E74);
  overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.lm-bw-svcrow__check {
  flex-shrink: 0; width: 1.5rem; height: 1.5rem; margin-top: .25rem;
  border-radius: 999px; border: 2px solid var(--muted-foreground, #8B7E74);
  color: #fff; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .15s, background .15s, border-color .15s;
}
.lm-bw-svcrow.is-selected .lm-bw-svcrow__check { opacity: 1; background: var(--primary, #B88A44); border-color: var(--primary, #B88A44); }
@media (max-width: 480px) {
  .lm-bw-svcrow__thumb { width: 4rem; height: 4rem; }
}

/* Booking summary — loading state + discount line (real WC totals) */
.lm-bw-sum-loading { display: flex; justify-content: center; padding: 3rem 0; }
.lm-bw-spinner {
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  border: 3px solid var(--border, #ECE8E1);
  border-top-color: var(--primary, #B88A44);
  animation: lm-bw-spin .8s linear infinite;
}
@keyframes lm-bw-spin { to { transform: rotate(360deg); } }
.lm-bw-sum-price__line--discount span { color: #059669; }

/* Checkout Loading Overlay */
.lm-book-wiz__loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lm-book-wiz__loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  background: var(--card, #fff);
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.lm-book-wiz__spinner-ring {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 4px solid var(--border, #ECE8E1);
  border-top-color: var(--primary, #B88A44);
  border-right-color: var(--primary, #B88A44);
  animation: lm-bw-spin 1s linear infinite;
}

.lm-book-wiz__loading-text {
  margin: 0;
  color: var(--foreground, #1E1E1E);
  font-size: 0.875rem;
  font-weight: 500;
}
