/* header.css */

.lp-header {
    height: 80px;
    background: #fff;
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    position: sticky;
    top: 0;
    z-index: 10;
}

.lp-header-inner {
    height: 100%;
    width: 100%;
    max-width: 1443px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-logo img {
    height: 44px;
    display: block;
}

.lp-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lp-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 9px 10px;
    border-radius: 7px;
    border: 1px solid #333;
    background: #fff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    line-height: 0;
    color: #333;
    width: 107px;
    height: 30px;
}

.lp-btn-dark {
    background: #333;
    border-color: #333;
    color: #fff;
}

/* (옵션) 언어 메뉴 */
.lang {
    position: relative;
}

.lang-btn {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    line-height: 1;
}

.lang-btn img {
    width: 20px;
    height: 20px;
    display: block;
}

/* 랭귀지 메뉴는 JS로 토글 */
.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0px;
    min-width: 136px;
    padding: 7px;
    background: #fff;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .10);
    display: none;
}

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

/* hover로 열리는 기존 규칙은 삭제/주석 처리 */
/* .lang:hover .lang-menu { display:block; } */

.lang-item {
    width: 100%;
    height: 28px;
    padding: 0 14px;
    border: 0;
    background: #f3f4f6;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 12px;
    font-weight: 400;
    color: #262626;
}

.lang-item:hover {
    background: #eceef2;
}

.lang-check {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.lang-item.is-active {
    background: #fff;
    font-weight: 600;
}

.lang-item.is-active::after {
    content: "";
    width: 11px;
    height: 8px;
    background: url("/pc/img/dropDownCheck_icon.png") no-repeat center / contain;
    flex: 0 0 auto;
}

.lang-item.is-active .lang-check {
    opacity: 1;
    /* 선택된 항목만 체크 표시 */
}

/* HOLD 취소 모달 CSS */
.hold-modal-backdrop {
    position: fixed; inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex; align-items: center; justify-content: center;
    z-index: 15000;
}
.hold-modal-backdrop.is-hidden { display: none; }

.hold-modal-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px 28px 24px;
    width: 340px;
    text-align: center;
}

.hold-modal-title {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.hold-modal-desc {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 24px;
}

.hold-modal-btn {
    width: 100%;
    padding: 14px;
    background: #f0f0f0;
    color: #111;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}
.hold-modal-btn:hover { background: #e0e0e0; }

@media (max-width: 768px) {
    .lp-header-inner {
        padding: 0 16px;
    }

    .lp-actions {
        gap: 8px;
    }

    .lp-btn {
        padding: 7px 10px;
    }
}