.t-store__card__mark {
    background-color: #111;
    border-radius: 0px;
    font-family: 'Jost', Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    height: 23px;
    width: auto;
    background-color: #9d455a!important;
}
.t1002__addBtn  {
    width: 45px; /*ширина фона*/
    height: 45px; /*высота фона*/
    background-color: rgb(255,255,255,0.0)!important; /*если надо убрать цвет у фона. Если это не требуется - строчку надо удалить*/
     padding:5px!important; /*расстояние между иконкой и бордюром, если ставите обводку иконки стандартным образом и иконка прижата к бордюру. Если не требуется, строчку удалить*/
}
 @media screen and (max-width: 680px) {
     .t-store__card__mark {
    font-family: 'Jost', Arial, sans-serif;
    font-size: 10px;
    font-weight: 400;
    height: 18px;
    width: auto;
}
}

/* стили для перелистывания главной картинки в мобильной версии */
@media (hover: none) and (pointer: coarse) {
  .js-product .t-store__card__imgwrapper {
    position: relative;
    overflow: hidden;
    touch-action: pan-y;
  }

  .js-product .t-store__card__imgwrapper .js-product-img,
  .js-product .t-store__card__imgwrapper .t-store__card__bgimg_second {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    transition: none !important;
    will-change: transform;
    opacity: 1 !important;
  }

  .js-product .t-store__card__imgwrapper .js-product-img {
    transform: translate3d(0, 0, 0);
    z-index: 1;
  }

  .js-product .t-store__card__imgwrapper .t-store__card__bgimg_second {
    transform: translate3d(100%, 0, 0);
    z-index: 2;
    display: block !important;
    visibility: visible !important;
  }

  .js-product .t-store__card__imgwrapper.is-swipe-animated .js-product-img,
  .js-product .t-store__card__imgwrapper.is-swipe-animated .t-store__card__bgimg_second {
    transition: transform 280ms cubic-bezier(.22, .61, .36, 1) !important;
  }

  .js-product .t-store__card__imgwrapper.is-second-active .js-product-img {
    transform: translate3d(-100%, 0, 0);
  }

  .js-product .t-store__card__imgwrapper.is-second-active .t-store__card__bgimg_second {
    transform: translate3d(0, 0, 0);
  }
}