/* ==============================================
   FIX DROPDOWN MENU PROFIL - VERSION SIMPLE
   ============================================== */

/* IMPORTANT : Ce fichier doit être chargé EN DERNIER dans le header.php */

/* Le dropdown est maintenant dans la navigation, pas besoin de position fixed */
/* Juste s'assurer que le z-index est correct */

.main-nav .dropdown-menu {
    z-index: 1000 !important;
}

.main-nav .dropdown-menu.show {
    display: block !important;
}

/* Responsive mobile */
@media (max-width: 768px) {
    .main-nav ul {
        flex-wrap: wrap;
    }
    
    .main-nav li.ml-auto {
        width: 100%;
        margin-left: 0;
    }
    
    .main-nav .btn-profile,
    .main-nav .btn-login {
        width: 100%;
        justify-content: center;
    }
    
    .main-nav .dropdown-menu {
        position: static !important;
        box-shadow: none;
        border-top: 1px solid var(--gray-light);
        border-radius: 0;
    }
}


