.header-container {
  position: fixed;
  top: 0;
  z-index: 1000;
  background-color: white;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
}
@media only screen and (min-width: 1440px) {
  .header-container {
    gap: 20px;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.header-container::before {
  content: "";
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  right: 0;
  bottom: auto;
  height: 3px;
  width: 100%;
  background-color: #D9D9D9;
  pointer-events: none;
}
.header-container__mobile-toggle {
  width: 45px;
  height: 45px;
  margin-right: 16px;
  position: relative;
  transition: all 0.2s ease-in-out;
}
@media only screen and (min-width: 1440px) {
  .header-container__mobile-toggle {
    display: none;
  }
}
.header-container__mobile-toggle svg {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.header-container__mobile-toggle svg path {
  fill: #000000;
  position: absolute;
  transform: translate(0, 0) rotate(0);
  transform-origin: center;
  transition: all 0.2s ease-in-out;
}
.header-container__mobile-toggle svg.header-container__mobile-toggle__close path {
  transform: translate(0, 0) rotate(90deg);
  opacity: 0;
}
.header-container__mobile-toggle:hover {
  background-color: #E24A02;
}
.header-container__mobile-toggle:hover svg path {
  fill: #ffffff;
}
.header-container__mobile-toggle[aria-expanded=true] svg.header-container__mobile-toggle__open path {
  transform: translate(0, 0) rotate(-90deg);
  opacity: 0;
}
.header-container__mobile-toggle[aria-expanded=true] svg.header-container__mobile-toggle__close path {
  transform: translate(0, 0) rotate(0deg);
  opacity: 1;
}
.header-container__logo {
  padding-left: 16px;
}
.header-container__logo img {
  width: 170px;
  height: auto;
  transition: all 0.2s ease-in-out;
}
@media only screen and (min-width: 1440px) {
  .header-container__logo {
    padding-left: 20px;
  }
  .header-container__logo img {
    width: 225px;
  }
}
@media only screen and (min-width: 1510px) {
  .header-container__logo {
    padding-left: 30px;
  }
}
@media only screen and (min-width: 1560px) {
  .header-container__logo {
    padding-left: 40px;
  }
}
.header-container__nav-wrapper-mobile {
  display: none;
  flex-direction: column;
  width: 100%;
  position: absolute;
  top: 100%;
  z-index: 999;
  height: 100%;
  min-height: calc(100vh - 78px);
  overflow-y: auto;
}
.header-container__nav-wrapper-desktop {
  display: none;
}
@media only screen and (min-width: 1440px) {
  .header-container__nav-wrapper-desktop {
    display: block;
  }
}

/* Mobile Eyebrow Menu Component */
.mobile-eyebrow-menu {
  padding: 6px 16px;
  background-color: #D9D9D9;
  width: 100%;
}
.mobile-eyebrow-menu__list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-eyebrow-menu__item:has(form) {
  flex: 1;
}
@media only screen and (min-width: 576px) {
  .mobile-eyebrow-menu__item:has(form) {
    flex: 0 0 300px;
  }
}
.mobile-eyebrow-menu__form {
  display: flex;
  align-items: start;
  justify-content: start;
}
.mobile-eyebrow-menu__form input {
  width: 100%;
  flex: 1;
}

/* Mobile Menu Component */
.mobile-menu {
  background-color: #ffffff;
  /* Button-styled menu items */
}
.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 20px 16px;
  margin: 0 !important;
}
.mobile-menu__link {
  display: flex;
  width: fit-content;
  padding: 3px 0 13px 0;
  color: #000000;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
  box-shadow: inset 0 -3px 0 0 transparent;
}
.mobile-menu__link:hover {
  color: #E24A02;
  box-shadow: inset 0 -3px 0 0 #E24A02;
}
.mobile-menu__link.mobile-menu__toggle {
  text-align: left;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
}
.mobile-menu__link.mobile-menu__toggle br {
  display: none;
}
.mobile-menu__link.mobile-menu__toggle::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #E57925;
  mask-size: contain;
  mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3e%3cpath d='M13.4932 9.97881C13.4932 10.2319 13.4088 10.4569 13.24 10.6257L8.74004 15.1257C8.40254 15.4913 7.81191 15.4913 7.47441 15.1257C7.10879 14.7882 7.10879 14.1976 7.47441 13.8601L11.3275 9.97881L7.47441 6.12568C7.10879 5.78818 7.10879 5.19756 7.47441 4.86006C7.81191 4.49443 8.40254 4.49443 8.74004 4.86006L13.24 9.36006C13.4088 9.52881 13.4932 9.75381 13.4932 9.97881Z' fill='%23E57925'/%3e%3c/svg%3e") no-repeat center;
  transition: all 0.2s ease-in-out;
}
.mobile-menu__link.mobile-menu__toggle:hover::after {
  transform: rotate(90deg);
}
.mobile-menu__item-btn .mobile-menu__link {
  background-color: transparent;
  border: 3px solid #E24A02;
  padding: 3px 9px;
  height: fit-content;
  color: #E24A02;
  font-size: 18px;
  font-weight: 900;
  line-height: 23px;
  letter-spacing: 0.35px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
  box-shadow: none;
}
.mobile-menu__item-btn .mobile-menu__link:hover {
  background-color: #E24A02;
  color: #ffffff;
  box-shadow: none;
}

/* Mobile Submenu Component */
.mobile-submenu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 20px 16px;
  background-color: #ffffff;
  position: absolute;
  width: 100%;
  z-index: 998;
}
.mobile-submenu.mobile-level-3 .mobile-submenu__list {
  gap: 4px;
}
.mobile-submenu__back-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
  width: fit-content;
  padding: 6px 0;
  color: #000000;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 900;
  line-height: 20px;
  letter-spacing: -0.3px;
  text-transform: uppercase;
}
.mobile-submenu__back-btn br {
  display: none;
}
.mobile-submenu__back-btn::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #E57925;
  mask-size: contain;
  mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3e%3cpath d='M7.69189 8.14771C8.00655 8.44549 8.00816 8.95093 7.69873 9.2522L7.69971 9.25317C7.40053 9.57728 6.88311 9.57913 6.58057 9.26001L6.57959 9.26099L3.87939 6.56079C3.72827 6.40966 3.65485 6.20969 3.65479 6.01294C3.65479 5.80343 3.72547 5.60144 3.87939 5.44751L6.57959 2.74731L6.58057 2.74829C6.88312 2.42925 7.40056 2.43105 7.69971 2.75513L7.69873 2.7561C8.00788 3.05702 8.00648 3.56167 7.69287 3.85962L5.55713 6.01196L7.69287 8.14771H7.69189Z' fill='%23E57925' stroke='%23E57925' stroke-width='0.5'/%3e%3c/svg%3e") no-repeat center;
  transition: all 0.2s ease-in-out;
}
.mobile-submenu__title {
  display: block;
  width: fit-content;
  color: #000000;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  box-shadow: inset 0 -3px 0 0 #E24A02;
  padding-bottom: 10px;
}
.mobile-submenu__title br {
  display: none;
}
.mobile-submenu__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-submenu__item {
  position: relative;
}
.mobile-submenu__item.mobile-submenu__item--has-dropdown button {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}
.mobile-submenu__item.mobile-submenu__item--has-dropdown button::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #E24A02;
  mask-size: contain;
  mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3e%3cpath d='M19.3426 12.7678L13.9426 18.1678C13.7401 18.3703 13.4701 18.4716 13.2001 18.4716C12.8963 18.4716 12.6263 18.3703 12.4238 18.1678C11.9851 17.7628 11.9851 17.0541 12.4238 16.6491L15.9676 13.0716H5.64006C5.03256 13.0716 4.56006 12.5991 4.56006 11.9916C4.56006 11.4178 5.03256 10.9116 5.64006 10.9116H15.9676L12.4238 7.36783C11.9851 6.96283 11.9851 6.25408 12.4238 5.84908C12.8288 5.41033 13.5376 5.41033 13.9426 5.84908L19.3426 11.2491C19.7813 11.6541 19.7813 12.3628 19.3426 12.7678Z' fill='%23E24A02'/%3e%3c/svg%3e") no-repeat center;
  transition: all 0.2s ease-in-out;
}
.mobile-submenu__item.mobile-submenu__item--has-dropdown button:hover {
  gap: 10px;
}
.mobile-submenu__link {
  color: #000000;
  display: flex;
  width: fit-content;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.4px;
  box-shadow: inset 0 -3px 0 0 transparent;
  padding: 6px 0;
  transition: all 0.2s ease-in-out;
}
.mobile-submenu__link:hover {
  color: #E24A02;
  box-shadow: inset 0 -3px 0 0 #E24A02;
}
.mobile-submenu__product-link-wrapper {
  display: flex;
  height: 80px;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 20px;
  transition: all 0.2s ease-in-out;
  border: 2px solid transparent;
  width: 100%;
  position: relative;
}
.mobile-submenu__product-link-wrapper:hover {
  background: #ffffff;
  border-color: #E24A02;
}
.mobile-submenu__product-link-wrapper:hover a {
  box-shadow: none;
}
.mobile-submenu__link-main {
  color: #000000;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}
.mobile-submenu__link-main::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.mobile-submenu__link-image {
  width: 70px;
  height: 70px;
}

/* Mobile Chin Menu Component */
.mobile-chin-menu {
  background: #D9D9D9;
  padding: 16px;
}
.mobile-chin-menu__list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-chin-menu__item {
  width: calc(50% - 8px);
}
.mobile-chin-menu__item::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #C1C1C1;
  margin-top: 8px;
  margin-bottom: 8px;
}
.mobile-chin-menu__item:last-child::after, .mobile-chin-menu__item:nth-last-child(2)::after {
  display: none;
}
@media only screen and (min-width: 576px) {
  .mobile-chin-menu__item {
    width: calc(33.333% - 12px);
  }
  .mobile-chin-menu__item:nth-last-child(3)::after {
    display: none;
  }
}
.mobile-chin-menu__item-btn .mobile-chin-menu__link {
  background-color: #E24A02;
  color: #ffffff;
  padding: 6px 8px;
  transition: all 0.2s ease-in-out;
}
.mobile-chin-menu__item-btn .mobile-chin-menu__link:hover {
  background-color: #E57925;
  color: #000000;
}
.mobile-chin-menu__link {
  display: flex;
  color: #000000;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 900;
  line-height: 20px;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  padding-top: 6px;
  padding-bottom: 6px;
  width: fit-content;
  transition: all 0.2s ease-in-out;
}
.mobile-chin-menu__link:hover {
  color: #E24A02;
}
.mobile-chin-menu__item--has-dropdown {
  position: relative;
}
.mobile-chin-menu__item--has-dropdown .mobile-chin-menu__link {
  display: flex;
}
.mobile-chin-menu__item--has-dropdown .mobile-chin-menu__link::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #E57925;
  mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3e%3cpath d='M8.14746 4.42828C8.44525 4.11363 8.95069 4.11202 9.25195 4.42145L9.25293 4.42047C9.57703 4.71964 9.57889 5.23707 9.25977 5.53961L9.26074 5.54059L6.56055 8.24078C6.40942 8.39191 6.20945 8.46532 6.0127 8.46539C5.80318 8.46539 5.60119 8.39471 5.44727 8.24078L2.74707 5.54059L2.74805 5.53961C2.42901 5.23706 2.43081 4.71962 2.75488 4.42047L2.75586 4.42145C3.05677 4.1123 3.56142 4.1137 3.85938 4.42731L6.01172 6.56305L8.14746 4.42731V4.42828Z' fill='%23E57925' stroke='%23E57925' stroke-width='0.5'/%3e%3c/svg%3e") no-repeat center;
  transition: all 0.2s ease-in-out;
}
.mobile-chin-menu__item--dropdown-active .mobile-chin-menu__link::after {
  transform: rotate(-90deg);
}
.mobile-chin-menu__item--dropdown-active > .mobile-chin-menu__dropdown {
  display: flex;
}
.mobile-chin-menu__dropdown {
  display: none;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-chin-menu__dropdown-link {
  display: block;
  border-bottom: 1px solid transparent;
  color: #000000;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 14px;
  padding: 6px 20px 7px 15px;
  transition: all 0.2s ease-in-out;
}
.mobile-chin-menu__dropdown-link:hover {
  border-color: #C1C1C1;
  background: #E24A02;
  color: #ffffff;
}

/* Eyebrow Menu Component */
.eyebrow-menu {
  background: #D9D9D9;
  position: relative;
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
  display: flex;
  flex-direction: row;
  /* Dropdown menu */
}
.eyebrow-menu::before {
  aspect-ratio: 1/1;
  content: "";
  display: inline-block;
  position: absolute;
  width: auto;
  height: 100%;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 38 38'%3e%3cpolygon points='0 0 0 38 38 38 0 0' fill='white'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.eyebrow-menu__container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 6px 20px 6px 40px;
}
@media only screen and (min-width: 1510px) {
  .eyebrow-menu__container {
    padding-right: 30px;
  }
}
@media only screen and (min-width: 1560px) {
  .eyebrow-menu__container {
    padding-right: 40px;
  }
}
.eyebrow-menu__list {
  display: flex;
  align-items: center;
  list-style: none;
  padding-left: 40px;
  margin-bottom: 0 !important;
}
.eyebrow-menu__item {
  display: flex;
  align-items: center;
  position: relative;
  line-height: 1;
}
.eyebrow-menu__item::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 20px;
  background-color: #C1C1C1;
  margin-left: 15px;
  margin-right: 15px;
}
.eyebrow-menu__item--has-dropdown button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: none;
  border: none;
  cursor: pointer;
}
.eyebrow-menu__item--has-dropdown button::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #E57925;
  mask-size: contain;
  mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3e%3cpath d='M8.14771 4.42828C8.44549 4.11363 8.95093 4.11202 9.2522 4.42145L9.25317 4.42047C9.57728 4.71964 9.57913 5.23707 9.26001 5.53961L9.26099 5.54059L6.56079 8.24078C6.40966 8.39191 6.20969 8.46532 6.01294 8.46539C5.80343 8.46539 5.60144 8.39471 5.44751 8.24078L2.74731 5.54059L2.74829 5.53961C2.42925 5.23706 2.43105 4.71962 2.75513 4.42047L2.7561 4.42145C3.05702 4.1123 3.56167 4.1137 3.85962 4.42731L6.01196 6.56305L8.14771 4.42731V4.42828Z' fill='%23E57925' stroke='%23E57925' stroke-width='0.5'/%3e%3c/svg%3e") no-repeat center;
  transition: all 0.2s ease-in-out;
}
.eyebrow-menu__item--active button {
  color: #E24A02;
}
.eyebrow-menu__link {
  color: #000;
  display: block;
  font-family: "Roboto Condensed";
  font-size: 15px;
  font-style: normal;
  font-weight: 900;
  line-height: 20px;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  padding-top: 3px;
  padding-bottom: 3px;
  transition: all 0.2s ease-in-out;
}
.eyebrow-menu__link:hover {
  color: #E24A02;
}
.eyebrow-menu__item-btn a {
  background: #E24A02;
  color: #ffffff;
  padding-left: 8px;
  padding-right: 8px;
  transition: all 0.2s ease-in-out;
}
.eyebrow-menu__item-btn a:hover {
  background: #E57925;
  color: #000000;
}
.eyebrow-menu__list-right {
  display: flex;
  align-items: center;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0 !important;
  gap: 10px;
}
.eyebrow-menu__icon svg path {
  transition: all 0.2s ease-in-out;
}
.eyebrow-menu__icon:hover svg path {
  fill: #E24A02;
}
.eyebrow-menu__dropdown {
  display: none;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 6px);
  left: -15px;
  background-color: transparent;
  transition: all 0.2s ease-in-out;
  z-index: 3;
  padding: 0;
  list-style: none;
  width: max-content;
}
.eyebrow-menu__item--active .eyebrow-menu__dropdown {
  display: flex;
}
.eyebrow-menu__dropdown-list {
  list-style: none;
  padding: 8px 0;
}
.eyebrow-menu__dropdown-link {
  background-color: #D9D9D9;
  border-bottom: 1px solid #C1C1C1;
  display: block;
  padding: 7px 20px 8px 15px;
  color: #000000;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
  transition: all 0.2s ease-in-out;
}
.eyebrow-menu__dropdown-link:hover {
  background: #E24A02;
  color: #ffffff;
}

/* Search functionality */
.header-search {
  position: relative;
}
.header-search__toggle {
  background-color: #D9D9D9;
  padding: 1px;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  transition: all 0.2s ease-in-out;
}
.header-search__form {
  width: 28px;
  height: 28px;
  overflow: hidden;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.header-search__form form {
  display: flex;
  flex-direction: row;
}
.header-search--expanded {
  display: block;
}
.header-search--expanded .header-search__toggle {
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}
.header-search--expanded .header-search__form {
  width: 232px;
  height: 28px;
  opacity: 1;
}
.header-search__input {
  background-color: transparent;
  border: none;
  box-shadow: inset 0 -1.5px 0 0 #000000;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding-top: 2px;
  padding-left: 2px;
  width: 200px;
  margin-right: 4px;
}
.header-search__submit {
  background-color: #E24A02;
  padding: 4px;
}
.header-search__submit:hover {
  background: #E24A02;
}
.header-search__submit:hover svg path {
  fill: #ffffff;
}

/* Main Menu Component */
.main-menu {
  /* Active state - orange underline */
  /* Button-styled menu items */
  /* Dropdown Style 1 - Category Hierarchy */
  /* Sub-dropdown for Style 1 */
  /* Dropdown Style 2 - Full-width with Sidebar */
}
.main-menu__container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 20px;
}
@media only screen and (min-width: 1510px) {
  .main-menu__container {
    padding-right: 30px;
  }
}
@media only screen and (min-width: 1560px) {
  .main-menu__container {
    padding-right: 40px;
  }
}
.main-menu__list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
  padding: 0;
}
@media only screen and (min-width: 1500px) {
  .main-menu__list {
    gap: 30px;
  }
}
.main-menu__link {
  display: flex;
  align-items: center;
  height: 70px;
  width: fit-content;
  color: #000000;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: -0.5px;
  text-align: left;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
}
.main-menu__link:hover {
  color: #E24A02;
  box-shadow: inset 0 -3px 0 0 #E24A02;
}
.main-menu__link[aria-expanded=true]::after {
  transform: rotate(-180deg);
}
.main-menu__item--active .main-menu__link {
  color: #E24A02;
  box-shadow: inset 0 -3px 0 0 #E24A02;
}
.main-menu__item-btn .main-menu__link {
  background-color: transparent;
  border: 3px solid #E24A02;
  padding: 3px 9px;
  height: fit-content;
  color: #E24A02;
  font-size: 18px;
  font-weight: 900;
  line-height: 23px;
  letter-spacing: 0.35px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
}
.main-menu__item-btn .main-menu__link:hover {
  background-color: #E24A02;
  color: #ffffff;
}
.main-menu__item--has-dropdown > button {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: inset 0 -3px 0 0 transparent;
  transition: all 0.2s ease-in-out;
}
.main-menu__item--has-dropdown > button::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #E57925;
  mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3e%3cpath d='M10.0211 13.693C9.76794 13.693 9.54294 13.6086 9.37419 13.4399L4.87419 8.93987C4.50857 8.60237 4.50857 8.01174 4.87419 7.67424C5.21169 7.30862 5.80232 7.30862 6.13982 7.67424L10.0211 11.5274L13.8742 7.67424C14.2117 7.30862 14.8023 7.30862 15.1398 7.67424C15.5054 8.01174 15.5054 8.60237 15.1398 8.93987L10.6398 13.4399C10.4711 13.6086 10.2461 13.693 10.0211 13.693Z' fill='%23E57925'/%3e%3c/svg%3e") no-repeat center;
  mask-size: contain;
  transition: all 0.2s ease-in-out;
}
.main-menu__item--has-dropdown.main-menu__item--dropdown-active > .main-menu__dropdown {
  display: flex;
}
.main-menu__item--has-dropdown:has(.main-menu__dropdown--style-1) {
  position: relative;
}
.main-menu__dropdown {
  display: none;
}
.main-menu__dropdown--style-1 {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  padding: 20px 30px 30px 30px;
  background: #ffffff;
  transition: all 0.2s ease-in-out;
  width: max-content;
}
.main-menu__dropdown__list {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  gap: 20px;
}
.main-menu__dropdown__link {
  color: #000000;
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.4px;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-transform: none;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all 0.2s ease-in-out;
}
.main-menu__dropdown__link:hover {
  color: #E24A02;
  text-decoration-color: #E24A02;
}
.main-menu__item--dropdown-active > button {
  box-shadow: inset 0 -3px 0 0 #E24A02;
}
.main-menu__dropdown-list {
  list-style: none;
}
.main-menu__dropdown-item {
  position: relative;
  border-bottom: 1px solid #f8f9fa;
}
.main-menu__dropdown-item:last-child {
  border-bottom: none;
}
.main-menu__dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.main-menu__dropdown-link:hover {
  background: #f8f9fa;
  color: #E24A02;
}
.main-menu__sub-dropdown {
  position: absolute;
  top: 0;
  left: 100%;
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  padding: 12px 0;
}
.main-menu__dropdown-item:hover .main-menu__sub-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.main-menu__sub-dropdown-link {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
.main-menu__sub-dropdown-link:hover {
  background: #f8f9fa;
  color: #E24A02;
}
.main-menu__dropdown--style-2 {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #FAFAFA;
  transition: all 0.3s ease;
  z-index: 1000;
  width: 100%;
  margin: 0;
}
.main-menu__dropdown-content {
  display: flex;
  width: 100%;
  min-height: 400px;
  background-color: #ffffff;
}
.main-menu__dropdown__sidebar {
  width: 400px;
  padding: 40px 40px 50px 40px;
  background-color: #ffffff;
  overflow-y: auto;
  max-height: calc(100vh - 114px);
}
.main-menu__dropdown__sidebar-list {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.main-menu__dropdown__sidebar-item--has-submenu button {
  gap: 4px;
}
.main-menu__dropdown__sidebar-item--has-submenu button::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: #E24A02;
  mask-size: contain;
  mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3e%3cpath d='M19.3426 12.7678L13.9426 18.1678C13.7401 18.3703 13.4701 18.4716 13.2001 18.4716C12.8963 18.4716 12.6263 18.3703 12.4238 18.1678C11.9851 17.7628 11.9851 17.0541 12.4238 16.6491L15.9676 13.0716H5.64006C5.03256 13.0716 4.56006 12.5991 4.56006 11.9916C4.56006 11.4178 5.03256 10.9116 5.64006 10.9116H15.9676L12.4238 7.36783C11.9851 6.96283 11.9851 6.25408 12.4238 5.84908C12.8288 5.41033 13.5376 5.41033 13.9426 5.84908L19.3426 11.2491C19.7813 11.6541 19.7813 12.3628 19.3426 12.7678Z' fill='%23E24A02'/%3e%3c/svg%3e") no-repeat center;
  transition: all 0.2s ease-in-out;
}
.main-menu__dropdown__sidebar-item--has-submenu button:hover {
  gap: 10px;
}
.main-menu__dropdown__sidebar-item--active button {
  gap: 10px;
}
.main-menu__dropdown__sidebar-link {
  color: #000000;
  display: flex;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  justify-content: start;
  letter-spacing: -0.4px;
  line-height: 24px;
  padding: 10px 0;
  text-decoration: none;
  box-shadow: inset 0 -3px 0 0 transparent;
  transition: all 0.2s ease-in-out;
  width: fit-content;
}
.main-menu__dropdown__sidebar-link:hover {
  color: #E24A02;
  box-shadow: inset 0 -3px 0 0 #E24A02;
}
.main-menu__dropdown__sidebar-item--active .main-menu__dropdown__sidebar-link {
  color: #E24A02;
  box-shadow: inset 0 -3px 0 0 #E24A02;
}
.main-menu__dropdown__main-content {
  display: none;
  flex: 1;
  padding: 40px;
  background-color: #FAFAFA;
  overflow-y: auto;
  max-height: calc(100vh - 114px);
}
.main-menu__dropdown__main-content.main-menu__dropdown__sidebar-item--active {
  display: block;
}
.main-menu__dropdown__main-content--show-as-grid {
  display: block;
  flex: 1;
  padding: 40px;
  background-color: #FAFAFA;
  overflow-y: auto;
  max-height: calc(100vh - 114px);
}
.main-menu__dropdown__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 20px;
}
.main-menu__dropdown__grid-item {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 20px;
  transition: all 0.2s ease-in-out;
  box-shadow: inset 0 0 0 2px transparent;
  width: 340px;
  position: relative;
}
.main-menu__dropdown__grid-item:hover {
  background: #ffffff;
  box-shadow: inset 0 0 0 2px #E24A02;
}
.main-menu__dropdown__grid-item:hover .main-menu__dropdown__grid-title {
  color: #E24A02;
  text-decoration-color: #E24A02;
}
.main-menu__dropdown__grid-image {
  width: 100px;
  height: 100px;
  margin: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.main-menu__dropdown__grid-content {
  flex: 1;
}
.main-menu__dropdown__grid-title {
  color: #000000;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all 0.2s ease-in-out;
  position: static;
}
.main-menu__dropdown__grid-title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

/*# sourceMappingURL=style-header.css.map */
