@font-face {
  font-family: 'Gilroy-Regular';
  src: url('/fonts/Gilroy-Regular.ttf');
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Gilroy-Regular', sans-serif;
  font-style: normal;
}

header {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: fit-content;
}
.announsment {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 16px;
  word-spacing: 2px;
  color: #000000;
  width: 100%;
  height: 40px;
  background: #f3f3f5;
  position: relative;
}

.delete__add {
  display: none;
}

.announsment span {
  color: #997f72;
  padding: 0 3px;
}

.announsment__close__icon {
  position: absolute;
  right: 16px;
  top: 12px;
  cursor: pointer;
}

#mobile__hamburger {
  cursor: pointer;
}

.header__nav {
  display: flex;
  align-items: center;
  width: 100%;
  height: 44px;
  background-color: #2c2c2e;
  position: fixed;
  top: 40px;
  z-index: 1000;
}

.top {
  top: 0;
}

.nav__list {
  display: flex;
  align-items: center;
  min-width: 960px;
  width: 90%;
  justify-content: space-evenly;
  margin: 0 auto;
  list-style-type: none;
}

.nav__list__item {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 16px;
  color: #ffffff;
  cursor: pointer;
}

.nav__logo__icon {
  margin-right: 50px;
}
.nav__user__icon {
  margin-right: 40px;
}
.mobile__only {
  display: none;
}

.menu {
  position: absolute;
  width: 260px;
  height: calc(100% - 84px);
  top: 84px;
  left: -260px;
  transition: all 0.4s ease-in;
}
.plp--nav .menu {
  height: 60vh;
  top: 44px;
}
.open {
  left: 0;
}
.menu__list {
  padding: 20px 40px;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(1, 1, 1, 0.8);
}
.nav__list__item a {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.gift__box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #111111;
  border: 1px solid #ffffff;
  border-radius: 10px;
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
}

@media (max-width: 960px) {
  .desctop__only {
    display: none;
  }
  .opener__wrap {
    padding-top: 84px;
  }
  .mobile__only {
    display: block;
  }
  .nav__list {
    min-width: 360px;
    justify-content: unset;
    padding: 0 16px;
  }
  .announsment {
    font-size: 12px;
    line-height: 14px;
    word-spacing: normal;
  }
  .mobile__list__item {
    margin-left: 50%;
    transform: translate(-50%);
  }
  .nav__user__icon,
  .nav__cart__icon {
    width: 16px;
    height: 16px;
  }
  .nav__user__icon {
    margin-right: 16px;
  }
  .mobile--right-icons {
    margin-left: auto;
  }
  .nav__logo__icon {
    margin: 0;
  }
  .announsment {
    position: fixed;
  }
  .gift__box {
    right: 16px;
    bottom: 16px;
  }
}
