/* Language Switcher Styles */
.language-switcher {
    position: relative;
    display: inline-block;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    white-space: nowrap;
}

.lang-btn:hover {
    background: rgba(255, 107, 53, 0.8);
    border-color: #ff6b35;
}

.lang-arrow {
    transition: transform 0.3s ease;
}

.lang-btn.active .lang-arrow,
.lang-btn:hover .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(10, 30, 60, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 8px;
    min-width: 160px;
    display: none;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 10000;
}

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

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.85rem;
    text-align: left;
}

.lang-option:hover {
    background: rgba(255, 107, 53, 0.3);
}

.lang-option.active {
    background: rgba(255, 107, 53, 0.5);
}

.lang-option.active .check-mark {
    display: inline-block;
}

.lang-flag {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.lang-text {
    flex: 1;
}

.check-mark {
    display: none;
    color: #ff6b35;
    font-weight: bold;
}

.lang-name {
    font-weight: 500;
}