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 (
    78297, 78296, 78295, 78298, 78300, 78301, 
    78299, 78303, 78302, 78307, 78305, 
    78304, 78306, 78309, 78310, 78308
  )

Query time 0.00091

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": 16,
          "filtered": 100,
          "index_condition": "pfv.variant_id in (78297,78296,78295,78298,78300,78301,78299,78303,78302,78307,78305,78304,78306,78309,78310,78308)"
        }
      },
      {
        "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
78295 0 Gray Color
78296 0 Yellow Color
78297 0 Dark Brown Color
78298 0 White Color With Brown Stripe Pattern
78299 0 White & Blue Color
78300 0 Black & Brown Color
78301 0 Cream White Color
78302 0 Light Brown
78303 0 Blue
78304 0 Raindrop Shape
78305 0 Round Shape - White Color
78306 0 Round Shape With Straight Handle
78307 0 Oval Shape - Brown Color
78308 0 Brown Bowl
78309 0 Pink Bowl
78310 0 Yellow Bowl