/**
 * Language Switcher Styles
 * 语言切换器样式
 */

/* Header Language Switcher */
.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    text-decoration: none;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.lang-switcher:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.lang-switcher .lang-icon {
    font-size: 16px;
    line-height: 1;
}

.lang-switcher .lang-label {
    font-size: 12px;
}

/* Footer Language Switcher */
.footer-language-switcher {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-language-switcher .lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.footer-language-switcher .lang-switcher:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #E55A2B;
    color: #E55A2B;
    transform: translateY(-2px);
}

.footer-language-switcher .lang-icon {
    font-size: 18px;
}

.footer-language-switcher .lang-label {
    font-size: 13px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .lang-switcher {
        padding: 6px 12px;
        font-size: 12px;
    }

    .footer-language-switcher {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .footer-language-switcher .lang-switcher {
        padding: 8px 14px;
        font-size: 13px;
    }

    .footer-language-switcher .lang-icon,
    .lang-switcher .lang-icon {
        font-size: 16px;
    }

    .footer-language-switcher .lang-label,
    .lang-switcher .lang-label {
        font-size: 12px;
    }
}
