/* Кнопки в карточке товара для табов */
.t-store__tabs__content a {
    display: inline-block;
    padding: 12px 20px;
    margin-right: 12px;
    margin-top: 20px;
    border-radius: 30px; /* круглые края */
    font-weight: 600;
    text-decoration: none;
    transition: all .25s ease;
}

/* Первая кнопка с анимацией */
.t-store__tabs__content a:nth-of-type(1) {
    background: linear-gradient(270deg, #ff7a00, #ff9800, #ff7a00);
    background-size: 300% 300%;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(255,122,0,.35);
    animation: orangeGlow 3s ease infinite;
}

/* Вторая кнопка */
.t-store__tabs__content a:nth-of-type(2) {
    background: #2f6db3;
    color: #fff !important;
}

/* Третья кнопка */
.t-store__tabs__content a:nth-of-type(3) {
    background: #2f7d57;
    color: #fff !important;
}

/* Эффект при наведении */
.t-store__tabs__content a:hover {
    opacity: .9;
    transform: translateY(-2px);
}

.t706__cartwin_showed {
    z-index: 999999999;
}