/* Cart Table Responsive Styles */
@media screen and (max-width: 767px) {
    .woocommerce table.shop_table_responsive,
    .woocommerce-page table.shop_table_responsive {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .woocommerce-cart-form table.shop_table th,
    .woocommerce-cart-form table.shop_table td {
        padding: 8px 4px;
        white-space: nowrap;
    }
    
    .woocommerce-cart-form table.shop_table .product-thumbnail img {
        max-width: 50px;
        height: auto;
    }

    /* Ensure smooth scrolling and full visibility */
    .woocommerce-cart-form {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

    .woocommerce-cart-form table.shop_table {
        font-size: 14px;
        width: auto;
        min-width: 100%;
      table-layout: fixed;
    }

    .woocommerce-cart-form table.shop_table .product-name {
        min-width: 120px;
    }

    .woocommerce-cart-form table.shop_table .product-subtotal,
    .woocommerce-cart-form table.shop_table .product-price,
    .woocommerce-cart-form table.shop_table .product-quantity {
        min-width: 100px;
    }

    .woocommerce-cart-form table.shop_table .actions {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .woocommerce-cart-form table.shop_table .actions .button {
        margin-top: 10px;
    }

    /* Force minimum width for product remove column */
    .woocommerce table.shop_table,
    .woocommerce-cart table.shop_table,
    .woocommerce-page table.shop_table,
    table.shop_table.cart {
        table-layout: fixed !important;
    }

    .woocommerce table.shop_table .product-remove,
    .woocommerce-cart table.shop_table .product-remove,
    .woocommerce-page table.shop_table .product-remove,
    table.shop_table.cart .product-remove,
    .woocommerce-cart-form__contents .product-remove {
        width: 20px !important;
        max-width: 20px !important;
        min-width: 20px !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    .woocommerce table.shop_table .product-remove a.remove,
    .woocommerce-cart table.shop_table .product-remove a.remove,
    .woocommerce-page table.shop_table .product-remove a.remove,
    table.shop_table.cart .product-remove a.remove {
        font-size: 23px !important;
        line-height: 14px !important;
        width: 14px !important;
        height: 14px !important;
        min-width: 14px !important;
        min-height: 14px !important;
        padding: 0 !important;
        margin: 0 auto !important;
        display: block !important;
        text-decoration: none !important;
    }

    /* Additional specificity for mobile */
    @media screen and (max-width: 767px) {
        .woocommerce-cart-form table.shop_table .product-remove,
        .woocommerce-cart-form__contents .product-remove {
            width: 20px !important;
            max-width: 20px !important;
            min-width: 20px !important;
            padding: 0 !important;
        }
        
        .woocommerce-cart-form__cart-item td.product-remove {
            width: 20px !important;
            max-width: 20px !important;
            min-width: 20px !important;
            padding: 0 !important;
        }
    }
}
