SELECT 
  c.product_id AS cur_product_id, 
  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' 
  LEFT JOIN cscart_product_global_option_links as c ON c.option_id = a.option_id 
  INNER JOIN cscart_ult_objects_sharing ON (
    cscart_ult_objects_sharing.share_object_id = a.option_id 
    AND cscart_ult_objects_sharing.share_company_id = 1 
    AND cscart_ult_objects_sharing.share_object_type = 'product_options'
  ) 
WHERE 
  c.product_id IN (
    4159, 4160, 4161, 4162, 4209, 4210, 4211, 
    4212, 4213, 4214, 4215, 3102, 3110, 
    6670, 6685, 6698, 3095, 3101, 3108, 
    6683, 6697, 12594, 12609, 3099, 19, 
    20, 21, 3929, 3930, 3931, 12424, 12554, 
    12536, 12546, 6724, 3100, 3106, 3114, 
    3120, 3125, 3153, 3154, 6672, 6688, 
    6689, 6694, 6702, 6706, 6708, 6726, 
    6725, 3103, 3097, 3113, 6687, 6699, 
    36, 37, 38, 39, 40, 41, 42, 83, 84, 85, 
    86, 87, 88, 89, 147, 148, 149, 150, 151, 
    152, 153, 168, 169, 170, 171, 172, 173, 
    174, 250, 251, 252, 253, 254, 255, 256, 
    304, 305, 306, 307, 308
  ) 
  AND a.product_id = 0 
  AND a.status = 'A' 
ORDER BY 
  a.position

Query time 0.00264

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "25.88"
    },
    "ordering_operation": {
      "using_temporary_table": true,
      "using_filesort": true,
      "cost_info": {
        "sort_cost": "1.39"
      },
      "nested_loop": [
        {
          "table": {
            "table_name": "cscart_ult_objects_sharing",
            "access_type": "index",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "share_object_id",
              "share_company_id",
              "share_object_type"
            ],
            "key_length": "159",
            "rows_examined_per_scan": 178,
            "rows_produced_per_join": 1,
            "filtered": "1.00",
            "using_index": true,
            "cost_info": {
              "read_cost": "18.41",
              "eval_cost": "0.18",
              "prefix_cost": "18.59",
              "data_read_per_join": "284"
            },
            "used_columns": [
              "share_company_id",
              "share_object_id",
              "share_object_type"
            ],
            "attached_condition": "((`test2_gaseus`.`cscart_ult_objects_sharing`.`share_company_id` = 1) and (`test2_gaseus`.`cscart_ult_objects_sharing`.`share_object_type` = 'product_options'))"
          }
        },
        {
          "table": {
            "table_name": "a",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY",
              "c_status"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "option_id"
            ],
            "key_length": "3",
            "ref": [
              "test2_gaseus.cscart_ult_objects_sharing.share_object_id"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 0,
            "filtered": "55.17",
            "index_condition": "(`test2_gaseus`.`cscart_ult_objects_sharing`.`share_object_id` = `test2_gaseus`.`a`.`option_id`)",
            "cost_info": {
              "read_cost": "0.45",
              "eval_cost": "0.10",
              "prefix_cost": "19.21",
              "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",
              "yml2_type_options",
              "yml2_option_param"
            ],
            "attached_condition": "((`test2_gaseus`.`a`.`product_id` = 0) and (`test2_gaseus`.`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": [
              "test2_gaseus.a.option_id",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 0,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "0.25",
              "eval_cost": "0.10",
              "prefix_cost": "19.56",
              "data_read_per_join": "3K"
            },
            "used_columns": [
              "option_id",
              "lang_code",
              "option_name",
              "internal_option_name",
              "option_text",
              "description",
              "comment",
              "inner_hint",
              "incorrect_message"
            ]
          }
        },
        {
          "table": {
            "table_name": "c",
            "access_type": "ref",
            "possible_keys": [
              "PRIMARY",
              "product_id"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "option_id"
            ],
            "key_length": "3",
            "ref": [
              "test2_gaseus.cscart_ult_objects_sharing.share_object_id"
            ],
            "rows_examined_per_scan": 45,
            "rows_produced_per_join": 1,
            "filtered": "3.14",
            "using_index": true,
            "cost_info": {
              "read_cost": "0.52",
              "eval_cost": "0.14",
              "prefix_cost": "24.49",
              "data_read_per_join": "11"
            },
            "used_columns": [
              "option_id",
              "product_id"
            ],
            "attached_condition": "((`test2_gaseus`.`c`.`option_id` = `test2_gaseus`.`a`.`option_id`) and (`test2_gaseus`.`c`.`product_id` in (4159,4160,4161,4162,4209,4210,4211,4212,4213,4214,4215,3102,3110,6670,6685,6698,3095,3101,3108,6683,6697,12594,12609,3099,19,20,21,3929,3930,3931,12424,12554,12536,12546,6724,3100,3106,3114,3120,3125,3153,3154,6672,6688,6689,6694,6702,6706,6708,6726,6725,3103,3097,3113,6687,6699,36,37,38,39,40,41,42,83,84,85,86,87,88,89,147,148,149,150,151,152,153,168,169,170,171,172,173,174,250,251,252,253,254,255,256,304,305,306,307,308)))"
          }
        }
      ]
    }
  }
}

Result

cur_product_id option_id product_id company_id option_type regexp required multiupload allowed_extensions max_file_size missing_variants_handling status position value yml2_type_options yml2_option_param option_name internal_option_name option_text description inner_hint incorrect_message comment
12609 83 0 1 S N N 0 M A 3 Connection type Connection type
12594 83 0 1 S N N 0 M A 3 Connection type Connection type
12554 83 0 1 S N N 0 M A 3 Connection type Connection type
12546 83 0 1 S N N 0 M A 3 Connection type Connection type
12536 83 0 1 S N N 0 M A 3 Connection type Connection type
12424 83 0 1 S N N 0 M A 3 Connection type Connection type
12609 93 0 1 S N N 0 M A 4 Inlet type Inlet type Line
12594 93 0 1 S N N 0 M A 4 Inlet type Inlet type Line
12554 93 0 1 S N N 0 M A 4 Inlet type Inlet type Line
12546 93 0 1 S N N 0 M A 4 Inlet type Inlet type Line
12536 93 0 1 S N N 0 M A 4 Inlet type Inlet type Line
12424 93 0 1 S N N 0 M A 4 Inlet type Inlet type Line
12424 92 0 1 S Y N 0 M A 5 Inlet connection Inlet connection Line
12536 92 0 1 S Y N 0 M A 5 Inlet connection Inlet connection Line
12546 92 0 1 S Y N 0 M A 5 Inlet connection Inlet connection Line
12554 92 0 1 S Y N 0 M A 5 Inlet connection Inlet connection Line
12594 92 0 1 S Y N 0 M A 5 Inlet connection Inlet connection Line
12609 92 0 1 S Y N 0 M A 5 Inlet connection Inlet connection Line
12609 91 0 1 S N N 0 M A 6 Outlet type Outlet type
12594 91 0 1 S N N 0 M A 6 Outlet type Outlet type
12554 91 0 1 S N N 0 M A 6 Outlet type Outlet type
12546 91 0 1 S N N 0 M A 6 Outlet type Outlet type
12536 91 0 1 S N N 0 M A 6 Outlet type Outlet type
12424 91 0 1 S N N 0 M A 6 Outlet type Outlet type
12536 65 0 1 S Y N 0 M A 7 Outlet connection Outlet connection
12424 65 0 1 S Y N 0 M A 7 Outlet connection Outlet connection
12546 65 0 1 S Y N 0 M A 7 Outlet connection Outlet connection
12554 65 0 1 S Y N 0 M A 7 Outlet connection Outlet connection
12594 65 0 1 S Y N 0 M A 7 Outlet connection Outlet connection
12609 65 0 1 S Y N 0 M A 7 Outlet connection Outlet connection
12424 66 0 1 S N N 0 M A 8 Purge Purge
12536 66 0 1 S N N 0 M A 8 Purge Purge
12546 66 0 1 S N N 0 M A 8 Purge Purge
12554 66 0 1 S N N 0 M A 8 Purge Purge
12594 66 0 1 S N N 0 M A 8 Purge Purge
12609 66 0 1 S N N 0 M A 8 Purge Purge
12554 67 0 1 S N N 0 M A 9 Shut off valve Shut off valve
12424 67 0 1 S N N 0 M A 9 Shut off valve Shut off valve
12536 67 0 1 S N N 0 M A 9 Shut off valve Shut off valve
12546 67 0 1 S N N 0 M A 9 Shut off valve Shut off valve
12594 67 0 1 S N N 0 M A 9 Shut off valve Shut off valve
12609 67 0 1 S N N 0 M A 9 Shut off valve Shut off valve
12536 84 0 1 S N N 0 M A 10 Type of inlet gauge Type of inlet gauge
12424 84 0 1 S N N 0 M A 10 Type of inlet gauge Type of inlet gauge
12609 84 0 1 S N N 0 M A 10 Type of inlet gauge Type of inlet gauge
12594 84 0 1 S N N 0 M A 10 Type of inlet gauge Type of inlet gauge
12554 84 0 1 S N N 0 M A 10 Type of inlet gauge Type of inlet gauge
12546 84 0 1 S N N 0 M A 10 Type of inlet gauge Type of inlet gauge
12609 85 0 1 S N N 0 M A 11 Type of outlet gauge Type of outlet gauge
12594 85 0 1 S N N 0 M A 11 Type of outlet gauge Type of outlet gauge
12554 85 0 1 S N N 0 M A 11 Type of outlet gauge Type of outlet gauge
12546 85 0 1 S N N 0 M A 11 Type of outlet gauge Type of outlet gauge
12536 85 0 1 S N N 0 M A 11 Type of outlet gauge Type of outlet gauge
12424 85 0 1 S N N 0 M A 11 Type of outlet gauge Type of outlet gauge