/**
 * Mobile slide-over — silk drawer: compact, polished, boutique-elegant.
 */

.mobile-menu-trigger__icon {
  width: 1.375rem;
  height: 1.375rem;
  display: block;
}

.mobile-sheet {
  --ms-rose: #9f1239;
  --ms-rose-deep: #881337;
  --ms-rose-soft: #fff1f2;
  --ms-ink: #1c1917;
  --ms-muted: #78716c;
  --ms-line: rgba(159, 18, 57, 0.12);
  --ms-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ms-spring: cubic-bezier(0.32, 0.72, 0, 1);
  color-scheme: light;
}

.mobile-sheet__backdrop {
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(159, 18, 57, 0.18), transparent 55%),
    rgba(28, 25, 23, 0.38);
  backdrop-filter: blur(10px) saturate(1.15);
  -webkit-backdrop-filter: blur(10px) saturate(1.15);
  opacity: 0;
  transition: opacity 360ms var(--ms-ease);
}

.mobile-sheet.is-open .mobile-sheet__backdrop {
  opacity: 1;
}

.mobile-sheet__rail {
  padding-left: max(2.75rem, env(safe-area-inset-left, 0px));
}

.mobile-sheet__panel {
  width: min(18.5rem, calc(100vw - 2.5rem));
  max-width: 18.5rem;
  background: transparent;
  border-left: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 1.15rem 0 0 1.15rem;
  box-shadow:
    -1px 0 0 rgba(159, 18, 57, 0.06),
    -18px 0 56px rgba(28, 25, 23, 0.18),
    -4px 0 18px rgba(159, 18, 57, 0.08);
  transform: translate3d(108%, 0, 0) scale(0.985);
  opacity: 0.88;
  transition:
    transform 420ms var(--ms-spring),
    opacity 300ms var(--ms-ease);
  will-change: transform;
  overflow: hidden;
}

.mobile-sheet.is-open .mobile-sheet__panel {
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
}

.mobile-sheet__inner {
  position: relative;
  color: var(--ms-ink);
  background:
    linear-gradient(165deg, rgba(255, 241, 242, 0.95) 0%, rgba(255, 255, 255, 0.98) 28%, #ffffff 100%);
  border-radius: inherit;
  isolation: isolate;
  opacity: 0;
  transform: translate3d(0.65rem, 0, 0);
  transition:
    opacity 280ms var(--ms-ease) 50ms,
    transform 380ms var(--ms-spring) 30ms;
}

.mobile-sheet__inner::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5.5rem;
  pointer-events: none;
  background:
    radial-gradient(80% 120% at 0% 0%, rgba(244, 63, 94, 0.1), transparent 70%),
    radial-gradient(60% 100% at 100% 0%, rgba(253, 164, 175, 0.14), transparent 65%);
  z-index: 0;
}

.mobile-sheet__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  z-index: 0;
  border-radius: inherit;
}

.mobile-sheet.is-open .mobile-sheet__inner {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.mobile-sheet__header,
.mobile-sheet__body,
.nav-stealth-login--sheet {
  position: relative;
  z-index: 1;
}

.mobile-sheet__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  flex-shrink: 0;
  padding: 0.55rem 0.5rem 0.5rem 0.55rem;
  border-bottom: 1px solid var(--ms-line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.42));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.mobile-sheet__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
  padding: 0.15rem 0.25rem;
  margin-left: 0.15rem;
  text-decoration: none;
  color: var(--ms-ink);
  touch-action: manipulation;
  border-radius: 0.65rem;
  transition: background-color 160ms ease;
}

.mobile-sheet__brand:hover {
  background: rgba(255, 241, 242, 0.65);
}

.mobile-sheet__brand:focus-visible {
  outline: 2px solid var(--ms-rose);
  outline-offset: 2px;
}

.mobile-sheet__logo {
  width: 1.65rem;
  height: 1.65rem;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 0.3rem;
  transform: scale(var(--site-logo-zoom, 1));
  transform-origin: center center;
  box-shadow:
    0 0 0 1.5px rgba(255, 255, 255, 0.9),
    0 0 0 2.5px rgba(159, 18, 57, 0.18);
}

.mobile-sheet__logo.mobile-sheet__logo--square {
  border-radius: 0.3rem;
}

.mobile-sheet__logo.mobile-sheet__logo--circle {
  border-radius: 50%;
}

.mobile-sheet__logo.mobile-sheet__logo--rectangle {
  width: auto;
  max-width: 6.5rem;
  height: 1.65rem;
  object-fit: contain;
  border-radius: 0.25rem;
}

.mobile-sheet__brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.1rem;
  min-width: 0;
  line-height: 1.05;
}

.mobile-sheet__brand-zh,
.mobile-sheet .mobile-sheet__brand-zh.font-chinese {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ms-rose) !important;
  white-space: nowrap;
}

.mobile-sheet__brand-en {
  font-family: "Dancing Script", "Times New Roman", Georgia, serif;
  font-size: 0.72rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.04em;
  color: var(--ms-muted) !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Legacy class kept for older markup */
.mobile-sheet__brand-name {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ms-rose);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-sheet__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--ms-muted);
  box-shadow: 0 1px 2px rgba(28, 25, 23, 0.04);
  touch-action: manipulation;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.mobile-sheet__close:hover,
.mobile-sheet__close:focus-visible {
  background: var(--ms-rose-soft);
  border-color: rgba(159, 18, 57, 0.18);
  color: var(--ms-rose);
  box-shadow: 0 2px 8px rgba(159, 18, 57, 0.12);
}

.mobile-sheet__close:active {
  transform: scale(0.94);
}

.mobile-sheet__close:focus-visible {
  outline: 2px solid var(--ms-rose);
  outline-offset: 2px;
}

.mobile-sheet__body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0.4rem 0.45rem calc(0.45rem + env(safe-area-inset-bottom, 0px));
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(159, 18, 57, 0.25) transparent;
}

.mobile-sheet__profile {
  padding: 0.4rem 0.5rem;
  border: 1px solid rgba(159, 18, 57, 0.1);
  border-radius: 0.85rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 241, 242, 0.55));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 1px 3px rgba(28, 25, 23, 0.04);
  color-scheme: light;
  flex-shrink: 0;
}

.mobile-sheet__profile-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0;
}

.mobile-sheet__profile-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  background: linear-gradient(150deg, #ffe4e6, #fecdd3 55%, #fda4af);
  border: 1px solid rgba(244, 63, 94, 0.2);
  color: var(--ms-rose-deep);
  font-size: 0.75rem;
  font-weight: 750;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(159, 18, 57, 0.12);
}

.mobile-sheet__profile-copy {
  min-width: 0;
  flex: 1 1 auto;
}

.mobile-sheet__profile-name {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ms-ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-sheet__profile-status {
  margin-top: 0.05rem;
  font-size: 0.6rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  color: var(--ms-rose);
}

.mobile-sheet__profile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.mobile-sheet__profile-logout {
  margin: 0;
  padding: 0;
  border: 0;
  flex-shrink: 0;
}

.mobile-sheet__logout-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  min-height: 0;
  padding: 0;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ms-muted);
  font-size: 0.75rem;
  font-weight: 650;
  cursor: pointer;
  touch-action: manipulation;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.mobile-sheet__logout-btn .mobile-sheet__link-icon {
  width: 1rem;
  height: 1rem;
  color: inherit;
  opacity: 1;
}

.mobile-sheet__logout-btn .mobile-sheet__link-icon .nav-icon-svg {
  width: 1rem;
  height: 1rem;
}

.mobile-sheet__logout-btn:hover,
.mobile-sheet__logout-btn:focus-visible {
  background: var(--ms-rose-soft);
  border-color: rgba(159, 18, 57, 0.2);
  color: var(--ms-rose);
  outline: none;
  box-shadow: 0 2px 8px rgba(159, 18, 57, 0.1);
}

.mobile-sheet__logout-btn:focus-visible {
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 4px rgba(159, 18, 57, 0.3);
}

.mobile-sheet__nav {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1 1 auto;
  min-height: 0;
}

.mobile-sheet__link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 2.85rem;
  padding: 0.55rem 0.7rem;
  border-radius: 0.9rem;
  color: #44403c !important;
  -webkit-text-fill-color: #44403c;
  font-size: 1.0625rem;
  font-weight: 700;
  text-decoration: none;
  touch-action: manipulation;
  background: linear-gradient(180deg, #ffffff 0%, #fffafa 48%, #fff7f8 100%);
  border: 1.5px solid #fecdd3;
  border-top-color: #fff;
  border-bottom-color: #fda4af;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -2px 3px rgba(190, 18, 60, 0.04),
    0 1px 0 rgba(255, 255, 255, 0.7),
    0 2px 0 #ffe4e6,
    0 5px 12px rgba(136, 19, 55, 0.08);
  transition:
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 140ms ease;
}

.mobile-sheet__link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 0.6rem;
  background: linear-gradient(180deg, #ffffff 0%, #fff1f2 100%);
  border: 1px solid rgba(251, 113, 133, 0.28);
  border-top-color: rgba(255, 255, 255, 0.95);
  border-bottom-color: rgba(251, 113, 133, 0.35);
  color: #be123c;
  opacity: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 2px 0 #ffe4e6,
    0 3px 6px rgba(136, 19, 55, 0.08);
}

.mobile-sheet__link-icon .nav-icon-svg {
  width: 1.15rem;
  height: 1.15rem;
  color: inherit;
  stroke: currentColor;
}

.mobile-sheet__link-label {
  min-width: 0;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: inherit !important;
  -webkit-text-fill-color: inherit;
}

.mobile-sheet__link:hover,
.mobile-sheet__link:focus-visible {
  background: linear-gradient(180deg, #ffffff 0%, #fff1f2 50%, #ffe4e6 100%);
  border-color: #fda4af;
  border-top-color: #fff;
  border-bottom-color: #fb7185;
  color: #9f1239 !important;
  -webkit-text-fill-color: #9f1239;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 #fff,
    inset 0 -2px 3px rgba(190, 18, 60, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.75),
    0 3px 0 #fecdd3,
    0 8px 16px rgba(136, 19, 55, 0.12);
}

.mobile-sheet__link:active {
  transform: translateY(2px);
  box-shadow:
    inset 0 2px 4px rgba(190, 18, 60, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.55),
    0 1px 0 #fecdd3,
    0 3px 8px rgba(136, 19, 55, 0.08);
}

.mobile-sheet__link:focus-visible {
  outline: 2px solid #fb7185;
  outline-offset: 2px;
}

/* Soft blush active — never dark-red fill with dark ink */
.mobile-sheet__link.is-active {
  background: linear-gradient(180deg, #fff7f8 0%, #ffe4e6 48%, #fecdd3 100%) !important;
  border-color: #fda4af !important;
  border-top-color: #fff !important;
  border-bottom-color: #fb7185 !important;
  color: #9f1239 !important;
  -webkit-text-fill-color: #9f1239 !important;
  font-weight: 750;
  box-shadow:
    inset 3px 0 0 #e11d48,
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -2px 3px rgba(190, 18, 60, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.7),
    0 2px 0 #fecdd3,
    0 6px 14px rgba(190, 18, 60, 0.12);
}

.mobile-sheet__link.is-active:hover,
.mobile-sheet__link.is-active:focus-visible {
  background: linear-gradient(180deg, #ffffff 0%, #ffe4e6 45%, #fda4af 100%) !important;
  border-color: #fb7185 !important;
  border-top-color: #fff !important;
  border-bottom-color: #e11d48 !important;
  color: #881337 !important;
  -webkit-text-fill-color: #881337 !important;
  transform: translateY(-1px);
  box-shadow:
    inset 3px 0 0 #be123c,
    inset 0 1px 0 #fff,
    inset 0 -2px 3px rgba(190, 18, 60, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.75),
    0 3px 0 #fecdd3,
    0 8px 16px rgba(190, 18, 60, 0.14);
}

.mobile-sheet__link.is-active:active {
  transform: translateY(2px);
  box-shadow:
    inset 3px 0 0 #be123c,
    inset 0 2px 4px rgba(190, 18, 60, 0.12),
    0 1px 0 #fecdd3,
    0 2px 6px rgba(190, 18, 60, 0.1);
}

.mobile-sheet__link.is-active .mobile-sheet__link-icon {
  background: linear-gradient(180deg, #ffffff 0%, #ffe4e6 100%);
  border-color: rgba(244, 63, 94, 0.35);
  border-top-color: #fff;
  border-bottom-color: rgba(190, 18, 60, 0.25);
  color: #9f1239;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 2px 0 #fecdd3;
}

.mobile-sheet__section-label.is-current {
  color: var(--ms-rose);
}

.mobile-sheet__section-label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 1.45rem;
  margin: 0.3rem 0 0.08rem;
  padding: 0.2rem 0.4rem;
  color: var(--ms-muted);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: none;
}

.mobile-sheet__section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--ms-rose);
  opacity: 0.9;
}

.mobile-sheet__section-icon .nav-icon-svg {
  width: 1.15rem;
  height: 1.15rem;
}

.mobile-sheet__details {
  margin: 0;
  border: none;
  border-radius: 1rem;
  background: transparent;
  overflow: visible;
}

.mobile-sheet__section-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  min-height: 3.1rem;
  margin: 0;
  padding: 0.7rem 0.8rem;
  list-style: none;
  cursor: pointer;
  color: #44403c;
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 0.95rem;
  user-select: none;
  background: linear-gradient(180deg, #ffffff 0%, #fff7f8 55%, #fff1f2 100%);
  border: 1.5px solid #fecdd3;
  border-top-color: #fff;
  border-bottom-color: #fda4af;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -2px 3px rgba(190, 18, 60, 0.04),
    0 1px 0 rgba(255, 255, 255, 0.7),
    0 2px 0 #ffe4e6,
    0 6px 14px rgba(136, 19, 55, 0.09);
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.mobile-sheet__section-toggle-main {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.mobile-sheet__section-toggle::-webkit-details-marker {
  display: none;
}

.mobile-sheet__section-toggle::marker {
  content: '';
}

.mobile-sheet__section-toggle:hover,
.mobile-sheet__section-toggle:focus-visible {
  background: linear-gradient(180deg, #ffffff 0%, #fff1f2 45%, #ffe4e6 100%);
  color: #9f1239;
  outline: none;
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 #fff,
    inset 0 -2px 3px rgba(190, 18, 60, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.75),
    0 3px 0 #fecdd3,
    0 8px 16px rgba(136, 19, 55, 0.12);
}

.mobile-sheet__section-chevron {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  opacity: 0.75;
  color: inherit;
  transition: transform 0.28s var(--ms-spring);
}

/* Open header: soft blush + rose ink (no harsh dark-red fill) */
.mobile-sheet__details[open] > .mobile-sheet__section-toggle {
  color: #9f1239;
  border-radius: 0.95rem;
  background: linear-gradient(180deg, #fff7f8 0%, #ffe4e6 55%, #fecdd3 100%);
  border-color: #fda4af;
  border-top-color: #fff;
  border-bottom-color: #fb7185;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -2px 3px rgba(190, 18, 60, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.7),
    0 2px 0 #fecdd3,
    0 6px 14px rgba(190, 18, 60, 0.12);
}

.mobile-sheet__details[open] > .mobile-sheet__section-toggle .mobile-sheet__section-icon,
.mobile-sheet__details[open] > .mobile-sheet__section-toggle .mobile-sheet__section-chevron {
  color: #9f1239;
  opacity: 1;
}

.mobile-sheet__details[open] .mobile-sheet__section-chevron {
  transform: rotate(180deg);
}

.mobile-sheet__details .mobile-sheet__subnav {
  margin: 0.45rem 0 0;
  padding: 0.15rem 0.1rem 0.2rem;
  border-left: 0;
}

.mobile-sheet__subnav {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.mobile-sheet__subnav .mobile-sheet__link {
  min-height: 2.75rem;
  font-size: 1rem;
  font-weight: 700;
}

.mobile-sheet__subnav .mobile-sheet__link-icon {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 0.55rem;
}

.mobile-sheet__subnav .mobile-sheet__link-icon .nav-icon-svg {
  width: 1.05rem;
  height: 1.05rem;
}

.mobile-sheet__divider {
  height: 1px;
  margin: 0.2rem 0.4rem;
  background: linear-gradient(90deg, transparent, rgba(159, 18, 57, 0.18), transparent);
  border: 0;
}

/* Cascade reveal when opening */
@keyframes ms-rise {
  from {
    opacity: 0;
    transform: translate3d(0.4rem, 0.15rem, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.mobile-sheet.is-open .mobile-sheet__profile,
.mobile-sheet.is-open .mobile-sheet__nav > .mobile-sheet__details {
  animation: ms-rise 380ms var(--ms-ease) both;
}

.mobile-sheet.is-open .mobile-sheet__profile { animation-delay: 70ms; }
.mobile-sheet.is-open .mobile-sheet__nav > .mobile-sheet__details:nth-child(1) { animation-delay: 100ms; }
.mobile-sheet.is-open .mobile-sheet__nav > .mobile-sheet__details:nth-child(2) { animation-delay: 140ms; }
.mobile-sheet.is-open .mobile-sheet__nav > .mobile-sheet__details:nth-child(3) { animation-delay: 180ms; }

/* Short phones: keep everything on-screen */
@media (max-height: 760px) {
  .mobile-sheet__header {
    padding: 0.4rem 0.4rem 0.35rem 0.6rem;
  }

  .mobile-sheet__body {
    gap: 0.35rem;
    padding: 0.35rem 0.4rem calc(0.4rem + env(safe-area-inset-bottom, 0px));
  }

  .mobile-sheet__section-toggle {
    min-height: 2.65rem;
    padding: 0.5rem 0.65rem;
    font-size: 1rem;
  }

  .mobile-sheet__subnav .mobile-sheet__link {
    min-height: 2.4rem;
    font-size: 0.95rem;
  }

  .mobile-sheet__brand-zh {
    font-size: 0.8125rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-sheet__backdrop,
  .mobile-sheet__panel,
  .mobile-sheet__inner,
  .mobile-sheet__section-chevron,
  .mobile-sheet__link,
  .mobile-sheet__close {
    transition: none;
  }

  .mobile-sheet.is-open .mobile-sheet__profile,
  .mobile-sheet.is-open .mobile-sheet__nav > .mobile-sheet__details {
    animation: none;
  }

  .mobile-sheet__panel {
    transform: translate3d(100%, 0, 0);
    opacity: 1;
  }

  .mobile-sheet__inner {
    opacity: 1;
    transform: none;
  }
}
