.product-top-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    margin-bottom: 30px;
}

/* Default: summary left, image right */
.product-summary-col { order: 1; }
.product-image-col   { order: 2; }

/* Swap: image left, summary right */
body.swap-layout .product-summary-col { order: 2; }
body.swap-layout .product-image-col   { order: 1; }

/* Responsive */
@media (max-width: 768px) {
    .product-top-row { flex-direction: column; }
    .product-summary-col,
    .product-image-col {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 0;
        order: unset;
    }
}


/* Make Download Brochure button smaller */
.woocommerce ul.products li.product .download-brochure a.ast-button {
    display: inline-block;       /* keep it neat, not full width */
    padding: 6px 12px;           /* smaller padding */
    font-size: 13px;             /* reduce font size */
    line-height: 1.4;            /* tighter line height */
    border-radius: 3px;          /* slightly rounded corners */
    text-transform: none;        /* optional: remove uppercase */
}

/* Adjust hover state */
.woocommerce ul.products li.product .download-brochure a.ast-button:hover {
    opacity: 0.9;                /* subtle hover effect */
}