/*
Title Snippet: Dr Clear - Checkout Product Table Layout RTL
Description: Proper RTL alignment and responsive layout for checkout product table
*/

/* יישור כותרות לכל המסכים */
.woocommerce-checkout-review-order-table th.product-name{
    text-align:right !important;
}

.woocommerce-checkout-review-order-table th.product-quantity{
    text-align:center !important;
}

.woocommerce-checkout-review-order-table th.product-total{
    text-align:left !important;
}

/* תאי מוצר */
.woocommerce-checkout-review-order-table td.product-name{
    text-align:right !important;
    font-size:16px !important;
    line-height:1.4 !important;
}

/* כמות */
.woocommerce-checkout-review-order-table td.product-quantity{
    text-align:center !important;
    width:60px !important;
    min-width:60px !important;
    font-size:16px !important;
}

/* מחיר */
.woocommerce-checkout-review-order-table td.product-total{
    text-align:left !important;
    width:130px !important;
    min-width:130px !important;
    font-size:17px !important;
    font-weight:600;
}

/* תמונת מוצר */
.woocommerce-checkout-review-order-table td.product-name img{
    width:56px !important;
    height:56px !important;
    border-radius:12px;
}

/* ריווח בין שורות */
.woocommerce-checkout-review-order-table tr.cart_item td{
    padding-top:14px !important;
    padding-bottom:14px !important;
    vertical-align:middle;
}

/* טאבלט */
@media (max-width:1024px){

    .woocommerce-checkout-review-order-table td.product-name{
        font-size:15px !important;
    }

}

/* מובייל */
@media (max-width:767px){

    .woocommerce-checkout-review-order-table td.product-name{
        font-size:17px !important;
        line-height:1.35 !important;
    }

    .woocommerce-checkout-review-order-table td.product-quantity{
        width:65px !important;
        min-width:65px !important;
        font-size:17px !important;
    }

    .woocommerce-checkout-review-order-table td.product-total{
        width:140px !important;
        min-width:140px !important;
        font-size:18px !important;
    }

}