/* Общие стили всех кнопок (только иконка) */
.t-store__prod-popup__text a {
    padding: 0 !important; /* Убираем все отступы */
    border-radius: 0px;
    margin-right: 10px;
    margin-bottom: 0;
    display: inline-block; /* Меняем на block для правильного позиционирования */
    width: 46px; /* Фиксированная ширина */
    height: 46px; /* Фиксированная высота */
    background-color: transparent !important; /* Прозрачный фон */
    position: relative;
    overflow: hidden; /* Скрываем текст */
    text-indent: -9999px; /* Сдвигаем текст за пределы видимости */
}

/* Стили иконок (заменяем псевдоэлемент на саму ссылку) */
.t-store__prod-popup__text a {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.2s ease !important;
}

.t-store__prod-popup__text a:hover {
    transform: scale(1.15); /* Эффект при наведении */
}

/* Убираем псевдоэлемент :before (больше не нужен) */
.t-store__prod-popup__text a:before {
    display: none !important;
}

/* Wildberries */
.t-store__prod-popup__text a[href*="wildberries"] {
    background-image: url(https://static.tildacdn.com/tild3338-3936-4365-b761-656232316430/wildberries.svg);
}

/* OZON */
.t-store__prod-popup__text a[href*="ozon"] {
    background-image: url(https://static.tildacdn.com/tild3539-6166-4636-a439-343638646263/ozon___.svg);
}

/* Скрываем текст полностью */
.t-store__prod-popup__text a span {
    display: none !important;
}
