/*
 * Blotto Auto Gift 2.1.44
 * Mobile card width refinement.
 * Presentation only: keeps the remove control from compressing product names.
 */

@media (max-width: 767px) {
    body.blotto-commerce-ui form.woocommerce-cart-form
        table.shop_table > tbody > tr.woocommerce-cart-form__cart-item,
    body.blotto-commerce-ui form.woocommerce-cart-form
        table.shop_table > tbody > tr.blotto-free-gift-row {
        grid-template-columns: 82px minmax(0, 1fr) auto !important;
        grid-template-areas:
            "image name name"
            "image quantity total" !important;
        position: relative;
    }

    body.blotto-commerce-ui form.woocommerce-cart-form .product-name {
        padding-right: 42px !important;
    }

    body.blotto-commerce-ui form.woocommerce-cart-form .product-remove {
        position: absolute !important;
        top: 11px;
        right: 11px;
        z-index: 2;
        width: 36px !important;
        min-width: 36px !important;
        height: 36px !important;
        padding: 0 !important;
    }
}

@media (max-width: 380px) {
    body.blotto-commerce-ui form.woocommerce-cart-form
        table.shop_table > tbody > tr.woocommerce-cart-form__cart-item,
    body.blotto-commerce-ui form.woocommerce-cart-form
        table.shop_table > tbody > tr.blotto-free-gift-row {
        grid-template-columns: 72px minmax(0, 1fr) auto !important;
    }
}
