.navbar.wonderlyNav {
  overflow: hidden;
  background-color: transparent;
  font-family: inherit;
  position: static !important;
  gap: 20px;
  z-index: 9999;
}

.navbar.wonderlyNav a:active,
.navbar.wonderlyNav a:focus {
  outline: 1px dotted #000 !important;
  /* Adds space between the element and the outline */
  outline-offset: 2px !important;
}

.wonderlyNav .dropdown {
  overflow: hidden;
  position: static !important;
}

.wonderlyNav .dropdown-content-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 40px;
  padding: 40px;
}

.wonderlyNav .menu-col-1 {
  padding: 24px;
}

.wonderlyNav h4.navHeading {
  margin-bottom: 24px;
}

.wonderlyNav h4 a {
  color: var(--Dark-Neutral);
}

.wonderlyNav .navLinks-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wonderlyNav .menu-col .navLinks-wrap a.navLink {
  color: var(--Dark-Neutral);
  font-family: Satoshi;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}

.wonderlyNav .menu-col a.navLink:hover {
  color: var(--Dark-Neutral);
  text-decoration: underline;
}

.wonderlyNav .menu-col a.fl-button:hover {
  text-decoration: none !important;
  color: inherit !important;
}

.wonderlyNav .fl-button::before {
  padding: 2px;
}

.wonderlyNav .dropdown .dropbtn:focus,
.wonderlyNav .dropdown .dropbtn:active {
  outline: dotted 1px #fff
}

.wonderlyNav .dropdown-content {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30px, var(--Light-Neutral) 30px);
  opacity: 0;
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transform: translateY(-98px);
  transform: translateY(-40px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  padding-top: 35px;

  /* Prevent hover interaction when hidden */
  pointer-events: none;

}

.wonderlyNav .dropdown:hover .dropdown-content,
.wonderlyNav .dropdown.active .dropdown-content {
  opacity: 1;
  transform: translateY(0);
  /* Enable interaction when visible */
  pointer-events: auto;
}


@media only screen and (max-width: 1200px) {}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .wonderlyNav .column {
    width: 100%;
    height: auto;
  }
}