@charset "utf-8";

/* --- Product Skin Variables (Local) --- */
:root {
    --p-bg: #ffffff;
    --p-accent: #e9920a;
    --p-text-main: #121212;
    --p-text-sub: #666666;
    --p-border: #f0f0f0;
    --p-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
    --p-radius: 32px;
}

/* 게시판 공통 컨테이너 */

/* 게시판 카테고리 */
#bo_cate {
    margin: -20px 0 20px 0;
    text-align: center;
}

#bo_cate h2 {
    position: absolute;
    font-size: 0;
    line-height: 0;
    overflow: hidden
}

#bo_cate ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    width: 100%;
    margin: 0 auto;
    border-radius: 100px;

}

#bo_cate li {
    display: inline-block;
    padding: 0
}

#bo_cate a {
    display: block;
    line-height: 1;
    padding: 15px 22px;
    border: none;
    font-weight: 700;
    background: #fff;
    color: #666;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

#bo_cate a:hover {
    background: #ededed;
    border-color: #ededed;
}

#bo_cate #bo_cate_on {
    background: var(--p-accent);
    color: #fff;
    border-color: var(--p-accent);
}

/* 게시판 목록 */
/* 게시판 목록 */

#bo_gall #gall_ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
	grid-template-columns:repeat(4,1fr);
	gap:30px;
}

#bo_gall .gall_li {
}

#bo_gall .gall_li .gall_chk {
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 10
}

#bo_gall .gall_box {
    position: relative;
    background: #fff;
    border-radius: var(--p-radius);
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    border: 1px solid var(--p-border);
    height: 100%;
    display: flex;
    flex-direction: column;
}

#bo_gall .gall_box:hover {
    border-color: var(--p-accent);
}

#bo_gall .gall_con {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gall_row .col-gn-1 {
    width: 100%
}

.gall_row .col-gn-2 {
    width: 100%
}

.gall_row .col-gn-3 {
    width: 100%
}

.gall_row .col-gn-4 {
    width: 100%
}

.gall_row .col-gn-5 {
    width: 100%
}

#bo_gall .gall_now .gall_text_href a {
    color: var(--p-accent)
}

#bo_gall .gall_img {
    border: none;
    text-align: center;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/11;
    background: #f8f8f8;
}

#bo_gall .gall_img a,
#bo_gall .gall_img .no_image,
#bo_gall .gall_img .is_notice {
    display: block;
    height: 100%;
}

#bo_gall .gall_img img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
}

#bo_gall .gall_box:hover .gall_img img {
    transform: scale(1.1);
    filter: brightness(0.9);
}

#bo_gall .gall_img span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #f8f8f8;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 14px;
    color: #ccc;
    letter-spacing: 2px;
}

#bo_gall .gall_text_href {
    padding: 35px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

#bo_gall .bo_tit {
    display: block;
    line-height: 1.3;
    font-weight: 800;
    color: #000;
    font-size: 24px;
    margin-bottom: 10px;
    transition: all 0.2s;
    letter-spacing: -1px;
}



#bo_gall .bo_tit .cnt_cmt {
    background: #f0f0f0;
    color: var(--p-accent);
    font-size: 11px;
    height: 18px;
    line-height: 18px;
    padding: 0 6px;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 5px;
}

#bo_gall .bo_tit .new_icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    line-height: 16px;
    background: #ff3b30;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 800;
    vertical-align: middle;
    margin-left: 5px;
    border: none;
}

#bo_gall .bo_en {
    display: block;
    font-family: 'Outfit';
    font-size: 14px;
    font-weight: 700;
    color: #adadad;
    margin-bottom: 15px;
    text-transform: uppercase;
}

#bo_gall .bo_cnt {
    color: var(--p-text-sub);
    line-height: 1.5;
    font-size: 15px;
}

#bo_gall .gall_info {
    padding: 0 30px 30px;
    border-top: 1px solid #f8f8f8;
    padding-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #999;
    font-weight: 700;
    display: none;
}

#bo_gall .gall_info .gall_date,
#bo_gall .gall_info .gall_view {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

#bo_gall .gall_info i {
    font-size: 16px;
    color: #bbb;
}

/* 페이지 정보 / 버튼 */
#bo_btn_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

#bo_list_total {
    font-size: 14px;
    color: #888;
    font-weight: 700;
}

#bo_list_total strong {
    color: #000;
}

.btn_bo_user {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.btn_bo_user li {
    position: relative;
    padding: 0;
}

.btn_bo_user .btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    font-size: 20px;
    color: #444;
    transition: var(--transition);
}

.btn_bo_user .btn:hover {
    background: #000;
    color: #fff;
    border-color: #000;
    transform: translateY(-3px);
}

.more_opt {
    display: none;
    position: absolute;
    top: 55px;
    right: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 100;
    width: 140px;
    padding: 10px 0;
    list-style: none;
}

.more_opt li {
    padding: 0;
    display: block;
}

.more_opt li a,
.more_opt li button {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: #444 !important;
    font-weight: 700;
    text-align: left;
    width: 100%;
    border: none !important;
    background: none !important;
    cursor: pointer;
    transition: all 0.2s;
}

.more_opt li a:hover,
.more_opt li button:hover {
    background: #f8f8f8;
    color: var(--p-accent) !important;
}

.more_opt li i {
    margin-left: 5px;
    font-size: 14px;
    opacity: 0.5;
}

/* 검색 팝업 */
.bo_sch_wrap {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
}

.bo_sch_bg {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    width: 100%;
    height: 100%;
}

.bo_sch {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 90%;
    max-width: 450px;
    padding: 50px 40px;
    border-radius: 40px;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.3);
    z-index: 100;
}

.bo_sch h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 25px;
    text-align: center;
}

.bo_sch select {
    width: 100%;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 0 15px;
    margin-bottom: 15px;
    font-weight: 700;
}

.bo_sch .sch_bar {
    position: relative;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
}

.bo_sch .sch_input {
    flex: 1;
    height: 50px;
    border: none;
    padding: 0 20px;
    font-weight: 700;
}

.bo_sch .sch_btn {
    width: 60px;
    height: 50px;
    border: none;
    background: var(--p-accent);
    color: #fff;
    font-size: 20px;
}

.bo_sch .bo_sch_cls {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: #ccc;
    border: none;
    background: none;
}

/* 폼 요소 공통 */
.selec_chk {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    opacity: 0;
    outline: 0;
    z-index: -1;
    overflow: hidden
}

.bo_v_option {
    display: flex;
    flex-direction: row;
    gap: 15px;
    list-style: none;
    padding: 0;
}

.chk_box {
    position: relative;
    display: block;
}

.chk_box input[type="checkbox"]+label {
    position: relative;
    padding-left: 35px;
    color: #444;
    font-weight: 700;
    cursor: pointer;
    display: inline-block;
    line-height: 24px;
    min-height: 24px;
}

.chk_box input[type="checkbox"]+label span {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: block;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 6px;
    transition: all 0.3s;
}

.chk_box input[type="checkbox"]:checked+label span {
    background: var(--p-accent);
    border-color: var(--p-accent);
}

.chk_box input[type="checkbox"]:checked+label span:after {
    content: '\f00c';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px;
}

/* 페이지네이션 */
.mw_pagination .pg_wrap {
    display: flex;
    justify-content: center;
    gap: 10px;
    float: initial;
}

.mw_pagination .pg_page,
.mw_pagination .pg_current {
    width: 44px;
    height: 44px;
    line-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 800;
    transition: all 0.3s;
    border-color: var(--p-accent);
}

.mw_pagination .pg_page {
    background-color: #fff;
    border: 1px solid #eee;
    color: #888;
}

.mw_pagination .pg_page:hover {
    border-color: var(--p-accent);
    color: var(--p-accent);
}

.mw_pagination .pg_current {
    background: var(--p-accent);
    color: #fff;
}

/* --- 게시물 본문 (view.skin.php) --- */

#bo_v header {
    margin-bottom: 20px;
}

#bo_v_title .bo_v_cate {
    margin-bottom: 15px;
    display: inline-block;
    background: #f8f8f8;
    color: var(--p-accent);
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 800;
    font-size: 14px;
}

#bo_v_title .bo_v_tit {
    display: block;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.2;
    color: #000;
}

#bo_v_summary {
    background: #fbfbfb;
    border-radius: 20px;
    padding: 30px;
    margin: 20px 0 60px 0;
    line-height: 1.6;
    border: 1px solid var(--p-border);
}

.v_summary_text {
    font-size: 18px;
    font-weight: 700;
    color: #444;
}

#bo_v_summary i {
    color: var(--p-accent);
    font-size: 24px;
    vertical-align: middle;
    margin-right: 8px;
}

/* 상세페이지 하단 버튼 */
#bo_v_bot {
    margin-top: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.bo_v_list_btn .btn_large {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 18px 60px;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 800;
    transition: all 0.3s;
    text-decoration: none;
}

.bo_v_list_btn .btn_large:hover {
    background: var(--p-accent);
}

.bo_v_opt_btn {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

#bo_v_info {
    background: #f8f8f8;
    padding: 0 30px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#bo_v_info .profile_info_ct span {
    margin-right: 20px;
    color: #777;
    font-size: 14px;
}

#bo_v_info .profile_info_ct strong {
    color: #333;
}

#bo_v_atc.yesdesign {
    background: #ffffff;
    padding: 40px;
    border-radius: 32px;
    border: 1px solid #f0f0f0;
}

#bo_v_img {
    margin-bottom: 50px;
}

.v_img_item {
    margin-bottom: 30px;
    text-align: center;
}

.v_img_item img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

#bo_v_con {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

#bo_v_link {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

#bo_v_link h2 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 25px;
}

#bo_v_link ul {
    list-style: none;
    padding: 0;
}

#bo_v_link li {
    background: #fff;
    border: 1px solid #eee;
    padding: 20px 25px;
    border-radius: 15px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

#bo_v_link li:hover {
    border-color: var(--p-accent);
    background: #fbfbfb;
}

#bo_v_link li a {
    font-weight: 700;
    color: #333;
    display: block;
}

.bo_v_nb {
    margin-top: 80px;
    border-top: 1px solid #eee;
    list-style: none;
    padding: 0;
}

.bo_v_nb li {
    padding: 30px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.bo_v_nb .nb_tit {
    display: inline-block;
    width: 120px;
    color: #aaa;
    font-weight: 800;
    font-size: 14px;
}

.bo_v_nb li a {
    font-weight: 700;
    color: #333;
    flex: 1;
}

.bo_v_nb li a:hover {
    color: var(--p-accent);
}

/* --- 글쓰기 (write.skin.php) --- */
#bo_w {
    padding: 0;
}

#bo_w h2 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: -1px;
}

#fwrite {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}



.write_div label {
    display: block;
    margin-bottom: 10px;
    font-weight: 800;
    color: #333;
    font-size: 16px;
}

.write_div select {
    width: 100%;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 0 15px;
    font-weight: 700;
}

.frm_input,
.frm_file {
    font-size: 14px !important;
    font-weight: 500 !important;
}


.file_wr .file_del * {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    font-weight: 500;
}

.write_div .full_input {
    width: 100%;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 0 15px;
    font-size: 15px;
    transition: all 0.3s;
}

.write_div textarea.full_input {
    height: auto;
    min-height: 140px;
    padding: 15px;
    line-height: 1.6;
    resize: vertical;
}

.write_div .full_input:focus {
    border-color: var(--p-accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(233, 146, 10, 0.1);
}

.write_div {
    margin-top: 30px;
}

.bo_w_info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.bo_file_header {
    margin: 60px 0 10px;
    padding: 15px 0;
    border-bottom: 2px solid #333;
}

.bo_file_header:first-of-type {
    margin-top: 40px;
}

.bo_file_header h3 {
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bo_file_header i {
    font-size: 24px;
    color: var(--p-accent);
}

.bo_w_flie {
    margin-top: 15px;
}

.file_wr {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    background: #fbfbfb;
}

.file_wr .full_input {
    margin-top: 10px;
    height: 40px;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 0 10px;
}

.file_del {
    margin-top: 10px;
    font-size: 13px;
    color: #777;
}

#captcha {
    margin-top: 30px;
    text-align: center;
}

.btn_confirm {
    margin-top: 50px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn_confirm .btn_cancel {
    height: 60px;
    line-height: 60px;
    padding: 0 40px;
    background: #eee;
    border-radius: 10px;
    font-weight: 800;
    color: #666;
}

.btn_confirm .btn_submit {
    height: 60px;
    line-height: 60px;
    padding: 0 50px;
    background: var(--p-accent);
    border-radius: 10px;
    font-weight: 800;
    color: #fff;
    border: none;
}

/* --- Mobile Responsive --- */
@media (max-width: 1400px) {
    .gall_row .col-gn-3 {
        width: 50%;
    }
}

@media (max-width: 900px) {

    .gall_row .col-gn-3,
    .gall_row .col-gn-4 {
        width: 100%;
    }

	#bo_gall #gall_ul {grid-template-columns:1fr; gap:20px;}

    #bo_gall .gall_li {
        padding: 0;
        margin-bottom: 30px;
    }

    #bo_cate ul {
        flex-wrap: wrap;
        border-radius: 20px;
        padding: 0;
        gap: 6px;
    }

    #bo_cate a {
        padding: 10px 15px;
        font-size: 15px;

    }

    .profile_info_ct {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    #bo_v_title .bo_v_tit {
        font-size: 28px;
    }

    #bo_v_info {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}

/*커스텀 디자인*/
/* Product Skin Styles - Premium Design */
.mw_product_contents {
    width: 100%;
    margin: 60px auto 0 auto;
    color: #333;
    background: #fff;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.03);
}

.pro01 {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0;
    margin: -20px 0 60px 0;
}

/* Header Section */
.probox_01 {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    padding: 60px;
    border: 1px solid #f0f0f0;
}

.pro_info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.probox_01 a img {
    width: 180px;
    height: auto;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.probox_01 a:hover img {
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 15px 30px rgba(233, 146, 10, 0.2);
}

.probox_01 h3 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -2px;
}

.probox_01 h3 span {
    font-size: 14px;
    color: #c8c8c8;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    margin-left: 10px;
}

.probox_01 .t_brief {
    font-size: 18px;
    line-height: 1.5;
    color: #666 !important;
    margin: 0;
    word-break: keep-all;
}

.probox_01 .t_span {
    display: flex;
    align-items: center;
}

.probox_01 .t_span img {
    height: 44px;
    width: auto;
    transition: all 0.3s;
}

.probox_01 .t_span a:hover img {
    transform: translateX(5px);
}

/* Swiper Slider Customization */
/* Product Visual Area */
.product_imgs {
    width: 550px;
    flex-shrink: 0;
    aspect-ratio: 4/3;
    background: #fdfdfd;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid #f0f0f0;
}

.product_imgs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* extra_imgs Gallery */
.extra_imgs {
    padding: 0 0 60px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    align-items: center;
}

.big_img {
    width: 100%;
    max-width: 1000px;
    height: 500px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.big_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.small_img {
    width: 100%;
    max-width: 1000px;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 10px;
}

.s_item {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
    background: #eee;
}

.s_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

.s_item.active {
    border-color: var(--p-accent);
}

/* Pro Features in Info */
.pro_features {
    margin-top: 15px;
    padding: 30px;
    background: #fafafa;
}

.pro_features h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #111;
}

.feature_content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature_content li {
    font-size: 15px;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.feature_content li i {
    color: var(--p-accent);
    margin-top: 3px;
    font-size: 14px;
}

@media screen and (max-width: 1200px) {
	.mw_product_contents {border-radius:20px;}
    .probox_01 {
        gap: 40px;
        padding: 40px;
        border-radius: 20px;
    }

    .product_imgs {
        width: 450px;
    }

    .probox_01 h3 span {
        display: block;
        margin: 10px 0 0 0;
    }

    .extra_imgs {
        padding: 0 20px 60px 20px;
    }

    .big_img {
        height: initial;
    }
}

@media screen and (max-width: 768px) {
    .probox_01 {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .product_imgs {
        width: 100%;
    }

    .small_img {
        grid-template-columns: repeat(8, 1fr);
        gap: 5px;
    }

    .pro_features {
        text-align: left;
    }
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.swiper-slide img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: contain !important;
}

/* User wants it to FILL the box (꽉차게) */
.swiper-slide img {
    object-fit: cover !important;
}

/* Zoom Button */
.zoom_btn {
    position: absolute;
    top: 20px;
    right: 20px;
    transform: scale(0.8);
    width: 60px;
    height: 60px;
    background: rgba(233, 146, 10, 0.9);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.swiper-slide:hover .zoom_btn {
    opacity: 1;
    transform: scale(1);
}

.zoom_btn:hover {
    background: #000;
}

/* Modal Styles */
.mw_modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    overflow: auto;
    cursor: zoom-out;
}

.mw_modal_content {
    margin: auto;
    display: block;
    width: auto;
    max-width: 65%;
    width: 1000px;
    max-height: 75vh;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    animation: zoom 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes zoom {
    from {
        transform: translateY(-50%) scale(0.8);
        opacity: 0;
    }

    to {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
}

.mw_modal_close {
    position: absolute;
    top: -50px;
    right: 0;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.mw_modal_content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.modal_watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 352px !important;
    opacity: 0.3;
    pointer-events: none;
    filter: brightness(0) invert(1);
    z-index: 10;
    box-shadow: none !important;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s;
}

.swiper-pagination-bullet-active {
    background: #e9920a !important;
    width: 30px;
    border-radius: 10px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #e9920a !important;
    background: rgba(255, 255, 255, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
    font-weight: 900;
}

/* Details Section */
.probox_02 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.box {
    background: #ffffff;
    padding: 40px;
    border-radius: 32px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s;
}

.box02 {
    grid-column: span 2;
    background: #ffffff;
    padding: 40px;
    border-radius: 32px;
    border: 1px solid #f0f0f0;
}

.ph4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #111;
    letter-spacing: -1px;
}

.ph4::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 22px;
    background: #e9920a;
    border-radius: 10px;
}

/* Info Section Additional Styles */
.pro_sec_box {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #f0f0f0;
}

.pro_sec_desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 15px;
}

.pro_sec_img_wrap {
    display: block;
    text-align: center;
}

.pro_sec_img_wrap img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Tables */
.t01 {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
}

.t01 td {
    padding: 15px 20px;
    background: #fbfbfb;
    font-size: 15px;
    color: #444;
}

.t01 tr td:first-child {
    border-radius: 12px 0 0 12px;
}

.t01 tr td:last-child {
    border-radius: 0 12px 12px 0;
}

.t01 .t01_title {
    width: 80px;
    font-weight: 900;
    color: #e9920a;
    background: #fff5e6;
    text-align: center;
    font-family: 'Outfit';
}

.t01_img {
    width: 120px;
    text-align: center;
}

.t01_img img {
    max-width: 100px;
    height: auto;
    border-radius: 12px;
}

.t01_brief {
    color: #666;
    line-height: 1.6;
    font-weight: 500;
}

/* Lists */
.box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.box ul li {
    padding: 12px 0;
    font-size: 16px;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid #f5f5f5;
}

.box ul li:last-child {
    border-bottom: none;
}

.box ul li::before {
    content: '\f105';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    color: #e9920a;
}

.box ul li.li_img {
    display: block;
    text-align: center;
    margin-top: 20px;
    border: none;
    padding: 0;
}

.box ul li.li_img img {
    max-width: 100%;
    height: auto;
}

/* Features List Section */
.probox_02 dl {
    grid-column: span 2;
    margin-top: 0;
    background: #111;
    color: #fff;
    padding: 40px 60px;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    overflow: hidden;
}

.probox_02 dl::after {
    content: 'FEATURES';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 120px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    font-family: 'Outfit';
    pointer-events: none;
}

.probox_02 dl dt {
    font-size: 22px;
    font-weight: 800;
    color: #e9920a;
    letter-spacing: -1px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.probox_02 dl dt::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(233, 146, 10, 0.3);
}

.probox_02 dl dd {
    margin: 0;
    padding: 5px 0;
    font-size: 18px;
    line-height: 1.6;
    color: #eee;
    position: relative;
    padding-left: 35px;
}

.probox_02 dl dd::before {
    content: '\f058';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 5px;
    color: #e9920a;
    font-size: 20px;
}

.swiper-button-next,
.swiper-button-prev {
    width: var(--swiper-navigation-size) !important;
}

/* Mobile Responsive */
@media screen and (max-width: 1200px) {
    .probox_02 {
        grid-template-columns: 1fr;
    }

    .box02 {
        grid-column: span 1;
    }

    .probox_02 dl {
        grid-column: span 1;
    }
}

@media screen and (max-width: 768px) {
    .probox_01 {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 20px;
    }

    .probox_01 a img {
        width: 140px;
    }

    .probox_01 h3 {
        font-size: 28px;
    }

    .probox_01 .t_brief {
        font-size: 15px;
    }

    .probox_02 dl {
        padding: 30px;
        border-radius: 20px;
    }

    .probox_02 dl dt {
        font-size: 18px;
    }

    .probox_02 dl dd {
        font-size: 16px;
    }

    /* t01 table mobile */
    .box,
    .box02 {
        padding: 30px;
        border-radius: 20px;
    }

    .ph4 {
        font-size: 18px;
    }

    .t01,
    .t01 tbody,
    .t01 tr,
    .t01 td {
        display: block;
        width: 100% !important;
    }

    .t01 tr {
        margin-bottom: 0;
    }

    .t01 td {
        padding: 15px !important;
        border-radius: 0 !important;
        background: #fff;
    }

    .t01 .t01_title {
        text-align: left !important;
        font-size: 18px;
        border-radius: 0 !important;
        padding: 15px 20px !important;
        margin-top: 20px;
    }

    .t01 tr:first-child .t01_title:first-child {
        margin-top: 0;
        border-radius: 20px 20px 0 0 !important;
    }

    .t01_img {
        text-align: center !important;
        border-left: 1px solid #eee;
        border-right: 1px solid #eee;
    }

    .t01_img img {
        width: 120px !important;
    }

    .t01_brief {
        background: #fbfbfb !important;
        border: 1px solid #eee;
        border-top: none;
        border-radius: 0 !important;
        font-size: 14px !important;
        line-height: 1.6;
        padding: 20px !important;
    }

    .t01 tr:last-child .t01_brief:last-child {
        border-radius: 0 0 20px 20px !important;
    }
}