.t951__cont-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.t951__sidebar {
    order: 2; /* Перемещаем фильтры на вторую позицию (справа) */
    margin-left: 20px;
    margin-right: 0 !important;
}

.t951__grid-cont {
    order: 1; /* Перемещаем товары на первую позицию (слева) */
    flex: 1;
    margin-right: 0;
}

/* Сохраняем липкость фильтров */
.t951__sidebar_sticky {
    position: sticky;
    top: 20px;
    align-self: flex-start;
}

/* На мобильных устройствах возвращаем обычный порядок */
@media (max-width: 992px) {
    .t951__cont-wrapper {
        flex-direction: column;
    }
    
    .t951__sidebar,
    .t951__grid-cont {
        order: initial;
        margin-left: 0;
        width: 100%;
    }
}