/* 1. Убираем «Нет в наличии» под товарами */

.js-store-prod-sold-out,
.t-store__card__sold-out-msg {
    font-size: 0 !important;
    line-height: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    color: transparent !important;
}


/* Телефоны — до 640px */
@media screen and (max-width: 640px) {
    .t-store__card__textwrapper {
        margin-top: -30px !important;
    }
}

/* Планшеты / телефон горизонтально — 641px–980px */
@media screen and (min-width: 641px) and (max-width: 980px) {
    .t-store__card__textwrapper {
        margin-top: -40px !important;
    }
}

/* Компьютеры — 981px–1199px */
@media screen and (min-width: 981px) and (max-width: 1199px) {
    .t-store__card__textwrapper {
        margin-top: -37px !important;
    }
}

/* Большие экраны — от 1200px */
@media screen and (min-width: 1200px) {
    .t-store__card__textwrapper {
        margin-top: -42px !important;
    }
}



/* Отступ между названием товара и ценой */
.t-store__card__title {
    margin-bottom: 4px !important;
    line-height: 1.15 !important;
}

.t-store__card__price-wrapper {
    margin-top: 0 !important;
}

/* Убираем цену в каталоге */

.t-store__card__price-wrapper {
    display: none !important;
}

/* Отступ между названием товара и текстом под ним */

.t-store__card__title {
    margin-bottom: 4px !important;
}

.t-store__card__descr {
    margin-top: 0 !important;
    padding-top: 0 !important;
}