/* Minimal top progress for mobile */
.fop-progress{
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  padding: 10px 12px 6px;
  border-bottom: 1px solid #f1f5f9;
}
.fop-progress__bar{
  height: 8px;
  width: 100%;
  background: #f1f5f9;
  border-radius: 999px;
  overflow: hidden;
}
.fop-progress__fill{
  height: 100%;
  width: 0%;
  background: #10b981;
  transition: width .2s ease;
}
.fop-progress__label{
  margin-top: 6px;
  font-size: 12px;
  color: #334155;
}

/* Optional: show progress-only on small screens, hide on large */
@media (min-width: 992px){
  .fop-progress{ display: none; }
}
