/* Кнопка в попапе товара */
.t-store__prod-popup__btn.t-btn.t-btn_sm {
    width: 100%;
}

/* Размеры текста — только внутри карточек магазина */
.t-store__card .t-name_md {
    font-size: 12px;
}
.t-store__card .t-name_xl {
    font-size: 18px;
}

/* Боковое меню (t450) */
.t450__close_icon {
    width: 10px;
}
.t450__close {
    left: 5px;
}
.t450__right_social_links_item svg {
    width: 18px;
    height: 18px;
}
.t450__container {
    box-sizing: border-box;
    padding: 70px 10px 38px;
}
.t450__rightside {
    left: 10px;
}
.t450__right_langs {
    margin-top: 10px;    
}
/* Крестик в меню */
.t450__close_icon span {
    background-color: #a6a29d; /* !important убран */
}

/* Табы (t395) */
.t395__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* center = центр, flex-start = слева, flex-end = справа */
}
.t395__title {
    line-height: 1; /* безопаснее чем 0.8 */
}
.t395__tab {
    box-shadow: inset 0 0 0 0px #a6a29d; /* Контур вкладки */
    border-radius: 30px;
    margin-right: 15px;
    margin-bottom: 15px;
    display: inline-block;
    width: fit-content;
}
.t395__tab_active {
    box-shadow: inset 0 0 0 0px #a6a29d, 0 0 0px 0 #a2a2a2; /* Контур активной вкладки */
}

/* Адаптив табов */
@media screen and (max-width: 960px) {
    .t395__wrapper_mobile { display: none; }
    .t395__wrapper {
        justify-content: center;
    }
    .t395__title { 
        font-size: 10px;
        line-height: 1; /* вместо 0.5 для читаемости */
    }
    .t395__tab {
        margin-right: 10px;
        margin-bottom: 10px;
    }
}

/* Адаптив описания в t976 */
@media screen and (max-width: 960px) {
    .t976 .t-descr { 
        font-size: 10px;
        line-height: 1;
    }
}

/* Попап скидка (t702) */
@media screen and (max-width: 560px) {
    .t702 .t-popup__close {
        background: #fff;
    }
    .t702 .t-popup_show .t-popup__container {
        min-height: 60vh;
    }
}


