/* /prices/ catalog */
.price-layout {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 980px) {
  .price-layout {
    grid-template-columns: 240px minmax(0, 1fr);
    align-items: start;
  }
}
.price-nav {
  position: sticky;
  top: 5.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1rem;
}
.price-search label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}
.price-search input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.7rem;
  font: inherit;
}
.price-anchors {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.9rem;
}
.price-anchors a {
  font-weight: 600;
  color: var(--muted);
  font-size: 0.92rem;
}
.price-anchors a:hover { color: var(--dark); }
.price-stage { margin-top: 2rem; }
.price-stage:first-child { margin-top: 0.5rem; }
.price-stage h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
}
.price-cat { margin-bottom: 1.5rem; }
.price-cat h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  color: var(--dark);
}
.price-cat .price-table { margin: 0; }
[data-price-row][hidden] { display: none !important; }
.price-empty {
  display: none;
  margin: 1rem 0;
  color: var(--muted);
  font-weight: 600;
}
.price-empty.is-on { display: block; }
@media (max-width: 899px) {
  .price-nav { position: static; }
}
