@charset "utf-8";

/* ===================================
   그누보드5 DB 쇼핑몰 스킨 - myassist.kr 스타일
   =================================== */

/* ========== 0. 헤더 및 레이아웃 - 비즈니스 라이너 스타일 ========== */

/* 색상 변수 통합 */
:root {
    --primary: #EC6521;
    --primary-light: #FFF4EC;
    --primary-dark: #d4551a;
    --text-primary: #1f2937;
    --text-secondary: #4b5563;
    --text-muted: #6b7280;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --border-light: #f3f4f6;
    --border-default: #e5e7eb;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
}

#hd {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-default);
    box-shadow: var(--shadow-sm);
}

#hd_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 60px;
}

#hd .hd_login {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

#hd .hd_login a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

#hd .hd_login a:hover {
    color: var(--primary);
    background: var(--primary-light);
}

#hd_menu {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-default);
}

#hd_menu .hd_menu {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    padding: 0 20px;
    list-style: none;
    height: 50px;
    width: 100%;
}

#hd_menu .hd_menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 600;
    padding: 15px 25px;
    position: relative;
    transition: all 0.2s ease;
    border-right: 1px solid var(--border-default);
}

#hd_menu .hd_menu a:hover {
    color: var(--primary);
    background: var(--bg-white);
}

#hd_menu .hd_menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: width 0.2s ease;
}

#hd_menu .hd_menu a:hover::after,
#hd_menu .hd_menu .active a::after {
    width: 100%;
}

/* 헤더/본문 구분선 - 깔끔한 스타일 */
.body-divider {
    height: 1px;
    background: var(--border-light);
    border: none;
}

/* 컨텐츠 영역 */
.shop-content {
    padding: 0;
    background: var(--bg-white);
}

#container {
    max-width: 1200px;
    margin: 0 auto;
}

#wrapper.is_index .shop-content {
    width: 100%; /* index에서 좌측 aside가 없으므로 100% 사용 */
}


/* ========== 1. 기본 설정 ========== */
:root {
    /* 인크루트 메인 컬러 팔레트 */
    --primary: #EC6521;          /* 인크루트 메인 오렌지 */
    --primary-light: #FFF4EC;    /* 인크루트 연한 오렌지 */
    --primary-dark: #d85515;     /* 인크루트 어두운 오렌지 */
    --secondary: #333333;        /* 보조 색상 */
    --accent: #EC6521;           /* 강조 색상 */
    
    /* 그레이 스케일 */
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* 상태 컬러 */
    --success: #28a745;
    --warning: #ffc107;
    --error: #dc3545;
    --info: #17a2b8;
    
    /* 그림자 */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* 텍스트 색상 */
    --text-dark: #333333;
    --text-muted: #666666;
    --text-light: #999999;
    --border: #e5e5e5;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    
    /* 반응형 브레이크포인트 */
    --bp-mobile: 576px;
    --bp-tablet: 768px;
    --bp-desktop: 1024px;
    --bp-wide: 1200px;
}

/* 기본 리셋 */
.db-shop-wrapper * {
    box-sizing: border-box;
}

.db-shop-wrapper {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
}

/* ========== 2. 상품 목록 스타일 ========== */

/* 상품 목록 컨테이너 */
.db-shop-wrapper .sct_db {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 상품 목록 그리드 - 비즈니스 라이너 스타일 */
.db-shop-wrapper .sct_db .sct_ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 0;
    padding: 20px 0;
    list-style: none;
}

/* 상품 카드 스타일 - 개선된 디자인 */
.db-shop-wrapper .sct_db .sct_li {
    background: var(--bg-white);
    border: 1px solid var(--border-default);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: auto;
    position: relative;
}

.db-shop-wrapper .sct_db .sct_li:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

/* 상품 이미지 영역 - 40% */
.db-shop-wrapper .sct_db .sct_img {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 비율 유지 */
    background: var(--gray-50);
    overflow: hidden;
}

.db-shop-wrapper .sct_db .sct_img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.db-shop-wrapper .sct_db .sct_li:hover .sct_img img {
    transform: scale(1.05);
}

/* 상품 배지 */
.db-shop-wrapper .sct_db .sct_badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
}

.db-shop-wrapper .sct_db .badge {
    display: inline-block;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    color: #fff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.db-shop-wrapper .sct_db .badge-new {
    background: var(--success);
}

.db-shop-wrapper .sct_db .badge-sale {
    background: var(--error);
}

.db-shop-wrapper .sct_db .badge-best {
    background: var(--warning);
}

.db-shop-wrapper .sct_db .badge-hot {
    background: var(--primary);
}

/* 품절 표시 */
.db-shop-wrapper .sct_db .shop_icon_soldout {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.db-shop-wrapper .sct_db .soldout_txt {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

/* 상품 콘텐츠 영역 - 비즈니스 스타일 */
.db-shop-wrapper .sct_db .sct_ct_wrap {
    padding: 20px;
    flex-grow: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

/* 상품명 - 강화된 타이포그래피 */
.db-shop-wrapper .sct_db .sct_txt {
    margin-bottom: 10px;
    padding: 4px 0px;
}

.db-shop-wrapper .sct_db .sct_txt a {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;       
    color: var(--text-primary);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: auto;
    max-height: 2.8em;
    transition: color 0.2s ease;
}

.db-shop-wrapper .sct_db .sct_txt a:hover {
    color: var(--primary);
}

/* 상품 기본 설명 - 개선된 가독성 */
.db-shop-wrapper .sct_db .sct_basic {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: auto;
    max-height: 3em;
}

/* DB 상품 정보 - 강화된 스타일 */
.db-shop-wrapper .sct_db .sct_db_info {
    background: var(--primary-light);
    border: 1px solid rgba(236, 101, 33, 0.2);
    border-radius: 6px;
    padding: 12px 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border-left: 4px solid var(--primary);
}

.db-shop-wrapper .sct_db .sct_db_info span {
    display: inline-block;
    margin-right: 12px;
    margin-bottom: 4px;
    font-weight: 500;
}

.db-shop-wrapper .sct_db .sct_db_info span:last-child {
    margin-right: 0;
}

.db-shop-wrapper .sct_db .sct_db_info .db_count {
    font-weight: 700;
    color: var(--primary);
}

.db-shop-wrapper .sct_db .sct_db_info .db_update {
    color: var(--text-secondary);
}

/* 상품 아이콘 */
.db-shop-wrapper .sct_db .sct_icon {
    margin-bottom: 8px;
}

/* 평점 */
.db-shop-wrapper .sct_db .sct_star {
    margin-bottom: 12px;
}

.db-shop-wrapper .sct_db .sit_star {
    height: 16px;
    width: auto;
}

/* 가격 정보 */
.db-shop-wrapper .sct_db .sct_cost {
    margin-bottom: 16px;
    margin-top: auto;
}

.db-shop-wrapper .sct_db .sct_cost {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.db-shop-wrapper .sct_db .sct_cost::after {
    content: "원";
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-600);
}

.db-shop-wrapper .sct_db .sct_dict {
    font-size: 14px;
    color: var(--gray-400);
    text-decoration: line-through;
    font-weight: 400;
    order: 2;
}

/* 가격 영역 - 비즈니스 스타일 */
.db-shop-wrapper .sct_db .sct_cost {
    margin-bottom: 15px;
    padding-top: 10px;
    border-top: 1px solid var(--border-light);
}

.db-shop-wrapper .sct_db .sct_cost strong {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: 4px;
}

.db-shop-wrapper .sct_db .sct_dict {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 500;
}

/* 버튼 영역 - 개선된 디자인 */
.db-shop-wrapper .sct_db .sct_bottom {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
}

.db-shop-wrapper .sct_db .sct_btn {
    display: flex;
    gap: 8px;
    width: 100%;
}

.db-shop-wrapper .sct_db .btn_cart,
.db-shop-wrapper .sct_db .btn_detail,
.db-shop-wrapper .sct_db .btn_wish,
.db-shop-wrapper .sct_db .btn_soldout {
    padding: 12px 15px;
    border: 1px solid var(--border-default);
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
    background: var(--bg-white);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.db-shop-wrapper .sct_db .btn_cart {
    flex: 1;
    background: var(--primary);
    border-color: var(--primary);
    color: var(--bg-white);
}

.db-shop-wrapper .sct_db .btn_cart:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(236, 101, 33, 0.3);
}

.db-shop-wrapper .sct_db .btn_detail {
    flex: 1;
    border-color: var(--gray-300);
}

.db-shop-wrapper .sct_db .btn_detail:hover {
    background: var(--gray-100);
    border-color: var(--gray-400);
    color: var(--text-primary);
}

.db-shop-wrapper .sct_db .btn_wish {
    width: 44px;
    padding: 12px 8px;
    border-color: var(--gray-300);
}

.db-shop-wrapper .sct_db .btn_wish:hover,
.db-shop-wrapper .sct_db .btn_wish.wished {
    background: #dc3545;
    border-color: #dc3545;
    color: var(--bg-white);
}

.db-shop-wrapper .sct_db .btn_soldout {
    flex: 1;
    background: var(--gray-100);
    border-color: var(--gray-300);
    color: var(--gray-500);
    cursor: not-allowed;
}

/* 상품 없음 메시지 */
.db-shop-wrapper .sct_noitem {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-500);
    font-size: 16px;
}

/* ========== 반응형 디자인 - 비즈니스 모바일 최적화 ========== */

/* 태블릿 */
@media (max-width: 1024px) {
    .db-shop-wrapper .sct_db .sct_ul {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        padding: 15px 0;
    }
    
    .db-shop-wrapper .sct_db {
        padding: 0 15px;
    }
    
    .db-shop-wrapper .sct_db .sct_ct_wrap {
        padding: 18px;
        min-height: 180px;
    }
    
    .db-shop-wrapper .sct_db .sct_txt a {
        font-size: 1rem;
    }
}

/* 모바일 */
@media (max-width: 768px) {
    #hd_wrapper {
        padding: 0 15px;
        height: 50px;
    }
    
    #hd .hd_login {
        gap: 15px;
    }
    
    #hd .hd_login a {
        font-size: 13px;
        padding: 6px 10px;
    }
    
    #hd_menu .hd_menu {
        padding: 0 15px;
        height: 45px;
    }
    
    #hd_menu .hd_menu a {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .db-shop-wrapper .sct_db .sct_ul {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 15px;
        padding: 15px 0;
    }
    
    .db-shop-wrapper .sct_db {
        padding: 0 10px;
    }
    
    .db-shop-wrapper .sct_db .sct_ct_wrap {
        padding: 15px;
        min-height: 160px;
    }
    
    .db-shop-wrapper .sct_db .sct_txt a {
        font-size: 0.95rem;
    }
    
    .db-shop-wrapper .sct_db .sct_basic {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .db-shop-wrapper .sct_db .sct_db_info {
        padding: 10px 12px;
        margin-bottom: 12px;
        font-size: 0.8rem;
    }
    
    .db-shop-wrapper .sct_db .sct_cost strong {
        font-size: 1.2rem;
    }
    
    .db-shop-wrapper .sct_db .sct_btn {
        gap: 6px;
    }
    
    .db-shop-wrapper .sct_db .btn_cart,
    .db-shop-wrapper .sct_db .btn_detail,
    .db-shop-wrapper .sct_db .btn_wish,
    .db-shop-wrapper .sct_db .btn_soldout {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .db-shop-wrapper .sct_db .btn_wish {
        width: 40px;
        padding: 10px 6px;
    }
}

/* 초소형 모바일 */
@media (max-width: 480px) {
    #hd_wrapper {
        padding: 0 10px;
        height: 45px;
    }
    
    #hd .hd_login {
        gap: 10px;
    }
    
    #hd .hd_login a {
        font-size: 12px;
        padding: 4px 8px;
    }
    
    #hd_menu .hd_menu {
        padding: 0 10px;
        height: 40px;
        flex-wrap: wrap;
    }
    
    #hd_menu .hd_menu a {
        padding: 10px 15px;
        font-size: 13px;
        border-right: none;
        border-bottom: 1px solid var(--border-default);
    }
    
    .db-shop-wrapper .sct_db .sct_ul {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 10px 0;
    }
    
    .db-shop-wrapper .sct_db {
        padding: 0 10px;
    }
    
    .db-shop-wrapper .sct_db .sct_ct_wrap {
        padding: 12px;
        min-height: 140px;
    }
    
    .db-shop-wrapper .sct_db .sct_txt {
        margin-bottom: 8px;
        padding: 4px 0px;
    }
    
    .db-shop-wrapper .sct_db .sct_txt a {
        font-size: 0.9rem;
        max-height: 2.4em;
    }
    
    .db-shop-wrapper .sct_db .sct_basic {
        font-size: 0.8rem;
        margin-bottom: 10px;
        max-height: 2.4em;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .db-shop-wrapper .sct_db .sct_db_info {
        padding: 8px 10px;
        margin-bottom: 10px;
        font-size: 0.75rem;
    }
    
    .db-shop-wrapper .sct_db .sct_cost {
        margin-bottom: 12px;
        padding-top: 8px;
    }
    
    .db-shop-wrapper .sct_db .sct_cost strong {
        font-size: 1.1rem;
    }
    
    .db-shop-wrapper .sct_db .sct_bottom {
        padding-top: 12px;
    }
    
    .db-shop-wrapper .sct_db .sct_btn {
        gap: 4px;
        flex-direction: column;
    }
    
    .db-shop-wrapper .sct_db .btn_cart,
    .db-shop-wrapper .sct_db .btn_detail {
        width: 100%;
        margin-bottom: 6px;
        padding: 10px;
        font-size: 0.8rem;
    }
    
    .db-shop-wrapper .sct_db .btn_wish {
        width: 100%;
        padding: 8px;
        margin-bottom: 0;
    }
}

/* ========== 3. 상품 상세 페이지 스타일 ========== */

/* 상세 페이지 래퍼 */
.item_detail_wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    width: 100%;
    box-sizing: border-box;
}

.item_detail_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    width: 100%;
    box-sizing: border-box;
}

/* 좌측 이미지 섹션 */
.item_image_section {
    position: sticky;
    top: 20px;
}

.item_main_image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.zoom_btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-700);
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: var(--shadow);
}

.zoom_btn:hover {
    background: #fff;
    color: var(--primary);
    transform: scale(1.1);
}

/* 썸네일 목록 */
.item_thumb_list {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px;
}

.thumb_item {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
}

.thumb_item:hover,
.thumb_item.active {
    border-color: var(--primary);
    transform: scale(1.05);
}

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

/* 우측 정보 섹션 */
.item_info_section {
    padding: 20px 0;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.item_title {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
    margin: 0 0 16px 0;
}

.item_basic_desc {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}

.item_icons {
    margin-bottom: 16px;
}

.item_rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.rating_text {
    font-size: 14px;
    color: var(--gray-600);
}

/* DB 상품 정보 */
.item_db_info {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.item_db_info h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 12px 0;
}

.item_db_info ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.item_db_info li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-200);
}

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

.item_db_info strong {
    color: var(--gray-900);
    font-weight: 600;
    margin-right: 8px;
}

/* 가격 섹션 */
.item_price_section {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.original_price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.original_price .price_value {
    font-size: 16px;
    color: var(--gray-400);
    text-decoration: line-through;
}

.selling_price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.selling_price .price_value {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
}

.price_label {
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 500;
}

.discount_rate {
    text-align: right;
}

.discount_percent {
    display: inline-block;
    background: var(--error);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* 배송비 정보 */
.delivery_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid var(--gray-200);
    font-size: 14px;
}

.delivery_label {
    color: var(--gray-600);
    font-weight: 500;
}

.delivery_value {
    color: var(--gray-900);
    font-weight: 600;
}

/* 옵션 섹션 */
.item_options,
.item_supplies {
    margin-bottom: 24px;
}

.item_options h3,
.item_supplies h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 12px 0;
}

/* 수량 선택 */
.item_quantity {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
}

.qty_label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
    min-width: 40px;
    flex-shrink: 0;
}

.qty_controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.qty_minus,
.qty_plus {
    width: 40px;
    height: 40px;
    border: none;
    background: #fff;
    color: var(--gray-600);
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.qty_minus:hover,
.qty_plus:hover {
    background: var(--gray-50);
    color: var(--gray-900);
}

.qty_input {
    width: 60px;
    height: 40px;
    border: none;
    border-left: 1px solid var(--gray-300);
    border-right: 1px solid var(--gray-300);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    outline: none;
    background: #fff;
}

/* 총 금액 */
.item_total_price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: var(--gray-50);
    border-radius: 8px;
    margin-bottom: 24px;
    width: 100%;
    box-sizing: border-box;
}

.total_label {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
}

.total_value {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

/* 구매 버튼 */
.item_action_buttons {
    display: flex;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
}

.btn_cart,
.btn_buy_now,
.btn_wishlist,
.btn_soldout {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn_cart {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.btn_cart:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn_buy_now {
    background: var(--success);
    border-color: var(--success);
    color: #fff;
}

.btn_buy_now:hover {
    background: #059669;
    border-color: #059669;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn_wishlist {
    background: #fff;
    border-color: var(--gray-300);
    color: var(--gray-700);
    flex: 0 0 auto;
    width: 60px;
}

.btn_wishlist:hover,
.btn_wishlist.wished {
    background: var(--error);
    border-color: var(--error);
    color: #fff;
    transform: translateY(-2px);
}

.btn_soldout {
    background: var(--gray-100);
    border-color: var(--gray-300);
    color: var(--gray-500);
    cursor: not-allowed;
}

/* ========== 4. 반응형 디자인 ========== */

/* 태블릿 (768px ~ 1023px) */
@media (max-width: 1023px) {
    .db-shop-wrapper .sct_db .sct_ul {
        /* 태블릿에서 2단으로 변경 */
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .item_detail_container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .item_image_section {
        position: static;
    }
    
    .item_title {
        font-size: 24px;
    }
}

/* 모바일 (767px 이하) */
@media (max-width: 767px) {
    .db-shop-wrapper .sct_db .sct_ul {
        /* 모바일에선 2단으로 변경 */
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .db-shop-wrapper .sct_db .sct_img {
        height: 180px;
    }
    
    .db-shop-wrapper .sct_db .sct_ct_wrap {
        padding: 16px;
    }
    
    .db-shop-wrapper .sct_db .sct_txt a {
        font-size: 14px;
    }
    
    .db-shop-wrapper .sct_db .sct_basic {
        font-size: 12px;
    }
    
    .db-shop-wrapper .sct_db .sct_cost {
        font-size: 16px;
    }
    
    .db-shop-wrapper .sct_db .btn_cart,
    .db-shop-wrapper .sct_db .btn_detail {
        font-size: 11px;
        padding: 8px 10px;
    }
    
    .item_detail_wrapper {
        padding: 20px 15px;
    }
    
    .item_title {
        font-size: 20px;
    }
    
    .item_action_buttons {
        flex-direction: column;
    }
    
    .btn_cart,
    .btn_buy_now,
    .btn_wishlist {
        width: 100%;
    }
}

/* 작은 모바일 (576px 이하) */
@media (max-width: 576px) {
    .db-shop-wrapper .sct_db .sct_ul {
        /* 작은 모바일에선 2단 유지 */
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .db-shop-wrapper .sct_db .sct_img {
        height: 180px;
    }
    
    .item_detail_wrapper {
        padding: 15px 10px;
    }
    
    .item_detail_container {
        gap: 30px;
    }
}

/* ========== 5. 유틸리티 클래스 ========== */

/* 숨김 */
.sound_only {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* 텍스트 정렬 */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* 여백 */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

/* 로딩 애니메이션 */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--gray-200);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* 페이드 인 애니메이션 */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========== 9. 개인결제 ========== */
.sct_pv_ul .sct_li .sct_img {
    background-color: var(--gray-200);
}
.sct_pv_ul .sct_li .sct_ct_wrap {
    justify-content: center;
    text-align: center;
}

/* ========== 8. 하위 카테고리 ========== */
.sct_ct {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    border-bottom: 1px solid var(--gray-100);
    padding-bottom: 20px;
}

.sct_ct a {
    display: block;
    padding: 10px 18px;
    background: var(--gray-100);
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    color: var(--gray-700);
    transition: all 0.2s ease;
}

.sct_ct a:hover {
    background: var(--gray-200);
    color: var(--gray-900);
}

.sct_ct li.active a {
    background: var(--primary-light);
    color: #fff;
    font-weight: 500;
}


/* ========== 7. 상품 정렬 ========== */
#sct_sort {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.sct_sort_info .sct_count {
    font-size: 15px;
    color: var(--gray-700);
}

.sct_sort_info .sct_count strong {
    color: var(--primary);
    font-weight: 700;
}

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

.sct_sort_list a {
    padding: 8px 14px;
    border: 1px solid var(--gray-300);
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    color: var(--gray-600);
    transition: all 0.2s ease;
}

.sct_sort_list a:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--gray-50);
}

.sct_sort_list li.active a {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
    font-weight: 600;
}

/* ========== 6. 상품 상세 정보 탭 ========== */
.item_tabs_wrapper {
    margin-top: 60px;
    border-top: 1px solid var(--gray-200);
}

.tab_menu {
    border-bottom: 1px solid var(--gray-200);
}

.tab_list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-x: auto;
}

.tab_item {
    flex-shrink: 0;
}

.tab_item a {
    display: block;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-600);
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab_item.active a,
.tab_item a:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: var(--gray-50);
}

.tab_content_wrapper {
    position: relative;
}

.tab_content {
    display: none;
    padding: 40px 0;
    min-height: 400px;
}

.tab_content.active {
    display: block;
}

.content_section h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 24px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}

.detail_content,
.delivery_content,
.review_content,
.qna_content {
    line-height: 1.8;
    color: var(--gray-700);
}

/* 배송 정보 테이블 */
.shipping_info,
.return_info {
    margin-bottom: 40px;
}

.shipping_info h4,
.return_info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 16px 0;
}

.info_table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--gray-200);
    margin-bottom: 24px;
}

.info_table th,
.info_table td {
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    text-align: left;
}

.info_table th {
    background: var(--gray-50);
    font-weight: 600;
    color: var(--gray-900);
    width: 150px;
}

.info_table td {
    color: var(--gray-700);
}

.return_policy h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    margin: 24px 0 12px 0;
}

.return_policy ul {
    margin: 0 0 16px 0;
    padding-left: 20px;
}

.return_policy li {
    margin-bottom: 8px;
    color: var(--gray-700);
    line-height: 1.6;
}

/* 반응형 */
@media (max-width: 767px) {
    .tab_item a {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .tab_content {
        padding: 24px 0;
    }
    
    .content_section h3 {
        font-size: 20px;
    }
    
    .info_table th {
        width: 100px;
        font-size: 14px;
    }
    
    .info_table th,
    .info_table td {
        padding: 8px 12px;
        font-size: 14px;
    }
}

/* ========== 12. 관련상품 ========== */
.sct_rel_wrap {
    margin: 40px 0;
}
.sct_rel_wrap h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}
.sct_rel_ul .sct_li {
    width: 220px; /* 슬라이더 너비와 맞춤 */
}
.sct_rel_ul .bx-wrapper {
    box-shadow: none;
    border: 0;
    margin-bottom: 0;
}
.sct_rel_ul .bx-controls-direction a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    box-shadow: var(--shadow);
    transition: all 0.2s;
}
.sct_rel_ul .bx-controls-direction a:hover {
    background: #fff;
}
.sct_rel_ul .bx-wrapper .bx-prev {
    left: -20px;
}
.sct_rel_ul .bx-wrapper .bx-next {
    right: -20px;
}


/* ========== 11. 쿠폰존 ========== */
.couponzone {
    margin-bottom: 50px;
}
.couponzone_header {
    text-align: center;
    margin-bottom: 30px;
}
.couponzone_header h2 {
    font-size: 22px;
    font-weight: 600;
}
.couponzone_header p {
    color: var(--gray-600);
    margin-top: 5px;
}
.coupon_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.coupon_item {
    display: flex;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}
.coupon_item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.coupon_price {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    background: var(--primary-light);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}
.coupon_price b {
    font-size: 1.2em;
}
.coupon_content {
    padding: 15px 20px;
    flex-grow: 1;
}
.coupon_title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
}
.coupon_target, .coupon_min_price, .coupon_period {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 4px;
}
.coupon_action {
    display: flex;
    align-items: center;
    padding: 20px;
}
.btn_coupon_download {
    padding: 10px 15px;
    border-radius: 5px;
    background: var(--primary);
    color: #fff;
    border: 0;
    cursor: pointer;
    font-weight: 600;
}
.btn_coupon_download:hover {
    background: var(--primary-dark);
}
.btn_coupon_download.disabled {
    background: var(--gray-300);
    cursor: not-allowed;
}
.no_coupon {
    padding: 50px;
    text-align: center;
    color: var(--gray-500);
    border: 1px dashed var(--gray-200);
    border-radius: 8px;
}


/* ========== 10. 상품 검색 ========== */
#ssch {
    padding: 20px 0;
}
.ssch_header {
    text-align: center;
    margin-bottom: 30px;
}
.ssch_header h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 8px 0;
}
.ssch_header h2 strong {
    color: var(--primary);
}
.ssch_header .ssch_result_total {
    font-size: 15px;
    color: var(--gray-600);
}
#ssch_frm {
    background: var(--gray-50);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid var(--gray-200);
}
.ssch_input_wrap {
    display: flex;
    margin-bottom: 15px;
}
#ssch_q {
    flex-grow: 1;
    height: 44px;
    padding: 0 15px;
    border: 1px solid var(--gray-300);
    border-right: 0;
    border-radius: 6px 0 0 6px;
}
#ssch_frm .btn_submit {
    flex-shrink: 0;
    width: 50px;
    background: var(--primary);
    color: #fff;
    border: 0;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
}
.ssch_option {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 14px;
}
.ssch_chk_list, .ssch_price_range {
    display: flex;
    align-items: center;
    gap: 15px;
}
.ssch_option strong {
    font-weight: 600;
    color: var(--gray-800);
}
.ssch_price_range .ssch_input {
    width: 100px;
    text-align: right;
}
#ssch_cate {
    margin-bottom: 20px;
}
#sct_sort {
    border-top: 1px solid var(--gray-200);
}


/* ========== 상품 상세 페이지 반응형 ========== */

/* 태블릿 */
@media (max-width: 1024px) {
    .item_detail_wrapper {
        padding: 20px 15px;
    }
    
    .item_detail_container {
        gap: 40px;
    }
    
    .item_info_section {
        padding: 15px 0;
    }
}

/* 모바일 */
@media (max-width: 768px) {
    .item_detail_wrapper {
        padding: 15px 10px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .item_detail_container {
        display: block;
        gap: 0;
    }
    
    .item_image_section {
        position: static;
        margin-bottom: 30px;
        width: 100%;
        max-width: 100%;
    }
    
    .item_main_image {
        aspect-ratio: 1;
        margin-bottom: 15px;
        border-radius: 8px;
    }
    
    .item_thumb_list {
        gap: 8px;
        padding: 0;
    }
    
    .thumb_item {
        width: 60px;
        height: 60px;
    }
    
    .item_info_section {
        padding: 0;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .item_title {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .item_basic_desc {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .item_db_info {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .item_db_info h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .item_db_info ul li {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
    
    .item_price_section {
        margin-bottom: 20px;
    }
    
    .selling_price .price_value {
        font-size: 1.3rem;
    }
    
    .item_quantity {
        margin-bottom: 20px;
    }
    
    .qty_controls {
        max-width: 150px;
    }
    
    .item_total_price {
        margin-bottom: 25px;
    }
    
    .item_action_buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .item_action_buttons button {
        width: 100%;
        padding: 15px;
        font-size: 1rem;
    }
}

/* 초소형 모바일 */
@media (max-width: 480px) {
    .item_detail_wrapper {
        padding: 10px 8px;
    }
    
    .item_image_section {
        margin-bottom: 20px;
    }
    
    .item_main_image {
        border-radius: 6px;
        margin-bottom: 12px;
    }
    
    .thumb_item {
        width: 50px;
        height: 50px;
    }
    
    .item_title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .item_basic_desc {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .item_db_info {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .item_db_info h3 {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    .item_db_info ul li {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }
    
    .item_price_section {
        margin-bottom: 15px;
    }
    
    .selling_price .price_value {
        font-size: 1.2rem;
    }
    
    .item_quantity {
        margin-bottom: 15px;
    }
    
    .item_total_price {
        margin-bottom: 20px;
    }
    
    .item_action_buttons button {
        padding: 12px;
        font-size: 0.9rem;
    }
    #sit_buy{
        display: none;
    }
    .tab_con iframe{
        width: 100% !important;
    }
}

/* 전체 레이아웃 오버플로우 방지 */
@media (max-width: 767px) {
    body, html {
        overflow-x: hidden;
    }
    #container{
        padding: 0px;
    }
    
    #sit_inf_explan{
        width: 90% !important;
    }
    
    #wrapper, #container, #hd, #ft {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow-x: hidden;
    }
    
    .sct_wrap, #sit_ov_wrap, #sit_tab {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow-x: hidden;
    }
    
    .db-shop-wrapper .sct_db {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow-x: hidden;
    }
    
    .db-shop-wrapper .sct_db .sct_ul {
        grid-template-columns: 1fr;
        gap: 16px;
        width: 100%;
    }
}

/* ========== 마이페이지 스타일 - 비즈니스 라이너 디자인 ========== */

/* 마이페이지 메인 컨테이너 */
#smb_my {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    background: var(--bg-white);
}

/* 회원정보 개요 섹션 */
#smb_my_ov {
    background: var(--bg-white);
    border: 1px solid var(--border-default);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

#smb_my_ov h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary);
    position: relative;
}

#smb_my_ov h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-dark);
}

/* 회원 정보 영역 */
.smb_me {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--primary-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.my_ov_name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.smb_me a {
    padding: 8px 16px;
    background: var(--bg-white);
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--border-default);
    transition: all 0.2s ease;
}

.smb_me a:hover {
    background: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
}

/* 개인 통계 영역 */
#smb_private {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
    list-style: none;
    padding: 0;
}

#smb_private li {
    background: var(--bg-white);
    border: 1px solid var(--border-default);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

#smb_private li:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

#smb_private li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    text-decoration: none;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

#smb_private li a:hover {
    color: var(--primary);
}

#smb_private li a i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 10px;
}

#smb_private li a strong {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

/* 내정보 섹션 */
#smb_my_ov h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.op_area {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.op_area dt {
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.op_area dd {
    color: var(--text-primary);
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
    font-size: 1rem;
}

.op_area dd:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* 회원탈퇴 버튼 */
.withdrawal {
    display: inline-block;
    padding: 10px 20px;
    background: #dc3545;
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.withdrawal:hover {
    background: #c82333;
    transform: translateY(-1px);
}

/* 마이페이지 리스트 영역 */
#smb_my_list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

#smb_my_od, #smb_my_db, #smb_my_wish {
    background: var(--bg-white);
    border: 1px solid var(--border-default);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
}

#smb_my_od h2, #smb_my_db h2, #smb_my_wish h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-light);
}

/* 더보기 버튼 */
.smb_my_more {
    text-align: center;
    margin-top: 20px;
}

.smb_my_more a {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.smb_my_more a:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* 위시리스트 스타일 */
#smb_my_wish ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

#smb_my_wish li {
    background: var(--bg-white);
    border: 1px solid var(--border-default);
    border-radius: 8px;
    padding: 15px;
    position: relative;
    transition: all 0.3s ease;
}

#smb_my_wish li:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.smb_my_chk {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}

.smb_my_img {
    text-align: center;
    margin-bottom: 10px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 6px;
}

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

.smb_my_tit {
    font-weight: 600;
    margin-bottom: 8px;
    height: 2.4em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.smb_my_tit a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
}

.smb_my_tit a:hover {
    color: var(--primary);
}

.smb_my_price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.smb_my_date {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.wish_del {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

.wish_del:hover {
    background: #dc3545;
    color: var(--bg-white);
}

/* 위시리스트 액션 버튼 */
#smb_ws_act {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

#smb_ws_act button {
    flex: 1;
    max-width: 200px;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn01 {
    background: var(--primary);
    color: var(--bg-white);
}

.btn01:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn02 {
    background: var(--gray-600);
    color: var(--bg-white);
}

.btn02:hover {
    background: var(--gray-700);
    transform: translateY(-1px);
}

/* 빈 리스트 메시지 */
.empty_li {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
    background: var(--bg-light);
    border-radius: 8px;
    border: 1px dashed var(--border-default);
}

/* ========== 장바구니 스타일 - 비즈니스 라이너 디자인 ========== */

/* 장바구니 메인 컨테이너 */
#sod_bsk {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    background: var(--bg-white);
}

/* 장바구니 테이블 래퍼 */
.tbl_wrap {
    background: var(--bg-white);
    border: 1px solid var(--border-default);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.tbl_wrap table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.tbl_wrap thead {
    background: var(--primary-light);
    border-bottom: 2px solid var(--primary);
}

.tbl_wrap thead th {
    padding: 20px 15px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    font-size: 0.95rem;
    border-right: 1px solid rgba(236, 101, 33, 0.2);
}

.tbl_wrap thead th:last-child {
    border-right: none;
}

.tbl_wrap tbody tr {
    border-bottom: 1px solid var(--border-light);
    transition: background-color 0.2s ease;
}

.tbl_wrap tbody tr:hover {
    background: var(--bg-light);
}

.tbl_wrap tbody tr:last-child {
    border-bottom: none;
}

.tbl_wrap tbody td {
    padding: 20px 15px;
    text-align: center;
    vertical-align: middle;
    font-size: 0.9rem;
}

/* 체크박스 스타일 */
.chk_box {
    width: 60px;
}

.chk_box input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

/* 상품 정보 영역 */
.td_prd {
    text-align: left !important;
    max-width: 300px;
}

.sod_img {
    float: left;
    margin-right: 15px;
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.sod_name {
    overflow: hidden;
    padding-top: 5px;
}

.prd_name {
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    line-height: 1.4;
}

.prd_name:hover {
    color: var(--primary);
}

.sod_opt {
    background: var(--bg-light);
    padding: 8px 12px;
    border-radius: 6px;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.sod_option_btn {
    margin-top: 8px;
}

.mod_options {
    background: var(--primary);
    color: var(--bg-white);
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mod_options:hover {
    background: var(--primary-dark);
}

/* 수량 및 가격 */
.td_num, .td_numbig {
    font-weight: 600;
    color: var(--text-primary);
}

.td_numbig {
    font-size: 1.1rem;
}

.total_prc {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
}

/* 배송비 */
.td_dvr {
    color: var(--text-secondary);
    font-weight: 500;
}

/* 장바구니 삭제 버튼 */
.btn_cart_del {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
}

.btn_cart_del button {
    margin: 0 5px;
    padding: 10px 20px;
    background: var(--bg-white);
    color: var(--text-secondary);
    border: 1px solid var(--border-default);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn_cart_del button:hover {
    background: #dc3545;
    color: var(--bg-white);
    border-color: #dc3545;
}

/* 장바구니 합계 */
#sod_bsk_tot {
    background: var(--bg-white);
    border: 1px solid var(--border-default);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

#sod_bsk_tot ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

#sod_bsk_tot li {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

#sod_bsk_tot li span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 600;
}

#sod_bsk_tot li strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

.sod_bsk_cnt {
    background: var(--primary-light) !important;
    border-left-color: var(--primary-dark) !important;
}

.sod_bsk_cnt strong {
    color: var(--primary-dark) !important;
    font-size: 1.6rem !important;
}

/* 장바구니 액션 버튼 */
#sod_bsk_act {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#sod_bsk_act a,
#sod_bsk_act button {
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 150px;
    justify-content: center;
}

.btn01 {
    background: var(--gray-600);
    color: var(--bg-white);
}

.btn01:hover {
    background: var(--gray-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn_submit {
    background: var(--primary);
    color: var(--bg-white);
}

.btn_submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(236, 101, 33, 0.3);
}

/* 네이버페이 */
.cart-naverpay {
    margin-top: 15px;
    text-align: center;
}

/* 빈 장바구니 */
.empty_table {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    background: var(--bg-light);
    font-size: 1.1rem;
}

/* ========== 마이페이지 & 장바구니 모바일 반응형 ========== */

/* 태블릿 */
@media (max-width: 1024px) {
    #smb_my, #sod_bsk {
        padding: 20px 15px;
    }
    
    #smb_private {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 15px;
    }
    
    #smb_my_wish ul {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 15px;
    }
    
    #sod_bsk_tot ul {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 15px;
    }
}

/* 모바일 */
@media (max-width: 768px) {
    #smb_my, #sod_bsk {
        padding: 15px 10px;
    }
    
    /* 마이페이지 모바일 */
    #smb_my_ov {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    #smb_my_ov h2 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .smb_me {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 15px;
    }
    
    .my_ov_name {
        font-size: 1.1rem;
    }
    
    .smb_me a {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    #smb_private {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    #smb_private li a {
        padding: 15px 10px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    #smb_private li a i {
        margin-right: 0;
        font-size: 1.3rem;
    }
    
    #smb_private li a strong {
        font-size: 1.2rem;
    }
    
    .op_area {
        padding: 15px;
    }
    
    .op_area dt {
        font-size: 0.85rem;
    }
    
    .op_area dd {
        font-size: 0.9rem;
        margin-bottom: 12px;
        padding-bottom: 12px;
    }
    
    #smb_my_list {
        gap: 20px;
    }
    
    #smb_my_od, #smb_my_db, #smb_my_wish {
        padding: 20px;
    }
    
    #smb_my_od h2, #smb_my_db h2, #smb_my_wish h2 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    #smb_my_wish ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .smb_my_img {
        height: 100px;
    }
    
    .smb_my_tit a {
        font-size: 0.85rem;
    }
    
    .smb_my_price {
        font-size: 1rem;
    }
    
    .smb_my_date {
        font-size: 0.75rem;
    }
    
    #smb_ws_act {
        flex-direction: column;
        gap: 8px;
    }
    
    #smb_ws_act button {
        max-width: none;
        width: 100%;
        padding: 10px 15px;
    }
    
    /* 장바구니 모바일 */
    .tbl_wrap {
        border-radius: 8px;
        margin-bottom: 20px;
    }
    
    .tbl_wrap thead th {
        padding: 15px 10px;
        font-size: 0.85rem;
    }
    
    .tbl_wrap tbody td {
        padding: 15px 10px;
        font-size: 0.85rem;
    }
    
    .td_prd {
        max-width: none;
    }
    
    /* 모바일에서 상품 정보 세로 배치 */
    .td_prd {
        text-align: center !important;
    }
    
    .sod_img {
        float: none !important;
        width: 80px;
        height: 80px;
        margin: 0 auto 10px auto !important;
        display: block !important;
    }
    
    .sod_name {
        overflow: visible !important;
        padding-top: 0 !important;
        text-align: center !important;
        clear: both !important;
        width: 100% !important;
        display: block !important;
    }
    
    .prd_name {
        font-size: 0.9rem !important;
        margin-bottom: 8px !important;
        text-align: center !important;
        line-height: 1.3 !important;
        display: block !important;
        width: 100% !important;
        clear: both !important;
    }
    
    .sod_opt {
        padding: 6px 8px !important;
        font-size: 0.8rem !important;
        margin-top: 6px !important;
        text-align: center !important;
        display: block !important;
        width: 100% !important;
        clear: both !important;
    }
    
    .mod_options {
        padding: 4px 8px;
        font-size: 0.75rem;
    }
    
    .td_numbig {
        font-size: 1rem;
    }
    
    .total_prc {
        font-size: 1.1rem;
    }
    
    .btn_cart_del {
        padding: 15px;
    }
    
    .btn_cart_del button {
        padding: 8px 15px;
        font-size: 0.85rem;
        margin: 0 3px;
    }
    
    #sod_bsk_tot {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    #sod_bsk_tot ul {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    #sod_bsk_tot li {
        padding: 15px;
    }
    
    #sod_bsk_tot li span {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
    
    #sod_bsk_tot li strong {
        font-size: 1.2rem;
    }
    
    .sod_bsk_cnt strong {
        font-size: 1.4rem !important;
    }
    
    #sod_bsk_act {
        flex-direction: column;
        gap: 10px;
    }
    
    #sod_bsk_act a,
    #sod_bsk_act button {
        width: 100%;
        min-width: auto;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    #side_menu{
        display: none;
    }
}

/* 초소형 모바일 */
@media (max-width: 480px) {
    #smb_my, #sod_bsk {
        padding: 10px 8px;
    }
    #side_menu{
        display: none;
    }
    /* 마이페이지 초소형 모바일 */
    #smb_my_ov {
        padding: 15px;
        border-radius: 8px;
    }
    
    #smb_my_ov h2 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .smb_me {
        padding: 12px;
    }
    
    .my_ov_name {
        font-size: 1rem;
    }
    
    #smb_private {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    #smb_private li a {
        padding: 12px;
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    #smb_private li a i {
        margin-right: 10px;
        font-size: 1.2rem;
    }
    
    #smb_private li a strong {
        font-size: 1.1rem;
    }
    
    .op_area {
        padding: 12px;
    }
    
    #smb_my_od, #smb_my_db, #smb_my_wish {
        padding: 15px;
    }
    
    #smb_my_od h2, #smb_my_db h2, #smb_my_wish h2 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    #smb_my_wish ul {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .smb_my_img {
        height: 80px;
    }
    
    .smb_my_tit a {
        font-size: 0.8rem;
    }
    
    .smb_my_price {
        font-size: 0.95rem;
    }
    
    /* 장바구니 초소형 모바일 */
    .tbl_wrap {
        border-radius: 6px;
    }
    
    .tbl_wrap thead th {
        padding: 12px 8px;
        font-size: 0.8rem;
    }
    
    .tbl_wrap tbody td {
        padding: 12px 8px;
        font-size: 0.8rem;
    }
    
    .td_prd {
        max-width: none;
    }
    
    /* 초소형 모바일에서 상품 정보 세로 배치 */
    .td_prd {
        text-align: center !important;
    }
    
    .sod_img {
        float: none !important;
        width: 70px;
        height: 70px;
        margin: 0 auto 8px auto !important;
        display: block !important;
    }
    
    .sod_name {
        overflow: visible !important;
        padding-top: 0 !important;
        text-align: center !important;
        clear: both !important;
        width: 100% !important;
        display: block !important;
    }
    
    .prd_name {
        font-size: 0.85rem !important;
        margin-bottom: 6px !important;
        text-align: center !important;
        line-height: 1.2 !important;
        display: block !important;
        width: 100% !important;
        clear: both !important;
    }
    
    .sod_opt {
        padding: 4px 6px !important;
        font-size: 0.75rem !important;
        margin-top: 4px !important;
        text-align: center !important;
        display: block !important;
        width: 100% !important;
        clear: both !important;
    }
    
    .td_numbig {
        font-size: 0.9rem;
    }
    
    .total_prc {
        font-size: 1rem;
    }
    
    .btn_cart_del {
        padding: 12px;
    }
    
    .btn_cart_del button {
        padding: 6px 12px;
        font-size: 0.8rem;
        margin: 0 2px;
    }
    
    #sod_bsk_tot {
        padding: 15px;
    }
    
    #sod_bsk_tot li {
        padding: 12px;
    }
    
    #sod_bsk_tot li span {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }
    
    #sod_bsk_tot li strong {
        font-size: 1.1rem;
    }
    
    .sod_bsk_cnt strong {
        font-size: 1.3rem !important;
    }
    
    #sod_bsk_act a,
    #sod_bsk_act button {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* ========== 마이페이지 테이블 모바일 최적화 ========== */

/* 주문내역, DB 상품 구매내역 테이블 모바일 대응 */
@media (max-width: 768px) {
    /* 테이블 횡스크롤 적용 */
    #smb_my_od .tbl_wrap,
    #smb_my_db .tbl_wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 8px;
        box-shadow: var(--shadow-sm);
    }
    
    #smb_my_od table,
    #smb_my_db table {
        min-width: 600px;
        width: auto;
    }
    
    #smb_my_od thead th,
    #smb_my_db thead th {
        padding: 12px 8px;
        font-size: 0.8rem;
        white-space: nowrap;
        background: var(--primary-light);
        border-bottom: 2px solid var(--primary);
    }
    
    #smb_my_od tbody td,
    #smb_my_db tbody td {
        padding: 12px 8px;
        font-size: 0.8rem;
        white-space: nowrap;
        border-bottom: 1px solid var(--border-light);
    }
    
    /* 테이블 셀 최적화 */
    .td_num {
        min-width: 80px;
        text-align: center;
    }
    
    .td_datetime {
        min-width: 100px;
        text-align: center;
    }
    
    .td_price {
        min-width: 80px;
        text-align: right;
        font-weight: 600;
        color: var(--primary);
    }
    
    .td_status {
        min-width: 70px;
        text-align: center;
    }
    
    .td_mng {
        min-width: 60px;
        text-align: center;
    }
    
    .td_mng .btn01 {
        padding: 6px 12px;
        font-size: 0.75rem;
        background: var(--primary);
        color: var(--bg-white);
        border-radius: 4px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.2s ease;
    }
    
    .td_mng .btn01:hover {
        background: var(--primary-dark);
    }
    
    /* 스크롤 힌트 추가 */
    #smb_my_od .tbl_wrap::after,
    #smb_my_db .tbl_wrap::after {
        content: '← 좌우로 스크롤하세요 →';
        display: block;
        text-align: center;
        padding: 8px;
        background: var(--bg-light);
        color: var(--text-muted);
        font-size: 0.75rem;
        border-top: 1px solid var(--border-light);
    }
    
    /* 빈 테이블 메시지 */
    .empty_table {
        text-align: center;
        padding: 40px 20px;
        color: var(--text-muted);
        background: var(--bg-light);
        font-size: 0.9rem;
    }
}

/* 초소형 모바일에서 카드 형태로 변환 */
@media (max-width: 480px) {
    /* 테이블을 카드 형태로 변환 */
    #smb_my_od .tbl_wrap,
    #smb_my_db .tbl_wrap {
        overflow: visible;
    }
    
    #smb_my_od .tbl_wrap::after,
    #smb_my_db .tbl_wrap::after {
        display: none;
    }
    
    #smb_my_od table,
    #smb_my_db table {
        display: block;
        min-width: auto;
        width: 100%;
    }
    
    #smb_my_od thead,
    #smb_my_db thead {
        display: none;
    }
    
    #smb_my_od tbody,
    #smb_my_db tbody {
        display: block;
    }
    
    #smb_my_od tr,
    #smb_my_db tr {
        display: block;
        background: var(--bg-white);
        border: 1px solid var(--border-default);
        border-radius: 8px;
        margin-bottom: 15px;
        padding: 15px;
        box-shadow: var(--shadow-sm);
    }
    
    #smb_my_od td,
    #smb_my_db td {
        display: block;
        text-align: left !important;
        padding: 8px 0 !important;
        border: none !important;
        white-space: normal !important;
        min-width: auto !important;
    }
    
    #smb_my_od td::before,
    #smb_my_db td::before {
        content: attr(data-label) ': ';
        font-weight: 600;
        color: var(--text-secondary);
        display: inline-block;
        width: 80px;
        margin-right: 10px;
    }
    
    /* 주문내역 라벨 */
    #smb_my_od .td_num::before { content: '주문번호: '; }
    #smb_my_od .td_datetime::before { content: '주문일시: '; }
    #smb_my_od .td_price::before { content: '주문금액: '; }
    #smb_my_od .td_status::before { content: '상태: '; }
    
    /* DB 상품 구매내역 라벨 */
    #smb_my_db .td_num::before { content: '주문번호: '; }
    #smb_my_db .td_datetime::before { content: '주문일시: '; }
    #smb_my_db .td_price::before { content: '주문금액: '; }
    #smb_my_db .td_status::before { content: '상태: '; }
    #smb_my_db .td_mng::before { content: ''; }
    
    .td_price {
        color: var(--primary) !important;
        font-weight: 700 !important;
        font-size: 1.1rem !important;
    }
    
    .td_mng {
        text-align: center !important;
        padding-top: 15px !important;
        border-top: 1px solid var(--border-light) !important;
        margin-top: 10px !important;
    }
    
    .td_mng .btn01 {
        padding: 8px 20px !important;
        font-size: 0.85rem !important;
        width: 100%;
        display: block;
    }
    
    /* 빈 테이블 메시지 카드 형태 */
    .empty_table {
        display: block !important;
        text-align: center !important;
        padding: 40px 20px !important;
        background: var(--bg-light) !important;
        border: 1px dashed var(--border-default) !important;
        border-radius: 8px !important;
        color: var(--text-muted) !important;
        font-size: 0.9rem !important;
    }
    
    .empty_table::before {
        display: none !important;
    }
}