/* Убираем строку с суммой под списком товаров */
.t706__cartwin-totalamount-wrap {
    display: none !important;
}

/* Убираем слово "Сумма" и сумму рядом в форме оформления */
.t-form__cart-total,
.t-form__cart-total strong {
    display: none !important;
}

/* Снимаем ограничение ширины у табов во всех ST310N */
.t-store .t-store__tabs__content {
    max-width: 100% !important;
    overflow: visible !important; /* чтобы контент не обрезался */
}

.t-store .t-store__tabs__content {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Родительский контейнер табов — сворачивание работает */
.t-store__tabscontent {
    overflow: hidden !important;
    width: 100% !important;
}

/* Контейнер табов ST310N — плавное раскрытие */
.t-store.ST310N .t-store__prod-tabs__content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

/* Класс для открытого таба */
.t-store.ST310N .t-store__prod-tabs__content.active {
  max-height: 2000px; /* увеличь, если текст длинный */
}


