@media (max-width: 1200px) {
  body.hob-ad-body--mobile-menu-open {
    overflow: hidden;
    touch-action: none;
  }

  body.hob-ad-body--mobile-menu-open .hob-ad-mobile-drawer {
    touch-action: pan-y;
  }

  .hob-ad-header--sticky {
    padding-top: 0;
  }

  .hob-ad-header__bar {
    min-height: 80px;
    padding: 0 20px;
  }

  .hob-ad-header--floating.hob-ad-header--mobile-open .hob-ad-header__bar {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .hob-ad-header__left,
  .hob-ad-header__right {
    min-height: 80px;
  }

  .hob-ad-header__nav,
  .hob-ad-header__desktop-actions {
    display: none;
  }

.hob-ad-header__burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 106px;
    min-width: 106px;
    min-height: 80px;
    margin-left: -24px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #805e9c;
}

  .hob-ad-header__burger:hover,
  .hob-ad-header__burger:focus-visible {
    border: 0;
    background: transparent;
    color: #805e9c;
  }

  .hob-ad-header__burger-lines {
    position: relative;
    display: block;
    width: 42px;
    height: 20px;
  }

  .hob-ad-header__burger-line {
    position: absolute;
    left: 0;
    display: block;
    width: 42px;
    height: 2px;
    border-radius: 999px;
    background: #805e9c;
    transform-origin: center;
    transition:
      opacity var(--hob-ad-transition),
      transform 260ms ease;
  }

  .hob-ad-header__burger-line:nth-child(1) {
    top: 0px;
  }

  .hob-ad-header__burger-line:nth-child(2) {
    top: 8px;
  }

  .hob-ad-header__burger-line:nth-child(3) {
    top: 16px;
  }

  .hob-ad-header--mobile-open .hob-ad-header__burger-line:nth-child(1),
  .hob-ad-header--mobile-open .hob-ad-header__burger-line:nth-child(3) {
    opacity: 0;
    transform: translateY(7px) scaleX(0);
  }

  .hob-ad-header--mobile-open .hob-ad-header__burger-line:nth-child(3) {
    transform: translateY(-7px) scaleX(0);
  }

  .hob-ad-header--mobile-open .hob-ad-header__burger-line:nth-child(2) {
    opacity: 1;
    transform: scaleX(1);
  }

  .hob-ad-header__logo {
    width: 120px;
    height: 80px;
  }

  .hob-ad-header__logo-image {
    width: 62px;
    max-height: 60px;
  }

  .hob-ad-header__mobile-actions {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    min-width: 56px;
    min-height: 80px;
  }

  .hob-ad-mobile-drawer {
    display: block;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
    background: #fff4f9;
    opacity: 0;
    transform: translateY(-8px);
    transition:
      max-height 420ms ease,
      opacity 260ms ease,
      transform 260ms ease,
      visibility 0s linear 420ms;
  }

  .hob-ad-mobile-drawer--open {
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition:
      max-height 420ms ease,
      opacity 260ms ease,
      transform 260ms ease,
      visibility 0s linear 0s;
  }

  .hob-ad-mobile-drawer__inner {
    padding: 0 20px 22px;
  }

  .hob-ad-mobile-drawer__mega-area,
  .hob-ad-mobile-drawer__account-area {
    width: 100%;
    min-height: 1px;
  }

  .hob-ad-mobile-drawer__separator {
    width: 100%;
    border-top: 1px solid #f6c6dd;
  }

  .hob-ad-mobile-drawer__nav {
    display: flex;
    flex-direction: column;
  }

  .hob-ad-mobile-drawer__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    color: #805e9c;
    font-family: var(--hob-ad-font-heading);
    text-decoration: none;
  }

  .hob-ad-mobile-drawer__link::after {
    position: absolute;
    right: 0;
    bottom: 14px;
    left: 0;
    width: max-content;
    max-width: 100%;
    height: 1px;
    background: #805e9c;
    content: "";
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform var(--hob-ad-transition);
  }

  .hob-ad-mobile-drawer__link:hover::after,
  .hob-ad-mobile-drawer__link:focus-visible::after {
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hob-ad-header__burger-line,
  .hob-ad-mobile-drawer,
  .hob-ad-mobile-drawer__link::after {
    transition-duration: 0.01ms !important;
  }
}
