.wishlist_popup {
  position: fixed;
  z-index: 9999;
  background: #121111;
  padding: 20px;
  border-radius: 20px;
  width: 60%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.wishlist_popup_content {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.wishlist_popup_heading {
  font-weight: bold;
  font-size: 24px;
  padding: 5px 10px 10px 0px;
}

.shop-card__wishlist-icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  transition: all 0.3s ease;
}

.shop-card__wishlist-icon path:hover {
  fill: white;
  stroke: white;
}

.shop-card__wishlist-icon path {
  fill: transparent;
  stroke: #ffffff;
  stroke-width: 1.5;
  transition: all 0.3s ease;
}

.shop-card__wishlist-icon.active path {
  fill: white;
  stroke: white;
}
