.header {
  background-color: #fff;
  padding-bottom: 32px;
}
.header__inner {
  width: 100%;
  max-width: 1344px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media (min-width: 768px) and (max-width: 1343px) {
  .header__inner {
    padding-inline: 40px;
  }
}
@media (min-width: 1344px) {
  .header__inner {
    padding-inline: 0;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.header__left {
  display: flex;
  align-items: center;
  gap: 36px;
}
.header__logo {
  display: block;
  flex-shrink: 0;
  width: 104px;
  height: 56px;
}
.header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header__nav {
  display: none;
}
@media (min-width: 1344px) {
  .header__nav {
    display: block;
  }
}
@media (min-width: 1344px) {
  .header__left {
    flex: 1;
  }
  .header__cart {
    margin-left: auto;
  }
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__menu-link {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  color: #000;
  white-space: nowrap;
  position: relative;
}
.header__menu-link:focus-visible {
  outline: 2px solid #3b67db;
  outline-offset: 2px;
}

.header__menu-link:after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width:100%;
  height: 2px;
  background-color: #676c7a;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-in;
}

.header__menu-link:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}

.header__menu-link--active:after {
  transform: scaleX(1);
  transform-origin: left;
}


@media (hover: hover) {
  .header__menu-link:hover {
    opacity: 0.7;

  }
}
.header__burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
}
.header__burger:focus-visible {
  outline: 2px solid #3b67db;
  outline-offset: 2px;
}
@media (min-width: 1344px) {
  .header__burger {
    display: none;
  }
}
.header__burger-icon {
  width: 24px;
  height: 24px;
  position: relative;
}
.header__burger-icon span, .header__burger-icon::before, .header__burger-icon::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  height: 2px;
  background-color: #000;
  border-radius: 1px;
  transition: top 0.3s ease-in-out, transform 0.3s ease-in-out, opacity 0.2s ease-in-out;
}
.header__burger-icon::before {
  top: 6px;
}
.header__burger-icon span {
  top: 11px;
}
.header__burger-icon::after {
  top: 16px;
}
.header__burger[aria-expanded=true] .header__burger-icon::before {
  top: 11px;
  transform: rotate(45deg);
}
.header__burger[aria-expanded=true] .header__burger-icon span {
  opacity: 0;
}
.header__burger[aria-expanded=true] .header__burger-icon::after {
  top: 11px;
  transform: rotate(-45deg);
}
.header__controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 767px) {
  .header {
    padding-bottom: 24px;
  }
  .header__inner {
    padding-block: 12px;
  }
  .header__left {
    gap: 12px;
  }
  .header__logo {
    width: 80px;
    height: 43px;
  }
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease-in-out, visibility 0s linear 0.3s;
}
@media (min-width: 1344px) {
  .mobile-nav {
    display: none;
  }
}
.mobile-nav.is-open {
  visibility: visible;
  transform: scaleY(1);
  transition: transform 0.3s ease-in-out, visibility 0s;
}
.mobile-nav__menu {
  display: flex;
  flex-direction: column;
  padding: 24px 16px;
  gap: 16px;
}
.mobile-nav__link {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  color: #000;
  padding-block: 8px;
}

/*# sourceMappingURL=header.css.map */
