		

/* ===============================
   КНОПКИ В КАРТОЧКЕ ТОВАРА / ПРОЕКТА
================================ */

.js-store-prod-text a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 16px;
    margin-right: 15px;
    margin-top: 10px;

    background-color: #1E8E9F;
    color: #EDEDE3 !important;

    border-radius: 5px; 
    font-size: 12px;
    font-weight: 600;
    line-height: 1;

    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

/* hover */
.js-store-prod-text a:hover {
    background-color: #187D8B; /* чуть темнее */
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* active */
.js-store-prod-text a:active {
    transform: translateY(0);
    box-shadow: none;
}

/* если вдруг последняя кнопка должна быть такой же */
.js-store-prod-text a:last-of-type {
    background-color: #1E8E9F;
    color: #EDEDE3 !important;
}

/* ===============================
   ОКНО КОРЗИНЫ
================================ */

.t706__cartwin_showed {
    z-index: 9999999;
}
