SELECT 
  cscart_products.*, 
  cscart_product_descriptions.*, 
  MIN(
    IF(
      cscart_product_prices.percentage_discount = 0, 
      cscart_product_prices.price, 
      cscart_product_prices.price - (
        cscart_product_prices.price * cscart_product_prices.percentage_discount
      )/ 100
    )
  ) as price, 
  GROUP_CONCAT(
    IF(
      cscart_products_categories.link_type = 'M', 
      CONCAT(
        cscart_products_categories.category_id, 
        'M'
      ), 
      cscart_products_categories.category_id
    )
  ) as category_ids, 
  popularity.total as popularity, 
  IF(
    shared_prices.product_id IS NOT NULL, 
    MIN(
      IF(
        shared_prices.percentage_discount = 0, 
        shared_prices.price, 
        shared_prices.price - (
          shared_prices.price * shared_prices.percentage_discount
        )/ 100
      )
    ), 
    MIN(
      IF(
        cscart_product_prices.percentage_discount = 0, 
        cscart_product_prices.price, 
        cscart_product_prices.price - (
          cscart_product_prices.price * cscart_product_prices.percentage_discount
        )/ 100
      )
    )
  ) as price, 
  companies.company as company_name, 
  cscart_product_sales.amount as sales_amount, 
  cscart_seo_names.name as seo_name, 
  cscart_seo_names.path as seo_path, 
  cscart_discussion.type as discussion_type 
FROM 
  cscart_products 
  LEFT JOIN cscart_product_prices ON cscart_product_prices.product_id = cscart_products.product_id 
  AND cscart_product_prices.lower_limit = 1 
  AND cscart_product_prices.usergroup_id IN (0, 0, 1) 
  LEFT JOIN cscart_product_descriptions ON cscart_product_descriptions.product_id = cscart_products.product_id 
  AND cscart_product_descriptions.lang_code = 'en' 
  LEFT JOIN cscart_ult_product_prices shared_prices ON shared_prices.product_id = cscart_products.product_id 
  AND shared_prices.company_id = 2 
  AND shared_prices.lower_limit = 1 
  AND shared_prices.usergroup_id IN (0, 0, 1) 
  LEFT JOIN cscart_companies as companies ON companies.company_id = cscart_products.company_id 
  INNER JOIN cscart_products_categories ON cscart_products_categories.product_id = cscart_products.product_id 
  INNER JOIN cscart_categories ON cscart_categories.category_id = cscart_products_categories.category_id 
  AND cscart_categories.company_id = 2 
  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_products.usergroup_ids = '' 
    OR FIND_IN_SET(
      0, cscart_products.usergroup_ids
    ) 
    OR FIND_IN_SET(
      1, cscart_products.usergroup_ids
    )
  ) 
  AND cscart_categories.status IN ('A', 'H') 
  AND cscart_products.status IN ('A', 'H') 
  LEFT JOIN cscart_product_popularity as popularity ON popularity.product_id = cscart_products.product_id 
  LEFT JOIN cscart_product_sales ON cscart_product_sales.product_id = cscart_products.product_id 
  AND cscart_product_sales.category_id = 432 
  LEFT JOIN cscart_seo_names ON cscart_seo_names.object_id = 395 
  AND cscart_seo_names.type = 'p' 
  AND cscart_seo_names.dispatch = '' 
  AND cscart_seo_names.lang_code = 'en' 
  AND cscart_seo_names.company_id = 2 
  LEFT JOIN cscart_discussion ON cscart_discussion.object_id = cscart_products.product_id 
  AND cscart_discussion.object_type = 'P' 
  AND cscart_discussion.company_id = 2 
WHERE 
  cscart_products.product_id = 395 
  AND (
    companies.status = 'A' 
    OR cscart_products.company_id = 0
  ) 
GROUP BY 
  cscart_products.product_id

Query time 0.00189

Explain
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE cscart_products const PRIMARY,status,product_id_idx,status_idx PRIMARY 3 const 1
1 SIMPLE popularity const PRIMARY,total PRIMARY 3 const 1
1 SIMPLE cscart_product_sales const PRIMARY,pa PRIMARY 6 const,const 0 Unique row not found
1 SIMPLE cscart_product_prices ref usergroup,product_id,lower_limit,usergroup_id product_id 3 const 1 Using where
1 SIMPLE cscart_product_descriptions const PRIMARY,product_id PRIMARY 9 const,const 1 Using where
1 SIMPLE shared_prices range usergroup,product_id,company_id,lower_limit,usergroup_id usergroup 13 2 Using where; Using join buffer (flat, BNL join)
1 SIMPLE companies eq_ref PRIMARY PRIMARY 4 const 1 Using where
1 SIMPLE cscart_products_categories ref PRIMARY,pt,product_id_idx,category_id_idx,product_category_idx,category_product_idx product_id_idx 3 const 12
1 SIMPLE cscart_categories eq_ref PRIMARY,c_status,p_category_id,idx_category_id PRIMARY 3 mahm3t_cs443.cscart_products_categories.category_id 1 Using where
1 SIMPLE cscart_seo_names const PRIMARY,dispatch PRIMARY 210 const,const,const,const,const 1 Using where
1 SIMPLE cscart_discussion const object_id,company_id object_id 10 const,const,const 1 Using where

Result

product_id product_code product_type status company_id list_price amount weight length width height shipping_freight low_avail_limit timestamp updated_timestamp usergroup_ids is_edp edp_shipping unlimited_download tracking free_shipping zero_price_action is_pbp is_op is_oper is_returnable return_period avail_since out_of_stock_actions localization min_qty max_qty qty_step list_qty_count tax_ids age_verification age_limit options_type exceptions_type details_layout shipping_params shipping_availability_id ms_type master_id unit_price aval_status facebook_obj_type cp_additinal_product_enabled cp_additinal_product_items cp_delivery_date youtube_link show_youtube_video replace_main_image size_chart_id staff_notes emo_pn emo_paczka emo_dostawca emo_kreskowy emo_nrdostawcy emo_uwagi emo_source lang_code product shortname short_description full_description meta_keywords meta_description search_words page_title age_warning_message unit_name promo_text stop_words amp_description custom_header price category_ids popularity company_name sales_amount seo_name seo_path discussion_type
395 ODF 8778 A 1 0.00 0.00 0.000 0 0 0 0.00 0 1453455541 1743601035 0 N N N O N R N N N Y 10 0 N 0 0 0 0 6 N 0 P F default a:5:{s:16:"min_items_in_box";i:0;s:16:"max_items_in_box";i:0;s:10:"box_length";i:0;s:9:"box_width";i:0;s:10:"box_height";i:0;} 0 M 0 26 0 activity Y {"485452311":{"product_id":"10711","amount":"1","modifier":"0","modifier_type":"A"}} 0 N N 0 25.10.2022 mk price update/akt cen + 13% 0 en FAKRO FTT U6 | super energy saving pine roof window <h2>FAKRO FTT U6 is supreme, highly energy efficient wooden roof window dedicated to passive houses.</h2> <p style="text-align: justify;">FAKRO FTT U6 is innovative, super energy saving window with triple glazing. Frame of the window is wider than standard profiles, outer pane is anti-bulglary P2A class. It makes the window extremely solid, safe and tight. High pivot construction does not limit the view when window is opened and ensure comfort of usage. Wood-finish design fits to classic, elegant interiors. Glazing with excellent thermal insulation value makes FTT window perfect for passive buildings and air-conditioned rooms with mechanical ventilation systems.</p> <h2>Benefits of FAKRO FTT U6 roof window</h2> <ul style="text-align: justify;"> <li>Made of <strong>pine wood</strong> (knot-free), vacuum impregnated and coated with acrylic transparent lacquer;</li> <li>Wide and specially designed<strong> window </strong>frame&nbsp; - <strong>solid, durable, elegant window;</strong></li> <li><strong>For passive houses;</strong></li> <li>Color of exterior metal sheets - RAL 7022 - brown-grey;</li> <li>Possibility to <strong>rotate the sash to 180°;</strong></li> <li>Heat transfer coefficient of the window: <strong>Uw=0,8 W/m²K;</strong></li> <li><strong>Anti-burglary topSafe system</strong>: <ul> <li>specially shaped and mounted hinges prevents from forcing of the hinges and sash</li> <li>metal reinforcement makes break-in using a crowbar much more difficul</li> <li>specially reinforced structure and locking parts.</li> </ul> </li> <li>U6 glazing, tripple glazing with Ug=0,5W/m2K, super energy efficient and bulglary-proof;</li> <li>5 glazing seal provides additional tightness in extreme weather conditions and reduces the micro pulses of the cladding profiles during heavy rain;</li> </ul> <p><img alt="windows for passive houses" src="https://d2d2yzufo5fwh3.cloudfront.net/images/products/fakro/Glazing/U6_glazing.PNG?1638531783525" style="width: 842px; height: 220px;" title="U6 glazing \ super energy saving" /></p> <p style="text-align: center;">&nbsp;</p> <ul> <li><strong>ThermoPro technology</strong>: <ul> <li>improved thermal insulation - lower heating bills, less warm losses</li> <li>increased durability of wood - water drainage channels, protection from moisture</li> <li>tightness of the window - 3rd and 4th tightness class</li> <li>easier installation - new brackets make mounting quicker<span style="display: none;"> </span></li> </ul> </li> <li>Elegant <strong>silver handle </strong>positioned on the lower part of the sash for easy operation;</li> <li>Installation with flashing in roofs with <strong>pitches between 15° and 70</strong>°;</li> <li>Factory pre-fixed, lower angle brackets for installing the window in the roof;</li> <li>Wide range of internal and external accessories; the same as those used with wooden windows;</li> <li>Warranty <ul> <li>hail - lifetime warranty</li> <li>whole window - 10 years</li> <li>glazing - 20 years</li> <li>hinges, fitting - 20 years</li> </ul> </li> </ul> <h2>Do I need flashing? Which flashing to choose?</h2> <p style="text-align: justify;">Flashings are essential for the correct installation of roof windows. It is a set of aluminium sheets, precisely designed, which ensures a durable and neat fit with the roof covering.The main task of the flashing is to drain water and snow away from the window and protect it against the wind. The basic color is Grey – brown (RAL 7022) - the same as window outside profiles, thanks to which FAKRO windows go well with standard colors of roofing materials. Flashings are used for connecting the windows with roofing and it is the roofing which decides about their selection. Below we present available FAKRO flashings:</p> <p align="justify">To <strong>FTT U6 </strong>window there are recommended following flashings with additional insulation:</p> <div style="overflow-x: auto;"> <table> <tbody> <tr> <td colspan="5"> <center><strong>FAKRO Premium flashings</strong></center> </td> </tr> <tr> <td style="text-align: center;" width="20%"><strong>EHV-AT Thermo</strong></td> <td style="text-align: center;" width=" 20%"><strong>EZV-FT Thermo</strong></td> <td style="text-align: center;" width="20%"><strong>ELV-T Thermo</strong></td> <td style="text-align: center;" width="20%"><strong>EBV-PT Thermo</strong></td> <td style="text-align: center;" width="20%"><strong>ESV-T Thermo</strong></td> </tr> <tr> <td width="20%"><img align="middle" alt="fakro flashing for tiles" src="https://domshop.pl/wp-content/uploads/2021/01/EHV-AT-200x200.jpg" style="width: 200px; height: 200px;" td="" title="EHV-AT Thermo" /></td> <td width=" 20%"><img align="middle" alt="fakro flashing for flat roof tiles" src="https://domshop.pl/wp-content/uploads/2021/01/EZV-FT-200x200.jpg" style="width: 200px; height: 200px;" title="EZV-FT Thermo" /></td> <td width="20%"><img align="middle" alt="fakro flashing for slate" src="https://domshop.pl/wp-content/uploads/2021/01/ELV-T-200x200.jpg" style="width: 200px; height: 200px;" title="ELV-T Thermo" /></td> <td width="20%"><img align="middle" alt="fakro flashing for metal Panel Sheet with steam" src="https://domshop.pl/wp-content/uploads/2021/01/EBV-PT-200x200.jpg" style="width: 200px; height: 200px;" title="EBV-PT Thermo" /></td> <td width="20%"><img align="middle" alt="fakro flashing for asphlat, bitumen chippings" src="https://domshop.pl/wp-content/uploads/2021/01/ESV-200x200.jpg" style="width: 200px; height: 200px;" title="ESV-T Thermo" /></td> </tr> <tr> <td style="text-align: justify; vertical-align: top;">For high – profiled coverings up to 90mm: <ul> <li style="text-align: left;"><strong>ceramic and concrete roof tiles,</strong></li> <li style="text-align: left;"><strong>metal roof tiles,</strong></li> <li style="text-align: left;"><strong>thatch roof</strong></li> </ul> </td> <td style="text-align: justify; vertical-align: top;">For flat roof tile with thichness up to 45mm</td> <td style="text-align: justify; vertical-align: top;">For slate roof coverings 32mm (8+8mm or 16+16mm): <ul> <li style="text-align: left;"><strong>plain tile,</strong></li> <li style="text-align: left;"><strong>slate,</strong></li> <li style="text-align: left;"><strong>shingle,</strong></li> </ul> </td> <td style="text-align: justify; vertical-align: top;">Steel Panel Sheet - with prefabricated (system) joints</td> <td style="text-align: justify; vertical-align: top;">Flat, thin roof coverings up to 10mm (2 layers x 5mm): <ul> <li style="text-align: left;"><strong>asphalt</strong></li> <li style="text-align: left;"><strong>bitumen &amp; chippings,</strong></li> <li style="text-align: left;"><strong>metal sheets,</strong></li> <li style="text-align: left;"><strong>slate</strong></li> </ul> </td> </tr> <tr> <td style="text-align: justify; vertical-align: top;">Can be used on roofs with pitches between 15° and 90°</td> <td style="text-align: justify; vertical-align: top;">Can be used on roofs with pitches between 15° and 90°</td> <td style="text-align: justify; vertical-align: top;">Can be used on roofs with pitches between 15° and 90°</td> <td style="text-align: justify; vertical-align: top;">Can be used on roofs with pitches between 15° and 90°</td> <td style="text-align: justify; vertical-align: top;">Can be used on roofs with pitches between 15° and 90°</td> </tr> </tbody> </table> </div> <h2>FAKRO accessories to roof windows</h2> <p style="text-align: justify;">Each FAKRO roof window can be upgraded by external and internal accessories. FAKRO offers a lot of products from manual decorative blinds, through light control and heat protection to solar or electro Z-wave accessories. FAKRO offers wide range of designs and colors to cater to all tastes.</p> <p style="text-align: justify;">To<strong> choose the perfect FAKRO product</strong> you must precise what destination it should have. It is important to adjust the the roof window to your activity and preferrences. E.eg. in bedroom it is good to install blackout blind, thank's to which sun light, or moon light won't dusturb while sleeping. In an office, living room, kitchen, or bathroom, decorative blind will be enough - just to cover the glass and give the privacy. Anti heat blinds are perfect for all types of rooms. they will prevent from heat and will help to reduce temperature on the attic. Solar-powered and electro Z-wave products are dedicated for those who seek for comfortable, hi tech solutions, want to connect windows and blinds to smart home system or want to use ecological poducts. Also FAKRO solar powered and Z-Wave accessories are perfect for high-installed windows, where manual operation is difficult or not possible. Elegant remote controls will allow to set opening and closing properties.</p> <p>Internal accessories</p> <div style="overflow-x:auto;"> <table border="1" cellpadding="1" cellspacing="1" style="width:870px;"> <tbody> <tr> <td rowspan="2" width="130px">&nbsp;</td> <td rowspan="2" style="text-align: center;"><span style="font-size:11px;">FTS,<br /> FTP,<br /> FTU</span></td> <td rowspan="2" style="text-align: center;" width="52px"><span style="font-size:11px;">FTT U5* FPT U5*</span></td> <td rowspan="2" style="text-align: center;" width="46px"><span style="font-size:11px;">FTT U6,<br /> FTT U8</span></td> <td rowspan="2" style="text-align: center;" width="42px"><span style="font-size:11px;">PTP, PTP-V</span></td> <td rowspan="2" style="text-align: center;" width="42px"><span style="font-size:11px;">FPP-V, FPU-V</span></td> <td rowspan="2" style="text-align: center;" width="38px"><span style="font-size:11px;">PPP-V</span></td> <td rowspan="2" style="text-align: center;"><span style="font-size:11px;">FEP</span></td> <td rowspan="2" style="text-align: center;" width="40px"><span style="font-size:11px;">FYP-V</span></td> <td rowspan="2" style="text-align: center;" width="40px"><span style="font-size:11px;">PYP-V</span></td> <td colspan="2" rowspan="1" style="text-align: center;"><span style="font-size:11px;">FDY-V</span></td> <td colspan="2" rowspan="1" style="text-align: center;"><span style="font-size:11px;">FGH-V</span></td> <td rowspan="2" style="text-align: center;" width="40px"><span style="font-size:11px;">FTP/D, FTU/D</span></td> <td rowspan="2" style="text-align: center;"><span style="font-size:11px;">FXP, FXU</span></td> <td rowspan="2" style="text-align: center;"><span style="font-size:11px;">FWR, FWL</span></td> <td rowspan="2" style="text-align: center;"><span style="font-size:11px;">FWP</span></td> </tr> <tr> <td span="" style="background-color:grey; color: #fff;" td="" text-align:="" width="20px"><span style="font-size:10px;">up.<br /> sash</span></td> <td span="" style="background-color:grey; color: #fff;" td="" text-align:="" width="20px"><span style="font-size:10px;">bot.<br /> sash</span></td> <td span="" style="background-color:grey; color: #fff;" td="" text-align:="" width="20px"><span style="font-size:10px;">up.<br /> sash</span></td> <td span="" style="background-color:grey; color: #fff;" td="" text-align:="" width="20px"><span style="font-size:10px;">bot.<br /> sash</span></td> </tr> <tr> <td><a href="index.php?dispatch=products.view&amp;product_id=404"><span style="font-size:11px;">FAKRO AJP</span></a></td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+<sup>3</sup></td> <td style="text-align: center;">+</td> </tr> <tr> <td><span style="font-size:11px;">FAKRO AJP z-WAVE</span></td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">-</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">-</td> <td style="text-align: center;">+</td> <td style="text-align: center;">-</td> <td style="text-align: center;">+</td> <td style="text-align: center;">-</td> <td style="text-align: center;">+<sup>3</sup></td> <td style="text-align: center;">+</td> </tr> <tr> <td><a href="index.php?dispatch=products.view&amp;product_id=402"><span style="font-size:11px;">FAKRO ARS</span></a></td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> </tr> <tr> <td><a href="index.php?dispatch=products.view&amp;product_id=7352"><span style="font-size:11px;">FAKRO ARP</span></a></td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">-</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+<sup>3</sup></td> <td style="text-align: center;">+</td> </tr> <tr> <td><a href="index.php?dispatch=products.view&amp;product_id=9933"><span style="font-size:11px;">FAKRO ARP Z-Wave</span></a>,<br /> <span style="font-size:11px;">ARP WiFi</span></td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">-</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">+</td> <td style="text-align: center;">-</td> <td style="text-align: center;">+<sup>3</sup></td> <td style="text-align: center;">+</td> </tr> <tr> <td><a href="index.php?dispatch=products.view&amp;product_id=4939"><span style="font-size:11px;">FAKRO ARF</span></a></td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+<sup>3</sup></td> <td style="text-align: center;">+</td> </tr> <tr> <td><a href="index.php?dispatch=products.view&amp;product_id=9931"><span style="font-size:11px;">FAKRO ARF Z-Wave</span></a>, <span style="font-size:11px;">ARF WiFi</span></td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">-</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">-</td> <td style="text-align: center;">+</td> <td style="text-align: center;">-</td> <td style="text-align: center;">+</td> <td style="text-align: center;">-</td> <td style="text-align: center;">+<sup>3</sup></td> <td style="text-align: center;">+</td> </tr> <tr> <td><a href="index.php?dispatch=products.view&amp;product_id=7351"><span style="font-size:11px;">FAKRO APS</span></a></td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+<sup>3</sup></td> <td style="text-align: center;">+</td> </tr> <tr> <td><a href="index.php?dispatch=products.view&amp;product_id=10104"><span style="font-size:11px;">FAKRO APF</span></a></td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+<sup>3</sup></td> <td style="text-align: center;">+</td> </tr> <tr> <td><span style="font-size:11px;">FAKRO AMS</span></td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+<sup>1</sup></td> <td style="text-align: center;">+<sup>1</sup></td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">+<sup>1</sup></td> <td style="text-align: center;">+<sup>1</sup></td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> </tr> </tbody> </table> <p style="text-align: justify;">&nbsp;</p> <p style="text-align: justify;">External accessories</p> <div style="overflow-x:auto;"> <table border="1" cellpadding="1" cellspacing="1" style="width:870px;"> <tbody> <tr> <td rowspan="2" width="130px">&nbsp;</td> <td rowspan="2" style="text-align: center;"><span style="font-size:11px;">FTS,<br /> FTP,<br /> FTU</span></td> <td rowspan="2" style="text-align: center;" width="52px"><span style="font-size:11px;">FTT U5* FPT U5*</span></td> <td rowspan="2" style="text-align: center;" width="46px"><span style="font-size:11px;">FTT U6,<br /> FTT U8</span></td> <td rowspan="2" style="text-align: center;" width="42px"><span style="font-size:11px;">PTP, PTP-V</span></td> <td rowspan="2" style="text-align: center;" width="42px"><span style="font-size:11px;">FPP-V, FPU-V</span></td> <td rowspan="2" style="text-align: center;" width="38px"><span style="font-size:11px;">PPP-V</span></td> <td rowspan="2" style="text-align: center;"><span style="font-size:11px;">FEP</span></td> <td rowspan="2" style="text-align: center;" width="40px"><span style="font-size:11px;">FYP-V</span></td> <td rowspan="2" style="text-align: center;" width="40px"><span style="font-size:11px;">PYP-V</span></td> <td colspan="2" rowspan="1" style="text-align: center;"><span style="font-size:11px;">FDY-V</span></td> <td colspan="2" rowspan="1" style="text-align: center;"><span style="font-size:11px;">FGH-V</span></td> <td rowspan="2" style="text-align: center;" width="40px"><span style="font-size:11px;">FTP/D, FTU/D</span></td> <td rowspan="2" style="text-align: center;"><span style="font-size:11px;">FXP, FXU</span></td> <td rowspan="2" style="text-align: center;"><span style="font-size:11px;">FWR, FWL</span></td> <td rowspan="2" style="text-align: center;"><span style="font-size:11px;">FWP</span></td> </tr> <tr> <td span="" style="background-color:grey; color: #fff;" td="" text-align:="" width="20px"><span style="font-size:10px;">up.<br /> sash</span></td> <td span="" style="background-color:grey; color: #fff;" td="" text-align:="" width="20px"><span style="font-size:10px;">bot.<br /> sash</span></td> <td span="" style="background-color:grey; color: #fff;" td="" text-align:="" width="20px"><span style="font-size:10px;">up.<br /> sash</span></td> <td span="" style="background-color:grey; color: #fff;" td="" text-align:="" width="20px"><span style="font-size:10px;">bot.<br /> sash</span></td> </tr> <tr> <td><a href="index.php?dispatch=products.view&amp;product_id=7353"><span style="font-size:11px;">FAKRO AMZ</span></a>,<br /> <a href="index.php?dispatch=products.view&amp;product_id=7353"><span style="font-size:11px;">AMZ New Line</span></a></td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">-</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+<sup>4</sup></td> <td style="text-align: center;">+</td> <td style="text-align: center;">+<sup>4</sup></td> <td style="text-align: center;">+</td> <td style="text-align: center;">+<sup>4</sup></td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> </tr> <tr> <td><a href="index.php?dispatch=products.view&amp;product_id=10012"><span style="font-size:11px;">FAKRO AMZ Z-WAVE</span></a>, <a href="index.php?dispatch=products.view&amp;product_id=10013"><span style="font-size:11px;">AMZ Solar</span></a>, <span style="font-size:11px;"><br /> AMZ WiFi</span></td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">-</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+<sup>4</sup></td> <td style="text-align: center;">+<sup>4</sup></td> <td style="text-align: center;">+<sup>4</sup></td> <td style="text-align: center;">+<sup>4</sup></td> <td style="text-align: center;">+</td> <td style="text-align: center;">+<sup>4</sup></td> <td style="text-align: center;">+<sup>3,4</sup></td> <td style="text-align: center;">+<sup>3,4</sup></td> </tr> <tr> <td><a href="index.php?dispatch=products.view&amp;product_id=10011"><span style="font-size:11px;">FAKRO AME</span></a></td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">+</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> </tr> <tr> <td><a href="index.php?dispatch=products.view&amp;product_id=405"><span style="font-size:11px;">FAKRO ARZ-H</span></a></td> <td style="text-align: center;">+</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">+</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">+<sup>4</sup></td> <td style="text-align: center;">-</td> <td style="text-align: center;">+<sup>4</sup></td> <td style="text-align: center;">-</td> <td style="text-align: center;">+<sup>4</sup></td> <td style="text-align: center;">-</td> <td style="text-align: center;">+<sup>2</sup></td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> </tr> <tr> <td><a href="index.php?dispatch=products.view&amp;product_id=406"><span style="font-size:11px;">FAKRO ARZ Z-WAVE</span></a>, <a href="index.php?dispatch=products.view&amp;product_id=407"><span style="font-size:11px;">ARZ Solar</span></a>, <span style="font-size:11px;">ARZ WiFi</span></td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">+</td> <td style="text-align: center;">-</td> <td style="text-align: center;">+<sup>4</sup></td> <td style="text-align: center;">+<sup>4</sup></td> <td style="text-align: center;">+<sup>4</sup></td> <td style="text-align: center;">+<sup>4</sup></td> <td style="text-align: center;">+<sup>4</sup></td> <td style="text-align: center;"><sup>-</sup></td> <td style="text-align: center;">+<sup>2</sup></td> <td style="text-align: center;">+<sup>4</sup></td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> </tr> <tr> <td><span style="font-size:11px;">FAKRO ARK-Z Wave, ARK Solar</span></td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">+</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> </tr> </tbody> </table> <ul> <li><span style="font-size:11px;">* - interior accessories for special request, exterior accessoies -standard</span></li> <li><span style="font-size:11px;">1 -for window opening up to 240 cm length</span></li> <li><span style="font-size:11px;">2 - with 20 cm distance between the windows</span></li> <li><span style="font-size:11px;">3 - installation by FAKRO service required</span></li> <li><span style="font-size:11px;">4 - for special request, limited usage</span></li> </ul> </div> </div> <h2>How to choose proper size of FAKRO accessories?</h2> <p style="text-align: justify;">First af all you should check what size does your windows have. You can do it by checking the nameplate from the window. It is placed on the lower part of the sash, and you need to open the window to see it. After establishing the size ofthe window, just choose blind, awning blind, or shutter in the corresponding size.</p> <div style="overflow-x: auto;"> <table border="1" bordercolor="#00cc99" rules="typ"> <tbody> <tr> <td colspan="2" rowspan="1" style="text-align: center;"><strong>Warning!</strong></td> </tr> <tr> <td style="text-align: justify; width: 312px; height: 142px;">The size of e.g. 78x140 cm applies to roof window's size! The blind itself is smaller. Window's size can be found on the nameplate located at the top of the window. There is no need to measeure the window. Just read the size from the nameplate and order accessories in the corresponding size.</td> <td style="text-align: justify; width: 188px; height: 142px;"><img alt="" src="images/products/fakro_nameplate_animated.gif" /></td> </tr> </tbody> </table> </div> <p style="text-align: justify;">All the FAKRO accessories you can find <a href="https://www.baubay.de/sonnenschutz-and-rollladen-en/fur-fakro-und-optilight-dachfenster-en/">here</a></p> <h2>Technical specification of the FAKRO FTT roof windows</h2> <div style="overflow-x:auto;"> <table> <tbody> <tr> <td colspan="3" style="text-align: center;"><strong>FTT</strong> roof windows</td> <td colspan="3" style="text-align: center;"><strong>FTT/U</strong> roof windows</td> </tr> <tr> <td colspan="6" style="text-align: center;">Inside color / outside color:</td> </tr> <tr> <td colspan="3" style="text-align: center;">Natural (wood)<br /> /<br /> Grey (RAL 7022)</td> <td colspan="3" style="text-align: center;">White (NCS S 0502-Y)<br /> /<br /> Grey (RAL 7022)</td> </tr> <tr> <td colspan="6" style="text-align: center;">Construction:</td> </tr> <tr> <td colspan="3" style="text-align: center;">Pine wood coated with 2 layers of transparent lacquer</td> <td colspan="3" style="text-align: center;">Pine wood coated with 3 layers of polyurethane varnish</td> </tr> <tr> <td colspan="6" style="text-align: center;">FAKRO roof window name:</td> </tr> <tr style="background: #333; color: #fff;"> <td style="text-align: center;" width="17%"><a href="index.php?dispatch=products.view&amp;product_id=396">FTT U8</a></td> <td style="background: #999; color: #fff; text-align: center;" width="16%">FTT U6</td> <td style="text-align: center;" width="17%"><a href="index.php?dispatch=products.view&amp;product_id=1646">FTT R3</a></td> <td style="text-align: center;" width="17%"><a href="index.php?dispatch=products.view&amp;product_id=10164">FTT/U U8</a></td> <td style="text-align: center;" width="16%"><a href="index.php?dispatch=products.view&amp;product_id=10163">FTT/U U6</a></td> <td style="text-align: center;" width="17%"><a href="index.php?dispatch=products.view&amp;product_id=10165">FTT/U R3</a></td> </tr> <tr> <td colspan="6" style="text-align: center;">Window U-value [<sup>W</sup>/<sub>m<sup>2</sup>K</sub>]:</td> </tr> <tr> <td style="text-align: center;">U<sub>w</sub> = 0,58</td> <td style="background: #999; color: #fff; text-align: center;">U<sub>w</sub> = 0,80</td> <td style="text-align: center;">U<sub>w</sub> = 0,81</td> <td style="text-align: center;">U<sub>w</sub> = 0,58</td> <td style="text-align: center;">U<sub>w</sub> = 0,80</td> <td style="text-align: center;">U<sub>w</sub> = 0,81</td> </tr> <tr> <td colspan="6" style="text-align: center;">Acoustic insulation [dB]:</td> </tr> <tr> <td style="text-align: center;">R<sub>w</sub> = 36 (-2;-5)</td> <td style="background: #999; color: #fff; text-align: center;">R<sub>w</sub> = 38 (-1;-4)</td> <td style="text-align: center;">R<sub>w</sub> = 42 (-2;-4)</td> <td style="text-align: center;">R<sub>w</sub> = 36 (-2;-5)</td> <td style="text-align: center;">R<sub>w</sub> = 38 (-1;-4)</td> <td style="text-align: center;">R<sub>w</sub> = 42 (-2;-4)</td> </tr> <tr> <td colspan="6" style="text-align: center;">Glazing type and glazing U-value:</td> </tr> <tr> <td style="text-align: center;">Quadruple glazing U8<br /> 4H-12-4HT-12-4HT-12-4HT<br /> U<sub>g</sub>=0,3<sup>W</sup>/<sub>m<sup>2</sup>K</sub></td> <td style="background: #999; color: #fff; text-align: center;">Triple glazing U6<br /> 6H-18-4HT-18-33.2T<br /> U<sub>g</sub>=0,5<sup>W</sup>/<sub>m<sup>2</sup>K</sub></td> <td style="text-align: center;">Triple glazing R3<br /> 8H-16-4HT-18-33.2SIT<br /> U<sub>g</sub>=0,5<sup>W</sup>/<sub>m<sup>2</sup>K</sub></td> <td style="text-align: center;">Quadruple glazing U8<br /> 4H-12-4HT-12-4HT-12-4HT<br /> U<sub>g</sub>=0,3<sup>W</sup>/<sub>m<sup>2</sup>K</sub></td> <td style="text-align: center;">Triple glazing U6<br /> 6H-18-4HT-18-33.2T<br /> U<sub>g</sub>=0,5<sup>W</sup>/<sub>m<sup>2</sup>K</sub></td> <td style="text-align: center;">Triple glazing R3<br /> 8H-16-4HT-18-33.2SIT<br /> U<sub>g</sub>=0,5<sup>W</sup>/<sub>m<sup>2</sup>K</sub></td> </tr> <tr> <td colspan="6" style="text-align: center;">Inner glass:</td> </tr> <tr> <td style="text-align: center;">4 mm</td> <td style="background: #999; color: #fff; text-align: center;">2x 3mm, laminated (class P2A)</td> <td style="text-align: center;">2x 3mm, laminated (class P2A)</td> <td style="text-align: center;">4 mm</td> <td style="text-align: center;">2x 3mm, laminated (class P2A)</td> <td style="text-align: center;">2x 3mm, laminated (class P2A)</td> </tr> <tr> <td colspan="6" style="text-align: center;">External glass:</td> </tr> <tr> <td style="text-align: center;">4 mm, toughened</td> <td style="background: #999; color: #fff; text-align: center;">4 mm, toughened</td> <td style="text-align: center;">4 mm, toughened</td> <td style="text-align: center;">4 mm, toughened</td> <td style="text-align: center;">4 mm, toughened</td> <td style="text-align: center;">4 mm, toughened</td> </tr> <tr> <td colspan="6" style="text-align: center;">Inert gas filled panes:</td> </tr> <tr> <td style="text-align: center;">Krypton</td> <td style="background: #999; color: #fff; text-align: center;">Argon</td> <td style="text-align: center;">Argon</td> <td style="text-align: center;">Krypton</td> <td style="text-align: center;">Argon</td> <td style="text-align: center;">Argon</td> </tr> <tr> <td colspan="6" style="text-align: center;">Spacers:</td> </tr> <tr> <td style="text-align: center;">Warm TGI</td> <td style="background: #999; color: #fff; text-align: center;">Warm TGI</td> <td style="text-align: center;">Warm TGI</td> <td style="text-align: center;">Warm TGI</td> <td style="text-align: center;">Warm TGI</td> <td style="text-align: center;">Warm TGI</td> </tr> <tr> <td colspan="6" style="text-align: center;">Air inlet type (air flow [m<sup>3</sup>/<sub>h</sub>]):</td> </tr> <tr> <td style="text-align: center;">-</td> <td style="background: #999; color: #fff; text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> <td style="text-align: center;">-</td> </tr> <tr> <td colspan="6" style="text-align: center;">Installation range (roof slope) :</td> </tr> <tr> <td style="text-align: center;">15° - 70°</td> <td style="background: #999; color: #fff; text-align: center;">15° - 70°</td> <td style="text-align: center;">15° - 70°</td> <td style="text-align: center;">15° - 70°</td> <td style="text-align: center;">15° - 70°</td> <td style="text-align: center;">15° - 70°</td> </tr> </tbody> </table> </div> energy saving, energy efficient, moisture resistant, triple glazed, thermal insulation, moistureproof, pine window, pitch roof window, skylight ✓wooden roof window ✓clearcoat ✓tripple glazing ✓high pivot ✓original FAKRO roof window ✓FTT Thermo ✓180° turn✓excellent thermal insulation ✓check it out! High pivot, wooden FAKRO FTT U6 Thermo roof window 2329.000000 263,952,948,951,955 154991 baubaY.de fakro-wooden-center-pivot-window-ftt-u6-thermo-triple-glazing-highly-energy-efficient 261/955 B