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 = 'en' 
WHERE 
  pfv.variant_id IN (
    83556, 83557, 83558, 83568, 83569, 83570, 
    83571, 83572, 83573, 83574, 83575, 
    83576, 83580, 83581, 83582, 83583, 
    83584, 83585
  )

Query time 0.00120

JSON explain

{
  "query_block": {
    "select_id": 1,
    "nested_loop": [
      {
        "table": {
          "table_name": "pfv",
          "access_type": "range",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "3",
          "used_key_parts": ["variant_id"],
          "rows": 18,
          "filtered": 100,
          "index_condition": "pfv.variant_id in (83556,83557,83558,83568,83569,83570,83571,83572,83573,83574,83575,83576,83580,83581,83582,83583,83584,83585)"
        }
      },
      {
        "table": {
          "table_name": "pfvd",
          "access_type": "eq_ref",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "9",
          "used_key_parts": ["variant_id", "lang_code"],
          "ref": ["dev_db.pfv.variant_id", "const"],
          "rows": 1,
          "filtered": 100,
          "index_condition": "pfvd.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

variant_id position variant
83556 1 250ml
83557 2 500ml
83558 3 2L
83568 1 30g
83569 2 210g
83570 3 570g
83571 1 30g
83572 2 210g
83573 3 570g
83574 1 30g
83575 2 210g
83576 3 570g
83580 1 30g
83581 2 210g
83582 3 570g
83583 1 30g
83584 2 210g
83585 3 570g