/* ============================================================
   CLASSIC TV PAKISTAN — MOBILE BOTTOM NAVIGATION BAR
   ============================================================ */

.mobile-bottom-nav {
  display: none;
}

@media (max-width: 850px) {
  .mobile-bottom-nav {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 56px;
    z-index: 300;
    background: rgba(6, 11, 8, 0.98);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-top: 1px solid rgba(245, 197, 66, 0.2);
    justify-content: space-around;
    align-items: center;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .m-bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--text-dim);
    font-size: 10px;
    font-weight: 600;
    background: none;
    border: none;
    flex: 1;
    padding: 6px 0;
    cursor: pointer;
    transition: all 0.2s;
  }

  .m-bottom-nav-item svg {
    transition: stroke 0.2s, filter 0.2s;
  }

  .m-bottom-nav-item.active {
    color: var(--gold);
  }

  .m-bottom-nav-item.active svg {
    stroke: var(--gold);
    filter: drop-shadow(0 0 6px rgba(245, 197, 66, 0.5));
  }
}
