/* ================= NAVBAR ================= */
.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #000;
  z-index: 9999;
    z-index: 10000;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 45px;
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

/* TOGGLE ICON */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
      z-index: 10001;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 260pxd;
    height: calc(100vh - 70px);
    background: #000;
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    transition: left 0.3s ease;
  }

  .nav-links.active {
    left: 0;
  }

  /* Disable mega menu on mobile */
  .mega-menu {
    display: none !important;
  }
}
