.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.lang-button {
    background: white;
    border: 2px solid #D97706;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 1em;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.lang-button:hover {
    background: #FBF5EF;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.lang-dropdown.show {
    display: block;
}

.lang-option {
    display: block;
    padding: 12px 20px;
    color: #2c3e50;
    text-decoration: none;
    transition: background 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.lang-option:first-child {
    border-radius: 15px 15px 0 0;
}

.lang-option:last-child {
    border-bottom: none;
    border-radius: 0 0 15px 15px;
}

.lang-option:hover {
    background: #FBF5EF;
}

.lang-option.active {
    background: #FBF5EF;
    color: #D97706;
    font-weight: 600;
}

@media (max-width: 768px) {
    .language-selector {
        top: 10px;
        right: 10px;
    }
    
    .lang-button {
        padding: 8px 15px;
        font-size: 0.9em;
    }
}
