.wizard-stepper {
  display: flex;
  gap: var(--app-spacing-xs);
  padding: var(--app-spacing-md);
  margin: 0;
  list-style: none;
  background: var(--app-color-surface);
  border-bottom: 1px solid var(--app-color-border);
  align-items: center;
  justify-content: space-between;
}

.wizard-stepper__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--app-spacing-xs);
  flex: 1 1 auto;
  position: relative;
  text-align: center;
}

.wizard-stepper__step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 14px;
  left: calc(50% + 18px);
  right: calc(-50% + 18px);
  height: 2px;
  background: var(--app-color-border);
  z-index: 0;
}

.wizard-stepper__step--done:not(:last-child)::after {
  background: var(--app-color-primary);
}

.wizard-stepper__bullet {
  width: 28px;
  height: 28px;
  border-radius: var(--app-radius-full);
  background: var(--app-color-surface-alt);
  color: var(--app-color-text-muted);
  border: 2px solid var(--app-color-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--app-font-size-sm);
  font-weight: 700;
  position: relative;
  z-index: 1;
  transition: background var(--app-transition-base), border-color var(--app-transition-base), color var(--app-transition-base);
}

.wizard-stepper__step--active .wizard-stepper__bullet {
  background: var(--app-color-primary);
  border-color: var(--app-color-primary);
  color: var(--app-color-text-inverse);
  transform: scale(1.1);
}

.wizard-stepper__step--done .wizard-stepper__bullet {
  background: var(--app-color-primary);
  border-color: var(--app-color-primary);
  color: var(--app-color-text-inverse);
}

.wizard-stepper__label {
  font-size: var(--app-font-size-xs);
  color: var(--app-color-text-muted);
  font-weight: 500;
  line-height: 1.2;
}

.wizard-stepper__step--active .wizard-stepper__label {
  color: var(--app-color-primary);
  font-weight: 700;
}

.wizard-stepper__step--done .wizard-stepper__label {
  color: var(--app-color-text);
}
