SELECT 
  c.product_id AS cur_product_id, 
  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' 
  LEFT JOIN cscart_product_global_option_links as c ON c.option_id = a.option_id 
WHERE 
  c.product_id IN (
    1109, 1119, 1123, 1124, 1162, 1482, 1500, 
    1508, 1510, 1511, 1562, 1604, 1763, 
    1800, 1810, 1964, 2003, 2091, 2121, 
    2149, 2176, 2185, 2248, 2358, 2457, 
    331, 338, 341, 342, 365, 380, 387, 390, 
    408, 420, 429, 475, 543, 559, 672, 678, 
    687, 700, 759, 809, 823, 842, 870, 876, 
    880, 942, 948, 1121, 1131, 1376, 1384, 
    1387, 1437, 1460, 1478, 1485, 1487, 
    1490, 1492
  ) 
  AND a.product_id = 0 
  AND a.status = 'A' 
ORDER BY 
  a.position

Query time 0.00063

JSON explain

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