/* ── Wishlist heart button — add to Browse_Services.php <style> or main CSS ── */

.wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--muted);
  font-size: 1rem;
  transition:
    color 0.18s,
    background 0.18s,
    transform 0.18s;
  z-index: 10;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
  padding: 0;
  line-height: 1;
}

.wishlist-btn:hover {
  background: #fff;
  color: var(--rose);
  transform: scale(1.12);
}

.wishlist-btn.saved {
  color: var(--rose);
  background: #fff;
}

.wishlist-btn:disabled {
  opacity: 0.5;
  pointer-events: none;
}
