<script>
$(document).ready(function() {
$('#rec1341557491 .t-store__card').each(function() {
// добавляем кнопку избранного
$(this).append('<div class="t-store__card__favorite">♥</div>');
});
// клик по кнопке
$(document).on('click', '#rec1341557491 .t-store__card__favorite', function() {
$(this).toggleClass('active');
});
});
</script>
<style>
#rec1341557491 .t-store__card__favorite {
position: absolute;
top: 4px;
right: 4px;
background: #1976d2;
color: #fff;
font-size: 12px;
font-weight: 600;
padding: 4px 10px;
border-top-right-radius: 6px;
border-bottom-left-radius: 6px;
text-transform: none;
letter-spacing: 0.5px;
cursor: pointer;
z-index: 5;
transition: background 0.3s;
}
#rec1341557491 .t-store__card__favorite:hover {
background: #115293;
}
#rec1341557491 .t-store__card__favorite.active {
background: #d32f2f; /* красное при добавлении в избранное */
}
</style>