/* ===== MOBILE NAVIGATION ===== */
/* Clean mobile header, regular navbar for desktop */

/* Desktop: hide mobile nav */
@media (min-width: 769px) {
  .mobile-nav,
  .mobile-nav__border,
  .mobile-nav__svg {
    display: none !important;
  }
}

/* Mobile: hide regular navbar, show mobile nav */
@media (max-width: 768px) {
  .navbar {
    display: none !important;
  }

  body {
    padding-top: 60px !important;
    padding-bottom: 0 !important;
  }

  .mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 56px;
    background: linear-gradient(180deg, #0d0f18 0%, #111320 100%);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    z-index: 1000;
    padding: 0 0.5rem;
  }

  .mobile-nav__item {
    all: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    transition: all 0.25s ease;
  }

  .mobile-nav__item:active {
    transform: scale(0.95);
  }

  .mobile-nav__item.active {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(6, 182, 212, 0.2));
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
  }

  .mobile-nav__icon {
    width: 22px;
    height: 22px;
    stroke: rgba(255, 255, 255, 0.6);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.25s ease;
  }

  .mobile-nav__item.active .mobile-nav__icon {
    stroke: #a78bfa;
    filter: drop-shadow(0 0 4px rgba(139, 92, 246, 0.5));
  }

  .mobile-nav__badge {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 14px;
    height: 14px;
    padding: 0 3px;
    background: #ef4444;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-nav__badge.hidden {
    display: none;
  }

  /* Hide bubble elements */
  .mobile-nav__border,
  .mobile-nav__svg {
    display: none !important;
  }
}
