SELECT 
  MIN(prices.price) as ab__min_price, 
  MAX(prices.price) as ab__max_price 
FROM 
  cscart_products as products 
  LEFT JOIN cscart_product_descriptions as descr1 ON descr1.product_id = products.product_id 
  AND descr1.lang_code = 'en' 
  LEFT JOIN cscart_product_prices as prices ON prices.product_id = products.product_id 
  AND prices.lower_limit = 1 
  LEFT JOIN cscart_companies AS companies ON companies.company_id = products.company_id 
  INNER JOIN cscart_products_categories as products_categories ON products_categories.product_id = products.product_id 
  INNER JOIN cscart_categories ON cscart_categories.category_id = products_categories.category_id 
  AND (
    cscart_categories.usergroup_ids = '' 
    OR FIND_IN_SET(
      0, cscart_categories.usergroup_ids
    ) 
    OR FIND_IN_SET(
      1, cscart_categories.usergroup_ids
    )
  ) 
  AND cscart_categories.status IN ('A', 'H') 
  AND cscart_categories.storefront_id IN (0, 1) 
  LEFT JOIN cscart_ult_product_descriptions shared_descr ON shared_descr.product_id = products.product_id 
  AND shared_descr.company_id = 1 
  AND shared_descr.lang_code = 'en' 
  LEFT JOIN cscart_images_links as img_links ON img_links.object_id = products.product_id 
  AND img_links.object_type = 'product' 
  AND img_links.type = 'M' 
WHERE 
  prices.price > 0 
  AND cscart_categories.category_id IN (
    387, 745, 741, 1112, 693, 679, 681, 659, 
    657, 1022, 1108, 582, 1073, 713, 574, 
    522, 470, 479, 481, 651, 515, 754, 760, 
    1097, 744, 1105, 1106, 726, 1110, 755, 
    743, 450, 1104, 429, 430, 434, 435, 448, 
    415, 1098, 594, 1066, 1107, 468, 489, 
    493, 497, 498, 499, 500, 758, 414, 388, 
    765, 768, 774, 777, 782, 784, 786, 1087, 
    792, 794, 1131, 819, 828, 1094, 833, 
    837, 844, 1134, 1109, 1099, 1100, 1101, 
    1102, 1103, 884, 885, 1088, 939, 941, 
    942, 950, 952, 961, 1186, 1021, 1016, 
    1017, 1028, 1032, 1135, 1188, 1168, 
    1185, 1156, 1157, 1162, 1166, 1169, 
    1171, 1179, 1181, 1182, 1183, 1184, 
    1192
  ) 
  AND companies.status IN ('A') 
  AND (
    products.usergroup_ids = '' 
    OR FIND_IN_SET(0, products.usergroup_ids) 
    OR FIND_IN_SET(1, products.usergroup_ids)
  ) 
  AND products.status IN ('A') 
  AND prices.usergroup_id IN (0, 0, 1) 
  AND img_links.pair_id > 0 
  AND products.parent_product_id = 0

Query time 0.05873

JSON explain

{
  "query_block": {
    "select_id": 1,
    "nested_loop": [
      {
        "table": {
          "table_name": "companies",
          "access_type": "system",
          "possible_keys": ["PRIMARY"],
          "rows": 1,
          "filtered": 100
        }
      },
      {
        "table": {
          "table_name": "cscart_categories",
          "access_type": "ALL",
          "possible_keys": ["PRIMARY", "c_status", "p_category_id"],
          "rows": 525,
          "filtered": 20.5714283,
          "attached_condition": "cscart_categories.category_id in (387,745,741,1112,693,679,681,659,657,1022,1108,582,1073,713,574,522,470,479,481,651,515,754,760,1097,744,1105,1106,726,1110,755,743,450,1104,429,430,434,435,448,415,1098,594,1066,1107,468,489,493,497,498,499,500,758,414,388,765,768,774,777,782,784,786,1087,792,794,1131,819,828,1094,833,837,844,1134,1109,1099,1100,1101,1102,1103,884,885,1088,939,941,942,950,952,961,1186,1021,1016,1017,1028,1032,1135,1188,1168,1185,1156,1157,1162,1166,1169,1171,1179,1181,1182,1183,1184,1192) and (cscart_categories.usergroup_ids = '' or find_in_set(0,cscart_categories.usergroup_ids) or find_in_set(1,cscart_categories.usergroup_ids)) and cscart_categories.`status` in ('A','H') and cscart_categories.storefront_id in (0,1)"
        }
      },
      {
        "table": {
          "table_name": "products_categories",
          "access_type": "ref",
          "possible_keys": ["PRIMARY", "pt"],
          "key": "PRIMARY",
          "key_length": "3",
          "used_key_parts": ["category_id"],
          "ref": ["lillyshop_lillyshop.cscart_categories.category_id"],
          "rows": 26,
          "filtered": 100,
          "using_index": true
        }
      },
      {
        "table": {
          "table_name": "products",
          "access_type": "eq_ref",
          "possible_keys": ["PRIMARY", "status", "idx_parent_product_id"],
          "key": "PRIMARY",
          "key_length": "3",
          "used_key_parts": ["product_id"],
          "ref": ["lillyshop_lillyshop.products_categories.product_id"],
          "rows": 1,
          "filtered": 90.49367523,
          "attached_condition": "products.parent_product_id = 0 and products.company_id = 1 and (products.usergroup_ids = '' or find_in_set(0,products.usergroup_ids) or find_in_set(1,products.usergroup_ids)) and products.`status` = 'A'"
        }
      },
      {
        "table": {
          "table_name": "prices",
          "access_type": "ref",
          "possible_keys": [
            "usergroup",
            "product_id",
            "lower_limit",
            "usergroup_id"
          ],
          "key": "product_id",
          "key_length": "3",
          "used_key_parts": ["product_id"],
          "ref": ["lillyshop_lillyshop.products_categories.product_id"],
          "rows": 1,
          "filtered": 99.99145508,
          "attached_condition": "prices.lower_limit = 1 and prices.price > 0 and prices.usergroup_id in (0,0,1)"
        }
      },
      {
        "table": {
          "table_name": "img_links",
          "access_type": "ref",
          "possible_keys": ["PRIMARY", "object_id"],
          "key": "object_id",
          "key_length": "81",
          "used_key_parts": ["object_id", "object_type", "type"],
          "ref": [
            "lillyshop_lillyshop.products_categories.product_id",
            "const",
            "const"
          ],
          "rows": 1,
          "filtered": 100,
          "index_condition": "img_links.object_id = products_categories.product_id and img_links.object_type = 'product' and img_links.`type` = 'M'",
          "attached_condition": "img_links.pair_id > 0"
        }
      }
    ]
  }
}

Result

ab__min_price ab__max_price
25.00 569.00