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 (
    80229, 80228, 80227, 80226, 80225, 80224, 
    80223, 80222, 80231, 80230, 80221
  )

Query time 0.00485

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": 11,
          "filtered": 100,
          "index_condition": "pfv.variant_id in (80229,80228,80227,80226,80225,80224,80223,80222,80231,80230,80221)"
        }
      },
      {
        "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
80221 1 Beige color with stripes and dots
80222 2 Beige color with floral pattern
80223 3 Beige color with stripes
80224 4 Beige color with dots
80225 5 Beige color with double stripes
80226 6 Moss green color with stripes and dots
80227 7 Moss green color with floral pattern
80228 8 Moss green color
80229 9 Moss green color with dots
80230 10 Moss green color with stripes
80231 11 Moss green color with double stripes