@font-face {
  font-family: "MontserratHeader";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../landing-ni/fonts/Montserrat-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "MontserratHeader";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../landing-ni/fonts/Montserrat-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "MontserratHeader";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../landing-ni/fonts/Montserrat-SemiBold.ttf") format("truetype");
}

:root {
  --site-header-height: 92px;
  --site-header-ink: #3f3638;
  --site-header-muted: #786f70;
  --site-header-green: #75b95b;
  --site-header-green-dark: #579840;
  --site-header-green-pale: #f0f8ed;
  --site-header-line: #e9e0dc;
  --site-header-surface: rgba(255, 255, 255, 0.94);
}

body.site-header-v2-active:not(.transparent-menu) {
  padding-top: var(--site-header-height) !important;
}

body.transparent-menu .site-header-v2.fixed-top {
  position: fixed;
}

body.site-header-v2-active {
  overflow-x: clip;
}

body .site-header-v2 {
  z-index: 1045;
  min-height: var(--site-header-height);
  padding: 0;
  color: var(--site-header-ink);
  background: var(--site-header-surface);
  border-bottom: 1px solid rgba(225, 216, 211, 0.86);
  box-shadow: 0 10px 38px rgba(62, 52, 54, 0.07);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
  backdrop-filter: blur(20px) saturate(145%);
  font-family: "MontserratHeader", Montserrat, Arial, sans-serif;
  transition: min-height 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

body .site-header-v2.site-header-v2 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

body.transparent-menu:not(.scrolled) .site-header-v2.site-header-v2 {
  background: var(--site-header-surface);
  border-bottom: 1px solid rgba(225, 216, 211, 0.86);
  box-shadow: 0 10px 38px rgba(62, 52, 54, 0.07);
}

body.transparent-menu:not(.scrolled) .site-header-v2 .site-header-v2__nav > .nav-item:not(.contact-item) > .nav-link {
  color: var(--site-header-ink);
}

body.scrolled .site-header-v2 {
  min-height: 78px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 14px 42px rgba(62, 52, 54, 0.11);
  animation: none;
}

body .site-header-v2__inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  min-height: inherit;
  margin: 0 auto;
  padding: 0 34px;
  gap: 22px;
}

body .site-header-v2__brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  width: 184px;
  margin: 0;
  padding: 0;
}

body .site-header-v2__brand .i-logo {
  display: block;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 243 / 59;
  background-image: url("/wp-content/uploads/2025/03/logo.svg") !important;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}

body .site-header-v2__panel {
  flex: 1 1 auto;
  min-width: 0;
}

body .site-header-v2__panel-header,
body .site-header-v2__menu-cta,
body .site-header-v2__panel-note {
  display: none;
}

body .site-header-v2__panel-body {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 0;
  overflow: visible;
}

body .site-header-v2__nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  min-width: 0;
  margin-left: auto;
  gap: 2px;
}

body .site-header-v2__nav > .nav-item:not(.contact-item) > .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 10px !important;
  color: var(--site-header-ink);
  border-radius: 12px;
  font-size: clamp(12px, 0.92vw, 14px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

body .site-header-v2__nav > .nav-item:not(.contact-item) > .nav-link::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 4px;
  left: 10px;
  height: 2px;
  border-radius: 2px;
  background: var(--site-header-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

body .site-header-v2__nav > .nav-item:not(.contact-item) > .nav-link:hover,
body .site-header-v2__nav > .nav-item:not(.contact-item) > .nav-link:focus-visible,
body .site-header-v2__nav > .current-menu-item:not(.contact-item) > .nav-link,
body .site-header-v2__nav > .current-menu-ancestor:not(.contact-item) > .nav-link {
  color: var(--site-header-green-dark);
  background: rgba(117, 185, 91, 0.08);
}

body .site-header-v2__nav > .nav-item:not(.contact-item) > .nav-link:hover::after,
body .site-header-v2__nav > .nav-item:not(.contact-item) > .nav-link:focus-visible::after,
body .site-header-v2__nav > .current-menu-item:not(.contact-item) > .nav-link::after,
body .site-header-v2__nav > .current-menu-ancestor:not(.contact-item) > .nav-link::after {
  transform: scaleX(1);
}

body .site-header-v2 .contact-item {
  margin-left: 6px;
}

body .site-header-v2 .contact-item + .contact-item {
  margin-left: 6px;
}

body .site-header-v2 .contact-item .nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px !important;
  color: var(--site-header-ink);
  background: #f7f5f2;
  border: 1px solid var(--site-header-line);
  border-radius: 13px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

body .site-header-v2 .contact-item .nav-link:hover,
body .site-header-v2 .contact-item .nav-link:focus-visible {
  color: var(--site-header-green-dark);
  background: var(--site-header-green-pale);
  border-color: rgba(117, 185, 91, 0.45);
  transform: translateY(-1px);
}

body .site-header-v2 .contact-item .nav-link::before {
  flex: 0 0 auto;
  margin-right: 8px;
}

body .site-header-v2 .contact-item.c-phone .nav-link::before {
  background-image: url("../images/h-phone-blue.svg");
}

body .site-header-v2__desktop-cta,
body .site-header-v2__menu-cta {
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  background: var(--site-header-green);
  border: 1px solid var(--site-header-green);
  border-radius: 14px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(91, 157, 67, 0.2);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

body .site-header-v2__desktop-cta {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0 18px;
}

body .site-header-v2__desktop-cta svg,
body .site-header-v2__menu-cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

body .site-header-v2__desktop-cta:hover,
body .site-header-v2__desktop-cta:focus-visible,
body .site-header-v2__menu-cta:hover,
body .site-header-v2__menu-cta:focus-visible {
  color: #fff;
  background: var(--site-header-green-dark);
  border-color: var(--site-header-green-dark);
  box-shadow: 0 14px 30px rgba(91, 157, 67, 0.28);
  transform: translateY(-1px);
}

body .site-header-v2__desktop-cta:hover svg,
body .site-header-v2__desktop-cta:focus-visible svg,
body .site-header-v2__menu-cta:hover svg,
body .site-header-v2__menu-cta:focus-visible svg {
  transform: translateX(3px);
}

body .site-header-v2__toggle {
  display: none;
}

body .site-header-v2 .block-mobile-contacts {
  display: none;
}

body .site-header-v2 a:focus-visible,
body .site-header-v2 button:focus-visible {
  outline: 3px solid rgba(117, 185, 91, 0.35);
  outline-offset: 3px;
}

@media (max-width: 1499px) and (min-width: 1200px) {
  body .site-header-v2__inner {
    padding-right: 22px;
    padding-left: 22px;
    gap: 12px;
  }

  body .site-header-v2__brand {
    width: 160px;
  }

  body .site-header-v2__nav > .nav-item:not(.contact-item) > .nav-link {
    padding-right: 7px !important;
    padding-left: 7px !important;
    font-size: 12px;
  }

  body .site-header-v2 .contact-item.c-max .nav-link,
  body .site-header-v2 .contact-item.c-tg .nav-link {
    width: 42px;
    padding: 0 !important;
    overflow: hidden;
    color: transparent;
    font-size: 0;
  }

  body .site-header-v2 .contact-item.c-max .nav-link::before,
  body .site-header-v2 .contact-item.c-tg .nav-link::before {
    margin-right: 0;
  }

  body .site-header-v2__desktop-cta {
    padding-right: 13px;
    padding-left: 13px;
    font-size: 12px;
  }
}

@media (max-width: 1199.98px) {
  :root {
    --site-header-height: 76px;
  }

  body .site-header-v2,
  body.scrolled .site-header-v2 {
    min-height: var(--site-header-height);
  }

  body .site-header-v2__inner {
    padding-right: 18px;
    padding-left: 18px;
    gap: 12px;
  }

  body .site-header-v2__brand {
    width: 148px;
  }

  body .site-header-v2__panel {
    width: min(430px, 100vw);
    max-width: 100%;
    color: var(--site-header-ink);
    background:
      radial-gradient(circle at 100% 0, rgba(117, 185, 91, 0.16), transparent 280px),
      #fbfaf8;
    border-left: 1px solid var(--site-header-line);
    box-shadow: -24px 0 60px rgba(62, 52, 54, 0.14);
  }

  body .site-header-v2__panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 106px;
    padding: 26px 28px 22px;
    border-bottom: 1px solid var(--site-header-line);
  }

  body .site-header-v2__panel-eyebrow {
    display: block;
    margin-bottom: 5px;
    color: var(--site-header-green-dark);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  body .site-header-v2 .offcanvas-title {
    display: block;
    margin: 0;
    color: var(--site-header-ink);
    font-family: "MontserratHeader", Montserrat, Arial, sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.03em;
    text-transform: none;
  }

  body .site-header-v2__close {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;
    background-color: #fff;
    background-size: 13px;
    border: 1px solid var(--site-header-line);
    border-radius: 50%;
    opacity: 1;
    box-shadow: 0 8px 22px rgba(62, 52, 54, 0.08);
  }

  body .site-header-v2__panel-body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: calc(100vh - 106px);
    height: calc(100dvh - 106px);
    padding: 12px 28px 28px;
    overflow-y: auto;
  }

  body .site-header-v2__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    width: 100%;
    margin: 0;
    gap: 0 10px;
  }

  body .site-header-v2__nav > .nav-item:not(.contact-item) {
    grid-column: 1 / -1;
    margin: 0;
    border-bottom: 1px solid var(--site-header-line);
  }

  body .site-header-v2__nav > .nav-item:not(.contact-item) > .nav-link {
    min-height: 57px;
    padding: 0 !important;
    color: var(--site-header-ink);
    background: transparent;
    border-radius: 0;
    font-size: 15px;
    font-weight: 500;
  }

  body .site-header-v2__nav > .nav-item:not(.contact-item) > .nav-link::before {
    content: "";
    width: 6px;
    height: 6px;
    margin-right: 12px;
    background: #d8d1cd;
    border-radius: 50%;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  body .site-header-v2__nav > .nav-item:not(.contact-item) > .nav-link::after {
    content: "↗";
    position: static;
    width: auto;
    height: auto;
    margin-left: auto;
    color: #a59b9c;
    background: transparent;
    font-size: 16px;
    transform: none;
  }

  body .site-header-v2__nav > .nav-item:not(.contact-item) > .nav-link:hover,
  body .site-header-v2__nav > .nav-item:not(.contact-item) > .nav-link:focus-visible,
  body .site-header-v2__nav > .current-menu-item:not(.contact-item) > .nav-link,
  body .site-header-v2__nav > .current-menu-ancestor:not(.contact-item) > .nav-link {
    color: var(--site-header-green-dark);
    background: transparent;
  }

  body .site-header-v2__nav > .nav-item:not(.contact-item) > .nav-link:hover::before,
  body .site-header-v2__nav > .nav-item:not(.contact-item) > .nav-link:focus-visible::before,
  body .site-header-v2__nav > .current-menu-item:not(.contact-item) > .nav-link::before,
  body .site-header-v2__nav > .current-menu-ancestor:not(.contact-item) > .nav-link::before {
    background: var(--site-header-green);
    transform: scale(1.35);
  }

  body .site-header-v2__nav > .contact-item {
    grid-column: auto;
    margin: 18px 0 0;
  }

  body .site-header-v2__nav > .contact-item + .contact-item {
    margin: 18px 0 0;
  }

  body .site-header-v2__nav > .contact-item.c-phone {
    grid-column: 1 / -1;
  }

  body .site-header-v2 .contact-item .nav-link {
    width: 100%;
    height: 48px;
    padding: 0 14px !important;
    color: var(--site-header-ink);
    background: #fff;
    border-color: var(--site-header-line);
    border-radius: 14px;
    font-size: 12px;
    font-weight: 600;
  }

  body .site-header-v2__nav > .contact-item.c-phone .nav-link {
    justify-content: flex-start;
    font-size: 15px;
  }

  body .site-header-v2__nav > .contact-item.c-max .nav-link,
  body .site-header-v2__nav > .contact-item.c-tg .nav-link {
    font-size: 0;
  }

  body .site-header-v2__nav > .contact-item.c-max .nav-link::after,
  body .site-header-v2__nav > .contact-item.c-tg .nav-link::after {
    font-size: 12px;
  }

  body .site-header-v2__nav > .contact-item.c-max .nav-link::after {
    content: "Max";
  }

  body .site-header-v2__nav > .contact-item.c-tg .nav-link::after {
    content: "Telegram";
  }

  body .site-header-v2__nav > .contact-item .nav-link::before {
    margin-right: 8px;
  }

  body .site-header-v2__menu-cta {
    display: flex;
    flex: 0 0 auto;
    min-height: 54px;
    margin-top: 24px;
    padding: 0 20px;
    border-radius: 15px;
    font-size: 14px;
  }

  body .site-header-v2__panel-note {
    display: block;
    margin: auto 0 0;
    padding-top: 28px;
    color: var(--site-header-muted);
    font-size: 11px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    text-align: center;
  }

  body .site-header-v2__desktop-cta {
    display: none;
  }

  body .site-header-v2__toggle {
    position: relative;
    z-index: 2;
    display: inline-flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;
    gap: 5px;
    background: #f7f5f2;
    border: 1px solid var(--site-header-line);
    border-radius: 13px;
    box-shadow: none;
  }

  body .site-header-v2__toggle span {
    display: block;
    width: 19px;
    height: 1.5px;
    background: var(--site-header-ink);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  body .site-header-v2__toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  body .site-header-v2__toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  body .site-header-v2__toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  body .site-header-v2 .block-mobile-contacts {
    display: flex;
    align-items: center;
    order: 2;
    margin: 0 0 0 auto;
    padding: 0;
    gap: 7px;
  }

  body .site-header-v2 .block-mobile-contacts .contact-item,
  body .site-header-v2 .block-mobile-contacts .contact-item + .contact-item {
    margin: 0;
  }

  body .site-header-v2 .block-mobile-contacts .nav-link {
    width: 38px;
    min-width: 38px;
    height: 38px;
    padding: 0 !important;
    overflow: hidden;
    color: transparent;
    background: #f7f5f2;
    border: 1px solid var(--site-header-line);
    border-radius: 12px;
    font-size: 0;
  }

  body .site-header-v2 .block-mobile-contacts .nav-link::before {
    width: 22px;
    height: 22px;
    margin: 0;
  }

  body .site-header-v2 .block-mobile-contacts .c-phone .nav-link::before {
    width: 16px;
    height: 16px;
  }

  body .site-header-v2__brand {
    order: 1;
  }

  body .site-header-v2__panel {
    order: 4;
  }

  body .site-header-v2__toggle {
    order: 3;
  }

  body .offcanvas-backdrop.show {
    z-index: 1040;
    background: #2f292a;
    opacity: 0.42;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
  }
}

@media (max-width: 575.98px) {
  :root {
    --site-header-height: 70px;
  }

  body .site-header-v2__inner {
    padding-right: 12px;
    padding-left: 12px;
    gap: 8px;
  }

  body .site-header-v2__brand {
    width: 116px;
  }

  body .site-header-v2__toggle {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  body .site-header-v2 .block-mobile-contacts {
    gap: 5px;
  }

  body .site-header-v2 .block-mobile-contacts .nav-link {
    width: 34px;
    min-width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  body .site-header-v2 .block-mobile-contacts .nav-link::before {
    width: 20px;
    height: 20px;
  }

  body .site-header-v2 .block-mobile-contacts .c-phone .nav-link::before {
    width: 15px;
    height: 15px;
  }

  body .site-header-v2__panel-header {
    min-height: 96px;
    padding: 23px 22px 19px;
  }

  body .site-header-v2__panel-body {
    height: calc(100vh - 96px);
    height: calc(100dvh - 96px);
    padding: 8px 22px 22px;
  }

  body .site-header-v2 .offcanvas-title {
    font-size: 25px;
  }

  body .site-header-v2__nav > .nav-item:not(.contact-item) > .nav-link {
    min-height: 54px;
    font-size: 14px;
  }
}

@media (max-width: 359px) {
  body .site-header-v2__brand {
    width: 104px;
  }

  body .site-header-v2 .block-mobile-contacts .c-max {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body .site-header-v2,
  body .site-header-v2 *,
  body .site-header-v2 *::before,
  body .site-header-v2 *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Compact service header used by floor and storage selectors. */
body .site-selector-header-v2 {
  position: relative;
  z-index: 5;
  min-height: 92px;
  padding: 14px 0;
  color: var(--site-header-ink);
  background:
    radial-gradient(circle at 78% -120%, rgba(117, 185, 91, 0.16), transparent 340px),
    rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--site-header-line);
  box-shadow: 0 10px 34px rgba(62, 52, 54, 0.07);
  font-family: "MontserratHeader", Montserrat, Arial, sans-serif;
}

body .site-selector-header-v2 .container-fluid {
  max-width: 1600px;
  padding-right: 32px;
  padding-left: 32px;
}

body .site-selector-header-v2 .logo img {
  display: block;
  width: 180px;
  height: auto;
}

body .site-selector-header-v2 .title {
  margin: 0;
  color: var(--site-header-ink);
  font-family: "MontserratHeader", Montserrat, Arial, sans-serif;
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.035em;
  text-transform: none;
}

body .site-selector-header-v2 .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  width: auto;
  padding: 0 20px;
  color: #fff;
  background: var(--site-header-green);
  border: 1px solid var(--site-header-green);
  border-radius: 14px;
  font-family: "MontserratHeader", Montserrat, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(91, 157, 67, 0.2);
}

body .site-selector-header-v2 .btn:hover,
body .site-selector-header-v2 .btn:focus-visible {
  color: #fff;
  background: var(--site-header-green-dark);
  border-color: var(--site-header-green-dark);
}

body .site-selector-header-v2 .close {
  display: inline-flex;
  align-items: center;
  margin-left: 16px;
  padding: 0;
  color: var(--site-header-muted);
  background: transparent;
  border: 0;
  text-decoration: none;
}

body .site-selector-header-v2 .close .text {
  position: static;
  display: block;
  margin-right: 10px;
  color: var(--site-header-muted);
  font-size: 10px;
  line-height: 1.25;
  text-align: right;
  transform: none;
}

body .site-selector-header-v2 .close .img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  background: #f7f5f2;
  border: 1px solid var(--site-header-line);
  border-radius: 13px;
}

body .site-selector-header-v2 .close .img img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: grayscale(1) brightness(0.38);
}

@media (max-width: 1199.98px) {
  body .site-selector-header-v2 {
    min-height: 82px;
    padding: 12px 0;
  }

  body .site-selector-header-v2 .container-fluid {
    padding-right: 20px;
    padding-left: 20px;
  }

  body .site-selector-header-v2 .logo img {
    width: 150px;
  }

  body .site-selector-header-v2 .title {
    margin-top: 14px;
    font-size: 25px;
  }

  body .site-selector-header-v2 .btn {
    min-height: 42px;
    padding: 0 15px;
    font-size: 12px;
  }

  body .site-selector-header-v2 .close {
    margin-left: 10px;
  }
}

@media (max-width: 767.98px) {
  body .site-selector-header-v2 {
    padding: 10px 0 13px;
  }

  body .site-selector-header-v2 .container-fluid {
    padding-right: 14px;
    padding-left: 14px;
  }

  body .site-selector-header-v2 .logo img {
    width: 116px;
  }

  body .site-selector-header-v2 .title {
    margin-top: 12px;
    font-size: 22px;
    line-height: 1.2;
  }

  body .site-selector-header-v2 .btn {
    display: none;
  }

  body .site-selector-header-v2 .close .text {
    display: none;
  }

  body .site-selector-header-v2 .close .img {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
}

/* Specificity bridge for the legacy floor-selector stylesheet. */
body .block.site-selector-header-v2.site-selector-header-v2 .title {
  color: var(--site-header-ink) !important;
  font-family: "MontserratHeader", Montserrat, Arial, sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: -0.035em;
  text-transform: none !important;
}

body .block.site-selector-header-v2.site-selector-header-v2 .btn {
  color: #fff !important;
  background: var(--site-header-green) !important;
  border-color: var(--site-header-green) !important;
  border-radius: 14px !important;
  font-family: "MontserratHeader", Montserrat, Arial, sans-serif !important;
  font-weight: 600 !important;
  text-transform: none !important;
}

body .block.site-selector-header-v2.site-selector-header-v2 .close {
  align-items: center;
  margin-left: 16px;
}

body .block.site-selector-header-v2.site-selector-header-v2 .close .text {
  position: static !important;
  display: block;
  margin-right: 10px;
  color: var(--site-header-muted) !important;
  font-family: "MontserratHeader", Montserrat, Arial, sans-serif;
  font-size: 10px !important;
  line-height: 1.25 !important;
  text-align: right;
  transform: none !important;
}

body .block.site-selector-header-v2.site-selector-header-v2 .close .img {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 44px !important;
  height: 44px !important;
  margin: 0 !important;
  background: #f7f5f2 !important;
  border: 1px solid var(--site-header-line);
  border-radius: 13px !important;
}

body .block.site-selector-header-v2.site-selector-header-v2 .close .img img {
  width: 16px !important;
  height: 16px !important;
  filter: grayscale(1) brightness(0.38);
}

@media (max-width: 767.98px) {
  body .block.site-selector-header-v2.site-selector-header-v2 .close .text {
    display: none;
  }

  body .block.site-selector-header-v2.site-selector-header-v2 .close .img {
    width: 40px !important;
    height: 40px !important;
    border-radius: 12px !important;
  }
}

/* Win over legacy offcanvas rules without changing the rest of the theme. */
@media (max-width: 1199.98px) {
  body .site-header-v2 .site-header-v2__panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    display: flex;
    flex-direction: column;
    width: min(430px, 100vw);
    height: 100vh !important;
    height: 100dvh !important;
    max-height: none;
    margin: 0;
    overflow: hidden;
    overscroll-behavior: contain;
  }

  body .site-header-v2 .site-header-v2__panel-header {
    display: flex;
    flex: 0 0 auto;
    min-height: 106px;
    margin: 0;
    padding: 26px 28px 22px;
  }

  body .site-header-v2 .site-header-v2__panel-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    height: auto;
    margin: 0;
    padding: 12px 28px 28px;
    overflow-x: hidden;
    overflow-y: auto;
  }

  body .site-header-v2 .site-header-v2__nav {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    width: 100%;
    margin: 0;
    padding: 0;
    gap: 0 10px;
  }

  body .site-header-v2 .site-header-v2__nav > .nav-item:not(.contact-item) {
    display: block;
    grid-column: 1 / -1;
    margin: 0;
  }

  body .site-header-v2 .site-header-v2__nav > .nav-item:not(.contact-item) > .nav-link {
    min-height: 57px;
    margin: 0;
    padding: 0 !important;
  }

  body .site-header-v2 .site-header-v2__nav > .contact-item,
  body .site-header-v2 .site-header-v2__nav > .contact-item + .contact-item {
    display: block;
    grid-column: auto;
    margin: 18px 0 0;
  }

  body .site-header-v2 .site-header-v2__nav > .contact-item.c-phone {
    grid-column: 1 / -1;
  }

  body .site-header-v2 .site-header-v2__nav > .contact-item .nav-link {
    margin: 0;
    color: var(--site-header-ink);
    background: #fff !important;
    border-color: var(--site-header-line);
  }

  body .site-header-v2 .site-header-v2__panel .site-header-v2__panel-body .site-header-v2__nav > .contact-item .nav-link {
    background: #fff !important;
  }

  body .site-header-v2 .offcanvas-title {
    display: block !important;
  }

  body .site-header-v2 .site-header-v2__close {
    position: relative;
    background-image: none !important;
  }

  body .site-header-v2 .site-header-v2__close::before,
  body .site-header-v2 .site-header-v2__close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 17px;
    height: 1.5px;
    background: var(--site-header-ink);
    border-radius: 2px;
  }

  body .site-header-v2 .site-header-v2__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  body .site-header-v2 .site-header-v2__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  body .site-header-v2 .site-header-v2__menu-cta {
    display: flex;
  }

  body .site-header-v2 .site-header-v2__panel-note {
    display: block;
  }
}

@media (max-width: 575.98px) {
  body .site-header-v2 .site-header-v2__panel-header {
    min-height: 96px;
    padding: 23px 22px 19px;
  }

  body .site-header-v2 .site-header-v2__panel-body {
    padding: 8px 22px 22px;
  }

  body .site-header-v2 .site-header-v2__nav > .nav-item:not(.contact-item) > .nav-link {
    min-height: 54px;
  }
}
