
    /* === Credit plate under price (увеличена в 1.4× от исходной) === */
    .e24-credit-plate {
        display:flex;
        align-items:center;
        gap:10px;
        margin:-5px 0 13px;
        padding:11px 17px;
        background:#FFF7D6;          /* light yellow */
        border:1px solid #F5E08A;
        border-radius:11px;
        font-size:1.26rem;
        line-height:1.2;
        color:#5a4500;
        font-weight:600;
        align-self:flex-start;
        max-width:fit-content;
    }
    .e24-credit-plate-icon {
        display:inline-flex;
        align-items:center;
        color:#9b7400;
        flex:0 0 auto;
    }
    .e24-credit-plate-icon svg {
        width:1.1em;
        height:1.1em;
    }
    .e24-credit-plate-text strong {
        font-weight:800;
        color:#1a1a1a;
    }
    @media (max-width:560px) {
        .e24-credit-plate { font-size:1.15rem; padding:10px 14px; gap:7px; }
    }

    /* On single-product page give the plate a bit of breathing room around the price */
    body.single-product .e24-credit-plate-wrap-single {
        margin:6px 0 18px;
    }
    body.single-product .e24-credit-plate-wrap-single .e24-credit-plate {
        margin:0;
    }

    /* Clickable plate (button) on single-product page */
    button.e24-credit-plate.is-clickable {
        appearance:none;
        -webkit-appearance:none;
        font-family:inherit;
        cursor:pointer;
        border:1px solid #F5E08A;
        outline:none;
    }
    button.e24-credit-plate.is-clickable:hover {
        background:#FFE680;
        border-color:#E6BE2F;
        transform:translateY(-1px);
        box-shadow:0 6px 16px rgba(245,224,138,.5);
    }
    button.e24-credit-plate.is-clickable:active {
        transform:translateY(0) scale(.98);
    }
    button.e24-credit-plate.is-clickable:focus-visible {
        outline:2px solid #FFC107;
        outline-offset:3px;
    }
    button.e24-credit-plate.is-clickable {
        transition:background .15s, border-color .15s, transform .12s, box-shadow .15s;
    }
    .e24-credit-plate-arrow {
        font-weight:700;
        font-size:1.1em;
        color:#9b7400;
        margin-left:2px;
        transition:transform .15s;
    }
    button.e24-credit-plate.is-clickable:hover .e24-credit-plate-arrow {
        transform:translateX(3px);
    }

    /* === Black "Купить" button on moto product cards === */
    /* Targeting via product_cat-* class on the <li> so it works in all listings:
       /shop/, /product-category/<moto>/, special offers, recommendations, etc. */
    ul.products li.product[class*="product_cat-motorcycles"] .e24-btn-row .e24-btn-buy,
    ul.products li.product[class*="product_cat-enduro"]      .e24-btn-row .e24-btn-buy,
    ul.products li.product[class*="product_cat-pitbikes"]    .e24-btn-row .e24-btn-buy,
    ul.products li.product[class*="product_cat-mopeds"]      .e24-btn-row .e24-btn-buy,
    ul.products li.product[class*="product_cat-road"]        .e24-btn-row .e24-btn-buy,
    ul.products li.product[class*="product_cat-motorcycles"] a.button.add_to_cart_button,
    ul.products li.product[class*="product_cat-enduro"]      a.button.add_to_cart_button,
    ul.products li.product[class*="product_cat-pitbikes"]    a.button.add_to_cart_button,
    ul.products li.product[class*="product_cat-mopeds"]      a.button.add_to_cart_button,
    ul.products li.product[class*="product_cat-road"]        a.button.add_to_cart_button {
        background:#1a1a1a !important;
        color:#fff !important;
        border-color:#1a1a1a !important;
    }
    ul.products li.product[class*="product_cat-motorcycles"] .e24-btn-row .e24-btn-buy:hover,
    ul.products li.product[class*="product_cat-enduro"]      .e24-btn-row .e24-btn-buy:hover,
    ul.products li.product[class*="product_cat-pitbikes"]    .e24-btn-row .e24-btn-buy:hover,
    ul.products li.product[class*="product_cat-mopeds"]      .e24-btn-row .e24-btn-buy:hover,
    ul.products li.product[class*="product_cat-road"]        .e24-btn-row .e24-btn-buy:hover,
    ul.products li.product[class*="product_cat-motorcycles"] a.button.add_to_cart_button:hover,
    ul.products li.product[class*="product_cat-enduro"]      a.button.add_to_cart_button:hover,
    ul.products li.product[class*="product_cat-pitbikes"]    a.button.add_to_cart_button:hover,
    ul.products li.product[class*="product_cat-mopeds"]      a.button.add_to_cart_button:hover,
    ul.products li.product[class*="product_cat-road"]        a.button.add_to_cart_button:hover {
        background:#000 !important;
        border-color:#000 !important;
        color:#fff !important;
    }

    /* In recommendations cards (similar models) the button is .e24-btn-buy too — same look */
    .e24-similar-card .e24-btn-buy {
        background:#1a1a1a !important;
        color:#fff !important;
        border-color:#1a1a1a !important;
    }
    .e24-similar-card .e24-btn-buy:hover {
        background:#000 !important;
        border-color:#000 !important;
    }
    