@media screen and (max-width: 767px) {
    /* Harmonize container width */
    .woocommerce .related.products,
    .woocommerce .up-sells.products {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
    }
    
    /* Ensure the product grid expands */
    .woocommerce .related.products ul.products,
    .woocommerce .up-sells.products ul.products {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important;
        gap: 15px !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .woocommerce .related.products ul.products li.product,
    .woocommerce .up-sells.products ul.products li.product {
        width: 100% !important;
        margin: 0 !important;
    }
}