/* ===== Wizard top steps ===== */
.wizard-steps-top {
  margin-bottom: 1rem;
}

.wiz-top-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
}

.wiz-top-step {
  border: 1px solid #e9ecef;
  background: #fff;
  border-radius: 14px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all .18s ease;
  text-align: left;
  min-height: 66px;
}

.wiz-top-step:hover {
  transform: translateY(-1px);
  border-color: #cfe7df;
  box-shadow: 0 6px 16px rgba(0, 89, 78, .08);
}

.wiz-top-step.is-active {
  border-color: #00594e;
  background: linear-gradient(180deg, #f5fbf9 0%, #ffffff 100%);
  box-shadow: 0 8px 20px rgba(0, 89, 78, .12);
}

.wiz-top-step.is-done {
  border-color: #bde5d8;
  background: #f7fffb;
}

.wiz-top-step.is-locked {
  opacity: .65;
  cursor: not-allowed;
}

.wiz-top-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #f1f3f5;
  color: #495057;
  position: relative;
}

.wiz-top-step.is-active .wiz-top-icon {
  background: #00594e;
  color: #fff;
}

.wiz-top-step.is-done .wiz-top-icon {
  background: #198754;
  color: #fff;
}

.wiz-top-step.is-done .wiz-top-icon::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  color: #198754;
  display: grid;
  place-items: center;
  font-size: 10px;
  border: 1px solid #d1e7dd;
}

.wiz-top-text {
  min-width: 0;
  line-height: 1.15;
}

.wiz-top-text small {
  display: block;
  color: #6c757d;
  font-size: 11px;
  margin-bottom: 2px;
}

.wiz-top-text span {
  display: block;
  color: #1f2d3d;
  font-weight: 700;
  font-size: 12.5px;
}

.summary-box {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 10px 12px;
}

.required-dot { color: #dc3545; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 8px;
}

.cat-btn {
  border: 1px solid #dce3ea;
  background: #fff;
  color: #334155;
  border-radius: 10px;
  padding: 8px 10px;
  text-align: left;
  font-size: 13px;
  transition: all .15s ease;
}

.cat-btn:hover {
  border-color: #bcded6;
  background: #f7fffd;
}

.cat-btn.active {
  border-color: #00594e;
  background: #ecf8f5;
  color: #00594e;
  font-weight: 600;
}

.hint {
  color: #6c757d;
  font-size: 12px;
}