SELECT 
  c.option_id, 
  c.product_id 
FROM 
  cscart_product_global_option_links AS c 
  LEFT JOIN cscart_product_options AS a ON a.option_id = c.option_id 
WHERE 
  a.status = 'A' 
  AND c.product_id IN (12567, 12576)

Query time 0.00285

JSON explain

{
  "query_block": {
    "select_id": 1,
    "table": {
      "message": "Impossible WHERE noticed after reading const tables"
    }
  }
}