header .wishlist-counter {
  position: relative;
}
header .wishlist-counter .count {
  background: #f90159;
  color: #fff;
  border-radius: 100%;
  width: 25px;
  height: 25px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 100%;
  position: absolute;
  left: 15px;
  top: -10px;
}
.wishlist-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 32px;
  column-gap: 32px;
  row-gap: 32px;
}

.wishlist-product {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wishlist-product-wrapper {
  position: relative;
}

.wishlist-products .points_info {
  display: none !important;
}

.wishlist-button.active svg path {
  fill: #121212;
}
.wishlist-products .wishlist-button.active svg path {
  fill: transparent;
}
.wishlist-products .wishlist-button {
  z-index: 99;
}

.wishlist-button:hover svg path {
	stroke: #f90159;
  }
  