body .h__item_sub {
    display: inline-block;
    white-space: nowrap;
    color: #cc95ff;
    font-size: small;
    letter-spacing: 1px;
    border: 1px solid #c693e0;
    border-radius: 3px;
    padding: 5px;
} /*второе меню*/

body .header__contact{
    color: var(--light);
    font-size: 1.6em;
    line-height: 120%;
    -webkit-transition: color 0.3s ease 0s;
    transition: color 0.3s ease 0s;
}/*контакты в header*/

body .item-main-page__title.title-item{
    font-size: x-large;
    min-width: 200px;
    white-space: normal;    
} /*заголовок товара*/

body .item-main-page__characteristics li {
    font-size: 1.2em;
    line-height: 110%;
    text-align: right;
} /*вес*/

body .item-main-page__price.title-item{
    font-size: x-large;
} /*цена*/

body .item-main-page__desc{
    font-size: 120%;
} /*Первое описание*/

body .item-main-page__text-block{
    font-size: 1.4em;
    line-height: 110%;
    text-align: justify;
    max-width: 13em;
    text-transform: uppercase;
}/*Второе описание*/

.group_jc{
    display: flex;
}
.header-address{
    color: #fff;
    margin-right: 20px;
}
.header__contact--phone{
    letter-spacing: 1px;
}
.header_address-group{
    display: flex;
    align-items: center;
}
@media (max-width: 900px) {
    body .header_address-group{
        width:100%;
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
    }
    body  .header-address{
     margin-left: 10px;
     font-size: 90%;
    }
    body .header__contact--phone{
        font-size: 100%;
    }
    .title_and_icon{
       font-size: 85%;
    }
    .ttitle{
        width: max-content;
    }

    .group_jc{
        display: flex;
        flex-direction: column;
        align-items: end;
    }

}


.item-main-page__characteristics{
    display: flex;
    justify-content: end;
}



#comments_block {
    color: #fff;
    background: #111;
    padding: 20px;
    border-radius: 10px;
}
.comment {
    border-bottom: 1px solid #333;
    padding: 10px 0;
}
.comment .meta {
    font-size: 12px;
    color: #aaa;
    margin-right: 10px;
}
.comment .text {
    margin: 5px 0;
    margin-top: 0px;
    font-size: 100%;
}
.comment .likes {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #888;
    font-size: 79%;
    margin-top: 12px;
}
.comment .likes svg {
    width: 16px;
    height: 16px;
    fill: #888;
}
#add_comment_form textarea {
    width: 100%;
    background: #222;
    color: #fff;
    border: 1px solid #444;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}
#add_comment_form button {
    background: #444;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.comment__block{
    display: flex;
    justify-content: left;

}

.reply-wrapper {
    border-left: 2px solid #444;
    padding-left: 15px;
    margin-top: 15px;
    background-color: #1a1a1a;
    border-radius: 6px;
    padding: 15px;
}

.replying-to {
    font-size: 12px;
    color: #888;
    margin-bottom: 8px;
}

.reply-form textarea {
    width: 100%;
    min-height: 70px;
    background: #222;
    color: #fff;
    border: 1px solid #444;
    border-radius: 5px;
    padding: 10px;
    resize: vertical;
    margin-bottom: 10px;
    font-family: inherit;
    font-size: 14px;
}

.reply-form button[type="submit"] {
    background: #3a3a3a;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s ease-in-out;
}

.reply-form button[type="submit"]:hover {
    background: #555;
}

.reply-form .cancel-reply {
    background: transparent;
    color: #aaa;
    border: none;
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
    padding: 8px 12px;
}

.reply-form .cancel-reply:hover {
    color: #ddd;
}
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.table-wrapper table {
    width: 100%;
    min-width: 600px; /* адаптируй под свои таблицы */
}