.dw-menu {
  position: fixed;
  inset: 0;
  z-index: 1050;
  visibility: hidden;
  transition: visibility 0s linear 0.3s;
}
.dw-menu[hidden] {
  display: none;
}
.dw-menu.is-open {
  visibility: visible;
  transition-delay: 0s;
}
@media (min-width: 768px) {
  .dw-menu {
    display: none !important;
  }
}

.dw-menu__scrim {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.34);
  opacity: 0;
  transition: opacity 0.28s ease;
}
.dw-menu.is-open .dw-menu__scrim {
  opacity: 1;
}

.dw-menu__panel {
  position: absolute;
  display: flex;
  flex-direction: column;
  background: var(--bg, #ffffff);
  color: var(--fg, #1a1a1a);
  -webkit-font-smoothing: antialiased;
}

.dw-menu--sheet .dw-menu__panel {
  inset: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.26s ease;
}

.dw-menu--sheet.is-open .dw-menu__panel {
  opacity: 1;
  transform: none;
}

.dw-menu--sheet .dw-menu__panel {
  background: transparent;
}

.dw-menu--sheet .dw-menu__body {
  padding: 0;
}

.dw-menu--sheet .dw-menu__bar,
.dw-menu--sheet .dw-menu__search,
.dw-menu--sheet .dw-menu__list,
.dw-menu--sheet .dw-menu__foot {
  background: var(--bg, #ffffff);
}

.dw-menu--drawer .dw-menu__panel {
  top: 0;
  bottom: 0;
  right: 0;
  width: min(86%, 360px);
  border-left: 1px solid var(--border, var(--rule, #e6e6e6));
  transform: translateX(101%);
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.dw-menu--drawer.is-open .dw-menu__panel {
  transform: none;
}

.dw-menu__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 56px;
  padding: 8px 12px 8px 16px;
  border-bottom: 1px solid var(--border, var(--rule, #e6e6e6));
  flex-shrink: 0;
}

.dw-menu__brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  font-weight: 600;
}
.dw-menu__brand img,
.dw-menu__brand svg {
  max-height: 28px;
  width: auto;
  display: block;
}

.dw-menu__brandtext {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dw-menu__close {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  color: var(--fg, #1a1a1a);
  background: transparent;
  border: 1px solid var(--border, var(--rule, #e6e6e6));
  border-radius: 6px;
}
.dw-menu__close:active {
  background: var(--card, var(--bg-2, #f6f6f6));
}

.dw-menu__body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 6px 0 8px;
}

.dw-menu__search {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 10px 16px 4px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid var(--border, var(--rule, #e6e6e6));
  border-radius: 6px;
  background: var(--card, var(--bg-2, #f6f6f6));
  color: var(--muted, #6b7280);
}
.dw-menu__search svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.dw-menu__search input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  outline: none;
  font: inherit;
  font-size: 0.9375rem;
  color: var(--fg, #1a1a1a);
  padding: 0;
}
.dw-menu__search input::placeholder {
  color: var(--muted, #6b7280);
}

.dw-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dw-navrow {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 52px;
  padding: 0 16px;
  color: var(--fg, #1a1a1a);
  text-decoration: none;
}
.dw-navrow:hover {
  color: var(--fg, #1a1a1a);
  text-decoration: none;
}
.dw-navrow:active {
  background: var(--card, var(--bg-2, #f6f6f6));
}
.dw-navrow::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--border, var(--rule, #e6e6e6));
}
.dw-navrow--icon::after {
  left: 45px;
}
.dw-navrow.is-active::after {
  display: none;
}

.dw-menu__item:last-child .dw-navrow::after {
  display: none;
}

.dw-navrow__ico {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted, #6b7280);
}
.dw-navrow__ico svg {
  width: 20px;
  height: 20px;
}

.dw-navrow__text {
  flex: 1;
  min-width: 0;
  padding: 9px 0;
}

.dw-navrow__title {
  display: block;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--fg, #1a1a1a);
}

.dw-navrow__sub {
  display: block;
  margin-top: 2px;
  font-size: 0.8125rem;
  line-height: 1.3;
  color: var(--muted, #6b7280);
}

.dw-navrow__count {
  flex-shrink: 0;
  font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, monospace);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted, #6b7280);
}

.dw-navrow__chev {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  color: var(--muted, #6b7280);
  opacity: 0.7;
}
.dw-navrow__chev svg {
  width: 7px;
  height: 13px;
  display: block;
}

.dw-navrow.is-active {
  background: var(--accent-soft, rgba(113, 5, 0, 0.08));
}
.dw-navrow.is-active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  border-radius: 0 2px 2px 0;
  background: var(--key, var(--bs-primary, #710500));
}
.dw-navrow.is-active .dw-navrow__title {
  color: var(--key, var(--bs-primary, #710500));
  font-weight: 600;
}
.dw-navrow.is-active .dw-navrow__ico {
  color: var(--key, var(--bs-primary, #710500));
}

.dw-menu__foot {
  flex-shrink: 0;
  border-top: 1px solid var(--border, var(--rule, #e6e6e6));
  padding: 14px 16px;
  padding-bottom: max(14px, env(safe-area-inset-bottom));
}
.dw-menu__foot:empty {
  display: none;
}

.dw-seg {
  display: inline-flex;
  border: 1px solid var(--border, var(--rule, #e6e6e6));
  border-radius: 6px;
  overflow: hidden;
}
.dw-seg button {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 6px 14px;
  font: inherit;
  font-size: 0.8125rem;
  color: var(--muted, #6b7280);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dw-seg button + button {
  border-left: 1px solid var(--border, var(--rule, #e6e6e6));
}
.dw-seg button.is-on {
  background: var(--key, var(--bs-primary, #710500));
  color: #fff;
}

body.dw-menu-open {
  overflow: hidden;
}

/*# sourceMappingURL=mobile-menu.css.map */
