/* ═══════════════════════════════════════
   CLEN | كلن — Stepper Component
   ═══════════════════════════════════════ */

/* ─── Stepper (Figma 4159:4907) ─── */
.booking-stepper {
  margin-block-end: var(--space-6);
  max-width: var(--booking-content-max, 100%);
  margin-inline: auto;
  width: 100%;
  box-sizing: border-box;
  padding-inline: var(--booking-step-padding, var(--page-padding));
}

.booking-stepper__list {
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 12px 14px;
  width: 100%;
  direction: rtl;
  gap: 0;
  background: var(--color-card);
  border: 1px solid var(--color-border-tab);
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(39, 45, 82, 0.08);
}

.booking-stepper__item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 0;
  text-align: center;
}

.booking-stepper__line {
  flex: 0 1 12px;
  min-width: 6px;
  max-width: 28px;
  height: 20px;
  padding-top: 16px;
  list-style: none;
}

.booking-stepper__line::before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-border-tab);
}

.booking-stepper__dot {
  box-sizing: border-box;
  width: clamp(30px, 8vw, 38px);
  height: clamp(30px, 8vw, 38px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  background: var(--color-card);
  border: 2px solid var(--color-border-tab);
  color: var(--color-pale-sky);
  flex-shrink: 0;
}

.booking-stepper__item--active .booking-stepper__dot {
  background: var(--color-primary);
  border-color: var(--color-border-tab);
  color: var(--color-text-on-primary);
}

.booking-stepper__item--done .booking-stepper__dot {
  background: var(--color-primary);
  border-color: var(--color-border-tab);
  color: var(--color-text-on-primary);
  font-size: 15px;
}

.booking-stepper__label {
  width: 100%;
  font-size: clamp(9px, 2.4vw, 11px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-pale-sky);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.booking-stepper__item--active .booking-stepper__label {
  color: var(--color-primary);
  font-weight: 700;
}

.booking-stepper__item--done .booking-stepper__label {
  color: var(--color-pale-sky);
  font-weight: 600;
}

