/* Базовое оформление всех ссылок-кнопок в товаре */
.js-store-prod-text a {
    display: inline-block;
    padding: 10px 20px;
    margin-right: 12px;
    margin-top: 20px;
    border-radius: 6px;
    font-weight: 400;    /* Жирность 400 */
    font-size: 12px;      /* Размер шрифта 12px */
    text-decoration: none;
    cursor: pointer;
    border: none;
    outline: none;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* СТИЛЬ ДЛЯ ПЕРВОЙ КНОПКИ (Серая) */
.js-store-prod-text a:first-of-type {
    background: #75736f;
    color: #ffffff !important; /* Белый текст */
    box-shadow: 0 4px 12px rgba(117, 115, 111, 0.3);
}

.js-store-prod-text a:first-of-type:hover {
    background: #8e8c89; /* Чуть светлее при наведении */
}

/* СТИЛЬ ДЛЯ ВТОРОЙ И ПОСЛЕДУЮЩИХ КНОПОК (Желтая #fd0) */
.js-store-prod-text a:not(:first-of-type) {
    background: #ffdd00; 
    color: #000000 !important; 
    box-shadow: 0 4px 12px rgba(255, 221, 0, 0.2);
}

.js-store-prod-text a:not(:first-of-type):hover {
    background: #ffe433;
}

/* Исправление наложения корзины */
.t706__cartwin_showed {
    z-index: 999999999;
}