/* css/wishlist.css */
/* ==========================
   Wishlist animations + layout fixes
   ========================== */

/* Smooth grid reflow when posts are removed */
#wishlist-container article.post {
  transition: all 0.3s ease; /* animate position/size changes */
}

/* Fade-out animation when a post is removed */
#wishlist-container article.post.fade-out {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
