body {
  background: #fff;
  overflow-x: clip;
}

main {
  overflow: clip;
}

#header-group-subscription-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
}

#lp-header-wrapper {
  position: relative;
  overflow-x: clip;

  .lp-header {
    position: absolute;
    top: 0;
    left: 0;
    height: 70px;
    width: 100vw;

    padding: 0 60px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background-color: white;

    @media screen and (max-width: 750px) {
      padding: 0 14px;
    }

    .lp-header__logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;

      @media screen and (max-width: 750px) {
        flex-direction: column;
        gap: 0;
      }

      .lp-header__logo--logo {
        height: 44px;

        @media screen and (max-width: 750px) {
          height: 36px;
        }
      }

      .lp-header__logo--title {
        font-size: 20px;
        font-family: var(--mymoods-font-poppins), sans-serif;
        font-weight: var(--mymoods-font-weight-extrabold);
        color: black;
        text-transform: uppercase;
        padding-top: 18px;

        @media screen and (max-width: 750px) {
          padding-top: 0;
          font-size: 14px;
        }
      }
    }

    .lp-header-links {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 24px;

      @media screen and (max-width: 1460px) {
        gap: 12px;
      }

      @media screen and (max-width: 1260px) {
        gap: 24px;
      }

      .lp-header-link {
        font-family: Noto sans JP, sans-serif;
        font-size: 14px;
        font-weight: bold;
        color: #1F1F1F;

        &.scroll-button {
          cursor: pointer;

          @media screen and (max-width: 1260px) {
            display: none;
          }
        }

        a {
          text-decoration: none;
          color: inherit;
        }

        .cart {
          position: relative;
          color: #1F1F1F;

          display: flex;
          align-items: center;
          justify-content: center;

          .cart-count-bubble {
            background-color: #F45151;
            top: -5px;
            right: -10px;
            left: auto;
            bottom: auto;
          }
        }

        &.hamburger {
          background: none;
          border: none;

          display: none;

          @media screen and (max-width: 1260px) {
            display: flex;
            justify-content: center;
            align-items: center;
          }

          .hamburger-image {
            width: 30px;
            height: 30px;
          }
        }
      }
    }
  }

  #lp-header-menu {
    position: absolute;
    top: 0;
    left: 100vw;
    width: 100vw;
    height: 100vh;
    background-color: black;
    padding: 15px;
    overflow-y: scroll;
    overflow-x: hidden;

    z-index: 500;

    transition: all ease-in-out 0.3s;

    &.active {
      left: 0;
    }

    .lp-header-menu-header {
      display: flex;
      align-items: center;
      justify-content: center;

      margin-bottom: 48px;
      position: relative;

      .lp-header-menu-header--anchor {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #6A6A6A;
        text-decoration: none;

        .lp-header-logo--text {
          color: #6A6A6A;
          font-family: var(--mymoods-font-poppins), sans-serif;
          font-weight: var(--mymoods-font-weight-extrabold);
          text-transform: uppercase;
        }
      }

      #lp-header-menu-close {
        background: none;
        border: none;
        color: white;
        position: absolute;
        top: 0;
        right: 0;

        .close {
          width: 25px;
          height: 25px;
        }
      }
    }

    .lp-header-menu-content {
      .lp-header-menu-link__wrapper {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;

        @media screen and (max-width: 750px) {
          margin-bottom: 20px;
        }

        .lp-header-menu-link {
          font-family: Noto sans JP, sans-serif;
          font-size: 24px;
          letter-spacing: 2px;
          font-weight: bold;
          color: white;
          cursor: pointer;
          text-align: center;
          text-decoration: none;

          @media screen and (max-width: 750px) {
            font-size: 18px;
          }

          a {
            text-decoration: none;
            color: inherit;
          }
        }
      }

      .lp-header-menu__badge {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 48px;
        color: var(--mymoods-beige);
        background-color: #363636;
        border-radius: 6px;
        padding-block: 24px;
        height: fit-content;
        text-decoration: none;
        margin-block: 40px;

        @media screen and (max-width: 768px) {
          padding-block: 0;
        }

        .lp-header-menu__badge--logo {
          max-width: 140px;

          svg {
            display: block;
            width: 100%;
            color: var(--mymoods-beige);
          }
        }

        .lp-header-menu__badge--text {
          text-transform: uppercase;
          font-family: var(--mymoods-font-poppins), sans-serif;
          font-size: 14px;
          font-weight: var(--mymoods-font-weight-extrabold);

          @media screen and (max-width: 750px) {
            font-size: 14px;
          }
        }
      }

      .lp-header-menu__social-links {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        padding: 0;
        margin: 0 0 80px 0;
        color: white;
        stroke: white;
        list-style: none;

        .menu__social-icons--item {
          width: 36px;
          height: 36px;

          .list-social__link {
            width: 100%;
            padding: 0;

            .svg-wrapper {
              width: unset;
              height: unset;
            }
          }
        }
      }
    }
  }
}
