.checkout-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.woocommerce-privacy-policy-text{
    display: none;
}
.checkout-left {
    flex: 2;
    min-width: 300px;
}

.checkout-right {
    flex: 1;
    min-width: 320px;
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.checkout-left h3, #order_review_heading {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.woocommerce-form-row {
    margin-bottom: 20px;
}

.woocommerce-form-row label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.woocommerce .form-row input[type="text"],
.woocommerce .form-row input[type="email"],
.woocommerce .form-row input[type="tel"],
.woocommerce .form-row select,
.woocommerce .form-row textarea {
    width: 100%;
    padding: 10px !important;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.payment-methods-custom {
    margin-top: 30px;
}

.payment-methods-custom label {
    display: block;
    margin: 15px 0;
    font-size: 16px;
}

.payment-box {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 6px;
    margin-left: 25px;
    margin-bottom: 20px;
}

.woocommerce-checkout-review-order-table {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.woocommerce-checkout-review-order-table tfoot tr:last-child td,
.woocommerce-checkout-review-order-table tfoot tr:last-child th {
    font-size: 18px;
    font-weight: bold;
    color: #dc3545;
}

#place_order {
    width: 100%;
    background: #dc3545;
    color: white;
    border: none;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

#place_order:hover {
    background: #c82333;
}

/* Responsive */
@media (max-width: 992px) {
    .checkout-wrapper {
        flex-direction: column;
    }
}