
.nav-dropdown { position: relative; display: flex; align-items: center; height: 100%; }
.nav-dropdown-toggle { cursor: pointer; }
.nav-dropdown-menu {
    position: absolute; top: 100%; right: 0; left: auto; background: white; min-width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-radius: 12px; padding: 10px 0;
    opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease;
    z-index: 1000; border: 1px solid #e2e8f0;
}
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown.active .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a {
    display: flex; flex-direction: row; align-items: center; justify-content: flex-start !important; gap: 10px; padding: 10px 20px; color: var(--primary) !important;
    text-transform: none !important; font-weight: 600 !important; font-size: 0.95rem !important;
}
.nav-dropdown-menu a .nav-icon {
    width: 18px; height: 18px; margin-bottom: 0; stroke-width: 2;
}
.nav-dropdown-menu a:hover { background: #f8fafc; color: var(--accent) !important; padding-left: 25px !important; }
.nav-dropdown-menu a::after { display: none !important; }
