/*
* author : minjeong
* purpose : feelframe.co.kr pricebar 옵션 선택시 패키지혜택까지 남은 금액 표시하는 바 부분
* date: 2025.12.04
*/
.pricebar {
    display: none;
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1075px;
    z-index: 9999;
}
.pricebar .pricebar-box {
    width: 100%;
    padding: 14px 20px;
    border-radius: 8px;
    background-color: #fff;
    border: 1px solid #F0F0F0;
    box-shadow: 4px 3px 7px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pricebar .pricebar-box .box-left {
    width: 90%;
}
.pricebar .pricebar-box .box-title {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
.pricebar .pricebar-box .box-title .basic {
    font-size: 13px;
    color: #333;
    font-family: 'Pretendard-Regular';
}
.pricebar .pricebar-box .box-title .basic .emp {
    font-size: 13px;
    font-family: 'Pretendard-SemiBold';
}
.pricebar .pricebar-box .box-title .color {
    font-size: 13px;
    color: #FA9538;
    font-family: 'Pretendard-SemiBold';
    margin-left: 4px;
}

.pricebar .pricebar-box .box-etc {
    font-size: 11px;
    color: #999;
    font-family: 'Pretendard-Regular';
    margin-bottom: 8px;
}

.pricebar .pricebar-box .box-bar-wrap {
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background-color: #FFF0D6;
}
.pricebar .pricebar-box .box-bar-wrap .box-bar {
    width: 50%;
    height: 100%;
    border-radius: 5px;
    background-color: #FA9538;
}

.pricebar .pricebar-box .box-text {
    font-size: 12px;
    color: #333;
    font-family: 'Pretendard-Regular';
    margin-top: 8px;
}



.pricebar .pricebar-box .box-right {
    width: 10%;
    padding-left: 10px;
}
.pricebar .pricebar-box .box-right .box-img {
    width: 24px;
    height: 24px;
    margin: 0 auto;
}
.pricebar .pricebar-box .box-right .box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pricebar .pricebar-box .box-right .box-img-title {
    font-size: 11px;
    color: #333;
    font-family: 'Pretendard-Medium';
    margin-top: 8px;
    text-align: center;
}



/* 장바구니 버튼 위에 표시 */
.total_pricebar {
    width: 100%;
    padding: 14px 20px;
    border-radius: 8px;
    background-color: #fff;
    border: 1px solid #F0F0F0;
    display: none;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}
.total_pricebar .box-left {
    width: 80%;
}
.total_pricebar .box-title {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
.total_pricebar .box-title .basic {
    font-size: 14px;
    color: #333;
    font-family: 'Pretendard-Regular';
}
.total_pricebar .box-title .basic .emp {
    font-size: 14px;
    font-family: 'Pretendard-SemiBold';
}
.total_pricebar .box-title .color {
    font-size: 14px;
    color: #FA9538;
    font-family: 'Pretendard-SemiBold';
    margin-left: 4px;
}


.total_pricebar .box-etc {
    font-size: 11px;
    color: #999;
    font-family: 'Pretendard-Regular';
    margin-bottom: 8px;
}

.total_pricebar .box-bar-wrap {
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background-color: #FFF0D6;
}
.total_pricebar .box-bar-wrap .box-bar {
    width: 50%;
    height: 100%;
    border-radius: 5px;
    background-color: #FA9538;
}

.total_pricebar .box-text {
    font-size: 12px;
    color: #333;
    font-family: 'Pretendard-Regular';
    margin-top: 8px;
}



.total_pricebar .box-right {
    width: 20%;
    padding-left: 10px;
}
.total_pricebar .box-right .box-img {
    width: 30px;
    height: 30px;
    margin: 0 auto;
}
.total_pricebar .box-right .box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.total_pricebar .box-right .box-img-title {
    font-size: 12px;
    color: #333;
    font-family: 'Pretendard-Medium';
    margin-top: 8px;
    text-align: center;
}




/* mobile */
@media screen and (max-width: 767px) {
    .pricebar {
        top: auto;
        right: 0;
        bottom: 1%;
        width: 100%;
        padding: 0 3%;
    }
    .pricebar .pricebar-box .box-left {
        width: 75%;
    }
    .pricebar .pricebar-box .box-right {
        width: 25%;
    }

    .total_pricebar .box-left {
        width: 75%;
    }
    .total_pricebar .box-title {
        font-size: 13px;
    }
    .total_pricebar .box-title .basic {
        font-size: 13px;
    }
    .total_pricebar .box-title .basic .emp {
        font-size: 13px;
    }
    .total_pricebar .box-title .color {
        font-size: 13px;
    }
    .total_pricebar .box-text {
        font-size: 11px;
    }
    .total_pricebar .box-right {
        width: 25%;
    }
    .total_pricebar .box-right .box-img {
        width: 24px;
        height: 24px;
    }
}
