/* Status Progress Tracker – Fixed & Perfect */
.process-tracker {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  /* gap: 12px 24px; */
  margin: 1rem 0;
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.4;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
  text-align: center;
}

.process-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  overflow: hidden;
}
.process-checkmark {
  width: 26px;
  height: 26px;
}
/* Past steps – faded dark blue */
.process-past {
  opacity: 0.45;
}
.process-past .process-number {
  background: green;
  color: #3fd99e;
  padding: 4px;
}
.process-past .process-label {
  color: #132b4f;
  font-size: 1rem;
  font-weight: 600;
}

/* Current step – Gold */
.process-current .process-number {
  background: green;
  color: white;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.process-current .process-label {
  font-weight: 700;
  color: #BF9B30;
  font-size: 17px;
}

/* Next step – Biggest Gold (the one user will click next) */
.process-next .process-number {
  background: #f1f5f9;
  color: #94a3b8;
  /* width: 48px;
  height: 48px; */
  line-height: 48px;
  font-size: 20px;
  /* box-shadow: 0 8px 20px rgba(191, 155, 48, 0.5); */
}
.process-next .process-label {
  font-weight: 800;
  color: #132b4f;
  font-size: 0.8rem;
}

/* Future steps – light gray */
.process-future .process-number {
  background: #f1f5f9;
  color: #94a3b8;
  border: 2px solid #e2e8f0;
}
.process-future .process-label {
  color: #132b4f;
  font-size: 0.8rem;
  font-weight: 600;
}

/* When order is completed – celebrate with light green */
.process-completed .process-number {
  background: #3fd99e !important;
  color: white !important;
  box-shadow: 0 6px 16px rgba(63, 217, 158, 0.4) !important;
}
.process-completed .process-label {
  color: #3fd99e !important;
  font-weight: 700 !important;
}

/* Arrows */
.process-arrow */
.process-arrow {
  font-size: 28px;
  font-weight: bold;
  color: #cbd5e1;
}

/* Progress button – Gold */
.process-progress-btn {
  background: #BF9B30;
  color: white;
  border: none;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(191, 155, 48, 0.35);
  transition: all 0.2s;
  margin-top: 20px;
}
.process-progress-btn:hover {
  background: #a88427;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(191, 155, 48, 0.45);
}
.process-completed .process-number,
.process-past.process-completed .process-number {
  background: #3fd99e !important;
}

/* Responsive */
/* @media (max-width: 640px) {
  .process-tracker {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .process-arrow {
    transform: rotate(90deg);
    align-self: center;
  }
  .process-step {
    flex-direction: row;
    gap: 12px;
    min-width: auto;
  }
  .process-number {
    margin-bottom: 0;
  }
} */
