@media (min-width: 992px) {

  /* ===============================
     WRAPPER
  =============================== */

  .nav-wrapper {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      height: 80px;
      width: 100%;
      gap: var(--space-md);
      position: relative;
      overflow: visible;
  }

  .nav-wrapper .nav-right {
      margin-left: auto;
      flex: 1 1 auto;
      min-width: 0;
      justify-content: flex-end;
  }

  .nav-desktop {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 0;
      flex: 1 1 auto;
      min-width: 0;
  }

  /* Sprach-Flaggen aus der Zeile nehmen, ~100px über die Menüleiste */
  .nav-desktop .lang-list {
      position: absolute;
      top: -30px;
      right: 20;
      z-index: 25;
      margin: 0;
  }

  /* Burger & Drawer ausblenden */
  .nav-toggle,
  .mobile-drawer,
  .nav-close,
  .submenu-toggle {
      display: none !important;
  }

  /* ===============================
     ROOT NAVIGATION
  =============================== */

  .nav-root {
      display: flex;
      align-items: center;
      gap: var(--space-lg);
  }

  .nav-item {
      position: relative;
  }

  .nav-desktop .nav-item > a {
      display: block;
      padding: 0.75rem 0;
      color: #e38136;
      text-decoration: none;
  }

  .nav-desktop .nav-item > a:hover {
      color: #ffffff;
  }

  /* ===============================
     DROPDOWN (Level 1)
  =============================== */

  .nav-item > .submenu {
      position: absolute;
      top: 100%;
      left: 0;

      min-width: 220px;
      background: var(--color-primary);
      padding: 0.5rem 0;

      display: none;
      z-index: 1000;
  }

  /* Hover öffnet */
  .nav-item:hover > .submenu {
      display: block;
  }

  /* ===============================
     SUBMENU LINKS
  =============================== */

  .nav-desktop .submenu .nav-item > a {
      display: block;
      padding: 0.6rem 1rem;
      color: #ad4f07;
      white-space: nowrap;
  }

  .nav-desktop .submenu .nav-item > a:hover {
      color: #de833e;
      background: rgba(255,255,255,0.08);
  }

  /* ===============================
     LEVEL 2+
  =============================== */

  .submenu .submenu {
      top: 0;
      left: 100%;
  }

}
