.product-card .favorite {
    position: relative;
    width: 23px;
    height: 19px;
    cursor: pointer;
    -webkit-transition: .3s;
    transition: .3s;
}
.product-card .favorite svg {
    fill: black;
    fill-opacity: 0.5;
    width: 100%;
    height: 100%;
}
.product-card .favorite.active svg {
    fill: #F53F4A;
    fill-opacity: 1;
}
.product-card .favorite.disabled {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
}
.product-card .favorite-counter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10px;
    color: #fff;
}
