.ot-site-header {
  --oth-green: var(--e-global-color-accent, #52A43E);
  --oth-dark: var(--e-global-color-bcb2267, #22331E);
  --oth-text: #111;
  --oth-border: var(--e-global-color-685d91f, #ececec);
  --oth-soft: #f7faf7;
  position: sticky;
  top: 0;
  z-index: 9990;
  background: #fff;
  color: var(--oth-text);
  font-family: "Poppins", sans-serif;
}

body.admin-bar .ot-site-header {
  top: 32px;
}

.ot-site-header * {
  box-sizing: border-box;
}

.ot-site-header *,
.ot-site-header *::before,
.ot-site-header *::after {
  border-radius: 0 !important;
}

.ot-site-header a {
  color: inherit;
  text-decoration: none;
}

.ot-site-header__inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.ot-site-header__top {
  background: var(--oth-green);
  color: #fff;
  font-size: 14px;
}

.ot-site-header__top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 42px;
  gap: 24px;
}

.ot-site-header__group,
.ot-site-header__contact,
.ot-site-header__contact a {
  display: flex;
  align-items: center;
}

.ot-site-header__group {
  gap: 14px;
  min-width: max-content;
}

.ot-site-header__group img {
  width: 82px;
  height: auto;
  display: block;
}

.ot-site-header__contact {
  justify-content: flex-end;
  gap: 22px;
}

.ot-site-header__contact a {
  gap: 8px;
  white-space: nowrap;
  font-weight: 400;
}

.ot-site-header svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.ot-site-header img {
  max-width: 100%;
}

.ot-site-header__main {
  position: relative;
  background: #fff;
  border-bottom: 1px solid var(--oth-border);
  box-shadow: 0 4px 18px rgba(0, 0, 0, .04);
}

.ot-site-header__main-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
}

.ot-site-header__logo img {
  display: block;
  width: 226px;
  height: auto;
}

.ot-site-header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
}

.ot-site-header__nav > a,
.ot-site-header .ot-site-header__products-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #111;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 400;
  padding: 0;
  white-space: nowrap;
  box-shadow: none !important;
  outline: 0;
  appearance: none;
}

.ot-site-header__nav > a:hover,
.ot-site-header__nav > a:focus,
.ot-site-header__products-button:hover,
.ot-site-header__products-button:focus,
.ot-site-header__products.is-open .ot-site-header__products-button {
  color: var(--oth-green);
  background: transparent;
  border: 0;
  box-shadow: none !important;
  outline: 0;
}

.ot-site-header .ot-site-header__products-button svg {
  width: 17px;
  height: 17px;
  transition: transform .18s ease;
}

.ot-site-header__products.is-open .ot-site-header__products-button svg {
  transform: rotate(180deg);
}

.ot-site-header__products {
  position: static;
}

.ot-site-header__mega {
  position: absolute;
  left: 50%;
  top: calc(100% - 1px);
  width: 676px;
  max-width: calc(100vw - 48px);
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .16s ease, visibility .16s ease;
  z-index: 20;
}

.ot-site-header__products.is-open .ot-site-header__mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%);
}

.ot-site-header__mega-inner {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 20px;
  padding: 12px;
  border: 1px solid #e7eaef;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
}

.ot-site-header__mega-list {
  display: grid;
  gap: 8px;
  padding-right: 16px;
  border-right: 1px solid #edeff2;
}

.ot-site-header__mega-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: #111;
  transition: background-color .16s ease, transform .16s ease;
}

.ot-site-header__mega-item:hover,
.ot-site-header__mega-item.is-active {
  background: var(--oth-soft);
  transform: translateY(-1px);
}

.ot-site-header__mega-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  background: #f2f4f6;
  overflow: hidden;
}

.ot-site-header__mega-icon img,
.ot-site-header__mobile-products img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.ot-site-header__mega-item strong,
.ot-site-header__mobile-products strong {
  display: block;
  color: #111;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.15;
}

.ot-site-header__mega-item em,
.ot-site-header__mobile-products em {
  display: block;
  color: #666;
  font-style: normal;
  font-size: 12px;
  line-height: 1.2;
}

.ot-site-header__mega-preview {
  background: #fafcf8;
  padding: 14px;
}

.ot-site-header__mega-preview img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
  background: #f1f3f5;
}

.ot-site-header__mega-preview h3 {
  margin: 12px 0 8px;
  color: #111;
  font-size: 22px;
  line-height: 1.2;
}

.ot-site-header__mega-preview ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ot-site-header__mega-preview li {
  position: relative;
  padding-left: 16px;
  color: #222;
  font-size: 14px;
  line-height: 1.35;
}

.ot-site-header__mega-preview li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .52em;
  width: 7px;
  height: 7px;
  border-radius: 0;
  background: var(--oth-green);
}

.ot-site-header__mega-all {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  background: var(--oth-green);
  color: #fff !important;
  font-weight: 700;
  transition: background-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.ot-site-header__mega-all:hover,
.ot-site-header__mega-all:focus {
  background: var(--oth-dark);
  color: #fff !important;
  box-shadow: inset 0 -3px 0 rgba(82, 164, 62, .45);
}

.ot-site-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ot-site-header__icon-link,
.ot-site-header .ot-site-header__icon-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #111;
  padding: 0;
  box-shadow: none;
  appearance: none;
  transition: background-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.ot-site-header__icon-link img,
.ot-site-header .ot-site-header__icon-button img {
  width: 22px;
  height: 22px;
  display: block;
}

.ot-site-header .ot-site-header__icon-button:hover,
.ot-site-header .ot-site-header__icon-button:focus,
.ot-site-header__icon-link:hover,
.ot-site-header__icon-link:focus {
  background: #edf6eb;
  color: var(--oth-dark);
  border: 0;
  box-shadow: inset 0 -2px 0 var(--oth-green);
  transform: translateY(-1px);
}

.ot-site-header__icon-link span {
  position: absolute;
  top: 3px;
  right: -8px;
  display: grid;
  place-items: center;
  min-width: 19px;
  height: 19px;
  padding: 0 5px 1px;
  border: 2px solid #fff;
  border-radius: 50% !important;
  background: var(--oth-green);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  z-index: 1;
}

.ot-site-header__sample,
.ot-site-header__mobile-sample {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 32px;
  background: var(--oth-green);
  color: #fff !important;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: background-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.ot-site-header__sample:hover,
.ot-site-header__sample:focus,
.ot-site-header__mobile-sample:hover,
.ot-site-header__mobile-sample:focus {
  background: var(--oth-dark);
  box-shadow: inset 0 -3px 0 var(--oth-green);
  transform: translateY(-1px);
}

.ot-site-header .ot-site-header__burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
  color: #111;
  box-shadow: none;
  appearance: none;
}

.ot-site-header .ot-site-header__burger:hover,
.ot-site-header .ot-site-header__burger:focus {
  background: transparent;
  color: #111;
  border: 0;
  box-shadow: none;
}

.ot-site-header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  background: #111;
  transition: transform .18s ease, opacity .18s ease;
}

.ot-site-header.is-mobile-open .ot-site-header__burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.ot-site-header.is-mobile-open .ot-site-header__burger span:nth-child(2) {
  opacity: 0;
}

.ot-site-header.is-mobile-open .ot-site-header__burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.ot-site-header__search-panel,
.ot-site-header__mobile {
  display: none;
}

.ot-site-header.is-search-open .ot-site-header__search-panel {
  display: block;
}

.ot-site-header__search-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  padding: 18px 0 22px;
  background: #fff;
  border-bottom: 1px solid var(--oth-border);
  box-shadow: 0 20px 34px rgba(0, 0, 0, .09);
}

.ot-site-header__search-inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.ot-site-header__search-form,
.ot-site-header__mobile-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  align-items: center;
  min-height: 54px;
  border: 1px solid var(--oth-green);
  border-radius: 0;
  background: #fff;
  overflow: hidden;
}

.ot-site-header__search-form input,
.ot-site-header__mobile-search input {
  width: 100%;
  min-width: 0;
  border: 0 !important;
  background: transparent;
  color: #111;
  font: inherit;
  font-size: 16px;
  font-weight: 300;
  padding: 0 0 0 20px;
  outline: 0;
  box-shadow: none !important;
  appearance: none;
}

.ot-site-header__search-form input::placeholder,
.ot-site-header__mobile-search input::placeholder {
  color: #9aa9a4;
  opacity: 1;
}

.ot-site-header .ot-site-header__search-form button,
.ot-site-header .ot-site-header__mobile-search button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 52px;
  border: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
  appearance: none;
}

.ot-site-header__search-form button img,
.ot-site-header__mobile-search button img {
  width: 22px;
  height: 22px;
}

.ot-site-header__search-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  margin-top: 14px;
  padding: 18px;
  border: 1px solid #e4d6c4;
  border-radius: 0;
  background: #fff;
}

.ot-site-header__search-box section + section {
  border-left: 1px solid #e4d6c4;
  padding-left: 28px;
}

.ot-site-header__search-box h2 {
  margin: 0 0 16px;
  color: var(--oth-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ot-site-header__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ot-site-header__chips a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 16px;
  border-radius: 0;
  background: #e3f1df;
  color: var(--oth-dark);
  font-size: 14px;
  font-weight: 600;
}

.ot-site-header__bestsellers {
  display: grid;
  gap: 14px;
}

.ot-site-header__bestsellers a {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.ot-site-header__bestsellers img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 0;
  background: #f5f5f5;
}

.ot-site-header__bestsellers strong {
  display: block;
  color: var(--oth-dark);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
}

.ot-site-header__bestsellers em {
  display: block;
  color: var(--oth-green);
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
}

.ot-site-header__bestsellers del {
  color: #97a09b;
  margin-right: 6px;
}

@media (max-width: 1120px) {
  .ot-site-header__main-inner {
    gap: 18px;
  }

  .ot-site-header__nav {
    gap: 16px;
  }

  .ot-site-header__sample {
    padding-inline: 22px;
  }
}

@media (max-width: 980px) {
  body.admin-bar .ot-site-header {
    top: 46px;
  }

  .ot-site-header__top {
    display: none;
  }

  .ot-site-header__inner {
    width: min(100% - 28px, 1200px);
  }

  .ot-site-header__main-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 70px;
  }

  .ot-site-header__logo img {
    width: 210px;
  }

  .ot-site-header__nav,
  .ot-site-header__actions .ot-site-header__sample {
    display: none;
  }

  .ot-site-header .ot-site-header__burger {
    display: inline-block;
  }

  .ot-site-header__actions {
    gap: 10px;
  }

  .ot-site-header__search-panel {
    padding: 14px 0 18px;
  }

  .ot-site-header__search-inner {
    width: min(100% - 28px, 1200px);
  }

  .ot-site-header__search-box {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 12px;
    padding: 18px;
  }

  .ot-site-header__search-box section + section {
    border-left: 0;
    border-top: 1px solid #e4d6c4;
    padding-left: 0;
    padding-top: 18px;
  }

  .ot-site-header__search-box h2 {
    margin-bottom: 14px;
    line-height: 1.35;
  }

  .ot-site-header__chips {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .ot-site-header__chips a {
    justify-content: center;
    width: 100%;
    min-height: 42px;
    padding: 9px 10px;
    text-align: center;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .ot-site-header__bestsellers {
    gap: 12px;
  }

  .ot-site-header__bestsellers a {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
  }

  .ot-site-header__bestsellers img {
    width: 58px;
    height: 58px;
  }

  .ot-site-header__mobile {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 99990;
    visibility: hidden;
    pointer-events: none;
    transition: visibility .22s ease;
  }

  .ot-site-header.is-mobile-open .ot-site-header__mobile {
    visibility: visible;
    pointer-events: auto;
  }

  .ot-site-header__mobile-backdrop {
    position: absolute;
    inset: 0;
    z-index: 1;
    border: 0;
    background: rgba(34, 51, 30, .32);
    opacity: 0;
    transition: opacity .22s ease;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    appearance: none;
  }

  .ot-site-header .ot-site-header__mobile-backdrop:hover,
  .ot-site-header .ot-site-header__mobile-backdrop:focus {
    background: rgba(34, 51, 30, .32);
    border: 0;
    box-shadow: none;
  }

  .ot-site-header.is-mobile-open .ot-site-header__mobile-backdrop {
    opacity: 1;
  }

  .ot-site-header__mobile-panel {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 2;
    width: min(92vw, 390px);
    height: 100dvh;
    padding: 18px 24px 24px;
    background: #fff;
    box-shadow: 18px 0 34px rgba(0, 0, 0, .14);
    transform: translateX(-100%);
    transition: transform .22s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .ot-site-header.is-mobile-open .ot-site-header__mobile-panel {
    transform: translateX(0);
  }

  .ot-site-header__mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
  }

  .ot-site-header__mobile-logo img {
    width: 190px;
    display: block;
  }

  .ot-site-header .ot-site-header__mobile-close {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--oth-border);
    border-radius: 0;
    background: #fff;
    color: #111;
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    padding: 0 0 3px;
    box-shadow: none;
  }

  .ot-site-header__mobile-search {
    flex: 0 0 auto;
    min-height: 50px;
    margin-bottom: 18px;
  }

  .ot-site-header__mobile-panel > a,
  .ot-site-header .ot-site-header__mobile-panel > button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 48px;
    border: 0;
    border-bottom: 1px solid var(--oth-border);
    background: transparent;
    color: #111;
    font: inherit;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 0;
    text-align: left;
    box-shadow: none;
    appearance: none;
  }

  .ot-site-header .ot-site-header__mobile-panel > button:hover,
  .ot-site-header .ot-site-header__mobile-panel > button:focus {
    background: transparent;
    color: #111;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid var(--oth-border);
    box-shadow: none;
  }

  .ot-site-header__mobile-panel > button svg {
    transition: transform .18s ease;
  }

  .ot-site-header__mobile-panel > button[aria-expanded="true"] svg {
    transform: rotate(180deg);
  }

  .ot-site-header__mobile-products {
    display: none;
    padding: 8px 0 14px;
    margin: 0 0 6px;
    border-bottom: 1px solid var(--oth-border);
  }

  .ot-site-header__mobile-products.is-open {
    display: grid;
    gap: 8px;
  }

  .ot-site-header__mobile-products a {
    display: flex;
    gap: 12px;
    align-items: center;
    min-height: 56px;
    padding: 10px 12px;
    background: #f8faf8;
    transition: background-color .18s ease, color .18s ease, box-shadow .18s ease;
  }

  .ot-site-header__mobile-products a:hover,
  .ot-site-header__mobile-products a:focus {
    background: #edf6eb;
    box-shadow: inset 3px 0 0 var(--oth-green);
  }

  .ot-site-header__mobile-products img {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }

  .ot-site-header__mobile-all,
  .ot-site-header__mobile-sample {
    background: var(--oth-green) !important;
    color: #fff !important;
    justify-content: center;
    font-weight: 700;
  }

  .ot-site-header__mobile-spacer {
    display: none;
  }

  .ot-site-header__mobile-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid var(--oth-border);
  }

  .ot-site-header__mobile-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
    gap: 9px;
    min-height: 50px;
    padding: 10px 12px;
    border: 1px solid #52A43E;
    border-radius: 0;
    color: var(--oth-dark);
    font-size: 14px;
    font-weight: 600;
    transition: background-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
  }

  .ot-site-header__mobile-actions a:hover,
  .ot-site-header__mobile-actions a:focus {
    background: #edf6eb;
    color: var(--oth-dark);
    box-shadow: inset 0 -3px 0 var(--oth-green);
    transform: translateY(-1px);
  }

  .ot-site-header__mobile-actions img {
    width: 18px;
    height: 18px;
  }

  .ot-site-header__mobile-panel > .ot-site-header__mobile-sample {
    width: 100%;
    min-height: 50px;
    margin-top: 16px;
    padding: 13px 16px !important;
    border-bottom: 0 !important;
    text-align: center;
    justify-content: center;
    white-space: normal;
  }
}

.ot-mobile-menu-open {
  overflow: hidden;
}

@media (max-width: 520px) {
  .ot-site-header__logo img {
    width: 188px;
  }

  .ot-site-header__actions {
    gap: 6px;
  }

  .ot-site-header__icon-link {
    width: 24px;
  }
}
