/* MoveVolt — Quickfilter balk/chips/teller/empty (donker/futuristisch)
 * Gebruikt bestaande design-tokens. Stijlt NIET de .vw-card zelf. */

.vw-qf__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  margin-bottom: 22px;
  border-radius: 16px;
  background: var(--glass);
  border: 1px solid var(--glass-line);
  box-shadow: var(--sh-sm);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.vw-qf__group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

/* subtiele scheiding tussen groepen */
.vw-qf__group + .vw-qf__group::before,
.vw-qf__bar > .vw-qf__toggle::before {
  content: "";
  width: 1px;
  align-self: stretch;
  margin: 2px 4px 2px 0;
  background: var(--glass-line);
}

.vw-qf__chip {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1;
  color: var(--ink-2);
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--glass-line);
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  white-space: nowrap;
  transition: color .18s ease, background-color .18s ease,
              border-color .18s ease, box-shadow .18s ease, transform .12s ease;
}

.vw-qf__chip:hover {
  color: var(--ink);
  border-color: var(--volt-300);
}

.vw-qf__chip:focus-visible {
  outline: 2px solid var(--volt);
  outline-offset: 2px;
}

.vw-qf__chip:active {
  transform: translateY(1px);
}

.vw-qf__chip.is-active {
  color: var(--bg);
  background: var(--volt);
  border-color: var(--volt);
  box-shadow: 0 0 0 1px var(--volt), 0 6px 18px -8px var(--volt);
}

/* legaal-toggle krijgt subtiel ander accent als actief */
.vw-qf__toggle.is-active {
  color: var(--bg);
  background: var(--volt-300);
  border-color: var(--volt-300);
}

.vw-qf__count {
  margin-left: auto;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--volt-300);
  padding: 6px 4px;
  white-space: nowrap;
}

/* verborgen kaarten: geen layout-shift, echt uit de flow */
.vw-qf-hidden {
  display: none !important;
}

.vw-qf-grid-empty {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .vw-qf__chip {
    transition: none;
  }
  .vw-qf__chip:active {
    transform: none;
  }
}

@media (max-width: 560px) {
  .vw-qf__bar {
    gap: 8px;
    padding: 12px;
  }
  .vw-qf__count {
    width: 100%;
    margin-left: 0;
    order: 99;
  }
}
