/* Configurator Breadcrumbs Fix - 2025-10-20 21:15 */

.progress-step {
  flex: 0 0 auto !important;
  min-width: 90px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  position: relative !important;
  cursor: pointer !important;
  transition: opacity 0.15s !important;
  padding: 0 0.5rem !important;
}

.progress-step:hover {
  opacity: 0.75 !important;
}

/* Connecting line between steps */
.progress-step:not(:last-child)::after {
  content: '' !important;
  position: absolute !important;
  top: 20px !important;
  left: calc(50% + 20px) !important;
  right: calc(-100% + 20px) !important;
  height: 1px !important;
  background-color: #d1d5db !important;
  z-index: 0 !important;
}

.progress-step.completed:not(:last-child)::after {
  background-color: #697757 !important;
}

/* Circular step number */
.progress-step .step-number {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 2.5rem !important;
  height: 2.5rem !important;
  border-radius: 50% !important;
  background-color: #e5e7eb !important;
  border: 2px solid #d1d5db !important;
  font-weight: 600 !important;
  margin-bottom: 0.5rem !important;
  transition: all 0.2s !important;
  color: #9ca3af !important;
  font-size: 0.875rem !important;
  position: relative !important;
  z-index: 1 !important;
}

.progress-step.completed .step-number {
  background-color: #697757 !important;
  border-color: #697757 !important;
  color: white !important;
}

.progress-step.current .step-number {
  background-color: #697757 !important;
  border-color: #697757 !important;
  color: white !important;
}

/* Label below the circle - only show on desktop */
@media (min-width: 769px) {
  .progress-step .step-label {
    display: block !important;
    font-size: 0.75rem !important;
    color: #6b7280 !important;
    font-weight: 500 !important;
    text-align: center !important;
    line-height: 1.2 !important;
  }

  .progress-step.completed .step-label,
  .progress-step.current .step-label {
    color: #070909 !important;
    font-weight: 600 !important;
  }
}

/* Hide labels on mobile */
@media (max-width: 768px) {
  .progress-step .step-label {
    display: none !important;
  }
}
