/* Move WooCommerce sidebar to the top on mobile and tablet */
@media screen and (max-width: 1024px) {

    .woocommerce-page #content {
        display: flex;
        flex-direction: column;
    }

    .woocommerce-page #primary {
        order: -1; /* Move the sidebar above the content */
        width: 100%;
        margin-bottom: 20px;
    }

    .woocommerce-page .site-main {
        display: flex;
        flex-direction: column;
    }
}
