@charset "UTF-8";
.catalog-page .catalog-list__wrapper {
  padding-top: 50px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
}
.catalog-page__sidebar {
  position: sticky;
  top: 0;
  padding: 10px;
}
.catalog-page__sidebar-hr {
  margin: 50px 0;
  width: 250px;
  height: 1px;
  background: #a2ad9d;
}
.catalog-page__sidebar .price-filter {
  color: #151922;
  max-width: 250px;
}
.catalog-page__sidebar .price-filter .price-title {
  font-size: 24px;
  font-weight: 700;
}
.catalog-page__sidebar .price-filter .price-range {
  padding-top: 30px;
  display: flex;
  align-items: flex-end;
  gap: 13px;
}
.catalog-page__sidebar .price-filter .price-range .price-input {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.catalog-page__sidebar .price-filter .price-range .price-input label {
  font-size: 16px;
  font-weight: 400;
  color: #151922;
}
.catalog-page__sidebar .price-filter .price-range .price-input input {
  width: 100px;
  height: 48px;
  padding: 8px;
  border: 1px solid #566550;
  border-radius: 2px;
  font-size: 16px;
  text-align: center;
  font-weight: 700;
  color: #151922;
}
.catalog-page__sidebar .price-filter .price-range .price-separator {
  font-size: 24px;
  color: #566550;
  padding-bottom: 14px;
}
.catalog-page__sidebar .catalog-filter {
  max-width: 250px;
  color: #151922;
  font-family: Arial, sans-serif;
}
.catalog-page__sidebar .catalog-filter__title {
  font-size: 24px;
  font-weight: 700;
}
.catalog-page__sidebar .catalog-filter__search {
  padding-top: 30px;
  position: relative;
  margin-bottom: 30px;
}
.catalog-page__sidebar .catalog-filter__search input {
  border-radius: 10px;
  padding: 10px 20px;
  height: 39px;
  border: 1px solid #566550;
  font-size: 16px;
  font-weight: 500;
}
.catalog-page__sidebar .catalog-filter__search input::placeholder {
  color: #a2ad9d;
}
.catalog-page__sidebar .catalog-filter__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-height: 560px;
  overflow-y: auto;
  scrollbar-width: thin; /* або 'auto' */
  scrollbar-color: rgba(86, 101, 80, 0.3) #edefef; /* thumb, track */
  /* Для всіх скролбарів */
}
.catalog-page__sidebar .catalog-filter__list::-webkit-scrollbar {
  width: 8px;
  height: 50px;
}
.catalog-page__sidebar .catalog-filter__list::-webkit-scrollbar-track {
  background: #edefef;
  border-radius: 15px;
}
.catalog-page__sidebar .catalog-filter__list::-webkit-scrollbar-thumb {
  background: rgba(86, 101, 80, 0.3);
  border-radius: 15px;
}
.catalog-page__sidebar .catalog-filter__list::-webkit-scrollbar-thumb:hover {
  background: #566550;
}
.catalog-page__sidebar .catalog-filter__list::-webkit-scrollbar-button {
  display: none;
}
.catalog-page__sidebar .catalog-filter__link {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.5s ease;
  font-weight: 700;
  font-size: 16px;
  color: #151922;
}
.catalog-page__sidebar .catalog-filter__link .checked-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #566550;
  width: 21px;
  height: 21px;
  background-color: #edefef;
  color: #edefef;
  transition: all 0.5s ease;
}
.catalog-page__sidebar .catalog-filter__link:hover {
  color: #394b40;
}
.catalog-page__sidebar .catalog-filter__link:hover .checked-icon {
  color: #566550;
}
.catalog-page__sidebar .catalog-filter__link.checked .checked-icon {
  color: #f0efe7;
  background-color: #a2ad9d;
}
.catalog-page__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
.catalog-page__list .product-list__item {
  max-width: 285px;
  padding: 15px;
  border-radius: 15px;
  background-color: #f0efe7;
  display: flex;
  flex-direction: column;
  position: relative;
  box-sizing: border-box;
}
.catalog-page__list .product-list__item .like-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.catalog-page__list .product-list__item .like-icon .like-icon__path {
  stroke: #151922;
  fill: transparent;
  transition: stroke 0.3s ease, fill 0.3s ease;
}
.catalog-page__list .product-list__item .like-icon:hover .like-icon__path {
  stroke: #394b40;
  fill: #394b40;
}
.catalog-page__list .product-list__item .product__name {
  font-size: 16px;
  line-height: 156%;
  color: #000;
  text-align: start;
  flex-grow: 1;
  margin: 15px 0px 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.catalog-page__list .product-list__item .product__image {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 15px;
  background-color: #fff;
  height: 255px;
}
.catalog-page__list .product-list__item .product__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.catalog-page__list .product-list__item .product__bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.catalog-page__list .product-list__item .product__bottom .item__price {
  font-size: 16px;
  font-weight: 700;
}
.catalog-page__list .product-list__item .product__bottom .button__item-cart {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: #566550;
  padding: 0 12px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  overflow: hidden;
  gap: 8px;
  transition: width 0.6s;
}
.catalog-page__list .product-list__item .product__bottom .button__item-cart span {
  display: none;
  color: #f0efe7;
  font-size: 14px;
  font-family: "Roboto Flex", sans-serif;
  white-space: nowrap;
}
.catalog-page__list .product-list__item .product__bottom .button__item-cart svg {
  opacity: 1;
}
.catalog-page__list .product-list__item .product__bottom .button__item-cart:hover {
  width: 125px;
}
.catalog-page__list .product-list__item .product__bottom .button__item-cart:hover span {
  display: flex;
}
.catalog-page .navigation {
  display: flex;
  justify-content: center;
}
.catalog-page .navigation nav div div span {
  display: flex;
  gap: 20px;
  align-items: center;
}
.catalog-page .navigation nav div div span span,
.catalog-page .navigation nav div div span a {
  min-width: 10px;
  max-width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #566550;
}
.catalog-page .navigation nav div div span span svg,
.catalog-page .navigation nav div div span a svg {
  width: 100%;
  height: auto;
  max-width: 20px;
}
.catalog-page .navigation nav div div span span[aria-current=page] span,
.catalog-page .navigation nav div div span a[aria-current=page] span {
  font-size: 22px;
  color: #394b40;
}