/**
 * Loveful Wishlist Widget Styles
 * 
 * @package Loveful_Jewelry_Customizer
 * @since 1.0.6
 */

.loveful-wishlist-widget {
    display: inline-flex;
    align-items: center;
    margin-left: 15px;
}

.loveful-wishlist-link {
    display: inline-flex;
    align-items: center;
    color: #000;
    text-decoration: none;
    position: relative;
    transition: opacity 0.3s ease;
}

.loveful-wishlist-link:hover {
    opacity: 0.8;
}

/* 使用 phosphor 字体 - 星星图标（与 Haru 一致）*/
.loveful-wishlist-link::before {
    content: "\e901"; /* phosphor 星星图标 */
    font-family: 'phosphor';
    font-size: 20px;
    font-weight: 400;
}

/* 数量显示 - 与 Haru 完全一致 */
.loveful-wishlist-count {
    position: absolute;
    top: -2px;
    right: -10px;
    background: #000; 
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    line-height: 18px;
    font-size: 12px;
    text-align: center;
}

/* 数量为 0 时隐藏 */
.loveful-wishlist-count:empty {
    display: none;
}

