.filter {
  flex-grow: 1;
  min-height: 0;
}
@media (max-width: 1023px) {
  .filter {
    transform: translateX(-100%);
    transition: transform 0.25s ease-in-out;
    width: 100%;
    max-width: 24rem;
    background-color: #090808;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(78, 78, 78, 0.34);
  }
}
@media (max-width: 479px) {
  .filter {
    border: 0;
  }
}
@media (max-width: 1023px) {
  .filter__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
    padding: 0.75rem 0.5rem 0.75rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}
.filter__title {
  margin-bottom: 0;
  color: #FFFFFF;
}
@media (max-width: 1023px) {
  .filter__title {
    align-self: center;
  }
}
.filter__close {
  display: none;
}
@media (max-width: 1023px) {
  .filter__close {
    display: flex;
    align-items: center;
    justify-content: center;
    fill: #FFFFFF;
    width: 3rem;
    height: 3rem;
  }
}
@media (max-width: 1023px) {
  .filter__close > svg {
    flex: 0 0 75%;
    width: 75%;
    height: 75%;
    overflow: initial;
  }
}
@media (hover: hover) {
  .filter__close:hover {
    background-color: #F9D247;
    fill: #090808;
  }
}
.filter__inner {
  position: sticky;
  top: 5rem;
  display: flex;
  flex-direction: column;
  height: calc(100vh - 5rem);
}
@media (max-width: 1023px) {
  .filter__inner {
    position: relative;
    top: 0;
    flex-grow: 1;
    min-height: 0;
  }
}
.filter__body {
  position: relative;
  flex-grow: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1023px) {
  .filter__body {
    padding-right: 0.375rem;
  }
}
.filter__body::before, .filter__body::after {
  content: "";
  position: absolute;
  z-index: 10;
  display: block;
  left: 0;
  height: 1.5rem;
  width: 100%;
}
@media (max-width: 1023px) {
  .filter__body::before, .filter__body::after {
    display: none;
    position: relative;
    top: 0;
  }
}
.filter__body::before {
  top: 0;
  background: linear-gradient(0deg, rgba(9, 8, 8, 0) 0%, rgba(9, 8, 8, 0.8) 70%, #090808 100%);
}
.filter__body::after {
  bottom: 0;
  background: linear-gradient(180deg, rgba(9, 8, 8, 0) 0%, rgba(9, 8, 8, 0.8) 70%, #090808 100%);
}
.filter__list {
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1.75rem 0;
  padding-right: 0.5rem;
}
@media (max-width: 1023px) {
  .filter__list {
    padding: 1rem 0.375rem 1rem 1rem;
  }
}
.filter__list::-webkit-scrollbar {
  width: 0.25rem;
}
.filter__list::-webkit-scrollbar-button {
  height: 1rem;
}
.filter__list::-webkit-scrollbar-thumb {
  background-color: #4E4E4E;
}
.filter__footer {
  padding: 1rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
@media (max-width: 1023px) {
  .filter__footer {
    grid-template-columns: repeat(2, 1fr);
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}
.filter__button {
  min-width: 0;
  padding: 0.625em;
  text-transform: uppercase;
}
@media (max-width: 1023px) {
  .filter__button {
    padding: 0.75em 0.625em;
  }
}

.filter-item {
  margin-bottom: 1.5rem;
  color: #FFFFFF;
}
.filter-item:last-child {
  margin-bottom: 0;
}
.filter-item__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  color: #F9D247;
  margin-bottom: 1rem;
  font-weight: 700;
}
@media (max-width: 1023px) {
  .filter-item__title {
    font: var(--font-h4);
  }
}
.filter-item__toggle-all {
  flex: 0 0 auto;
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.filter-item__toggle-all::before, .filter-item__toggle-all::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #F9D247;
  transition: transform 0.25s ease-in-out;
}
.filter-item__toggle-all::before {
  width: 0.875rem;
  height: 0.125rem;
  transform: translate(-50%, -50%);
}
.filter-item__toggle-all::after {
  width: 0.125rem;
  height: 0.875rem;
  transform: translate(-50%, -50%);
}
.filter-item:not(.is-collapsed) .filter-item__toggle-all::after {
  transform: translate(-50%, -50%) scaleY(0);
}
.filter-item.is-collapsed > .filter-tree {
  display: none;
}
.filter-item__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: grid;
  align-items: center;
  gap: 1rem 0.5rem;
  max-height: 15rem;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
}
@media (max-width: 1023px) {
  .filter-item__list {
    align-items: stretch;
    max-height: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
            display: flex;
        flex-wrap: wrap;
        overflow: unset;
  }
}
.filter-item__list::-webkit-scrollbar {
  width: 0.25rem;
}
.filter-item__list::-webkit-scrollbar-button {
  height: 0;
}
.filter-item__list::-webkit-scrollbar-thumb {
  background-color: #4E4E4E;
}
.filter-item__list > li {
  min-width: 0;
}
@media (max-width: 1023px) {
  .filter-item__list > li {
    display: flex;
    flex-direction: column;
  }
}
.filter-item__list > li.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.filter-item__list > li > label {
  display: flex;
  align-items: center;
  line-height: 1.2;
  column-gap: 0.5rem;
  margin-bottom: 0;
  cursor: pointer;
  position: relative;
}
@media (max-width: 1023px) {
  .filter-item__list > li > label {
    border: 1px solid #FFFFFF;
    padding: 0.625em 0.5em;
    justify-content: space-between;
    flex-grow: 1;
    min-height: 0;
    line-height: 1.1;
    transition: border-color 0.25s ease-in-out, background-color 0.25s ease-in-out, color 0.25s ease-in-out;
  }
}
@media (max-width: 1023px) {
  .filter-item__list > li > label:has(input:checked) {
    border-color: #F9D247;
    background-color: #F9D247;
    color: #090808;
  }
}
.filter-item__list > li > label > input {
  align-self: center;
}
@media (max-width: 1023px) {
  .filter-item__list > li > label > input {
    flex: 0;
    width: 0;
    height: 0;
    border: 0;
    position: absolute;
  }
}
@media (max-width: 1023px) {
  .filter-item__list > li > label > input::before, .filter-item__list > li > label > input::after {
    display: none;
  }
}
.filter-item__list > li > label > span {
  display: block;
  align-self: center;
}
.filter-item__list > li > label > .filter-count {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7em;
  background-color: #FFFFFF;
  padding: 0.25em 0.375em;
  color: #090808;
  border-radius: 0.85em;
  min-width: 1.7em;
  text-align: center;
  font-weight: 600;
}
@media (max-width: 1023px) {
  .filter-item__list > li > label > .filter-count {
    position: relative;
    top: 0;
    transform: translate(0);
    align-self: center;
    flex-basis: fit-content;
  }
}
.filter-item__list.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1279px) {
  .filter-item__list.cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1023px) {
  .filter-item__list.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.filter-item__list.cols-3 > li > label > .filter-count {
  display: none;
}
@media (max-width: 1023px) {
  .filter-item__list.cols-3 > li > label > .filter-count {
    display: block;
  }
}

.filter-tree {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.filter-tree__item--has-children > .filter-tree__sublist {
  display: none;
}
.filter-tree__item--has-children.is-expanded > .filter-tree__sublist {
  display: flex;
}

.filter-tree__row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.filter-tree__row > label {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  flex-grow: 1;
  min-width: 0;
  margin-bottom: 0;
  cursor: pointer;
  color: #FFFFFF;
  line-height: 1.2;
}
.filter-tree__row > label > input {
  flex: 0 0 auto;
  align-self: center;
}
.filter-tree__row > label > span {
  display: block;
}
.filter-tree__row > label > .filter-count {
  margin-left: auto;
  flex: 0 0 auto;
  font-size: 0.7em;
  background-color: #FFFFFF;
  padding: 0.25em 0.375em;
  color: #090808;
  border-radius: 0.85em;
  min-width: 1.7em;
  text-align: center;
  font-weight: 600;
}

.filter-tree__sublist {
  list-style: none;
  margin: 0.75rem 0 0;
  padding-left: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.filter-tree__toggle {
  flex: 0 0 auto;
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.filter-tree__toggle::before, .filter-tree__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #F9D247;
  transition: transform 0.25s ease-in-out;
}
.filter-tree__toggle::before {
  width: 0.75rem;
  height: 0.125rem;
  transform: translate(-50%, -50%);
}
.filter-tree__toggle::after {
  width: 0.125rem;
  height: 0.75rem;
  transform: translate(-50%, -50%);
}

.filter-tree__item--has-children.is-expanded > .filter-tree__row > .filter-tree__toggle::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.archive-products__body {
  display: grid;
  grid-template-columns: 3fr 9fr;
  column-gap: clamp(0.625rem, 2.037vw + 0.167rem, 2rem);
}
@media (max-width: 1023px) {
  .archive-products__body {
    grid-template-columns: 1fr;
  }
}
.archive-products__body > * {
  min-width: 0;
}
.archive-products__aside {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1023px) {
  .archive-products__aside {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 400;
    background-color: rgba(9, 8, 8, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
  }
}
@media (max-width: 1023px) {
  .archive-products__aside.show {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 1023px) {
  .archive-products__aside.show .filter {
    transform: translate(0);
  }
}
.archive-products__actions {
  margin-bottom: var(--space-heading);
  display: none;
}
@media (max-width: 1023px) {
  .archive-products__actions {
    display: block;
  }
}
.archive-products__actions > ._mobile {
  display: none;
}
@media (max-width: 1023px) {
  .archive-products__actions > ._mobile {
    display: block;
  }
}
.archive-products__actions > .btn {
  padding: 0.5em 1.25em;
}
.archive-products__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 1.111vw + 1rem, 2rem) clamp(0.625rem, 2.037vw + 0.167rem, 2rem);
}
@media (max-width: 1023px) {
  .archive-products__row {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}
@media (max-width: 767px) {
  .archive-products__row {
    grid-template-columns: repeat(2, 1fr);
  }
}
.archive-products__row:has(.loading-skeleton) {
  grid-template-columns: 1fr;
}
.archive-products__row:has(.loading-skeleton) > .loading-skeleton {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.75rem;
  text-align: center;
  color: #FFFFFF;
  padding: 2rem;
}
.archive-products__row:has(.loading-skeleton) > .loading-skeleton::before {
  content: "";
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 0.25rem solid #FFFFFF;
  border-top-color: transparent;
  animation: preloader 1s linear infinite;
}
.archive-products__row > * {
  min-width: 0;
}
.archive-products__pagination {
  margin-top: clamp(1.5rem, 1.111vw + 1rem, 2rem);
}
.archive-products__button {
  width: 100%;
  padding: 0.75em;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  margin-top: clamp(1.5rem, 1.111vw + 1rem, 2rem);
}
.pagination__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.625em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  color: #FFFFFF;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.25s ease-in-out, border-color 0.25s ease-in-out, color 0.25s ease-in-out;
}
@media (hover: hover) {
  .pagination__item:hover {
    border-color: #F9D247;
    color: #F9D247;
  }
}
.pagination__item.active {
  background-color: #F9D247;
  border-color: #F9D247;
  color: #090808;
  pointer-events: none;
}
.pagination__prev, .pagination__next {
  font-size: 1.25em;
}
.pagination__dots {
  display: inline-flex;
  align-items: center;
  padding: 0 0.25em;
  color: #929397;
}

.page-brands__title {
  margin-bottom: calc(var(--space-heading) * 1.5);
}
.page-brands__filter {
  list-style: none;
  padding-left: 0;
  margin-bottom: calc(var(--space-heading) * 2);
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  gap: 0.5rem;
}
@media (max-width: 1439px) {
  .page-brands__filter {
    grid-template-columns: repeat(20, 1fr);
  }
}
@media (max-width: 1279px) {
  .page-brands__filter {
    grid-template-columns: repeat(18, 1fr);
  }
}
@media (max-width: 1023px) {
  .page-brands__filter {
    grid-template-columns: repeat(auto-fit, minmax(3rem, 1fr));
  }
}
.page-brands__filter > li {
  min-width: 0;
}
.page-brands__filter > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border: 1px solid #4E4E4E;
  border-radius: 0.625rem;
}
@media (hover: hover) {
  .page-brands__filter > li > a:hover {
    border-color: #F9D247;
  }
}
.page-brands__row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3rem;
}
@media (max-width: 1023px) {
  .page-brands__row {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .page-brands__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 479px) {
  .page-brands__row {
    gap: 2rem 1rem;
  }
}
.page-brands__item {
  min-width: 0;
}
.page-brands__item > h5 {
  margin-bottom: 0.625em;
  color: #F9D247;
}
.page-brands__item > ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.page-brands__item > ul > li {
  margin-bottom: 0.625em;
}
.page-brands__item > ul > li:last-child {
  margin-bottom: 0;
}
.page-brands__item > ul > li > a {
  font-weight: 400;
  display: block;
  line-height: 1.3;
  position: relative;
}
.page-brands__item > ul > li > a > .tag-label {
  display: inline-block;
  font-size: 0.8em;
  font-weight: 500;
  line-height: 1.1;
  background-color: #F9D247;
  color: #090808;
  padding: 0.125em 0.375em;
  border-radius: 0.675em;
}

.btn-open-filter {
  position: fixed;
  z-index: 100;
  bottom: calc(7.75rem + clamp(3rem, 0.741vw + 2.833rem, 3.5rem));
  right: 1.25rem;
  width: clamp(3rem, 0.741vw + 2.833rem, 3.5rem);
  height: clamp(3rem, 0.741vw + 2.833rem, 3.5rem);
  align-items: center;
  justify-content: center;
  fill: #090808;
  border: 1px solid #090808;
  display: none;
}
@media (max-width: 1023px) {
  .btn-open-filter {
    display: flex;
    opacity: 0;
    visibility: hidden;
    bottom: calc(2.75rem + clamp(3rem, 0.741vw + 2.833rem, 3.5rem) * 2);
  }
}
@media (max-width: 1023px) {
  .btn-open-filter.show {
    opacity: 1;
    visibility: visible;
  }
}
.btn-open-filter > svg {
  flex: 60%;
  width: 60%;
  height: 60%;
  overflow: initial;
}
