.js-store-prod-text a {
    display: inline-block !important;
    padding: 10px 15px !important;
    margin: 0 8px 12px 0 !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    text-align: center !important;
    border: 2px solid transparent !important;
    cursor: pointer !important;
    box-sizing: border-box !important;
    transition: all 0.2s ease !important;
}

/* Первая кнопка - синяя как Ozon */
.js-store-prod-text a:first-of-type {
    background-color: #005BFF !important;
    color: #ffffff !important;
    border-color: #005BFF !important;
}

/* Вторая кнопка - градиент */
.js-store-prod-text a:nth-of-type(2) {
    background: linear-gradient(90deg, #EC3CCB 0%, #7C19F8 100%) !important;
    color: #ffffff !important;
    border-color: transparent !important;
}

/* Третья кнопка - коричневая #302823 */
.js-store-prod-text a:nth-of-type(3) {
    background-color: #302823 !important;
    color: #ffffff !important;
    border-color: #302823 !important;
}

/* Ховер эффект для всех кнопок */
.js-store-prod-text a:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1) !important;
}

@media (max-width: 768px) {
    .js-store-prod-text a {
        display: block !important;
        width: 100% !important;
        margin: 0 0 12px 0 !important;
        min-height: 45px !important; /* Минимальная высота 45px */
        padding: 12px 15px !important; /* Увеличил отступы для высоты */
        line-height: 21px !important; /* Центрируем текст по вертикали */
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .js-store-prod-text a:last-of-type {
        margin-bottom: 0 !important;
    }
}