.filterBox {
  border-bottom: 1px solid #eee;
}

.filterTop {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}

.filterLabel {
  font-size: 12px;
  color: #888;
}

.filterSummary {
  font-size: 16px;
  font-weight: 500;
}

.filterChevron {
  font-size: 18px;
  transition: transform 0.2s;
}

.filterTop[aria-expanded="true"] .filterChevron {
  transform: rotate(180deg);
}

.filterControls {
  padding: 10px 16px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filterOption {
  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
}

.filterOption.active {
  background: #000;
  color: #fff;
  border-color: #000;
}

.filterControls {
  display: none;
}

.filterBox.open .filterControls {
  display: flex;
}
.filterBox.open .filterChevron {
  transform: rotate(180deg);
}