.main-menu {
    position: relative;
    background: #fff;
            border-top: 1px solid #111111;
        border-bottom: 1px solid #111111;
}
.menu-root {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    border-bottom: 1px solid #eee;
}
.menu-root-item {

}
.menu-root-link {
    display: block;
    padding: 14px 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    text-transform: uppercase;
    transition: background 0.2s;
}
.menu-root-link:hover {
    background: #f9f9f9;
}
.mega-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100vw;
    background: #fefefe;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 10;
    padding: 30px;
}
.menu-root-item:hover .mega-menu {
    display: block;
}
.mega-menu-inner {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
}
.mega-image {
    flex: 1;
    padding-right: 30px;
}
.mega-image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}
.mega-columns {
    flex: 3;
    display: flex;
    gap: 40px;
}
.mega-column {
    flex: 1;
}
.mega-subsection-title {
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 16px;
}
.mega-subsection-title a {
    color: #000;
    text-decoration: none;
}
.mega-items {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mega-items li {
    margin-bottom: 5px;
}
.mega-items a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    transition: color 0.2s;
}
.mega-items a:hover {
    color: #000;
}