/* ============================================================
   Прайс-лист
   ============================================================ */
.price-bar { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.price-bar .search { flex: 1; min-width: 240px; }

.ptabs { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.ptab {
  padding: 9px 17px;
  border: 1px solid var(--line);
  border-radius: 60px;
  font-size: 12.5px;
  color: var(--muted);
  transition: border-color .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.ptab:hover { border-color: var(--gold-500); color: var(--ink); }
.ptab.is-active { background: var(--navy-800); border-color: var(--navy-800); color: var(--cream-50); }

.price-cat { margin-bottom: clamp(40px, 5vw, 66px); }
.price-cat > h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-gold);
  margin-bottom: 8px;
}
.price-group { margin-top: 30px; }
.price-group > h3 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 6px;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.price-row:hover { background: rgba(255, 255, 255, .5); }
.price-name { font-size: 15.5px; }
.price-name small { display: block; font-size: 12px; color: var(--muted); letter-spacing: .04em; margin-top: 2px; }
.price-dots { flex: 1; border-bottom: 1px dotted var(--sand-400); transform: translateY(-4px); min-width: 20px; }
.price-value { font-size: 15px; white-space: nowrap; font-weight: 500; }
.price-value.is-request { font-weight: 300; color: var(--muted); font-size: 13.5px; }
.price-note {
  margin-top: 34px;
  padding: 18px 22px;
  background: var(--cream-100);
  border-left: 2px solid var(--gold-500);
  font-size: 13.5px;
  color: var(--muted);
}
.price-empty { padding: 40px 0; color: var(--muted); }
.price-row mark { background: rgba(201, 162, 39, .22); color: inherit; }

@media print {
  .price-bar, .ptabs, .page-head .crumbs { display: none !important; }
  .price-row { break-inside: avoid; }
}
