/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: May 20 2026 | 19:22:19 */
/* =========================================================
   GranoFactura — цена в оформлении заказа не переносится
   ========================================================= */

.woocommerce-checkout .woocommerce-checkout-review-order-table tr.cart_item {
    display: flex !important;
    align-items: flex-start !important;
}

/* Левая часть с товаром занимает всё свободное место */
.woocommerce-checkout .woocommerce-checkout-review-order-table .wd-checkout-prod {
    flex: 1 1 auto !important;
    min-width: 0 !important;
}

/* Правая колонка с ценой */
.woocommerce-checkout .woocommerce-checkout-review-order-table .product-total,
.woocommerce-checkout .woocommerce-checkout-review-order-table .wd-checkout-prod-total {
    width: 90px !important;
    min-width: 90px !important;
    max-width: 90px !important;
    flex: 0 0 90px !important;
    text-align: right !important;
    white-space: nowrap !important;
}

/* Сама сумма */
.woocommerce-checkout .woocommerce-checkout-review-order-table .product-total .amount,
.woocommerce-checkout .woocommerce-checkout-review-order-table .wd-checkout-prod-total .amount,
.woocommerce-checkout .woocommerce-checkout-review-order-table .woocommerce-Price-amount {
    display: inline-block !important;
    white-space: nowrap !important;
    width: auto !important;
    min-width: max-content !important;
    line-height: 1.2 !important;
}