/* ===== BASE MENU ===== */

.mmd-megamenu {
    background: #fff;
    border-bottom: 1px solid #ddd;
    position: relative;
    z-index: 9999;
}

.mmd-level-1 {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0 20px;
    gap: 40px;
}

.mmd-item {
    position: relative;
}

.mmd-link {
    display: block;
    padding: 16px 5px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
}

.mmd-link:hover {
    color: #ff5e33;
}

/* ===== DROPDOWN PANEL ===== */

.mmd-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 600px;

    background: white;
    border: 1px solid #ddd;
    border-top: 3px solid #ff5e33;
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);

    opacity: 0;
    visibility: hidden;

    transform: translateY(20px);
    transition: all 0.35s ease;
    padding: 20px;
}

/*** LA MAGIE DU DÉPLIEMENT COMME MEGAMENU.COM ***/
.mmd-item:hover > .mmd-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ===== CONTENU INTERNE ===== */

.mmd-dropdown-inner {
    display: flex;
    gap: 25px;
}

.mmd-dropdown-image img {
    width: 200px;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 6px 10px rgba(0,0,0,0.1);
}

.mmd-dropdown-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mmd-dropdown-links li {
    margin-bottom: 10px;
}

.mmd-dropdown-links a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
}

.mmd-dropdown-links a:hover {
    color: #ff5e33;
}
