.hb-mobile-header {
  display: none;
}

@media (max-width: 1024px) {
  .hb-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    padding: 10px 16px;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 99999;
    box-shadow: 0 2px 10px rgba(0,0,0,.10);
  }

  .hb-mobile-logo img {
    height: 72px;
    width: auto;
    display: block;
  }

  .hb-mobile-burger {
    width: 46px;
    height: 46px;
    border: none;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    padding: 0;
  }

  .hb-mobile-burger span {
    display: block;
    width: 32px;
    height: 3px;
    background: #007a2f;
    border-radius: 2px;
    margin-left: auto;
  }

  .hb-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 82%;
    max-width: 330px;
    height: 100vh;
    background: #ffffff;
    z-index: 100001;
    padding: 22px;
    transition: right .35s ease;
    box-shadow: -8px 0 22px rgba(0,0,0,.22);
    overflow-y: auto;
  }

  .hb-mobile-menu.open {
    right: 0;
  }

  .hb-mobile-close {
    position: absolute;
    top: 10px;
    right: 18px;
    border: none;
    background: transparent;
    font-size: 42px;
    line-height: 1;
    color: #111;
    cursor: pointer;
  }

  .hb-mobile-menu-logo {
    text-align: center;
    margin: 30px 0 25px;
  }

  .hb-mobile-menu-logo img {
    max-width: 150px;
    height: auto;
  }

  .hb-mobile-nav {
    display: flex;
    flex-direction: column;
  }

  .hb-mobile-nav a {
    display: block;
    padding: 15px 0;
    color: #111111;
    text-decoration: none;
    font-size: 17px;
    font-weight: 800;
    border-bottom: 1px solid #f58200;
    text-transform: uppercase;
  }

  .hb-mobile-nav a:hover {
    color: #f58200;
  }

  .hb-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.60);
    z-index: 100000;
  }

  .hb-mobile-overlay.open {
    display: block;
  }
}