SELECT 
  a.variant_id, 
  a.option_id, 
  a.position, 
  a.modifier, 
  a.modifier_type, 
  a.weight_modifier, 
  a.weight_modifier_type, 
  b.variant_name 
FROM 
  cscart_product_option_variants as a 
  LEFT JOIN cscart_product_option_variants_descriptions as b ON a.variant_id = b.variant_id 
  AND b.lang_code = 'en' 
WHERE 
  a.option_id IN (4222, 4219, 4240, 5619, 4221, 4225) 
  AND a.status = 'A' 
ORDER BY 
  a.position, 
  a.variant_id

Query time 0.00144

JSON explain

{
  "query_block": {
    "select_id": 1,
    "read_sorted_file": {
      "filesort": {
        "sort_key": "a.position, a.variant_id",
        "table": {
          "table_name": "a",
          "access_type": "range",
          "possible_keys": ["status", "option_id", "option_id_2"],
          "key": "option_id",
          "key_length": "6",
          "used_key_parts": ["option_id", "status"],
          "rows": 30,
          "filtered": 100,
          "index_condition": "a.option_id in (4222,4219,4240,5619,4221,4225) and a.`status` = 'A'"
        }
      }
    },
    "table": {
      "table_name": "b",
      "access_type": "eq_ref",
      "possible_keys": ["PRIMARY"],
      "key": "PRIMARY",
      "key_length": "9",
      "used_key_parts": ["variant_id", "lang_code"],
      "ref": ["staging2_wesave_com.a.variant_id", "const"],
      "rows": 1,
      "filtered": 100,
      "attached_condition": "trigcond(b.lang_code = 'en')"
    }
  }
}

Result

variant_id option_id position modifier modifier_type weight_modifier weight_modifier_type variant_name
19063 4219 0 0.000 A 0.000 A 25.00
19064 4219 0 25.000 A 0.000 A 50
19065 4219 0 75.000 A 0.000 A 100
19066 4219 0 175.000 A 0.000 A 200
19071 4221 0 0.000 A 0.000 A 25.00
19072 4221 0 25.000 A 0.000 A 50
19073 4222 0 0.000 A 0.000 A 5.00
19074 4222 0 5.000 A 0.000 A 10
19075 4222 0 10.000 A 0.000 A 15
19076 4222 0 20.000 A 0.000 A 25
19077 4222 0 45.000 A 0.000 A 50
19078 4222 0 95.000 A 0.000 A 100
19079 4222 0 245.000 A 0.000 A 250
19089 4225 0 0.000 A 0.000 A 25.00
19090 4225 0 25.000 A 0.000 A 50
19091 4225 0 75.000 A 0.000 A 100
19092 4225 0 125.000 A 0.000 A 150
19093 4225 0 175.000 A 0.000 A 200
19180 4240 0 0.000 A 0.000 A 10.00
19181 4240 0 5.000 A 0.000 A 15
19182 4240 0 15.000 A 0.000 A 25
19183 4240 0 40.000 A 0.000 A 50
19184 4240 0 65.000 A 0.000 A 75
19185 4240 0 90.000 A 0.000 A 100
19186 4240 0 240.000 A 0.000 A 250
26603 5619 0 0.000 A 0.000 A 25.00
26604 5619 0 25.000 A 0.000 A 50
26605 5619 0 75.000 A 0.000 A 100
26606 5619 0 125.000 A 0.000 A 150
26607 5619 0 175.000 A 0.000 A 200