.header {
  background-color: var(--dark);
  --color: #A0A0A4;
  position: sticky;
  top: -1px;
  z-index: 999;
}
.header-wrap {
  display: flex;
  justify-content: space-between;
  padding-top: 9px;
}
.header-top {
  display: flex;
  padding: 15px 0;
  justify-content: space-between;
  align-items: center;
}
.header-logo img {
  width: 210px;
  height: 39px;
  -o-object-fit: contain;
     object-fit: contain;
}
.header-logo__text {
  margin-top: 5px;
}
.header-contact {
  display: flex;
}
.header-contact svg, .header-contact img {
  width: 14px;
  height: 14px;
  --svgWidth: 14px;
  --svgHeight: 14px;
  margin-right: 10px;
}
.header-contact__title {
  margin-bottom: 5px;
}
.header-contact__item {
  --color: #fff;
}
.header-btn {
  --color: #fff;
}
.header-bottom {
  display: flex;
  align-items: center;
}
.header-social {
  display: flex;
}
.header-menu {
  display: flex;
  margin: 0;
  position: relative;
  width: 100%;
  flex: 1 1 auto;
}
.header-menu li {
  list-style-type: none;
}
.header-menu li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--color, var(--dark));
}
@media (max-width: 1401px) {
  .header-menu li a {
    font-size: 14px;
    line-height: 120%;
  }
}
.header-menu > li {
  height: 100%;
  display: flex;
  margin-bottom: 0;
  padding: 14px 0;
  position: relative;
  flex-grow: 1;
}
.header-menu > li:first-child {
  flex-grow: 0.5;
}
.header-menu > li:first-child a {
  justify-content: flex-start;
}
.header-menu > li:last-child {
  flex-grow: 0.5;
}
.header-menu > li:last-child a {
  justify-content: flex-end;
}
.header-menu > li a, .header-menu > li ul {
  z-index: 2;
}
.header-menu > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  --color: #F4F1E9;
  cursor: pointer;
}
.header-menu > li > a svg {
  width: 8px;
  height: 5px;
  --svgColor: #F4F1E9;
  transition: all 0.3s;
  margin-left: 5px;
}
.header-menu > li.active {
  color: var(--main);
}
.header-menu > li.active > a {
  color: var(--main);
}
.header-menu > li.active svg {
  --svgColor: var(--main);
}
.header-menu > li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
  display: block;
}
.header-menu > li:hover > a, .header-menu > li:hover > a span {
  --color: var(--main);
}
.header-menu > li:hover svg {
  transform: rotate(180deg);
  stroke: var(--main);
}
.header-menu .sub-menu {
  transition: all 0.3s;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  top: 100%;
  left: 0;
  width: -moz-max-content;
  width: max-content;
  z-index: 10;
  background-color: var(--dark);
  padding: 30px 54px 30px 40px;
  border-radius: 0px 0px 15px 15px;
  display: none;
}
.header-menu .sub-menu li {
  margin-bottom: 0;
}
.header-menu .sub-menu li:not(:last-child) {
  margin-bottom: 10px;
}
.header-menu .sub-menu li .sub-menu {
  display: none;
}
.header-menu .sub-menu li a {
  display: block;
  --color: #fff;
}
.header-menu .sub-menu li:hover a {
  --color: var(--main);
}

.social-item {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--main);
  border-radius: 50%;
}
.social-item img, .social-item svg {
  max-width: 35px;
  max-height: 35px;
  width: auto;
  height: auto;
  --svgWidth: auto;
  --svgHeight: auto;
}
.social-item img path, .social-item svg path {
  fill: #FFFFFF;
}
.social-item:not(:last-child) {
  margin-right: 15px;
}
.social-item:hover {
  opacity: 0.7;
}

@media (max-width: 592px) {
  .header-social--hidden {
    display: none;
  }
  .header {
    position: sticky;
    top: -1px;
    z-index: 999;
  }
}/*# sourceMappingURL=header.css.map */

/* Header search button (desktop menu) */
.header-search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: 10px;
  background: transparent;
  border: 0;
  color: #F4F1E9;
  cursor: pointer;
  border-radius: 10px;
  flex: 0 0 auto;
}
.header-search-btn svg {
  width: 22px;
  height: 22px;
}
.header-search-btn:hover {
  color: var(--main);
  background: rgba(255, 255, 255, 0.06);
}

/* Header search modal */
.header-search-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
}
.header-search-modal.is-open {
  display: block;
}
.header-search-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}
.header-search-modal__dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(860px, calc(100vw - 32px));
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}
.header-search-modal__close {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  cursor: pointer;
  color: #111;
}
.header-search-modal__close:hover {
  background: rgba(0, 0, 0, 0.08);
}
.header-search-modal__title {
  margin: 0 0 14px 0;
  font-size: 22px;
  line-height: 1.25;
  color: #111;
}
.header-search-modal__input {
  width: 100%;
  height: 52px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 0 14px;
  outline: none;
  font-size: 16px;
}
.header-search-modal__input:focus {
  border-color: rgba(0, 0, 0, 0.35);
}
.header-search-modal__status {
  margin-top: 10px;
  color: rgba(0, 0, 0, 0.7);
  font-size: 14px;
  min-height: 18px;
}
.header-search-modal__results {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-height: min(520px, calc(100vh - 240px));
  overflow: auto;
  padding-right: 4px;
}
.header-search-modal__item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.header-search-modal__item:hover {
  border-color: rgba(0, 0, 0, 0.14);
  background: rgba(0, 0, 0, 0.02);
}
.header-search-modal__img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
}
.header-search-modal__name {
  color: #111;
  font-size: 15px;
  line-height: 1.35;
}
.header-search-modal__price {
  margin-top: 4px;
  color: rgba(0, 0, 0, 0.75);
  font-size: 14px;
}