/* Menu Desktop - Visible uniquement >= 1024px */
@media (min-width: 1024px) {
    .nav-desktop {
        display: block;
    }
    
    .nav-mobile {
        display: none;
    }
    
    .nav-desktop > ul {
        list-style: none;
        display: flex;
        gap: 1.5rem;
        margin: 0;
        padding: 0;
        position: relative;
    }
    
    .nav-desktop > ul > li {
        position: relative;
    }
    
    .nav-desktop > ul > li > a {
        color: #fff;
        text-decoration: none;
        font-weight: bold;
        transition: opacity 0.3s ease;
    }
    
    .nav-desktop > ul > li > a:hover {
        opacity: 0.8;
    }
    
    /* Modal desktop pour Mon Compte */
    .modal-desktop {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        margin-top: 0.5rem;
        background-color: #fff;
        border: 1px solid #ccc;
        border-radius: 6px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        z-index: 1000;
        min-width: 200px;
    }
    
    .modal-desktop ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
    }
    
    .modal-desktop ul li a {
        display: block;
        color: #0056b3;
        text-decoration: none;
        font-weight: bold;
        padding: 0.5rem 1rem;
        border-radius: 4px;
        text-align: center;
        transition: background-color 0.3s ease;
    }
    
    .modal-desktop ul li a:hover {
        background-color: #f0f0f0;
    }
}

/* Cache le menu desktop sur mobile */
@media (max-width: 1023px) {
    .nav-desktop {
        display: none;
    }
}
