  .mnav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .2rem;
    padding: .45rem .3rem;
    cursor: pointer;
    color: var(--sub);
    font-size: .6rem;
    font-weight: 600;
    font-family: var(--font);
    background: none;
    border: none;
    border-radius: 10px;
    transition: color .15s;
    -webkit-tap-highlight-color: transparent;
  }
  .mnav-emoji {
    font-size: 1.45rem;
    line-height: 1;
    transition: transform .15s;
    filter: grayscale(30%);
  }
  /* Groen tabs: Home, Lijst, Koken */
  .mnav-item.glow-g.active { color: #4ade80; }
  .mnav-item.glow-g.active .mnav-emoji { transform: scale(1.18); filter: grayscale(0%) drop-shadow(0 0 6px #4ade8088); }
  .mnav-item.glow-g.active::after {
    content: ''; position: absolute; bottom: 1px; left: 50%; transform: translateX(-50%);
    width: 26px; height: 3px; border-radius: 3px;
    background: #4ade80; box-shadow: 0 0 10px #4ade80, 0 0 20px #4ade8044;
  }
  /* Oranje tabs: Menu, Voorraad */
  .mnav-item.glow-o.active { color: #fb923c; }
  .mnav-item.glow-o.active .mnav-emoji { transform: scale(1.18); filter: grayscale(0%) drop-shadow(0 0 6px #fb923c88); }
  .mnav-item.glow-o.active::after {
    content: ''; position: absolute; bottom: 1px; left: 50%; transform: translateX(-50%);
    width: 26px; height: 3px; border-radius: 3px;
    background: #fb923c; box-shadow: 0 0 10px #fb923c, 0 0 20px #fb923c44;
  }
  .mnav-item { position: relative; }
  .mobile-nav-inner { display: flex; width: 100%; padding: 0 .4rem; }
