@charset "utf-8";
*{
    box-sizing: border-box;
}

@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
/* font설정 */
body, h1, h2, h3, h4, h5, h6, li, p, button { 
    font-family: 'Pretendard';
}
a, h1 {
    color: var(--txt-color01);
}
blockquote {
    font-size: inherit;
}
ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
code,
kbd,
tt,
var,
samp,
pre {
    font-family: Inconsolata, monospace;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}
img {
    width: 100%;
}

:root {
    --main-color01: #F25E25;
    --main-color02: #F25E25c7;
    --main-color03: #F25E2573;
    --btn-color01: rgba(0, 27, 55, 0.1);
    --btn-color02: rgba(2, 32, 71, 0.05);
    --txt-color01: rgb(255, 255, 255);
    --txt-color02: rgba(255, 255, 255, .8);
    --txt-color03: rgba(255, 255, 255, 0.555);
    --border-color: #e5e8eb;
    --bg-color: #030303;
    --pg-color: #2E2E36;
    --black: #000;
    --border-radius: 10px;
    /* default custom */
    --ct-menu-item-active: var(--main-color01);
    --ct-navbar-light-active-color: var(--main-color01);
    --ct-input-placeholder-color: #8391a2;
    --ct-link-hover-color: var(--txt-color01);
    --ct-card-bg: var(--bg-color);
    --ct-border-color: var(--ct-body-color);
}
body[data-layout=topnav] .content-page {
    padding: 0;
    margin-top: 70px;
}
body[data-leftbar-compact-mode=condensed]:not(.authentication-bg) {
    min-height: fit-content;
}
body {
    background-color: var(--pg-color);
    color: var(--txt-color02);
}
.btn-primary {
    background-color: #f05a24;
    border: none;
    box-shadow: unset;
}
.btn-primary:hover {
    background: #d94d1c;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: #0F1523;
    border-bottom: none;
    z-index: 1000;
}

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

/* LOGO */
.nav_logo img {
    height: 36px;
    width: auto;
}
.lang {
    width:80px; 
    height:30px;
    border-radius: 3px;
}
.lang select option {color:#000;}
.login_btn {
    background:rgba(255,255,255,.07);
    padding:7px;
    color:#f7cd09;
    line-height:1 !important;
    border-radius:3px;
    cursor:pointer;
    position: relative;
}
.login_btn:hover {transition:none;}
.login_btn .uSub { 
    position: absolute; 
    top: 35px; 
    left: 50%; 
    transform: translateX(-50%); 
    width: 120%; 
    background: #0c1124; 
    padding: 15px; 
    border-radius: 5px; 
    box-shadow: 0 5px 10px rgba(0,0,0,.1); 
}
.uSub { display: none; }
.uSub.show { display: block; }
.uSub li { line-height: 22px; }
.uSub .btnOut { 
    width: 100%; 
    background: #22c55e; 
    margin-top: 7px; 
    padding: 3px 0; 
    text-align: center; 
    border-radius: 4px; 
    display: inline-block; 
}

/* RIGHT AREA */
.right-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* USER ICON */
.user-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #222;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}
.user-btn:hover {
    background: #f5f5f5;
}
.user-btn i {
    font-size: 25px;
    color: #222;
}

/* CTA BUTTON */
.contact-btn {
    padding: 12px 22px;
    border-radius: 8px;
    background: #4f8f3a;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
.menu-toggle {
    display: block;
}
.contact-btn {
    margin: 16px 24px 24px;
}
}
/* header-end */

/* sub_header */
.sub_header {
    position: fixed;
    top: 70px;
    width: 100%;
    background: var(--pg-color);
    border-bottom: 1px solid var(--txt-color03);
    z-index: 15;
}
.sub_header.bg-navy {
    background: #0F1523;
}
.sub_header .title_inner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}
a.goBack {
    padding: 15px 20px;
    position: absolute;
    z-index: 10;
    left: 0;
}
a.goBack img {
    width: 11px;
}
.sub_header + .row {
    padding-top: 50px;
}
/* sub_header-end */

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm) {
    background-color: var(--main-color01) !important;
}
.text-dark {
    color: var(--txt-color01) !important;
}
.inner:not(:has(.login)) {
    align-items: center;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: start;
    justify-content: flex-start;
    max-width: 768px;
    width: calc(100% - 40px);
    margin: 0 auto;
}
.inner > div {
    width: 100%;
}
.col-lg-6 {
    max-width: 520px;
}
input,
select,
.card {
    /*background-color: transparent !important; 이거 하면 radio 테두리만 나옴 */
    box-shadow: none;
    -webkit-box-shadow: none;
    width: 100%;
    height: 50px;
    background: rgba(255, 255, 255, .05);
    border-radius: 7px;
    border: 0;
    color: var(--txt-color01);
    padding-left: 7px;
}
p {margin-bottom: 0;}
.card {
    background-color: transparent;
}
label {
    color: var(--txt-color01);
    font-weight: normal;
    font-size: 15px;
}
.form-control:disabled, 
.form-control[readonly],
.form-control,
.form-select {
    box-shadow: none;
    color: var(--txt-color01);
    font-size: 16px;
    padding: 0 20px;
    border-radius: var(--border-radius);
    height: 50px;
    width: 100%;
    height: 50px;
    background: rgba(255, 255, 255, .07);
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, .1);
}
.input-group {
    flex-direction: row;
    -webkit-box-pack: center;
    justify-content: center;
    column-gap: 10px;
}
.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback),
.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
    border-radius: var(--border-radius);
    margin-left: 0;
}
.form-control:hover,
.form-select:hover, 
.form-control:focus,
.form-select:focus {
    box-shadow: transparent !important;
    border: 1px solid rgba(255,255,255,.2);
    background-color: rgba(255, 255, 255, 0.08);
    border-bottom: 2px solid #f05a24;
    color: var(--txt-color01);
}
.custom-select.is-invalid:focus,
.custom-select.is-valid:focus,
.custom-select:invalid:focus,
.custom-select:valid:focus,
.formcontrol.is-valid:focus,
.form-control:invalid:focus,
.form-control:valid:focus{
    box-shadow: inset 0 0 0 1px var(--main-color01) !important;
    color: var(--txt-color01);
}
.popover {
    max-width: 300px;
}
.popover img {
    max-width: 100%;
    width: 100%;
}
.border_line {
    height: 1px;
    width: 100%;
    background: var(--txt-color03);
    margin: 10px 0 15px;
}
.more_btn {
    float: right;
    color: rgba(255, 255, 255, .7);
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
}
@media (max-width: 768px) {
    .popover {
        max-width: 90vw;
        width: max-content;
        left: 50% !important;
        transform: translateX(-50%) translateY(-475.781px) !important;
    }
}
i {color: var(--txt-color02)}

/* footer */
footer {
    background-color: #F7F8FA;
    padding: 20px 15px;
    color: #262626;
    word-wrap: break-word;
}

@media (max-width: 1024px) {
    .topnav-navbar.navbar-custom ul {
        float: unset;
    }
    .topnav-navbar.navbar-custom .nav-link {
        margin-left: 135%;
    }
}
/* graph & icon */
.widget-icon {
    border-radius: 100px;
    color: var(--txt-color02) !important;
    background-color: var(--btn-color02) !important;
}
.widget-icon.widget-icon-invert {
    color: var(--txt-color01) !important;
    background-color: var(--bg-color) !important;
}

/* login */
.account-pages.login {position: relative; width: 100%; height: 100vh; overflow: hidden; background: var(--bg-color); }
/* 비디오 영역 */
.loginL {position: absolute; left: 0; top: 0; width: 60%; height: 100%; }
.loginVod {position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; }
.loginVod .vod {width: 100%; height: 100%; object-fit: cover; }
/* 로그인 영역 */
.loginR {position: absolute; top: 0; right: 0; width: 40%; height: 100%; background: var(--bg-color); }
.loginR .col-12 {position: relative; height: 100%; }

/* 기존 .loginWrap 역할을 하는 .card 스타일링 */
.loginR .card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 470px;
    max-width: 90%; /* 반응형 고려 */
    transform: translate(-50%, -50%);
    padding: 50px 55px 20px 55px;
    border-radius: 50px;
    text-align: center;
    background: transparent;
    border: none;
}
.loginR .card img { width: 300px; max-width: 100%; margin-bottom: 20px; }

/* 언어 선택 Select 박스 */
.loginR select.loginLang.lang {
    width: 100%;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 7px;
    padding-left: 15px;
    padding-right: 40px; /* 오른쪽 화살표가 들어갈 공간 확보 */
    color: #fff;
    font-size: 14px;
    margin-bottom: 15px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:img/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}
.loginR select.loginLang.lang option {
    background-color: #1a1a1a;
    color: #fff; 
    padding: 10px;
}

/* Input 필드 (.form-control 덮어쓰기) */
.loginR .form-control {
    width: 100%;
    padding-left: 15px;
    box-shadow: none;
    color: var(--txt-color01);
    font-size: 16px;
    padding: 0 20px;
    border-radius: var(--border-radius);
    background-color: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.2);
    height: 50px;
    border-radius: 7px;
}
.loginR .form-control:hover,
.loginR .form-control:focus {
    box-shadow: transparent !important;
    border: 1px solid rgba(255,255,255,.2);
    background-color: rgba(255, 255, 255, 0.08);
    border-bottom: 2px solid #f05a24;
    color: var(--txt-color01);
}

.loginR .form-control::placeholder { color: rgba(255,255,255,.3); }
.loginR .login-btn {
    width: 100%;
    height: 55px;
    line-height: 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 5px;
    display: block;
    margin-top: 10px;
}
.loginR .join-btn:hover {
    color: #f05a24;
    background: transparent;
}
@media all and (max-width:1500px) {
    .loginR select.loginLang.lang {height: 40px;}
    .loginR .form-control {height: 40px;}
    .loginR .login-btn {height: 45px; line-height: 45px; font-size: 13px; padding: 0;}
    .loginR .card img {width: 80%; height: auto;}
}
@media all and (max-width:1200px) {
    .loginL {width: 100%;}
    .loginR {width: 100%; background: transparent;}
    .loginR .card {background: rgba(15,21,35,.9);}
}
@media all and (max-width:620px) {
    .loginL {width: 100%; height: 45%;}
    .loginR {width: 100%; height: 55%; min-height: 380px; top: auto; bottom: 0; padding: 0;}
    .loginR .card {
        top: 0; 
        bottom: 0; 
        left: 0; 
        width: 100%; 
        max-width: 100%;
        background: var(--bg-color); 
        transform: none; /* 기존 translate(-50%, -50%) 해제 */
        padding: 35px 7% 0 7%; 
        border-radius: 0;
    }
    .loginR .card img {width: 50%; height: auto;}
    .loginR select.loginLang.lang {height: 50px;}
    .loginR .form-control {height: 50px;}
    .loginR .login-btn {height: 55px; line-height: 55px; font-size: 15px; padding: 0;}
}

/* join */
.popBack {position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,.8); z-index:100; display:none;}
.popList {position:absolute; top:50%; left:50%; width:350px; transform:translate(-50%, -50%); border-radius:10px; overflow:hidden; box-shadow:0 10px 10px rgba(0,0,0,.5);}
.popList .close {position:absolute; top:15px; right:15px; width:20px; height:20px; background:url(/img/icon_x_w.png) no-repeat center; border-radius:50%; display:inline-block; cursor:pointer;}
.popList .title {background:#1c2028; padding:15px; color:#fff; font-size:17px; font-weight:600;}
.popList .pList {background:#fff; height:330px; padding:25px; font-size:13px; color:#000;}
.popList .pList .search {height:30px; background:rgba(0, 0, 0, 0.02); border:1px solid rgba(0, 0, 0, 0.2);}
.popList .pList .selOK {height:30px; padding:0 15px; background:#1c2028; color:#fff; border:0;}
.popList .pList .tableList {height:180px; margin-top:15px; overflow-y:auto; }
.popList .pList ul {width:100%; display:flex; justify-content:space-around;}
.popList .pList ul li {padding:8px; text-align:center; }
.popList .pList ul li:nth-child(1) {width:10%;}
.popList .pList ul li:nth-child(2) {width:30%;}
.popList .pList ul li:nth-child(3) {width:25%;}
.popList .pList ul li:nth-child(4) {width:35%;}
.popList .pList ul.th {background:rgba(0,0,0,.02); padding:0; border-top:1px solid #1c2028; border-bottom:1px solid rgba(0,0,0,.1);}
.popList .pList .td {border-bottom:1px dashed rgba(0,0,0,.1); }
.popList .pList input {height:auto;}
.popList .btnWrap {clear:both; width:100%; margin-top:25px; text-align:center; }
.popList .btnWrap .bOk {background:#1c2028; padding:7px 35px; color:#fff; border-radius:3px; display:inline-block;}
.popList .btnWrap .bCa {background:#eee; padding:7px 35px; border-radius:3px; color:#000; display:inline-block;}

@media all and (max-width: 360px) {
	.popList {width:95%;}
}

.popBack1 {position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,.8); z-index:100; display:none;}
.popList1 {position:absolute; top:50%; left:50%; width:700px; transform:translate(-50%, -50%); border-radius:10px; overflow:hidden; box-shadow:0 10px 10px rgba(0,0,0,.5);}
.popList1 .close {position:absolute; top:15px; right:15px; width:20px; height:20px; background:url(/img/icon_x_w.png) no-repeat center; border-radius:50%; display:inline-block; cursor:pointer;}
.popList1 .title {background:#1c2028; padding:15px; color:#fff; font-size:17px; font-weight:600;}
.popList1 .pList {background:#fff; height:550px; padding:25px; font-size:13px;}
.popList1 .pList .search {height:30px; background:rgba(0, 0, 0, 0.02); border:1px solid rgba(0, 0, 0, 0.2);}
.popList1 .pList .selOK {height:30px; padding:0 15px; background:#1c2028; color:#fff; border:0;}
.popList1 .pList .tableList {height:420px; margin-top:15px; overflow-y:auto; }
.popList1 .pList ul {width:100%; display:flex; justify-content:space-around;}
.popList1 .pList ul li {padding:8px; text-align:center; }
.popList1 .pList ul li:nth-child(1) {width:10%;}
.popList1 .pList ul li:nth-child(2) {width:30%;}
.popList1 .pList ul li:nth-child(3) {width:25%;}
.popList1 .pList ul li:nth-child(4) {width:35%;}
.popList1 .pList .th {background:rgba(0,0,0,.02);  border-top:1px solid #1c2028; border-bottom:1px solid rgba(0,0,0,.1);}
.popList1 .pList .td {border-bottom:1px dashed rgba(0,0,0,.1); }
.popList1 .pList input {height:auto;}
.popList1 .btnWrap {clear:both; width:100%; margin-top:15px; padding:0; text-align:center; }
.popList1 .btnWrap .bOk {background:#1c2028; padding:7px 35px; line-height:1;  color:#fff; border-radius:3px; display:inline-block;}
.popList1 .btnWrap .bCa {background:#eee; padding:7px 35px; line-height:1; border-radius:3px; display:inline-block;}

@media all and (max-width: 720px) {
	.popList1 {width:95%;}
}

.popBack2 {position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,.8); z-index:100; display:none;}
.popList2 {position:absolute; top:50%; left:50%; width:700px; transform:translate(-50%, -50%); border-radius:10px; overflow:hidden; box-shadow:0 10px 10px rgba(0,0,0,.5);}
.popList2 .close {position:absolute; top:15px; right:15px; width:20px; height:20px; background:url(/img/icon_x_w.png) no-repeat center; border-radius:50%; display:inline-block; cursor:pointer;}
.popList2 .title {background:#1c2028; padding:15px; color:#fff; font-size:17px; font-weight:600;}
.popList2 .pList {background:#fff; height:550px; padding:25px; font-size:13px;}
.popList2 .pList .search {height:30px; background:rgba(0, 0, 0, 0.02); border:1px solid rgba(0, 0, 0, 0.2);}
.popList2 .pList .selOK {height:30px; padding:0 15px; background:#1c2028; color:#fff; border:0;}
.popList2 .pList .tableList {height:420px; margin-top:15px; overflow-y:auto; }
.popList2 .pList ul {width:100%; display:flex; justify-content:space-around;}
.popList2 .pList ul li {padding:8px; text-align:center; }
.popList2 .pList ul li:nth-child(1) {width:10%;}
.popList2 .pList ul li:nth-child(2) {width:30%;}
.popList2 .pList ul li:nth-child(3) {width:25%;}
.popList2 .pList ul li:nth-child(4) {width:35%;}
.popList2 .pList .th {background:rgba(0,0,0,.02);  border-top:1px solid #1c2028; border-bottom:1px solid rgba(0,0,0,.1);}
.popList2 .pList .td {border-bottom:1px dashed rgba(0,0,0,.1); }
.popList2 .pList input {height:auto;}
.popList2 .btnWrap {clear:both; width:100%; margin-top:15px; padding:0; text-align:center; }
.popList2 .btnWrap .bOk {background:#1c2028; padding:7px 35px; line-height:1; color:#fff; border-radius:3px; display:inline-block;}
.popList2 .btnWrap .bCa {background:#eee; padding:7px 35px; line-height:1; border-radius:3px; display:inline-block;}

@media all and (max-width: 720px) {
	.popList2 {width:95%;}
}


.popBack2 {position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,.8); z-index:100; display:none;}
.popBack3 {position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,.8); z-index:100; display:none;}
.popBack4 {position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,.8); z-index:100; display:none;}
.popCont {position:absolute; top:50%; left:50%; width:95%; max-width:450px; max-height:650px; background:rgba(0,0,0,.8); transform:translate(-50%, -50%); padding:20px; font-size:13px; border-radius:10px; overflow-y:auto; box-shadow:0 10px 10px rgba(0,0,0,.5);}
.popCont .close {position:absolute; top:15px; right:15px; width:20px; height:20px; background:url(/img/icon_x_w.png) no-repeat center; border-radius:50%; display:inline-block; cursor:pointer;}

.popCont::-webkit-scrollbar {
  width: 6px;
}
.popCont::-webkit-scrollbar-track {
  background-color: rgba(0,0,0,.05);
}
.popCont::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: #222;
}
.popCont::-webkit-scrollbar-button {
  width: 0;
  height: 0;
}

/* INDEX */
.tab_menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 1rem;
    padding-bottom: 0;
}
.tab_menu > li {
    padding: 13px 0;
    background: rgba(255, 255, 255, .05);
    font-weight: 400;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 5px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, .02);
    cursor: pointer;
    width: 100%;
}
.tab_menu > li > a {
    color: rgba(255, 255, 255, .6);
    display: block;
    width: 100%;
    height: 100%;
}
.tab_menu > li.on {
    background: #f15a24;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid #f15a24;
    text-shadow: 0 0 3px rgba(0, 0, 0, .4);
    box-shadow: 0 10px 10px rgba(0, 0, 0, .05);
}
.tab_menu > li.on > a {
    color: #fff;

}
.wrap {
    max-width: 768px;
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 150px;
}

/* 제품 스타일 */
.main .product_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.main .product_list li {
    min-width: 0;
}
.main .product_list li .info_wrap,
.main .product_list li .photo {
    width: 100%;
}
.main .product_list .photo {
    width: 100%;
    max-width: 200px;
    aspect-ratio: 1 / 1;   /* 정사각형 */
    background-color: #f0f0f0;
    border-radius: 8px;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.main .product_list .info_wrap .info_name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;  /* 말줄임 적용 */
    padding: 5px 0;
    font-size: 14px;
}
.main .info_price {
    font-weight: bold;
    font-size: 17px;
}

/* PC 화면 대응 */
@media (min-width: 1024px) {
    .main {padding: 0;}
    .main .product_list {
        grid-template-columns: repeat(6, 1fr);
        gap: 20px;
    }
}

/* === [prodduct_detail] === */
.pd_wrap { box-sizing: border-box; color: #333; font-family: 'Noto Sans KR', sans-serif; }
.pd_wrap * { box-sizing: border-box; }
.pd_wrap a { text-decoration: none; color: inherit; }
.pd_wrap .pd_container {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 80px; /* 모바일 하단 버튼 공간 확보 */
}
.pd_wrap .pd_top { display: flex; flex-direction: column; }
.pd_wrap .pd_img {
    width: 100%;
    background-color: #f8f8f8;
}
.pd_wrap .pd_img .img_box {
    width: 100%;
    padding-bottom: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.pd_wrap .pd_info { padding: 20px; }
.pd_wrap .pd_header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 15px; }
.pd_wrap .pd_title { font-size: 20px; font-weight: bold; line-height: 1.4; width: 90%; margin: 0; }
.pd_wrap .pd_share { width: 24px; height: 24px; cursor: pointer; opacity: 0.6; }
.pd_wrap .pd_price_row { border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 10px 0; display: flex; justify-content: space-between; align-items: center; }
.pd_wrap .pd_price_label { font-size: 14px; color: #666; }
.pd_wrap .pd_price_val { font-size: 24px; font-weight: bold; color: #e63740; }
.pd_wrap .pd_tab { margin-top: 30px; border-bottom: 1px solid #ddd; }
.pd_wrap .pd_tab ul { list-style: none; padding: 0; margin: 0; display: flex; }
.pd_wrap .pd_tab li { flex: 1; text-align: center; padding: 15px 0; font-weight: bold; cursor: pointer; border-bottom: 2px solid var(--txt-main);}
.pd_wrap .pd_content { padding: 40px 20px; text-align: left; min-height: 300px; color: #888; }
.pd_wrap .pd_btn_wrap {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fbf7f4;
    border-top: 1px solid #eee;
    z-index: 100;
    display: flex;
    gap: 10px;
}
.pd_wrap .pd_btn {
    width: 100%;
    height: 50px;
    line-height: 50px;
    background: #e63740;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    border: none;
    cursor: pointer;
}

/* PC 화면 대응 */
@media (min-width: 1024px) {
    .pd_wrap .pd_container { padding-top: 50px; padding-bottom: 50px; }
    
    /* 레이아웃 변경: 좌측 이미지, 우측 정보 */
    .pd_wrap .pd_top { flex-direction: row; gap: 60px; align-items: flex-start; }
    .pd_wrap .pd_img { width: 50%; border-radius: 10px; overflow: hidden; }
    .pd_wrap .pd_info { width: 50%; padding: 0; position: sticky; top: 20px; }

    .pd_wrap .pd_title { font-size: 28px; margin-bottom: 10px; }
    .pd_wrap .pd_price_val { font-size: 32px; }

    /* PC에서는 버튼이 하단 고정이 아니라 정보란 안에 위치 */
    .pd_wrap .pd_btn_wrap {
        position: static;
        margin-top: 40px;
        border: none;
    }
    .pd_wrap .pd_btn { border-radius: 5px; font-size: 20px; height: 60px; line-height: 60px; }
}