.tmr-like-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0;
}
.tmr-like-btn:hover .tmr-heart-empty {
    stroke: red;
}

.tmr-like-btn:hover .tmr-heart-filled {
    fill: #cc0000;
}


.tmr-heart-filled {
    display: none;
}

.tmr-like-btn.tmr-liked .tmr-heart-empty {
    display: none;
}

.tmr-like-btn.tmr-liked .tmr-heart-filled {
    display: inline;
}

.tmr-like-count {
    font-size: 0.9rem;
    opacity: 0.7;
}

.tmr-like-btn.tmr-liked .tmr-like-count {
    opacity: 1;
}