/* Сердечко-кнопка */
.wc-fav-btn {
font-size: 16px;
    background: none;
    border: none;
    cursor: pointer;
    color: #6f6f6f;
    transition: transform 0.2s ease, color 0.2s ease;
    border-radius: 0;
}

.wc-fav-btn:hover {
    color: #e74c3c;
}

.wc-fav-btn.favorited {
    color: #e74c3c; /* красное сердечко */
}

/* Всплывающее сообщение */
.wc-fav-notice {
    position: fixed;
    top: 80px;
    right: 20px;
    background: #27ae60;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    display: none;
    z-index: 9999;
    font-weight: bold;
}
/* Счетчик в шапке как ссылка */
#wc-favorites-counter a {
text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    line-height: 1.3;
    color: #fff;
    font-size: 2rem;
}

/* Стиль страницы избранного */
.wc-favorites-list {
    list-style: none;
    padding: 0;
}

.wc-favorites-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.wc-fav-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.wc-fav-img img {
    width: 80px;
    height: auto;
    object-fit: cover;
}

.wc-fav-info {
    flex: 1;
}

.wc-fav-info a {
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    color: #333;
}

.wc-fav-info button {
    margin-top: 5px;
    background: #f7f7f7;
    border: 1px solid #ccc;
    padding: 4px 8px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.wc-fav-info button:hover {
    background: #e74c3c;
    color: #fff;
    border-color: #e74c3c;
}
#wc-favorites-counter {
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 1;
}

#wc-favorites-counter.hidden {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}
