/* ---- Language Switcher Widget ---- */
.plc-switcher {
    position: relative;
    display: inline-block;
}

.plc-sw-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    background: transparent;
    border: none;
    font: inherit;
    padding: 8px 16px;
    border-radius: 4px;
    transition: opacity 0.15s ease;
}

.plc-sw-button:hover { opacity: 0.85; }

.plc-sw-chevron {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.plc-sw-button[aria-expanded="true"] .plc-sw-chevron {
    transform: rotate(180deg);
}

.plc-sw-dropdown {
    position: absolute;
    z-index: 9999;
    min-width: 140px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    padding: 8px 0;
    list-style: none;
    margin: 0;
}

.plc-sw-dropdown[hidden] { display: none; }

.plc-sw-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.plc-sw-dropdown li a {
    display: block;
    padding: 10px 18px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.15s ease;
    white-space: nowrap;
}

.plc-sw-dropdown li a:hover {
    background: rgba(0,0,0,0.05);
}

/* Position variants */
.plc-sw-pos-bottom_right .plc-sw-dropdown { top: 100%; right: 0; margin-top: 6px; }
.plc-sw-pos-bottom_left  .plc-sw-dropdown { top: 100%; left: 0;  margin-top: 6px; }
.plc-sw-pos-top_right    .plc-sw-dropdown { bottom: 100%; right: 0; margin-bottom: 6px; }
.plc-sw-pos-top_left     .plc-sw-dropdown { bottom: 100%; left: 0;  margin-bottom: 6px; }
