.site-header .header-brand-nav.intl-new-nav .reference-navigation-panel {
    margin-top: unset;
}
.new-mega-menu {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.new-mega-menu .h-nav-con {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0;
}
.new-mega-menu .h-nav-con > li {
    position: relative;
}
.new-mega-menu .h-nav-con > li > a {
    font-size: 14px;
    display: block;
    padding: 10px 16px;
    white-space: nowrap;
    color: #333;
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
}
.new-mega-menu .h-nav-con > li > a:hover {
    color: #46b0e2;
    background: rgba(0,0,0,0.03);
}
.new-mega-menu .h-nav-con > li > a:active,
.new-mega-menu .h-nav-con > li > a:focus {
    color: #46b0e2;
    background: rgba(0,0,0,0.06);
}
.new-mega-menu .h-nav-con > li > a.active {
    color: #46b0e2;
    font-weight: 600;
}
.new-mega-menu .h-nav-con .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    list-style: none;
    margin: 0;
    padding: 8px 0;
    z-index: 1000;
}
.new-mega-menu .h-nav-con .sub-menu .sub-menu {
    top: 0;
    left: 100%;
}
.new-mega-menu .menu-item-has-children:hover > .sub-menu {
    display: block;
}
.new-mega-menu .sub-menu li a {
    display: block;
    padding: 8px 20px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
}
.new-mega-menu .sub-menu li a {
    transition: color 0.2s, background 0.2s;
}
.new-mega-menu .sub-menu li a:hover {
    background: #f5f5f5;
    color: #46b0e2;
}
.new-mega-menu .sub-menu li a:active {
    background: #eee;
    color: #46b0e2;
}
.submenu-toggle {
    display: none;
    cursor: pointer;
}
.submenu-indicator {
    margin-left: 4px;
    font-size: 12px;
    color: #999;
}

.intl-m-menu-btn {
    display: none;
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    z-index: 1001;
    width: 33px;
    height: 33px;
    align-items: center;
    justify-content: center;
}
.intl-m-menu-btn img {
    width: 33px;
    height: 33px;
}
.intl-m-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}
.intl-m-menu-overlay.active {
    display: block;
}

@media (max-width: 768px) {
    body .site-header .header-brand-nav.intl-new-nav .reference-navigation-panel {
        position: absolute;
        top: 5px;
    }
    .intl-m-menu-btn {
        display: flex;
    }
    .new-mega-menu {
        position: fixed !important;
        top: 0;
        left: 0;
        transform: translateX(-100%);
        width: 100%;
        max-width: 100%;
        height: 100%;
        background: #fff;
        /* z-index: 9999; */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transition: transform 0.3s ease;
        box-shadow: 2px 0 12px rgba(0,0,0,0.15);
        pointer-events: auto;
    }
    .new-mega-menu.open {
        transform: translateX(0);
    }
    .new-mega-menu .h-nav-con {
        width: 100%;
        flex-direction: column;
        padding: 60px 0 20px;
        min-height: 0;
    }
    .new-mega-menu .h-nav-con > li {
        min-height: 0;
    }
    .new-mega-menu .h-nav-con > li > a.active {
        font-size: 16px;
    }
    .new-mega-menu .menu-item-has-children {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }
    .new-mega-menu .menu-item-has-children > a {
        flex: 1;
        padding: 14px 20px;
        font-size: 16px;
        border-bottom: 1px solid #eee;
        pointer-events: auto;
        touch-action: manipulation;
    }
    .submenu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 44px;
        height: 44px;
        font-size: 20px;
        font-weight: 700;
        color: #999;
        background: none;
        border: none;
        border-bottom: 1px solid #eee;
        cursor: pointer;
        line-height: 1;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
        touch-action: manipulation;
    }
    .submenu-toggle:active {
        color: #333;
    }
    button.submenu-toggle:hover {
        color: #999;
    }
    .new-mega-menu .h-nav-con .sub-menu {
        display: none;
        position: static;
        box-shadow: none;
        background: #f9f9f9;
        padding: 0;
        flex: 0 0 100%;
    }
    .new-mega-menu .h-nav-con .sub-menu .sub-menu {
        position: static;
        background: #f0f0f0;
    }
    .new-mega-menu .sub-menu li a {
        padding: 12px 20px 12px 36px;
        font-size: 14px;
        border-bottom: 1px solid #e8e8e8;
    }
    .new-mega-menu .sub-menu .sub-menu li a {
        padding-left: 52px;
    }
    .new-mega-menu .menu-item-has-children:hover > .sub-menu {
        display: none;
    }
    .new-mega-menu .menu-item-has-children > .sub-menu.open {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
}