/*код для добавления дополнительных кнопок в карточку товара*/
.t744__descr a {
    display: inline-block;
    padding: 10px 15px;
    margin-right: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}

/* Первая и вторая кнопки - синий фон */
.t744__descr a:first-of-type,
.t744__descr a:nth-of-type(2) {
    background-color: #010156;
    color: #ffffff !important;
    border: none;
}

/* Третья кнопка - белая с синий контуром */
.t744__descr a:last-of-type {
    background-color: white;
    color: #010156 !important;
    border: 1px solid #010156;
}

/* Мобильная версия */
@media (max-width: 768px) {
    .t744__descr a {
        padding: 8px 12px;
        margin-right: 8px;
        margin-top: 10px;
        margin-bottom: 10px;
        font-size: 14px;
        white-space: nowrap; /* перенос только для текста внутри кнопок */
    }
    
    /* Создаем контейнер для кнопок */
    .t744__descr {
        display: flex;
        flex-wrap: wrap;
    }
    
    /* Альтернативный вариант - обернуть кнопки в span */
    .t744__descr {
        line-height: 1.5;
    }
}



/* Отключение стандартной анимации Tilda */
.t-animate {
    opacity: 1 !important;
    transform: none !important;
}
.t-animate[data-animate-style="fadeinup"],
.t-animate[data-animate-style="fadeindown"],
.t-animate[data-animate-style="fadeinleft"],
.t-animate[data-animate-style="fadeinright"],
.t-animate[data-animate-style="zoomin"] {
    opacity: 1 !important;
    transform: none !important;
}
