.t-store__card__btn_second.t-btnflex_type_button2 {
  min-width: 125px !important; /* Увеличь, если нужно */
  white-space: normal !important; /* Разрешаем перенос текста */
  text-overflow: clip !important; /* Убираем обрезание с многоточием */
}



/* CSS CONFETTI - ДЕНЬ РОЖДЕНИЯ КОМПАНИИ */
/* Добавьте этот код в "Пользовательские CSS-стили" */

/* Контейнер для конфетти (автоматически создается) */
.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    overflow: hidden;
}

/* Сами частицы конфетти */
.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    opacity: 0;
    animation: fall linear infinite;
}

/* Разные формы конфетти */
.confetti:nth-child(5n) {
    background: #FFD700; /* золотой */
    border-radius: 50%;
}
.confetti:nth-child(5n+1) {
    background: #FF6B6B; /* красный */
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.confetti:nth-child(5n+2) {
    background: #4ECDC4; /* бирюзовый */
    width: 12px;
    height: 4px;
}
.confetti:nth-child(5n+3) {
    background: #FFA726; /* оранжевый */
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.confetti:nth-child(5n+4) {
    background: #AB47BC; /* фиолетовый */
    clip-path: polygon(50% 0%, 0% 50%, 50% 100%, 100% 50%);
}

/* Анимация падения */
@keyframes fall {
    0% {
        opacity: 0;
        transform: translateY(-100px) rotate(0deg);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(100vh) rotate(360deg);
    }
}

/* Создание 50 частиц конфетти с разными параметрами */
.confetti:nth-child(1) { left: 10%; animation-duration: 4s; animation-delay: 0s; }
.confetti:nth-child(2) { left: 20%; animation-duration: 5s; animation-delay: 0.5s; }
.confetti:nth-child(3) { left: 30%; animation-duration: 3.5s; animation-delay: 1s; }
.confetti:nth-child(4) { left: 40%; animation-duration: 4.5s; animation-delay: 1.5s; }
.confetti:nth-child(5) { left: 50%; animation-duration: 5.5s; animation-delay: 2s; }
.confetti:nth-child(6) { left: 60%; animation-duration: 4s; animation-delay: 2.5s; }
.confetti:nth-child(7) { left: 70%; animation-duration: 6s; animation-delay: 3s; }
.confetti:nth-child(8) { left: 80%; animation-duration: 3.5s; animation-delay: 3.5s; }
.confetti:nth-child(9) { left: 90%; animation-duration: 5s; animation-delay: 4s; }
.confetti:nth-child(10) { left: 15%; animation-duration: 4.5s; animation-delay: 0.3s; }
.confetti:nth-child(11) { left: 25%; animation-duration: 5.5s; animation-delay: 0.8s; }
.confetti:nth-child(12) { left: 35%; animation-duration: 4s; animation-delay: 1.3s; }
.confetti:nth-child(13) { left: 45%; animation-duration: 6s; animation-delay: 1.8s; }
.confetti:nth-child(14) { left: 55%; animation-duration: 3.5s; animation-delay: 2.3s; }
.confetti:nth-child(15) { left: 65%; animation-duration: 5s; animation-delay: 2.8s; }
.confetti:nth-child(16) { left: 75%; animation-duration: 4.5s; animation-delay: 3.3s; }
.confetti:nth-child(17) { left: 85%; animation-duration: 5.5s; animation-delay: 3.8s; }
.confetti:nth-child(18) { left: 95%; animation-duration: 4s; animation-delay: 4.3s; }
.confetti:nth-child(19) { left: 5%; animation-duration: 6s; animation-delay: 0.2s; }
.confetti:nth-child(20) { left: 18%; animation-duration: 4.5s; animation-delay: 0.7s; }

/* И так далее до 50 частиц. Можно скопировать и изменить числа */