.useFrame{
    padding-top: 60px;
}
.useWrap{
    padding: var(--space-3x-large) 0;
}
.product{
    position: relative;
}
.use h2{
    font-size: var(--heading2);
    font-weight: bold;
    margin-bottom: var(--space-normal);
}
.use p{
    margin-bottom: var(--space-x-large);
}
.use.proTitle{
    background-color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.use_menu{
    display: flex;
    justify-content: center;
    gap: 2rem;
    position: sticky;
    left: 0;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--font-color);
    background-color: #fff;
    padding: var(--space-normal) 0;
}
.use_menu li:hover{
    color: var(--main-color);
}

.use_frame{
    display: flex;
    padding: var(--space-x-large) 0;
    gap: 5rem;
    align-items: center;
}
.use_imgframe{
    flex: 1;
}
.use_imgframe img{
    width: 100%;
}
.use_txtframe{
    height: 100%;
    max-width: 570px;
    flex: 1;
}
.use_txtframe>h4{
    font-size: var(--heading4);
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: var(--space-normal);
}
.use_txtframe>h1{
    font-size: var(--heading1);
    font-weight: bold;
    margin-bottom: var(--space-normal);
}
.use_txtframe>p{
    margin-bottom: var(--space-x-large);
}
.use_txtframe .btn_use{
    font-weight: bold;
}
.use_wrap{
    border-bottom: 1px solid var(--font-color);
    padding-bottom: 5rem;
}
.usepick_frame>h4{
    font-size: var(--heading4);
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: var(--space-small);
}

/* 기업 */
.com_btn{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.com_btn button{
    width: fit-content;
}
/* 버튼스타일 */
.btn_use{
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    padding-right: 1rem;
    cursor: pointer;
}
.btn_use>a{
    display: flex;
    align-items: center;
    gap: var(--space-small);
    line-height: 0;
}
.btn_use>a svg{
    height: 0.8rem;
}
.btn_use:hover{
    background-color: var(--main-color);
    color: #fff;
}
.btn_use:hover svg path{
    stroke: #fff;
}
/* 하트토글 */
.pick_li figure{
    position: relative;
}
.heart{
    position: absolute;
    cursor: pointer;
    right: 0.5rem;
    bottom: 0.5rem;
    height: 1.05rem;
}
.heart.on{
    fill: var(--price-color);
}

/* 추천제품 */
.pick_li{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: var(--space-normal);
}
.pick_li li{
    display: flex;
    flex-direction: column;
    gap: var(--space-normal);
}
.pick_txt{
    text-align: center;
    display: flex;
    flex-direction: column;
}
.product_code{
    font-size: var(--detail);
    margin-bottom: var(--space-small);
}
.product_name{
    font-size: var(--heading4);
    font-weight: bold;
    margin-bottom: var(--space-normal);
}
.product_discount{
    text-decoration: line-through;
}
.product_price{
    font-size: var(--heading3);
    color: var(--price-color);
    font-weight: bold;
}



@media (max-width:768px){
    .useFrame{
        padding-top: 50px;
    }
    .useWrap{
        padding: var(--space-3x-large) 0;
    }
    .use_frame{
        flex-direction: column;
        gap: 1rem;
    }
    .use_txtframe{
        padding-top: 1rem;
    }
    .pick_slider_frame{
        overflow-x: auto;
        /* ios작동 */
        -webkit-overflow-scrolling: touch;
    }
    .pick_li li{
        min-width: 210px;
    }

}