.recipe-favorite-btn {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: #9ca3af;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
    transition:
        color 0.18s ease,
        transform 0.18s ease,
        background 0.18s ease;
}

.recipe-favorite-btn:hover {
    transform: scale(1.05);
}

.recipe-favorite-btn.active,
.recipe-favorite-btn.active:hover {
    color: #ef4444;
}

.recipe-favorite-btn:focus {
    outline: none;
}

.recipe-favorite-btn--overlay {
    position: absolute;
    top: 9px;
    left: 9px;
    z-index: 4;
}