/* Language switcher — Golden Horizon theme */
.lang-switcher {
    position: relative;
    margin-left: auto;
    margin-right: 12px;
}
.lang-current {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid #D9D2C3;
    border-radius: 8px;
    background: transparent;
    color: inherit;
    font: inherit;
    font-size: 14px;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease;
}
.lang-current:hover {
    border-color: #B08D42;
    background: #FAF5EA;
}
.lang-list {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    min-width: 180px;
    margin: 0;
    padding: 6px;
    list-style: none;
    background: #fff;
    border: 1px solid #E9E4D9;
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(60, 48, 22, .12);
    z-index: 1000;
}
.lang-switcher.open .lang-list {
    display: block;
}
.lang-list a {
    display: block;
    padding: 8px 10px;
    border-radius: 6px;
    color: #16283C;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}
.lang-list a:hover {
    background: #FAF5EA;
    color: #8F7134;
}
.lang-list a.active {
    color: #8F7134;
    font-weight: 600;
}
