/* Language Switcher в Header - оптимизирован для мобильных */
.language-select {
    margin-right: 12px;
}

.language-select select {
    border: 1px solid rgba(0,0,0,0.2);
    background: transparent;
    color: #111;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 6px 26px 6px 6px;
    border-radius: 6px;
    transition: all 0.3s;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23111111' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 6px center;
    background-size: 12px;
    min-width: 50px;
}

.language-select select:hover {
    background-color: rgba(0,0,0,0.05);
    border-color: rgba(0,0,0,0.3);
}

.language-select select option {
    background: #fff;
    color: #111;
    padding: 8px;
}

/* Для фиксированного header */
header.f-nav .language-select select {
    border-color: rgba(0,0,0,0.2);
    color: #111;
}

header.f-nav .language-select select:hover {
    background-color: rgba(0,0,0,0.05);
    border-color: rgba(0,0,0,0.3);
}

/* Адаптив */
@media (max-width: 768px) {
    .language-select {
        margin-right: 8px;
    }
    
    .language-select select {
        padding: 5px 24px 5px 5px;
        font-size: 13px;
        background-position: right 5px center;
        background-size: 11px;
        min-width: 48px;
    }
}

@media (max-width: 480px) {
    .language-select {
        margin-right: 6px;
    }
    
    .language-select select {
        padding: 4px 22px 4px 4px;
        font-size: 12px;
        background-position: right 4px center;
        background-size: 10px;
        min-width: 45px;
    }
}

@media (max-width: 360px) {
    .language-select {
        margin-right: 4px;
    }
    
    .language-select select {
        padding: 4px 20px 4px 4px;
        font-size: 11px;
        background-position: right 3px center;
        background-size: 9px;
        min-width: 42px;
    }
}

/* Для экранов 320px */
@media (max-width: 320px) {
    .language-select {
        margin-right: 2px;
    }
    
    .language-select select {
        padding: 3px 18px 3px 3px;
        font-size: 10px;
        background-position: right 2px center;
        background-size: 8px;
        min-width: 38px;
    }
    
    header .ct {
        gap: 8px !important;
    }
    
    header .callback {
        font-size: 11px;
        padding: 0 10px;
    }
    
    header .btn {
        font-size: 11px;
        padding: 0 12px;
        height: 36px;
    }
}
