/* BoothNest v3.2.3 — single controlled mobile bottom bar */
@media (max-width: 768px) {
  body { padding-bottom: calc(108px + env(safe-area-inset-bottom)) !important; }

  .bn-mobile-bottom-single {
    position: fixed !important;
    left: 16px !important;
    right: 16px !important;
    bottom: calc(12px + env(safe-area-inset-bottom)) !important;
    z-index: 9200 !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
    padding: 10px !important;
    border-radius: 30px !important;
    background: rgba(255,255,255,.94) !important;
    border: 1px solid rgba(15,23,42,.10) !important;
    box-shadow: 0 18px 44px rgba(15,23,42,.18), 0 4px 14px rgba(15,23,42,.08) !important;
    -webkit-backdrop-filter: blur(18px) saturate(170%) !important;
    backdrop-filter: blur(18px) saturate(170%) !important;
  }

  .bn-mobile-bottom-single a {
    min-width: 0 !important;
    min-height: 58px !important;
    border: 0 !important;
    border-radius: 22px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 3px !important;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 900 !important;
    font-size: 15px !important;
    line-height: 1.05 !important;
    letter-spacing: -.02em !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent !important;
  }

  .bn-mobile-bottom-single .bn-mobile-bottom-icon { font-size: 18px !important; line-height: 1 !important; }
  .bn-mobile-bottom-single a:nth-child(1) { background: #0f172a !important; }
  .bn-mobile-bottom-single a:nth-child(2) { background: linear-gradient(135deg,#15803d,#16a34a) !important; }
  .bn-mobile-bottom-single a:nth-child(3) { background: linear-gradient(135deg,#2563eb,#1d4ed8) !important; }
  .bn-mobile-bottom-single a:active { transform: scale(.97) !important; }

  body.bn-notifications-open .bn-mobile-bottom-single,
  body.bn-modal-open .bn-mobile-bottom-single,
  body.modal-open .bn-mobile-bottom-single { display: none !important; }
}
@media (min-width: 769px) { .bn-mobile-bottom-single { display: none !important; } }