/* 모바일 언어 선택 콤복박스 스타일 */
.mobile-language-selector {
    padding: 10px 15px;
    background: #f8f9fa;
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
}

.mobile-lang-combo-wrapper {
    position: relative;
}

.mobile-lang-select {
    width: 100%;
    height: 44px !important;
    padding: 10px 35px 10px 15px !important;
    font-size: 15px;
    font-weight: 500;
    border: 2px solid #1f234f !important;
    border-radius: 8px !important;
    background-color: #fff !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 14px !important;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: #333;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.mobile-lang-select option {
    padding: 8px 12px;
    font-size: 14px;
    background-color: #fff;
}

.mobile-lang-select:focus {
    border-color: #4458cb !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(68, 88, 203, 0.2);
}

.mobile-lang-select:hover {
    border-color: #3b48b8 !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* 모바일 메뉴 내 언어 선택 영역 */
#lnb-mobile .mobile-language-selector {
    margin: 10px 0;
    padding: 15px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
    border-radius: 8px;
    border: none;
}

/* 반응형: 모바일에서만 적용 */
@media (max-width: 991px) {
    .mobile-language-selector {
        display: block !important;
    }
}

@media (min-width: 992px) {
    /* PC에서는 모바일 언어 선택 숨기기 */
    .mobile-language-selector {
        display: none !important;
    }
}

.mobile-lang-select:active {
    transform: translateY(1px);
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
