.lang_wrap {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    z-index: 100;
}

.lang_btn {
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang_btn img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1); /* 흰색 아이콘으로 */
}

.lang_list {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 8px;
    overflow: hidden;
    min-width: 50px;
    padding: 6px 0;
}

.lang_list.on {
    display: block;
}

.lang_list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    flex-direction: column;
}

.lang_list li a:hover {
    background: rgba(255, 255, 255, 0.15);
}

.lang_list li a img {
    width: 22px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    vertical-align: middle;
}