/* --- CSS DU MENU --- */
.lang-dropdown {
    position: relative;
    display: inline-block;
    font-family: Arial, sans-serif;
    margin: 20px;
}
.lang-selected {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    background: #fff;
}
.flag-img { width: 20px; height: auto; }
.lang-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    min-width: 150px;
    z-index: 1000;
}
.lang-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    text-decoration: none;
    color: #333;
}
.lang-list a:hover { background: #f0f0f0; }
.lang-dropdown:hover .lang-list { display: block; }

/* --- MASQUAGE BARRE GOOGLE --- */
.VIpgJd-ZVi9od-ORHb-OEVmcd, .goog-te-banner-frame, #goog-gt-tt, #google_translate_element {
    display: none !important;
}