/* Wishlist Button Styles */

.wishlist-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.wishlist-btn:hover {
  transform: scale(1.1);
}

.wishlist-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.wishlist-btn__icon {
  display: block;
}
