.t706__carticon-wrapper,
.t706__carticon-text {
    display: none !important;
}


/* элемент выбора кол-во в карточке товара */
.t-store__prod__quantity {
    background: transparent !important; /* убрать фон */
    border: none !important;            /* убрать бордер */
    margin: 0 0 0 0 !important;      
    padding-right: 20px;                /* справа до кнопки Добавить */
    display: inline-flex;               /* inline-flex чтобы быть на одной линии с кнопкой */
    align-items: center;
    vertical-align: middle;
}

.t-store__prod__quantity__minus,
.t-store__prod__quantity__plus {
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    flex-shrink: 0;
    background-color: transparent !important; /* убрать белый фон */
    border: none !important;
    padding: 0;
    margin: 0 2px;
}

.t-store__prod__quantity__minus {
    background-image: url(https://static.tildacdn.com/tild6138-3836-4039-b961-643530303831/minus_icon.svg);
}

.t-store__prod__quantity__plus {
    background-image: url(https://static.tildacdn.com/tild3239-3363-4934-a365-363135353036/plus_icon.svg);
}

.t-store__prod__quantity-input {
    color: #ffffff !important;          /* белый текст */
    background: transparent !important; /* прозрачный фон */
    border: none !important;            /* убрать бордер */
    width: 40px;
    text-align: center;
    padding: 2px 4px;
    margin: 0;
    font-size: 16px;     
}


/* Выравнивание текста по центру кнопки для напитков*/
.t-btnflex_type_button2 {
    display: flex !important;           /* используем flex */
    justify-content: center;            /* по горизонтали */
    align-items: center;                /* по вертикали */
    text-align: center;                 /* на всякий случай */
    padding: 0 20px;                    /* при необходимости отступы */
}

.t-btnflex_type_button2 .t-btnflex__text {
    display: inline-block;              /* корректно для текста */
    line-height: normal;                /* сбрасываем, если был другой */
}


