.t-store__card {
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  z-index: 0; /* чтобы рамка могла быть поверх */
}

/* Наружная рамка справа и снизу */
.t-store__card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: -1px; /* выдвигаем за пределы блока */
  bottom: -1px; /* выдвигаем за пределы блока */
  border-right: 1px solid #3B3446;
  border-bottom: 1px solid #3B3446;
  pointer-events: none;
  z-index: 555;
}

.t-submit {
  letter-spacing: 1.6px;
}

.t-store__card__textwrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Адаптивный padding */
@media (min-width: 360px) and (max-width: 1200px) {
  .t-store__card {
    padding: 10px;
  }
}

@media screen and (max-width: 640px) {
    .t-store .t-store__pagination {
        margin-top: 25px;
    }
}

@media screen and (max-width: 960px) {
    .t-store__grid-cont .t-col, .t-store__grid-cont .t-store__stretch-col {
        margin-bottom: 0px;
    }
}

@media screen and (max-width: 1200px) {
    .t786__imgwrapper {
        margin-bottom: 10px;
    }
    .t786__price-wrapper {
    margin-top: 0px;
    }
}