/*в карточке товара*/
    .t-store__prod-popup__btn-wrapper {
        display: flex;
        flex-direction: column;
    }
    .t-store__prod__quantity {border-color: #E7E7E7;padding: 10px 5px;    margin: 0 4px 20px 0;}
    .t-store__prod__quantity-input {
        padding: 0px 20px;
        font-family: 'Montserrat';
        font-size: 18px;
        font-weight: 500;
    }
    .t-store__prod__quantity, .t-store__prod-popup__btn, .t-store__prod__quantity+a[href="#order"] {width:fit-content;}
    .t-store__prod-popup__btn-wrapper:before {
        content:'Количество';
        margin-bottom: 10px;
        font-family: 'Montserrat';
    }
    .t-store__prod__quantity+a[href="#order"] {
        padding: 0 40px;
        box-shadow: rgb(232 80 56 / 50%) 0px 2px 12px;
    }
    .t-store__prod__quantity__minus, .t-store__prod__quantity__plus {
        border: 1px solid #949494;
        transition:all 0.2s ease;
    }
    .t-store__prod__quantity__plus-wrapper:hover .t-store__prod__quantity__plus {
        
        background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
        border: 1px solid #FFA31A;
        background-color: #FFA31A;
    }
    .t-store__prod__quantity__minus-wrapper:hover .t-store__prod__quantity__minus {
        background-image: linear-gradient(#fff, #fff);
        background-color: #FFA31A;
        border: 1px solid #FFA31A;
    }