SELECT 
  pfv.variant_id, 
  pfv.position, 
  pfvd.variant 
FROM 
  cscart_product_feature_variants AS pfv 
  INNER JOIN cscart_product_feature_variant_descriptions AS pfvd ON pfv.variant_id = pfvd.variant_id 
  AND pfvd.lang_code = 'ar' 
WHERE 
  pfv.variant_id IN (1199, 1200, 1201)

Query time 0.00018

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost": 0.01114841,
    "nested_loop": [
      {
        "table": {
          "table_name": "pfv",
          "access_type": "range",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "3",
          "used_key_parts": ["variant_id"],
          "loops": 1,
          "rows": 3,
          "cost": 0.00600749,
          "filtered": 100,
          "attached_condition": "pfv.variant_id in (1199,1200,1201)"
        }
      },
      {
        "table": {
          "table_name": "pfvd",
          "access_type": "eq_ref",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "9",
          "used_key_parts": ["variant_id", "lang_code"],
          "ref": ["u985510652_ecartify_dev.pfv.variant_id", "const"],
          "loops": 3,
          "rows": 1,
          "cost": 0.00514092,
          "filtered": 100,
          "attached_condition": "pfvd.lang_code = 'ar'"
        }
      }
    ]
  }
}

Result

variant_id position variant
1199 2 Blue
1200 3 Black
1201 4 White