/* 플로팅 언어 전환 버튼 */
.language-switcher-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.lang-toggle {
    position: relative;
    cursor: pointer;
}

.current-lang {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: white;
    border: 2px solid #00a0e9;
    border-radius: 50%;
    font-weight: 700;
    color: #00a0e9;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.current-lang:hover {
    background: #00a0e9;
    color: white;
    transform: scale(1.1);
}

.lang-dropdown {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 10px;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.lang-toggle:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    border-radius: 8px;
    transition: background 0.2s;
    cursor: pointer;
}

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

.lang-option.active {
    background: #e3f2fd;
    color: #00a0e9;
    font-weight: 600;
}

.flag {
    font-size: 20px;
}

/* 모바일 */
@media (max-width: 768px) {
    .language-switcher-floating {
        bottom: 20px;
        right: 20px;
    }

    .current-lang {
        width: 50px;
        height: 50px;
        font-size: 14px;
    }
}