.nav-menu .dropdown {
  position: relative;
}

.nav-menu .dropdown > a {
  display: inline-flex;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
}

.nav-menu .dropdown > a::after {
  content: "▾";
  margin-left: 6px;
  font-size: 0.68rem;
  line-height: 1;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);  
  min-width: 220px;
  background: #f8f7f8;
  border-top: 3px solid #d7266b;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  border-radius: 0;
  z-index: 1000;
  padding: 6px 0;
}

.dropdown-menu a {
  display: block;
  width: 100%;
  padding: 10px 14px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.01em;
  border-radius: 0;
  color: #2d2d2d;
  border-bottom: 2px solid #e5e5e5
}

.dropdown-menu a:hover {
  
  background: #f8f1f7;
    color: #d7266b;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block;
}

.show-dropdown {
  display: block !important;
}


/* Nested dropdowns (desktop): support second-level menus appearing to the right */
.dropdown-menu .dropdown {
  position: relative;
}

.dropdown-menu .dropdown > a::after {
  content: "▸";
  margin-left: 6px;
  font-size: 0.68rem;
  line-height: 1;
}

.dropdown-menu .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  transform: none;
  min-width: 220px;
  background: #f8f7f8;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  border-radius: 0;
  z-index: 1100;
  padding: 6px 0;
}

.dropdown-menu .dropdown:hover > .dropdown-menu,
.dropdown-menu .dropdown:focus-within > .dropdown-menu {
  display: block;
}

@media (max-width: 1023px) {
  .nav-menu .dropdown {
    width: 100%;
  }

  .nav-menu .dropdown > a {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    left: auto;
    transform: none;
    min-width: 100%;
    margin: 4px 0 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: none;
  }

  
}
