.cpp-box{
    width: 600px;
    margin: 50px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.cpp-title{
    text-align: center;
}

.cpp-title h2{
    font-size: 24px;
    font-weight: 600;
    line-height: 35px;
}

.cpp-title p{
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
}

.cpp-billing-address, .cpp-items, .cpp-total{
    border: 1px solid #000;
    padding: 20px;
}

.cpp-billing-address h3, .cpp-items h3, .cpp-total h3{
    font-size: 21px;
    font-weight: 500;
    line-height: 30px;
    color: #000;
}

.cpp-billing-address p{
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #000;
    margin: 0px 0px 5px;
}

.cpp-billing-address p:last-child{
    margin: 0px;
}

.cpp-billing-address span{
    font-weight: 500;
}

.cpp-items table thead{
    background-color: #F8F9FA;
}

.cpp-items table thead th{
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #000;
    padding: 10px 20px;
}
.cpp-items table tbody td{
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #000;
    padding: 10px 20px;
}
.cpp-items table tbody tr{
    border-bottom: 1px solid #000;
}
.cpp-items table tbody tr:last-child{
    border-bottom: none;
}
.cpp-item-product{
    display: flex;
    align-items: center;
    gap: 10px;
}

.cpp-item-product img{
    width: 50px;
    height: 50px;
}

.cpp-item-product h5{
    font-size: 12px;
    display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; 
}

.cpp-total p{
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px 0px 10px;
}

.cpp-total p span{
    font-weight: 700;
}

.cpp-total div{
    padding: 15px 0px;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

.cpp-total div p{
    margin: 0px;
}

.component-frame{
    z-index: 1 !important;
}

@media only screen and (max-width: 600px) {
    .cpp-box{
        width: 340px;
    }
    .cpp-items .table-wrapper{
        overflow-x: auto;
        width: 100%;
    }
    .cpp-logo{
        width: 80%;
        margin-bottom: 15px;
    }
    .cpp-title h2{
        font-size: 21px;
    }
  }