/* ========================================================================== */
/* PAYMENT SECTION                                                        */
/* ========================================================================== */

.payment-specification h3,
.payment-specification h4 {
    margin-top: 1rem;
    color: black;
}

.payment-specification input,
.payment-specification textarea {
    width: 100%;
    margin: 0.3rem 0 1rem;
    padding: 0.5rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    color: black;
}

.confirm-btn {
    display: block;
    width: 100%;
    background: #4CAF50;
    color: white;
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
}

    .confirm-btn:hover {
        background: #45a049;
    }


@media (max-width: 991.98px) {
    .checkout-container {
        grid-template-columns: 1fr;
        justify-content: center;
    }
}

