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 (
    2673, 15305, 15390, 2606, 15132, 2601, 
    2602, 2605, 2607, 2201, 2287, 2292, 
    2291, 2290, 2230, 2252, 2555, 2627, 
    2628, 2554, 2603, 2604, 2179, 13525
  ) 
  AND a.status = 'A' 
ORDER BY 
  a.position

Query time 0.00018

JSON explain

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