.edruk-fav-heart {
  position: absolute;
  top: 8px; right: 8px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.9);
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 5;
  transition: all 0.2s;
  padding: 0;
}
.edruk-fav-heart:hover {
  background: #fff;
  border-color: #d1d5db;
  transform: scale(1.1);
}
.edruk-fav-heart svg {
  width: 16px; height: 16px;
  stroke: #6b7280; fill: none; stroke-width: 2;
  transition: all 0.2s;
}
.edruk-fav-heart.edruk-fav-active svg {
  fill: #ef4444; stroke: #ef4444;
}
.edruk-fav-heart.edruk-fav-active {
  border-color: #fecaca;
  animation: edruk-heart-pop 0.3s ease;
}
@keyframes edruk-heart-pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.25); }
  100% { transform: scale(1); }
}

/* My Account favorites grid */
.edruk-fav-account-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px; margin-top: 20px;
}
.edruk-fav-account-item {
  border: 1px solid #e5e7eb; border-radius: 8px; padding: 12px;
  text-align: center; background: #fff;
}
.edruk-fav-account-item img {
  border-radius: 6px; margin-bottom: 8px;
}
.edruk-fav-account-item h3 {
  font-size: 14px; margin: 0 0 8px;
}
.edruk-fav-account-item h3 a {
  color: #111; text-decoration: none;
}
.edruk-fav-account-price {
  font-weight: 700; color: #111; margin-bottom: 8px;
}
.edruk-fav-remove-btn {
  background: #fee2e2; color: #dc2626; border: none;
  padding: 6px 12px; border-radius: 4px; cursor: pointer;
  font-size: 12px; transition: all 0.2s;
}
.edruk-fav-remove-btn:hover {
  background: #fecaca;
}
