/* chips.css — pill-фильтры (производители, метро)
   и section со списком чипов. */

.chip-section {
  padding-top: 28px;
}
.chip-section + .chip-section { padding-top: 20px; }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
  line-height: 1.2;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .12s ease;
  cursor: pointer;
  white-space: nowrap;
}
.chip:hover         { background: #fff; border-color: #d6d4cd; color: var(--ink); }
.chip:active        { transform: scale(.97); }
.chip.is-active,
.chip[aria-pressed="true"] {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.chip.is-active .chip__count,
.chip[aria-pressed="true"] .chip__count { color: rgba(255,255,255,.5); }
.chip[disabled],
.chip:disabled      { opacity: .5; cursor: not-allowed; }

.chip__count {
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 500;
  margin-left: 2px;
}

/* «Ещё…» */
.chip.is-more {
  background: transparent;
  border-style: dashed;
}

/* Точка цвета линии метро (см. metro-colors.css) */
.chip__metro-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
