/* =====================================================
   BUTTONS WRAPPER
===================================================== */

.t-store__card__btns-wrapper {

    display: flex !important;

    align-items: center;

    justify-content: space-between;

    gap: 14px;

    margin-top: 14px;
}

/* =====================================================
   BUTTON "ПОДРОБНЕЕ"
===================================================== */

.js-store-prod-btn {

    background: transparent !important;

    border: none !important;

    box-shadow: none !important;

    padding: 0 !important;

    position: relative;
}

/* линия */

.js-store-prod-btn::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -3px;

    width: 100%;
    height: 2px;

    background: #ffffff;
}

/* текст */

.js-store-prod-btn .t-btnflex__text {

    color: #ffffff !important;

    font-size: 18px !important;

    font-weight: 400 !important;
}

/* =====================================================
   PRICE BUTTON
===================================================== */

.js-store-prod-btn2 {

    pointer-events: none !important;

    display: flex !important;

    align-items: center;

    justify-content: center;

    min-width: 110px;

    padding: 10px 18px !important;

    background: transparent !important;

    border: 2px solid #ffffff !important;

    border-radius: 0 !important;

    box-shadow: none !important;

    transform: skewX(-18deg);
}

/* текст */

.js-store-prod-btn2 .t-btnflex__text {

    display: block;

    transform: skewX(18deg);

    color: #ff00a8 !important;

    font-size: 20px !important;

    font-weight: 700 !important;

    line-height: 1 !important;
}

/* hover OFF */

.js-store-prod-btn2:hover {

    opacity: 1 !important;

    background: transparent !important;
}

/* =====================================================
   HIDE ORIGINAL PRICE
===================================================== */

.t-store__card__price-wrapper {

    display: none !important;
}

/* =====================================================
   MOBILE
===================================================== */

@media screen and (max-width: 640px) {

    .t-store__card__btns-wrapper {

        gap: 10px;
    }

    .js-store-prod-btn .t-btnflex__text {

        font-size: 15px !important;
    }

    .js-store-prod-btn2 {

        min-width: 85px;

        padding: 8px 14px !important;
    }

    .js-store-prod-btn2 .t-btnflex__text {

        font-size: 16px !important;
    }
}