<!-- Стиль для кнопки в карточке товара -->

    .js-store-prod-text a {
        display: inline-block;
        padding: 10px 15px;
        margin-right: 15px;
        margin-top: 20px;
        border: 1px solid #000000 !important; /* Черный бордюр 1px */
        border-radius: 0 !important; /* Без скругления углов */
        font-weight: 600;
        background-color: transparent !important; /* Прозрачный фон */
        color: #000000 !important; /* Черный текст */
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .js-store-prod-text a:hover {
        background-color: #f5f5f5 !important; /* Легкий фон при наведении */
    }
    
    /* Убираем иконки из предыдущего стиля */
    .js-store-prod-text a:before {
        content: none !important;
    }
    
    /* Убираем специфичные стили для первой и последней кнопки */
    .js-store-prod-text a:first-of-type,
    .js-store-prod-text a:last-of-type {
        background-color: transparent !important;
        color: #000000 !important;
        border: 1px solid #000000 !important;
    }
</style>