/* GEEK Mobile Bottom Nav */
/* Показываем только на мобильных */
.gmbn{ display:none }
@media (max-width:1024px){
  .gmbn{
    position: fixed; left: 0; right: 0; bottom: 0;
    z-index: 9999; height: 62px;
    display: grid; grid-template-columns: repeat(5,1fr);
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,.12);
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .gmbn__item i.mdi{ font-size:22px; line-height:1; display:block }

  .gmbn__item{
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    gap: 4px; text-decoration:none; color:#fff; font: 600 11px/1 Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    opacity:.92; background:none; border:0; cursor:pointer;
  }
  .gmbn__item svg{ width:22px; height:22px }
  .gmbn__item.is-active{ opacity:1 }
  .gmbn__item:active{ transform: translateY(1px) }
}

/* Поиск-панель */
.gmbn-search{
  position: fixed; left: 0; right: 0; bottom: 62px; z-index: 10000;
  background: rgba(0,0,0,.94); backdrop-filter: blur(10px);
  padding: 12px; display: none;
}
.gmbn-search[hidden]{ display:none }
.gmbn-search form{ display:grid; grid-template-columns: 1fr auto auto; gap:8px }
.gmbn-search input{
  width: 100%; padding: 10px 12px; border-radius: 10px; border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06); color: #fff;
}
.gmbn-search button{ padding: 10px 12px; border-radius: 10px; border: 1px solid rgba(255,255,255,.18); background: #1a1a1a; color: #fff }
