/* Заголовок блока Tabs */
.pro-tabs-block-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

/* Контейнер */
.pro-tabs {
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #fff;
}

/* Меню вкладок */
.pro-tabs-nav {
    display: flex;
    border-bottom: 1px solid #ddd;
    overflow-x: auto;
}

.pro-tabs-nav button {
    flex: 1;
    padding: 12px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: background .3s;
}

.pro-tabs-nav button.active {
    background: #f5f5f5;
    border-bottom: 3px solid #0077cc;
}

/* Контент вкладки */
.pro-tab-item {
    display: none;
    padding: 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

.pro-tab-item.active {
    display: block;
}
