.wizard-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  margin-bottom: 2rem;
  padding: 0 0.5rem;
}

.wizard-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  flex: 1;
  position: relative;
}

.wizard-step + .wizard-step::before {
  content: '';
  position: absolute;
  top: 14px;
  left: -50%;
  width: 100%;
  height: 2px;
  background: #dfe6e9;
  z-index: 0;
}

.wizard-step.completed + .wizard-step.completed::before,
.wizard-step.completed + .wizard-step.active::before {
  background: #27ae60;
}

.wizard-step-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #dfe6e9;
  background: #fff;
  color: #7f8c8d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 1;
  transition: all 0.2s ease;
}

.wizard-step.active .wizard-step-circle {
  border-color: #2c3e50;
  background: #2c3e50;
  color: #fff;
}

.wizard-step.completed .wizard-step-circle {
  border-color: #27ae60;
  background: #27ae60;
  color: #fff;
}

.wizard-step-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: #7f8c8d;
  text-align: center;
  white-space: nowrap;
}

.wizard-step.active .wizard-step-label {
  color: #2c3e50;
}

.wizard-step.completed .wizard-step-label {
  color: #27ae60;
}

.wizard-panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  animation: fadeIn 0.22s ease;
}

.wizard-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.wizard-actions .btn-secondary-action,
.wizard-actions .btn-checkout {
  flex: 1;
}

.wizard-review-section {
  background: #f9f9f9;
  border-radius: 6px;
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
}

.wizard-review-section h4 {
  font-size: 0.95rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.wizard-review-section p {
  font-size: 0.85rem;
  color: #636e72;
  line-height: 1.5;
  margin: 0;
}

.wizard-fee-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #636e72;
  padding: 0.4rem 0;
}

.wizard-fee-row.total {
  font-weight: 700;
  color: #2c3e50;
  border-top: 2px solid #ecf0f1;
  margin-top: 0.5rem;
  padding-top: 0.7rem;
}

@media (max-width: 640px) {
  .wizard-step-label {
    font-size: 0.6rem;
  }
  .wizard-step-circle {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }
  .wizard-step + .wizard-step::before {
    top: 12px;
  }
}
