.mobile-nav-sheet,
.mobile-nav-backdrop {
  display: none;
}

@media (max-width: 760px) {
  body.mobile-menu-locked {
    overflow: hidden;
  }

  .mobile-nav-backdrop {
    position: fixed;
    z-index: 79;
    inset: 76px 0 0;
    display: block;
    background: rgba(34, 18, 42, .42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .mobile-nav-sheet {
    position: fixed;
    z-index: 80;
    top: 76px;
    right: 0;
    display: flex;
    width: min(330px, 88vw);
    height: calc(100vh - 76px);
    flex-direction: column;
    padding: 24px 24px 30px;
    background: #fff;
    box-shadow: -20px 30px 60px rgba(50, 18, 63, .2);
    transform: translateX(105%);
    transition: transform 220ms cubic-bezier(.2,.7,.2,1);
  }

  .mobile-nav-sheet.open {
    transform: translateX(0);
  }

  .mobile-nav-backdrop.open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav-sheet nav {
    display: grid;
    gap: 0;
  }

  .mobile-nav-sheet nav a {
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-nav-sheet nav a::after {
    color: var(--brand-blue);
    content: "→";
    font-size: 23px;
    font-weight: 400;
  }

  .mobile-nav-tools {
    display: grid;
    gap: 22px;
    margin-top: auto;
    padding-top: 28px;
  }

  .mobile-language {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--line);
  }

  .mobile-language button {
    min-height: 44px;
    border: 0;
    border-right: 1px solid var(--line);
    background: #fff;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
  }

  .mobile-language button:last-child {
    border-right: 0;
  }

  .mobile-language button.active {
    background: var(--brand-purple);
    color: #fff;
  }

  .mobile-login {
    min-height: 50px;
    border: 0;
    background: var(--brand-purple);
    color: #fff;
    font-weight: 800;
  }

  .editorial-storefront .menu {
    position: relative;
    z-index: 81;
  }

  .editorial-storefront .menu[aria-expanded="true"] {
    border-color: var(--brand-purple);
    background: var(--brand-purple);
    color: #fff;
  }

  .editorial-storefront .hero-visual {
    overflow: hidden;
    background: #f4f6f9;
  }

  .editorial-storefront .hero-visual > img:first-of-type,
  .editorial-storefront .hero-side-image:nth-of-type(2),
  .editorial-storefront .hero-side-image:nth-of-type(3) {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
  }
}
