/* توحيد صور المنتجات لتكون بنسبة 1:1 مربعة تماماً */
.products .product img,
.woocommerce ul.products li.product img,
.product-grid-item img {
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    width: 100% !important;
    height: auto !important;
}

/* تعديل تخطيط صفحة الدفع والسلة لتظهر بشكل عمودي منسق ومدمج */
@media screen and (min-width: 992px) {
    .woocommerce-checkout {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 30px !important;
    }
    #customer_details {
        flex: 1 1 50% !important;
        max-width: 55% !important;
    }
    #order_review_heading,
    #order_review {
        flex: 1 1 40% !important;
        max-width: 40% !important;
    }
}

/* تنسيق وتوحيد الخلفية البيضاء الشاملة للموقع */
body, html, .site, #page, .site-content, .site-footer, #colophon, .footer-wrapper {
    background-color: #FFFFFF !important;
    background: #FFFFFF !important;
}

body, p, span, a, h1, h2, h3, h4, h5, h6, .price, .woocommerce-Price-amount {
    color: #000000 !important;
}
