:root {
  --catalog-term-heading--color:#000000;
  --catalog-term-heading--color-hover:#ff8312;
}

header {
  background-color: #ffffff;
  margin: 0 -3000px;
  padding: 30px 3000px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 10;
}
header .mobile-navigation {
  display: none !important;
}
header .desktop-only {
  display: block;
}
@media (max-width: 1023px) {
  header .desktop-only {
    display: none !important;
  }
}
header .mobile-only {
  display: none !important;
}
@media (max-width: 1279px) {
  header .mobile-only {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  header .mobile-only {
    display: block !important;
  }
}
@media (max-width: 767px) {
  header .mobile-only {
    display: block !important;
  }
}
@media (max-width: 459px) {
  header .mobile-only {
    display: block !important;
  }
}
header .header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header__top .top-nav {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
header .header__top .top-nav .menu__item.expanded .menu-level-1 {
  display: flex;
  flex-direction: column;
  position: absolute;
  background-color: #ffffff;
  z-index: 100;
  padding: 16px;
  width: 140px;
  top: calc(100% + 8px);
  box-shadow: 0 3px 10px rgba(30, 41, 117, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.3s, opacity 0.3s ease-in-out;
  border-radius: 2px;
}
header .header__top .top-nav .menu__item.expanded:hover .menu-level-1 {
  opacity: 1;
  visibility: visible;
}
header .header__top .top-nav a {
  color: #595959;
}
header .header__top .top-nav a:hover {
  color: #5eb19c;
}
header .header__top .top-nav ul {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding-left: 0;
  margin: 0;
}
header .header__top .top-nav ul li {
  font-size: 14px;
  line-height: 20px;
  font-family: "Manrope";
  font-weight: 400;
}
header .header__top .top-nav .menu__item.visualcat {
  list-style: none;
}
header .header__top .top-nav .menu__item.visualcat a {
  display: inline-flex;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  touch-action: manipulation;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
  border-style: solid;
  height: 52px;
  gap: 8px;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: 8px;
  border-width: 1px;
  font-size: 16px;
  line-height: 24px;
  font-family: "Manrope";
  font-weight: 800;
  border: none;
  background: none;
  padding-inline: 0;
  color: #ff8312;
  text-decoration: #ff8312;
  font-size: 14px;
  line-height: 20px;
  font-family: "Manrope";
  font-weight: 800;
  height: auto !important;
}
header .header__top .top-nav .menu__item.visualcat a:hover {
  border: none;
  background: none;
  padding-inline: 0;
  color: #e67619;
  text-decoration: #e67619;
}
header .header__top .form_and_phone {
  display: flex;
  gap: 16px;
}
header .header__top .header__form {
  font-size: 14px;
  line-height: 20px;
  font-family: "Manrope";
  font-weight: 400;
}
header .header__top .header__form a {
  display: inline-flex;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  touch-action: manipulation;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
  border-style: solid;
  height: 52px;
  gap: 8px;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: 8px;
  border-width: 1px;
  font-size: 16px;
  line-height: 24px;
  font-family: "Manrope";
  font-weight: 800;
  border: none;
  background: none;
  padding-inline: 0;
  color: #ff8312;
  text-decoration: #ff8312;
  height: auto;
  font-size: 14px;
  line-height: 20px;
  font-family: "Manrope";
  font-weight: 800;
}
header .header__top .header__form a:hover {
  border: none;
  background: none;
  padding-inline: 0;
  color: #e67619;
  text-decoration: #e67619;
}
header .header__top .header__phone {
  font-size: 16px;
  line-height: 24px;
  font-family: "Manrope";
  font-weight: 800;
}
header .header__top .header__phone a {
  color: #262626;
}
header .header__top .header__email a {
  font-size: 14px;
  line-height: 20px;
  font-family: "Manrope";
  font-weight: 800;
  color: #595959;
}
header .header__top .header__email a:hover {
  color: #5eb19c;
}
header .header__main {
  display: grid;
  align-items: center;
  grid-template-columns: 198px 141px 1fr 164px;
  gap: 30px;
}
@media (max-width: 1023px) {
  header .header__main {
    grid-template-columns: 44px 1fr auto;
  }
}
header .header__main .header__logo {
  height: 52px;
  width: 200px;
  grid-row: auto;
  grid-column: auto;
}
@media (max-width: 459px) {
  header .header__main .header__logo {
    height: 44px;
  }
}
@media (max-width: 459px) {
  header .header__main .header__logo {
    width: 160px;
  }
}
@media (max-width: 1023px) {
  header .header__main .header__logo {
    grid-row: 1;
  }
}
@media (max-width: 1023px) {
  header .header__main .header__logo {
    grid-column: 2;
  }
}
header .header__main .header__catalog .menu-catalog-btn {
  display: inline-flex;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  touch-action: manipulation;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
  border-style: solid;
  height: 52px;
  gap: 8px;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: 8px;
  border-width: 1px;
  font-size: 16px;
  line-height: 24px;
  font-family: "Manrope";
  font-weight: 800;
  background-color: #ff8312;
  border-color: #ff8312;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
header .header__main .header__catalog .menu-catalog-btn:hover {
  background-color: #e67619;
  border-color: #ff8312;
  color: #ffffff;
}
header .header__main .header__catalog .menu-catalog-btn:hover:first-child {
  text-decoration: none;
}
header .header__main .header__catalog .menu-catalog-btn:hover::before {
  text-decoration: none;
}
header .header__main .header__catalog .menu-catalog-btn::before {
  content: "\e91a";
  font-family: "icon-base";
  font-size: 14px;
  line-height: 14px;
  color: #ffffff;
  margin: 0;
  text-decoration: none;
}
header .header__main .header__mobile-menu {
  display: flex;
  grid-row: 1;
  grid-column: 1;
}
header .header__main .header__mobile-menu button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 0;
  aspect-ratio: 1/1;
  gap: 0;
  text-indent: -9999px;
  display: inline-flex;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  touch-action: manipulation;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
  border-style: solid;
  padding-left: 30px;
  padding-right: 30px;
  border-width: 1px;
  border-radius: 8px;
  height: 44px;
  gap: 12px;
  font-size: 14px;
  line-height: 20px;
  font-family: "Manrope";
  font-weight: 400;
  background-color: #ff8312;
  border-color: #ff8312;
  color: #ffffff;
  font-weight: 400;
  padding: 0 21px;
  width: 44px;
}
header .header__main .header__mobile-menu button:hover:first-child {
  text-decoration: none;
}
header .header__main .header__mobile-menu button:hover::before {
  text-decoration: none;
}
header .header__main .header__mobile-menu button:first-child {
  text-decoration: none;
}
header .header__main .header__mobile-menu button::before {
  content: "\e91a";
  text-indent: 0;
  font-family: "icon-base";
  font-size: 14px;
  line-height: 14px;
  color: #ffffff;
  text-decoration: none;
}
header .header__main .header__mobile-menu button:hover {
  background-color: #e67619;
  border-color: #ff8312;
  color: #ffffff;
}
header .header__main .header__search {
  grid-row: auto;
  grid-column: auto;
}
@media (max-width: 1023px) {
  header .header__main .header__search {
    grid-row: 2;
  }
}
@media (max-width: 1023px) {
  header .header__main .header__search {
    grid-column: 1/-1;
  }
}
header .header__main .header__search form.search {
  position: relative;
  border-radius: 8px;
}
header .header__main .header__search form.search .form-item {
  width: 100%;
}
header .header__main .header__search form.search input {
  height: 52px;
}
header .header__main .header__search form.search input::placeholder {
  color: #8c8c8c;
  font-size: 16px;
  line-height: 24px;
  font-family: "Manrope";
  font-weight: 400;
}
header .header__main .header__search form.search .form-actions, header .header__main .header__search form.search .form-item-clear {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}
header .header__main .header__search form.search .form-actions button, header .header__main .header__search form.search .form-item-clear button {
  font-weight: 400;
  width: 100%;
  height: 100%;
}
header .header__main .header__search form.search.is-button-clear .form-actions {
  display: none;
}
header .header__main .header__icons {
  display: flex;
  gap: 30px;
  grid-row: auto;
}
@media (max-width: 1023px) {
  header .header__main .header__icons {
    gap: 12px;
  }
}
@media (max-width: 1023px) {
  header .header__main .header__icons {
    grid-row: 1;
  }
}
header .header__main .header__icons .header__phone-button a {
  display: inline-flex;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  touch-action: manipulation;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
  border-style: solid;
  padding-left: 30px;
  padding-right: 30px;
  border-width: 1px;
  border-radius: 8px;
  height: 44px;
  gap: 12px;
  font-size: 14px;
  line-height: 20px;
  font-family: "Manrope";
  font-weight: 400;
  background-color: #ffffff;
  border-color: #ff8312;
  color: #ff8312;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 0;
  aspect-ratio: 1/1;
  gap: 0;
  text-indent: -9999px;
  border-color: transparent;
  font-weight: 400;
}
header .header__main .header__icons .header__phone-button a:hover {
  background-color: #fff6e6;
  border-color: #ff8312;
  color: #ff8312;
}
header .header__main .header__icons .header__phone-button a:hover:first-child {
  text-decoration: none;
}
header .header__main .header__icons .header__phone-button a:hover::before {
  text-decoration: none;
}
header .header__main .header__icons .header__phone-button a:first-child {
  text-decoration: none;
}
header .header__main .header__icons .header__phone-button a::before {
  content: "\e92d";
  text-indent: 0;
  font-family: "icon-base";
  font-size: 16px;
  line-height: 16px;
  color: #8c8c8c;
  text-decoration: none;
}
header .header__main .header__icons .header__phone-button a:hover {
  border-color: transparent;
}
header .header__main .header__icons .header__cart {
  display: flex;
  flex-direction: column;
  display: inline-flex;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  touch-action: manipulation;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
  border-style: solid;
  padding-left: 30px;
  padding-right: 30px;
  border-width: 1px;
  border-radius: 8px;
  height: 44px;
  gap: 12px;
  font-size: 14px;
  line-height: 20px;
  font-family: "Manrope";
  font-weight: 400;
  border: none;
  background: none;
  padding-inline: 0;
  color: #ff8312;
  text-decoration: #ff8312;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 0;
  aspect-ratio: 1/1;
  gap: 0;
  text-indent: -9999px;
  border-color: transparent;
  font-weight: 400;
  text-indent: 0;
}
@media (max-width: 459px) {
  header .header__main .header__icons .header__cart {
    display: none;
  }
}
@media (max-width: 1023px) {
  header .header__main .header__icons .header__cart {
    flex-direction: row;
  }
}
header .header__main .header__icons .header__cart:hover {
  border: none;
  background: none;
  padding-inline: 0;
  color: #e67619;
  text-decoration: #e67619;
}
header .header__main .header__icons .header__cart:hover:first-child {
  text-decoration: none;
}
header .header__main .header__icons .header__cart:hover::before {
  text-decoration: none;
}
header .header__main .header__icons .header__cart:first-child {
  text-decoration: none;
}
header .header__main .header__icons .header__cart::before {
  content: "\e92c";
  text-indent: 0;
  font-family: "icon-base";
  font-size: 16px;
  line-height: 16px;
  color: #8c8c8c;
  text-decoration: none;
}
header .header__main .header__icons .header__cart .caption {
  color: #8c8c8c;
  transition: color 0.2s ease-in-out;
}
header .header__main .header__icons .header__cart:hover .caption {
  color: #ffb963;
}
@media (max-width: 1023px) {
  header .header__main .header__icons .header__cart {
    text-indent: -9999px;
  }
}
header .header__main .header__icons .header__cart .button-link {
  width: 44px;
  height: 44px;
  position: absolute;
}
header .header__main .header__icons .header__cart .badge {
  right: 6px;
  top: -1px;
}
header .header__main .header__icons .header__cart:before {
  transition: color 0.2s ease-in-out;
}
header .header__main .header__icons .header__cart:hover {
  border-color: transparent;
}
header .header__main .header__icons .header__cart:hover:before {
  transition: color 0.2s ease-in-out;
  color: #ffb963;
}
header .header__main .header__icons .header__favorites {
  display: flex;
  flex-direction: column;
  text-indent: 0 !important;
  display: inline-flex;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  touch-action: manipulation;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
  border-style: solid;
  padding-left: 30px;
  padding-right: 30px;
  border-width: 1px;
  border-radius: 8px;
  height: 44px;
  gap: 12px;
  font-size: 14px;
  line-height: 20px;
  font-family: "Manrope";
  font-weight: 400;
  border: none;
  background: none;
  padding-inline: 0;
  color: #ff8312;
  text-decoration: #ff8312;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 0;
  aspect-ratio: 1/1;
  gap: 0;
  text-indent: -9999px;
}
@media (max-width: 459px) {
  header .header__main .header__icons .header__favorites {
    display: none;
  }
}
@media (max-width: 1023px) {
  header .header__main .header__icons .header__favorites {
    flex-direction: row;
  }
}
@media (max-width: 1023px) {
  header .header__main .header__icons .header__favorites {
    text-indent: -9999px !important;
  }
}
header .header__main .header__icons .header__favorites:hover {
  border: none;
  background: none;
  padding-inline: 0;
  color: #e67619;
  text-decoration: #e67619;
}
header .header__main .header__icons .header__favorites:hover:first-child {
  text-decoration: none;
}
header .header__main .header__icons .header__favorites:hover::before {
  text-decoration: none;
}
header .header__main .header__icons .header__favorites:first-child {
  text-decoration: none;
}
header .header__main .header__icons .header__favorites::before {
  content: "\e91d";
  text-indent: 0;
  font-family: "icon-base";
  font-size: 16px;
  line-height: 16px;
  color: #8c8c8c;
  text-decoration: none;
}
header .header__main .header__icons .header__favorites .caption {
  color: #8c8c8c;
  transition: color 0.2s ease-in-out;
}
header .header__main .header__icons .header__favorites:hover .caption {
  color: #ffb963;
}
header .header__main .header__icons .header__favorites:before {
  transition: color 0.2s ease-in-out;
}
header .header__main .header__icons .header__favorites:hover {
  border-color: transparent;
}
header .header__main .header__icons .header__favorites:hover:before {
  transition: color 0.2s ease-in-out;
  color: #ffb963;
}
header .header__main .header__icons .header__favorites .button-link {
  position: absolute;
  width: 44px;
  height: 44px;
}
header .header__main .header__icons .header__favorites .button-link:before {
  display: none;
}
header .header__main .header__icons .header__favorites .badge {
  right: 6px;
  top: -1px;
}
header .header__main .header__icons .header__phone-button {
  display: flex;
}

.sidebar-phone {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: baseline;
  padding-left: 12px;
  margin-top: 28px;
}
.sidebar-phone > a {
  color: #262626;
  font-size: 16px;
  line-height: 24px;
  font-family: "Manrope";
  font-weight: 800;
}
.sidebar-phone .request-call-button {
  display: inline-flex;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  touch-action: manipulation;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
  border-style: solid;
  height: 52px;
  gap: 8px;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: 8px;
  border-width: 1px;
  font-size: 16px;
  line-height: 24px;
  font-family: "Manrope";
  font-weight: 800;
  border: none;
  background: none;
  padding-inline: 0;
  color: #ff8312;
  text-decoration: #ff8312;
  height: fit-content;
}
.sidebar-phone .request-call-button:hover {
  border: none;
  background: none;
  padding-inline: 0;
  color: #e67619;
  text-decoration: #e67619;
}

.sidebar-email {
  padding-left: 12px;
}
.sidebar-email a {
  font-size: 16px;
  line-height: 24px;
  font-family: "Manrope";
  font-weight: 800;
  color: #262626;
}