.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-link-dropdown {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12),
                0 0 0 1px rgba(0, 0, 0, 0.04);
    padding: 12px;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    margin-top: 8px;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: white;
    box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.03);
}


.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    color: #1A1A1A;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-dropdown-item i {
    width: 18px;
    text-align: center;
    color: #6B6B6B;
    font-size: 14px;
    transition: color 0.2s ease;
}

.nav-dropdown-item:hover {
    background: #FFF7ED;
    color: #F77F00;
}

.nav-dropdown-item:hover i {
    color: #F77F00;
}

/* Séparateur */
.nav-dropdown-divider {
    height: 1px;
    background: #E5E5E5;
    margin: 8px 4px;
}

/* Lien "Voir toutes" en orange premium */
.nav-dropdown-link-all {
    color: #F77F00 !important;
    font-weight: 600;
    justify-content: space-between;
}

.nav-dropdown-link-all i {
    color: #F77F00 !important;
    font-size: 12px;
    transition: transform 0.2s ease;
}

.nav-dropdown-link-all:hover {
    background: #FFF7ED;
}

.nav-dropdown-link-all:hover i {
    transform: translateX(4px);
}

@media (max-width: 968px) {
    /* sur mobile le hover existe pas vraiment, on off le dropdown et le clique mène a
    categories/ */
    .nav-dropdown-menu {
        display: none;
    }
}