.haircuts-gallery-list .haircuts-gallery-list__item-photo {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: auto 100%;
  /* background-position: center top; */
  background-position: 75% top;
  display: flex;
  flex-shrink: 0;
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.4) 100%
    ),
    lightgray 65% / cover no-repeat;
  background-blend-mode: normal, luminosity;
}
.haircuts-swiper {
  position: relative;
}
.haircuts-gallery__filter-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  position: fixed;
  z-index: 2;
  left: 16px;
  bottom: 60px;
}
.haircuts-gallery__filter-dropdown {
  display: none;
  flex-direction: column;
  gap: 2px;
}
.haircuts-gallery__filter-dropdown.open {
  display: flex;
}
.haircuts-gallery__filter-dropdown-item {
  height: 32px;
  width: 180px;
  border-radius: 4px;
  border: 1px solid var(--grey, #555);
  background: rgba(18, 18, 18, 0.8);
  backdrop-filter: blur(2px);
  font-size: 14px;
  transition: var(--transition-dur-and-func);
}
.haircuts-gallery__filter-dropdown-item label {
  display: block;
  width: 100%;
  height: 100%;
  padding: 8px;
}
.haircuts-gallery__filter-dropdown-item:has(label.active),
.haircuts-gallery__filter-dropdown-item:hover,
.haircuts-gallery__filter-dropdown-item:focus {
  background: linear-gradient(
    322deg,
    rgba(18, 18, 18, 0.8) 30.94%,
    rgba(248, 245, 240, 0.32) 115.77%
  );
}
.haircuts-gallery__filter {
  display: flex;
  width: 32px;
  height: 32px;
  padding: 4px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 4px;
  border: 1px solid var(--grey, #555);
  background: linear-gradient(
    322deg,
    rgba(18, 18, 18, 0.8) 30.94%,
    rgba(248, 245, 240, 0.32) 115.77%
  );
  backdrop-filter: blur(2px);
  color: transparent;
}
.haircuts-gallery__filter::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../images/icons/iconoir_filter.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

@media screen and (min-width: 768px) {
  .haircuts-page {
    width: 100%;
    height: 100%;
  }
  .swiper-container.haircuts-swiper {
    width: 100%;
    height: 100%;
  }
  .haircuts-gallery-list .haircuts-gallery-list__item-photo {
    /* background-position: center bottom; */
    background-position: 70% top;
  }
  .haircuts-page .swiper-pagination {
    bottom: 100px !important;
  }
  .haircuts-page .swiper-pagination .swiper-pagination-bullet {
    background: transparent;
    opacity: 1;
    border: 0.5px solid var(--white, #f8f5f0);
  }
  .haircuts-page .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--white, #f8f5f0);
  }
  .haircuts-gallery__filter-wrapper {
    left: 40px;
    bottom: 151px;
  }
  .haircuts-gallery__filter-dropdown {
    gap: 4px;
  }
  .haircuts-gallery__filter-dropdown-item {
    height: 38px;
    width: 204px;
    border-radius: 8px;
    font-size: 15px;
  }
  .haircuts-gallery__filter-dropdown-item label {
    padding: 10px 16px;
  }
  .haircuts-gallery__filter {
    width: unset;
    height: unset;
    display: flex;
    height: 38px;
    padding: 7px 36px 7px 16px;
    justify-content: center;
    align-items: flex-start;
    flex-shrink: 0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white, #f8f5f0);
  }
  .haircuts-gallery__filter::after {
    position: absolute;
    content: "";
    right: 18px;
    top: 50%;
    transform: translate(50%, -50%);
    width: 24px;
    height: 24px;
    background-image: url(../images/icons/arrow-up-fill.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    transition: var(--transition-dur-and-func);
  }
  .haircuts-gallery__filter.open::after {
    transform: translate(50%, -50%) rotate(180deg);
  }
}

@media screen and (min-width: 1440px) {
  .haircuts-gallery-list .haircuts-gallery-list__item-photo {
    padding: 188px 38px;
    /* background-position: center bottom; */
    background-position: 65% bottom;
    background-size: cover;
  }
  .haircuts-page .swiper-pagination {
    bottom: 80px !important;
  }
  .haircuts-gallery-list
    .haircuts-gallery-list__item
    a:hover
    .haircuts-gallery-list__item-photo,
  .haircuts-gallery-list
    .haircuts-gallery-list__item
    a:focus
    .haircuts-gallery-list__item-photo {
    background-blend-mode: unset;
  }
  .haircuts-gallery__filter-wrapper {
    left: 80px;
    bottom: 114px;
  }
}

@media screen and (min-width: 1920px) {
  .haircuts-page .swiper-pagination {
    bottom: 120px !important;
  }
  .haircuts-gallery__filter-wrapper {
    left: 160px;
    bottom: 164px;
  }
  .haircuts-gallery__filter {
    padding: 7px 44px 7px 16px;
    font-size: 18px;
    font-weight: 700;
  }
  .haircuts-gallery__filter-dropdown-item {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .haircuts-gallery-list {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
  }
  .haircuts-gallery-list .haircuts-gallery-list__item {
    width: 50%;
    aspect-ratio: 188/293;
  }
  .haircuts-page .swiper-pagination {
    display: none;
  }
}
