
/* контейнер с кнопками */
.js-store-prod-text {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* базовый стиль всех 4 кнопок */
.js-store-prod-text a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    margin-top: 18px;
    text-decoration: none !important;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    box-sizing: border-box;
    overflow: hidden;
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

/* внутренняя рамка */
.js-store-prod-text a::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 8px;
    pointer-events: none;
}

/* hover */
.js-store-prod-text a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    opacity: 0.95;
}

/* 1 кнопка */
.js-store-prod-text a:nth-of-type(1) {
    background-color: #005bff;
    border-color: #005bff;
    color: #ffffff !important;
}

/* 2 кнопка */
.js-store-prod-text a:nth-of-type(2) {
    background-color: #dcff00;
    border-color: #dcff00;
    color: #000000 !important;
}

/* 3 кнопка */
.js-store-prod-text a:nth-of-type(3) {
    background-color: #ffe14c;
    border-color: #ffe14c;
    color: #000000 !important;
}

/* 4 кнопка */
.js-store-prod-text a:nth-of-type(4) {
    background-color: #59ad3b;
    border-color: #59ad3b;
    color: #ffffff !important;
}

/* popup корзины поверх всего */
.t706__cartwin_showed {
    z-index: 999999999;
}
</style>