*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:#f4f4f4;
}

.checkout-container{
    max-width:700px;
    margin:60px auto;
    background:white;
    padding:30px;
    border-radius:10px;
    box-shadow:0 4px 15px rgba(0,0,0,0.1);
    text-align:center;
}

h1{
    margin-bottom:25px;
}

.total-box{
    margin-bottom:25px;
}

.total-box h2{
    color:#2e7d32;
}

.payment-options button{
    width:250px;
    padding:15px;
    margin:10px;
    border:none;
    border-radius:6px;
    color:white;
    font-size:16px;
    cursor:pointer;
}

.eft-btn{
    background:#1565c0;
}

.whatsapp-btn{
    background:#25D366;
}

.back-btn{
    display:inline-block;
    margin-top:25px;
    text-decoration:none;
    background:#444;
    color:white;
    padding:12px 20px;
    border-radius:6px;
}

/* MODAL */

.modal{
    display:none;
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
    justify-content:center;
    align-items:center;
}

.modal-content{
    background:white;
    width:450px;
    max-width:90%;
    padding:25px;
    border-radius:10px;
    position:relative;
}

.close{
    position:absolute;
    right:15px;
    top:10px;
    font-size:28px;
    cursor:pointer;
}

.modal-content h2{
    margin-bottom:15px;
}

.modal-content p{
    margin:8px 0;
}

.modal-content ul{
    margin:15px 20px;
    text-align:left;
}

.whatsapp-number{
    margin-top:15px;
    color:#25D366;
    font-weight:bold;
}

.copy-btn,
.send-btn{
    width:100%;
    margin-top:10px;
    padding:12px;
    border:none;
    border-radius:6px;
    cursor:pointer;
    color:white;
}

.copy-btn{
    background:#1565c0;
}

.send-btn{
    background:#25D366;
}

#eft-order-summary{
    text-align:left;
    margin-top:15px;
}