/*
==========================================================================
 Wishlist Icon (Header/Menu)
==========================================================================
*/

.menu-item-wishlist {
    display: flex;
    align-items: center;
}
.my-wishlist-icon {
    position: relative;
    display: inline-flex;
    color: #333;
    text-decoration: none;
    cursor: pointer;
    fill: none; /* Mặc định icon header không tô màu */
}
.my-wishlist-icon .wishlist-item-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: #d90429;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-sizing: border-box;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Tùy chọn: Ẩn số đếm khi rỗng
.my-wishlist-icon.is-empty .wishlist-item-count {
    display: none;
}
*/