/* Добавьте position: relative к карточке */
.t-store__card {
    position: relative !important;
    padding-bottom: 30px !important; /* Добавляем место для надписи */
}

.t-store__card::after {
    content: attr(data-product-inv) " шт. в наличии";
    font-family: 'Gogh', sans-serif;
    font-size: 12px;
    color: #fefefe;
    /*background-color: rgba(0, 0, 0, 0.8);*/
    padding: 4px 8px;
    position: absolute;
    bottom: 5px; /* Размещаем внизу карточки */
    left: 0;
    right: 0;
    text-align: center; /* Центрируем текст */
    z-index: 999;
    width: auto;
}

.t-store__card__btns-wrapper {
    margin-top: 40px !important;
}

.js-store-prod-sold-out {
    display: none;
}

/* Убираем надпись сверху на изображении */
.js-product::before {
    display: none !important;
}

.t-store__prod-popup__name {
    margin-top: 5px;
}

@media screen and (max-width: 640px) {
    .t-store__card::after {
        font-size: 11px;
        bottom: 3px;
    }
}