/* New Mobile Menu Styles */
:root {
  --mobile-menu-bg: #ffffff;
  --mobile-menu-text: #1B1D1E;
  --mobile-menu-accent: #4928FD;
}

#mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#mobile-menu-sidebar {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: var(--mobile-menu-bg);
  z-index: 100000;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 20px;
}

#mobile-menu-sidebar.active {
  right: 0;
}

#mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--mobile-menu-text);
  padding: 5px;
}

.mobile-menu-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-nav li {
  margin-bottom: 15px;
}

.mobile-menu-nav a {
  text-decoration: none;
  color: var(--mobile-menu-text);
  font-size: 18px;
  font-weight: 500;
  display: block;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.mobile-menu-nav a:hover, 
.mobile-menu-nav a.active {
  background: #f4f4ff;
  color: var(--mobile-menu-accent);
}

/* Force Toggler Clickability */
.custom-navbar-toggler {
  position: relative !important;
  z-index: 9999 !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border: none !important;
  background: none !important;
}

.custom-navbar-toggler iconify-icon {
  pointer-events: none !important;
}

/* Hide on Desktop */
@media (min-width: 1200px) {
  .custom-navbar-toggler {
    display: none !important;
  }
}
