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 (
    98624, 98651, 98681, 98760, 98761, 99012, 
    99013, 99014, 99015, 99016, 99017, 
    99018, 99019, 99588, 99589, 99590, 
    99591, 99592, 99593, 99594, 99595, 
    99596, 99597, 99598, 99599, 99600, 
    99601, 99602, 99603, 99604, 99605, 
    99606, 99607, 99608, 99609, 99610, 
    99611, 99612, 99613, 99614, 99615, 
    99616, 99617, 99618, 99619, 99620, 
    99621, 99622, 99623, 99624, 99625, 
    99626, 99627, 99628, 99629, 99630, 
    99631, 99632, 99633, 99634, 99635, 
    99636, 99637, 99638, 99639, 99640, 
    99641, 99642, 99643, 99644, 99645, 
    99646, 99647, 99669, 99670, 99671, 
    99672, 99673, 99674, 99675, 99676, 
    99677, 99678, 99679, 99680, 99681, 
    99682, 99697, 99698, 99699, 99700, 
    99701, 99702, 99703, 99706, 99707
  ) 
  AND a.status = 'A' 
ORDER BY 
  a.position

Query time 0.00051

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 (98624,98651,98681,98760,98761,99012,99013,99014,99015,99016,99017,99018,99019,99588,99589,99590,99591,99592,99593,99594,99595,99596,99597,99598,99599,99600,99601,99602,99603,99604,99605,99606,99607,99608,99609,99610,99611,99612,99613,99614,99615,99616,99617,99618,99619,99620,99621,99622,99623,99624,99625,99626,99627,99628,99629,99630,99631,99632,99633,99634,99635,99636,99637,99638,99639,99640,99641,99642,99643,99644,99645,99646,99647,99669,99670,99671,99672,99673,99674,99675,99676,99677,99678,99679,99680,99681,99682,99697,99698,99699,99700,99701,99702,99703,99706,99707)) 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"
            ]
          }
        }
      ]
    }
  }
}