/**
 * WEMAN mobile bottom nav — shared across home / query / catalog (≤768px)
 */
.weman-mnav {
  display: none;
}

@media (max-width: 768px) {
  body.has-weman-mnav {
    --weman-mnav-h: 56px;
    padding-bottom: calc(var(--weman-mnav-h) + env(safe-area-inset-bottom, 0px) + 8px);
  }

  .weman-mnav {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    height: var(--weman-mnav-h, 56px);
    background: #fff;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -2px 10px rgba(15, 23, 42, 0.06);
    padding-bottom: env(safe-area-inset-bottom, 0);
  }

  .weman-mnav__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    text-decoration: none;
    color: #64748b;
    font-size: 0.62rem;
    font-weight: 650;
    -webkit-tap-highlight-color: transparent;
  }

  .weman-mnav__ico {
    font-size: 1.15rem;
    line-height: 1;
  }

  .weman-mnav__item.is-active {
    color: #1b7a3d;
  }

  /* Lift floating contact above bottom nav */
  body.has-weman-mnav .fc-widget {
    bottom: calc(var(--weman-mnav-h, 56px) + 16px) !important;
  }
}

@media (min-width: 769px) {
  .weman-mnav {
    display: none !important;
  }
}
