/* =================================
   CHECKOUT
================================= */

.checkout-section {
    padding: 70px 0;
    background: #f8f9f7;
    min-height: 75vh;
}

.checkout-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 35px;
}

.checkout-card {
    background: white;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    margin-bottom: 20px;
}

.checkout-card h4 {
    font-weight: 800;
    margin-bottom: 22px;
}

.form-label {
    font-weight: 600;
}

.form-control,
.form-select {
    border-radius: 10px;
    padding: 12px 14px;
}

.form-control:focus,
.form-select:focus {
    border-color: #1b5e20;
    box-shadow: 0 0 0 0.2rem rgba(27,94,32,0.12);
}

.payment-option {
    display: block;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: 0.2s;
}

.payment-option:hover {
    border-color: #1b5e20;
}

.payment-option input {
    margin-right: 10px;
}

.payment-option.selected {
    border-color: #1b5e20;
    background: #f1f8f1;
}

.checkout-summary {
    background: white;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    position: sticky;
    top: 100px;
}

.checkout-summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: #555;
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    font-size: 23px;
    font-weight: 800;
    color: #1b5e20;
}

.place-order-btn {
    width: 100%;
    border: none;
    background: #1b5e20;
    color: white;
    padding: 15px;
    border-radius: 30px;
    font-weight: 800;
    margin-top: 20px;
    transition: 0.25s;
}

.place-order-btn:hover {
    background: #ffc107;
    color: #111;
}

.delivery-note {
    background: #fff8df;
    border-radius: 12px;
    padding: 13px;
    font-size: 14px;
    color: #665300;
}