/* assets/css/checkout.css */

body{
    margin:0;
    font-family:Arial, sans-serif;
    background:#f4f5f7;
    color:#111;
}

.topbar{
    background:#fff;
    border-bottom:1px solid #ddd;
    padding:16px 24px;
}

.checkout-container{
    max-width:800px;
    margin:40px auto;
    padding:20px;
}

.checkout-card{
    background:#fff;
    border:1px solid #ddd;
    border-radius:8px;
    padding:24px;
}

.checkout-item{
    display:flex;
    justify-content:space-between;
    padding:12px 0;
    border-bottom:1px solid #eee;
}

.total{
    display:flex;
    justify-content:space-between;
    margin-top:20px;
    font-size:20px;
    font-weight:bold;
}

button{
    margin-top:24px;
    width:100%;
    padding:14px;
    border:none;
    border-radius:6px;
    background:#111;
    color:#fff;
    cursor:pointer;
    font-size:16px;
}

button:hover{
    background:#333;
}