/* =========================================
   BURGER MENU MOBILE
========================================= */

@media (max-width: 900px) {

  .bbl-header__center {
    display: none !important;
  }

  .bbl-header__right {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .bbl-burger {
    display: inline-flex !important;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }

  .bbl-burger span {
    width: 22px;
    height: 2px;
    background: #111;
    transition: .25s;
  }

  .bbl-burger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .bbl-burger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .bbl-burger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .bbl-nav {
    display: none !important;
  }

  .bbl-nav.is-open {
    display: block !important;
  }

  .bbl-menu {
    flex-direction: column !important;
  }


  .bbl-cartcount {
    display: none !important;
  }
}