/* Нижняя навигация на телефоне — отдельный паттерн, не сжатая версия
   верхнего меню. Подключается на страницах основного пути покупки:
   index / profile / premium-product / bundle-product / support / cart. */
.bottom-nav {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
  background: rgba(13, 17, 20, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 4px calc(6px + env(safe-area-inset-bottom));
}
.bottom-nav a {
  flex: 1;
  display: grid; justify-items: center; gap: 3px;
  padding: 6px 2px;
  border-radius: 12px;
  color: #7d8a96;
  font-size: 10.5px; font-weight: 700;
  text-decoration: none;
}
.bottom-nav a svg { width: 22px; height: 22px; }
.bottom-nav a.is-active { color: var(--gold, #38d9c4); }
.bottom-nav a:active { background: rgba(255, 255, 255, 0.06); }

@media (max-width: 900px) {
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
  .bottom-nav { display: flex; }

  /* Вход/регистрация/баланс/профиль/выход дублируют нижнюю навигацию —
     прячем в шапке, чтобы не показывать то же самое дважды. */
  .header-actions { display: none; }
}
