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 (
    13774, 11496, 13784, 11492, 11505, 11513, 
    13773, 11495, 13785, 11508, 13777, 
    11494, 11507, 13778, 11502, 11519, 
    11575, 11574, 11506, 13779, 11504, 
    13780, 11501, 13782
  ) 
  AND a.status = 'A' 
ORDER BY 
  a.position

Query time 0.00032

JSON explain

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