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 (
    94582, 94853, 95756, 95758, 95770, 95771, 
    95772, 95774, 95775, 95776, 95824, 
    95825, 95826, 96573, 97608, 97610, 
    97611, 97612, 97613, 97614, 97615, 
    97617, 97618, 97629, 97630, 97631, 
    97633, 97635, 97636, 97637, 97640, 
    97641, 97642, 97643, 97644, 97645, 
    97646, 97647, 97648, 97649, 97650, 
    97651, 97652, 97653, 97654, 97655, 
    97656, 97657, 97658, 97659, 97660, 
    97661, 97662, 97663, 97664, 97665, 
    97666, 97667, 97668, 97669, 97670, 
    97671, 97672, 97673, 97674, 97675, 
    97676, 97677, 97678, 97679, 97680, 
    97681, 97697, 97699, 97700, 97701, 
    97702, 97706, 99112, 99115, 99116, 
    99118, 99119, 99130, 99132, 99134, 
    99143, 99164, 99166, 99173, 99175, 
    99180, 99192, 99194, 99197, 99200
  ) 
  AND a.status = 'A' 
ORDER BY 
  a.position

Query time 0.00096

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "1.70"
    },
    "ordering_operation": {
      "using_filesort": true,
      "cost_info": {
        "sort_cost": "1.00"
      },
      "nested_loop": [
        {
          "table": {
            "table_name": "a",
            "access_type": "ALL",
            "possible_keys": [
              "c_status"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 1,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "0.25",
              "eval_cost": "0.10",
              "prefix_cost": "0.35",
              "data_read_per_join": "2K"
            },
            "used_columns": [
              "option_id",
              "product_id",
              "company_id",
              "option_type",
              "regexp",
              "required",
              "multiupload",
              "allowed_extensions",
              "max_file_size",
              "missing_variants_handling",
              "status",
              "position",
              "value"
            ],
            "attached_condition": "((`nuie_scalesta_net`.`a`.`product_id` in (94582,94853,95756,95758,95770,95771,95772,95774,95775,95776,95824,95825,95826,96573,97608,97610,97611,97612,97613,97614,97615,97617,97618,97629,97630,97631,97633,97635,97636,97637,97640,97641,97642,97643,97644,97645,97646,97647,97648,97649,97650,97651,97652,97653,97654,97655,97656,97657,97658,97659,97660,97661,97662,97663,97664,97665,97666,97667,97668,97669,97670,97671,97672,97673,97674,97675,97676,97677,97678,97679,97680,97681,97697,97699,97700,97701,97702,97706,99112,99115,99116,99118,99119,99130,99132,99134,99143,99164,99166,99173,99175,99180,99192,99194,99197,99200)) and (`nuie_scalesta_net`.`a`.`status` = 'A'))"
          }
        },
        {
          "table": {
            "table_name": "b",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "option_id",
              "lang_code"
            ],
            "key_length": "9",
            "ref": [
              "nuie_scalesta_net.a.option_id",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 1,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "0.25",
              "eval_cost": "0.10",
              "prefix_cost": "0.70",
              "data_read_per_join": "3K"
            },
            "used_columns": [
              "option_id",
              "lang_code",
              "option_name",
              "internal_option_name",
              "option_text",
              "description",
              "comment",
              "inner_hint",
              "incorrect_message"
            ]
          }
        }
      ]
    }
  }
}