/* Force menu to stay fixed and ignore popup layout */
.menu {
    position: fixed !important;
    top: 0;
    width: 100% !important;
    left: 0 !important;
    z-index: 9999 !important;
    transform: none !important;
}

/* Ensure popup doesn't affect menu positioning */
.t-popup {
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    z-index: 1000 !important;
    width: 50% !important;
    height: 100vh !important;
}