/* Круглая кнопка */
.t-store__card__btn {
    width: 42px !important;
    height: 42px !important;
    padding: 0 !important;
    border-radius: 50% !important;

    background-color: #9F9996 !important; /* твой фон */
    border: none !important;

    display: flex !important;
    align-items: center;
    justify-content: center;

    box-shadow: none !important;
}

/* Прячем текст "Купить" */
.t-store__card__btn span {
    display: none !important;
}

/* Вставляем твою SVG-иконку */
.t-store__card__btn::after {
    content: "";
    display: block;

    width: 30px;      /* подстрой при желании */
    height: 30px;     /* подстрой при желании */

    background-image: url("https://static.tildacdn.com/tild3364-6462-4966-a161-613863656530/Group_20397.svg");
    background-size: contain;
    background-repeat: no-repeat;
}



  
