SELECT 
  pfv.feature_id, 
  pfv.product_id, 
  pfv.variant_id, 
  fv.position, 
  fvd.variant 
FROM 
  cscart_product_features_values AS pfv 
  INNER JOIN cscart_product_feature_variants AS fv ON pfv.feature_id = fv.feature_id 
  AND pfv.variant_id = fv.variant_id 
  INNER JOIN cscart_product_feature_variant_descriptions AS fvd ON pfv.variant_id = fvd.variant_id 
  AND fvd.lang_code = 'en' 
WHERE 
  pfv.feature_id IN (550, 549, 548) 
  AND pfv.product_id IN (
    187, 319, 321, 322, 323, 324, 325, 326, 
    327, 328, 329, 330, 331, 332, 333, 334
  ) 
  AND pfv.lang_code = 'en'

Query time 0.00200

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "49.26"
    },
    "nested_loop": [
      {
        "table": {
          "table_name": "fv",
          "access_type": "range",
          "possible_keys": [
            "PRIMARY",
            "feature_id"
          ],
          "key": "feature_id",
          "used_key_parts": [
            "feature_id"
          ],
          "key_length": "3",
          "rows_examined_per_scan": 10,
          "rows_produced_per_join": 10,
          "filtered": "100.00",
          "index_condition": "(`atulecarter_atul_demo2`.`fv`.`feature_id` in (550,549,548))",
          "cost_info": {
            "read_cost": "15.01",
            "eval_cost": "2.00",
            "prefix_cost": "17.01",
            "data_read_per_join": "11K"
          },
          "used_columns": [
            "variant_id",
            "feature_id",
            "position"
          ]
        }
      },
      {
        "table": {
          "table_name": "pfv",
          "access_type": "ref",
          "possible_keys": [
            "PRIMARY",
            "fl",
            "variant_id",
            "lang_code",
            "product_id",
            "fpl",
            "idx_product_feature_variant_id"
          ],
          "key": "PRIMARY",
          "used_key_parts": [
            "feature_id"
          ],
          "key_length": "3",
          "ref": [
            "atulecarter_atul_demo2.fv.feature_id"
          ],
          "rows_examined_per_scan": 9,
          "rows_produced_per_join": 0,
          "filtered": "0.66",
          "using_index": true,
          "cost_info": {
            "read_cost": "13.54",
            "eval_cost": "0.12",
            "prefix_cost": "48.55",
            "data_read_per_join": "468"
          },
          "used_columns": [
            "feature_id",
            "product_id",
            "variant_id",
            "lang_code"
          ],
          "attached_condition": "((`atulecarter_atul_demo2`.`pfv`.`variant_id` = `atulecarter_atul_demo2`.`fv`.`variant_id`) and (`atulecarter_atul_demo2`.`pfv`.`product_id` in (187,319,321,322,323,324,325,326,327,328,329,330,331,332,333,334)) and (`atulecarter_atul_demo2`.`pfv`.`lang_code` = 'en'))"
        }
      },
      {
        "table": {
          "table_name": "fvd",
          "access_type": "eq_ref",
          "possible_keys": [
            "PRIMARY"
          ],
          "key": "PRIMARY",
          "used_key_parts": [
            "variant_id",
            "lang_code"
          ],
          "key_length": "9",
          "ref": [
            "atulecarter_atul_demo2.fv.variant_id",
            "const"
          ],
          "rows_examined_per_scan": 1,
          "rows_produced_per_join": 0,
          "filtered": "100.00",
          "cost_info": {
            "read_cost": "0.59",
            "eval_cost": "0.12",
            "prefix_cost": "49.26",
            "data_read_per_join": "1K"
          },
          "used_columns": [
            "variant_id",
            "variant",
            "lang_code"
          ]
        }
      }
    ]
  }
}

Result

feature_id product_id variant_id position variant
548 323 1193 1 Small
548 187 1194 2 Large
548 329 1194 2 Large
548 332 1194 2 Large
548 321 1195 3 Medium
548 324 1195 3 Medium
548 327 1195 3 Medium
548 330 1195 3 Medium
548 333 1195 3 Medium
548 322 1196 6 XX Large
548 325 1196 6 XX Large
548 328 1196 6 XX Large
548 331 1196 6 XX Large
548 334 1196 6 XX Large
548 319 1197 5 X Large
548 326 1197 5 X Large
549 187 1199 2 Blue
549 319 1199 2 Blue
549 326 1199 2 Blue
549 327 1199 2 Blue
549 328 1199 2 Blue
549 321 1200 3 Black
549 322 1200 3 Black
549 329 1200 3 Black
549 330 1200 3 Black
549 331 1200 3 Black
549 323 1201 4 White
549 324 1201 4 White
549 325 1201 4 White
549 332 1201 4 White
549 333 1201 4 White
549 334 1201 4 White
550 187 1202 1 demo1
550 319 1202 1 demo1
550 321 1202 1 demo1
550 322 1202 1 demo1
550 323 1202 1 demo1
550 324 1202 1 demo1
550 325 1202 1 demo1
550 326 1203 2 demo2
550 327 1203 2 demo2
550 328 1203 2 demo2
550 329 1203 2 demo2
550 330 1203 2 demo2
550 331 1203 2 demo2
550 332 1203 2 demo2
550 333 1203 2 demo2
550 334 1203 2 demo2