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(4, 1fr);
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 20px;
}
@media (max-width: 1439px) {
  .wishlist-products {
    grid-template-columns: repeat(3, 1fr);
  }
}

.wishlist-product {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 100px;
}
.wishlist-product-wrapper {
  position: relative;
  width: 100%;
}

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