.ef-mobile-nav {
  --ttm-mobile-nav-top: 75px;
  position: fixed;
  top: var(--ttm-mobile-nav-top);
  right: 0;
  left: 0;
  z-index: 9998;
  display: none;
  flex-direction: column;
  gap: 2px;
  max-height: calc(100vh - var(--ttm-mobile-nav-top));
  max-height: calc(100dvh - var(--ttm-mobile-nav-top));
  padding: 8px 16px calc(24px + env(safe-area-inset-bottom));
  overflow-y: auto;
  border-top: 1px solid #f0f0f0;
  background: #fff;
  box-shadow: 0 8px 32px rgba(46, 49, 48, .14);
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
}

.ef-mobile-nav.is-open {
  display: flex;
}

.ef-mobile-nav__section {
  padding: 14px 16px 4px;
  color: #aaa;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ef-mobile-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-radius: 12px;
  color: #2e3130;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  transition: color .15s ease, background .15s ease;
}

.ef-mobile-nav a:hover,
.ef-mobile-nav a:focus-visible {
  color: #2e3130;
  background: #fff5f0;
}

.ef-mobile-nav__account {
  border-radius: 14px !important;
  color: #2e3130 !important;
  background: #fff5f0 !important;
  font-weight: 700 !important;
}

.ef-mobile-nav__account:hover,
.ef-mobile-nav__account:focus-visible {
  color: #2e3130 !important;
  background: #ffe8dc !important;
}

.ef-mobile-nav__account svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.ef-mobile-nav hr {
  width: 100%;
  margin: 8px 0;
  border: 0;
  border-top: 1px solid #f0f0f0;
}

@media (max-width: 1024px) {
  body.ttm-native-mobile-nav .mobile-nav.wd-side-hidden-nav {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  body.ttm-mobile-nav-open {
    overflow-x: hidden;
  }
}

@media (min-width: 1025px) {
  .ef-mobile-nav {
    display: none !important;
  }
}
