/* MAIN MENU CONTAINER */
.main-menu,
.mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

nav {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Assume your main desktop menu uses a class or selector, like: */
nav .main-menu {
  display: flex;
}

@media (max-width: 900px) {
  nav .main-menu {
    display: none !important;
  }
}


/* MENU ITEM POSITIONING */
.menu-item,
.mobile-menu-item {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* REMOVE BULLET POINTS ON DROPDOWNS */
.dropdown,
.dropdown ul,
.dropdown li,
.dropdown-item,
.mobile-dropdown,
.mobile-dropdown ul,
.mobile-dropdown li,
.mobile-dropdown-item {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

/* DESKTOP DROPDOWN */
.has-dropdown > .dropdown {
  display: none;
  position: absolute;
  background: #fff;
  min-width: 160px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  left: 0;
  z-index: 100;
  flex-direction: column;
  padding: 0.5rem 0;
}

.has-dropdown:hover > .dropdown {
  display: flex;
}

.dropdown-item a {
  display: block;
  padding: 8px 16px;
  color: #881d97;
  text-decoration: none;
  font-weight: 400;
}
.dropdown-item a:hover {
  background: #f3e7f7;
}

/* MOBILE DROPDOWN ALWAYS VISIBLE OR TOGGLED */
.mobile-dropdown {
  position: static;
  box-shadow: none;
  background: transparent;
  display: block !important;
}

.mobile-dropdown-item a {
  display: block;
  padding: 8px 16px;
  color: #881d97;
  text-decoration: none;
  font-weight: 400;
}
.mobile-dropdown-item a:hover {
  background: #f3e7f7;
}
