.twingital-fav-btn {
    font-size: 24px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.3s ease;
}
.twingital-fav-btn:hover {
    transform: scale(1.2);
}
.twingital-fav-btn.fav-active {
    color: #e63946;
    animation: pulseFav 0.3s ease;
}
@keyframes pulseFav {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1); }
}
/*favoritos*/
.twingital-user-favorites {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.twingital-favorites-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}
.twingital-favorites-grid .fav-item {
    text-align: center;
}
.twingital-favorites-grid h3 {
    text-align: center;
}
.twingital-favorites-grid img {
    width: 100%;
    border-radius: 10px;
}
