/* =============================================================================
   MOBILE BOTTOM NAVIGATION
   ============================================================================= */

.mobile-bottom-nav {
  display: none;
}

@media (max-width: 767px) {
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--bg-400);
    border-top: 1px solid var(--layout-color-lineart);
    box-shadow: 0 -2px 8px rgba(0,0,0,0.08);
    padding: 0.3rem 0;
    padding-bottom: calc(0.3rem + env(safe-area-inset-bottom, 0px));
  }

  .mobile-bottom-nav__tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    padding: 0.35rem 0;
    text-decoration: none;
    color: var(--fg-700);
    font-size: 0.65rem;
    transition: color 0.15s;
  }

  .mobile-bottom-nav__tab i {
    font-size: 1.1rem;
  }

  .mobile-bottom-nav__tab:hover,
  .mobile-bottom-nav__tab._active {
    color: var(--primary-500);
  }

  /* Add bottom padding to body to prevent content from being obscured */
  body {
    padding-bottom: 60px;
  }
}
