/* Voa Entregador — Navegação inferior
   Carregado da estrutura de componentes */

.bottom-nav {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: var(--bottom-nav-h);
    background: var(--surface);
    border-top: 1px solid var(--ink-200);
    display: grid; grid-template-columns: repeat(4, 1fr);
    z-index: 50;
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .nav-btn {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 4px; color: var(--ink-400);
    font-size: 11px; font-weight: 600;
    transition: color 0.15s;
  }
  .nav-btn.active { color: var(--brand); }
  .nav-btn svg { width: 22px; height: 22px; }

  /* Estado desabilitado (ex.: Gestor — em breve redirecionará para outro domínio) */
  .nav-btn.disabled,
  .nav-btn[disabled] {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
  }


  /* Visually hidden */
  .sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

  /* Empty state */
  .empty { text-align: center; padding: 24px; color: var(--ink-400); font-size: 13px; }

  /* ---------- Tela de Cadastro de Estabelecimento ---------- */
