/* Контейнер */
.js-store-prod-text {
    display: flex !important;
    align-items: center;
}

/* Общие стили */
.js-store-prod-text a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px; /* отступы между кнопками */
    margin-top: 20px;
    text-decoration: none;
    border: 1px solid transparent;
}

/* ================= CTA — КНОПКА №1 ================= */
.js-store-prod-text a:nth-of-type(1) {
    background-color: #F8F5EC;
    color: #022837 !important;
    padding: 10px 40px;
    font-weight: 400;
    font-size: 15px;
    border: none;
}

.js-store-prod-text a:nth-of-type(1)::before {
    content: none;
}

/* ================= TELEGRAM — КНОПКА №2 (ТОЛЬКО ИКОНКА) ================= */
.js-store-prod-text a:nth-of-type(2) {
    background-color: #022837;
    border: 1px solid #F8F5EC;
    width: 44px;
    height: 44px;
    padding: 0;
    font-size: 0; /* скрываем текст */
}

.js-store-prod-text a:nth-of-type(2)::before {
    content: "";
    width: 18px;
    height: 18px;
    background: url("https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/telegram.svg") no-repeat center;
    background-size: contain;
    filter: invert(1);
}

/* ================= WHATSAPP — КНОПКА №3 (ТОЛЬКО ИКОНКА) ================= */
.js-store-prod-text a:nth-of-type(3) {
    background-color: #022837;
    border: 1px solid #F8F5EC;
    width: 44px;
    height: 44px;
    padding: 0;
    font-size: 0;
}

.js-store-prod-text a:nth-of-type(3)::before {
    content: "";
    width: 18px;
    height: 18px;
    background: url("https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/whatsapp.svg") no-repeat center;
    background-size: contain;
    filter: invert(1);
}

/* Скрываем стандартную кнопку Tilda */
.t-store__prod-popup__btn-wrapper {
    display: none;
}