/* Merged from removed child theme: mobile navigation. */
@media (max-width: 991px) {
  /* Altes Theme-Mobile-Menü ausblenden */
  #mo-header-icon,
  .mo-menu-list,
  .menu-toggle,
  .sidepanel,
  .sidepanel-overlay {
    display: none !important;
  }

  .vitamin-mobile-nav {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 100001;
  }

  .vitamin-mobile-nav > summary {
    list-style: none;
  }

  .vitamin-mobile-nav > summary::-webkit-details-marker {
    display: none;
  }

  /* Hamburger-Button */
  .vitamin-mobile-nav-toggle {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 100001;
    width: 56px;
    height: 56px;
    padding: 0 14px;
    border: 0;
    border-radius: 14px;
    background: #d93d68;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
    -webkit-tap-highlight-color: transparent;
    appearance: none;
    -webkit-appearance: none;
  }

  .vitamin-mobile-nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  /* Im offenen Zustand Hamburger ausblenden */
  .vitamin-mobile-nav[open] .vitamin-mobile-nav-toggle {
    opacity: 0;
    pointer-events: none;
  }

  /* Overlay */
  .vitamin-mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 99998;
  }

  /* Panel */
  .vitamin-mobile-nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(88vw, 380px);
    height: 100vh;
    background: #ffffff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 99999;
    box-shadow: -12px 0 32px rgba(0, 0, 0, 0.12);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .vitamin-mobile-nav[open] .vitamin-mobile-nav-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .vitamin-mobile-nav[open] .vitamin-mobile-nav-panel {
    transform: translateX(0);
  }

  .vitamin-mobile-nav-inner {
    padding: 28px 24px 32px;
  }

  .vitamin-mobile-nav-top {
    position: relative;
    margin-bottom: 28px;
    min-height: 72px;
  }

  .vitamin-mobile-nav-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-right: 84px;
  }

  .vitamin-mobile-nav-brand img {
    width: 56px;
    height: auto;
    display: block;
  }

  .vitamin-mobile-nav-brand-text {
    display: flex;
    gap: 6px;
    font-family: Georgia, serif;
    font-size: 28px;
    line-height: 1;
    white-space: nowrap;
  }

  .brand-balancing {
    color: #1d3557;
  }

  .brand-business {
    color: #d93d68;
  }


  /* Menüstruktur */
  .vitamin-mobile-nav-list,
  .vitamin-mobile-nav-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .vitamin-mobile-nav-list > li {
    border-bottom: 1px solid rgba(29, 53, 87, 0.10);
  }

  .vitamin-mobile-nav-list a {
    display: block;
    padding: 16px 0;
    color: #1d3557;
    text-decoration: none;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 400;
  }

  .vitamin-mobile-nav-list a:hover,
  .vitamin-mobile-nav-list a:focus {
    color: #d93d68;
  }

  /* CTA */
  .vitamin-mobile-nav-cta {
    margin-top: 28px;
  }

  .vitamin-mobile-nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    background: #d93d68;
    color: #ffffff;
    text-decoration: none;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .vitamin-mobile-nav-button:hover,
  .vitamin-mobile-nav-button:focus {
    opacity: 0.92;
    color: #ffffff;
    transform: translateY(-1px);
  }
}

@media (min-width: 992px) {
  .vitamin-mobile-nav {
    display: none !important;
  }
}
body.vitamin-mobile-nav-open { overflow: hidden; }
