/* Элементы иконок */
.t-sociallinks__item {
    transition: transform 0.3s ease !important;
    position: relative !important;
    border-radius: 50% !important;
}

/* Эффект поднятия при наведении */
.t-sociallinks__item:hover {
    transform: translateY(-4px) !important;
}
/* первая кнопка */
.js-store-prod-btn.t-store__card__btn,
.t-btnflex.t-btnflex_type_button {
    background: linear-gradient(135deg, #F5F7FA 0%, #E4E7EB 100%);
    color: rgb(12, 1, 118) !important;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 160px;
    box-shadow: 
        0 4px 12px rgba(12, 1, 118, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.js-store-prod-btn.t-store__card__btn:hover,
.t-btnflex.t-btnflex_type_button:hover {
    background: linear-gradient(135deg, #E4E7EB 0%, #D1D5DA 100%);
    color: rgb(12, 1, 118) !important;
    transform: translateY(-2px);
    box-shadow: 
        0 8px 20px rgba(12, 1, 118, 0.25),
        0 4px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* (вторичная) */
.js-store-prod-btn2.t-store__card__btn,
.t-btnflex.t-btnflex_type_button2 {
    background: linear-gradient(135deg, #D4D7DC 0%, #B0B5BD 100%);
    color: rgb(12, 1, 118) !important;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 160px;
    box-shadow: 
        0 4px 12px rgba(12, 1, 118, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.js-store-prod-btn2.t-store__card__btn:hover,
.t-btnflex.t-btnflex_type_button2:hover {
    background: linear-gradient(135deg, #B0B5BD 0%, #959BA5 100%);
    color: rgb(12, 1, 118) !important;
    transform: translateY(-2px);
    box-shadow: 
        0 8px 20px rgba(12, 1, 118, 0.25),
        0 4px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Общие эффекты - глубже и сочнее */
.js-store-prod-btn.t-store__card__btn::after,
.t-btnflex.t-btnflex_type_button::after,
.js-store-prod-btn2.t-store__card__btn::after,
.t-btnflex.t-btnflex_type_button2::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.5), /* Ярче блеск */
        transparent);
    transition: left 0.7s;
}

.js-store-prod-btn.t-store__card__btn:hover::after,
.t-btnflex.t-btnflex_type_button:hover::after,
.js-store-prod-btn2.t-store__card__btn:hover::after,
.t-btnflex.t-btnflex_type_button2:hover::after {
    left: 100%;
}

/* Активные состояния - глубина при нажатии */
.js-store-prod-btn.t-store__card__btn:active,
.t-btnflex.t-btnflex_type_button:active,
.js-store-prod-btn2.t-store__card__btn:active,
.t-btnflex.t-btnflex_type_button2:active {
    transform: translateY(0);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.3),
        inset 0 3px 6px rgba(0, 0, 0, 0.2),
        inset 0 -1px 2px rgba(255, 255, 255, 0.4);
}

