/* Убираем серу подложку у картинок на странице товара */
.t-slds__container {
    background-color: #ffffff !important;
}

/* Перемещаем кнопку "Оформить заказ" под описание */
.t-store__prod-popup__info {
    display: flex;
    flex-direction: column;
}
.t-store__prod-popup__btn-wrapper {
    order: 10;
}

/* Добавляем пион */
@media (min-width: 640px) {
    .js-store-product > .t-container > .t-container_fluid {
        --flower-size: 250px;
        --flower-right: 0px;
        --flower-bottom: -80px;
        position: relative;
        isolation: isolate;
        overflow-x: clip;
    }
    
    .t-store__prod-popup__info::after {
        content: "";
        position: absolute;
        z-index: -1;
        right: var(--flower-right);
        bottom: var(--flower-bottom);
        
        background-image: url("https://static.tildacdn.com/tild3862-3536-4961-a636-646433343365/Frame_3.svg");
        background-repeat: no-repeat;
        background-size: contain;
        
        width: var(--flower-size);
        height: var(--flower-size);
    }
}
@media (min-width: 1200px) {
    .js-store-product > .t-container > .t-container_fluid {
        --flower-size: 350px;
        --flower-right: 0px;
        --flower-bottom: -80px;
    }
}
@media (min-width: 1600px) {
    .js-store-product > .t-container > .t-container_fluid {
        --flower-size: 400px;
    }
}

/* Скрываем характеристики в карточке товара */
.js-store-prod-all-charcs {
    display: none;
}