/**
 * Trust Hosting — single-row site header
 * Layout: [Logo] ........ [Nav centered] ........ [Lang / Cart / Auth]
 * Direction follows html[dir=ltr|rtl] — no flex row-reverse hacks.
 */

html:not(.app) {
  scrollbar-width: thin;
  scrollbar-color: #c3ccd3 #f2f4f6;
}
html:not(.app)::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
html:not(.app)::-webkit-scrollbar-track {
  background: #f2f4f6;
  border-radius: 99px;
}
html:not(.app)::-webkit-scrollbar-thumb {
  background: #c3ccd3;
  border-radius: 99px;
}
html:not(.app)::-webkit-scrollbar-thumb:hover {
  background: #9aa8b0;
}

/* Kill legacy full-header / transparent styles for our header */
.hb-site-header,
.hb-site-header.full-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  width: 100%;
  height: auto !important;
  min-height: 84px !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #ffffff !important;
  background-image: none !important;
  box-shadow: 0 1px 0 rgba(26, 43, 50, .08), 0 8px 24px rgba(26, 43, 50, .05) !important;
  border: 0 !important;
  overflow: visible !important;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.hb-site-header .top-bar,
.hb-site-header #top-bar,
.hb-topbar {
  display: none !important;
}
.hb-site-header.is-scrolled {
  background: rgba(255, 255, 255, .82) !important;
  background-image: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.78) 100%) !important;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, .55) !important;
  box-shadow: 0 12px 40px rgba(15, 35, 40, .10), inset 0 1px 0 rgba(255,255,255,.78) !important;
}
.hb-site-header.is-scrolled .hb-navbar.navbar,
.hb-site-header.is-scrolled #primary-menu.hb-navbar.navbar {
  background: transparent !important;
}
@supports not ((-webkit-backdrop-filter: blur(8px)) or (backdrop-filter: blur(8px))) {
  .hb-site-header.is-scrolled {
    background: rgba(255, 255, 255, .9) !important;
  }
}
.hb-header-cta-mobile { display: none; }

body.hb-has-fixed-header {
  padding-top: var(--hb-header-h, 84px) !important;
}

.hb-navbar.navbar,
#primary-menu.hb-navbar.navbar {
  position: relative !important;
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #ffffff !important;
  background-image: none !important;
  box-shadow: none !important;
}

.hb-navbar-inner.container,
.hb-navbar > .hb-navbar-inner {
  position: relative !important;
  width: 100% !important;
  max-width: 1280px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 16px !important;
  padding-right: 16px !important;
  background: transparent !important;
}

/*
 * Bootstrap .container clearfix (::before/::after) become GRID ITEMS and push
 * the CTA onto a second row over the hero. Disable them on the header row.
 */
.hb-navbar-inner.container:before,
.hb-navbar-inner.container:after,
.hb-navbar > .hb-navbar-inner:before,
.hb-navbar > .hb-navbar-inner:after {
  content: none !important;
  display: none !important;
}

/* ===== Desktop: 3 columns — logo | centered nav | actions (no overlap) ===== */
@media (min-width: 992px) {
  .hb-navbar-inner {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    grid-template-rows: 84px !important;
    align-items: center !important;
    column-gap: 12px !important;
    min-height: 84px !important;
    height: 84px !important;
  }

  .hb-nav-brand {
    position: relative;
    z-index: 2;
    display: flex !important;
    align-items: center;
    justify-self: start;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 84px;
    min-width: 0;
    grid-column: 1;
    grid-row: 1;
  }

  .hb-nav-toggle {
    display: none !important;
  }

  /* Middle column — flex center */
  .hb-nav-center.navbar-collapse,
  .hb-nav-center.collapse,
  .hb-nav-center.collapse.in {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
  z-index: 30;
  display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    justify-self: stretch;
    float: none !important;
    width: auto !important;
    max-width: 100% !important;
    height: 84px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    background-image: none !important;
    overflow: visible !important;
    grid-column: 2;
    grid-row: 1;
  }

  .hb-navbar .navbar-nav {
    float: none !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
    height: auto !important;
    max-width: 100%;
    background: transparent !important;
  }

  .hb-navbar .navbar-nav > li {
    float: none !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    height: auto !important;
    border: 0 !important;
    position: relative;
    flex: 0 0 auto;
    min-width: 0;
  }

  .hb-navbar .navbar-nav > li > a,
  #primary-menu.hb-navbar .navbar-nav > li > a {
    display: block !important;
    color: var(--brand-secondary) !important;
    background: transparent !important;
    line-height: 1.2 !important;
    height: auto !important;
    padding: 8px 11px !important;
    margin: 0 !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    letter-spacing: .02em;
    text-transform: uppercase;
    border: 0 !important;
    border-radius: 8px !important;
    border-bottom: 0 !important;
    white-space: nowrap !important;
    text-shadow: none !important;
    overflow: visible !important;
    text-overflow: clip !important;
    max-width: none !important;
  }

  .hb-navbar .navbar-nav > li > a:hover,
  .hb-navbar .navbar-nav > li > a:focus,
  .hb-navbar .navbar-nav > li.active > a,
  #primary-menu.hb-navbar .navbar-nav > li.active > a,
  #primary-menu.hb-navbar .navbar-nav > li > a:hover {
    color: var(--brand-primary) !important;
    background: var(--brand-primary-soft) !important;
    border-bottom-color: transparent !important;
  }

  .hb-navbar .navbar-nav > li:after,
  .hb-navbar .navbar-nav > li:hover::after,
  .hb-navbar .navbar-nav > li.active:hover::after,
  .hb-navbar .navbar-nav > li.active {
    display: none !important;
    content: none !important;
    border: 0 !important;
  }

  .hb-header-cta-desktop {
    position: relative !important;
    z-index: 2;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-end !important;
    justify-self: end;
    gap: 8px;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    height: 84px;
    min-width: 0;
    grid-column: 3;
    grid-row: 1;
  }

  .hb-header-cta-mobile {
    display: none !important;
  }

  .hb-nav-center #block-menu,
  .hb-nav-center .block:empty {
    display: none !important;
  }

  .hb-nav-center .block.main_menu_1 {
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    max-width: 100%;
  }
}

.hb-logo {
  display: flex !important;
  align-items: center;
  height: 84px !important;
  line-height: normal !important;
  padding: 0 !important;
  margin: 0 !important;
}
.hb-logo img {
  max-height: 68px !important;
  max-width: 240px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
  display: block;
}

.hb-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
}
.hb-lang-switch a {
  color: var(--brand-secondary) !important;
  text-decoration: none;
  opacity: .55;
}
.hb-lang-switch a.is-active {
  opacity: 1;
  color: var(--brand-primary) !important;
}
.hb-lang-sep { opacity: .35; color: var(--brand-secondary); }

.hb-header-cart {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #fff !important;
  color: var(--brand-secondary) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  font-size: 15px;
}
.hb-header-cart:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary) !important;
}
.hb-cart-badge {
  position: absolute;
  top: -6px;
  inset-inline-end: -6px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--brand-primary);
  color: #fff !important;
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

.hb-header-login {
  color: var(--brand-secondary) !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
  padding: 8px 10px;
  border-radius: 8px;
  background: transparent !important;
}
.hb-header-login:hover {
  color: var(--brand-primary) !important;
  background: var(--brand-primary-soft) !important;
}

.hb-header-register {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid #c5d4d8;
  border-radius: 8px;
  color: var(--brand-secondary) !important;
  background: #fff !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
  line-height: 1.2;
}
.hb-header-register:hover {
  background: var(--brand-secondary) !important;
  border-color: var(--brand-secondary);
  color: #fff !important;
}

.hb-header-start {
  display: inline-block;
  background: var(--brand-primary) !important;
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
  padding: 9px 14px;
  border-radius: 8px;
  border: 0 !important;
  box-shadow: 0 8px 18px rgba(136, 192, 56, .25);
  line-height: 1.2;
}
.hb-header-start:hover {
  background: var(--brand-primary-hover) !important;
  color: #fff !important;
}

/* Account menu */
.hb-user-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.hb-user-btn {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 2px solid #e8eef0;
  border-radius: 50%;
  background: #fff !important;
  color: var(--brand-secondary) !important;
  cursor: pointer;
  line-height: 1;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .05);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.hb-user-btn:hover,
.hb-user-menu.open .hb-user-btn {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 4px rgba(var(--brand-primary-rgb, 23, 155, 238), .16);
}
.hb-user-avatar,
.hb-user-card-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--brand-secondary-hover) 0%, var(--brand-secondary) 55%, var(--brand-primary) 130%);
  flex: 0 0 32px;
  color: #fff;
}
.hb-user-card-avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
}
.hb-user-avatar img,
.hb-user-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hb-user-initials {
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
}
.hb-user-card-avatar .hb-user-initials { font-size: 15px; }
.hb-user-drop.dropdown-menu {
  display: none;
  position: absolute !important;
  top: calc(100% + 10px) !important;
  left: auto !important;
  right: 0 !important;
  inset-inline-start: auto !important;
  inset-inline-end: 0 !important;
  width: 300px;
  min-width: 300px;
  max-width: min(300px, calc(100vw - 24px));
  margin: 0 !important;
  padding: 0 !important;
  background: #fff !important;
  border: 1px solid #e6edf0 !important;
  border-radius: 16px !important;
  box-shadow: 0 24px 48px rgba(15, 23, 42, .16), 0 2px 6px rgba(15, 23, 42, .04) !important;
  z-index: 2100;
  float: none !important;
  overflow: hidden;
  text-align: start !important;
}
html[dir="rtl"] .hb-user-drop.dropdown-menu,
.hb-site-header[dir="rtl"] .hb-user-drop.dropdown-menu,
.hb-user-drop[dir="rtl"] {
  left: 0 !important;
  right: auto !important;
  inset-inline-start: auto !important;
  inset-inline-end: 0 !important;
  direction: rtl !important;
  text-align: start !important;
}
.hb-user-drop[dir="ltr"] {
  direction: ltr !important;
  text-align: start !important;
}
.hb-user-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 14px 16px 13px;
  background: linear-gradient(180deg, #f7faf6 0%, #fff 100%);
  border-bottom: 1px solid #eef2f4;
}
.hb-user-card-meta {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: start;
  overflow: hidden;
}
.hb-user-menu.open > .hb-user-drop {
  display: block !important;
}
.hb-user-card-meta strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #12262c;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  text-align: start;
}
.hb-user-card-meta span {
  display: block;
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  direction: ltr;
  text-align: start;
  unicode-bidi: isolate;
}
.hb-user-card-meta em,
.hb-user-role {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 4px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #eef6e0;
  color: #4f7a1c;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: none;
  max-width: 100%;
}
.hb-user-role.is-admin {
  background: #e8eef2;
  color: #1f4a52;
}
.hb-user-role.is-staff {
  background: #eef2ff;
  color: #3730a3;
}
.hb-user-role.is-client {
  background: #eef6e0;
  color: #4f7a1c;
}
.hb-user-ico-admin {
  background: #e8f4fc !important;
  color: var(--brand-primary, #179BEE) !important;
}
.hb-user-nav {
  display: flex;
  flex-direction: column;
  padding: 8px;
  gap: 2px;
}
.hb-user-nav a,
.hb-user-logout {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: flex-start !important;
  gap: 10px;
  padding: 9px 10px !important;
  border-radius: 10px;
  color: #1f3b42 !important;
  font-size: 13px !important;
  font-weight: 650 !important;
  background: transparent !important;
  text-decoration: none !important;
  line-height: 1.2 !important;
  white-space: nowrap;
  text-align: start !important;
  width: 100%;
  box-sizing: border-box;
}
.hb-user-nav a span,
.hb-user-logout span {
  flex: 0 1 auto;
  text-align: start !important;
}
.hb-user-nav a:hover {
  background: #f4f8ea !important;
  color: #12262c !important;
}
.hb-user-ico {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef6e0;
  color: #5f8f22;
  flex: 0 0 30px;
}
.hb-user-ico svg {
  width: 15px;
  height: 15px;
  display: block;
}
.hb-user-logout {
  margin: 0 8px 8px;
  padding-top: 10px !important;
  border-top: 1px solid #eef2f4;
  border-radius: 10px;
  color: #b42318 !important;
  width: auto;
}
.hb-user-logout .hb-user-ico-out {
  background: #fdecea;
  color: #b42318;
}
.hb-user-logout:hover {
  background: #fdecea !important;
  color: #911d16 !important;
}

/* Dropdowns */
.hb-navbar .navbar-nav > li.dropdown > .dropdown-toggle .hb-nav-caret {
  display: inline-block;
  margin-inline-start: 4px;
  font-size: 11px;
  opacity: .7;
  line-height: 1;
  vertical-align: middle;
  transform-origin: 50% 50%;
  transition: transform .22s ease;
}
.hb-navbar .navbar-nav > li.dropdown.open > .dropdown-toggle .hb-nav-caret {
  transform: rotate(180deg);
}
.hb-navbar .navbar-nav > li.dropdown > .dropdown-menu {
  display: none !important;
  position: absolute !important;
  top: 100%;
  inset-inline-start: 0;
  inset-inline-end: auto;
  min-width: 210px;
  margin: 8px 0 0;
  padding: 8px 0;
  background: #fff !important;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(26, 43, 50, .12);
  z-index: 2050 !important;
  text-align: start;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  -webkit-transform: none !important;
  overflow: visible !important;
}
.hb-navbar .navbar-nav > li.dropdown.open > .dropdown-menu {
  display: block !important;
}
.hb-navbar .navbar-nav > li.dropdown > .dropdown-menu > li {
  height: auto !important;
  line-height: normal !important;
  float: none !important;
  width: 100% !important;
  overflow: visible !important;
  position: relative !important;
}
.hb-navbar .navbar-nav > li.dropdown > .dropdown-menu > li > a {
  display: block;
  padding: 10px 16px !important;
  color: var(--brand-secondary) !important;
  background: transparent !important;
  font-size: 13px !important;
  font-weight: 650 !important;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.3 !important;
  height: auto !important;
  border: 0 !important;
  white-space: normal !important;
}
.hb-navbar .navbar-nav > li.dropdown > .dropdown-menu > li > a:not(.hb-svc-card-mini):hover {
  background: var(--brand-primary-soft) !important;
  color: var(--brand-primary) !important;
}

/* Service mega menu — override legacy 39px item height that stacked cards */
.hb-navbar .navbar-nav > li.dropdown > .dropdown-menu.hb-svc-mega-menu {
  width: 420px;
  max-width: min(420px, 94vw);
  padding: 10px 8px 8px !important;
  background: #ffffff !important;
  border: 1px solid #e6edf0 !important;
  border-radius: 18px !important;
  box-shadow: 0 28px 60px rgba(15, 23, 42, .16) !important;
}
.hb-navbar .navbar-nav > li.dropdown.open > .dropdown-menu.hb-svc-mega-menu {
  display: flex !important;
  flex-direction: column;
  gap: 2px;
}
.hb-navbar .navbar-nav > li.dropdown > .dropdown-menu.hb-svc-mega-menu > li,
.hb-navbar .navbar-nav > li.dropdown > .dropdown-menu.hb-svc-mega-menu > .hb-svc-menu-item {
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}
.hb-navbar .navbar-nav > li.dropdown > .dropdown-menu.hb-svc-mega-menu .hb-svc-card-mini {
  padding: 14px 12px 12px !important;
  color: #0f172a !important;
  background: #fff !important;
  height: auto !important;
  min-height: 0 !important;
  line-height: 1.35 !important;
}

.hb-nav-toggle {
  border: 1px solid #d7e2e5 !important;
  border-radius: 8px !important;
  margin: 16px 0 !important;
  padding: 9px 10px !important;
  background: #fff !important;
  float: right;
}
.hb-nav-toggle .icon-bar {
  background: var(--brand-secondary) !important;
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 1px;
  margin: 4px 0;
}

.hb-site-header ~ .floating {
  display: none !important;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hb-navbar-inner {
    column-gap: 8px !important;
  }
  .hb-navbar .navbar-nav > li > a,
  #primary-menu.hb-navbar .navbar-nav > li > a {
    padding: 7px 7px !important;
    font-size: 11.5px !important;
  }
  .hb-header-start { padding: 8px 12px !important; font-size: 12px !important; }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .hb-navbar .navbar-nav > li > a,
  #primary-menu.hb-navbar .navbar-nav > li > a {
    padding: 8px 9px !important;
  }
}

/* ===== Mobile ===== */
@media (max-width: 991px) {
  .hb-site-header {
    max-height: 100dvh !important;
    overflow: hidden !important;
  }
  .hb-navbar-inner {
    display: block !important;
    min-height: 64px;
    height: auto !important;
    max-height: 100dvh;
  }
  .hb-nav-brand {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    float: none !important;
  }
  html[dir="rtl"] .hb-nav-toggle,
  html.hb-rtl .hb-nav-toggle {
    float: left;
    order: -1;
  }
  .hb-logo { height: 72px !important; }
  .hb-logo img { max-height: 54px !important; max-width: 200px !important; }

  .hb-nav-center.navbar-collapse {
    position: static !important;
    transform: none !important;
    left: auto !important;
    float: none !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    display: none !important;
    background: #fff !important;
    border-top: 1px solid #eef2f4 !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .hb-nav-center.navbar-collapse.in,
  .hb-nav-center.navbar-collapse.collapsing {
    display: flex !important;
    flex-direction: column !important;
    max-height: calc(100dvh - 64px);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .hb-navbar .navbar-nav {
    display: block !important;
    float: none !important;
    width: 100%;
    margin: 0 !important;
    flex: 1 1 auto;
  }
  .hb-navbar .navbar-nav > li {
    float: none !important;
    height: auto !important;
    margin: 0 !important;
    border-bottom: 1px solid #f1f5f9;
  }
  .hb-navbar .navbar-nav > li > a,
  #primary-menu.hb-navbar .navbar-nav > li > a {
    color: var(--brand-secondary) !important;
    background: transparent !important;
    line-height: 1.3 !important;
    height: auto !important;
    padding: 11px 8px !important;
    white-space: normal;
  }
  .hb-header-cta-mobile {
    display: flex !important;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    padding: 12px 4px 14px;
    margin-top: 0;
    border-top: 1px solid #eef2f4;
    position: sticky;
    bottom: 0;
    background: #fff;
    z-index: 3;
  }
  .hb-header-cta-mobile .hb-locale-triggers {
    width: auto !important;
    margin-inline-end: auto;
  }
  .hb-header-cta-mobile .hb-locale-chip {
    height: 38px;
  }
  .hb-header-cta-mobile .hb-header-cart,
  .hb-header-cta-mobile .hb-user-btn,
  .hb-header-cta-mobile .hb-user-menu {
    flex: 0 0 auto;
  }
  .hb-header-cta-mobile .hb-header-login,
  .hb-header-cta-mobile .hb-header-register {
    padding: 8px 10px;
    font-size: 12px;
  }
  .hb-header-cta-mobile .hb-header-start {
    flex: 1 1 100%;
    width: 100%;
    text-align: center;
    order: 20;
  }
  .hb-header-cta-mobile .hb-user-menu.open {
    position: static;
  }
  .hb-navbar .navbar-nav > li.dropdown > .dropdown-menu,
  .hb-navbar .navbar-nav > li.dropdown:hover > .dropdown-menu,
  .hb-navbar .navbar-nav > li.dropdown:hover > .dropdown-menu.hb-svc-mega-menu {
    position: static !important;
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    box-shadow: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    display: none !important;
    margin: 0 !important;
  }
  .hb-navbar .navbar-nav > li.dropdown.open > .dropdown-menu,
  .hb-navbar .navbar-nav > li.dropdown.open:hover > .dropdown-menu {
    display: block !important;
    background: #f8fafb !important;
    padding: 4px 8px 10px !important;
  }
  .hb-navbar .navbar-nav > li.dropdown.open > .dropdown-menu.hb-svc-mega-menu,
  .hb-navbar .navbar-nav > li.dropdown.open:hover > .dropdown-menu.hb-svc-mega-menu {
    display: flex !important;
    flex-direction: column;
  }
  .hb-navbar .navbar-nav > li.has-dropdown > a:after,
  .hb-navbar li.dropdown-submenu > a:after {
    content: none !important;
    display: none !important;
  }
  .hb-navbar .navbar-nav > li.dropdown > a,
  #primary-menu.hb-navbar .navbar-nav > li.dropdown > a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-size: 15px !important;
    font-weight: 700 !important;
  }
  .hb-navbar .navbar-nav > li.dropdown > .dropdown-toggle .hb-nav-caret {
    font-size: 16px;
    opacity: .85;
  }
  .hb-navbar li.open > a,
  .hb-navbar li.open a,
  .hb-navbar li.open a:hover,
  .hb-navbar li.open a:focus {
    color: var(--brand-secondary) !important;
    background: transparent !important;
    border: 0 !important;
    line-height: 1.35 !important;
  }
  .hb-nav-toggle .icon-bar {
    transition: transform .18s ease, opacity .18s ease;
  }
  .hb-nav-toggle[aria-expanded="true"] .icon-bar:nth-child(2) {
    transform: translateY(6px) rotate(45deg);
  }
  .hb-nav-toggle[aria-expanded="true"] .icon-bar:nth-child(3) {
    opacity: 0;
  }
  .hb-nav-toggle[aria-expanded="true"] .icon-bar:nth-child(4) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .container > .navbar-collapse.hb-nav-center,
  .hb-nav-center.navbar-collapse {
    background: #fff !important;
  }
}
