/* Измените первый селектор */
.js-store-prod-text a,
.t744__descr a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 12px;
    margin-right: 8px;
    margin-top: 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    min-height: 18px;
}

/* Эффект hover с трансформацией */
.js-store-prod-text a::before,
.t744__descr a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.js-store-prod-text a:hover::before,
.t744__descr a:hover::before {
    left: 100%;
}

.js-store-prod-text a:hover,
.t744__descr a:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.js-store-prod-text a:active,
.t744__descr a:active {
    transform: translateY(0);
}

/* Первая кнопка - цвет WhatsApp */
.js-store-prod-text a:first-of-type,
.t744__descr a:first-of-type {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.js-store-prod-text a:first-of-type:hover,
.t744__descr a:first-of-type:hover {
    background: linear-gradient(135deg, #20bd5a, #0e7a63);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Вторая кнопка - современный синий */
.js-store-prod-text a:last-of-type,
.t744__descr a:last-of-type {
    background: linear-gradient(135deg, #667eea, #566d90);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.js-store-prod-text a:last-of-type:hover,
.t744__descr a:last-of-type:hover {
    background: linear-gradient(135deg, #5a67d8, #4c5b7a);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Добавляем иконки (опционально) */
.js-store-prod-text a:first-of-type::after,
.t744__descr a:first-of-type::after {
    content: '📱';
    margin-left: 4px;
    transition: transform 0.3s ease;
    font-size: 10px;
}

.js-store-prod-text a:first-of-type:hover::after,
.t744__descr a:first-of-type:hover::after {
    transform: translateX(2px);
}

.js-store-prod-text a:last-of-type::after,
.t744__descr a:last-of-type::after {
    content: '🛒';
    margin-left: 4px;
    font-size: 10px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .js-store-prod-text a,
    .t744__descr a {
        padding: 10.5px 10px;
        margin-right: 6px;
        font-size: 11px;
        width: 100%;
        max-width: 150px;
        min-height: 16.5px;
    }
}

/* Анимация появления */
.js-store-prod-text a,
.t744__descr a {
    animation: fadeInUp 0.6s ease-out;
}