/*
 * Blotto Auto Gift 2.1.35
 * Mobile-only product-type label for paid cart rows.
 * Visual only: no price, coupon, quantity or entitlement behavior changes.
 */

/* Desktop already has the cart-table column heading, so avoid duplicate copy. */
body.blotto-commerce-ui form.woocommerce-cart-form
    .cart_item:not(.blotto-free-gift-row) .product-name::before {
    content: none !important;
    display: none !important;
}

@media (max-width: 767px) {
    body.blotto-commerce-ui form.woocommerce-cart-form
        .cart_item:not(.blotto-free-gift-row) .product-name {
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 7px;
    }

    body.blotto-commerce-ui form.woocommerce-cart-form
        .cart_item:not(.blotto-free-gift-row) .product-name::before {
        content: "สินค้า" !important;
        display: inline-flex !important;
        position: static !important;
        align-items: center;
        width: max-content !important;
        min-height: 24px;
        margin: 0 !important;
        padding: 4px 10px;
        border: 1px solid #efd8df;
        border-radius: 999px;
        background: #fff2f5;
        color: #a63b5e;
        font-size: 11px;
        font-weight: 800;
        line-height: 1;
        visibility: visible !important;
        opacity: 1 !important;
    }
}
