.hco-progress {
  --hco-progress: 0%;
}

.hco-progress__wrap {
  position: relative;
  padding: 0px;
}

.hco-progress__line {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 28px;
  height: 2px;
  background: #f0f0f0;
}

.hco-progress__line::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 2px;
  width: var(--hco-progress);
  background: #ED580F;
}

.hco-progress__items {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.hco-progress__item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hco-progress__dot {
  width: 56px;
  height: 56px;
  border-radius: 999px;
	border: 4px solid #fff;
  margin: 0 auto 6px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  background: #f0f0f0;
  color: #565656;
}

.hco-progress__label {
  font-size: 1rem;
  color: #565656;
  line-height: 1.2;
}

.hco-progress__item.is-active .hco-progress__dot {
  background: #F1793F;
  color: #fff;
}

.hco-progress__item.is-done .hco-progress__dot {
  background: #ED580F;
  color: #fff;
}

@media (max-width: 768px) {
  .hco-progress__label { font-size: 11px; }
  .hco-progress__items { grid-template-columns: repeat(3, 1fr); row-gap: 14px; }
  .hco-progress__line { display: none; } /* mobile gọn */
}