/* ─── Wishlist heart button ─── */

.wishlist-heart {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-muted);
  backdrop-filter: blur(8px);
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}

.wishlist-heart:hover {
  background: #fff;
  color: #dc2626;
  transform: scale(1.05);
}

.wishlist-heart.wishlist-heart--filled {
  color: #dc2626;
  background: #fff;
}

.wishlist-heart svg {
  fill: none;
  stroke: currentColor;
}
.wishlist-heart.wishlist-heart--filled svg {
  fill: currentColor;
}

.wishlist-heart:disabled {
  opacity: 0.5;
  cursor: wait;
}

/* Block G fix: mobile tap target 44×44 (WCAG 2.5.5) */
@media (max-width: 768px) {
  .wishlist-heart {
    min-width: 44px;
    min-height: 44px;
    padding: 4px;
  }
}
