/* Status Progress Tracker.
   Lives inside .order-card.flat-bg (a dark glass panel in both themes),
   so its text uses the on-dark token rather than the themed one. */
.process-tracker {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  margin: 1rem 0;
  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: 0.95rem;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  overflow: hidden;
}
.process-checkmark {
  width: 26px;
  height: 26px;
}

/* Past steps – faded */
.process-past {
  opacity: 0.55;
}
.process-past .process-number {
  background: rgba(63, 217, 158, 0.25);
  color: var(--green);
  padding: 4px;
}
.process-past .process-label {
  color: var(--text-on-dark);
  font-size: 1rem;
  font-weight: 600;
}

/* Current step */
.process-current .process-number {
  background: var(--green);
  color: var(--navy-deep);
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}
.process-current .process-label {
  font-weight: 700;
  color: var(--gold);
  font-size: 1.05rem;
}

/* Next step – the one the admin will action next */
.process-next .process-number {
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  font-size: 1.1rem;
}
.process-next .process-label {
  font-weight: 800;
  color: var(--text-on-dark);
  font-size: 0.85rem;
}

/* Future steps */
.process-future .process-number {
  background: rgba(255, 255, 255, 0.35);
  color: var(--navy);
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.process-future .process-label {
  color: var(--text-on-dark);
  opacity: 0.75;
  font-size: 0.85rem;
  font-weight: 600;
}

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

/* Arrows */
.process-arrow {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--text-on-dark);
  opacity: 0.5;
}

/* Progress button – Gold */
.process-progress-btn {
  background: var(--gold);
  color: var(--navy-deep);
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  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: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(191, 155, 48, 0.45);
}
