/* Единый стиль для всех ссылок в тексте карточки товара */
.js-store-prod-text a {
    display: inline-block !important;
    background-color: #22265D !important; /* Желтый фон */
    color: #FFFFFF !important;            /* Черный текст */
    padding: 12px 30px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-weight: bold !important;
    font-size: 18px !important;
    text-align: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
    transition: all 0.3s ease !important;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

/* Эффект при наведении курсора */
.js-store-prod-text a:hover {
    background-color: #E6C200 !important; /* Темнее при наведении */
    transform: scale(1.02) !important;
    color: #FFFFFF !important;
}
