/* Стили для новых табов товара */
.control-block {
    margin-top: 40px;
}

.in-product__tabs {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    gap: 0;
    margin-bottom: 30px;
}

.in-product__tabs .tab {
    padding: 15px 20px;
    cursor: pointer;
    background: transparent;
    border: none;
    position: relative;
    transition: color 0.3s ease;
}

.in-product__tabs .tab h2 {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    color: #808080;
    transition: color 0.3s ease;
}

.in-product__tabs .tab.active h2 {
    color: #f0cf4c;
    font-weight: 500;
}

.in-product__tabs .tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #f0cf4c;
}

.in-product__content {
    display: none;
}

.in-product__content.hidden {
    display: none;
}

.in-product__content:not(.hidden) {
    display: block;
}

.in-product__desc_text {
    line-height: 1.6;
    color: #333;
}

.in-product__desc_text p {
    margin-bottom: 15px;
}

.in-product__desc_text ul {
    margin: 15px 0;
    padding-left: 20px;
    list-style-type: disc;
}

.in-product__desc_text li {
    margin-bottom: 10px;
    color: #000;
}

.in-product__desc_text ul li::marker {
    color: #000;
}

.in-product__desc_text h3,
.in-product__desc_text h4 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

.in-product__desc_text h3 {
    font-size: 20px;
}

.in-product__desc_text h4 {
    font-size: 18px;
}

/* Стили для характеристик в 2 колонки */
.in-product__desc_text_line {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.in-product__desc_text_line:last-child {
    border-bottom: none;
}

.in-product__desc_text_line > span:first-child {
    color: #808080;
    font-size: 14px;
    font-weight: 400;
}

.in-product__desc_text_line > span.in-product__desc_text_item {
    color: #000;
    font-size: 16px;
    font-weight: 700;
}

/* Адаптивность для табов */
@media (max-width: 768px) {
    .control-block {
        margin-top: 20px;
    }
    
    .in-product__tabs {
        flex-wrap: nowrap !important;
        margin-bottom: 15px;
        gap: 0;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .in-product__tabs::-webkit-scrollbar {
        display: none;
    }
    
    .in-product__tabs .tab {
        padding: 6px 6px !important;
        flex: 0 0 auto !important;
        min-width: 0;
        white-space: nowrap;
    }
    
    .in-product__tabs .tab h2 {
        font-size: 13px !important;
        line-height: 1.4 !important;
        font-weight: 400 !important;
        white-space: nowrap;
        margin: 0 !important;
    }
    
    .in-product__desc_text_line {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
}

