.custom-menu-overlay {
  position: fixed;
  inset: 0;
  background: transparent;
  z-index: 9998;
  display: none;
}
.custom-menu-overlay.is-open {
  display: block;
}

.custom-menu-panel {
  position: fixed;
  top: 78px;
  left: 16px;
  width: 320px;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  padding: 24px 22px 12px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.custom-menu-panel.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.custom-menu-arrow {
  position: fixed;
  top: 70px;
  left: 36px;
  width: 16px;
  height: 16px;
  background: #fff;
  transform: rotate(45deg);
  border-radius: 3px 0 0 0;
  box-shadow: -3px -3px 6px rgba(0, 0, 0, 0.04);
  z-index: 9999;
  opacity: 0;
  transition: opacity .18s ease;
  pointer-events: none;
}
.custom-menu-arrow.is-open {
  opacity: 1;
}

.custom-menu-section {
  margin-bottom: 20px;
}
.custom-menu-section-title {
  color: #2A7633;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.custom-menu-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.custom-menu-links li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 2px;
  color: #17233d;
  text-decoration: none;
  font-size: 15px;
}
.custom-menu-links li a:hover {
  color: #2A7633;
}

.custom-menu-item-icon {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  fill: #c7cdd6;
}
.custom-menu-links li a:hover .custom-menu-item-icon {
  fill: #2A7633;
}

.custom-menu-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid #2A7633;
  color: #2A7633;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .3px;
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 2px;
}
