/* Mobile Menu */
.mobile-menu {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  position: fixed;
  top: 60px; /* match header height */
  left: 0;
  width: 100%;
  height: 95vh;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  z-index: 5000;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.menu-btn {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.menu-btn:focus-visible {
  outline: none; /* or custom style */
}

.menu-section {
  margin-top: 1.2rem;
  width: 90%;
}

.menu-label {
  font-size: 0.8rem;
  color: #9a9a9a;
  margin-bottom: 0.5rem;
  font-weight: 900;
}

.menu-section a {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0.5rem 0;
  border-bottom: 1px solid #ddd;

  text-decoration: none;
  color: #111;
  font-size: 1.4rem;
  font-weight: 600;
}

.menu-section svg {
  padding-right: 1rem;
  /* opacity: 0.6; */
}

.menu-footer {
  width: 90%;
  text-align: center;
  font-size: 0.75rem;
  color: #999;
  margin-top: 2rem;
}

.menu-footer strong {
  display: block;
  margin-top: 0.3rem;
  color: #111;
}

.mobile-menu a {
  font-weight: 900;
  text-decoration: none;
  color: #000;
  font-size: 1.4rem;
  /* font-weight: 500; */
}

/* ACTIVE STATE */

/* Hide on desktop */
@media (min-width: 768px) {
  .mobile-menu {
    display: none;
  }
}
