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 (
    96623, 96624, 96678, 96694, 97083, 97219, 
    97220, 97221, 97222, 97223, 97224, 
    97225, 97226, 97227, 97567, 97570, 
    97573, 97576, 97577, 97578, 97579, 
    97580, 97582, 97583, 97584, 97585, 
    97586, 97728, 97729, 97730, 97731, 
    97732, 97733, 97734, 97735, 97736, 
    97737, 97738, 97739, 97740, 97741, 
    97742, 97778, 97779, 97780, 97781, 
    97782, 97790, 97791, 97792, 97793, 
    97794, 97875, 97876, 97877, 97878, 
    97879, 97880, 97881, 97882, 97886, 
    97888, 98001, 98002, 98003, 98004, 
    98005, 98006, 98007, 98008, 98009, 
    98010, 98011, 98012, 98013, 98014, 
    98015, 98016, 98017, 98018, 98019, 
    98020, 98021, 98022, 98023, 98176, 
    98177, 98178, 98179, 98180, 98181, 
    98182, 98183, 98184, 98185, 98186
  ) 
  AND a.status = 'A' 
ORDER BY 
  a.position

Query time 0.00077

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 (96623,96624,96678,96694,97083,97219,97220,97221,97222,97223,97224,97225,97226,97227,97567,97570,97573,97576,97577,97578,97579,97580,97582,97583,97584,97585,97586,97728,97729,97730,97731,97732,97733,97734,97735,97736,97737,97738,97739,97740,97741,97742,97778,97779,97780,97781,97782,97790,97791,97792,97793,97794,97875,97876,97877,97878,97879,97880,97881,97882,97886,97888,98001,98002,98003,98004,98005,98006,98007,98008,98009,98010,98011,98012,98013,98014,98015,98016,98017,98018,98019,98020,98021,98022,98023,98176,98177,98178,98179,98180,98181,98182,98183,98184,98185,98186)) 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"
            ]
          }
        }
      ]
    }
  }
}