.filtersDrawer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filtersDrawerBody {
  flex: 1 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 4px;
  scrollbar-color: #3c52d9 rgba(12, 8, 20, 0.9);
  scrollbar-width: thin;
}

.filtersDrawerBody::-webkit-scrollbar {
  width: 10px;
}

.filtersDrawerBody::-webkit-scrollbar-track {
  background: rgba(12, 8, 20, 0.9);
  border-radius: 999px;
}

.filtersDrawerBody::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #3c52d9, #3c52d9);
  border-radius: 999px;
  border: 2px solid rgba(12, 8, 20, 0.9);
}

.filtersDrawerBody::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #3c52d9, #2f6fe0);
}

.filtersSection {
  display: grid;
  gap: 8px;
}

.filtersSectionTitle {
  font-size: 12px;
  font-weight: 800;
  color: rgba(233, 228, 255, 0.7);
  letter-spacing: .03em;
  text-transform: uppercase;
}

.filtersList {
  display: grid;
  gap: 4px;
}

.filtersSubTitle {
  font-size: 12px;
  font-weight: 800;
  color: rgba(233, 228, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: 4px;
}

.filtersSectionToggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  border: 1px solid rgba(25, 89, 173, 0.25);
  background: rgba(12, 18, 44, 0.5);
  color: #eaedff;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.filtersSectionCaret {
  width: 12px;
  height: 12px;
  display: inline-block;
  background: url("../img/chevron-down-white.svg") center/12px 12px no-repeat;
  transition: transform .2s ease;
}

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

.filtersCollapsible {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .2s ease, opacity .2s ease;
}

.filtersCollapsible.open {
  max-height: 520px;
  opacity: 1;
  padding-bottom: 10px;
}

.filtersDrawerFoot {
  position: sticky;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 0 2px;
  background: rgba(20, 10, 36, 0.98);
  border-top: 1px solid rgba(25, 89, 173, 0.2);
}