.headern {
  background: rgba(240, 234, 255, 1);
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  border-bottom: 1px solid #ffbae5;
}

.headern-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 8px;
}

.headern-top__col {
  min-width: 260px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.headern-top__col.lst {
  justify-content: flex-end;
}

.header__icons {
  display: flex;
  align-items: center;
  flex-flow: wrap;
  gap: 8px;
}

.link-whishlist {
  display: flex;
}

.link-whishlist:hover svg {
  fill: rgba(255, 209, 252, 1);
}

.header__cart > a {
  display: flex;
}

.header__cart svg g {
  transition: 0.3s ease;
}

.header__cart:hover svg g {
  fill: rgba(255, 209, 252, 1);
}

.header__user {
  display: flex;
}

.header__user svg path:nth-child(1) {
  transition: 0.3s ease;
}

.header__user:hover svg path:nth-child(1) {
  fill: rgba(255, 209, 252, 1);
}

@media (max-width: 480px) {
  .header__icons a img {
    width: 100%;
  }
}


.headern__logo {
  font-size: 38px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
}

.headern__menu {
  position: relative;
  display: flex;
  justify-content: center;
}

.headern__menu .menu {
  display: flex;
  gap: 16px;
}

.headern__menu .menu li {
  list-style: none;
  border: 1px solid transparent;
}

.headern__menu .menu > li > a {
  font-size: 16px;
  font-weight: 500;
  line-height: 54px;
  padding: 0 8px;
}

.headern__menu .menu > .menu-item-has-children > a {
  pointer-events: none;
}

.headern__menu .menu li .sub-menu {
  visibility: hidden;
  opacity: 0;
  border: 1px solid rgba(38, 38, 38, 1);
  background: rgba(212, 199, 250, 1);
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 16px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  /* max-width: 890px; */
}

.headern__menu .menu li .sub-menu li a {
  line-height: 40px;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease;
}

.headern__menu .menu li .sub-menu li a:hover {
  color: rgba(112, 102, 137, 1);
}

.headern__menu .menu .menu-item-has-children {
  border: 1px solid rgba(38, 38, 38, 0);
}

.headern__menu .menu > li:hover {
  background: rgba(212, 199, 250, 1);
  border: 1px solid rgba(38, 38, 38, 1);
}

.headern__menu .menu .menu-item-has-children:hover .sub-menu {
  visibility: visible;
  opacity: 1;
}

.hamburger {
  display: none;
}

.header__search {
  display: flex;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  background: rgba(240, 234, 255, 1);
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 100000;
  display: none;
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(38, 38, 38, 1);
  padding: 10px 16px;
}

.mobile-menu__block {
  padding: 0 16px;
}

.mobile-menu__links {
  border-top: 1px solid rgba(38, 38, 38, 1);
  padding: 16px;
}

.mobile-menu__link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  line-height: 44px;
}

.mobile-menu .menu,
.mobile-menu .sub-menu {
  list-style: none;
}

.mobile-menu .menu li a,
.mobile-menu .sub-menu li a {
  list-style: none;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}

.mobile-menu .menu .menu-item-has-children a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/arrow-menu.svg");
  width: 24px;
  height: 24px;
}

.mobile-menu .menu li .sub-menu {
  display: none;
}

.mobile-menu__back {
  display: flex;
  align-items: center;
  color: rgba(112, 102, 137, 1);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  /* transition: 0.3s; */
  gap: 4px;
}

.mobile-menu__back svg {
  position: relative;
  top: -1px;
}

.mobile-menu__back.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__close {
  display: flex;
}

.mobile-menu__close svg {
  width: 32px;
  height: auto;
}

.mm-contacts {
  position: relative;
  border-top: 1px solid rgba(38, 38, 38, 1);
  padding: 32px 16px;
}

.mm-contacts__title {
  position: relative;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 24px;
  display: block;
}

.mm-contacts .footer__social {
  width: 100%;
  line-height: 40px;
}

.mm-contacts .footer__location {
  margin-top: 0;
}

@media (max-width: 1199px) {
  .hamburger {
    display: flex;
  }
  .headern__menu {
    display: none;
  }
  .headern {
    overflow: hidden;
  }
  .headern-top {
    padding: 6px 0;
  }
  .link-whishlist {
    display: none;
  }
}

@media (max-width: 767px) {
  .headern-top__col {
    min-width: 90px;
  }
  .headern__logo {
    font-size: 24px;
  }
}
