SELECT 
  products.product_id 
FROM 
  cscart_products AS products 
WHERE 
  products.master_product_id = 132 
  AND products.status IN ('A') 
  AND products.amount > 0

Query time 0.00017

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost": 0.002024411,
    "nested_loop": [
      {
        "table": {
          "table_name": "products",
          "access_type": "ref",
          "possible_keys": ["status", "idx_master_product_id"],
          "key": "idx_master_product_id",
          "key_length": "4",
          "used_key_parts": ["master_product_id"],
          "ref": ["const"],
          "loops": 1,
          "rows": 1,
          "cost": 0.002024411,
          "filtered": 99.01960754,
          "attached_condition": "products.`status` = 'A' and products.amount > 0"
        }
      }
    ]
  }
}