.lang-switcher {
        position: relative;
    }

    .lang-btn {
        width: 50px;
        height: 50px;
        border-radius: 10px;
        background: var(--primary); /* stesso colore degli altri bottoni */
        border: none;
        color: #fff;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        margin-left: 15px;
    }

    .lang-dropdown {
        display: none;
        position: absolute;
        top: calc(100% + 6px);
        right: 0;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.12);
        overflow: hidden;
        z-index: 999;
    }

    .lang-switcher.open .lang-dropdown {
        display: block;
    }

    .lang-dropdown a {
        display: block;
        padding: 10px 20px;
        color: #333;
        text-decoration: none;
        font-size: 13px;
        font-weight: 500;
    }

    .lang-dropdown a:hover,
    .lang-dropdown a.active {
        background: var(--primary);
        font-weight: 700;
        font-size: 13px;
        color: #004a98;
    }

    .lang-arrow {
        transition: transform 0.25s ease;
        margin-left: 4px;
    }

    .lang-switcher.open .lang-arrow {
        transform: rotate(180deg);
    }



    