.js-store-prod-sold-out {
    display: none;
}

/* Основной стиль отметки */
.t-store__card__mark {
  background-image: url('ВАША ССЫЛКА НА ФОНОВОЕ ИЗОБРАЖЕНИЕ');
  background-repeat: no-repeat;
  background-position: center;
  border-radius: ЧИСЛО ПИКСЕЛЕЙ ДЛЯ СКРУГЛЕНИЯpx;
  border: ШИРИНА ОБВОДКИpx solid ЦВЕТ ОБВОДКИ;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Позиционирование отметки */
.t-store__card__mark-wrapper {
  right: ВАШЕ_ЧИСЛО_PX;
  top: ВАШЕ_ЧИСЛО_PX;
}

/* Только для мобильных устройств (до 640px) */
@media screen and (max-width: 640px) {
  .t-store__card__mark {
    width: 30px !important;
    height: 30px !important;
    background-size: 30px 30px !important;
    font-size: 9px !important;      /* 👈 размер текста */
    line-height: 1.2 !important;
  }

  .t-store__card__mark-wrapper {
    top: 5px !important;             /* 👈 отступ сверху */
    right: 5px !important;           /* 👈 отступ справа */
    left: auto !important;
    bottom: auto !important;
  }
}



/* 👇 Только для мобильных устройств */
@media screen and (max-width: 640px) {
  .js-product .t-slds__main:after,
  .js-product .t-store__card__imgwrapper:after,
  .js-product .t-store__prod-popup__gallery-column:after {
    top: 5px !important;
    left: 5px !important;
    right: auto !important;
    bottom: auto !important;

    /* 👇 Внутренние отступы и фиксированная высота */
    padding: 0 8px !important;
    height: 30px !important;
    line-height: 30px !important; /* выравнивает текст по центру по вертикали */
    display: inline-block !important;
  }
}


/* 👇 Только для мобильных устройств */
@media screen and (max-width: 640px) {
  /* уменьшаем вертикальные и горизонтальные отступы между карточками */
  #rec1118901766 .t-store__grid-cont {
    row-gap: 10px !important;   /* расстояние между рядами (по вертикали) */
    column-gap: 8px !important; /* расстояние между колонками (по горизонтали) */
  }

  /* если тема использует margin вместо gap — уменьшаем и его */
  #rec1118901766 .t-store__card {
    margin-bottom: 10px !important;
  }
}


















