/* Mobile bottom icon nav */
@media (max-width: 991.98px) {
  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom)); /* space for bottom nav + safe area */
  }

  .mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 78px; /* room for icon + label */
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-bottom: env(safe-area-inset-bottom);
    z-index: 1030;
  }

  .mobile-bottom-nav__item {
    position: relative;
    color: #333;
    text-decoration: none;
    flex: 1 1 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  /* Use provided FA codes via ::before, matching nth-child order */
  .mobile-bottom-nav__item::before {
    font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free", "Font Awesome 5 Free";
    font-weight: 400;
    font-size: 22px;
    line-height: 1;
    color: var(--primary);
    display: inline-block;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .mobile-bottom-nav__item:nth-child(1)::before { content: "\f015"; }
  .mobile-bottom-nav__item:nth-child(2)::before { content: "\f07a"; }
  .mobile-bottom-nav__item:nth-child(3)::before { content: ""; }
  .mobile-bottom-nav__item:nth-child(4)::before { content: ""; }
  .mobile-bottom-nav__item:nth-child(5)::before { content: ""; font-weight: 900; }

  /* Small text labels under icons */
  .mobile-bottom-nav__item::after {
    content: '';
    font-family: inherit;
    font-weight: 500;
    font-size: 10px;
    line-height: 1.1;
    color: #444;
    margin-top: 4px;
  }
  .mobile-bottom-nav__item:nth-child(1)::after { content: 'Comprar'; }
  .mobile-bottom-nav__item:nth-child(2)::after { content: 'Rentar/Vender'; }
  .mobile-bottom-nav__item:nth-child(3)::after { content: 'Publicar'; }
  .mobile-bottom-nav__item:nth-child(4)::after { content: 'Acceso'; }
  .mobile-bottom-nav__item:nth-child(5)::after { content: 'Registro'; }
}
