/* Main Two-Column Layout */
.woocommerce-checkout .checkout-flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px; /* Space between columns */
}
.woocommerce-checkout .checkout-left-column {
    flex: 1;
    min-width: 320px;
}
.woocommerce-checkout .checkout-right-column {
    flex-basis: 480px; /* Width of the right column */
    flex-grow: 0;
    flex-shrink: 0;
}

/* Styling for the new simple product row */
.custom-checkout-item-list .product-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}
.custom-checkout-item-list .product-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}
.custom-checkout-item-list .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.custom-checkout-item-list .product-details {
    flex-grow: 1;
}
.custom-checkout-item-list .product-name {
    font-weight: 600;
}
.custom-checkout-item-list .product-variations dl.variation {
    font-size: 0.9em;
    color: #666;
    margin-top: 5px;
}
.custom-checkout-item-list .product-total {
    font-weight: 600;
    text-align: right;
}

/* Move the totals table above the payment methods */
.woocommerce-checkout-review-order > .shop_table {
    margin-top: 20px;
}