.bf-mbm-bar {
  display: none;
}
@media (max-width: 768px) {
  html.has-bf-mobile-bottom-menu body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
  .bf-mbm-bar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9990;
    background: var(--bf-mbm-bg, #fff);
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.06);
  }
  .bf-mbm-bar.has-border {
    border-top: 1px solid var(--bf-mbm-border, #e0e0e0);
  }
  .bf-mbm-bar-inner {
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    gap: 2px;
    min-height: 64px;
    padding: 6px 4px calc(6px + env(safe-area-inset-bottom, 0px));
    font-family: var(--bf-mbm-font, 'Quicksand', sans-serif);
    font-weight: var(--bf-mbm-weight, 700);
  }
  .bf-mbm-item {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 4px 2px;
    border-radius: 14px;
    text-decoration: none;
    color: var(--bf-mbm-item-color, var(--bf-mbm-passive-text, #555));
    transition: background .2s ease, color .2s ease;
  }
  .bf-mbm-item .bf-mbm-icon {
    color: var(--bf-mbm-item-color, var(--bf-mbm-passive-icon, #555));
  }
  .bf-mbm-item.is-active {
    background: #f1f3f6;
    color: var(--bf-mbm-item-color, var(--bf-mbm-active-text, #e53935));
  }
  .bf-mbm-item.is-active .bf-mbm-icon {
    color: var(--bf-mbm-item-color, var(--bf-mbm-active-icon, #e53935));
  }
  .bf-mbm-icon svg {
    width: 22px;
    height: 22px;
    display: block;
  }
  .bf-mbm-label {
    font-size: 11px;
    line-height: 1.15;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
  .bf-mbm-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: transparent;
    opacity: 0;
    transition: opacity .2s ease;
  }
  .bf-mbm-item.is-active .bf-mbm-dot {
    opacity: 1;
    background: var(--bf-mbm-item-color, var(--bf-mbm-active-icon, #e53935));
  }
  .ac-floating-actions,
  .bf-whatsapp-float {
    bottom: calc(74px + env(safe-area-inset-bottom, 0px)) !important;
  }
}
