/*Header Middle Wishlist*/
.hm-wishlist {
	float: left;
	margin-right: 25px;
	position: relative;
}
.hm-wishlist > a {
	border: 1px solid #e1e1e1;
	font-size: 20px;
	color: #242424;
	width: 45px;
	text-align: center;
	height: 45px;
	line-height: 45px;
	display: block;
	transition: all 0.3s ease-in-out;
}
.hm-wishlist > a:hover {
	border-color: #fed700;
	color: #fed700;
}
.wishlist-item-count {
	position: absolute;
		top: -17px;
		left: -5px;
		display: block;
		overflow: hidden;
		min-width: 26px;
		line-height: 26px;
		font-size: 12px;
		font-weight: 400;
		color: #242424;
		background: #fed700;
		text-align: center;
		border-radius: 100%;
}
.li-header-4 .hm-wishlist > a {
	background: #ffffff;
}
.shop-add-action .add-actions-link li.wishlist, 
.shop-add-action .add-actions-link li:last-child {
	display: block;
	width: 100%;
	background: transparent;
}
.shop-add-action .add-actions-link li.wishlist a,
.shop-add-action .add-actions-link li:last-child a.quick-view {
	text-align: left;
	background: transparent;
	font-size: 14px;
}

#wishlist-trigger {
    cursor: pointer;
    position: relative;
}

#wishlist-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    min-width: 200px;
    z-index: 1000;
}

#wishlist-dropdown.active {
    display: block;
}

#wishlist-items {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#wishlist-items li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

#wishlist-items .minicart-product-image img {
    width: 50px;
    height: auto;
    margin-right: 10px;
}

#wishlist-items .minicart-product-details {
    flex-grow: 1;
}

#wishlist-items .minicart-product-details h6 {
    margin: 0;
    font-size: 14px;
}

#wishlist-items .minicart-product-details span {
    font-size: 12px;
    color: #888;
}

#wishlist-items .remove-from-wishlist {
    border: none;
    background-color: transparent;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    font-size: 16px;
    color: #999;
}

#wishlist-items .remove-from-wishlist:hover {
    color: #f00;
}

.fa-heart-added {
    color: orange;
}