/* "Избранное" */
.header__right {
    display: flex;
    margin-left: 15px;
}
.header__products-groups {
display: flex;
flex-wrap: nowrap;
gap: 14px;
margin-right: 14px;
}
.header__products-groups > a {
display: flex;
align-items: center;
font-size: 16px;
font-weight: 700;
color: #919396;
text-decoration: none;
}
.header__products-groups > a.active svg {
    color: #F51906;
}

.header__menu+* {
margin-left: 15px;
}
.header__phone+* {
margin-left: 15px;
}

.catalog__content__list-item-card__actions {
    position: absolute;
    display: flex;
    flex-direction: column;
    z-index: 1;
    gap: 10px;
    top: 15px;
    right: 15px;
}
.catalog__content__list-item-card__actions > span {
    display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0px;
    background-image: url(/wp-content/themes/titan/assets/img/product-actions-sprite.png);
}
span.catalog__content__list-item-card__actions-favorite {
    background-position: 0px 30px;
}
span.catalog__content__list-item-card__actions-favorite.active {
    background-position: 30px 30px;
}