/* Обертка */
.megamenu-new-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 762px;
    font-family: 'Inter', sans-serif;
}

/* Контейнер */
.megamenu-inner {
    max-width: 1360px;
    margin: 0 auto;
    height: 100%;
    padding: 0 20px;
}

.megamenu-layout {
    display: flex;
    height: 100%;
}

/* --- ЛЕВАЯ КОЛОНКА --- */
.megamenu-sidebar {
    width: 304px;
    flex-shrink: 0;
    border-right: 1px solid #F3F4F5;
    display: flex;
    flex-direction: column;
    padding-top: 32px;
    position: relative;
    padding-bottom: 20px;
}

.megamenu-all-link,
.megamenu-banner {
    margin-right: 40px; 
}

.megamenu-all-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    color: #00B1BA;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
}

.megamenu-all-icon { width: 24px; height: 24px; flex-shrink: 0; }

/* Баннер */
.megamenu-banner {
    height: 130px;
    background: #F3F4F5;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    margin-bottom: 16px;
}
.megamenu-banner-img {
    position: absolute;
    right: 0;
    top: -10px;
    height: 150px;
    width: auto;
    object-fit: cover;
}
.megamenu-banner-content {
    position: relative;
    z-index: 2;
    padding: 16px;
    width: 60%;
}
.megamenu-banner-title {
    color: #292A2A;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
}
.megamenu-banner-btn {
    display: inline-block;
    background: #DEE2E3;
    border-radius: 45px;
    padding: 6px 12px;
    color: #292A2A;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

/* Список разделов L1 */
.megamenu-sidebar-scroll {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 30px; 
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.megamenu-sidebar-scroll::-webkit-scrollbar { display: none; }

.megamenu-sections-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.megamenu-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    color: #292A2A;
    font-size: 16px;
    font-weight: 500;
}
.megamenu-item:hover, .megamenu-item.active {
    background: #F3F4F5;
    color: #00B1BA;
}
.megamenu-item:hover .megamenu-item-icon, .megamenu-item.active .megamenu-item-icon {
    color: #00B1BA;
}
.megamenu-item-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #292A2A;
    transition: color 0.2s;
    flex-shrink: 0;
}

/* Скроллбар левый */
.megamenu-sidebar-track {
    position: absolute;
    right: 6px; 
    top: 256px;
    bottom: 20px;
    width: 4px;
    background: transparent;
    z-index: 10;
}
.megamenu-sidebar-thumb {
    width: 4px;
    height: 80px !important;
    background: #878D91;
    border-radius: 36px;
    opacity: 0.7;
    cursor: pointer;
    position: absolute;
    left: 0;
}

/* --- ПРАВАЯ КОЛОНКА --- */
.megamenu-content {
    flex: 1;
    padding: 103px 40px 20px 40px; 
    position: relative;
    overflow: hidden;
}

.megamenu-content-scroll {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.megamenu-content-scroll::-webkit-scrollbar { display: none; }

.megamenu-detail-title {
    font-size: 32px;
    font-weight: 600;
    color: #292A2A;
    margin-bottom: 40px;
    position: absolute;
    top: 32px;
    left: 40px;
}

/* Сетка правой колонки */
.megamenu-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* row-gap: 40px - это отступ между строками (разделами L2) */
    /* column-gap: 40px - отступ между колонками */
    gap: 40px 40px; 
    width: 100%;
}

.megamenu-col {margin-bottom:30px;}

.megamenu-col-title {
    display: block;
    color: #292A2A;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    text-decoration: none;
}
.megamenu-col-title:hover { color: #00B1BA; }

.megamenu-col-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 8px;
}

.megamenu-link {
    color: #878D91;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}
.megamenu-link:hover { color: #292A2A; }

.megamenu-more {
    display: inline-block;
    color: #00B1BA;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 4px;
}

/* Скроллбар правый */
.megamenu-content-track {
    position: absolute;
    right: 10px;
    top: 103px;
    bottom: 20px;
    width: 4px;
    background: #F3F4F5;
    border-radius: 36px;
}
.megamenu-content-thumb {
    width: 4px;
    height: 80px !important;
    background: #878D91;
    border-radius: 36px;
    opacity: 0.7;
    cursor: pointer;
    position: absolute;
    left: 0;
}

/* Адаптив */
@media (max-width: 1200px) {
    .megamenu-new-wrapper { display: none !important; }
}