
body.single-product div.product {
    display: block !important;
}

/* Force image to top */
body.single-product div.product .woocommerce-product-gallery {
    width: 100% !important;
    float: none !important;
    clear: both !important;
    margin-right: 0 !important;
    margin-bottom: 2em !important;
}

/* Two column layout container */
.product-two-column-layout {
    display: flex !important;
    flex-direction: row !important;
    gap: 30px !important;
    width: 100% !important;
    clear: both !important;
}

/* Left column - product description */
.product-description-left {
    flex: 1 !important;
    min-width: 45% !important;
}

/* Right column - product summary */
.product-options-right {
    flex: 1 !important;
    min-width: 45% !important;
}

/* Reset summary width to fit in column */
.product-options-right .summary.entry-summary {
    width: 100% !important;
    float: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Mobile layout - stack columns on small screens */
@media screen and (max-width: 768px) {
    .product-two-column-layout {
        flex-direction: column !important;
    }
}