/* Amazon-style Language Picker */
select.language-switcher {
    background: #fff !important;
    border: 1px solid #d5d9d9 !important;
    border-radius: 4px !important;
    padding: 6px 24px 6px 8px !important;
    font-size: 16px !important;
    color: #0f1111 !important;
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 6px center !important;
    background-size: 12px !important;
    min-width: 80px !important;
    height: auto !important;
    margin: 8px 0px 8px 0px !important;
}

select.language-switcher:hover {
    border-color: #007185 !important;
    box-shadow: 0 0 0 1px #007185 !important;
}

select.language-switcher:focus {
    outline: none !important;
    border-color: #007185 !important;
    box-shadow: 0 0 0 2px rgba(0, 113, 133, 0.2) !important;
}

select.language-switcher option {
    padding: 4px 8px;
    font-size: 13px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    select.language-switcher {
        font-size: 12px !important;
        padding: 4px 20px 4px 6px !important;
        min-width: 70px !important;
        margin: 14px 0px 4px 0px !important;
   }
}