.catalog {
  padding-bottom: 20px;
}

.catalog__products {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 20px;
  margin-bottom: 60px;
}
.catalog__products > div {
  width: calc((100% - 40px) / 3);
  max-width: 280px;
  height: auto;
}
@media (max-width: 1259px) {
  .catalog__products {
    gap: 40px 20px;
  }
  .catalog__products > div {
    max-width: none;
  }
}
@media (max-width: 767px) {
  .catalog__products {
    gap: 40px 16px;
  }
  .catalog__products > div {
    width: calc((100% - 16px) / 2);
  }
}

.catalog__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.catalog__pagination-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.catalog__pagination-button {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f6f6f6;
}
.catalog__pagination-button::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 9px;
  height: 16px;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  transform: translateY(-50%);
  background-color: #47595e;
}
.catalog__pagination-button--prev::before {
  left: 14px;
  -webkit-mask-image: url("/themes/custom/fourcheeses/assets/img/icons/stack.svg#arrow-pagination-left");
          mask-image: url("/themes/custom/fourcheeses/assets/img/icons/stack.svg#arrow-pagination-left");
}
.catalog__pagination-button--next::before {
  right: 14px;
  -webkit-mask-image: url("/themes/custom/fourcheeses/assets/img/icons/stack.svg#arrow-pagination-right");
          mask-image: url("/themes/custom/fourcheeses/assets/img/icons/stack.svg#arrow-pagination-right");
}
.catalog__pagination-button:hover {
  background-color: #798b90;
}
.catalog__pagination-button:hover::before {
  background-color: #ffffff;
}

.catalog__pagination-link {
  display: block;
  width: 40px;
  height: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  text-align: center;
  border-radius: 50%;
  background-color: #f6f6f6;
}
.catalog__pagination-link:hover, .catalog__pagination-link--active {
  color: #ffffff;
  background-color: #798b90;
}

.view-pager .pager__items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.view-pager .pager__item {
  margin: 0;
  padding: 0;
}

.view-pager .pager__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  background-color: #f0f0f0;
  color: #000000;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
}

.view-pager .pager__item--active .pager__link,
.view-pager .pager__link.is-active {
  background-color: #798b90;
  color: #ffffff;
}

.view-pager .pager__item--current {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #798b90;
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
}

.view-pager .pager__item--previous .pager__link,
.view-pager .pager__item--next .pager__link {
  color: #47595e;
}

.catalog__result {
  margin: 0;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.25;
  color: #000000;
}

.view-header:has(.catalog__result) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.catalog__sort-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.catalog__sort {
  position: relative;
  padding-left: 27px;
}
.catalog__sort::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  background-color: #005f60;
  -webkit-mask-image: url("/themes/custom/fourcheeses/assets/img/icons/stack.svg#sort");
          mask-image: url("/themes/custom/fourcheeses/assets/img/icons/stack.svg#sort");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}

.catalog__sort-select {
  font-family: inherit;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  color: #005f60;
  border: none;
  -webkit-appearance: none;
          appearance: none;
}

.catalog__filter-main-button {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #d9d9d9;
}
.catalog__filter-main-button::before {
  content: "";
  display: block;
  position: absolute;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-image: url("/themes/custom/fourcheeses/assets/img/icons/stack.svg#icon-filter");
          mask-image: url("/themes/custom/fourcheeses/assets/img/icons/stack.svg#icon-filter");
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .catalog__filter-main-button {
    width: 40px;
    height: 40px;
    background-color: #e1b430;
  }
  .catalog__filter-main-button:hover {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
  }
}

.catalog__filter-button {
  position: relative;
  display: inline-block;
  max-width: 280px;
  height: 40px;
  padding: 10px 15px;
  padding-right: 37px;
  font-size: 16px;
  line-height: 1.25;
  color: #000000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 20px;
  background-color: #f6f6f6;
  transition: color 0.3s, background-color 0.3s;
}
.catalog__filter-button::before {
  content: "";
  display: block;
  position: absolute;
  top: 14px;
  right: 15px;
  width: 12px;
  height: 12px;
  background-color: #47595e;
  -webkit-mask-image: url("/themes/custom/fourcheeses/assets/img/icons/stack.svg#close");
          mask-image: url("/themes/custom/fourcheeses/assets/img/icons/stack.svg#close");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  transition: background-color 0.3s;
}
.catalog__filter-button:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}
@media (max-width: 1023px) {
  .catalog__filter-button {
    display: none;
  }
}

.catalog__filters-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.catalog__filter-clear-button {
  font-size: 16px;
  line-height: 1.25;
  color: #005f60;
  padding: 0;
  background: transparent;
}
.catalog__filter-clear-button:hover {
  color: #000000;
}
@media (max-width: 1023px) {
  .catalog__filter-clear-button {
    display: none;
  }
}

.catalog__link-back {
  position: relative;
  display: block;
  margin-right: 20px;
  width: 20px;
  height: 20px;
}
.catalog__link-back::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  -webkit-mask-image: url("/themes/custom/fourcheeses/assets/img/icons/stack.svg#arrow-back");
          mask-image: url("/themes/custom/fourcheeses/assets/img/icons/stack.svg#arrow-back");
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #47595e;
}
.catalog__link-back:hover::before {
  background-color: #005f60;
}

.catalog__title {
  display: flex;
  align-items: center;
}
