.navigation-dropdown.w-dropdown-list {
  max-height: 500px !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  -webkit-overflow-scrolling: touch;
}

.navigation-dropdown.w-dropdown-list::-webkit-scrollbar {
  width: 8px;
}

.navigation-dropdown.w-dropdown-list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.navigation-dropdown.w-dropdown-list::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

.navigation-dropdown.w-dropdown-list::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.5);
}

.dropdown-wrapper {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 991px) {
  .mobile-nav.w-nav-menu {
    max-height: 500px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
  }
  
  .mobile-nav.w-nav-menu::-webkit-scrollbar {
    width: 6px;
  }
  
  .mobile-nav.w-nav-menu::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
  }
  
  .mobile-nav.w-nav-menu::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
  }
  
  .dropdown-list.w-dropdown-list {
    position: static !important;
    max-height: none !important;
    overflow: visible !important;
  }
}
