.ncs-checkout-steps {
  width: 100%;
  padding: 30px 0 20px;
  background: #fff;
}

.ncs-steps-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
}

/* Step */
.ncs-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  position: relative;
}

/* Circle */
.ncs-step__circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  background: #e0e0e0;
  color: #9e9e9e;
  transition: all 0.3s ease;
}

.ncs-step--active .ncs-step__circle {
  background: #333;
  color: #fff;
}

.ncs-step--completed .ncs-step__circle {
  background: #4CAF50;
  color: #fff;
}

/* Checkmark icon */
.ncs-step__check {
  display: block;
}

/* Label */
.ncs-step__label {
  margin-top: 8px;
  font-size: 13px;
  color: #999;
  white-space: nowrap;
  font-weight: 400;
}

.ncs-step--active .ncs-step__label {
  color: #333;
  font-weight: 600;
}

.ncs-step--completed .ncs-step__label {
  color: #4CAF50;
  font-weight: 400;
}

/* Connector line */
.ncs-line {
  flex: 1;
  height: 2px;
  background: #e0e0e0;
  margin: 19px 10px 0;
  min-width: 60px;
}

.ncs-line--completed {
  background: #4CAF50;
}

/* Responsive */
@media (max-width: 576px) {
  .ncs-checkout-steps {
    padding: 20px 10px 15px;
  }

  .ncs-step__circle {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .ncs-step__label {
    font-size: 11px;
  }

  .ncs-line {
    min-width: 30px;
    margin: 16px 5px 0;
  }
}
