/**
 * Favorites Button Styles
 */

/* Header favorites button */
.notification-btn a,
.notification-btn button {
    background: #fff;
    border: none;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    cursor: pointer;
}

.notification-btn a img,
.notification-btn button img {
    width: 30px;
    height: 30px;
}

/* Header favorites count badge - circle */
#headerFavoritesCount {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background: #e52c42;
    color: white;
    font-size: 11px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* Heart button active state - filled heart */
.saved-btn.active {
    opacity: 1 !important;
    visibility: visible !important;
    background: rgba(255, 59, 48, 0.9) !important;
}

.saved-btn.active img {
    filter: brightness(0) invert(1);
}

/* Animation on click */
.saved-btn {
    transition: all 0.2s ease;
}

.saved-btn:active {
    transform: scale(0.9);
}

/* Pulse animation when favorited */
@keyframes heartPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.saved-btn.active {
    animation: heartPulse 0.3s ease;
}
