.visu-like-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    padding: 0;  
    margin: 0;
    transition: all 0.2s ease;
    color: inherit; 
    box-shadow:none;
}
.visu-like-btn:hover{
       background: none;
       color:#000000;

}

.visu-like-btn i {
    transition: transform 0.2s ease;
    font-size: 16px; 
}

.visu-like-btn.liked i {
    font-weight: 900;
    color: #e74c3c; 
    animation: heartPop 0.3s ease;
}


.visu-like-btn .like-count {
    color: inherit; 
    font-size: 14px;
}

@keyframes heartPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.visu-stats {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 12px;
}

.visu-stats span, .visu-stats button {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
