/* ===========================
   Checkout Page
=========================== */

body {
    background: #f8f9fa;
    font-family: 'Poppins', sans-serif;
}

/* Hero Section */
.checkout-header {
    background: #198754;
    color: white;
    padding: 70px 0;
    text-align: center;
}

.checkout-header h1 {
    font-weight: 700;
}

.checkout-header p {
    margin-top: 10px;
    opacity: 0.9;
}

/* Cards */

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    margin-bottom: 25px;
}

.card-body {
    padding: 30px;
}

.card h4 {
    font-weight: 600;
    margin-bottom: 20px;
    color: #198754;
}

/* Inputs */

.form-control,
.form-select {
    border-radius: 10px;
    padding: 12px;
}

.form-control:focus {
    border-color: #198754;
    box-shadow: 0 0 0 .2rem rgba(25,135,84,.15);
}

/* Payment */

.form-check {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: .3s;
}

.form-check:hover {
    background: #f1fff7;
    border-color: #198754;
}

/* QR Box */

#paymentBox {
    display: none;
}

#paymentQR {
    width: 220px;
    margin: auto;
    display: block;
    border-radius: 12px;
    border: 2px solid #eee;
}

/* Order Summary */

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.total-price {
    font-size: 26px;
    font-weight: bold;
    color: #198754;
}

/* Button */

.btn-success {
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
}

.btn-success:hover {
    transform: translateY(-2px);
    transition: .3s;
}

/* Mobile */

@media(max-width:768px){

.card-body{
    padding:20px;
}

.checkout-header{
    padding:50px 0;
}

.total-price{
    font-size:22px;
}

}