/* HDPS language switcher — header right */
.hdps-lang-switcher {
    position: relative;
    flex-shrink: 0;
}

.hdps-lang-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 26px;
    padding: 3px 4px;
    border: 1px solid #e4e4e4;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    line-height: 0;
}

.hdps-lang-trigger:hover {
    border-color: #c5c5c5;
    background: #fafbfc;
}

.hdps-lang-trigger img {
    width: 24px;
    height: 16px;
    object-fit: cover;
    display: block;
    border-radius: 1px;
}

.hdps-lang-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    list-style: none;
    margin: 0;
    padding: 4px;
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 6px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    z-index: 100001;
    display: none;
}

.hdps-lang-switcher.is-open .hdps-lang-menu {
    display: block;
}

.hdps-lang-menu li {
    margin: 0;
    padding: 0;
}

.hdps-lang-menu button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 30px;
    padding: 4px;
    margin: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 4px;
}

.hdps-lang-menu button:hover,
.hdps-lang-menu button.is-active {
    background: #eef3f9;
    outline: 1px solid #d0dce8;
}

.hdps-lang-menu button img {
    width: 24px;
    height: 16px;
    object-fit: cover;
    display: block;
}

/* 데스크톱: GNB 맨 우측 */
.gnb-menu-lang {
    display: flex;
    align-items: center;
    margin-left: 4px;
}

.gnb-menu-lang .hdps-lang-switcher {
    margin-left: 8px;
}

/* 모바일: 햄버거 왼쪽 */
.gnb-btn-wrap .hdps-lang-switcher {
    display: flex;
}

.gnb-menu-lang {
    display: none;
}

@media screen and (min-width: 769px) {
    .gnb-btn-wrap .hdps-lang-switcher {
        display: none;
    }

    .gnb-menu-lang {
        display: flex;
    }
}
