SELECT 
  a.*, 
  b.option_name, 
  b.internal_option_name, 
  b.option_text, 
  b.description, 
  b.inner_hint, 
  b.incorrect_message, 
  b.comment 
FROM 
  cscart_product_options as a 
  LEFT JOIN cscart_product_options_descriptions as b ON a.option_id = b.option_id 
  AND b.lang_code = 'en' 
WHERE 
  a.product_id IN (
    13713, 2698, 15125, 15133, 2699, 2704, 
    2705, 2700, 2707, 14270, 2195, 12699, 
    2548, 15145, 2549, 15299, 2811, 2812, 
    2809, 2810, 2644, 2760, 2761, 2757
  ) 
  AND a.status = 'A' 
ORDER BY 
  a.position

Query time 0.00035

JSON explain

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