header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: transparent;
  margin: 10px 10px 60px 10px;
  border: 1px solid #dddddd;
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header.scrolled {
  background: #ffffff5d;
  margin: 10px 10px 60px 10px;
  border: 1px solid #dddddd;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.menu-inner {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.menu-inner li + li::before {
  content: "|";
  padding: 0 15px;
  color: #999;
}

.menu-link {
  text-decoration: none;
  color: #333;
}

.menu-link.active,
.menu-link:hover {
  font-weight: 600;
}

.modal-dialog {
  margin: 0;
  max-width: 320px;
  height: 100vh;
}

.modal-content {
  height: 100vh;
  border-radius: 0;
  background: #fefdf9;
  display: flex;
  flex-direction: column;
}

.modal-body {
  flex: 1;
  overflow-y: auto;
}

.modal-footer {
  border-top: none;
}

@media (min-width: 992px) {
  .mobile-toggle {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .menu,
  .nav-icon,
  .nav-button {
    display: none !important;
  }
  .menu-inner li {
    margin-bottom: 15px;
  }
  .menu-inner li + li::before {
    display: none;
  }
}
