/* ===== 전체 레이아웃 ===== */

#wrapper{
    background:#f8f8f8 !important;
    padding-top:1px;
    padding-bottom:30px;
}
#sit_ov_wrap {
    display: flex;
    gap: 60px;
    width:1240px;
    max-width: 1280px;
    margin: 60px auto;
    padding:45px 0px;
}

#sit_pvi { width: 50%; }
#sit_ov { width: 50%; }

/* ===== 이미지 ===== */
#sit_pvi_big {
   
    background: #fafafa;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius:20px;
}

#sit_pvi_big img {
    max-width: 100%;
    max-height: 100%;
}

#sit_pvi_thumb {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

#sit_pvi_thumb li {
    width: 70px;
    height: 70px;
    border: 1px solid #ddd;
}

/* ===== 제목 ===== */
#sit_title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Pretendard'
}

#sit_desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* ===== 가격 ===== */
.tr_price strong {
    font-size: 32px;
    font-weight: 800;
}

.sit_ov_tbl {
    width: 100%;
}

.sit_ov_tbl th {
    text-align: left;
    color: #888;
    padding: 8px 0;
}

.sit_ov_tbl td {
    text-align: right;
    font-weight: 600;
}

/* ===== 정보 박스 ===== */
.sit_info {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    margin: 20px 0;
}

/* ===== 옵션 UI ===== */
.sit_option {
    margin-top: 20px;
}

.sit_option h3 {
    display: none;
}

.sit_option select {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    appearance: none;
    background: #fff url("data:image/svg+xml;utf8,<svg fill='%23666' height='20' viewBox='0 0 20 20' width='20'><path d='M5 7l5 5 5-5z'/></svg>") no-repeat right 12px center;
    font-size: 14px;
    cursor: pointer;
}

.sit_option select:focus {
    border-color: #000;
    outline: none;
}

/* ===== 선택된 옵션 ===== */
#sit_sel_option {
    margin-top: 20px;
}

#sit_sel_option h3 {
    display: none;
}

#sit_opt_added {
    border-top: 1px solid #eee;
}

.sit_opt_list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    background:#fff !important;
}

.opt_name {
    font-size: 14px;
}

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

.sit_qty_minus,
.sit_qty_plus {
    width: 28px;
    height: 28px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
}

.num_input {
    width: 40px;
    height: 28px;
    text-align: center;
    border: 1px solid #ddd;
}

.sit_opt_prc {
    font-weight: 600;
}

/* ===== 총 금액 ===== */
#sit_tot_price {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid #000;
    text-align: right;
    font-size: 22px;
    font-weight: 800;
}

/* ===== 버튼 ===== */
#sit_ov_btn {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.sit_btn_cart {
    flex: 1;
    height: 52px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 15px;
    font-family: 'Pretendard'
}

.sit_btn_buy {
    flex: 2;
    height: 52px;
    background: #000;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

/* ===== 불필요 요소 숨김 ===== */
 


/* ===== 커스텀 드롭다운 ===== */
.custom-select {
    position: relative;
    margin-bottom: 10px;
}

.select-selected {
    height: 48px;
    border: 1px solid #ddd;
    padding: 0 14px;
    display: flex;
    align-items: center;
    cursor: pointer;
    background: #fff;
    font-size: 14px;
}

.select-selected:after {
    content: "";
    position: absolute;
    right: 14px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    transform: rotate(45deg);
}

.select-selected.active:after {
    transform: rotate(-135deg);
    top: 20px;
}

/* 옵션 리스트 */
.select-items {
    position: absolute;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    display: none;
    z-index: 99;
}

.select-items div {
    padding: 12px;
    cursor: pointer;
}

.select-items div:hover {
    background: #f5f5f5;
}



/* ===== 전체 영역 ===== */
#sit_info {
    max-width: 1280px;
    margin: 60px auto;
    border:0;
    width:1240px;
    display:block;
    border-radius:20px;
}

/* ===== 탭 ===== */
#sit_tab {
    width:1240px;
    position:relative;
}
#sit_tab .tab_tit li .selected:after{
    background:#000;
}
.tab_tit {
    top:80px;
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #eee;
    position:sticky;
    background:#fff;
    z-index:10000;
}
.tab_tit li{
    width: 25%;
    text-align:center;
}
.tab_tit li button {
    background: none;
    border: none;
    padding: 15px 0;
    font-size: 16px;
    color: #888;
    cursor: pointer;
    position: relative;
    font-family: 'Pretendard'
}

.tab_tit li button.selected {
    color: #000;
    font-weight: 700;
}

.tab_tit li button.selected:after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000;
}

/* ===== 콘텐츠 ===== */
.tab_con {
    padding: 30px 0;
}

.tab_con h2 {
    display: none;
}

#sit_inf_explan {
    line-height: 1.6;
}
#sit_inf_explan img{
    text-align:center;
    margin:0 auto;
}

/* 테이블 */
#sit_inf_open {
    width: 100%;
    border-top: 1px solid #ddd;
}

#sit_inf_open th {
    width: 30%;
    background: #fafafa;
    padding: 12px;
    text-align: left;
}

#sit_inf_open td {
    padding: 12px;
}


/* ===== 고정 구매 영역 ===== */
#sit_buy {
    position: sticky;
    top: 100px;
    float: right;
    width: 350px;
    display:none;
}

.sit_buy_inner {
    border: 1px solid #eee;
    padding: 20px;
    background: #fff;
}

.sit_side_option h3 {
    font-size: 14px;
    margin-bottom: 10px;
}

.sit_side_option select {
    width: 100%;
    height: 44px;
    border: 1px solid #ddd;
    padding: 0 12px;
    margin-bottom: 10px;
    appearance: none;
    background: #fff;
}

.sit_sel_option {
    margin-top: 20px;
}

.sit_sel_option h3 {
    display: none;
}

.sit_opt_added {
    border-top: 1px solid #eee;
}

.sit_opt_added li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.opt_name {
    font-size: 13px;
}

.opt_count {
    display: flex;
    align-items: center;
    gap: 8px;
}

.num_input {
    width: 40px;
    text-align: center;
    border: 1px solid #ddd;
}

.sit_qty_minus,
.sit_qty_plus {
    width: 26px;
    height: 26px;
    border: 1px solid #ddd;
    background: #fff;
}














/*list*/
/* =========================================
   ✅ JUICEPRESSO 스타일 상품 리스트 (List 10)
========================================= */

/* 1. 리스트 컨테이너 */
.sct.lists-row {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); /* 반응형 그리드 */
    gap: 40px 20px;
    padding: 40px 0;
    list-style: none;
    margin: 0 auto;
    max-width: 1200px;
}

/* 2. 개별 상품 카드 */
.sct_li {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
    transition: transform 0.3s ease;
}

/* 3. 이미지 영역 (sct_img) */
.sct_img {
    position: relative;
    background: #f9f9f9; /* 연한 회색 배경 */
    border-radius: 12px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid #f0f0f0;
}

.sct_img img {
    width: 100% !important;
    height: auto !important;
    transition: transform 0.5s ease;
}

.sct_li:hover .sct_img img {
    transform: scale(1.08); /* 호버 시 이미지 확대 */
}

/* 4. 장바구니 버튼 (이미지 내부 호버 시 등장) */
.list-10-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 5;
}

.sct_li:hover .list-10-btn {
    transform: translateY(0);
}

.btn_cart.sct_cart {
    width: 100%;
    height: 50px;
    background: rgba(0, 0, 0, 0.8) !important;
    color: #fff !important;
    border: none !important;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(5px);
}

/* 5. 품절 및 아이콘 스티커 */
.shop_icon_soldout {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
}

.soldout_txt {
    background: #000;
    color: #fff;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 800;
    border-radius: 20px;
}

.sit_icon_li {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 6;
}

/* 6. 상품 텍스트 정보 (sct_ct_wrap) */
.sct_ct_wrap {
    padding: 5px 0;
    text-align: left;
}

.sct_txt {
    margin-bottom: 5px;
}

.sct_txt a {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    line-height: 1.4;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sct_basic {
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 7. 가격 정보 */
.sct_cost {
    font-size: 18px;
    font-weight: 900;
    color: #000;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.sct_dict {
    font-size: 14px;
    color: #bbb;
    text-decoration: line-through;
    font-weight: 400;
    order: -1; /* 할인가 앞에 배치 */
}

/* 8. 하단 버튼 영역 (위시리스트) */
.sct_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.btn_wish {
    background: none;
    border: none;
    color: #ddd;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.2s;
}

.btn_wish:hover {
    color: #ff3b3b;
}

/* 9. SNS 공유 창 커스텀 */
.sct_sns_wrap {
    position: absolute;
    bottom: 50px;
    right: 0;
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 10;
}

.sct_sns h3 { font-size: 12px; margin-bottom: 10px; color: #888; }
.sct_sns a { margin-right: 5px; }

/* 📱 모바일 대응 */
@media (max-width: 768px) {
    .sct.lists-row {
        grid-template-columns: repeat(2, 1fr); /* 모바일 2열 */
        gap: 25px 10px;
        padding: 20px 10px;
    }

    .sct_txt a { font-size: 14px; }
    .sct_cost { font-size: 16px; }
    
    /* 모바일에서는 장바구니 버튼 항상 노출 또는 간소화 */
    .list-10-btn {
        transform: translateY(0);
        position: static;
        margin-top: 10px;
    }
    
    .btn_cart.sct_cart {
        height: 40px;
        font-size: 12px;
        border-radius: 4px;
        background: #f0f0f0 !important;
        color: #333 !important;
    }
}











@media (max-width: 768px){

    #sit_ov_wrap {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }

    #sit_pvi, #sit_ov {
        width: 100%;
    }

    #sit_pvi_big {
        height: 300px;
    }

    #sit_title {
        font-size: 20px;
    }

    .tr_price strong {
        font-size: 24px;
    }

    #sit_ov_btn {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 10px;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    }

    body {
        padding-bottom: 80px;
    }

    #sit_buy {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        top: auto;
        border-top: 1px solid #ddd;
        z-index: 999;
    }

    .sit_buy_inner {
        padding: 10px;
    }

    .sit_order_btn {
        flex-direction: row;
    }

 

    .tab_tit {
        overflow-x: auto;
        gap: 20px;
    }
}



/* =========================================
   ✅ 상품 리스트 최종 보정 (충돌 해결 버전)
========================================= */

/* 1. 리스트 컨테이너 레이아웃 안정화 */
.sct.lists-row {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
    gap: 50px 20px !important;
    padding: 40px 20px !important;
    margin: 0 auto !important;
    max-width: 1280px !important;
    float: none !important; /* 그누보드 기본 float 제거 */
    clear: both !important;
    margin-top:40px !important;
}

/* 2. 개별 리스트 아이템 초기화 */
.sct_li {
    list-style: none !important;
    float: none !important; /* float 충돌 방지 */
    display: block !important;
    width: 100% !important;
}

/* 3. 이미지 영역 및 SNS 버튼 숨김 처리 */
.sct_img {
    position: relative !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    aspect-ratio: 1 / 1 !important;
    overflow: hidden !important;
    border: 1px solid #f0f0f0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* ⚠️ 문제의 SNS 공유 레이어 강제 숨김 */
.sct_sns_wrap, .sct_sns_bg { 
    display: none !important; /* 평소에는 절대 안보이게 차단 */
}

/* 4. 장바구니 버튼 (이미지 안으로 이동) */
.list-10-btn {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 10 !important;
    display: none; /* 기본 숨김 */
}

.sct_li:hover .list-10-btn {
    display: block !important; /* 마우스 올릴 때만 표시 */
}

/* 5. 텍스트 정보 정렬 */
.sct_ct_wrap {
    padding: 15px 5px !important;
    text-align: left !important;
}

.sct_txt {
    margin-bottom: 8px !important;
    height: auto !important;
}

.sct_txt a {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #222 !important;
    line-height: 1.4 !important;
}

/* 6. 가격 및 하단 영역 보정 */
.sct_cost {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #435e7a !important;
    margin-top: 5px !important;
}

.sct_bottom {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-top: 10px !important;
   
    padding-top: 4px !important;
}

/* 7. 위시리스트 및 공유 버튼 아이콘화 */
.sct_op_btn {
    display: flex !important;
    gap: 8px !important;
}

.btn_wish, .btn_share {
    background: none !important;
    border: none !important;
    color: #ccc !important;
    font-size: 16px !important;
    cursor: pointer !important;
}

.btn_wish:hover, .btn_share:hover {
    color: #3b5998 !important;
}

/* 📱 모바일 환경 (캡처 화면 기준 보정) */
@media (max-width: 768px) {
    .sct.lists-row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px 10px !important;
        padding: 20px 10px !important;
    }
    .sct_txt a { font-size: 14px !important; }
    .sct_cost { font-size: 16px !important; }
    .sct_40 .sct_txt a{font-size: 14px !important;}
}


/* =========================================
   ✅ 상품 정렬 영역 (sct_sort) 디자인 보정
========================================= */

/* 1. 컨테이너 전체 레이아웃 */
#sct_sort {
    max-width: 1240px;
    margin: 0px auto 20px !important;
    padding: 0 0px;
    display: flex;
    justify-content: flex-end; /* 메뉴를 우측으로 정렬 */
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
    clear: both;
    float:none;
}

/* 제목 숨기기 (디자인상 불필요) */
#sct_sort h2 {
    display: none !important;
}

/* 2. 정렬 리스트 가로 배치 */
#ssch_sort {
    display: flex !important;
    list-style: none !important;
    padding: 0;
    margin: 0;
    gap: 0; /* 구분선 간격을 위해 gap 대신 margin 사용 */
    float:none !important;
    width: 100%;
    justify-content:right;
}

#ssch_sort li {
    position: relative;
    display: flex;
    align-items: center;
}

/* 3. 링크 텍스트 스타일 */
#ssch_sort li a {
    font-size: 13px !important;
    color: #999 !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    padding: 0 15px;
    transition: color 0.2s ease;
}
#ssch_sort li a:hover:after{
    display:none !important;
}
/* 호버 및 활성화 상태 */
#ssch_sort li a:hover {
    color: #000 !important;
    font-weight: 700 !important;
}

 

/* 첫 번째 요소 패딩 조정 */
#ssch_sort li:first-child a {
    padding-left: 0;
}

/* 마지막 요소 패딩 조정 */
#ssch_sort li:last-child a {
    padding-right: 0;
}

/* 📱 모바일 대응 */
@media (max-width: 768px) {
    #sct_sort {
        justify-content: center; /* 모바일은 중앙 */
        padding-bottom: 10px;
    }
     #sct_location {
         justify-content: center; /* 모바일은 중앙 */
        bottom:0 !important;
         background:#f5f5f588 !important;
         margin:0 !important;
         padding: 10px !important;
    }
    #ssch_sort {
        flex-wrap: wrap; /* 모바일에서 자리가 부족하면 다음 줄로 */
        justify-content: center;
    }
    
    #ssch_sort li a {
        font-size: 12px !important;
        padding: 5px 10px;
    }
    
    #ssch_sort li:not(:last-child)::after {
        height: 8px;
    }
}

/* ⚠️ SNS 공유 버튼 강제 숨김 재확인 (리스트에서 튀어나오는 현상 방지) */
.sct_sns_wrap, .sct_sns_bg, .sct_sns_cls {
    display: none !important;
}






/* =========================================
   ✅ 뷰 모드 전환 버튼 (sct_lst) 디자인
========================================= */

/* 1. 컨테이너 정렬 (정렬 메뉴 옆 또는 위에 배치) */
#sct_lst {
    max-width: 1280px;
    margin: 0 auto !important;
    padding: 0 20px;
    display: flex;
    justify-content: flex-start; /* 왼쪽 정렬 */
    list-style: none !important;
    gap: 5px;
    margin-bottom: -45px !important; /* 아래 정렬 메뉴와 라인을 맞추기 위한 음수 마진 */
    position: relative;
    z-index: 10;
    float:none;
}
#sct_sortlst{
    border:0;
}
/* 2. 버튼 기본 스타일 */
.sct_lst_view {
    background: #fff !important;
    border: 1px solid #eee !important;
    color: #bbb !important;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
    padding: 0 !important;
}

/* 3. 활성화/호버 상태 (JuicePresso 블랙 포인트) */
.sct_lst_view:hover,
.sct_lst_view.sct_lst_on { /* 현재 선택된 모드 */
    border-color: #000 !important;
    color: #000 !important;
    background: #f9f9f9 !important;
}

/* 아이콘 크기 조절 */
.sct_lst_view i {
    font-size: 16px !important;
}

/* 📱 모바일 대응 */
@media (max-width: 768px) {
    #sct_lst {
        margin-bottom: 10px !important;
        justify-content: center;
    }
}










/* =========================================
   ✅ 브레드크럼(sct_location) 최종 디자인 수정
========================================= */

#sct_location {
    max-width: 1280px;
    margin: 20px auto 10px;
    padding: 0 20px;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 13px !important;
    color: #bbb !important;
    background: transparent;
    border: none !important;
    float:none !important;
    right:unset;
    position:relative;
    left:0;
    bottom:-35px;
    top:unset;
}

/* 홈 아이콘 */
#sct_location a.go_home {
    color: #333 !important;
    font-size: 14px !important;
}

/* 화살표 구분선 (>) */
#sct_location .dividing-line {
    color: #ddd !important;
    font-size: 10px !important;
}

/* ⚠️ 가장 중요한 부분: 셀렉트 박스를 일반 텍스트 링크처럼 보이게 강제 수정 */
#sct_location select.shop_hover_selectbox {
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
    border: none !important;
    background: none !important;
    padding: 0 !important;
    margin: 0 !important;
    font-weight: 600 !important;
    color: #888 !important;
    cursor: pointer !important;
    outline: none !important;
    -webkit-appearance: none !important; /* 브라우저 기본 화살표 제거 */
    -moz-appearance: none !important;
    appearance: none !important;
}

#sct_location select.shop_hover_selectbox:hover {
    color: #000 !important;
}

/* ⚠️ 만약 스크립트로 인해 ul li 구조로 변했다면 이를 위한 보정 */
#sct_location .shop_category_nav,
#sct_location .shop_hover_selectbox_wrap {
    display: inline-block !important;
}

#sct_location ul {
    display: none !important; /* 드롭다운 목록은 클릭 시에만 보이게 하거나 아예 숨김 */
}


/* =========================================
   ✅ 관련 상품 슬라이더 (scr_10) 디자인
========================================= */

/* 1. 슬라이더 컨테이너 */
.scr_10 {
    margin: 40px auto !important;
    padding: 0 !important;
}

/* 2. 개별 슬라이드 아이템 (카드 디자인) */
.scr_10 .sct_li {
    list-style: none;
    background: #fff;
    transition: all 0.3s ease;
    padding: 10px !important; /* 슬라이드 간격 확보 */
}

/* 이미지 박스 */
.scr_10 .sct_img {
    background: #f9f9f9 !important;
    border-radius: 10px !important;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid #f0f0f0;
}

.scr_10 .sct_img img {
    width: 80% !important;
    height: auto !important;
    transition: transform 0.5s ease;
}

.scr_10 .sct_li:hover .sct_img img {
    transform: scale(1.1);
}

/* 3. 상품명 및 가격 */
.scr_10 .sct_txt {
    margin-top: 10px;
    height: 40px; /* 두 줄 제한 */
    overflow: hidden;
}

.scr_10 .sct_txt a {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #222 !important;
    line-height: 1.4;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
#sit_rel{
    text-align:center;
    border:0;
    background:none;
}
#sit_rel h2{
    font-size: 18px;
    font-family:'Pretendard';
}
.sct_noitem{
    max-width:1240px;
    margin: 0 auto;
    background:#eee;
    padding: 50px;
    color:#aaa;
    border-radius:10px;
    margin-top:60px;
    margin-bottom:40px;
}
.scr_10 .sct_cost {
    margin-top: 8px;
    font-size: 15px !important;
    font-weight: 800 !important;
    color: #000 !important;
}

.scr_10 .sct_cost strike {
    font-size: 12px;
    color: #ccc;
    font-weight: 400;
    margin-right: 5px;
}

/* 4. bxSlider 화살표 커스텀 (세련된 블랙 버튼) */
.bx-wrapper {
    box-shadow: none !important;
    border: none !important;
    background: none !important;
    margin-bottom: 50px !important;
}

.bx-wrapper .bx-controls-direction a {
    width: 40px !important;
    height: 40px !important;
    background: #fff !important;
    border: 1px solid #eee !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #000 !important;
    text-indent: 0 !important; /* 기본 아이콘 텍스트 제거 */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    transition: 0.3s;
}

.bx-wrapper .bx-controls-direction a:hover {
    background: #000 !important;
    color: #fff !important;
    border-color: #000 !important;
}

.bx-wrapper .bx-prev { left: -20px !important; }
.bx-wrapper .bx-next { right: -20px !important; }

/* 아이콘 삽입 (FontAwesome 사용 시) */
.bx-wrapper .bx-prev::before { content: "\f104"; }
.bx-wrapper .bx-next::before { content: "\f105"; }

/* 5. SNS 버튼 숨김 (관련상품에서는 미니멀함을 위해 제거 추천) */
.scr_10 .sct_sns { display: none !important; }

/* 📱 모바일 대응 */
@media (max-width: 768px) {
    .bx-wrapper .bx-controls-direction { display: none; } /* 모바일은 스와이프 유도 */
   
}



/* =========================================
   ✅ 상품진열 40 (sct_40) 와이드 리스트 디자인
========================================= */

.sct_40 {
    list-style: none;
    padding: 0 20px;
    max-width: 1280px;
    margin: 60px auto !important;
}

.sct_40 .sct_li {
    display: flex !important;
    align-items: flex-start;
    padding: 10px 0 !important;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    gap:0px;
    transition: 0.3s;
    padding-top: 20px !important;
}

.sct_40 .sct_li:hover {
    background: linear-gradient(to right,#fff, #efefef33);
}

/* 1. 메인 이미지 */
.sct_40 .sct_img {
    flex: 0 0 120px;
    height: 120px;
    background: #f9f9f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.sct_40 .sct_img img {
    width: 100% !important;
    height: auto !important;
}

/* 2. 상품 정보 */
.sct_40 .sct_ct_wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sct_40 .sct_txt a {
    font-size: 20px;  
    font-weight: 800;
    color: #222;
    text-decoration: none;
}

.sct_40 .sct_basic {
    margin-top: 10px;
    font-size: 14px;
    color: #888;
    line-height: 1.6;
}

.sct_40 .sct_cost {
    margin-top: 20px;
    font-size: 16px !important;
    font-weight: 900;
    color: #000;
    top:unset;
    left:5px;
    bottom:10px;
}

.sct_40 .sct_dict {
    font-size: 14px;
    color: #bbb;
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 0px;
}

/* 3. 버튼 영역 */
.sct_40 .sct_btn_area {
    margin-top: 25px;
    display: flex;
    gap: 10px;
}

.sct_40 .btn_add_cart {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.sct_40 .btn_add_cart:hover {
    background: #333;
}

.sct_40 .btn_wish {
    background: #fff;
    border: 1px solid #ddd;
    width: 45px;
    height: 45px;
    border-radius: 4px;
    color: #999;
    cursor: pointer;
}

/* 4. 우측 관련상품 (세로 리스트 형태) */
.sct_40 .sct_rel_wrap {
    flex: 0 0 300px;
    border-left: 1px solid #eee;
    padding-left: 30px;
}

.sct_40 .sct_rel_wrap h4 {
    font-size: 13px;
    color: #999;
    font-weight: 600;
    margin-bottom: 15px;
}

/* 관련상품 내부 아이템 스타일 */
.sct_40 .sct_rel ul { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; list-style: none; }
.sct_40 .sct_rel li { width: 70px; }
.sct_40 .sct_rel .sct_img { 
    width: 70px !important; 
    height: 70px !important; 
    margin-bottom: 5px;
    border-radius: 6px;
}

/* 📱 모바일 대응 */
@media (max-width: 992px) {
    .sct_40 .sct_li {
         
        gap: 0px;
    }
    .sct_40 .sct_rel_wrap {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #eee;
        padding-top: 20px;
        width: 100%;
    }
}



/* 컨테이너 메인 레이아웃 */
#sit_star_sns_v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #f2f2f2; /* 얇고 연한 구분선 */
}

/* 왼쪽 영역: 별점 및 리뷰 */
.sit_star_wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}
.sit_star {
    height: 15px;
    margin-bottom:10px;
    display: block;
}
.sit_use_cnt {
    font-size: 13px;
    color: #888;
    position: relative;
    padding-left: 12px;
}
.sit_use_cnt::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 10px;
    background: #ddd; /* 리뷰 숫자 앞 세로 구분선 */
}
.sit_use_cnt strong {
    color: #222;
    font-weight: 600;
    margin-left: 3px;
}

/* 오른쪽 영역: 위시 및 공유 */
#sit_btn_opt {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* 위시리스트 버튼 스타일 */
.btn_wish {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 15px;
    background: #fff;
    border: 1px solid #ddd; /* 테두리를 주어 버튼 형태를 명확히 함 */
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #666;
    font-size: 14px;
}

/* 마우스를 올렸을 때 */
.btn_wish:hover {
    border-color: #ff4d4d;
    color: #ff4d4d;
}

/* 위시리스트에 이미 담겼을 때 (on 클래스) */
.btn_wish.on {
    border-color: #ff4d4d;
    background: #fff5f5;
    color: #ff4d4d;
}

.btn_wish.on i {
    color: #ff4d4d;
}

.btn_wish_num {
    font-weight: 600;
}

/* SNS 공유 버튼 */
.sns_share_wrap {
    position: relative;
}
.btn_sns_share {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #333;
    font-size: 18px;
    transition: 0.2s;
}
.btn_sns_share:hover {
    color: #000;
}

/* SNS 팝업 레이어 디자인 */
.sns_area {
    display: none;
    position: absolute;
    top: 35px;
    right: 0;
    background: #fff;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    z-index: 10;
    white-space: nowrap;
}
.sns_share_wrap:hover .sns_area {
    display: flex;
    gap: 10px;
    align-items: center;
}
.sns_area a {
    color: #555;
    font-size: 16px;
}
.sns_area a:hover {
    color: #000;
}

/* 메인 컨테이너 */
#sit_pvi {
    width: 100%;
    max-width: 500px; /* 상황에 맞게 조절 */
    margin: 0 auto;
}

/* 큰 이미지 영역 */
#sit_pvi_big {
    position: relative;
    border:0;
    background: #fff;
    border-radius: 23px;
    overflow: hidden;
    margin-bottom: 12px;
    float:none;
    box-shadow: 0px 0px 40px rgba(0,0,0,0.05);
}

#sit_pvi_big img {
    display: block;
    width: 100% !important;
    height: auto !important;
}

/* 확대 아이콘 스타일 */
#popup_item_image {
    position: absolute;
    right: 15px;
    bottom: 15px;
    background: rgba(255,255,255,0.8);
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    color: #666;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* 썸네일 리스트 */
#sit_pvi_thumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    list-style: none;
    margin: 0;
}

#sit_pvi_thumb li {
    width: 60px;
    height: 60px;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
}

#sit_pvi_thumb li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 선택된 썸네일 강조 */
#sit_pvi_thumb li.selected {
    border-color: #000; /* 또는 브랜드 포인트 컬러 */
}

#sit_pvi_thumb li:hover {
    opacity: 0.7;
}


#sit_siblings {
    display: flex;
    justify-content: space-between; /* 양 끝 배치 */
    margin-bottom: 20px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

#sit_siblings a {
    text-decoration: none;
    color: #888;
    font-size: 0.9em;
    transition: color 0.2s;
}

#sit_siblings a:hover {
    color: #000;
}

/* 이전 상품 앞에 화살표 추가 */
#sit_siblings a:first-of-type::before {
    content: '← ';
}

/* 다음 상품 뒤에 화살표 추가 */
#sit_siblings a:last-of-type::after {
    content: ' →';
}
.sct_admin{
    position:absolute;
}
#sps_sch a,
#sqa_sch a{
    background:#000;
}
.sps_section .sps_pd_name{
    color:#777;
}
.sps_section .sps_rv_tit{
    font-size: 18px;
}
.sps_img_inner{
    border: 1px solid #ddd;
}
.sps_img{
    left:0;
}
#sps li{
    border:0;
    border-top:1px solid#eee;
}
#sps li:hover a{
    text-decoration:underline;
}
#sps{
    margin-top: 40px;
}
.sps_img .prd_detail{
    background:#00000033;
}
.sit_use_top{
    border:0;
    background:#fafafa;
    border-radius: 15px;
}
a.btn02{
    background:#000;
}





/* 리뷰 상세페이지 컨테이너 */
.review-detail {
    background-color: #f9f9f9;
    padding: 60px 20px;
    font-family: 'Pretendard', 'Apple SD Gothic Neo', sans-serif;
}

.review-container {
    max-width: 1240px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
}

/* 상단 상품 정보 */
.review-header {
    padding: 30px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.product-info {
    display: flex;
    align-items: center;
    gap: 25px;
}

.product-thumb img {
    border-radius: 12px;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.product-thumb img:hover {
    transform: scale(1.05);
}

.category-tag {
    display: inline-block;
    color: #ff4757;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.product-name {
    font-size: 1.25rem;
    color: #2f3542;
    margin: 0 0 10px 0;
    font-weight: 600;
    line-height: 1.4;
}

.btn-product-link {
    color: #747d8c;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #ced4da;
    padding-bottom: 2px;
}

/* 후기 본문 영역 */
.review-content-body {
    padding: 40px 50px;
}

.review-meta-top {
    text-align: center;
    margin-bottom: 40px;
}

.rating-display {
    margin-bottom: 15px;
}

.stars-outer {
    color: #ffa502;
    font-size: 24px;
    letter-spacing: 2px;
}

.score-text {
    font-weight: 700;
    font-size: 18px;
    color: #2f3542;
    margin-left: 8px;
}

.review-subject {
    font-size: 2rem;
    color: #222;
    margin: 10px 0 20px 0;
    font-weight: 800;
    word-break: keep-all;
}

.author-info {
    color: #a4b0be;
    font-size: 14px;
}

.divider {
    margin: 0 10px;
    color: #eee;
}

.review-text-area {
    line-height: 1.9;
    font-size: 1.1rem;
    color: #57606f;
    min-height: 250px;
    word-break: break-all;
}

/* 하단 버튼 */
.review-footer {
    padding: 40px;
    text-align: center;
    background: #fdfdfd;
}

.btn-list-back {
    display: inline-block;
    padding: 15px 40px;
    background: #2f3542;
    color: #fff !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-list-back:hover {
    background: #57606f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .review-content-body {
        padding: 30px 20px;
    }
    .review-subject {
        font-size: 1.5rem;
    }
    .product-info {
        flex-direction: column;
        text-align: center;
    }
}







/* 브레드크럼 전체 컨테이너 */
.c24-breadcrumb-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* 홈 아이콘 버튼 */
.btn-home {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #f8fafc;
    border-radius: 6px;
    color: #64748b;
    text-decoration: none;
}

/* 구분 아이콘 */
.sep-icon {
    color: #cbd5e1;
    font-size: 14px;
}

/* 셀렉트 박스 커스텀 */
.select-custom-wrapper {
    position: relative;
}

.c24-select-nav {
    appearance: none; /* 브라우저 기본 화살표 숨김 */
    -webkit-appearance: none;
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 6px 30px 6px 12px;
    font-size: 13px;
    color: #334155;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='current-color' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 14px;
    transition: all 0.2s;
}

.c24-select-nav:hover {
    border-color: #2563eb;
    color: #2563eb;
}
#sit_ov_from{
    background:none;
}
.sct_ct{
    max-width:1240px;
    margin: 0 auto;
    margin-top: 60px;
    border-radius: 10px;
    border:1px solid #ddd;
}

/* 사이드 카테고리 전체 컨테이너 */
.c24-side-category {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

/* 제목 부분 */
.c24-side-category .side-title {
    background: #f8fafc;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 700;
    color: #334155;
    border-bottom: 1px solid #eef2f6;
    margin: 0;
}

.c24-side-category .side-title i {
    margin-right: 8px;
    color: #2563eb; /* 포인트 컬러 */
}

/* 리스트 스타일링 */
.side-menu-list {
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.side-menu-list li {
    transition: all 0.2s ease;
}

.side-menu-list li a {
    display: block;
    padding: 12px 20px;
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    position: relative;
    transition: all 0.2s ease;
}

/* 마우스 호버 효과 */
.side-menu-list li a:hover {
    background-color: #f1f5f9;
    color: #2563eb;
    padding-left: 25px; /* 살짝 오른쪽으로 밀리는 효과 */
}

/* 현재 선택된 카테고리 강조 (영카트 기본 클래스 대응) */
.side-menu-list li a.sct_ct_here {
    background-color: #eff6ff;
    color: #2563eb;
    font-weight: 600;
}

.side-menu-list li a.sct_ct_here::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #2563eb;
}

/* 하위 분류가 있을 경우 살짝 들여쓰기 */
.side-menu-list li li a {
    padding-left: 35px;
    font-size: 13px;
}

/* 사이드 카테고리 전체 컨테이너 */
.mono-side-category {
    background: #fff;
    border-top: 2px solid #000; /* 상단 강한 블랙 라인으로 포인트 */
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

/* 제목 부분 - 대문자와 자간 조절로 세련미 강조 */
.mono-side-category .side-title {
    padding: 25px 0 15px 0;
    font-size: 14px;
    font-weight: 800;
    color: #000;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid #000;
    margin: 0 0 10px 0;
}

/* 리스트 스타일링 */
.side-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-menu-list li {
    border-bottom: 1px solid #f9f9f9;
}

.side-menu-list li a {
    display: block;
    padding: 14px 5px;
    color: #666;
    text-decoration: none;
    font-size: 13.5px;
    transition: all 0.3s ease;
}

/* 마우스 호버 효과 - 배경색 대신 텍스트 색상과 굵기 변화 */
.side-menu-list li a:hover {
    color: #000;
    font-weight: 600;
}

/* 현재 선택된 카테고리 강조 */
.side-menu-list li a.sct_ct_here {
    color: #000;
    font-weight: 700;
    text-decoration: underline; /* 밑줄로 현재 위치 강조 */
    text-underline-offset: 5px;
}

/* 하위 분류가 있을 경우 (들여쓰기와 작은 글씨) */
.side-menu-list li li a {
    padding-left: 15px;
    font-size: 12px;
    color: #888;
}

.side-menu-list li li a::before {
    content: "- ";
    margin-right: 5px;
}
.mono-side-category{
    max-width:1240px;
    margin: 0 auto;
    margin-top: 60px;
    margin-bottom: 30px;
}


.main-banner-trust,
.main-event-banner {
    width: 100%;
    padding:0px 0; /* 위아래 여백 */
    
    text-align: center;
}
.trust-item img,
.main-event-item img {
    max-width: 1200px; /* 메인 컨텐츠 폭에 맞춤 */
    margin: 0 auto;
}






/*search-result*/

/* 검색 페이지 메인 컨테이너 */
#ssch { max-width: 1200px; margin: 40px auto; padding: 0 20px; font-family: 'Pretendard', sans-serif; color: #111; }
#ssch h2 { font-size: 24px; font-weight: 800; border-bottom: 2px solid #111; padding-bottom: 20px; margin-bottom: 30px; letter-spacing: -1px; }
#ssch h2 strong { color: #000; text-decoration: underline; text-underline-offset: 4px; }
#ssch .ssch_result_total { float: right; font-size: 14px; font-weight: 400; color: #888; margin-top: 10px; }

/* 상세검색 영역 */
#ssch_frm { background: #f9f9f9; padding: 30px; border-radius: 4px; margin-bottom: 40px; }
.ssch_scharea { display: flex; gap: 10px; margin-bottom: 20px; }
.ssch_input { flex: 1; height: 50px; border: 1px solid #ddd; padding: 0 15px; font-size: 15px; outline: none; transition: border 0.3s; }
.ssch_input:focus { border-color: #000; }
.btn_submit { width: 120px; background: #000; color: #fff; border: none; font-weight: 600; cursor: pointer; transition: 0.3s; }
.btn_submit:hover { background: #333; }

/* 검색 옵션 체크박스 */
.ssch_option { display: flex; flex-wrap: wrap; align-items: center; gap: 15px; font-size: 14px; color: #555; }
.ssch_option input[type="text"] { height: 35px; border: 1px solid #ddd; text-align: right; padding-right: 5px; }

/* 분류 필터 */
#ssch_cate { margin-bottom: 30px; }
#ssch_cate ul { display: flex; flex-wrap: wrap; list-style: none; padding: 0; gap: 8px; }
#ssch_cate li a { display: block; padding: 8px 16px; background: #fff; border: 1px solid #eee; font-size: 13px; color: #666; text-decoration: none; border-radius: 20px; transition: 0.2s; }
#ssch_cate li a:hover, #ssch_cate li a.active { background: #000; color: #fff; border-color: #000; }

/* 정렬 탭 */
#ssch_sort_all { display: flex; list-style: none; padding: 0; border-bottom: 1px solid #eee; margin-bottom: 30px; }
#ssch_sort_all li a { display: block; padding: 15px 20px; font-size: 13px; color: #999; text-decoration: none; position: relative; }
#ssch_sort_all li a:hover, #ssch_sort_all li.active a { color: #000; font-weight: 700; }
#ssch_sort_all li.active a::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 100%; height: 2px; background: #000; }

/* 툴팁 수정 */
.tooltip_icon { background: none; border: none; color: #aaa; cursor: pointer; }
.tooltip { display:none; position: absolute; background: #333; color: #fff; padding: 10px; font-size: 12px; border-radius: 4px; z-index: 10; line-height: 1.6; }
@media all and (max-width:768px){
   .ssch_scharea .btn_submit{
        padding:10px 0px !important;
    }
    .ssch_input { flex: 0.2}
    #ssch_q{width:200px;}
    #ssch_qfrom{}
}