.t-store__card__textwrapper {
    border: 1px solid #D9D9D9; /* Обводка */
    padding: 10px; /* Отступы внутри элемента */
    border-radius: 0px; /* Закруглённые углы */
}


/* на всякий случай скрываем через CSS сразу */
.t-store__prod-popup__sku.t-descr.t-descr_xxs {
  display: none !important;
}



document.addEventListener('click', function(ev) {
  // отслеживаем клик по кнопке открытия попапа карточки
  if (ev.target.closest('.t-store__prod-popup-opener, .js-store-popup-btn')) {
    setTimeout(function(){
      document.querySelectorAll('.t-store__prod-popup__sku.t-descr.t-descr_xxs').forEach(function(el){
        el.style.display = 'none';
      });
    }, 100); // небольшой таймаут, чтобы дождаться показа попапа
  }
});

