    .js-store-prod-text a {
        display: inline-block;
        padding: 12px 20px;
        margin-right: 15px;
        margin-top: 20px;
        border-radius: 4px;
        font-weight: 600;
        text-decoration: none !important;
        min-width: 180px; /* Одинаковая минимальная ширина */
        text-align: center;
        box-sizing: border-box;
        transition: all 0.3s ease; /* Плавные эффекты */
    }
    
    .js-store-prod-text a:first-of-type {
        background-color: #005BFF;
        color: #ffffff !important;
    }
    
    .js-store-prod-text a:last-of-type {
        background-color: #E313BF;
        color: #ffffff !important;
    }
    
    /* Эффекты при наведении */
    .js-store-prod-text a:hover {
        opacity: 0.9;
        transform: translateY(-2px);
    }
    
    /* Адаптивность для мобильных */
    @media (max-width: 500px) {
        .js-store-prod-text a {
            display: block;
            margin-right: 0;
            margin-bottom: 10px;
            width: 100%; /* На всю ширину */
        }
    }
