/* Favorite buttons */
.favorite-btn, .favorite-btn-loop, .remove-fav-grid {
    background: #0073aa;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}
.favorite-btn-loop {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0;
    font-size: 20px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    z-index: 10;
    line-height: 35px;
    text-align: center;
}
.remove-fav-grid {
    background: #ff4757;
    width: 100%;
    margin-top: 5px;
}
.favorite-btn:hover, .favorite-btn-loop:hover, .remove-fav-grid:hover {
    background: #005a87;
}
.favorited, .favorited .favorite-btn-loop, .favorite-btn  {
    background: #ff4757 !important;
}
.favorite-button-container{text-align:left !important;}
/* Header icon - styled like WooCommerce cart */
.favorites-header-icon {
    display: inline-flex;
    align-items: center;
    position: relative;
    text-decoration: none;
    margin: 0 10px;
    padding: 5px;
    border-radius: 3px;
    transition: color 0.3s;
    margin-left: 10px; /* Space from cart */
}
.favorites-header-icon:hover {
    color: #0073aa;
}

.favorites-count {
    background: #ff4757; /* Red like cart badge */
    border-radius: 50%;
    color: white;
    font-size: 12px;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    position: absolute;
    right: -10px;
    top: 10px;
    text-align: center;
}