SELECT 
  SQL_CALC_FOUND_ROWS (
    CASE WHEN products.parent_product_id <> 0 THEN products.parent_product_id ELSE products.product_id END
  ) AS product_id, 
  descr1.product as product, 
  companies.company as company_name, 
  GROUP_CONCAT(
    products.product_id 
    ORDER BY 
      products.parent_product_id ASC, 
      products.product_id ASC
  ) AS product_ids, 
  GROUP_CONCAT(
    products.product_type 
    ORDER BY 
      products.parent_product_id ASC, 
      products.product_id ASC
  ) AS product_types, 
  GROUP_CONCAT(
    products.parent_product_id 
    ORDER BY 
      products.parent_product_id ASC, 
      products.product_id ASC
  ) AS parent_product_ids, 
  products.product_type, 
  products.parent_product_id, 
  products.master_product_offers_count, 
  products.master_product_id, 
  products.company_id 
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_master_products_storefront_offers_count AS master_products_storefront_offers_count ON master_products_storefront_offers_count.product_id = products.product_id 
  AND master_products_storefront_offers_count.storefront_id = 1 
WHERE 
  1 
  AND (
    companies.status IN ('A') 
    OR products.company_id = 0
  ) 
  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 products.master_product_status IN ('A') 
  AND products.master_product_id = 0 
  AND (
    products.company_id > 0 
    OR (
      master_products_storefront_offers_count.count > 0
    )
  ) 
  AND products.product_type != 'D' 
GROUP BY 
  product_id 
ORDER BY 
  products.timestamp desc, 
  products.product_id ASC 
LIMIT 
  0, 96

Query time 0.00568

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "34.05"
    },
    "ordering_operation": {
      "using_filesort": true,
      "grouping_operation": {
        "using_temporary_table": true,
        "using_filesort": true,
        "buffer_result": {
          "using_temporary_table": true,
          "nested_loop": [
            {
              "table": {
                "table_name": "master_products_storefront_offers_count",
                "access_type": "system",
                "possible_keys": [
                  "PRIMARY",
                  "idx_storefront_id"
                ],
                "rows_examined_per_scan": 0,
                "rows_produced_per_join": 1,
                "filtered": "0.00",
                "const_row_not_found": true,
                "cost_info": {
                  "read_cost": "0.00",
                  "eval_cost": "0.20",
                  "prefix_cost": "0.00",
                  "data_read_per_join": "16"
                },
                "used_columns": [
                  "storefront_id",
                  "product_id",
                  "count"
                ]
              }
            },
            {
              "table": {
                "table_name": "cscart_categories",
                "access_type": "ALL",
                "possible_keys": [
                  "PRIMARY",
                  "c_status",
                  "p_category_id"
                ],
                "rows_examined_per_scan": 98,
                "rows_produced_per_join": 3,
                "filtered": "4.00",
                "cost_info": {
                  "read_cost": "22.50",
                  "eval_cost": "0.78",
                  "prefix_cost": "23.28",
                  "data_read_per_join": "13K"
                },
                "used_columns": [
                  "category_id",
                  "storefront_id",
                  "usergroup_ids",
                  "status"
                ],
                "attached_condition": "(((`danishecarter_31jan`.`cscart_categories`.`usergroup_ids` = '') or find_in_set(0,`danishecarter_31jan`.`cscart_categories`.`usergroup_ids`) or find_in_set(1,`danishecarter_31jan`.`cscart_categories`.`usergroup_ids`)) and (`danishecarter_31jan`.`cscart_categories`.`status` in ('A','H')) and (`danishecarter_31jan`.`cscart_categories`.`storefront_id` in (0,1)))"
              }
            },
            {
              "table": {
                "table_name": "products_categories",
                "access_type": "ref",
                "possible_keys": [
                  "PRIMARY",
                  "pt"
                ],
                "key": "PRIMARY",
                "used_key_parts": [
                  "category_id"
                ],
                "key_length": "3",
                "ref": [
                  "danishecarter_31jan.cscart_categories.category_id"
                ],
                "rows_examined_per_scan": 3,
                "rows_produced_per_join": 11,
                "filtered": "100.00",
                "using_index": true,
                "cost_info": {
                  "read_cost": "4.13",
                  "eval_cost": "2.35",
                  "prefix_cost": "29.76",
                  "data_read_per_join": "188"
                },
                "used_columns": [
                  "product_id",
                  "category_id"
                ]
              }
            },
            {
              "table": {
                "table_name": "products",
                "access_type": "eq_ref",
                "possible_keys": [
                  "PRIMARY",
                  "status",
                  "idx_master_product_id"
                ],
                "key": "PRIMARY",
                "used_key_parts": [
                  "product_id"
                ],
                "key_length": "3",
                "ref": [
                  "danishecarter_31jan.products_categories.product_id"
                ],
                "rows_examined_per_scan": 1,
                "rows_produced_per_join": 1,
                "filtered": "8.88",
                "cost_info": {
                  "read_cost": "0.00",
                  "eval_cost": "0.21",
                  "prefix_cost": "32.11",
                  "data_read_per_join": "4K"
                },
                "used_columns": [
                  "product_id",
                  "product_type",
                  "status",
                  "company_id",
                  "timestamp",
                  "usergroup_ids",
                  "parent_product_id",
                  "master_product_id",
                  "master_product_status",
                  "master_product_offers_count"
                ],
                "attached_condition": "((`danishecarter_31jan`.`products`.`master_product_id` = 0) and ((`danishecarter_31jan`.`products`.`usergroup_ids` = '') or find_in_set(0,`danishecarter_31jan`.`products`.`usergroup_ids`) or find_in_set(1,`danishecarter_31jan`.`products`.`usergroup_ids`)) and (`danishecarter_31jan`.`products`.`status` = 'A') and (`danishecarter_31jan`.`products`.`master_product_status` = 'A') and ((`danishecarter_31jan`.`products`.`company_id` > 0) or <cache>((NULL > 0))) and (`danishecarter_31jan`.`products`.`product_type` <> 'D'))"
              }
            },
            {
              "table": {
                "table_name": "companies",
                "access_type": "eq_ref",
                "possible_keys": [
                  "PRIMARY"
                ],
                "key": "PRIMARY",
                "used_key_parts": [
                  "company_id"
                ],
                "key_length": "4",
                "ref": [
                  "danishecarter_31jan.products.company_id"
                ],
                "rows_examined_per_scan": 1,
                "rows_produced_per_join": 1,
                "filtered": "100.00",
                "cost_info": {
                  "read_cost": "0.00",
                  "eval_cost": "0.21",
                  "prefix_cost": "32.32",
                  "data_read_per_join": "8K"
                },
                "used_columns": [
                  "company_id",
                  "status",
                  "company"
                ],
                "attached_condition": "<if>(found_match(companies), ((`danishecarter_31jan`.`companies`.`status` = 'A') or (`danishecarter_31jan`.`products`.`company_id` = 0)), true)"
              }
            },
            {
              "table": {
                "table_name": "descr1",
                "access_type": "eq_ref",
                "possible_keys": [
                  "PRIMARY",
                  "product_id"
                ],
                "key": "PRIMARY",
                "used_key_parts": [
                  "product_id",
                  "lang_code"
                ],
                "key_length": "9",
                "ref": [
                  "danishecarter_31jan.products_categories.product_id",
                  "const"
                ],
                "rows_examined_per_scan": 1,
                "rows_produced_per_join": 1,
                "filtered": "100.00",
                "cost_info": {
                  "read_cost": "0.00",
                  "eval_cost": "0.21",
                  "prefix_cost": "32.53",
                  "data_read_per_join": "4K"
                },
                "used_columns": [
                  "product_id",
                  "lang_code",
                  "product"
                ]
              }
            },
            {
              "table": {
                "table_name": "prices",
                "access_type": "ref",
                "possible_keys": [
                  "usergroup",
                  "product_id",
                  "lower_limit",
                  "usergroup_id"
                ],
                "key": "usergroup",
                "used_key_parts": [
                  "product_id"
                ],
                "key_length": "3",
                "ref": [
                  "danishecarter_31jan.products_categories.product_id"
                ],
                "rows_examined_per_scan": 2,
                "rows_produced_per_join": 2,
                "filtered": "97.97",
                "using_index": true,
                "cost_info": {
                  "read_cost": "1.11",
                  "eval_cost": "0.41",
                  "prefix_cost": "34.05",
                  "data_read_per_join": "49"
                },
                "used_columns": [
                  "product_id",
                  "lower_limit",
                  "usergroup_id"
                ],
                "attached_condition": "((`danishecarter_31jan`.`prices`.`lower_limit` = 1) and (`danishecarter_31jan`.`prices`.`usergroup_id` in (0,0,1)))"
              }
            }
          ]
        }
      }
    }
  }
}

Result

product_id product company_name product_ids product_types parent_product_ids product_type parent_product_id master_product_offers_count master_product_id company_id
278 T-shirt, Color: White CS-Cart 278,279 P,V 0,278 P 0 0 0 1
280 T-shirt, Color: Black CS-Cart 280,281 P,V 0,280 P 0 0 0 1
282 T-shirt, Color: Blue CS-Cart 282,283,284 P,V,V 0,282,282 V 282 0 0 1
247 Nokia N1 Pad 7.9" Quad-Core 64bit 2.3GHz 2GB 32GB Android 5.0 CS-Cart 247 P 0 P 0 0 0 1
248 X-Box One CS-Cart 248,248 P,P 0,0 P 0 0 0 1
241 Apple® - iPad® with Retina® display Wi-Fi - 32GB - White CS-Cart 241 P 0 P 0 0 0 1
244 Packard Bell OneTwo CS-Cart 244 P 0 P 0 0 0 1
245 Apple - iPhone 5c 32GB Cell Phone - Green CS-Cart 245 P 0 P 0 0 0 1
246 GoPro - Hero3+ Black Edition Camera CS-Cart 246 P 0 P 0 0 0 1
240 Apple® - iPad® with Retina® display Wi-Fi - 64GB - Black CS-Cart 240 P 0 P 0 0 0 1
6 Toshiba 32C120U 32" Class 720P HD LCD TV CS-Cart 6 P 0 P 0 0 0 1
66 XRS 9970G CS-Cart 66 P 0 P 0 0 0 1
166 Nikon 1 J1 Two-Lens Wide Angle Kit Red CS-Cart 166,166 P,P 0,0 P 0 0 0 1
214 ASUS CP6130 CS-Cart 214 P 0 P 0 0 0 1
219 Series 3 15.6" Laptop CS-Cart 219 P 0 P 0 0 0 1
221 Series 9 13.3" Laptop CS-Cart 221 P 0 P 0 0 0 1
223 Samsung Galaxy Tab 8.9 (Wi-Fi Only) - 32GB Metallic Gray CS-Cart 223 P 0 P 0 0 0 1
192 Black and White America (CD Pack) CS-Cart 192 P 0 P 0 0 0 1
194 U218 Singles (U2TCD020) CS-Cart 194 P 0 P 0 0 0 1
195 Crossroads Guitar Festival 2010 (2DVD) CS-Cart 195 P 0 P 0 0 0 1
196 Feeding the Monkies At Ma Maison (Zappa) CS-Cart 196 P 0 P 0 0 0 1
197 Guitar Man Album Artwork CS-Cart 197,197 P,P 0,0 P 0 0 0 1
198 B.B. King One Kind Favor CD Grammy Award Winning CD Manufacturer: Geffen Records Sku: BBK-11ONEKINDFAVORCD Reviewed 2 times CS-Cart 198 P 0 P 0 0 0 1
199 B.B. King - Original Greatest Hits CD CS-Cart 199 P 0 P 0 0 0 1
200 John Rutter - The Colours of Christmas CS-Cart 200 P 0 P 0 0 0 1
201 Beethoven Piano Concertos Nos. 1 & 2 CS-Cart 201 P 0 P 0 0 0 1
202 New Year's Concert 2011 Diverse Klassik Welser-moest / Wiener Philharmoniker CS-Cart 202 P 0 P 0 0 0 1
203 New Year's Concert 2012 Diverse Wr.Philharmoniker / Jansons,M. / Wr.Sän CS-Cart 203 P 0 P 0 0 0 1
204 The Police - The Stewart Copeland Anthology CS-Cart 204 P 0 P 0 0 0 1
205 DIR-657 HD Media Router 1000 CS-Cart 205 P 0 P 0 0 0 1
206 RT-N66U Dual-Band Wireless-N900 Gigabit Router CS-Cart 206 P 0 P 0 0 0 1
207 Asus USB-N53 CS-Cart 207 P 0 P 0 0 0 1
208 H.264 Megapixel Surveillance Camera TL-SC3430 CS-Cart 208 P 0 P 0 0 0 1
209 HP Scanjet G3110 Scanner CS-Cart 209 P 0 P 0 0 0 1
210 HP Photosmart Plus e-All-in-One Printer - B210a CS-Cart 210 P 0 P 0 0 0 1
211 HP Officejet Pro 8600 Premium e-All-in-One Printer CS-Cart 211 P 0 P 0 0 0 1
212 Panasonic KX-MB2000 24PPM 3-in-1 Monochrome Laser MFP CS-Cart 212 P 0 P 0 0 0 1
213 Intel® Boxed Intel® Core™ i7-2600 CS-Cart 213 P 0 P 0 0 0 1
215 Intel® Core™ i7 processor Extreme Edition 980X – i7-980X CS-Cart 215 P 0 P 0 0 0 1
217 ASUS CP6230 CS-Cart 217 P 0 P 0 0 0 1
218 ASUS Essentio CP1130 CS-Cart 218 P 0 P 0 0 0 1
220 Series 7 Chronos 14” Notebook CS-Cart 220 P 0 P 0 0 0 1
222 Series 3 15.6" Laptop CS-Cart 222 P 0 P 0 0 0 1
224 Samsung Galaxy Tab™ 8.9 (AT&T) CS-Cart 224 P 0 P 0 0 0 1
225 Samsung Galaxy Tab™ 7.0" (Verizon) CS-Cart 225 P 0 P 0 0 0 1
226 Intel® Core™ i7 Processor i7-950 CS-Cart 226 P 0 P 0 0 0 1
227 Acer 3D Series HN274H bmiiid CS-Cart 227 P 0 P 0 0 0 1
228 LG D2342P-PN CS-Cart 228 P 0 P 0 0 0 1
229 HP 2711x 27" LED Monitor CS-Cart 229 P 0 P 0 0 0 1
230 2011 Pit Boss CS-Cart 230 P 0 P 0 0 0 1
231 2011 Tycoon CS-Cart 231 P 0 P 0 0 0 1
232 2011 Ice Queen CS-Cart 232 P 0 P 0 0 0 1
233 Crystal Lake Warm Weather Sleeping Bag CS-Cart 233 P 0 P 0 0 0 1
234 White Water™ Cool Weather Sleeping Bag CS-Cart 234 P 0 P 0 0 0 1
235 Everglades Cold Weather Sleeping Bag CS-Cart 235 P 0 P 0 0 0 1
236 WeatherMaster Screened 6 Tent With Hinged Door CS-Cart 236 P 0 P 0 0 0 1
237 Elite Evanston 8 Tent CS-Cart 237 P 0 P 0 0 0 1
238 Apple iPhone 4S Black CS-Cart 238 P 0 P 0 0 0 1
239 Apple iPhone 4S White CS-Cart 239 P 0 P 0 0 0 1
242 Apple iPod Classic Black CS-Cart 242 P 0 P 0 0 0 1
243 Apple iPod Classic White CS-Cart 243 P 0 P 0 0 0 1
78 adizero Rush Shoes CS-Cart 78 P 0 P 0 0 0 1
79 adiZero Tempaia Shoes CS-Cart 79 P 0 P 0 0 0 1
80 Nike Tenkay Slip TXTL Women's Shoe CS-Cart 80 P 0 P 0 0 0 1
81 Minnetonka Original Cowhide Driving Moc CS-Cart 81 P 0 P 0 0 0 1
82 Legend of the Guardians: the Owls of Ga'hoole(VG) CS-Cart 82 P 0 P 0 0 0 1
83 Speed Racer: The Videogame (Wii) CS-Cart 83 P 0 P 0 0 0 1
84 Lego Batman (Wii) CS-Cart 84 P 0 P 0 0 0 1
85 Looney Tunes: Acme Arsenal (Wii) CS-Cart 85 P 0 P 0 0 0 1
86 Nokia 700 CS-Cart 86 P 0 P 0 0 0 1
87 Sesame Street:Cookie's Counting Carnival (Wii) CS-Cart 87 P 0 P 0 0 0 1
88 Lord of the Rings: War in the North(PS3) CS-Cart 88 P 0 P 0 0 0 1
89 Green Lantern: Rise of the Manhunters (PS3) CS-Cart 89 P 0 P 0 0 0 1
90 F.E.A.R. 3 (PS3) MX CS-Cart 90 P 0 P 0 0 0 1
91 Montblanc Nicolas Rieussec Chronograph Automatic CS-Cart 91 P 0 P 0 0 0 1
92 Montblanc TimeWalker Automatic CS-Cart 92 P 0 P 0 0 0 1
93 Scene It? Bright Lights! Big Screen(X360) CS-Cart 93 P 0 P 0 0 0 1
94 Batman: Arkham City (X360) CS-Cart 94 P 0 P 0 0 0 1
95 Game Party: In Motion (X360) CS-Cart 95 P 0 P 0 0 0 1
96 Batman: Arkham City (X360) CE CS-Cart 96 P 0 P 0 0 0 1
97 Harry Potter and the Deathly Hallows - Part 2 (Blu-ray+DVD+UltraViolet Digital Copy Combo Pack) CS-Cart 97 P 0 P 0 0 0 1
100 The Hangover Part II (Blu-ray) CS-Cart 100 P 0 P 0 0 0 1
101 Nokia X3-02 CS-Cart 101 P 0 P 0 0 0 1
102 PR 100 Women's White Quartz Watch CS-Cart 102 P 0 P 0 0 0 1
103 Fringe: The Complete Third Season (Blu-Ray) CS-Cart 103 P 0 P 0 0 0 1
104 Final Destination 5 (Blu-ray) CS-Cart 104 P 0 P 0 0 0 1
105 Nokia Lumia 800 CS-Cart 105 P 0 P 0 0 0 1
106 Nokia E5-00 CS-Cart 106 P 0 P 0 0 0 1
107 Montblanc Classic Collection Money Clip CS-Cart 107 P 0 P 0 0 0 1
108 Due Date (Blu-ray) CS-Cart 108 P 0 P 0 0 0 1
109 Montblanc Contemporary Collection Key Ring with Montblanc emblem CS-Cart 109 P 0 P 0 0 0 1
110 Roots 30th Anniversary Special Edition (DVD) CS-Cart 110 P 0 P 0 0 0 1
111 Last Samurai, The (DVD) (WS) CS-Cart 111 P 0 P 0 0 0 1
112 Gone with The Wind: 2-Disc Special Edition CS-Cart 112 P 0 P 0 0 0 1
113 SGH-I677 CS-Cart 113 P 0 P 0 0 0 1
114 Birds of Prey: The Complete Series (DVD) CS-Cart 114 P 0 P 0 0 0 1