#order_steps {
  /* background: #f8f8f8; */
  padding: 3rem 0;
}

#order_steps .step {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #aaa;
  font-weight: 600;
  transition: all 0.3s ease;
}

#order_steps .step .circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  background: transparent;
}

#order_steps .step .label {
  font-size: 1.05rem;
  letter-spacing: 1px;
}

#order_steps .step.active {
  color: #1a237e;
}

#order_steps .step.active .circle {
  border-color: #1a237e;
  color: #1a237e;
}

#order_steps .step.active .label {
  color: #1a237e;
}

#order_steps .arrow {
  color: #ccc;
  font-size: 1.2rem;
  font-weight: 300;
}

@media (max-width: 768px) {
  #order_steps .arrow {
    display: none;
  }
}

@media (max-width: 992px) {
  #order_steps #stepBar {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
  }
  #order_steps .step {
    flex: 0 1 40%;
    min-width: 140px;
  }
  #order_steps .step .circle {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
  #order_steps .step .label {
    font-size: 0.9rem;
  }
  #order_steps .arrow {
    display: none;
  }
}


@media (max-width: 576px) {
  #order_steps .step {
    flex: 0 1 45%;
    min-width: 120px;
  }
  #order_steps .step .circle {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
  #order_steps .step .label {
    font-size: 0.8rem;
  }
}
