/* Wishlist Styles */
.nav-wishlist{
    position: relative;	
}
.wishlist-icon{
	cursor: pointer;
    display: flex;    
    align-items: center;
}
.nav-wishlist .wishlist-count{
	position: absolute;
    top: -5px;
    right: 0;
    font-size: 12px;
    width: 15px;
    height: 15px;
    line-height: 15px;
    border-radius: 50px;
    z-index: 1;
    color: #ffffff;
    text-align: center;
    background-color: var(--main-color);
}
.custom-wishlist-button{
	cursor: pointer;
	background: none;
	border: none;
	box-shadow: none;
	padding: 0;
	margin: 0;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
    background-color: white;
    border-radius: 50%;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}
.custom-wishlist-button svg{
	width: 13px;
	height: auto;
}
.remove-from-wishlist svg path{
	fill: rgba(242, 97, 100, 1);
}
.product-item-image .custom-wishlist-button{
	position: absolute;
	top: 15px;
	right: 15px;
    z-index: 1;
}
.product-price-wrapper{
    display: flex;
    align-items: baseline;
}
.product-price-wrapper .custom-wishlist-button {
    margin-left: 35px;
}
.wishlist-empty h2{
    font-size: var(--font-h2-clamp);
    font-weight: 500;
    color: var(--main-color);
    margin-bottom: 25px;
}
.wishlist-empty p{
    display: flex;
    align-items: center;
    justify-content: center;
}
.wishlist-empty{
    padding-bottom: 70px;
    text-align: center;
}
.wishlist-empty svg{
    fill: var(--main-color);
    width: auto;
    height: 16px;
    margin: 0 5px;
}
.wishlist-empty svg path{
    fill: var(--main-color);
}
