/* Родитель — обязательно */
.js-store-product.js-product {
    position: relative;
}

/* Количество товара (десктоп + планшет) */
.js-store-product.js-product::before {
    content: attr(data-product-inv) " шт в наличии";
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 18px;
    color: #000;
    background-color: #fff;
    padding: 3px 8px;
    position: absolute;
    top: -5px;
    left: 20px;
    white-space: nowrap;
    z-index: 2;
}

/* Карточка товара (если нужно) */
.t-store__card::after {
    content: attr(data-product-inv) " шт в наличии";
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 18px;
    color: #ff0000;
    position: absolute;
    margin-top: 4px;
    width: 250px;
}

/* Отступ под кнопки */
.t-store__card__btns-wrapper {
    margin-top: 40px !important;
}

/* Скрыть «нет в наличии» */
.js-store-prod-sold-out {
    display: none;
}

/* Попап */
.t-store__prod-popup__name {
    margin-top: 5px;
}

/* ===== MOBILE ===== */
@media screen and (max-width: 640px) {

    .js-store-product.js-product::before {
        position: relative;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        margin: 10px auto 0;
        display: inline-block;
        text-align: center;
    }

    .t-store__prod-popup__slider.js-store-prod-slider {
        padding-top: 30px;
    }
}