.checkout-container {
    padding: 40px;
}

.checkout-container h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f533a;
}

.termsCheckbox {
    width: fit-content !important;
    margin: 0px !important;
}

.terms {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 13px;
    margin: 19px 0px;
}

.terms-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    z-index: 1001;
    max-width: 97%;
    width: 100%;
}

/* Scrollable Content Area */
.popup-scroll {
    max-height: 90vh;
    overflow-y: auto;
    padding: 20px;
}

.popup-scroll p {
    font-size: 18px;
    line-height: 140%;
    font-weight: 400;
    font-family: "Nunito Sans", sans-serif;
    margin: 0 !important;
}

.popup-scroll ul {
    font-size: 18px;
    line-height: 140%;
    font-weight: 400;
    font-family: "Nunito Sans", sans-serif;
    margin: 0 !important;
}

.popup-scroll h3 {
    font-size: 24px;
    font-family: 'Open Sans';
    font-weight: 600;
    line-height: 140%;
    padding: 16px 0px;
    color: #1b6ef3;
}

button {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    font-size: 1rem;
    border-radius: .25rem;
    background-color: #fdf1d9;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    padding: 8px 15px;
}

button:hover {
    background-color: #1f533a;
    transition: all .15s ease-in-out;
}

/* Body no-scroll when popup is open */
body.no-scroll {
    overflow: hidden;
}

.checkout-summary {
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.checkout-summary h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.checkout-summary table {
    width: 100%;
    border-collapse: collapse;
}

.checkout-summary th,
.checkout-summary td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
}

.checkout-summary th {
    background: black;
    color: white;
    font-size: 18px;
}

.cart-total {
    font-size: 20px;
    font-weight: bold;
    margin-top: 15px;
    text-align: right;
}

.checkout-form {
    text-align: left;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.checkout-form h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.checkout-form label {
    display: block;
    font-weight: 600;
    color: #000;
    font-size: 21px;
    font-family: 'Nunito Sans';
}

.checkout-form input,
.checkout-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.checkout-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #28a745;
    color: white;
    text-align: center;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    border: none;
}

.checkout-btn:hover {
    background-color: #218838;
}


.banner {
    background: #ffcaa2;
    text-align: center;
    padding: 50px 0;
}

.banner h1 {
    font-size: 48px;
    font-family: 'Open Sans';
    font-weight: 600;
    line-height: 140%;
    margin-top: 13px;
    text-align: center;
    color: #000;

}

@media only screen and (max-width: 768px) {
    .checkout-container {
        width: 95%;
        padding: 20px;
    }
}