/* 菜单修复样式 */
.btn-menu {
    pointer-events: auto !important;
    z-index: 10 !important;
    position: relative !important;
}

.h-primary__menu {
    overflow: visible !important;
}

/* 确保菜单在移动端正确显示 */
@media (max-width: 1023.98px) {
    .h-primary__menu.links--mobile--open {
        left: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .header--mobile-active .h-primary__menu {
        left: 0 !important;
    }
}

/* 防止body滚动 */
.no-scroll {
    overflow: hidden !important;
}

/* 菜单遮罩层 */
.header--mobile-active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
    opacity: 1;
    visibility: visible;
}

