/* --- Вариант "Скоро в продаже" для каталога (ST315N) --- */
.t-store__card__sold-out-msg {
    font-size: 0 !important;   /* скрываем оригинальный текст */
}

.t-store__card__sold-out-msg::after {
    content: "⭐ Скоро в продаже";
    font-size: 16px !important;
    color: #2f5f54; /* под твой фирменный зелёный — можешь убрать */
}

/* --- Вариант для попапа товара (disabled button) --- */
.t-store__prod-popup__btn_disabled .t-store__card__btn-text {
    font-size: 0 !important;
}

.t-store__prod-popup__btn_disabled .t-store__card__btn-text::after {
    content: "Скоро в продаже";
    font-size: 16px !important;
}

#rec1435884761 {
  position: relative;
  z-index: 9999;
}

/* Карточка товара */
.t-store__card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 20px 12px;

    /* создаём "отступ" без влияния на сетку */
    border: 10px solid transparent;
    background-clip: padding-box;

    /* рамка внутри */
    box-shadow: 
        inset 0 0 0 1px #e6e6e6,
        0 4px 12px rgba(0, 0, 0, 0.04);

    transition: all 0.3s ease;
}

/* Ховер */
.t-store__card:hover {
    box-shadow: 
        inset 0 0 0 1px #e6e6e6,
        0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

/* Отступ сверху у изображения */
.t-store__card__imgwrapper {
    margin-top: 15px;
}

/* Отступ снизу у кнопки */
.t-store__card .t-btn {
    margin-bottom: 16px;
}