/* ST305N — 2 товара в ряд на мобильных устройствах */
@media screen and (max-width: 640px) {

    /* Контейнер товаров */
    .t776 .t776__parent,
    .t776 .js-store-grid-cont {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        column-gap: 10px !important;
        row-gap: 20px !important;

        width: 100% !important;
        max-width: 100% !important;

        padding-left: 10px !important;
        padding-right: 10px !important;

        margin-left: 0 !important;
        margin-right: 0 !important;

        box-sizing: border-box !important;
    }

    /* Нужно для товаров, загружаемых из каталога Tilda */
    .t776 .t-store__card-list {
        display: contents !important;
    }

    /* Сами карточки */
    .t776 .t776__col,
    .t776 .js-store-grid-cont .js-product:not(.js-product-relevant) {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;

        float: none !important;
        box-sizing: border-box !important;
    }

    /* Штатные разделители Tilda мешают Grid */
    .t776 .t776__separator,
    .t776 .t-store__grid-separator,
    .t776 .t776__parent::before,
    .t776 .t776__parent::after,
    .t776 .js-store-grid-cont::before,
    .t776 .js-store-grid-cont::after {
        display: none !important;
    }
}