/* Order Progress Styles */
.order-progress {
  margin-bottom: 3rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

.progress-steps::before {
  content: '';
  position: absolute;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(var(--theme-primary-rgb), 0.2),
    rgba(var(--theme-primary-rgb), 0.6)
  );
  top: 18px;
  left: 12%;
  right: 12%;
  z-index: 1;
  border-radius: 3px;
}

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

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(248, 249, 250, 0.9);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(222, 226, 230, 0.5);
  color: #6c757d;
  margin-bottom: 12px;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.progress-step.active .step-icon {
  background: linear-gradient(
    135deg,
    var(--theme-primary),
    var(--theme-primary-hover)
  );
  border-color: var(--theme-primary);
  color: white;
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(var(--theme-primary-rgb), 0.4);
}

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

/* 완료된 단계에 대한 스타일 */
.progress-step.completed .step-icon {
  background: linear-gradient(135deg, #28a745, #20c997);
  border-color: #28a745;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(40, 167, 69, 0.3);
}

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