/* Wishlist Badge Styling */
#wishlistBadge 
{
	font-size: 10px;
	padding: 3px 6px;
	min-width: 18px;
	height: 18px;
	line-height: 12px;
	border-radius: 10px;
	transition: all 0.3s ease;
}

#wishlistBadge:empty 
{
	display: none !important;
}

/* Wishlist Icon Hover Effect */
.nav-link:has(> i.fa-heart):hover i.fa-heart 
{
	color: #dc3545 !important;
	transform: scale(1.1);
	transition: all 0.2s ease;
}