/* === MAIN DROPDOWN CONTAINER === */
.cd-dropdown {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(3px);
  padding: 20px 40px;
  box-shadow: 5px 5px 27px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  color: white;
  /* Keep display & opacity logic to EvoX */
}

/* Main menu heading */
.cd-dropdown h3 {
  color: white;
  font-weight: 700;
  margin-bottom: 15px;
}

/* === MAIN MENU LINKS === */
.cd-dropdown-content > li > a {
  color: #9D00FF;
  font-size: 0.9rem;
  padding: 8px 12px;
  display: block;
  user-select: none;
  transition: color 0.3s ease, background-color 0.3s ease;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
}

/* Hover & focus states */
.cd-dropdown-content > li > a:hover,
.cd-dropdown-content > li > a:focus-visible {
  color: #e72d38;
  background-color: rgba(255, 255, 255, 0.05);
  font-weight: 600;
  outline-offset: 3px;
}

/* === PARENT LIST ITEM POSITIONING === */
.cd-dropdown-content > li {
  position: relative;
}

/* === NESTED SUBMENU === */
.cd-secondary-dropdown {
  position: absolute !important;
  top: 0;
  left: 100%;
  width: 300px; /* adjust as needed */
  max-height: 400px;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(3px);
  box-shadow: 5px 5px 27px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  padding: 20px 30px;
  color: white;
  z-index: 1100;
  transition: opacity 0.3s ease;
}

/* === NESTED SUBMENU LINKS === */
.cd-secondary-dropdown > li > a {
  color: #9D00FF;
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: 4px;
  display: block;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
}

.cd-secondary-dropdown > li > a:hover,
.cd-secondary-dropdown > li > a:focus-visible {
  color: #e72d38;
  background-color: rgba(255, 255, 255, 0.05);
  font-weight: 600;
}

/*sub Menu Dropdown*/
.verticalmenu {
  display: flex;
  align-items: center;
}

.additional_links {
  list-style: none;
  display: flex;
  align-items: stretch;
  width: 100%;
  flex-grow: 1;
  flex-wrap: wrap;
  margin-left: 40px;
  gap: 10px; /* nice spacing between top-level items */
}

.additional_links > li.has-submenu {
  position: relative;
}

/* Parent menu links with submenu arrow */
.additional_links > li.has-submenu > a {
  padding-right: 30px;
  position: relative;
  user-select: none;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.additional_links > li.has-submenu > a::after {
  content: "\f107";
  font-family: FontAwesome;
  color: #fff;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

/* Hover effect on parent menu arrow */
.additional_links > li.active > a::after,
.additional_links > li.has-submenu > a:hover::after,
.additional_links > li.has-submenu > a:focus-visible::after {
  transform: translateY(-50%) rotate(180deg);
  color: #9D00FF;
}

/* Top level links */
.additional_links > li > a {
  color: white;
  padding: 8px 1.2em;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0.5px;
  user-select: none;
  transition: color 0.3s ease, background-color 0.3s ease;
  border-radius: 4px;
}

.additional_links > li > a:hover,
.additional_links > li > a:focus-visible {
  background-color: #000000;
  color: #9D00FF;
  outline-offset: 3px;
}

/* Submenu container */
.additional_links > li > .submenu {
  width: auto;
  min-height: auto;
  overflow: hidden;
  position: absolute;
  top: calc(100% + 8px);
  left: 0 !important;
  z-index: 100;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(3px);
  margin-top: 5px;
  margin-bottom: 0;
  list-style: none;
  display: none;
  padding: 20px 40px;
  gap: 20px;
  box-shadow: 5px 5px 27px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  flex-direction: column;
  transition: opacity 0.3s ease;
}

/* Show submenu on active */
.additional_links > li.active .submenu {
  display: flex;
  flex-direction: column;
  opacity: 1;
}

/* Submenu items */
.additional_links > li > .submenu > li {
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom:

/* END Header Menu Dropdown */
/*hiding own brand name*/
.brand-label:has(a[href*="name=Own+Brand"]) {
  display: none;
}