.woocommerce-shop .woocommerce-result-count {
    float: none;
    width: min(calc(100% - 40px), var(--cch-width));
    margin: 0 auto 8px;
}

.woocommerce-shop .woocommerce-ordering {
    display: flex;
    float: none;
    justify-content: flex-end;
    width: min(calc(100% - 40px), var(--cch-width));
    margin: 0 auto 38px;
}

.woocommerce-shop .woocommerce-ordering select {
    width: min(250px, 100%);
    min-height: 46px;
    border: 1px solid var(--cch-line);
    border-radius: 0;
    background-color: var(--cch-paper);
}

.woocommerce.woocommerce-shop ul.products.products:not(.elementor-grid) {
    width: min(calc(100% - 40px), var(--cch-width));
    margin-inline: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 767px) {
    .woocommerce-shop .woocommerce-result-count,
    .woocommerce-shop .woocommerce-ordering,
    .woocommerce.woocommerce-shop ul.products.products:not(.elementor-grid) {
        width: min(calc(100% - 32px), var(--cch-width));
    }

    .woocommerce.woocommerce-shop ul.products.products:not(.elementor-grid) {
        grid-template-columns: minmax(0, 1fr);
    }

    .woocommerce-shop .woocommerce-ordering { justify-content: stretch; }
    .woocommerce-shop .woocommerce-ordering select { width: 100%; }
}

