/* Mobile Navigation Override - Highest Priority */
@media (max-width: 768px) {
  /* Force mobile menu to be hidden by default */
  .navbar .nav-menu,
  #nav-menu,
  .nav-container .nav-menu {
    position: fixed !important;
    top: -100vh !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: #ffffff !important;
    z-index: 1002 !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 5rem 2rem 2rem 2rem !important;
    transition: top 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    transform: none !important;
    overflow-y: auto !important;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.3) !important;
  }
  
  /* Show menu when active */
  .navbar .nav-menu.active,
  #nav-menu.active,
  .nav-container .nav-menu.active {
    top: 0 !important;
  }
  
  /* Force hamburger button visibility */
  .navbar .nav-toggle,
  .nav-container .nav-toggle {
    display: flex !important;
    position: fixed !important;
    top: 25px !important;
    right: 1.5rem !important;
    z-index: 1003 !important;
    width: 32px !important;
    height: 32px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    transform: none !important;
  }
  
  /* Hide desktop nav actions on mobile */
  .nav-actions,
  .desktop-language-switcher {
    display: none !important;
  }
  
  /* Show mobile language switcher inside menu */
  .mobile-language-switcher {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 1rem 0 !important;
    margin-top: 1rem !important;
    border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
  }
}