/* ==========================================================
   La Fabrique Miniature — pastilles langue / thème
   ========================================================== */

.lfm-top-switchers {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-left: 10px;
    vertical-align: middle;
}

.lfm-switch-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    border: 1px solid rgba(255, 248, 232, .62);
    border-radius: 999px;
    background: rgba(255, 248, 232, .16);
    color: #fff8df;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .18);
    transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}

.lfm-switch-pill:hover {
    transform: translateY(-1px);
    background: rgba(255, 248, 232, .28);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .22);
}

.lfm-switch-pill.is-active {
    outline: 2px solid rgba(255, 248, 232, .9);
    outline-offset: 2px;
}

.lfm-switch-flag {
    font-size: 17px;
}

.lfm-switch-theme {
    font-family: var(--title-font, inherit);
    font-size: 12px;
    letter-spacing: .02em;
}

.lfm-switch-theme-modern {
    background: rgba(58, 86, 42, .72);
}

.lfm-switch-theme-vintage {
    background: rgba(118, 82, 42, .72);
}

@media (max-width: 720px) {
    .lfm-top-switchers {
        margin-left: 0;
        margin-top: 8px;
    }
}
