.header {
  background: transparent;
  position: fixed;
  width: 100%;
  z-index: 999;
  top: 0;
  transition: 0.3s ease;
}
.header.scrolled {
  background: #fff;
}
.header.scrolled .header__link {
  color: #231F20;
}
.header.scrolled .header__right {
  color: #231F20;
}
.header.scrolled .header__right svg path {
  stroke: #231F20;
}
.header.scrolled .header__search input {
  color: #231F20;
}
.header.scrolled .header__search input::-moz-placeholder {
  color: rgba(155, 155, 155, 0.7647058824);
}
.header.scrolled .header__search input::placeholder {
  color: rgba(155, 155, 155, 0.7647058824);
}
.header.scrolled .header__cart-count {
  color: #231F20;
}
.header.scrolled .header__lang-item,
.header.scrolled .header__lang-current {
  color: #231F20;
}
.header.scrolled .header__lang-dropdown {
  background: #fff;
}
.header__right {
  position: relative;
  transition: 0.3s ease;
}
.header__right svg path {
  transition: 0.3s ease;
}
.header__search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 210px;
  width: 100%;
}
.header__search input {
  border: none;
  outline: none;
  background: transparent;
  padding: 0;
  margin: 0;
  width: 100%;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  transition: 0.3s ease;
  color: #fff;
}
.header__search input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.662745098);
  -moz-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__search input::placeholder {
  color: rgba(255, 255, 255, 0.662745098);
  transition: 0.3s ease;
}
.header__search-results {
  position: absolute;
  top: 150%;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  max-height: 350px;
  overflow-y: auto;
  background: #fff;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: flex;
  flex-flow: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  pointer-events: none;
}
.header__search-results.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.header__search-results-title {
  font-family: Raleway;
  font-weight: 700;
  font-style: Bold;
  font-size: 12px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
  color: #9B9B9B;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(155, 155, 155, 0.168627451);
}
.header__search-results-list {
  display: flex;
  flex-flow: column;
  padding-top: 12px;
}
.header__search-results-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(155, 155, 155, 0.168627451);
  text-decoration: none;
  color: unset;
}
.header__search-results-item:last-child {
  border-bottom: none;
}
.header__search-results-item img {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.header__search-results-item:hover .header__search-results-item-title {
  color: #F15024;
}
.header__search-results-item:hover .header__search-results-item-price {
  color: #F15024;
}
.header__search-results-info {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  gap: 2px;
}
.header__search-results-item-title {
  font-family: Raleway;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
  color: #3A3A3A;
  transition: 0.3s ease;
}
.header__search-results-item-desc {
  font-family: Raleway;
  font-weight: 500;
  font-style: Medium;
  font-size: 12px;
  leading-trim: NONE;
  line-height: 14px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #9B9B9B;
}
.header__search-results-item-price {
  font-family: Raleway;
  font-weight: 700;
  font-style: Bold;
  font-size: 12px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  font-variant-numeric-figure: lining-nums;
  font-variant-numeric-spacing: proportional-nums;
  text-transform: uppercase;
  color: #231F20;
  transition: 0.3s ease;
}
.header__cart-dot {
  width: 8px;
  height: 8px;
  background: #F15024;
  border-radius: 100px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9999;
  opacity: 1;
  transition: 0.3s ease;
}
.header__search-button {
  padding: 9px 16px;
  background: #F15024;
  border-radius: 4px;
  font-family: Raleway;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 100%;
  margin-top: 12px;
  cursor: pointer;
  transition: 0.2s ease;
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  bottom: 20px;
  right: 20px;
}
.header__search-button:hover {
  background: #d9441d;
}
.header__search-no-results {
  font-family: Raleway;
  font-size: 14px;
  color: #6B6B6B;
  padding: 20px 0;
  text-align: center;
}
.header__content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}
.header__left, .header__right {
  width: 40%;
}
.header__left {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
.header__link {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  color: #FFFFFF;
  text-decoration: none;
  text-wrap: nowrap;
  position: relative;
  z-index: 9999;
  transition: 0.3s ease;
}
.header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header__lang-cart {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header__cart {
  display: flex;
  position: relative;
  height: 24px;
  width: 24px;
  cursor: pointer;
}
.header__cart.empty .header__cart-dot {
  opacity: 0;
}
.header__cart-count {
  position: absolute;
  top: 60%;
  left: 45%;
  transform: translate(-50%, -50%);
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  color: #FFFFFF;
  transition: 0.3s ease;
}
.header__lang-container {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  transition: 0.3s ease;
}
.header__lang-container:hover .header__lang-dropdown {
  opacity: 1;
  pointer-events: all;
}
.header__lang-item, .header__lang-current {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  display: flex;
  align-items: center;
  color: #FFFFFF;
  transition: 0.3s ease;
  opacity: 0.5;
  cursor: pointer;
  text-decoration: none;
}
.header__lang-item.active, .header__lang-item:hover, .header__lang-current.active, .header__lang-current:hover {
  opacity: 1;
}
.header__lang-current {
  opacity: 1;
}
.header__submenu {
  opacity: 0;
  left: 0;
  pointer-events: none;
  transform: translateY(-25px);
  transition: 0.3s ease;
  z-index: 999;
  position: fixed;
  width: 100%;
}
.header__submenu::before {
  content: "";
  height: 48px;
  width: 100%;
  top: -48px;
  left: 0;
  position: absolute;
  z-index: 999;
}
.header__submenu.hovered {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
  background: #FFFFFF;
}
.header__submenu-content {
  height: auto;
  width: 100%;
  display: flex;
  gap: 80px;
  padding: 20px 0 40px 0;
}
.header__submenu-cont {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.header__submenu-title {
  font-family: Raleway;
  font-weight: 700;
  font-style: Bold;
  font-size: 12px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
  color: #9B9B9B;
  width: auto;
  min-width: 120px;
}
.header__submenu-list {
  display: flex;
  flex-flow: column;
  gap: 16px;
}
.header__submenu-link {
  font-family: Raleway;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 18px;
  letter-spacing: 0%;
  vertical-align: middle;
  text-decoration: none;
  color: #3A3A3A;
  transition: 0.3s ease;
}
.header__submenu-link:hover {
  color: #F15024;
}
.header__submenu-image {
  width: 382px;
  max-height: 256px;
  height: 100%;
}
.header__lang-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 16px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  background: transparent;
  border-radius: 4px;
  padding: 8px;
  transform: translateX(-8px);
  width: -moz-fit-content;
  width: fit-content;
}
.header__lang-dropdown:hover {
  pointer-events: all;
  opacity: 1;
}
.header__lang-dropdown::before {
  content: "";
  height: 32px;
  width: 100%;
  position: absolute;
  top: -32px;
  left: 0;
  z-index: 99999;
}
.header__burger {
  display: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 999999999;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  transform: translateX(-100%);
}
.mobile-menu.opened {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
.mobile-menu__content {
  display: flex;
  flex-flow: column;
}
.mobile-menu__submenu-link-image {
  width: 100%;
  height: 100px;
  overflow: hidden;
}
.mobile-menu__head {
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(155, 155, 155, 0.7294117647);
}
.mobile-menu__back {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mobile-menu__body {
  display: flex;
  flex-flow: column;
  gap: 60px;
  padding: 28px 12px;
  transform: 0.3s ease;
  transform: translateX(0);
}
.mobile-menu.submenu-open .mobile-menu__body {
  transform: translateX(-100%);
}
.mobile-menu__submenu-block {
  position: absolute;
  inset: 0;
  transform: translateX(100%);
  top: 80px;
  transition: 0.3s ease;
}
.mobile-menu.submenu-open .mobile-menu__submenu-block {
  transform: translateX(0);
}
.mobile-menu__submenu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.mobile-menu__footer {
  display: flex;
  flex-flow: column;
  width: 100%;
  gap: 60px;
  border-top: 1px solid rgba(155, 155, 155, 0.5803921569);
  padding-top: 16px;
}
.mobile-menu__footer-lang {
  display: flex;
  align-items: center;
  gap: 16px;
}
.mobile-menu__menu-list {
  display: flex;
  align-items: center;
  gap: 16px;
}
.mobile-menu__list {
  display: flex;
  flex-flow: column;
  gap: 24px;
}
.mobile-menu__contacts {
  padding: 16px;
  background: #F3F3F3;
  display: flex;
  flex-flow: column;
  gap: 12px;
}
.mobile-menu__contacts-link {
  font-family: Raleway;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  color: #F15024;
  text-decoration: none;
  -webkit-text-decoration: uppercase;
          text-decoration: uppercase;
}
.mobile-menu__link {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  color: #3A3A3A;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu__footer-lang-item {
  font-family: Raleway;
  font-weight: 500;
  font-style: Medium;
  font-size: 12px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #9B9B9B;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s ease;
}
.mobile-menu__footer-lang-item.active, .mobile-menu__footer-lang-item:hover {
  color: #3A3A3A;
}
.mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mobile-menu__title {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  color: #9B9B9B;
}
.mobile-menu__submenu-link {
  display: flex;
  flex-flow: column;
  gap: 6px;
  text-decoration: none;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  display: flex;
  align-items: flex-start;
  text-transform: uppercase;
  color: #3A3A3A;
}

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

.mobile-search {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 999999999;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: 0.3s ease;
}
.mobile-search.opened {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
.mobile-search__content {
  display: flex;
  flex-flow: column;
  height: 100%;
}
.mobile-search__head {
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(155, 155, 155, 0.7294117647);
}
.mobile-search__title {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  color: #3A3A3A;
}
.mobile-search__close {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mobile-search__body {
  padding: 16px;
  display: flex;
  flex-flow: column;
  gap: 16px;
  height: 100%;
  overflow-y: auto;
}
.mobile-search__input-item {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  font-size: 14px;
  line-height: 20px;
  background: #F3F3F3;
  font-family: Raleway;
  font-weight: 500;
  font-style: Medium;
  font-size: 12px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: capitalize;
  outline: none;
  border: none;
}
.mobile-search .header__search-results {
  position: static;
  opacity: 1;
  pointer-events: all;
  transform: none;
  box-shadow: none;
  display: block;
  width: 100%;
}

body.mobile-search-open {
  overflow: hidden;
}

.header__search-mobile-btn {
  display: none;
}

@media (max-width: 992px) {
  .header__search {
    cursor: pointer;
  }
  .header__search-mobile-btn {
    display: block;
    cursor: pointer;
  }
}
@media (min-width: 993px) {
  .mobile-search {
    display: none;
  }
}
@media (max-width: 992px) {
  .header__content {
    padding: 8px 0;
  }
  .header__burger {
    display: block;
    cursor: pointer;
  }
  .header__right {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .header__lang-cart {
    gap: 16px;
    height: 24px;
  }
  .header__left {
    display: none;
  }
  .header__search-input {
    display: none;
  }
  .header__search-results {
    display: none;
  }
  .header__lang-container {
    display: none;
  }
}/*# sourceMappingURL=header.css.map */