/* Стили для кнопки избранного */
.action-btn.favorite-btn {
    transition: transform 0.2s ease-in-out;
    position: relative;
    z-index: 5;
}

.action-btn.favorite-btn i {
    transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.action-btn.favorite-btn.active i {
    color: #ffcc33 !important;
    text-shadow: 0 2px 4px rgba(255, 204, 51, 0.3);
    transform: scale(1.1);
}

/* Анимация при нажатии */
.action-btn.favorite-btn:active {
    transform: scale(0.9);
}

/* Анимация при наведении */
.action-btn.favorite-btn:hover i {
    transform: scale(1.1);
}

/* Состояние активной звезды при наведении */
.action-btn.favorite-btn.active:hover i {
    color: #ffd700 !important;
    transform: scale(1.2);
    text-shadow: 0 3px 6px rgba(255, 204, 51, 0.4);
}

/* Эффект свечения для активной звезды */
.action-btn.favorite-btn.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    background: radial-gradient(circle, rgba(255,204,51,0.2) 0%, rgba(255,204,51,0) 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
    animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    to {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}