/* Делаем карточку гибким контейнером, чтобы прижать кнопку к низу */
.t-catalog__card,
.t-products__item,
.t-store__card {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

/* Растягиваем обертку кнопки на всю ширину карточки */
.t-catalog__card__btn-wrapper,
.t-products__btn-wrapper,
.t-store__card__btn-wrapper {
    width: 100% !important;
    margin-top: auto !important;
    padding: 15px 0 0 0 !important;
}

/* Растягиваем саму кнопку и центрируем текст */
.t-catalog__card__btn,
.t-products__btn,
.t-store__card__btn,
.t-btn {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: center !important;
}