.filterList {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filterList a {
  border: 1px solid #e9e8e5;
  border-radius: 100px;
  color: #424242;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  padding: 0 8px;
}

.filterList a.active {
  border: 1px solid #424242;
}

.filterSort {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr;
  margin-top: 40px;
}

.filterSort__label {
  color: #424242;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
}

.filterSort__select {
  appearance: none;
  background: #fbfbfb;
  border: 1px solid #c5c2bb;
  border-radius: 4px;
  color: #424242;
  cursor: pointer;
  font-family: var(--familyNotoSans);
  font-size: 14px;
  font-weight: 400;
  height: 56px;
  letter-spacing: 0.1em;
  padding: 0 16px;
  position: relative;
  width: 100%;
}

.filerSort__selectContainer {
  max-width: 480px;
  position: relative;
}

.filerSort__selectContainer::after {
  border-bottom: 1px solid #ababab;
  border-right: 1px solid #ababab;
  content: "";
  height: 7px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg) skew(-3deg, -3deg);
  width: 7px;
}

.productsList {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
}

.productItem {
  border: 1px solid #e9e8e5;
}

.productItem a {
  box-sizing: border-box;
  display: block;
  height: 100%;
  padding: 16px;
  width: 100%;
}

.productItem__image {
  position: relative;
  text-align: center;
}

.productItem__image::before {
  background: url(../../images/common/icon-link_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 11px;
  content: "";
  height: 14px;
  left: 11px;
  position: absolute;
  width: 14px;
}

.productItem__image img {
  max-width: 200px;
}

.productItem__textArea {
  margin-top: 16px;
}

.productItem__title {
  color: #424242;
  font-size: var(--fontMax16Min14);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
}

.productItem__price {
  color: #7c7c7c;
  font-family: var(--familyInter);
  font-size: var(--fontMax18Min16);
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-top: 19px;
}

.productItem__price span {
  font-family: var(--familyNotoSans);
  font-size: var(--fontMax12Min10);
  letter-spacing: 0.1em;
  line-height: 2;
}
