/* =========================================================
 * Sélecteur de langue SUPERDEV
 * ========================================================= */

.seu-lang-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.seu-lang-dropdown .seu-lang-list {
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    z-index: 20;
    display: none;
}

.seu-lang-dropdown {
    position: relative;
}

.seu-lang-dropdown:hover .seu-lang-list,
.seu-lang-dropdown:focus-within .seu-lang-list {
    display: flex;
}

.seu-lang-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    line-height: 1.2;
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.seu-lang-flag {
    line-height: 1;
}

.seu-lang-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: transparent;
    border: none;
    box-shadow: none;
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    line-height: 1.2;
    color: inherit;
    padding: 4px 10px;
    -webkit-appearance: none;
    appearance: none;
}

.seu-lang-caret {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 2px;
}
