.plg-filters-trigger {
  position: relative;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  gap: 7px;
  width: max-content;
  min-width: 86px;
  height: 41px;
  margin: 0;
  padding: 0 13px;
  border: 1px solid #7234e8;
  border-radius: 100px;
  color: #6532da;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(87, 54, 172, 0.08);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  appearance: none;
  cursor: pointer;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    color 0.18s ease;
}

.plg-filters-trigger__count {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  color: #ffffff;
  background: #6532da;
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
}

.plg-filters-trigger__count[hidden] {
  display: none !important;
}

.plg-filters-trigger svg {
  display: block;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
}

.plg-filters-trigger:hover {
  border-color: #6532da;
  color: #6532da;
  background: #f7f2ff;
}

.plg-filters-trigger.is-open,
.plg-filters-trigger[aria-expanded="true"] {
  background: #f7f2ff;
}

.plg-filters-trigger:focus-visible {
  outline: 3px solid rgba(20, 155, 255, 0.34);
  outline-offset: 3px;
}

.plg-filters-trigger:disabled {
  cursor: not-allowed;
  opacity: 0.52;
}

@media (prefers-reduced-motion: reduce) {
  .plg-filters-trigger {
    transition: none;
  }
}
