/*
 * ╔══════════════════════════════════════════════════╗
 * ║  villaGo — Favorite Icon Component              ║
 * ║  Heart/wishlist toggle button on product cards. ║
 * ╚══════════════════════════════════════════════════╝
 */

/* ── Heart Button ────────────────────────────────── */
.property-fav-btn,
.product-card-fav {
  position: absolute;
  top: 12px;
  inset-inline-start: 12px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--y-transition-fast);
  cursor: pointer;
  border: none;
  min-height: 44px;
  min-width: 44px;
  color: var(--y-color-text-muted);
}

.property-fav-btn:hover,
.product-card-fav:hover {
  background: white;
  transform: scale(1.1);
}

/* ── Active (favorited) state ────────────────────── */
.property-fav-btn.active,
.product-card-fav.active {
  background: var(--y-color-danger);
  color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
  animation: favPulse var(--y-transition-normal) ease;
}

/* ── Click animation ─────────────────────────────── */
@keyframes favPulse {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.35); }
  70%  { transform: scale(0.9); }
  100% { transform: scale(1.1); }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE STYLES
   ═══════════════════════════════════════════════════ */

/* ── Large Desktop (lg) ──────────────────────────── */
@media (max-width: 1200px) {}

/* ── Tablet (md) ─────────────────────────────────── */
@media (max-width: 992px) {}

/* ── Mobile Landscape / Large Phone (sm) ─────────── */
@media (max-width: 768px) {
  .property-fav-btn,
  .product-card-fav { width: 40px; height: 40px; }
}

/* ── Small Phone (xs) ────────────────────────────── */
@media (max-width: 480px) {}
