/*
Theme Name: Hello Elementor Child
Template: hello-elementor
Version: 1.0
*/

.bww-review-wrapper{
    display:flex;
    flex-direction:column;
    gap:24px;
    font-family: ping;
    margin-bottom:2rem
}

.bww-review-card{
    background:#111111;
    border:1px solid #262626;
    border-radius:24px;
    padding:24px;
}

.bww-review-top{
    display:flex;
    gap:22px;
    align-items:flex-start;
}

.bww-order-image{
    width:120px;
    min-width:120px;
    height:120px;
    border-radius:20px;
    overflow:hidden;
    background:#000;
}

.bww-order-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.bww-order-content{
    flex:1;
}

.bww-book-title{
    margin:0 0 10px;
    color:#fff;
    font-size:26px;
    line-height:1.5;
    font-weight:700;
}

.bww-book-desc{
    margin:0 0 18px;
    color:#9CA3AF;
    line-height:1.9;
    font-size:15px;
}

.bww-book-features{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.bww-book-features span{
    background:#1A1A1A;
    border:1px solid #2A2A2A;
    padding:10px 14px;
    border-radius:999px;
    color:#E5E7EB;
    font-size:13px;
}

.bww-review-bottom{
    margin-top:24px;
    padding-top:20px;
    border-top:1px solid #262626;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.bww-total-label{
    color:#9CA3AF;
    font-size:15px;
}

.bww-total-price{
    color:#fff;
    font-size:24px;
    font-weight:700;
}

.bww-final-total{
    background:#FD8E07;
    border-radius:22px;
    padding:22px 26px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    color:#fff;
    font-size:18px;
    font-weight:700;
}

.bww-final-total strong{
    font-size:28px;
    color:#fff;
}

/* checkout note */

.checkout-note{
    background:#00C9500A;
    border:0.8px solid #00C9500A;
    border-radius:22px;
    padding:24px;
    margin:30px 0 0 0;
    font-family: ping;
}

.checkout-note h6{
    color:#27E243;
    margin-bottom:12px;
    font-size:18px;
font-weight: 900;
}

.checkout-note p{
    color:#27E243;
    line-height:2;
    font-size:15px;
}

.form-subtitle{
    color:#9CA3AF;
    line-height:1.9;
    margin-bottom:10px;
    margin-top:-28px;
    font-size:15px;
    font-family:ping;
}

@media(max-width:767px){

    .bww-review-top{
        flex-direction:column;
    }

    .bww-order-image img{
        width:100%;
    }

    .bww-book-features{
        flex-direction:column;
    }
    
    .checkout-note{
    padding:10px;
    margin:5px 0 -10px 0;
}


}