.df-lang-switcher-li {
    list-style: none;
    margin-left: 8px;
}

.df-lang-switcher {
    position: relative;
    display: inline-block;
}

.df-lang-switcher-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #fff;
    color: #1f2937;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.df-lang-switcher-btn:hover,
.df-lang-switcher-btn:focus {
    outline: none;
    border-color: #EB5D32;
    box-shadow: 0 0 0 3px rgba(235, 93, 50, 0.12);
}

.df-lang-switcher-chevron {
    font-size: 10px;
    color: #9ca3af;
    transition: transform 0.2s ease;
}

.df-lang-switcher.is-open .df-lang-switcher-chevron {
    transform: rotate(180deg);
}

.df-lang-switcher-menu {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 168px;
    padding: 6px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
    z-index: 1200;
}

.df-lang-switcher.is-open .df-lang-switcher-menu {
    display: block;
}

.df-lang-switcher-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: #374151;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.df-lang-switcher-option:hover,
.df-lang-switcher-option:focus {
    outline: none;
    background: #fff7f4;
    color: #c2410c;
}

.df-lang-switcher-option.is-active {
    background: #fff0eb;
    color: #EB5D32;
}

@media (max-width: 1199.98px) {
    .df-lang-switcher-li {
        margin: 12px 0 0;
        padding-top: 8px;
        border-top: 1px solid #f1f5f9;
    }
    .df-lang-switcher-menu {
        position: static;
        margin-top: 8px;
        box-shadow: none;
    }
}
