/* Order Progress Styles */
.order-progress {
  margin-bottom: 2rem;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 30px;
  margin-top: 15px;
  padding: 0 10px;
}

.progress-steps::before {
  content: '';
  position: absolute;
  height: 2px;
  background-color: #dee2e6;
  top: 15px;
  left: 8%;
  right: 8%;
  z-index: 1;
}

.progress-step {
  position: relative;
  text-align: center;
  z-index: 2;
  flex: 1;
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f8f9fa;
  border: 2px solid #dee2e6;
  color: #6c757d;
  margin-bottom: 8px;
  font-weight: bold;
  box-shadow: 0 0 0 4px white;
}

.step-text {
  font-size: 0.85rem;
  color: #6c757d;
  display: block;
}

.progress-step.active .step-icon {
  background-color: var(--theme-primary);
  border-color: var(--theme-primary);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 0 0 4px rgba(var(--theme-primary-rgb, 13, 110, 253), 0.1);
}

.progress-step.active .step-text {
  color: var(--theme-primary);
  font-weight: bold;
}

/* 완료된 단계에 대한 스타일 */
.progress-step.completed .step-icon {
  background-color: #28a745;
  border-color: #28a745;
  color: white;
}

.progress-step.completed .step-text {
  color: #28a745;
}
