/* BASIC css start */
:root{
    --main-text:#111;
    --main-sub:#6b7280;
    --main-line:#eceef2;
    --main-bg:#f6f7f9;
    --main-card:#fff;
    --main-point:#111;
    --main-red:#ef4444;
    --main-radius:22px;
    --main-shadow:0 12px 32px rgba(17,17,17,.06);
}

.renew_main{
    padding-bottom:50px;
    background:#fff;
    color:var(--main-text);
}

.section_head{
    padding:0 16px 16px;
}
.section_head h3{
    font-size:24px;
    font-weight:900;
    line-height:1.2;
    color:#111;
}
.section_head p{
    margin-top:6px;
    font-size:13px;
    color:var(--main-sub);
    line-height:1.6;
}
.section_head.with_link{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:12px;
}
.section_head.with_link a{
    font-size:12px;
    font-weight:900;
    color:#111;
}
.center_head{
    text-align:center;
}

/* 히어로 */
.hero_section{
    padding:12px 16px 0;
}
#hero_swiper{
    overflow:hidden;
    border-radius:28px;
    box-shadow:var(--main-shadow);
}
#hero_swiper .swiper-slide{
    position:relative;
    overflow:hidden;
}
#hero_swiper .swiper-slide a{
    display:block;
    position:relative;
}
#hero_swiper .swiper-slide a:after{
    content:'';
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:55%;
    background:linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.68) 100%);
}
#hero_swiper img{
    width:100%;
    display:block;
}
.hero_copy{
    position:absolute;
    left:20px;
    right:20px;
    bottom:22px;
    z-index:2;
    color:#fff;
}
.hero_kicker{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:28px;
    padding:0 12px;
    border-radius:999px;
    background:rgba(255,255,255,.14);
    backdrop-filter:blur(10px);
    font-size:11px;
    font-weight:900;
    letter-spacing:.08em;
}
.hero_copy h2{
    margin-top:14px;
    font-size:27px;
    font-weight:900;
    line-height:1.25;
    color:#fff;
}
.hero_copy p{
    margin-top:10px;
    font-size:13px;
    line-height:1.6;
    color:rgba(255,255,255,.86);
}
.hero_copy b{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:112px;
    height:42px;
    margin-top:16px;
    padding:0 18px;
    border-radius:999px;
    background:#fff;
    color:#111;
    font-size:13px;
    font-weight:900;
}
.hero_pagination{
    position:absolute;
    left:0 !important;
    right:0 !important;
    bottom:14px !important;
    text-align:center;
    z-index:3;
}
.hero_pagination .swiper-pagination-bullet{
    width:8px;
    height:8px;
    background:#fff;
    opacity:.35;
}
.hero_pagination .swiper-pagination-bullet-active{
    width:20px;
    border-radius:999px;
    opacity:1;
}

/* 혜택 박스 */
.hero_benefit_section{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
    padding:16px;
}
.benefit_box{
    padding:18px 18px;
    border:1px solid var(--main-line);
    border-radius:20px;
    background:#fff;
    box-shadow:none;
}
.benefit_box strong{
    display:block;
    font-size:15px;
    font-weight:900;
    color:#111;
}
.benefit_box p{
    margin-top:6px;
    font-size:12px;
    color:#6b7280;
    line-height:1.6;
}
.benefit_box.benefit_dark{
    background:linear-gradient(135deg,#111827 0%, #374151 100%);
    border-color:#111827;
}
.benefit_box.benefit_dark strong,
.benefit_box.benefit_dark p{
    color:#fff;
}
.benefit_box.benefit_dark p{
    color:rgba(255,255,255,.8);
}

/* 원형 아이콘 3개 */
.pick_icon_section{
    padding:16px 0 0;
}
.pick_icon_wrap{
    display:flex;
    align-items:flex-start;
    justify-content:center;
    gap:18px;
    padding:0 16px;
}
.pick_icon_item{
    width:92px;
    text-align:center;
}
.pick_icon_item .thumb{
    display:block;
    width:92px;
    height:92px;
    overflow:hidden;
    border-radius:50%;
    background:#f5f6f8;
    border:1px solid #f0f2f5;
}
.pick_icon_item .thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.pick_icon_item b{
    display:block;
    margin-top:10px;
    font-size:12px;
    font-weight:900;
    color:#111;
    line-height:1.4;
}

/* 상품 공통 */
.product_section{
    padding:40px 0 0;
}
.product_section.light_bg{
    padding:40px 0 24px;
    background:#fafbfc;
}
.product_grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px 12px;
    padding:0 16px;
}
.prd_card .thumb{
    position:relative;
    overflow:hidden;
    border-radius:22px;
    background:#f6f7f9;
}
.prd_card .thumb > a{
    display:block;
}
.prd_card .thumb img{
    width:100%;
    display:block;
}
.prd_card .badge{
    position:absolute;
    top:12px;
    left:12px;
    height:26px;
    padding:0 10px;
    border-radius:999px;
    background:#111;
    color:#fff;
    font-size:11px;
    font-weight:900;
    line-height:26px;
    z-index:2;
}
.prd_card .badge.new{
    background:#2563eb;
}
.prd_card .prd-wish{
    position:absolute;
    right:10px;
    top:10px;
    width:34px;
    height:34px;
    border-radius:999px;
    background:rgba(255,255,255,.94);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:2;
}
.prd_card .prd-wish img{
    width:18px;
    height:18px;
}
.prd_card .prd-wish .wish_on{
    display:none;
}
.prd_card .info{
    padding:14px 4px 0;
}
.prd_card .name a{
    display:block;
    min-height:40px;
    font-size:14px;
    font-weight:900;
    color:#111;
    line-height:1.45;
}
.prd_card .desc{
    margin-top:6px;
    font-size:12px;
    color:#6b7280;
    line-height:1.5;
}
.prd_card .price_row{
    display:flex;
    align-items:flex-end;
    flex-wrap:wrap;
    gap:6px;
    margin-top:10px;
}
.prd_card .sale{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:22px;
    padding:0 8px;
    border-radius:999px;
    background:#fff1f2;
    color:#ef4444;
    font-size:10px;
    font-weight:900;
}
.prd_card .price{
    font-size:17px;
    font-weight:900;
    color:#111;
    line-height:1;
}
.prd_card .consumer{
    font-size:12px;
    color:#9ca3af;
    text-decoration:line-through;
    line-height:1.2;
}
.prd_card .soldout{
    font-size:14px;
    font-weight:900;
    color:#ef4444;
}
.prd_card .price_replace{
    font-size:14px;
    font-weight:900;
    color:#111;
}

/* 브랜드 스토리 */
.brand_story_sec{
    padding:40px 16px 0;
}
.story_card{
    padding:22px;
    border-radius:26px;
    background:linear-gradient(135deg,#111 0%, #313b4f 100%);
    color:#fff;
    overflow:hidden;
}
.story_copy span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:28px;
    padding:0 12px;
    border-radius:999px;
    background:rgba(255,255,255,.12);
    font-size:11px;
    font-weight:900;
}
.story_copy h3{
    margin-top:16px;
    font-size:24px;
    font-weight:900;
    line-height:1.35;
    color:#fff;
}
.story_copy p{
    margin-top:10px;
    font-size:13px;
    line-height:1.7;
    color:rgba(255,255,255,.82);
}
.video-wrap{
    position:relative;
    width:100%;
    height:0;
    margin-top:18px;
    padding-bottom:56.25%;
    overflow:hidden;
    border-radius:20px;
}
.video-wrap iframe{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    border:0;
}

/* 타임딜 배경 */
.timedeal_bg{
    margin-top:40px;
    background:#f6f7fb;
    padding:40px 0;
}
.timedeal_section{
    padding:0;
}
.deal_timer_box{
    margin:0 16px 18px;
    padding:22px 16px;
    border-radius:24px;
    background:#111;
    color:#fff;
    text-align:center;
    box-shadow:var(--main-shadow);
}
.deal_timer_box .timer_label{
    font-size:13px;
    color:rgba(255,255,255,.72);
}
.deal_timer_box .timer_count{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    margin-top:12px;
}
.deal_timer_box .timer_count span{
    min-width:58px;
    height:58px;
    padding:0 10px;
    border-radius:16px;
    background:rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    font-weight:900;
}
.deal_timer_box .timer_count i{
    font-style:normal;
    font-size:24px;
    font-weight:900;
}
.deal_swiper{
    padding:0 16px;
    overflow:hidden;
}
.deal_card{
    overflow:hidden;
    border:1px solid var(--main-line);
    border-radius:22px;
    background:#fff;
}
.deal_card .thumb{
    background:#f8f9fb;
}
.deal_card .thumb a{
    display:block;
}
.deal_card .thumb img{
    width:100%;
    display:block;
}
.deal_card .info{
    padding:14px;
}
.deal_card .name a{
    display:block;
    min-height:40px;
    font-size:14px;
    font-weight:900;
    color:#111;
    line-height:1.45;
}
.deal_card .sub{
    margin-top:6px;
    font-size:12px;
    color:#6b7280;
}
.deal_card .price_row{
    margin-top:10px;
}
.deal_card .price{
    font-size:18px;
    font-weight:900;
    color:#111;
}

/* 트렌드 */
.trend_section{
    padding:40px 16px 0;
}
.trend_banner a{
    position:relative;
    display:block;
    overflow:hidden;
    border-radius:26px;
}
.trend_banner img{
    width:100%;
    display:block;
}
.trend_banner a:after{
    content:'';
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:55%;
    background:linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.58) 100%);
}
.trend_banner .banner_copy{
    position:absolute;
    left:20px;
    right:20px;
    bottom:18px;
    z-index:2;
    color:#fff;
}
.trend_banner .banner_copy span{
    display:block;
    font-size:11px;
    font-weight:900;
    letter-spacing:.08em;
    opacity:.9;
}
.trend_banner .banner_copy strong{
    display:block;
    margin-top:10px;
    font-size:24px;
    font-weight:900;
    line-height:1.3;
}
.trend_list{
    margin-top:16px;
    display:flex;
    flex-direction:column;
    gap:12px;
}
.trend_item{
    display:flex;
    align-items:center;
    gap:14px;
    padding:12px;
    border:1px solid var(--main-line);
    border-radius:20px;
    background:#fff;
}
.trend_item dt{
    width:92px;
    flex-shrink:0;
    overflow:hidden;
    border-radius:16px;
    background:#f8f9fb;
}
.trend_item dt img{
    width:100%;
    display:block;
}
.trend_item dd{
    flex:1;
}
.trend_item .name a{
    display:block;
    font-size:14px;
    font-weight:900;
    color:#111;
    line-height:1.45;
}
.trend_item .price{
    margin-top:8px;
    font-size:16px;
    font-weight:900;
    color:#111;
}

/* 하단 배너 */
.bottom_banners{
    padding:40px 16px 0;
    display:flex;
    flex-direction:column;
    gap:14px;
}
.bottom_banners a{
    display:block;
    overflow:hidden;
    border-radius:22px;
}
.bottom_banners img{
    width:100%;
    display:block;
}

@media (max-width:768px){
    .hero_copy h2{
        font-size:24px;
    }
    .section_head h3{
        font-size:22px;
    }
}
/* BASIC css end */

