.t-slds__arrow_container.t-slds__arrow_container-center {
    opacity: 0 !important;
}

.t1002__addBtn {
    width: 52px !important;
    height: 52px !important;
    border-radius: 12px !important;
}

.t-catalog__prod__quantity-input.t-descr.t-descr_xxs {
    font-family: 'Noto Sans', Arial, sans-serif !important;
    font-weight: 400 !important;
}

.t-catalog__prod__quantity {
        border: 1px solid #e4e4e4 !important;
        border-radius: 12px !important;
}

.t-catalog__prod-popup__price-currency,
.t-catalog__card__price-currency {
    font-family: 'Noto Sans', Arial, sans-serif !important;
    font-weight: 700 !important;
}

.t-product__option-title_buttons {
    font-family: 'Noto Sans', Arial, sans-serif !important;
    font-weight: 400 !important;
}

.js-product .t-product__option-variants_buttons .t-product__option-item_simple {
    border-radius: 12px !important;
    padding: 12px !important;
}

.t-catalog__relevants__title {
    font-size: var(--uc-typo-fontsize-RBdGmL, 28px) !important;
    font-weight: var(--uc-typo-fontweight-RBdGmL, 500) !important;
    font-family: var(--uc-typo-fontfamily-RBdGmL, Unbounded) !important;
}

@media screen and (max-width: 960px) {
    .t-catalog__relevants__title {
        margin: 40px 0 20px !important;
    }
}


.js-catalog-prod-name.js-product-name.t-catalog__prod-popup__name {
    font-weight: 600 !important;
    @media screen and (min-width: 640px) {
        font-size: 24px  !important;
    }
}

.t-catalog__prod-popup__sku {
    display: none !important;
}

.t-catalog__prod-popup__brand {
    font-size: 15px !important;
}

.t-catalog__card__imgwrapper {
    padding-bottom: 133% !important;
}


.t-catalog__prod-snippet__container {
    padding-bottom: 60px !important;
    padding-top: 40px !important;
}

@media screen and (max-width: 560px) {
    .t-catalog__prod-snippet__container {
        padding-bottom: 40px !important;
        padding-top: 20px !important;
    }
}


/* 1. Прижимаем кнопку-подложку вплотную к правому верхнему углу */
.t-catalog__card .t1002__addBtn {
    top: 0 !important;
    right: 0 !important;
    margin: 0 !important; 
    /* Делаем подложку прозрачной */
    background-color: transparent !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* 2. Добавляем плавность для анимации увеличения самому тегу SVG */
.t-catalog__card .t1002__addBtn svg {
    transition: transform 0.2s ease-in-out !important;
}

/* 3. Исходное состояние: полупрозрачная заливка и серая обводка */
.t-catalog__card .t1002__addBtn svg path {
    stroke: #FFFFFF !important; /* Светло-серая обводка */
    /* Заливка rgba(красный, зеленый, синий, прозрачность). 0.4 — это 40% видимости */
    fill: rgba(192, 192, 192, 0.4) !important; 
    transition: all 0.2s ease !important; /* Плавная смена цвета */
}

/* 4. При наведении: увеличиваем само сердечко (svg) */
.t-catalog__card .t1002__addBtn:hover svg {
    transform: scale(1.2) !important; /* Увеличиваем на 25%. Можно менять цифру, например 1.1 или 1.3 */
}

/* 5. Когда товар ДОБАВЛЕН в избранное (Активное состояние) */
.t-catalog__card .t1002__addBtn.t1002__addBtn_active svg path {
    fill: #ea4224 !important;   /* Красная заливка */
    stroke: #ea4224 !important; /* Красная обводка */
}




