.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 32px 10px;

  @media screen and (max-width: 768px) {
    padding: 32px 24px 25px;
  }
}

.l_logo {
  @media screen and (max-width: 768px) {
    img {
      height: 31px;
    }
  }
}

.l_menu {
  position: fixed;
  top: 32px;
  right: 32px;
  z-index: 999;

  .main-menu {
    display: flex;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }

  span {
    display: inline-block;
    width: 48px;
    height: 1px;
    background-color: #fcfafa;
  }

  @media screen and (max-width: 768px) {
    top: 23px;
    right: 24px;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 997;

  @media screen and (max-width: 431px) {
    background: rgba(0, 0, 0, 0.2);
  }
}

.overlay.open {
  opacity: 1;
  visibility: visible;
}

.nav {
  position: fixed;
  top: 0;
  right: -430px;
  z-index: 999;
  width: 320px;
  height: 100%;
  /* background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px); */
  /* box-shadow: -5px 0 10px rgba(0, 0, 0, 0.2); */
  background-color: #000;
  transition: right 0.3s ease;
  padding: 48px 0;
  overflow-y: auto;

  @media screen and (max-width: 431px) {
    width: 280px;
    right: -100%;
    padding: 32px 0;
  }
}

.nav::-webkit-scrollbar {
  width: 2px;
}
.nav::-webkit-scrollbar-track {
  background: transparent;
}
.nav::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0;
}

.nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: auto;
  z-index: 998;
}

.nav.open {
  right: 0;
}

.nav-container {
  position: absolute;
  width: 100%;
  z-index: 1000;
}

.close-nav {
  display: inline-block;
  text-align: right;
  width: 100%;
  padding: 0 51px;
  margin-bottom: 80px;

  @media screen and (max-width: 431px) {
    padding: 0 32px;
    margin-bottom: 40px;
  }

  img {
    display: inline-block;
    cursor: pointer;
  }
}

.nav-area-1 {
  font-family: var(--font-dm-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fcfafa;
  padding: 0 32px;
  margin-bottom: 44px;

  @media screen and (max-width: 768px) {
    margin-top: 0;
    padding: 0 32px;
    margin-bottom: 30px;
  }

  ul li {
    margin-bottom: 16px;
  }
}

.nav-area-2 {
  font-family: var(--font-dm-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  padding: 0 32px;
  margin-bottom: 44px;
  color: #fcfafa;

  @media screen and (max-width: 768px) {
    margin-top: 24px;
    padding: 0 32px;
    margin-bottom: 30px;
    font-size: 13px;
  }

  ul {
    display: flex;
    flex-wrap: wrap;

    li {
      width: 100px;
      margin-bottom: 16px;
    }
  }
}

.nav-area-3 {
  font-family: var(--font-dm-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  padding: 0 32px;
  color: #fcfafa;

  @media screen and (max-width: 768px) {
    margin-top: 24px;
    padding: 0 32px;
    font-size: 13px;
  }

  h3 {
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 2%;
    margin-bottom: 8px;
    font-weight: 400 !important;

    @media screen and (max-width: 768px) {
      font-size: 18px;
      line-height: 100%;
      letter-spacing: 2%;
    }
  }

  .link-map {
    display: inline-block;
    text-decoration: underline;
    margin-bottom: 20px;
  }

  .btn-to-store {
    display: block;
    font-family: var(--font-dm-sans);
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 6%;
    color: #fcfafa;
    padding: 10px 0;
    border: 1px solid #fcfafa;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    margin-top: 32px;

    @media screen and (max-width: 768px) {
      font-size: 12px;
      line-height: 22px;
      letter-spacing: 6%;
    }
  }
}
