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 (
    62213, 62212, 62214, 62215, 62216, 62217, 
    62218
  )

Query time 0.00058

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "18.22"
    },
    "nested_loop": [
      {
        "table": {
          "table_name": "pfv",
          "access_type": "range",
          "possible_keys": [
            "PRIMARY"
          ],
          "key": "PRIMARY",
          "used_key_parts": [
            "variant_id"
          ],
          "key_length": "3",
          "rows_examined_per_scan": 7,
          "rows_produced_per_join": 7,
          "filtered": "100.00",
          "cost_info": {
            "read_cost": "8.42",
            "eval_cost": "1.40",
            "prefix_cost": "9.82",
            "data_read_per_join": "7K"
          },
          "used_columns": [
            "variant_id",
            "position"
          ],
          "attached_condition": "(`webmarco`.`pfv`.`variant_id` in (62213,62212,62214,62215,62216,62217,62218))"
        }
      },
      {
        "table": {
          "table_name": "pfvd",
          "access_type": "eq_ref",
          "possible_keys": [
            "PRIMARY"
          ],
          "key": "PRIMARY",
          "used_key_parts": [
            "variant_id",
            "lang_code"
          ],
          "key_length": "9",
          "ref": [
            "webmarco.pfv.variant_id",
            "const"
          ],
          "rows_examined_per_scan": 1,
          "rows_produced_per_join": 7,
          "filtered": "100.00",
          "cost_info": {
            "read_cost": "7.00",
            "eval_cost": "1.40",
            "prefix_cost": "18.22",
            "data_read_per_join": "31K"
          },
          "used_columns": [
            "variant_id",
            "variant",
            "lang_code"
          ]
        }
      }
    ]
  }
}

Result

variant_id position variant
62212 0 In Low Season (15/11 / 2021-15 / 04/2022)
62213 0 In Low Season (01/10 / 2022-15 / 11/2022)
62214 0 In Mid Season (16/04/2022 - 31/05/2022)
62215 0 In Mid Season (01/09/2022 - 30/09/2022)
62216 0 In High Season (01/06/2022-10/07/2022)
62217 0 In Higher Season (11/07/2022 - 05/08/2022)
62218 0 In the Highst Season (06/08/2022 - 31/08/2022)