/* =========================
   SCROLLBAR
========================= */
::-webkit-scrollbar {
    height: 14px;
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #4d473a;
    background-clip: padding-box;
    border: 5px solid transparent;
    border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {
    border: 2px solid transparent;
}

/* =========================
   STORE BUTTONS
========================= */
.js-store-prod-btn,
.js-store-prod-all-text a {
    display: inline-block;
    position: relative;

    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

    padding: 13px 19px;
    border-radius: 4px;

    background: #4d473a;
    color: #f2eee9 !important;
}

.js-store-prod-all-text a {
    margin-bottom: 3px;
}

/* =========================
   PRODUCT POPUP TEXT
========================= */
.t-store__prod-popup__text {
    font-size: 16px;
}

/* =========================
   MOBILE
========================= */
@media screen and (max-width: 480px) {

    .js-store-prod-all-text a {
        width: 73%;
    }

    .js-product.t-store__card {
        max-width: 300px !important;
        margin: 0 auto 30px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .t-store__prod-popup__text {
        font-size: 15px !important;
    }
}

/* =========================
   DESKTOP
========================= */
@media screen and (min-width: 1200px) {
    .js-store-prod-all-text a {
        width: 40%;
    }
}

/* =========================
   TILDA POPUP CLOSE
========================= */
.t778 .t-popup__close {
    background-color: #4d473a !important;
}

/* =========================
   CODE BLOCK FIX
   (безопасная версия)
========================= */
.t868__code-wrap {
    height: auto; /* было 100% — это может ломать мобилку */
    min-height: 0;
}

/* =========================
   ICON COLORS
========================= */
.t-store__prod-snippet__container svg rect,
.t-store__prod-snippet__container .js-store-close-text {
    fill: #4d473a;
    color: #4d473a !important;
}

/* =========================
   TEXT ALIGN FIX
========================= */
#allrecords .t-title,
#allrecords .t-title_xs,
#allrecords .t-title_sm,
#allrecords .t-title_md,
#allrecords .t-descr,
#allrecords .t-text {
    text-align: left !important;
}