body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f9f9f9;

}
.checkout-container {
    width: 95%;
    max-width: 450px;
    margin: 20px auto;
    padding: 30px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
}
@media (max-width: 576px) {
    .checkout-container {
        margin: 30px auto;
        padding: 30px 15px;
    }
}
h2, h5 {
    font-weight: bold;
    margin-bottom: 20px;
}
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.payment-method input[type="radio"] {
    display: none;
}
.payment-method label {
    display: flex;
    align-items: center;
    font-weight: 500;
    padding: 9px;
    border: 1px solid #ddd;
    border-radius: 8px;
    border-width: 1.5px;
    cursor: pointer;
    transition: 0.2s;
}
.payment-method input:checked + label {
    border-width: 1.5px;
    border-color: #FB8500;
    background-color: #f9fafb;
}
.payment-method img {
    width: 70px;
    margin-right: 10px;
}
.order-summary {
    margin-top: 15px;
    background-color: #f1f5f9;
    border-radius: 8px;
    padding: 15px;
    font-size: 15px;
}
.btn {
    background-color: #FB8500;
    font-weight: 700;
    border: none;
}
.form-control {
    line-height: 1.8;
}

.form-control:focus {
    border-color: #FB8500;
    box-shadow: 0 0 0 0.2rem rgba(251, 133, 0, 0.25);
}
.discount-text{
    background-color: #FB8500;
    font-weight: bold;
    font-size: 12px;
    margin-top: 5px;
    margin-left: 10px;
    padding: 2px 5px;
    align-items: center;
    border: #FB8500 1px solid;
    color: #fff;
    border-radius: 8px;
}
.form-title {
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    color: #333;
}