
  /* Для обычных img внутри карточек магазина */
  .t-store__card-img img,
  .t-store__card-image img,
  .t-store__card-image picture img,
  .t-store__card-photo img {
    object-fit: contain !important;
    width: 100% !important;
    height: auto !important;
    max-height: 220px !important;
  }

  /* Для фоновых изображений (если картинка через background) */
  .t-store__card-img {
    background-size: contain !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }

  /* Дополнительно для мобильных */
  @media (max-width: 760px) {
    .t-store__card-img img,
    .t-store__card-image img {
      max-height: 150px !important;
    }
  }
</style>