/* 1차 카테고리 메뉴 */
.idx_cate_menu {
    max-width: 1200px;
    margin: 20px auto;

}
.idx_cate_menu ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
}
.idx_cate_menu ul li {
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
.idx_cate_menu ul li a {
    display: block;
    padding: 14px 10px;
    text-align: center;
    color: #6e6e6e;
    font-weight: 400;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.idx_cate_menu ul li a:hover {
    background: #f5f5f5;
    color: #333;
}

/* BEST 탭 상품 */
.main_product_inner { width: 100%; margin: 30px auto 80px; padding: 0 15px; box-sizing: border-box; }
.main_product_inner .main_title { text-align: center; margin-bottom: 20px; }
.main_product_inner .main_title_txt01 { font-size: 24px; font-weight: bold; }
.main_product_tab { display: flex; justify-content: center; gap: 25px; list-style: none; padding: 0; margin: 0 0 25px 0; }
.main_product_tab .button { position: relative; padding: 10px 5px; border: none; background: none; cursor: pointer; font-size: 15px; font-weight: 500; color: #999; transition: color 0.3s; }
.main_product_tab .button::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: #222; transition: width 0.3s ease; }
.main_product_tab .button.active { color: #222; font-weight: 700; }
.main_product_tab .button.active::after { width: 100%; }
.best_tab_content { overflow: hidden; }
.best_product_list { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 10px; row-gap: 30px; list-style: none; padding: 0; margin: 0; overflow: hidden; }
.best_prd_item { min-width: 0; overflow: hidden; }
.best_prd_item .prdList__item { overflow: hidden; }
.best_prd_item .thumbnail { position: relative; overflow: hidden; border-radius: 8px; }
.best_prd_item .thumbnail img { width: 100%; max-width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; display: block; transition: transform 0.3s; }
.best_prd_item .thumbnail:hover img { transform: scale(1.05); }
.best_prd_item .description { padding: 8px 2px 0; }
.best_prd_item .name {   padding-bottom: 5px; line-height: 1.4; border-bottom: 1px solid #000;}
.best_prd_item .name a { font-size: 13px; color: #222; font-weight: 600; text-decoration: none; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.best_prd_item .price_wrap { margin-top: 5px; display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.best_prd_item .cust_price { font-size: 12px; color: #aaa; }
.best_prd_item .cust_price del { text-decoration: line-through; }
.best_prd_item .sell_price { font-size: 14px; color: #222; font-weight: 700; }
.best_prd_item .sale_box { font-size: 13px; color: #e74c3c; font-weight: 700; }
.best_prd_item .summary { font-size: 12px; color: #888; margin-top: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* BRAND NEW 신상품 */
.brandnew_section { width: 100%; margin: 0px auto 70px; padding: 0 15px; box-sizing: border-box; }
.brandnew_section .main_title { text-align: center; margin-bottom: 20px; }
.brandnew_section .main_title_txt01 { font-size: 24px; font-weight: bold; }
.brandnew_sub { font-size: 13px; color: #9a9a9a; margin-top: 4px; }
.brandnew_list_wrap { position: relative; }
.brandnew_fade {
    position: absolute; bottom: 50px; left: 0; right: 0; height: 120px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 70%, rgba(255,255,255,1) 100%);
    pointer-events: none; z-index: 1;
}
.brandnew_more_wrap { text-align: center; padding: 15px 0 10px; position: relative; z-index: 2; }
.brandnew_more_btn {
    padding: 12px 60px; border: 1px solid #ddd; background: #fff; cursor: pointer;
    font-size: 14px; color: #555; border-radius: 25px; transition: all 0.3s;
}
.brandnew_more_btn:hover { background: #222; color: #fff; border-color: #222; }
