@charset "utf-8";

/*
 * desktop-products.css
 * PC product list / product detail
 * 기준: 운영 사이트 /shop/list.php?ca_id=10 렌더링 후 HTML + PC 캡처
 */

/* product list visual */
.product-list-main {
    position: relative;
    min-width: 1200px;
    height: 430px;
    overflow: hidden;
}

.product-list-main .banner {
    display: block;
    width: 100%;
    height: 430px;
    object-fit: cover;
}

.product-list-main .inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1200px;
    transform: translate(-50%, -50%);
    color: #fff;
}

.product-list-main .inner h3,
.product-list-main .inner h4 {
    letter-spacing: -3.5px;
}

.product-list-main .inner h4 {
    margin: 0 0 6px;
    font-size: 36px;
    line-height: 1.2;
}

.product-list-main .inner h3 {
    margin: 0 0 12px;
    font-size: 51px;
    line-height: 1.1;
}

.product-list-main .inner p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
}

/* product list breadcrumb */
.product-list-main .nav2 {
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 10;
    width: 1200px;
    height: 70px;
    transform: translateX(-50%);
    background: #fff;
}

.product-list-main .nav2 .ulinner {
    width: 1200px;
    margin: 0 auto;
    padding: 0 68px;
    box-sizing: border-box;
}

.product-list-main .nav2 ul {
    display: flex;
    height: 70px;
    align-items: center;
    gap: 25px;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #e5e5e5;
}

.product-list-main .nav2 ul li {
    position: relative;
    height: 70px;
    padding-right: 24px;
    list-style: none;
    font-size: 14px;
    line-height: 70px;
}

.product-list-main .nav2 ul li.before:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 13px;
    transform: translateY(-50%);
    background: #d1d1d1;
}

.product-list-main .nav2 a {
    color: #1c1c20;
}

.product-list-main .nav2 .check {
    margin-left: 110px;
    cursor: pointer;
}

.product-list-main .nav_sub {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 170px;
    height: auto;
    padding: 0;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-top: 0;
    z-index: 20;
}

.product-list-main .nav_sub.is-open {
    display: block;
}

.product-list-main .nav_sub li {
    width: 100%;
    height: 42px;
    padding: 0;
    line-height: 42px;
}

.product-list-main .nav_sub li:after {
    display: none;
}

.product-list-main .nav_sub li a {
    display: block;
    padding: 0 14px;
    font-size: 14px;
    line-height: 42px;
}

/* list wrapper */
.product-list-wrap .container {
    width: 1200px;
    margin: 0 auto;
}

.product-list-wrap .pagetitle {
    margin: 80px 0 0;
    font-size: 40px;
    line-height: 1.25;
    text-align: center;
}

.product-list-wrap .pagetxt {
    margin: 10px 0 0;
    font-size: 18px;
    text-align: center;
}

.product-list-wrap .table_wrap {
    margin-top: 80px;
}

/* search */
.product-list-search {
    width: 330px;
    margin: 0 auto 45px;
}

.product-list-search form {
    position: relative;
    display: block;
    width: 330px;
    height: 36px;
    border: 1px solid #aeb4bf;
    border-radius: 18px;
    background: #fff;
    box-sizing: border-box;
}

.product-list-search input {
    width: 280px;
    height: 34px;
    padding: 0 15px;
    border: 0;
    background: transparent;
    font-size: 13px;
    box-sizing: border-box;
}

.product-list-search button {
    position: absolute;
    top: 0;
    right: 8px;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

/* sct structure */
#sct {
    width: 1200px;
    margin: 0 auto;
}

#sct #wrapper_title {
    margin: 0 0 18px;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
}

#sct_location {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 32px;
    margin: -42px 0 18px;
    font-size: 13px;
    color: #777;
}

#sct_location .go_home {
    color: #999;
}

#sct_location .dividing-line {
    margin: 0 10px;
    color: #bbb;
}

#sct_location select {
    width: 150px;
    height: 28px;
    border: 1px solid #ddd;
    font-size: 13px;
}

/* sub category box */
#sct_ct_1 {
    margin-bottom: 18px;
    border: 1px solid #ddd;
}

#sct_ct_1 h2 {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    margin: -1px;
    clip: rect(0, 0, 0, 0);
}

#sct_ct_1 ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin: 0;
    padding: 0;
}

#sct_ct_1 li {
    list-style: none;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

#sct_ct_1 li:nth-child(5n) {
    border-right: 0;
}

#sct_ct_1 li:nth-last-child(-n+5) {
    border-bottom: 0;
}

#sct_ct_1 a {
    display: block;
    height: 58px;
    padding: 0 18px;
    color: #111;
    font-size: 13px;
    line-height: 58px;
    font-weight: 700;
}

/* sort */
#sct_sortlst {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 44px;
    margin-bottom: 30px;
    padding: 0 12px;
    border: 1px solid #eee;
    box-sizing: border-box;
}

#sct_sort h2 {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    margin: -1px;
    clip: rect(0, 0, 0, 0);
}

#ssch_sort {
    display: flex;
    gap: 14px;
    margin: 0;
    padding: 0;
}

#ssch_sort li {
    list-style: none;
}

#ssch_sort a {
    color: #555;
    font-size: 13px;
}

#sct_lst {
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
}

#sct_lst li {
    list-style: none;
}

#sct_lst button {
    border: 0;
    background: transparent;
    color: #999;
    cursor: pointer;
}

/* product cards */
#sct .sct {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 24px;
    row-gap: 54px;
    margin: 0;
    padding: 0;
}

#sct .sct_li {
    width: 220px;
    min-height: 330px;
    list-style: none;
}

#sct .sct_img {
    width: 220px;
    height: 220px;
    border: 1px solid #eee;
    box-sizing: border-box;
    background: #fff;
    text-align: center;
}

#sct .sct_img a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

#sct .sct_img img {
    display: block;
    width: 220px;
    height: 220px;
    object-fit: contain;
}

#sct .sct_ct_wrap {
    padding-top: 15px;
}

#sct .sct_txt {
    min-height: 48px;
    font-size: 13px;
    line-height: 1.45;
    word-break: keep-all;
}

#sct .sct_txt a {
    color: #111;
}

#sct .sct_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

#sct .sct_cost {
    color: #000;
    font-size: 14px;
    font-weight: 700;
}

#sct .sct_op_btn {
    display: flex;
    gap: 10px;
    align-items: center;
}

#sct .sct_op_btn button {
    padding: 0;
    border: 0;
    background: transparent;
    color: #aaa;
    cursor: pointer;
}

#sct .sit_icon_li {
    display: none;
}

#sct .sct_noitem {
    padding: 80px 0;
    border: 1px solid #eee;
    text-align: center;
    font-size: 16px;
}

/* pagination */
.pg_wrap {
    margin: 60px 0 100px;
    text-align: center;
}

.pg {
    display: inline-flex;
    gap: 4px;
    align-items: center;
}

.pg_current,
.pg_page {
    display: inline-block;
    min-width: 28px;
    height: 28px;
    padding: 0 8px;
    border: 1px solid #ddd;
    box-sizing: border-box;
    color: #777;
    font-size: 13px;
    line-height: 26px;
    text-align: center;
}

.pg_current {
    border-color: #1d73e8;
    background: #1d73e8;
    color: #fff;
}

.pg_next,
.pg_end {
    min-width: 34px;
}

/* sub 1.31: product item detail - rendered HTML based */

.product-item-location {
    width: 1200px;
    margin: 70px auto 25px;
}

#sct_location.view_location {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 32px;
    font-size: 13px;
    color: #777;
}

#sct_location.view_location .go_home {
    color: #999;
}

#sct_location.view_location .dividing-line {
    margin: 0 10px;
    color: #bbb;
}

#sct_location.view_location select {
    width: 150px;
    height: 28px;
    border: 1px solid #ddd;
    font-size: 13px;
}

.product-item-page {
    width: 1200px;
    margin: 0 auto 120px;
    color: #1c1c20;
}

#sit_hhtml {
    min-height: 1px;
}

#sit_ov_from {
    position: relative;
}

#sit_ov_wrap {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    padding: 30px 0 55px;
    border-bottom: 1px solid #e5e5e5;
}

#sit_pvi {
    width: 420px;
}

#sit_pvi_big {
    position: relative;
    width: 420px;
    height: 420px;
    border: 1px solid #eee;
    background: #fff;
    box-sizing: border-box;
    text-align: center;
}

#sit_pvi_big a.visible,
#sit_pvi_big a:first-child {
    display: flex;
}

#sit_pvi_big .popup_item_image {
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

#sit_pvi_big img {
    display: block;
    width: 300px;
    height: 300px;
    object-fit: contain;
}

#popup_item_image {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 34px !important;
    height: 34px !important;
    border-radius: 100%;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    line-height: 34px;
    text-align: center;
}

#popup_item_image i {
    line-height: 34px;
}

#sit_pvi_thumb {
    margin: 14px 0 0;
    padding: 0;
}

#sit_pvi_thumb li {
    display: inline-block;
    list-style: none;
}

#sit_pvi_thumb img {
    display: block;
    width: 70px;
    height: 70px;
    border: 1px solid #eee;
    object-fit: contain;
}

#sit_ov {
    flex: 1;
    min-width: 0;
}

#sit_title {
    margin: 0 0 14px;
    font-size: 25px;
    line-height: 1.35;
    letter-spacing: -1px;
    font-weight: 700;
}

#sit_desc {
    min-height: 20px;
    margin: 0 0 12px;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

#sit_opt_info {
    margin: 0 0 18px;
    color: #777;
    font-size: 13px;
}

#sit_star_sns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 12px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    color: #777;
    font-size: 13px;
}

#sit_btn_opt {
    display: flex;
    gap: 12px;
    align-items: center;
}

#sit_btn_opt button,
#btn_wish {
    border: 0;
    background: transparent;
    color: #999;
    cursor: pointer;
}

.sit_info {
    margin-bottom: 24px;
}

.sit_ov_tbl {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid #222;
}

.sit_ov_tbl th,
.sit_ov_tbl td {
    padding: 14px 16px;
    border-bottom: 1px solid #e5e5e5;
    font-size: 14px;
    text-align: left;
}

.sit_ov_tbl th {
    width: 130px;
    background: #f8f8f8;
    font-weight: 700;
}

.sit_ov_tbl .tr_price strong {
    color: #000;
    font-size: 20px;
}

.product-consult-option {
    margin: 0 0 22px;
    padding: 18px;
    border: 1px solid #e5e5e5;
    background: #fbfbfb;
}

.product-consult-option h3 {
    margin: 0 0 10px;
    font-size: 16px;
}

.product-consult-box p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    word-break: keep-all;
}

#sit_tot_price {
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 14px;
}

#sit_tot_price strong {
    font-size: 22px;
    color: #000;
}

.product-consult-buttons {
    display: flex;
    gap: 8px;
}

.product-consult-buttons a {
    display: block;
    height: 46px;
    padding: 0 18px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 46px;
    font-weight: 700;
    text-align: center;
    box-sizing: border-box;
}

.sit_btn_tel {
    background: #1c1c20;
    color: #fff;
}

.sit_btn_kakao {
    background: #ffe812;
    color: #111;
}

.sit_btn_request {
    border: 1px solid #1c1c20;
    background: #fff;
    color: #1c1c20;
}

#sit_siblings {
    display: flex;
    justify-content: space-between;
    padding: 18px 0 50px;
    font-size: 13px;
}

#sit_siblings a {
    color: #555;
}

#sit_rel {
    margin-bottom: 55px;
}

#sit_rel h2 {
    margin: 0 0 18px;
    font-size: 20px;
}

#sit_rel .sct_noitem {
    padding: 40px 0;
    border: 1px solid #eee;
    color: #777;
    text-align: center;
}

#sit_info {
    margin-top: 20px;
}

#sit_tab .tab_tit {
    display: flex;
    margin: 0;
    padding: 0;
    border-top: 1px solid #222;
    border-bottom: 1px solid #ddd;
}

#sit_tab .tab_tit li {
    flex: 1;
    list-style: none;
}

#sit_tab .tab_tit button {
    display: block;
    width: 100%;
    height: 58px;
    border: 0;
    border-right: 1px solid #e5e5e5;
    background: #fff;
    color: #333;
    font-size: 15px;
    cursor: pointer;
}

#sit_tab .tab_tit li:last-child button {
    border-right: 0;
}

#sit_tab .tab_tit button.selected {
    background: #1c1c20;
    color: #fff;
    font-weight: 700;
}

#sit_tab .tab_con {
    margin: 0;
    padding: 0;
}

#sit_tab .tab_con>li {
    display: none;
    list-style: none;
    padding: 55px 0 0;
}

#sit_tab .contents_tit {
    margin: 0 0 35px;
    font-size: 24px;
    text-align: center;
}

#sit_tab .tab_con h3 {
    margin: 0 0 24px;
    font-size: 20px;
}

#sit_inf_explan {
    margin-bottom: 60px;
    text-align: center;
}

#sit_inf_explan p {
    margin: 0;
}

#sit_inf_explan img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

#sit_inf_open {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid #222;
}

#sit_inf_open th,
#sit_inf_open td {
    padding: 14px 16px;
    border-bottom: 1px solid #e5e5e5;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
}

#sit_inf_open th {
    width: 220px;
    background: #f8f8f8;
    font-weight: 700;
}

.sit_empty {
    padding: 45px 0;
    border: 1px solid #eee;
    color: #777;
    text-align: center;
    font-size: 14px;
}

#sit_dvr,
#sit_ex {
    margin-bottom: 35px;
    padding: 24px;
    border: 1px solid #eee;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
}

#sit_dvr h3,
#sit_ex h3 {
    margin: 0 0 12px;
}