File size: 240,982 Bytes
d4159b0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 |
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<title>King C. Gillette Men's Style Master Cordless Stubble Trimmer with 4D Blade | Gillette Canada</title>
<link rel="dns-prefetch preconnect" href="https://cdn11.bigcommerce.com/s-i2wp9fnqpg" crossorigin><link rel="dns-prefetch preconnect" href="https://fonts.googleapis.com/" crossorigin><link rel="dns-prefetch preconnect" href="https://fonts.gstatic.com/" crossorigin>
<meta property="product:price:amount" content="56.49" /><meta property="product:price:currency" content="CAD" /><meta property="product:price:amount" content="49.99" /><meta property="product:price:currency" content="CAD" /><meta property="og:url" content="https://gillette.ca/king-c-gillette-mens-style-master-cordless-stubble-trimmer-with-4d-blade/" /><meta property="og:site_name" content="Gillette Canada" /><meta name="keywords" content="Gillette Canada"><meta name="description" content="The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving."><link rel='canonical' href='https://gillette.ca/king-c-gillette-mens-style-master-cordless-stubble-trimmer-with-4d-blade/' /><meta name='platform' content='bigcommerce.stencil' /><meta property="og:type" content="product" />
<meta property="og:title" content="King C. Gillette Men's Style Master Cordless Stubble Trimmer with 4D Blade" />
<meta property="og:description" content="The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving." />
<meta property="og:image" content="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/products/164/images/901/00047400675711_C1N1_EMEA__63639.1646761401.386.513.jpg?c=2" />
<meta property="fb:admins" content="[email protected]" />
<meta property="og:availability" content="instock" />
<meta property="pinterest:richpins" content="enabled" />
<link href="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/product_images/favicons.png?t=1573828953" rel="shortcut icon">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=5">
<meta name="facebook-domain-verification" content="dl8vovf76blma3duxr9apb01ucu1zx" />
<script>
//
document.documentElement.className = document.documentElement.className.replace('no-js', 'js');
localStorage.getItem('siteLanguage') === 'fr' ? document.documentElement.lang = 'fr-CA' : document.documentElement.lang = 'en-CA';
</script>
<script>
//
window.lazySizesConfig = window.lazySizesConfig || {};
window.lazySizesConfig.loadMode = 1;
</script>
<script async src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/stencil/e3379640-6527-013c-dc29-1e351524a519/e/79f5f440-9ff8-013b-95fd-2e5f2ae1c98a/dist/theme-bundle.head_async.js"></script>
<script src="https://gillette.com/content/og.js"></script>
<style>
:root {
--top-button-display-prop: none;
}
</style>
<script>
window.addEventListener('scroll', function(){
const top = document.body.scrollTop || document.documentElement.scrollTop;
let newTopButtonDisplayProp = 'none';
if(top > 900) {
newTopButtonDisplayProp = 'flex';
}
document.documentElement.style.setProperty('--top-button-display-prop', newTopButtonDisplayProp)
})
function scrollToTop() {
window.scrollTo(0, 0);
}
</script>
<link href="https://fonts.googleapis.com/css?family=Montserrat:700,500,400%7CLato:400&display=swap" rel="stylesheet">
<link data-stencil-stylesheet href="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/stencil/e3379640-6527-013c-dc29-1e351524a519/e/79f5f440-9ff8-013b-95fd-2e5f2ae1c98a/css/theme-faa6e760-6532-013c-0bc1-2a947387aef8.css" rel="stylesheet">
<script type="text/javascript" src="https://checkout-sdk.bigcommerce.com/v1/loader.js" defer></script>
<script type="text/javascript">
(function () {
var xmlHttp = new XMLHttpRequest();
xmlHttp.open('POST', 'https://bes.gcp.data.bigcommerce.com/nobot');
xmlHttp.setRequestHeader('Content-Type', 'application/json');
xmlHttp.send('{"store_id":"1000078943","timezone_offset":"-5","timestamp":"2023-12-04T10:16:15.82401600Z","visit_id":"a8e2d608-c23d-46c5-8be9-e47496a096e4","channel_id":1}');
})();
</script>
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
<script type="text/javascript">
var BCData = {"csrf_token":"4fec28f20d532211bd29cdcdda1bdb9917e1a419253ca76279d1a5de6b13ddfd","product_attributes":{"sku":"047400675711","upc":"047400675711","mpn":null,"gtin":null,"weight":null,"base":true,"image":null,"price":{"with_tax":{"formatted":"$56.49","value":56.49,"currency":"CAD"},"without_tax":{"formatted":"$49.99","value":49.99,"currency":"CAD"},"tax_label":"Tax"},"stock":null,"instock":true,"stock_message":null,"purchasable":true,"purchasing_message":null}};
</script>
<!--START Lightbox Javascript-->
<script async type='text/javascript' src='//www.lightboxcdn.com/vendor/0c52d9ee-51e7-4ab8-b1b0-345fa19eca6e/lightbox_inline.js'></script>
<!--END Lightbox Javascript-->
<script type="text/javascript">
window._rsq = window._rsq || [];
window._rsq.push(['_setSiteId', '847']); // replace with your site_id
window._rsq.push(['_enableOnsite']);
/*** EVENT SPECIFIC CODE ***/
window._rsq.push(['_addItem', {'id': '047400675711'}]);
/*** FUNCTION FOR AJAX TRACKING ***/
var _rs_ajax = {};
_rs_ajax.updateCart = function(){ //This is required for ajax cart views
window._rsq.push(['_addItem', { 'id':'047400675711', 'name':'King C. Gillette Men's Style Master Cordless Stubble Trimmer with 4D Blade', 'price':'49.99' }]);
window._rsq.push(['_setAction', 'shopping_cart']);
window._rsq.push(['_track']);
window.dataLayer.push(window._rsq);
};
/*** END FUNCTION FOR AJAX TRACKING ***/
wwPage = window.location.href;
if (wwPage.indexOf("/checkout") < 0) {
window.addEventListener('DOMContentLoaded', function(){
/*** FUNCTION FOR ADD TO CART EVENT ***/
window.frames.document.getElementById('form-action-addToCart').addEventListener("click", function(){
_rs_ajax.updateCart();
});
window.frames.document.getElementById('nl_email').addEventListener("change",
function(){
window._rsq.push(['_setUserEmail',
window.frames.document.getElementById('nl_email').value.toString()]);
window._rsq.push(['_track']);
});
});
/*** END ADD TO CART EVENT ***/
}
/*** END EVENT SPECIFIC CODE ***/
window._rsq.push(['_track']);
(function() {
var rScix = document.createElement('script');
rScix.type = 'text/javascript';
rScix.async = true;
rScix.src = ('https:' == document.location.protocol ? 'https://' :
'http://') + 'd1stxfv94hrhia.cloudfront.net/waves/v3/w.js';
(document.getElementsByTagName('head')[0] ||
document.getElementsByTagName('body')[0]).appendChild(rScix);
})();
</script><script src="https://apps.bazaarvoice.com/deployments/gillette-en_ca/main_site/production/en_CA/bv.js"></script>
<meta http-equiv="Content-Security-Policy" content="script-src 'self' *.bigcommerce.com *.iesnare.com *.bazaarvoice.com *.gstatic.com *.google.com *.betrad.com *.segment.com *.lytics.io *.cookielaw.org *.onetrust.com *.klaviyo.com cdn.jsdelivr.net cdnjs.cloudflare.com *.google-analytics.com *.googleapis.com connect.facebook.net *.facebook.com *.google.com *.addthis.com *.addthisedge.com *.devcloudsoftware.com *.braintreegateway.com *.googletagmanager.com *.go2cloud.org *.agkn.com *.online-metrix.net *.s3.amazonaws.com vjs.zencdn.net *.instagram.com *.paypalobjects.com *.paypal.com *.referralcandy.com *.pinimg.com *.adsrvr.org *.addrexx10.com *.googleadservices.com *.agkn.com *.crazyegg.com *.doubleclick.net *.amazonaws.com staging.restapi.ordergroove.com *.ordergroove.com *.moatads.com https://pghub.io/js/pandg-sdk.js *.lytics.io https://sc-static.net/scevent.min.js *.lightboxcdn.com lightboxapi.azurewebsites.net lightboxapitest.azurewebsites.net 'unsafe-inline' 'unsafe-eval' blob: ">
<script type="text/javascript" charset="utf-8">
wwPage = window.location.href;
if (wwPage.indexOf("create_account") >= 0 || wwPage.indexOf("shipping_address") >= 0 || wwPage.indexOf("cart") >= 0 || wwPage.indexOf("checkout") >= 0) {
var _cc_url = "xxredda.s3.amazonaws.com/gilletteca/loader.js";
var _cc_s = document.createElement('script');
_cc_s.type = 'text/javascript';
_cc_s.src = (("http:" === document.location.protocol) ? "http:" : "https:") + "//" + _cc_url;
document.getElementsByTagName("head")[0].appendChild(_cc_s);
}
</script>
<!-- GTM code added in 01/17/2019, moved from GTM 04/28/2020 -->
<script type="text/javascript">
if (typeof PGdataLayer == "undefined") {
var PGdataLayer = {};
}
PGdataLayer.GTM = {
'ConsentOverlay':'OneTrust',
'SitePrivacyProtection':'CA',
'SiteCountry': 'CA',
'SiteHost': 'BigCommerce',
'SiteTechnicalAgency': 'LTIMindtree',
'SiteLocalContainer': 'GTM-MWFDNDJ',
'SiteStagingContainer': '',
'GoogleAnalyticsOptimizeContainerID': '',
'GoogleAnalyticsSiteSpeedSampleRate': 'high',
'GoogleAnalyticsStaging': '',
'GoogleAnalyticsBrand': '',
'GoogleAnalyticsAllowLinker': '',
'GoogleAnalyticsGA4MeasurementID':'G-E3BNQ7WT45',
'GoogleAnalyticsLinkerDomains': '',
'GoogleReCaptcha': 'false',
'FacebookRemarketingID': '2889082704443861',
'FacebookConnectAppID': '',
'FacebookConnectLocale': '',
'BINPlatform': '',
'GoogleAnalyticsDisabled': ''
}
PGdataLayer.GTM.SiteEnvironment = 'Prod';
PGdataLayer.GTM.SiteStatus = 'Live';
PGdataLayer.GTM.GoogleAnalyticsLocal = "UA-32832439-107";
PGdataLayer.GTM.Segment = 'AQF7w3GJTCMJBCLHaJkkRnpfmJaD2KBy';
PGdataLayer.GTM.ConsentOverlayID = 'htmllang/a981c734-3260-43e8-a53e-2ea8bf3206e6'
</script>
<!-- BC Purchase -->
<script type="text/javascript">
window.dataLayer = window.dataLayer||[];
function trackBCecommerce() {
this._addTrans = addTrans;
this._addItem = addItems;
this._trackTrans = trackTrans;
}
var transaction = {};
transaction.transactionProducts = [];
function addTrans(orderID, store, total, tax, shipping, city, state, country) {
console.log('addTrans', transaction);
transaction.transactionId = orderID;
transaction.transactionAffiliation = store;
transaction.transactionTotal = total;
transaction.transactionTax = tax;
transaction.transactionShipping = shipping;
}
function addItems(orderID, sku, product, variation, price, quantity) {
transaction.transactionProducts.push({
'id': orderID,
'sku': sku,
'name': product,
'category': variation,
'price': price,
'quantity': quantity
});
}
function trackTrans() {
transaction.event = 'BCtransactionComplete';
dataLayer.push(transaction);
}
var pageTracker = new trackBCecommerce();
</script>
<script>
window.PGdataLayer = window.PGdataLayer || {};
window.dataLayer = window.dataLayer || [];
if (typeof window.PGdataLayer === 'object') {
PGdataLayer.user = {};
PGdataLayer.user.marketingProgramNbr = "175";
PGdataLayer.user.sourceID = "11684";
PGdataLayer.GTM = PGdataLayer.GTM || {};
// PGdataLayer.GTM.Segment = "bIgcNChSnct4FaBAy2UP0i5aGQiJlm95"; // Old Segment value
PGdataLayer.GTM.Lytics = "b097f6992d99fd0e598ae4f2ce344e9f";
}
if (window.dataLayer === undefined) {
window.dataLayer = [];
}
PGdataLayer.content = PGdataLayer.content || {};
PGdataLayer.content.type = "product";
var bearerToken = "eyJ0eXAiOiJKV1QiLCJhbGciOiJFUzI1NiJ9.eyJjaWQiOjEsImNvcnMiOlsiaHR0cHM6Ly9naWxsZXR0ZS5jYSJdLCJlYXQiOjE3MDE3Nzk0MDQsImlhdCI6MTcwMTYwNjYwNCwiaXNzIjoiQkMiLCJzaWQiOjEwMDAwNzg5NDMsInN1YiI6ImJjYXBwLmxpbmtlcmQiLCJzdWJfdHlwZSI6MCwidG9rZW5fdHlwZSI6MX0.IecoKrkUGXmCGh9Y5mPHxKPdRqyjx9uJinZcJbe6x28ZMvVeRXwRpcNIeYEHV7Gbqk97OkbTsbzixxIMx3EYHA";
var storeHashing = "i2wp9fnqpg";
window.dataLayer = window.dataLayer || [];
const subCategory = [];
const pageType = 'product';
subCategory.push({
"brand": "Braun",
"name": "King C. Gillette Men's Style Master Cordless Stubble Trimmer with 4D Blade",
"price": "49.99",
"sku": "047400675711",
"category": "All Products,Tous les produits,All Products/King C. Gillette Collection,Tous les produits/King C. Gillette Collection",
"listtype": "Product Details",
"position": '',
"id": "164"
});
window.PGdataLayer = window.PGdataLayer || {};
PGdataLayer.product={
"sku": "047400675711",
"id": "164",
"gtin": "047400675711",
"name": "King C. Gillette Men's Style Master Cordless Stubble Trimmer with 4D Blade",
"price": "49.99",
};
PGdataLayer.ecomm={
"products": subCategory
};
PGdataLayer.event={
"category": "event_informational_action",
"action": "event_view_product_detail_page",
"label": "047400675711",
"value": "49.99"
};
</script>
<script>
(function(w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({
'gtm.start': new Date().getTime(),
event: 'gtm.js'
});
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l != 'dataLayer' ? '&l=' + l : '';
j.async = true;
j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-N94XXFB');
</script>
</head>
<body>
<svg data-src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/stencil/e3379640-6527-013c-dc29-1e351524a519/e/79f5f440-9ff8-013b-95fd-2e5f2ae1c98a/img/icon-sprite.svg" class="icons-svg-sprite"></svg>
<header class="header redesign-header mainBlue alt jwTransFlip en " role="banner">
<div class="header-holder">
<!-- En Menu -->
<div class="navigation-desktop ">
<a id="products-selector" href="/en/all-products">PRODUCTS</a>
<!-- <a id="selector-disabled" href="/en/razors-trimmers">GET STARTED</a> -->
<a href="/en/all-products" id="selector-disabled">SHOP NOW</a>
<a href="javascript:void(0);" id="tips-selector">SHAVING TIPS</a>
<a href="javascript:void(0);" id="about-us-selector">ABOUT US</a>
</div>
<div id="mobile-nav-toggler" class="navigation-mobile">
<img class="dark mainBlue alt" src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/stencil/e3379640-6527-013c-dc29-1e351524a519/e/79f5f440-9ff8-013b-95fd-2e5f2ae1c98a/img/icons/ic-menu.svg" alt="Hamburger Menu">
</div>
<div class="searchIconToggle">
<svg xmlns="http://www.w3.org/2000/svg" class="search-icon" width="24" height="24" viewBox="0 0 24 24">
<g fill="none" fill-rule="evenodd">
<path d="M0 0h24v24H0z" />
<path fill="#182F6E"
d="M16.165 14.377l5.59 5.589c.893.919-.87 2.682-1.79 1.788l-5.588-5.589c-3.08 2.21-7.378 1.888-10.086-.82a7.811 7.811 0 0 1 0-11.054 7.811 7.811 0 0 1 11.054 0c2.708 2.708 3.03 7.005.82 10.086zM5.675 5.676c-2.234 2.26-2.234 5.894 0 8.128 2.262 2.261 5.895 2.261 8.13 0 2.26-2.234 2.26-5.867 0-8.128-2.235-2.235-5.868-2.235-8.13 0z" />
</g>
</svg>
</div>
<div class="top-bar-left logo-placeholder">
<a href="/" class="event_menu_click jwTransLink" data-action-detail="header: Logo">
<img class="white mainBlue alt" src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/stencil/e3379640-6527-013c-dc29-1e351524a519/e/79f5f440-9ff8-013b-95fd-2e5f2ae1c98a/img/gil/icons/OnDemandLightNew.svg" alt="Gillette Logo"/>
<img class="dark mainBlue alt" src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/stencil/e3379640-6527-013c-dc29-1e351524a519/e/79f5f440-9ff8-013b-95fd-2e5f2ae1c98a/img/gil/icons/OnDemand.svg" alt="Gillette Logo"/>
</a>
</div>
<div class="top-bar-right">
<ul class="menu">
<li class="accountNav">
<a class="navUser-action login event_profile_login" data-action-detail="header: Account-Login" href="/login.php">
<span class="jwTransLbl">Login</span>
<svg width="20px" height="20px" viewBox="0 0 24 24" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg">
<desc>Created with Lunacy</desc>
<g id="Icons/Account">
<path d="M0 0L24 0L24 24L0 24L0 0Z" id="Bounding-Box" fill="none" stroke="none" />
<path d="M3.72161 17.7857C5.50121 19.2175 7.71624 19.9987 10.0002 19.9999C12.2838 20.0089 14.5002 19.2276 16.2736 17.7885C16.6747 17.4651 17.0506 17.1115 17.3978 16.7308C20.1554 13.6983 20.7837 9.28982 18.9831 5.60749C17.1824 1.92517 13.3175 -0.285438 9.23124 0.029762C5.14494 0.344962 1.66465 3.12214 0.449854 7.03707C-0.764937 10.952 0.531748 15.212 3.72161 17.7857L3.72161 17.7857ZM10.0002 2.3315C13.062 2.33063 15.8556 3.95124 17.1947 6.50513C18.5338 9.05902 18.1832 12.0979 16.2919 14.3312C15.8003 12.445 13.1703 11.0034 10.0002 11.0034C6.82795 11.0034 4.19935 12.4451 3.70825 14.3315C1.81705 12.0981 1.46657 9.05926 2.80564 6.50536C4.14472 3.95146 6.9383 2.33078 10.0002 2.3315L10.0002 2.3315ZM10.7462 9.91309C12.4926 9.50082 13.5742 7.75088 13.1619 6.00449C12.7496 4.2581 10.9997 3.17658 9.2533 3.58885C7.50691 4.00111 6.42539 5.75105 6.83765 7.49744C7.24992 9.24383 8.99986 10.3254 10.7462 9.91309Z" transform="translate(2 2)" id="Account" fill="#FFFFFF" stroke="none" />
</g>
</svg>
</a>
</li>
<li class="search">
<a class="navUser-action navUser-action--quickSearch"
aria-controls="quickSearch">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<g fill="none" fill-rule="evenodd">
<path d="M0 0h24v24H0z" />
<path fill="#FFFFFF"
d="M16.165 14.377l5.59 5.589c.893.919-.87 2.682-1.79 1.788l-5.588-5.589c-3.08 2.21-7.378 1.888-10.086-.82a7.811 7.811 0 0 1 0-11.054 7.811 7.811 0 0 1 11.054 0c2.708 2.708 3.03 7.005.82 10.086zM5.675 5.676c-2.234 2.26-2.234 5.894 0 8.128 2.262 2.261 5.895 2.261 8.13 0 2.26-2.234 2.26-5.867 0-8.128-2.235-2.235-5.868-2.235-8.13 0z" />
</g>
</svg>
<div class="space"></div>
</a>
</li>
<li class="navUser-item navUser-item--cart">
<a
class="navUser-action"
href="/cart.php" class="event_view_cart" data-action-detail="header: Cart">
<div class="joy-cart">
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg">
<desc>Created with Lunacy</desc>
<g id="Cart">
<path d="M0 0L24 0L24 24L0 24L0 0Z" id="Bounding-Box" fill="none" stroke="none" />
<path d="M20.4004 16.8003L4.8001 16.8003C4.13734 16.8003 3.60007 16.2631 3.60007 15.6003L3.60007 2.40005L0 2.40005L0 0L4.8001 0C5.46285 4.0582e-17 6.00012 0.537269 6.00012 1.20002L6.00012 14.4003L19.4625 14.4003L21.7964 4.8001C23.0481 4.80069 23.5187 4.97065 23.746 5.26197C23.9733 5.55328 24.0537 5.93306 23.964 6.29149L21.564 15.8917C21.4303 16.4255 20.9507 16.8001 20.4004 16.8003ZM3.60007 21.6C3.60007 22.9255 4.67461 24 6.00012 24C7.32563 24 8.40017 22.9255 8.40017 21.6C8.40017 20.2744 7.32563 19.1999 6.00012 19.1999C4.67461 19.1999 3.60007 20.2744 3.60007 21.6ZM16.7999 21.6C16.7999 22.9255 17.8744 24 19.1999 24C20.5254 24 21.6 22.9255 21.6 21.6C21.6 20.7425 21.1425 19.9502 20.3999 19.5214C19.6574 19.0927 18.7425 19.0927 17.9999 19.5214C17.2573 19.9502 16.7999 20.7425 16.7999 21.6Z" id="cart" fill="#FFFFFF" stroke="none" />
</g>
</svg>
<span class="countPill cart-quantity">0</span>
</div>
</a>
</li>
<!-- <li class="translation">
<span class="jwlangChange jwl-en jwlangChange">EN</span>
<label class="switch">
<input type="checkbox" class="translateTrigger">
<span class="slider round">EN</span>
</label>
<span class="jwlangChange jwl-fr ">FR</span>
</li> -->
<li class="language-switch">
<div class="barline" id="language-switcher">
<span class="selector " id="english-selector">EN</span>
<div id="lang-circle" class="dot">
EN
</div>
<span class="selector active" id="french-selector">FR</span>
</div>
</li>
</ul>
</div>
<div class="dropdown dropdown--quickSearch " id="quickSearch" aria-hidden="true" tabindex="-1"
data-prevent-quick-search-close>
<div class="container jwTransFlip en" tabindex="-1">
<form class="form" action="/search.php">
<fieldset class="form-fieldset">
<div class="form-field">
<label class="is-srOnly" for="en_search_query">Search</label>
<input tabindex="-1" class="form-input js-search-field" data-search-quick name="search_query" id="en_search_query" data-error-message="Search field cannot be empty." placeholder="Enter your search here..." autocomplete="off">
<button type="submit" tabindex="-1" class="search-btn"><span>Search</span></button>
</div>
</fieldset>
</form>
<section class="quickSearchResults" data-bind="html: results"></section>
</div> </div>
</div>
<div class="desktop-navigation-section">
<!-- Products dropdown -->
<div class="navigation-wrapper">
<ul>
<li id="lab-button" class='button-disabled active'><a href="/exfoliating-bar-razor-by-gillette">GilletteLabs (10)</a></li>
<li id="intimate-button" class='button-disabled'><a href="/en/the-latest-from-gillette/gillette-intimate-for-pubic-hair-and-skin">Gillette INTIMATE™ (3)</a></li> <li id="hr-button" class='button-disabled'><a href="/en/heated-razor">Heated Razor (3)</a></li>
<li id="kgc-button" class="button-disabled"><a href="/en/king-c-gillette">King C. Gillette (4)</a></li>
<li id="beard-care-button" class="button-disabled"><a href="/en/care-body">Care & Body (15)</a></li>
<li id="ondemand-button" class='button-disabled'><a href="/en/razors-trimmers">Gillette On Demand (21)</a></li>
<li id="braun-button" class='button-disabled'><a href="/all-products/braun/">Braun (21)</a></li>
<li id="plp-button" class="button-disabled"><a href="/en/all-products">All Products</a></li>
</ul>
<div class="navigation-product-wrapper">
<div id="lab-products" class="category-section active">
<div class="navitagion-single-product">
<a href="/gillette-labs/gillette-labs-exfoliating-bar-starter-kit/"><img src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/product_images/uploaded_images/gillette-razor-box-400x400.jpg" alt="GilletteLabs with Exfoliating Bar Razor Starter Kit"></a>
<a href="/gillette-labs/gillette-labs-exfoliating-bar-starter-kit/"><h3>GilletteLabs with Exfoliating Bar <br/>Razor Starter Kit</h3></a>
</div>
<div class="navitagion-single-product">
<a href="/gillette-labs/gillette-labs-exfoliating-bar-razor-with-travel-case/"><img src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/product_images/uploaded_images/gillette-razor-400x400.jpg" alt="GilletteLabs with Exfoliating Bar Razor with Travel Case"></a>
<a href="/gillette-labs/gillette-labs-exfoliating-bar-razor-with-travel-case/"><h3>GilletteLabs with Exfoliating Bar <br/>Razor with Travel Case</h3></a>
</div>
<div class="navitagion-single-product">
<a href="/gillette-labs/gillette-labs-refill-kit-with-shave-gel/"><img src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/product_images/uploaded_images/gillette-shave-cream-400x400.jpg" alt="GilletteLabs Rapid Foaming Shave Gel & 4 Blade Refills"></a>
<a href="/gillette-labs/gillette-labs-refill-kit-with-shave-gel/"><h3>GilletteLabs Rapid Foaming Shave <br/>Gel & 4 Blade Refills</h3></a>
</div>
</div>
<div id="gillette-intimate" class="category-section">
<div class="navitagion-single-product">
<a href="/gillette-intimate-trimmer/"><img src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/original/image-manager/80724459.jpg" alt="Gillette INTIMATE™ Pubic Hair Trimmer"></a>
<a href="/gillette-intimate-trimmer/"><h3>Gillette INTIMATE™ Pubic Hair Trimmer</h3></a>
</div>
<div class="navitagion-single-product">
<a href="/gillette-intimate-pubic-hair-razor-bundle/"><img src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/original/image-manager/mig-razor-bundle-v2.jpg" alt="Gillette INTIMATE ™ Pubic Hair Razor Bundle"></a>
<a href="/gillette-intimate-pubic-hair-razor-bundle/"><h3>Gillette INTIMATE ™ Pubic Hair Razor Bundle</h3></a>
</div>
<div class="navitagion-single-product">
<a href="/gillette-intimate-refill-bundle/"><img src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/original/image-manager/mig-refill-bundle-v2.jpg" alt="Gillette INTIMATE ™ Pubic Hair Razor Cartridges Bundle"></a>
<a href="/gillette-intimate-refill-bundle/"><h3>Gillette INTIMATE ™ Pubic Hair Razor Cartridges Bundle</h3></a>
</div>
</div>
<div id="hr-products" class="category-section">
<div class="navitagion-single-product">
<a href="/gillette-labs-heated-razor"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/menu-facebody-pureshavecream22.png" alt="Heated Razor Starter Kit by GilletteLabs"></a>
<a href="/gillette-labs-heated-razor"><h3>Heated Razor Starter Kit by GilletteLabs</h3></a>
</div>
<div class="navitagion-single-product">
<a href="/gillette-labs-heated-razor-blade-refills-subscription"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/menu-facebody-enrichbeardandfacemoisturizer-1-.png" alt="GilletteLabs Heated Razor Blade Refills"></a>
<a href="/gillette-labs-heated-razor-blade-refills-subscription"><h3>GilletteLabs Heated Razor<br/> Blade Refills</h3></a>
</div>
<div class="navitagion-single-product">
<a href="/bugatti-heated-razor-by-gillettelabs"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/images/stencil/1280x1280/products/167/751/Bugatti_Heated_Razor__92050.1636052385.jpg" alt="GilletteLabs Bugatti Special Edition Heated Razor"></a>
<a href="/bugatti-heated-razor-by-gillettelabs"><h3>GilletteLabs Bugatti<br/> Special Edition Heated Razor</h3></a>
</div>
</div>
<div id="kgc-products" class="category-section">
<div class="navitagion-single-product">
<a href="/bundle-trimmer-beard-oil/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/menu-facebody-pureshavecream.png" alt="Trimmer & Beard Oil"></a>
<a href="/bundle-trimmer-beard-oil/"><h3>Trimmer & Beard Oil</h3></a>
</div>
<div class="navitagion-single-product">
<a href="/bundle-double-edge-safety-razor-10ct-refills-shave-gel/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/menu-facebody-enrichbeardandfacemoisturizer.png" alt="Double Edge Safety Razor & 10ct Refills & Shave Gel"></a>
<a href="/bundle-double-edge-safety-razor-10ct-refills-shave-gel/"><h3>Double Edge Safety Razor<br/> & 10ct Refills & Shave Gel</h3></a>
</div>
<div class="navitagion-single-product">
<a href="/bundle-beard-wash-beard-oil/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/menu-facebody-2-in1proglideshavegel.png" alt="Beard Wash & Beard Oil"></a>
<a href="/bundle-beard-wash-beard-oil/"><h3>Beard Wash & Beard Oil</h3></a>
</div>
<div class="navitagion-single-product">
<a href="/bundle-neck-razor-4ct-refills-shave-gel/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/4-neck-razor-4ct-refill-shave-gel.png" alt="Neck Razor & 4ct refills & Shave gel"></a>
<a href="/bundle-neck-razor-4ct-refills-shave-gel/"><h3>8 Neck Razor,<br/> Blade Refills &<br/> Transparent Shave Gel</h3></a>
</div>
</div>
<div id="bc-products" class="category-section">
<div class="navitagion-single-product">
<a href="/king-c-gillette-beard-trimmer-kit/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/menu-products-kcg-2-doubleedge.png" alt="Bundle: King C. Gillette Beard Trimmer Kit"></a>
<a href="/king-c-gillette-beard-trimmer-kit/"><h3>Bundle: King C. Gillette<br/> Beard Trimmer Kit</h3></a>
</div>
<div class="navitagion-single-product">
<a href="/bundle-trimmer-beard-oil/"><img src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/products/125/images/445/Trimmer-Beard-Oil-Bundle__20152.1611671911.386.513.jpg" alt="Bundle: Trimmer & Beard Oil"></a>
<a href="/bundle-trimmer-beard-oil/"><h3>Bundle: Trimmer & Beard Oil</h3></a>
</div>
<div class="navitagion-single-product">
<a href="/bundle-beard-wash-beard-oil/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/menu-products-kcg-3-beardwash.png" alt="Beard Wash & Beard Oil"></a>
<a href="/bundle-beard-wash-beard-oil/"><h3>Bundle: Beard Wash & Beard Oil</h3></a>
</div>
<div class="navitagion-single-product">
<a href="/bundle-double-edge-safety-razor-10ct-refills-shave-gel/"><img src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/products/133/images/507/Double-Edge-Razor-Refills-Shave-Gel-Bundle__06557.1611673426.386.513.jpg" alt="Bundle: Double Edge Safety Razor & 10ct Refills & Shave Gel"></a>
<a href="/bundle-double-edge-safety-razor-10ct-refills-shave-gel/"><h3>Bundle: Double Edge Safety Razor & 10ct Refills & Shave Gel</h3></a>
</div>
</div>
<div id="ondemand-products" class="category-section">
<div class="navitagion-single-product">
<a href="/gillette-proGlide-power/"><img src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/products/176/images/1050/PDP_picture__48545.1698763664.386.513.png" alt="Gillette ProGlide Power"></a>
<a href="/gillette-proGlide-power/"><h3>Gillette ProGlide Power</h3></a>
</div>
<div class="navitagion-single-product">
<a href="/gillette-skinguard/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/menu-facebody-pureshavecream33.png" alt="Gillette SkinGuard"></a>
<a href="/gillette-skinguard/"><h3>Gillette SkinGuard</h3></a>
</div>
<div class="navitagion-single-product">
<a href="/fusion5-razor/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/menu-facebody-enrichbeardandfacemoisturizer-2-.png" alt="Gillette FUSION5"></a>
<a href="/fusion5-razor/"><h3>Gillette FUSION5</h3></a>
</div>
<div class="navitagion-single-product">
<a href="/mach3-razor/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/menu-facebody-cleargelantiperspirant-1-.png" alt="Gillette MACH3"></a>
<a href="/mach3-razor/"><h3>Gillette MACH3</h3></a>
</div>
</div>
<div id="braun-products" class="category-section">
<div class="navitagion-single-product">
<a href="/braun-electric-shaver-series-9-pro-with-powercase-9477cc"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/s9.jpg" alt="Series 9 Pro"></a>
<a href="/braun-electric-shaver-series-9-pro-with-powercase-9477cc"><h3>Series 9 Pro</h3></a>
</div>
<div class="navitagion-single-product">
<a href="/intense-pulsed-light-ipl-silk-expert-pro-5-gold-with-precision-head-venus-razor-and-printed-beauty-pouch-pl5137/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/menu-braun-silkexpertpro5ipl.png" alt="Silk-expert Pro 5 IPL"></a>
<a href="/intense-pulsed-light-ipl-silk-expert-pro-5-gold-with-precision-head-venus-razor-and-printed-beauty-pouch-pl5137/"><h3>Silk-expert Pro 5 IPL</h3></a>
</div>
<div class="navitagion-single-product">
<a href="/braun-series-9-pro-electric-shaver-9419s"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/s9progold.jpg" alt="Series 9 Pro Gold"></a>
<a href="/braun-series-9-pro-electric-shaver-9419s"><h3>Series 9 Pro Gold</h3></a>
</div>
<div class="navitagion-single-product">
<a href="/epilator-silk-epil-9-flex-beauty-set-white-gold-with-8-extras-including-body-massage-pad-attachment-and-facespa-device-wet-and-dry-usage-ses-9300-3d/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/menu-braun-silkepil9flexepilator.png" alt="Silk·épil 9 Flex Epilator"></a>
<a href="/epilator-silk-epil-9-flex-beauty-set-white-gold-with-8-extras-including-body-massage-pad-attachment-and-facespa-device-wet-and-dry-usage-ses-9300-3d/"><h3>Silk·épil 9 Flex Epilator</h3></a>
</div>
<!-- <div class="navitagion-single-product">
<a href="/epilator-silk-epil-9-rose-gold-with-7-extras-including-bikini-trimmer-wet-and-dry-usage-ses-9-890/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/menu-braun-silkepilepilator.png" alt="Silk·épil 9 Epilator"></a>
<a href="/epilator-silk-epil-9-rose-gold-with-7-extras-including-bikini-trimmer-wet-and-dry-usage-ses-9-890/"><h3>Silk·épil 9 Epilator</h3></a>
</div> -->
</div>
</div>
</div>
<!-- Shaving Tips dropdown -->
<div class="tips-wrapper">
<ul>
<li id="shavingTips-button" class='button-disabled active'><a href="/shaving-tips/#expertise">Shaving</a></li>
<li id="stylingTips-button" class='button-disabled'><a href="/shaving-tips/#craftsmanship-quality">Styling</a></li>
<li id="manscapingTips-button" class='button-disabled'><a href="/shaving-tips/#brotherhood">Manscaping</a></li>
</ul>
<div class="tips-posts-wrapper">
<div id="shaving-tips" class="category-section active">
<div class="tips-single-post">
<a href="/how-to-shave-your-face/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/1-howtoshaveyourface.png" alt="How to Shave Your Face"></a>
<a href="/how-to-shave-your-face/"><h3>How to Shave Your Face</h3></a>
</div>
<div class="tips-single-post">
<a href="/how-to-prevent-razor-bumps-ingrown-hair/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/2-howtopreventrazorburn.png" alt="How to Prevent and Treat Razor Burn"></a>
<a href="/how-to-prevent-razor-bumps-ingrown-hair/"><h3>How to Prevent and Treat Razor Burn</h3></a>
</div>
<div class="tips-single-post">
<a href="/how-to-trim-a-beard/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/3-howtotrimabeard.jpg" alt="How to Trim a Beard"></a>
<a href="/how-to-trim-a-beard/"><h3>How to Trim a Beard</h3></a>
</div>
<div class="tips-single-post">
<a href="/wet-shaving-or-dry-shaving/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/4-wtshavedryshave.jpg" alt="To Wet Shave or to Dry Shave"></a>
<a href="/wet-shaving-or-dry-shaving/"><h3>To Wet Shave or to Dry Shave</h3></a>
</div>
</div>
<div id="styling-tips" class="category-section">
<div class="tips-single-post">
<a href="/top-15-beard-styles-for-men/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/1-top15.png" alt="Top 15 Beard Styles for Men"></a>
<a href="/top-15-beard-styles-for-men/"><h3>Top 15 Beard Styles for Men</h3></a>
</div>
<div class="tips-single-post">
<a href="/top-mustache-styles-for-men/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/2-topmustache.png" alt="Top Mustache Styles for Men"></a>
<a href="/top-mustache-styles-for-men/"><h3>Top Mustache Styles for Men</h3></a>
</div>
<div class="tips-single-post">
<a href="/the-3-day-stubble-beard-scruff/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/3-scruffybeard.png" alt="Scruffy Beard Styles: The 3-Day Stubble Beard"></a>
<a href="/the-3-day-stubble-beard-scruff/"><h3>Scruffy Beard Styles:<br/> The 3-Day Stubble Beard</h3></a>
</div>
<div class="tips-single-post">
<a href="/the-circle-beard-goatee-gillette/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/4-howtotrim.png" alt="How to Trim a Goatee: The Circle Beard"></a>
<a href="/the-circle-beard-goatee-gillette/"><h3>How to Trim a Goatee:<br/> The Circle Beard</h3></a>
</div>
</div>
<div id="manscaping-tips" class="category-section">
<div class="tips-single-post">
<a href="/manscaping-body-grooming-tips/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/1-tipsforbody.png" alt="Tips for Body Grooming"></a>
<a href="/manscaping-body-grooming-tips/"><h3>Tips for Body Grooming</h3></a>
</div>
<div class="tips-single-post">
<a href="/how-to-shave-your-pubic-hair-manscaping-guide-tips/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/2-howtoshaveyourpubichair.png" alt="How to Shave Your Pubic Hair"></a>
<a href="/how-to-shave-your-pubic-hair-manscaping-guide-tips/"><h3>How to Shave Your Pubic Hair</h3></a>
</div>
<div class="tips-single-post">
<a href="/tips-for-back-shaving/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/3-howtoshaveyourback.png" alt="How to Shave Your Back"></a>
<a href="/tips-for-back-shaving/"><h3>How to Shave Your Back</h3></a>
</div>
<div class="tips-single-post">
<a href="/how-to-shave-armpits/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/4-howtoshaveyourarmpits.png" alt="How to Shave Your Armpits"></a>
<a href="/how-to-shave-armpits/"><h3>How to Shave Your Armpits</h3></a>
</div>
</div>
</div>
</div>
<!-- About Us dropdown -->
<div class="about-us-wrapper">
<ul>
<li id="our-story-button" class="button-disabled active"><a href="/our-story/">Our Story</a></li>
<li id="why-gillette-button" class="button-disabled"><a href="/why-gillette/">Why Gillette</a></li>
<li id="latest-from-gillette-button" class="button-disabled"><a href="javascript:void(0);">The Latest From Gillette</a></li>
<li id="faq-button" class="button-disabled"><a href="/en/faq/">FAQ</a></li>
</ul>
<div class="about-us-posts-wrapper">
<div id="our-story" class="category-section active">
<div class="about-single-post">
<a href="/our-story/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/gillette-nav-proglide-safetyrazor-400x400.jpeg" alt="Our Story"></a>
<a href="/our-story/"><h3>Our Story</h3></a>
</div>
</div>
<div id="why-gillette" class="category-section">
<div class="about-single-post">
<a href="/why-gillette/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/whygillettethumb.png" alt="Why Gillette"></a>
<a href="/why-gillette/"><h3>Why Gillette</h3></a>
</div>
</div>
<div id="faq-posts" class="category-section">
<div class="about-single-post">
<a href="/en/faq/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/1-faq.png" alt="FAQs"></a>
<a href="/en/faq/"><h3>FAQs</h3></a>
</div>
</div>
<div id="latest-from-gillette-posts" class="category-section">
<div class="about-single-post">
<a href="/en/king-c-gillette"><img src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/product_images/uploaded_images/1-latest-king-c-gillette.jpg" alt="KCG experience page"></a>
<a href="/en/king-c-gillette"><h3>King C. Gillette</h3></a>
</div>
<div class="about-single-post">
<a href="/gillette-labs-heated-razor/"><img src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/product_images/uploaded_images/2-hr-min.jpg" alt="HR experience page"></a>
<a href="/gillette-labs-heated-razor/"><h3>GilletteLabs</h3></a>
</div>
<div class="about-single-post">
<a href="https://www.terracycle.com/en-CA/brigades/gillette-razor-recycling-program-ca-en#@51.790760252351404:-93.93222021874999zoom:4"><img src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/product_images/uploaded_images/3-terracycle-min.jpg" alt="TerraCycle"></a>
<a href="https://www.terracycle.com/en-CA/brigades/gillette-razor-recycling-program-ca-en#@51.790760252351404:-93.93222021874999zoom:4"><h3>TerraCycle</h3></a>
</div>
</div>
</div>
</div>
</div>
<!-- EN mobile menu -->
<div class="mobile-navigation-section">
<div class="mobile-menu-content">
<span class="accountNav">
<a class="navUser-action login event_profile_login" data-action-detail="header: Account-Login" href="/login.php">
<svg width="30px" height="30px" viewBox="0 0 24 24" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg">
<desc>Created with Lunacy</desc>
<g id="Icons/Account">
<path d="M0 0L24 0L24 24L0 24L0 0Z" id="Bounding-Box" fill="none" stroke="none" />
<path d="M3.72161 17.7857C5.50121 19.2175 7.71624 19.9987 10.0002 19.9999C12.2838 20.0089 14.5002 19.2276 16.2736 17.7885C16.6747 17.4651 17.0506 17.1115 17.3978 16.7308C20.1554 13.6983 20.7837 9.28982 18.9831 5.60749C17.1824 1.92517 13.3175 -0.285438 9.23124 0.029762C5.14494 0.344962 1.66465 3.12214 0.449854 7.03707C-0.764937 10.952 0.531748 15.212 3.72161 17.7857L3.72161 17.7857ZM10.0002 2.3315C13.062 2.33063 15.8556 3.95124 17.1947 6.50513C18.5338 9.05902 18.1832 12.0979 16.2919 14.3312C15.8003 12.445 13.1703 11.0034 10.0002 11.0034C6.82795 11.0034 4.19935 12.4451 3.70825 14.3315C1.81705 12.0981 1.46657 9.05926 2.80564 6.50536C4.14472 3.95146 6.9383 2.33078 10.0002 2.3315L10.0002 2.3315ZM10.7462 9.91309C12.4926 9.50082 13.5742 7.75088 13.1619 6.00449C12.7496 4.2581 10.9997 3.17658 9.2533 3.58885C7.50691 4.00111 6.42539 5.75105 6.83765 7.49744C7.24992 9.24383 8.99986 10.3254 10.7462 9.91309Z" transform="translate(2 2)" id="Account" fill="#182F6E" stroke="none" />
</g>
</svg>
<span class="jwTransLbl">My Account</span>
</a>
<div id="mobile-nav-close"><img src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/stencil/e3379640-6527-013c-dc29-1e351524a519/e/79f5f440-9ff8-013b-95fd-2e5f2ae1c98a/img/modal/CloseX.png"></div>
</span>
<a href="#"><h3>PRODUCTS</h3></a>
<ul>
<li><a href="/exfoliating-bar-razor-by-gillette">GilletteLabs</a></li>
<li><a href="/en/gillette-intimate">Gillette INTIMATE™</a></li>
<li><a href="/en/heated-razor">Heated Razor</a></li>
<li><a href="/en/king-c-gillette-collection/">King C. Gillette</a></li>
<li><a href="/en/beard-care-body">Care & Body</a></li>
<li><a href="/en/razors-trimmers">Gillette On Demand</a></li>
<li><a href="/en/braun/">Braun</a></li>
<li><a href="/en/all-products">All Products</a></li>
</ul>
<a href="/en/all-products"><h3>SHOP NOW</h3></a>
</div>
<div class="mobile-menu-content-w-dropdown">
<a href="#" class="title">
<h3>SHAVING TIPS</h3>
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 24 24">
<path d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"/>
</svg>
</a>
<ul>
<li><a href="/shaving-tips/#expertise">Shaving</a></li>
<li><a href="/shaving-tips/#craftsmanship-quality">Styling</a></li>
<li><a href="/shaving-tips/#brotherhood">Manscaping</a></li>
</ul>
</div>
<div class="mobile-menu-content-w-dropdown">
<a href="#" class="title">
<h3>ABOUT US</h3>
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 24 24">
<path d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"/>
</svg>
</a>
<ul>
<li><a href="/our-story/">Our Story</a></li>
<li><a href="/why-gillette/">Why Gillette</a></li>
<li><a href="/en/king-c-gillette">King C. Gillette</a></li>
<li><a href="/gillette-labs-heated-razor/">GilletteLabs</a></li>
<li><a href="https://www.terracycle.com/en-CA/brigades/gillette-razor-recycling-program-ca-en#@51.790760252351404:-93.93222021874999zoom:4">TerraCycle</a></li>
<li><a href="/en/faq/">FAQ</a></li>
</ul>
</div>
</div>
<div class="searchBar">
<form action="/search.php">
<input data-search-quick name="search_query" class="searchInput" type="text"
placeholder="Enter your search here…" />
<button class="searchSubmit" type="submit">
<img class="" src="https://cdn11.bigcommerce.com/s-dukhrgn8mp/stencil/c1fa7960-0970-013a-e211-6a9962c47ecd/e/175519a0-083d-013a-7d61-0e0dd94ad2eb/img/icons/ic-search-white.svg" alt="Search icon white" />
</button>
</form>
<img class="closeSearchBar" src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/stencil/e3379640-6527-013c-dc29-1e351524a519/e/79f5f440-9ff8-013b-95fd-2e5f2ae1c98a/img/modal/CloseX.png" alt="" />
</div>
</header>
<header class="header redesign-header mainBlue alt jwTransFlip fr " role="banner">
<div class="header-holder">
<!-- FR menu -->
<div class="navigation-desktop">
<ul class="limited">
<li><a id="products-selector-fr" href="/fr/all-products">PRODUITS</a></li>
<!-- <a id="selector-disabled-fr" href="/fr/razors-trimmers">Magasinez maintenat</a> -->
<li><a href="/fr/all-products" id="selector-disabled-fr">MAGASINER<br>MAINTENANT</a></li>
<li><a href="javascript:void(0);" id="tips-selector-fr">CONSEILS<br>DE RASAGE</a></li>
<li><a href="javascript:void(0);" id="about-us-selector-fr">À PROPOS<br>DE NOUS</a></li>
</ul>
</div>
<div id="mobile-nav-toggler-fr" class="navigation-mobile">
<img class="dark mainBlue alt" src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/stencil/e3379640-6527-013c-dc29-1e351524a519/e/79f5f440-9ff8-013b-95fd-2e5f2ae1c98a/img/icons/ic-menu.svg" alt=" Navigation Menu">
</div>
<div class="searchIconToggle">
<svg xmlns="http://www.w3.org/2000/svg" class="search-icon" width="24" height="24" viewBox="0 0 24 24">
<g fill="none" fill-rule="evenodd">
<path d="M0 0h24v24H0z" />
<path fill="#182F6E"
d="M16.165 14.377l5.59 5.589c.893.919-.87 2.682-1.79 1.788l-5.588-5.589c-3.08 2.21-7.378 1.888-10.086-.82a7.811 7.811 0 0 1 0-11.054 7.811 7.811 0 0 1 11.054 0c2.708 2.708 3.03 7.005.82 10.086zM5.675 5.676c-2.234 2.26-2.234 5.894 0 8.128 2.262 2.261 5.895 2.261 8.13 0 2.26-2.234 2.26-5.867 0-8.128-2.235-2.235-5.868-2.235-8.13 0z" />
</g>
</svg>
</div>
<div class="top-bar-left logo-placeholder">
<a href="/" class="event_menu_click jwTransLink" data-action-detail="header: Logo">
<img class="white mainBlue alt" src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/stencil/e3379640-6527-013c-dc29-1e351524a519/e/79f5f440-9ff8-013b-95fd-2e5f2ae1c98a/img/gil/icons/OnDemandLightNew.svg" alt="Gillette Logo"/>
<img class="dark mainBlue alt" src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/stencil/e3379640-6527-013c-dc29-1e351524a519/e/79f5f440-9ff8-013b-95fd-2e5f2ae1c98a/img/gil/icons/OnDemand.svg" alt="Gillette Logo"/>
</a>
</div>
<div class="top-bar-right">
<ul class="menu">
<li class="accountNav">
<a class="navUser-action login event_profile_login" data-action-detail="header: Account-Login" href="/login.php">
<span class="jwTransLbl">OUVRIR UNE SESSION</span>
<svg width="20px" height="20px" viewBox="0 0 24 24" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg">
<desc>Created with Lunacy</desc>
<g id="Icons/Account">
<path d="M0 0L24 0L24 24L0 24L0 0Z" id="Bounding-Box" fill="none" stroke="none" />
<path d="M3.72161 17.7857C5.50121 19.2175 7.71624 19.9987 10.0002 19.9999C12.2838 20.0089 14.5002 19.2276 16.2736 17.7885C16.6747 17.4651 17.0506 17.1115 17.3978 16.7308C20.1554 13.6983 20.7837 9.28982 18.9831 5.60749C17.1824 1.92517 13.3175 -0.285438 9.23124 0.029762C5.14494 0.344962 1.66465 3.12214 0.449854 7.03707C-0.764937 10.952 0.531748 15.212 3.72161 17.7857L3.72161 17.7857ZM10.0002 2.3315C13.062 2.33063 15.8556 3.95124 17.1947 6.50513C18.5338 9.05902 18.1832 12.0979 16.2919 14.3312C15.8003 12.445 13.1703 11.0034 10.0002 11.0034C6.82795 11.0034 4.19935 12.4451 3.70825 14.3315C1.81705 12.0981 1.46657 9.05926 2.80564 6.50536C4.14472 3.95146 6.9383 2.33078 10.0002 2.3315L10.0002 2.3315ZM10.7462 9.91309C12.4926 9.50082 13.5742 7.75088 13.1619 6.00449C12.7496 4.2581 10.9997 3.17658 9.2533 3.58885C7.50691 4.00111 6.42539 5.75105 6.83765 7.49744C7.24992 9.24383 8.99986 10.3254 10.7462 9.91309Z" transform="translate(2 2)" id="Account" fill="#FFFFFF" stroke="none" />
</g>
</svg>
</a>
</li>
<li class="search">
<a class="navUser-action navUser-action--quickSearch"
aria-controls="quickSearch">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<g fill="none" fill-rule="evenodd">
<path d="M0 0h24v24H0z" />
<path fill="#FFFFFF"
d="M16.165 14.377l5.59 5.589c.893.919-.87 2.682-1.79 1.788l-5.588-5.589c-3.08 2.21-7.378 1.888-10.086-.82a7.811 7.811 0 0 1 0-11.054 7.811 7.811 0 0 1 11.054 0c2.708 2.708 3.03 7.005.82 10.086zM5.675 5.676c-2.234 2.26-2.234 5.894 0 8.128 2.262 2.261 5.895 2.261 8.13 0 2.26-2.234 2.26-5.867 0-8.128-2.235-2.235-5.868-2.235-8.13 0z" />
</g>
</svg>
<div class="space"></div>
</a>
</li>
<li class="navUser-item navUser-item--cart">
<a
class="navUser-action"
href="/cart.php" class="event_view_cart" data-action-detail="header: Cart">
<div class="joy-cart">
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg">
<desc>Created with Lunacy</desc>
<g id="Cart">
<path d="M0 0L24 0L24 24L0 24L0 0Z" id="Bounding-Box" fill="none" stroke="none" />
<path d="M20.4004 16.8003L4.8001 16.8003C4.13734 16.8003 3.60007 16.2631 3.60007 15.6003L3.60007 2.40005L0 2.40005L0 0L4.8001 0C5.46285 4.0582e-17 6.00012 0.537269 6.00012 1.20002L6.00012 14.4003L19.4625 14.4003L21.7964 4.8001C23.0481 4.80069 23.5187 4.97065 23.746 5.26197C23.9733 5.55328 24.0537 5.93306 23.964 6.29149L21.564 15.8917C21.4303 16.4255 20.9507 16.8001 20.4004 16.8003ZM3.60007 21.6C3.60007 22.9255 4.67461 24 6.00012 24C7.32563 24 8.40017 22.9255 8.40017 21.6C8.40017 20.2744 7.32563 19.1999 6.00012 19.1999C4.67461 19.1999 3.60007 20.2744 3.60007 21.6ZM16.7999 21.6C16.7999 22.9255 17.8744 24 19.1999 24C20.5254 24 21.6 22.9255 21.6 21.6C21.6 20.7425 21.1425 19.9502 20.3999 19.5214C19.6574 19.0927 18.7425 19.0927 17.9999 19.5214C17.2573 19.9502 16.7999 20.7425 16.7999 21.6Z" id="cart" fill="#FFFFFF" stroke="none" />
</g>
</svg>
<span class="countPill cart-quantity">0</span>
</div>
</a>
</li>
<!-- <li class="translation">
<span class="jwlangChange jwl-en jwlangChange">EN</span>
<label class="switch">
<input type="checkbox" class="translateTrigger">
<span class="slider round">EN</span>
</label>
<span class="jwlangChange jwl-fr ">FR</span>
</li> -->
<li class="language-switch">
<div class="barline" id="language-switcher-fr">
<span class="selector " id="english-selector-fr">EN</span>
<div id="lang-circle-fr" class="dot">
EN
</div>
<span class="selector active" id="french-selector-fr">FR</span>
</div>
</li>
</ul>
</div>
</div>
<div class="desktop-navigation-section">
<!-- Products dropdown -->
<div class="navigation-wrapper">
<ul>
<li id="lab-button-fr" class='button-disabled active'><a href="/exfoliating-bar-razor-by-gillette">GilletteLabs (3)</a></li>
<li id="intimate-button-fr" class='button-disabled'><a href="/fr/the-latest-from-gillette/gillette-intimate-for-pubic-hair-and-skin">Gillette INTIMATE™ (3)</a></li>
<li id="hr-button-fr" class='button-disabled'><a href="/fr/heated-razor">Rasoir chauffant (10)</a></li>
<li id="kgc-button-fr" class="button-disabled"><a href="/fr/king-c-gillette">King C. Gillette (3)</a></li>
<li id="beard-care-button-fr" class="button-disabled"><a href="/fr/beard-care-body/">Soins du corps et de<br>la barbe (4)</a></li>
<li id="ondemand-button-fr" class='button-disabled'><a href="/fr/razors-trimmers/">Gillette On Demand (15)</a></li>
<li id="braun-button-fr" class='button-disabled'><a href="/fr/braun/">Braun (21)</a></li>
<li id="plp-button-fr" class="button-disabled"><a href="/fr/all-products">Tous les produits</a></li>
</ul>
<div class="navigation-product-wrapper">
<div id="lab-products-fr" class="category-section active">
<div class="navitagion-single-product">
<a href="/gillette-labs/gillette-labs-exfoliating-bar-starter-kit/"><img src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/product_images/uploaded_images/gillette-razor-box-400x400.jpg" alt="Trousse de départ du rasoir GilletteLabs avec barre exfoliante"></a>
<a href="/gillette-labs/gillette-labs-exfoliating-bar-starter-kit/"><h3>Trousse de départ du rasoir GilletteLabs <br/> avec barre exfoliante</h3></a>
</div>
<div class="navitagion-single-product">
<a href="/gillette-intimate-pubic-hair-razor-bundle/"><img src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/original/image-manager/mig-razor-bundle-v2.jpg" alt="Ensemble de rasoir pour poils pubiens Gillette INTIMATE™"></a>
<a href="/gillette-labs/gillette-labs-exfoliating-bar-razor-with-travel-case/"><h3>Rasoir GilletteLabs avec barre <br/> exfoliante et étui de voyage</h3></a>
</div>
<div class="navitagion-single-product">
<a href="/gillette-labs/gillette-labs-refill-kit-with-shave-gel/"><img src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/product_images/uploaded_images/gillette-shave-cream-400x400.jpg" alt="Gel à raser qui mousse rapidement GilletteLabs et quatre cartouches de rechange"></a>
<a href="/gillette-labs/gillette-labs-refill-kit-with-shave-gel/"><h3>Gel à raser qui mousse rapidement GilletteLabs <br/> et quatre cartouches de rechange</h3></a>
</div>
</div>
<div id="gillette-intimate-fr" class="category-section">
<div class="navitagion-single-product">
<a href="/gillette-intimate-trimmer/"><img src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/original/image-manager/80724459.jpg" alt="Tondeuse pour poils pubiens Gillette INTIMATE™"></a>
<a href="/gillette-intimate-trimmer/"><h3>Tondeuse pour poils pubiens Gillette INTIMATE™</h3></a>
</div>
<div class="navitagion-single-product">
<a href="/gillette-intimate-pubic-hair-razor-bundle/"><img src="https://cdn11.bigcommerce.com/s-wiclpaiiam/images/stencil/original/image-manager/mig-razor-bundle-v2.jpg" alt="Ensemble de rasoir pour poils pubiens Gillette INTIMATE™"></a>
<a href="/gillette-intimate-pubic-hair-razor-bundle/"><h3>Ensemble de rasoir pour poils pubiens Gillette INTIMATE™</h3></a>
</div>
<div class="navitagion-single-product">
<a href="/gillette-intimate-refill-bundle/"><img src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/original/image-manager/mig-refill-bundle-v2.jpg" alt="Ensemble de cartouches pour rasoir pour poils pubiens Gillette INTIMATE™"></a>
<a href="/gillette-intimate-refill-bundle/"><h3>Ensemble de cartouches pour rasoir pour poils pubiens Gillette INTIMATE™</h3></a>
</div>
</div>
<div id="hr-products-fr" class="category-section">
<div class="navitagion-single-product">
<a href="/gillette-labs-heated-razor"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/menu-facebody-pureshavecream22.png" alt="Trousse de départ de rasoir chauffant GilletteLabs"></a>
<a href="/gillette-labs-heated-razor"><h3>Trousse de départ de rasoir chauffant GilletteLabs</h3></a>
</div>
<div class="navitagion-single-product">
<a href="/gillette-labs-heated-razor-blade-refills-subscription"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/menu-facebody-enrichbeardandfacemoisturizer-1-.png" alt="Cartouches de rechange pour rasoir chauffant GilletteLabs"></a>
<a href="/gillette-labs-heated-razor-blade-refills-subscription"><h3>Cartouches de rechange pour rasoir chauffant GilletteLabs</h3></a>
</div>
</div>
<div id="kgc-products-fr" class="category-section">
<div class="navitagion-single-product">
<a href="/bundle-trimmer-beard-oil/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/menu-facebody-pureshavecream.png" alt="Tondeuse et huile pour la barbe"></a>
<a href="/bundle-trimmer-beard-oil/"><h3>Tondeuse et huile pour la<br/> barbe</h3></a>
</div>
<div class="navitagion-single-product">
<a href="/bundle-double-edge-safety-razor-10ct-refills-shave-gel/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/menu-facebody-enrichbeardandfacemoisturizer.png" alt="Rasoir de sûreté à double tranchant, 10 cartouches et gel à raser"></a>
<a href="/bundle-double-edge-safety-razor-10ct-refills-shave-gel/"><h3>Rasoir de sûreté à double tranchant, 10 cartouches et gel à raser</h3></a>
</div>
<div class="navitagion-single-product">
<a href="/bundle-beard-wash-beard-oil/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/menu-facebody-2-in1proglideshavegel.png" alt="Nettoyant pour la barbe et huile pour la barbe"></a>
<a href="/bundle-beard-wash-beard-oil/"><h3>Nettoyant pour la barbe et<br/> huile pour la barbe</h3></a>
</div>
<div class="navitagion-single-product">
<a href="/bundle-neck-razor-4ct-refills-shave-gel/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/4-neck-razor-4ct-refill-shave-gel.png" alt="Rasoir pour le cou, 4 cartouches et gel à raser"></a>
<a href="/bundle-neck-razor-4ct-refills-shave-gel/"><h3>Rasoir pour le cou,<br/> 4 cartouches et gel à raser</h3></a>
</div>
</div>
<div id="bc-products-fr" class="category-section">
<div class="navitagion-single-product">
<a href="/king-c-gillette-beard-trimmer-kit/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/menu-products-kcg-2-doubleedge.png" alt="Bundle: King C. Gillette Beard Trimmer Kit"></a>
<a href="/king-c-gillette-beard-trimmer-kit/"><h3>Ensemble: Trousse pour taille<br/> de la barbe King C. Gillette</h3></a>
</div>
<div class="navitagion-single-product">
<a href="/bundle-trimmer-beard-oil/"><img src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/products/125/images/445/Trimmer-Beard-Oil-Bundle__20152.1611671911.386.513.jpg" alt="Bundle: Trimmer & Beard Oil"></a>
<a href="/bundle-trimmer-beard-oil/"><h3>Ensemble: Tondeuse et huile à barbe</h3></a>
</div>
<div class="navitagion-single-product">
<a href="/bundle-beard-wash-beard-oil/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/menu-products-kcg-3-beardwash.png" alt="Beard Wash & Beard Oil"></a>
<a href="/bundle-beard-wash-beard-oil/"><h3>Ensemble: Nettoyant pour la barbe et<br/> huile pour la barbe</h3></a>
</div>
<div class="navitagion-single-product">
<a href="/bundle-double-edge-safety-razor-10ct-refills-shave-gel/"><img src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/products/133/images/507/Double-Edge-Razor-Refills-Shave-Gel-Bundle__06557.1611673426.386.513.jpg" alt="Bundle: Double Edge Safety Razor & 10ct Refills & Shave Gel"></a>
<a href="/bundle-double-edge-safety-razor-10ct-refills-shave-gel/"><h3>Ensemble: Rasoir de sûreté à double tranchant et recharges 10ct et gel à raser</h3></a>
</div>
</div>
<div id="ondemand-products-fr" class="category-section">
<div class="navitagion-single-product">
<a href="/gillette-proGlide-power/"><img src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/products/176/images/1050/PDP_picture__48545.1698763664.386.513.png" alt="Gillette ProGlide Power"></a>
<a href="/gillette-proGlide-power/"><h3>Gillette ProGlide Power</h3></a>
</div>
<div class="navitagion-single-product">
<a href="/fr/razors-trimmers"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/menu-facebody-pureshavecream33.png" alt="Gillette SkinGuard"></a>
<a href="/fr/razors-trimmers"><h3>Gillette SkinGuard</h3></a>
</div>
<div class="navitagion-single-product">
<a href="/fr/razors-trimmers"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/menu-facebody-enrichbeardandfacemoisturizer-2-.png" alt="Gillette FUSION5"></a>
<a href="/fr/razors-trimmers"><h3>Gillette FUSION5</h3></a>
</div>
<div class="navitagion-single-product">
<a href="/fr/razors-trimmers"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/menu-facebody-cleargelantiperspirant-1-.png" alt="Gillette MACH3"></a>
<a href="/fr/razors-trimmers"><h3>Gillette MACH3</h3></a>
</div>
</div>
<div id="braun-products-fr" class="category-section">
<div class="navitagion-single-product">
<a href="/braun-electric-shaver-series-9-pro-with-powercase-9477cc"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/s9.jpg" alt="Series 9 Pro"></a>
<a href="/braun-electric-shaver-series-9-pro-with-powercase-9477cc"><h3>Series 9 Pro</h3></a>
</div>
<div class="navitagion-single-product">
<a href="/intense-pulsed-light-ipl-silk-expert-pro-5-gold-with-precision-head-venus-razor-and-printed-beauty-pouch-pl5137/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/menu-braun-silkexpertpro5ipl.png" alt="Silk-expert Pro 5 IPL"></a>
<a href="/intense-pulsed-light-ipl-silk-expert-pro-5-gold-with-precision-head-venus-razor-and-printed-beauty-pouch-pl5137/"><h3>Silk-expert Pro 5 IPL</h3></a>
</div>
<div class="navitagion-single-product">
<a href="/braun-series-9-pro-electric-shaver-9419s"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/s9progold.jpg" alt="Series 9 Pro Gold"></a>
<a href="/braun-series-9-pro-electric-shaver-9419s"><h3>Series 9 Pro Gold</h3></a>
</div>
<div class="navitagion-single-product">
<a href="/epilator-silk-epil-9-flex-beauty-set-white-gold-with-8-extras-including-body-massage-pad-attachment-and-facespa-device-wet-and-dry-usage-ses-9300-3d/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/braun-category-epilators-silk-epil-9-flex.jpg" alt="Silk·épil 9 Flex Epilator"></a>
<a href="/epilator-silk-epil-9-flex-beauty-set-white-gold-with-8-extras-including-body-massage-pad-attachment-and-facespa-device-wet-and-dry-usage-ses-9300-3d/"><h3>Silk·épil 9 Flex Epilator</h3></a>
</div>
<!-- <div class="navitagion-single-product">
<a href="/epilator-silk-epil-9-rose-gold-with-7-extras-including-bikini-trimmer-wet-and-dry-usage-ses-9-890/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/menu-braun-silkepilepilator.png" alt="Silk·épil 9 Epilator"></a>
<a href="/epilator-silk-epil-9-rose-gold-with-7-extras-including-bikini-trimmer-wet-and-dry-usage-ses-9-890/"><h3>Silk·épil 9 Epilator</h3></a>
</div> -->
</div>
</div>
<!-- Shaving Tips dropdown -->
</div>
<div class="tips-wrapper">
<ul>
<li id="shavingTips-button-fr" class='button-disabled active'><a href="/shaving-tips/#expertise">Rasage</a></li>
<li id="stylingTips-button-fr" class='button-disabled'><a href="/shaving-tips/#craftsmanship-quality">Style</a></li>
<li id="manscapingTips-button-fr" class='button-disabled'><a href="/shaving-tips/#brotherhood">Rasage corporel</a></li>
</ul>
<div class="tips-posts-wrapper">
<div id="shaving-tips-fr" class="category-section active">
<div class="tips-single-post">
<a href="/how-to-shave-your-face/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/1-howtoshaveyourface.png" alt="Comment se raser le visage"></a>
<a href="/how-to-shave-your-face/"><h3>Comment se raser le visage</h3></a>
</div>
<div class="tips-single-post">
<a href="/how-to-prevent-razor-bumps-ingrown-hair/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/2-howtopreventrazorburn.png" alt="Comment prévenir et traiter la sensation de brûlure causée par le rasoir"></a>
<a href="/how-to-prevent-razor-bumps-ingrown-hair/"><h3>Comment prévenir et traiter la sensation de brûlure causée par le rasoir</h3></a>
</div>
<div class="tips-single-post">
<a href="/how-to-trim-a-beard/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/3-howtotrimabeard.jpg" alt="Comment tailler une barbe"></a>
<a href="/how-to-trim-a-beard/"><h3>Comment tailler une barbe</h3></a>
</div>
<div class="tips-single-post">
<a href="/wet-shaving-or-dry-shaving/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/4-wtshavedryshave.jpg" alt="Favoriser le rasage sur la peau mouillée ou le rasage à sec?"></a>
<a href="/wet-shaving-or-dry-shaving/"><h3>Favoriser le rasage sur la peau mouillée ou le rasage à sec?</h3></a>
</div>
</div>
<div id="styling-tips-fr" class="category-section">
<div class="tips-single-post">
<a href="/top-15-beard-styles-for-men/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/1-top15.png" alt="Les 15 styles de barbe les plus populaires"></a>
<a href="/top-15-beard-styles-for-men/"><h3>Les 15 styles de barbe les plus populaires</h3></a>
</div>
<div class="tips-single-post">
<a href="/top-mustache-styles-for-men/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/2-topmustache.png" alt="Les styles de moustache les plus populaires"></a>
<a href="/top-mustache-styles-for-men/"><h3>Les styles de moustache les plus populaires</h3></a>
</div>
<div class="tips-single-post">
<a href="/the-3-day-stubble-beard-scruff/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/3-scruffybeard.png" alt="Styles négligés : la barbe de trois jours"></a>
<a href="/the-3-day-stubble-beard-scruff/"><h3>Styles négligés : la barbe de trois jours</h3></a>
</div>
<div class="tips-single-post">
<a href="/the-circle-beard-goatee-gillette/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/4-howtotrim.png" alt="Comment tailler un bouc : le « bouc avec moustache »"></a>
<a href="/the-circle-beard-goatee-gillette/"><h3>Comment tailler un bouc : le « bouc avec moustache »</h3></a>
</div>
</div>
<div id="manscaping-tips-fr" class="category-section">
<div class="tips-single-post">
<a href="/manscaping-body-grooming-tips/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/1-tipsforbody.png" alt="Conseils pour le rasage corporel"></a>
<a href="/manscaping-body-grooming-tips/"><h3>Conseils pour le rasage corporel</h3></a>
</div>
<div class="tips-single-post">
<a href="/how-to-shave-your-pubic-hair-manscaping-guide-tips/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/2-howtoshaveyourpubichair.png" alt="Comment se raser les poils de l’aine"></a>
<a href="/how-to-shave-your-pubic-hair-manscaping-guide-tips/"><h3>Comment se raser les poils de l’aine</h3></a>
</div>
<div class="tips-single-post">
<a href="/tips-for-back-shaving/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/3-howtoshaveyourback.png" alt="Comment se raser le dos"></a>
<a href="/tips-for-back-shaving/"><h3>Comment se raser le dos</h3></a>
</div>
<div class="tips-single-post">
<a href="/how-to-shave-armpits/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/4-howtoshaveyourarmpits.png" alt="Comment se raser les aisselles"></a>
<a href="/how-to-shave-armpits/"><h3>Comment se raser les aisselles</h3></a>
</div>
</div>
</div>
</div>
<div class="about-us-wrapper">
<ul>
<li id="our-story-button-fr" class="button-disabled active"><a href="/our-story/">Notre histoire</a></li>
<li id="why-gillette-button-fr" class="button-disabled"><a href="/why-gillette/">Pourquoi Gillette</a></li>
<li id="latest-from-gillette-button-fr" class="button-disabled"><a href="javascript:void(0);">Les dernières nouveautés de Gillette</a></li>
<li id="faq-button-fr" class="button-disabled"><a href="/fr/faq/">FAQ</a></li>
</ul>
<div class="about-us-posts-wrapper">
<div id="our-story-fr" class="category-section active">
<div class="about-single-post">
<a href="/our-story/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/gillette-nav-proglide-safetyrazor-400x400.jpeg" alt="Notre histoire"></a>
<a href="/our-story/"><h3>Notre histoire</h3></a>
</div>
</div>
<div id="why-gillette-fr" class="category-section">
<div class="about-single-post">
<a href="/why-gillette/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/whygillettethumb.png" alt="Pourquoi Gillette"></a>
<a href="/why-gillette/"><h3>Pourquoi Gillette</h3></a>
</div>
</div>
<div id="faq-posts-fr" class="category-section">
<div class="about-single-post">
<a href="/fr/faq/"><img src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/1-faq.png" alt="FAQs"></a>
<a href="/fr/faq/"><h3>FAQs</h3></a>
</div>
</div>
<div id="latest-from-gillette-posts-fr" class="category-section">
<div class="about-single-post">
<a href="/fr/products/slate-disposable-razor"><img src="https://cdn11.bigcommerce.com/s-h1praqx0uf/product_images/uploaded_images/gilletteslate-thumbnail-800x800.jpg" alt="slate disposable razor"></a>
<a href="/fr/products/slate-disposable-razor"><h3>Gillette Slate</h3></a>
</div>
<div class="about-single-post">
<a href="/fr/the-latest-from-gillette/planet-kind"><img src="https://cdn11.bigcommerce.com/s-dukhrgn8mp/stencil/242a43e0-a0a3-0139-9e4f-0e068489ff69/e/14fd0280-ac2c-0139-d4de-564342cb5879/img/header/Menu_About_PlanetKIND_Header.jpg" alt="Planet KIND"></a>
<a href="/fr/the-latest-from-gillette/planet-kind"><h3>Planet KIND</h3></a>
</div>
<div class="about-single-post">
<a href="/fr/the-latest-from-gillette/king-c-gillette"><img src="https://cdn11.bigcommerce.com/s-dukhrgn8mp/stencil/242a43e0-a0a3-0139-9e4f-0e068489ff69/e/14fd0280-ac2c-0139-d4de-564342cb5879/img/header/Menu_About_Latest_King-C-Gillette.jpg" alt="King C. Gillette"></a>
<a href="/fr/the-latest-from-gillette/king-c-gillette"><h3>King C. Gillette</h3></a>
</div>
</div>
</div>
</div>
</div>
<!-- FR mobile menu -->
<div class="mobile-navigation-section">
<div class="mobile-menu-content">
<span class="accountNav">
<a class="navUser-action login event_profile_login" data-action-detail="header: Account-Login" href="/login.php">
<svg width="30px" height="30px" viewBox="0 0 24 24" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg">
<desc>Created with Lunacy</desc>
<g id="Icons/Account">
<path d="M0 0L24 0L24 24L0 24L0 0Z" id="Bounding-Box" fill="none" stroke="none" />
<path d="M3.72161 17.7857C5.50121 19.2175 7.71624 19.9987 10.0002 19.9999C12.2838 20.0089 14.5002 19.2276 16.2736 17.7885C16.6747 17.4651 17.0506 17.1115 17.3978 16.7308C20.1554 13.6983 20.7837 9.28982 18.9831 5.60749C17.1824 1.92517 13.3175 -0.285438 9.23124 0.029762C5.14494 0.344962 1.66465 3.12214 0.449854 7.03707C-0.764937 10.952 0.531748 15.212 3.72161 17.7857L3.72161 17.7857ZM10.0002 2.3315C13.062 2.33063 15.8556 3.95124 17.1947 6.50513C18.5338 9.05902 18.1832 12.0979 16.2919 14.3312C15.8003 12.445 13.1703 11.0034 10.0002 11.0034C6.82795 11.0034 4.19935 12.4451 3.70825 14.3315C1.81705 12.0981 1.46657 9.05926 2.80564 6.50536C4.14472 3.95146 6.9383 2.33078 10.0002 2.3315L10.0002 2.3315ZM10.7462 9.91309C12.4926 9.50082 13.5742 7.75088 13.1619 6.00449C12.7496 4.2581 10.9997 3.17658 9.2533 3.58885C7.50691 4.00111 6.42539 5.75105 6.83765 7.49744C7.24992 9.24383 8.99986 10.3254 10.7462 9.91309Z" transform="translate(2 2)" id="Account" fill="#182F6E" stroke="none" />
</g>
</svg>
<span class="jwTransLbl">OUVRIR UNE SESSION</span>
</a>
<div id="mobile-nav-close-fr"><img src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/stencil/e3379640-6527-013c-dc29-1e351524a519/e/79f5f440-9ff8-013b-95fd-2e5f2ae1c98a/img/modal/CloseX.png"></div>
</span>
<a href="#"><h3>PRODUITS</h3></a>
<ul>
<li><a href="/exfoliating-bar-razor-by-gillette">GilletteLabs</a></li>
<li><a href="/fr/gillette-intimate">Gillette INTIMATE™</a></li>
<li><a href="/fr/heated-razor">Rasoir chauffant</a></li>
<li><a href="/fr/king-c-gillette-collection/">King C. Gillette</a></li>
<li><a href="/fr/beard-care-body/">Soins du corps et de la barbe</a></li>
<li><a href="/fr/razors-trimmers/">Gillette On Demand</a></li>
<li><a href="/fr/braun/">Braun</a></li>
<li><a href="/fr/all-products">Tous les produits</a></li>
</ul>
<a href="/fr/all-products"><h3>MAGASINER<br/> MAINTENANT</h3></a>
</div>
<div class="mobile-menu-content-w-dropdown">
<a href="#" class="title">
<h3>CONSEILS DE RASAGE</h3>
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 24 24">
<path d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"/>
</svg>
</a>
<ul>
<li><a href="/shaving-tips/#expertise">Rasage</a></li>
<li><a href="/shaving-tips/#craftsmanship-quality">Style</a></li>
<li><a href="/shaving-tips/#brotherhood">Rasage corporel</a></li>
</ul>
</div>
<div class="mobile-menu-content-w-dropdown">
<a href="#" class="title">
<h3>À PROPOS DE NOUS</h3>
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 24 24">
<path d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"/>
</svg>
</a>
<ul>
<li><a href="/our-story/">Notre histoire</a></li>
<li><a href="/why-gillette/">Pourquoi Gillette</a></li>
<li><a href="/fr/king-c-gillette">King C. Gillette</a></li>
<li><a href="/gillette-labs-heated-razor/">GilletteLabs</a></li>
<li><a href="https://www.terracycle.com/en-CA/brigades/gillette-razor-recycling-program-ca-en#@51.790760252351404:-93.93222021874999zoom:4">TerraCycle</a></li>
<li><a href="/fr/faq">FAQ</a></li>
</ul>
</div>
</div>
<div class="dropdown dropdown--quickSearch " id="frquickSearch" aria-hidden="true" tabindex="-1"
data-prevent-quick-search-close>
<div class="container jwTransFlip fr" tabindex="-1">
<form class="form" action="/search.php">
<fieldset class="form-fieldset">
<div class="form-field">
<label class="is-srOnly" for="fr_search_query">Entrez votre recherche ici...</label>
<input tabindex="-1" class="form-input js-search-field" data-search-quick name="search_query" id="fr_search_query" data-error-message="Search field cannot be empty." placeholder="Entrez votre recherche ici..." autocomplete="off">
<button tabindex="-1" type="submit" class="search-btn"><span>Rechercher</span></button>
</div>
</fieldset>
</form>
<section class="quickSearchResults" data-bind="html: results"></section>
</div>
</div>
<div class="searchBar">
<form action="/search.php">
<input data-search-quick name="search_query" class="searchInput" type="text"
placeholder="Entrez votre recherche ici..." />
<button class="searchSubmit" type="submit">
<img class="" src="https://cdn11.bigcommerce.com/s-dukhrgn8mp/stencil/c1fa7960-0970-013a-e211-6a9962c47ecd/e/175519a0-083d-013a-7d61-0e0dd94ad2eb/img/icons/ic-search-white.svg" alt="Icône de recherche blanche" />
</button>
</form>
<img class="closeSearchBar" src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/stencil/e3379640-6527-013c-dc29-1e351524a519/e/79f5f440-9ff8-013b-95fd-2e5f2ae1c98a/img/modal/CloseX.png" alt="" />
</div>
</header>
<div class="body no-margins" data-currency-code="CAD" touch-pdp>
<button class="scroll-to-top-btn" onclick="scrollToTop()">
<div class="arrow"></div>
<span>TOP</span>
</button>
<div class="" touch-pdp>
<style>
.body {
margin-top: 0;
margin-bottom: 0;
padding-top: 1.5rem;
/* padding-bottom: 0; */
padding-bottom: 1px !important;
}
.body.blackMode {
background-color: black;
}
.body.blackMode * {
color: white !important;
}
.breadcrumbs {
display: block;
font-size: 12px;
}
@media screen and (min-width: 801px) {
.body {
padding-top: 2.5rem;
}
.breadcrumbs {
text-align: left;
padding: 0 15px;
}
}
</style>
<script>
var jsContext = JSON.parse("{\"themeSettings\":{\"optimizedCheckout-formChecklist-color\":\"#333333\",\"homepage_new_products_column_count\":4,\"card--alternate-color--hover\":\"#ffffff\",\"optimizedCheckout-colorFocus\":\"#4496f6\",\"fontSize-root\":14,\"show_accept_amex\":false,\"optimizedCheckout-buttonPrimary-borderColorDisabled\":\"transparent\",\"homepage_top_products_count\":4,\"paymentbuttons-paypal-size\":\"responsive\",\"optimizedCheckout-buttonPrimary-backgroundColorActive\":\"#000000\",\"brandpage_products_per_page\":12,\"color-secondaryDarker\":\"#cccccc\",\"navUser-color\":\"#333333\",\"color-textBase--active\":\"#757575\",\"social_icon_placement_bottom\":\"bottom_none\",\"show_powered_by\":true,\"show_accept_amazonpay\":false,\"fontSize-h4\":20,\"checkRadio-borderColor\":\"#cccccc\",\"color-primaryDarker\":\"#333333\",\"optimizedCheckout-buttonPrimary-colorHover\":\"#ffffff\",\"brand_size\":\"190x250\",\"optimizedCheckout-logo-position\":\"left\",\"optimizedCheckout-discountBanner-backgroundColor\":\"#e5e5e5\",\"color-textLink--hover\":\"#757575\",\"pdp-sale-price-label\":\"Now:\",\"optimizedCheckout-buttonSecondary-backgroundColorHover\":\"#f5f5f5\",\"optimizedCheckout-headingPrimary-font\":\"Google_Montserrat_700\",\"logo_size\":\"250x100\",\"optimizedCheckout-formField-backgroundColor\":\"#ffffff\",\"footer-backgroundColor\":\"#ffffff\",\"navPages-color\":\"#333333\",\"productpage_reviews_count\":9,\"optimizedCheckout-step-borderColor\":\"#dddddd\",\"show_accept_paypal\":false,\"paymentbuttons-paypal-label\":\"checkout\",\"paymentbuttons-paypal-shape\":\"pill\",\"optimizedCheckout-discountBanner-textColor\":\"#333333\",\"optimizedCheckout-backgroundImage-size\":\"1000x400\",\"pdp-retail-price-label\":\"MSRP:\",\"optimizedCheckout-buttonPrimary-font\":\"Google_Montserrat_500\",\"carousel-dot-color\":\"#333333\",\"button--disabled-backgroundColor\":\"#cccccc\",\"blockquote-cite-font-color\":\"#999999\",\"optimizedCheckout-formField-shadowColor\":\"transparent\",\"categorypage_products_per_page\":1000,\"container-fill-base\":\"#ffffff\",\"paymentbuttons-paypal-layout\":\"vertical\",\"homepage_featured_products_column_count\":4,\"button--default-color\":\"#666666\",\"pace-progress-backgroundColor\":\"#999999\",\"color-textLink--active\":\"#757575\",\"optimizedCheckout-loadingToaster-backgroundColor\":\"#333333\",\"color-textHeading\":\"#444444\",\"show_accept_discover\":false,\"optimizedCheckout-formField-errorColor\":\"#d14343\",\"spinner-borderColor-dark\":\"#999999\",\"restrict_to_login\":false,\"input-font-color\":\"#666666\",\"select-bg-color\":\"#ffffff\",\"show_accept_mastercard\":false,\"show_custom_fields_tabs\":false,\"color_text_product_sale_badges\":\"#ffffff\",\"optimizedCheckout-link-font\":\"Google_Montserrat_500\",\"homepage_show_carousel_arrows\":true,\"carousel-arrow-bgColor\":\"#ffffff\",\"lazyload_mode\":\"lazyload+lqip\",\"carousel-title-color\":\"#444444\",\"color_hover_product_sale_badges\":\"#000000\",\"show_accept_googlepay\":false,\"card--alternate-borderColor\":\"#ffffff\",\"homepage_new_products_count\":5,\"button--disabled-color\":\"#ffffff\",\"color-primaryDark\":\"#666666\",\"color-grey\":\"#999999\",\"body-font\":\"Google_Lato_400\",\"optimizedCheckout-step-textColor\":\"#ffffff\",\"optimizedCheckout-buttonPrimary-borderColorActive\":\"transparent\",\"navPages-subMenu-backgroundColor\":\"#e5e5e5\",\"button--primary-backgroundColor\":\"#444444\",\"optimizedCheckout-formField-borderColor\":\"#cccccc\",\"checkRadio-color\":\"#333333\",\"show_product_dimensions\":false,\"optimizedCheckout-link-color\":\"#476bef\",\"card-figcaption-button-background\":\"#ffffff\",\"icon-color-hover\":\"#999999\",\"button--default-borderColor\":\"#cccccc\",\"optimizedCheckout-headingSecondary-font\":\"Google_Montserrat_700\",\"headings-font\":\"Google_Montserrat_400\",\"label-backgroundColor\":\"#cccccc\",\"button--primary-backgroundColorHover\":\"#666666\",\"pdp-non-sale-price-label\":\"Was:\",\"button--disabled-borderColor\":\"transparent\",\"label-color\":\"#ffffff\",\"optimizedCheckout-headingSecondary-color\":\"#333333\",\"select-arrow-color\":\"#757575\",\"logo_fontSize\":28,\"alert-backgroundColor\":\"#ffffff\",\"optimizedCheckout-logo-size\":\"250x100\",\"default_image_brand\":\"img/BrandDefault.gif\",\"card-title-color\":\"#333333\",\"product_list_display_mode\":\"grid\",\"optimizedCheckout-link-hoverColor\":\"#002fe1\",\"fontSize-h5\":15,\"product_size\":\"500x659\",\"paymentbuttons-paypal-color\":\"gold\",\"homepage_show_carousel\":true,\"optimizedCheckout-body-backgroundColor\":\"#ffffff\",\"carousel-arrow-borderColor\":\"#ffffff\",\"button--default-borderColorActive\":\"#757575\",\"header-backgroundColor\":\"#ffffff\",\"paymentbuttons-paypal-tagline\":false,\"color-greyDarkest\":\"#000000\",\"color_badge_product_sale_badges\":\"#007dc6\",\"price_ranges\":true,\"productpage_videos_count\":8,\"color-greyDark\":\"#666666\",\"optimizedCheckout-buttonSecondary-borderColorHover\":\"#999999\",\"optimizedCheckout-discountBanner-iconColor\":\"#333333\",\"optimizedCheckout-buttonSecondary-borderColor\":\"#cccccc\",\"optimizedCheckout-loadingToaster-textColor\":\"#ffffff\",\"optimizedCheckout-buttonPrimary-colorDisabled\":\"#ffffff\",\"optimizedCheckout-formField-placeholderColor\":\"#999999\",\"navUser-color-hover\":\"#757575\",\"icon-ratingFull\":\"#757575\",\"default_image_gift_certificate\":\"img/GiftCertificate.png\",\"color-textBase--hover\":\"#757575\",\"color-errorLight\":\"#ffdddd\",\"social_icon_placement_top\":false,\"blog_size\":\"190x250\",\"shop_by_price_visibility\":true,\"optimizedCheckout-buttonSecondary-colorActive\":\"#000000\",\"optimizedCheckout-orderSummary-backgroundColor\":\"#ffffff\",\"color-warningLight\":\"#fffdea\",\"show_product_weight\":true,\"button--default-colorActive\":\"#000000\",\"color-info\":\"#666666\",\"optimizedCheckout-formChecklist-backgroundColorSelected\":\"#f5f5f5\",\"show_product_quick_view\":true,\"button--default-borderColorHover\":\"#999999\",\"card--alternate-backgroundColor\":\"#ffffff\",\"hide_content_navigation\":false,\"pdp-price-label\":\"\",\"show_copyright_footer\":true,\"swatch_option_size\":\"22x22\",\"optimizedCheckout-orderSummary-borderColor\":\"#dddddd\",\"optimizedCheckout-show-logo\":\"none\",\"carousel-description-color\":\"#333333\",\"optimizedCheckout-formChecklist-backgroundColor\":\"#ffffff\",\"fontSize-h2\":25,\"optimizedCheckout-step-backgroundColor\":\"#757575\",\"optimizedCheckout-headingPrimary-color\":\"#333333\",\"color-textBase\":\"#333333\",\"color-warning\":\"#f1a500\",\"productgallery_size\":\"500x659\",\"alert-color\":\"#333333\",\"shop_by_brand_show_footer\":true,\"card-figcaption-button-color\":\"#333333\",\"searchpage_products_per_page\":12,\"color-textSecondary--active\":\"#333333\",\"optimizedCheckout-formField-inputControlColor\":\"#476bef\",\"optimizedCheckout-contentPrimary-color\":\"#333333\",\"optimizedCheckout-buttonSecondary-font\":\"Google_Montserrat_500\",\"storeName-color\":\"#333333\",\"optimizedCheckout-backgroundImage\":\"\",\"form-label-font-color\":\"#666666\",\"color-greyLightest\":\"#e5e5e5\",\"optimizedCheckout-header-backgroundColor\":\"#f5f5f5\",\"productpage_related_products_count\":10,\"optimizedCheckout-buttonSecondary-backgroundColorActive\":\"#e5e5e5\",\"color-textLink\":\"#333333\",\"color-greyLighter\":\"#cccccc\",\"color-secondaryDark\":\"#e5e5e5\",\"fontSize-h6\":13,\"paymentbuttons-paypal-fundingicons\":false,\"carousel-arrow-color\":\"#999999\",\"productpage_similar_by_views_count\":10,\"pdp-custom-fields-tab-label\":\"Additional Information\",\"loadingOverlay-backgroundColor\":\"#ffffff\",\"optimizedCheckout-buttonPrimary-color\":\"#ffffff\",\"input-bg-color\":\"#ffffff\",\"navPages-subMenu-separatorColor\":\"#cccccc\",\"navPages-color-hover\":\"#757575\",\"color-infoLight\":\"#dfdfdf\",\"product_sale_badges\":\"none\",\"default_image_product\":\"img/ProductDefault.gif\",\"navUser-dropdown-borderColor\":\"#cccccc\",\"optimizedCheckout-buttonPrimary-colorActive\":\"#ffffff\",\"color-greyMedium\":\"#757575\",\"optimizedCheckout-formChecklist-borderColor\":\"#cccccc\",\"fontSize-h1\":28,\"homepage_featured_products_count\":4,\"color-greyLight\":\"#999999\",\"optimizedCheckout-logo\":\"\",\"icon-ratingEmpty\":\"#cccccc\",\"show_product_details_tabs\":true,\"icon-color\":\"#757575\",\"overlay-backgroundColor\":\"#333333\",\"input-border-color-active\":\"#999999\",\"hide_contact_us_page_heading\":false,\"container-fill-dark\":\"#e5e5e5\",\"optimizedCheckout-buttonPrimary-backgroundColorDisabled\":\"#cccccc\",\"button--primary-color\":\"#ffffff\",\"optimizedCheckout-buttonPrimary-borderColorHover\":\"transparent\",\"color-successLight\":\"#d5ffd8\",\"color-greyDarker\":\"#333333\",\"show_product_quantity_box\":true,\"color-success\":\"#008a06\",\"optimizedCheckout-header-borderColor\":\"#dddddd\",\"zoom_size\":\"1280x1280\",\"color-white\":\"#ffffff\",\"optimizedCheckout-buttonSecondary-backgroundColor\":\"#ffffff\",\"productview_thumb_size\":\"50x50\",\"fontSize-h3\":22,\"spinner-borderColor-light\":\"#ffffff\",\"geotrust_ssl_common_name\":\"\",\"carousel-bgColor\":\"#ffffff\",\"carousel-dot-color-active\":\"#757575\",\"input-border-color\":\"#cccccc\",\"optimizedCheckout-buttonPrimary-backgroundColor\":\"#333333\",\"color-secondary\":\"#ffffff\",\"button--primary-backgroundColorActive\":\"#000000\",\"color-textSecondary--hover\":\"#333333\",\"color-whitesBase\":\"#e5e5e5\",\"body-bg\":\"#ffffff\",\"optimizedCheckout-contentSecondary-font\":\"Google_Montserrat_500\",\"navUser-dropdown-backgroundColor\":\"#ffffff\",\"color-primary\":\"#757575\",\"api\":{\"production\":{\"store_url\":\"https://ecaas-services.azure-api.net\"},\"staging\":{\"store_url\":\"https://ecaas-services-stage.azure-api.net\"}},\"dropdown--quickSearch-backgroundColor\":\"#e5e5e5\",\"optimizedCheckout-contentPrimary-font\":\"Google_Montserrat_500\",\"supported_card_type_icons\":[\"american_express\",\"diners\",\"discover\",\"mastercard\",\"visa\"],\"navigation_design\":\"simple\",\"optimizedCheckout-formField-textColor\":\"#333333\",\"color-black\":\"#ffffff\",\"homepage_top_products_column_count\":4,\"hide_page_heading\":false,\"optimizedCheckout-buttonSecondary-colorHover\":\"#333333\",\"hide_breadcrumbs\":false,\"button--primary-colorActive\":\"#ffffff\",\"homepage_stretch_carousel_images\":false,\"optimizedCheckout-contentSecondary-color\":\"#757575\",\"card-title-color-hover\":\"#757575\",\"applePay-button\":\"black\",\"thumb_size\":\"100x100\",\"optimizedCheckout-buttonPrimary-borderColor\":\"#333333\",\"navUser-indicator-backgroundColor\":\"#333333\",\"optimizedCheckout-buttonSecondary-borderColorActive\":\"#757575\",\"hide_blog_page_heading\":false,\"optimizedCheckout-header-textColor\":\"#333333\",\"hide_category_page_heading\":false,\"optimizedCheckout-show-backgroundImage\":false,\"color-primaryLight\":\"#999999\",\"show_accept_visa\":false,\"logo-position\":\"center\",\"show_product_reviews_tabs\":false,\"carousel-dot-bgColor\":\"#ffffff\",\"optimizedCheckout-form-textColor\":\"#666666\",\"optimizedCheckout-buttonSecondary-color\":\"#333333\",\"geotrust_ssl_seal_size\":\"M\",\"button--icon-svg-color\":\"#757575\",\"alert-color-alt\":\"#ffffff\",\"button--default-colorHover\":\"#333333\",\"checkRadio-backgroundColor\":\"#ffffff\",\"optimizedCheckout-buttonPrimary-backgroundColorHover\":\"#666666\",\"input-disabled-bg\":\"#ffffff\",\"dropdown--wishList-backgroundColor\":\"#ffffff\",\"container-border-global-color-base\":\"#e5e5e5\",\"productthumb_size\":\"100x100\",\"button--primary-colorHover\":\"#ffffff\",\"color-error\":\"#cc4749\",\"homepage_blog_posts_count\":3,\"color-textSecondary\":\"#757575\",\"gallery_size\":\"300x300\"},\"genericError\":\"Oops! Something went wrong.\",\"maintenanceMode\":[],\"urls\":{\"home\":\"https://gillette.ca/\",\"account\":{\"index\":\"/account.php\",\"orders\":{\"all\":\"/account.php?action=order_status\",\"completed\":\"/account.php?action=view_orders\",\"save_new_return\":\"/account.php?action=save_new_return\"},\"update_action\":\"/account.php?action=update_account\",\"returns\":\"/account.php?action=view_returns\",\"addresses\":\"/account.php?action=address_book\",\"inbox\":\"/account.php?action=inbox\",\"send_message\":\"/account.php?action=send_message\",\"add_address\":\"/account.php?action=add_shipping_address\",\"wishlists\":{\"all\":\"/wishlist.php\",\"add\":\"/wishlist.php?action=addwishlist\",\"edit\":\"/wishlist.php?action=editwishlist\",\"delete\":\"/wishlist.php?action=deletewishlist\"},\"details\":\"/account.php?action=account_details\",\"recent_items\":\"/account.php?action=recent_items\",\"payment_methods\":{\"all\":\"/account.php?action=payment_methods\"}},\"brands\":\"https://gillette.ca/brands/\",\"gift_certificate\":{\"purchase\":\"/giftcertificates.php\",\"redeem\":\"/giftcertificates.php?action=redeem\",\"balance\":\"/giftcertificates.php?action=balance\"},\"auth\":{\"login\":\"/login.php\",\"check_login\":\"/login.php?action=check_login\",\"create_account\":\"/login.php?action=create_account\",\"save_new_account\":\"/login.php?action=save_new_account\",\"forgot_password\":\"/login.php?action=reset_password\",\"send_password_email\":\"/login.php?action=send_password_email\",\"save_new_password\":\"/login.php?action=save_new_password\",\"logout\":\"/login.php?action=logout\"},\"product\":{\"post_review\":\"/postreview.php\"},\"cart\":\"/cart.php\",\"checkout\":{\"single_address\":\"/checkout\",\"multiple_address\":\"/checkout.php?action=multiple\"},\"rss\":{\"products\":[]},\"contact_us_submit\":\"/pages.php?action=sendContactForm\",\"search\":\"/search.php\",\"compare\":\"/compare\",\"sitemap\":\"/sitemap.php\",\"subscribe\":{\"action\":\"/subscribe.php\"}},\"secureBaseUrl\":\"https://gillette.ca\",\"cartId\":null,\"template\":\"pages/custom/product/gillette_pdp\",\"categories\":[{\"children\":[{\"url\":\"https://gillette.ca/en/gillettelabs\",\"image\":{},\"description\":{},\"id\":\"54\",\"name\":\"GilletteLabs\",\"count\":\"10\"},{\"url\":\"https://gillette.ca/en/gillette-intimate\",\"image\":{},\"description\":{},\"id\":\"55\",\"name\":\"Gillette INTIMATE™\",\"count\":\"3\"},{\"children\":[{\"url\":\"https://gillette.ca/all-products/heated-razor/heated-razor-sk/\",\"image\":{},\"description\":{},\"id\":\"51\",\"name\":\"Heated Razor SK\",\"count\":\"2\"}],\"url\":\"https://gillette.ca/en/heated-razor\",\"image\":{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/n/hero_hr__88659_category.original.jpg\",\"alt\":\"Heated Razor\"},\"description\":{},\"id\":\"37\",\"name\":\"Heated Razor\",\"count\":\"4\"},{\"url\":\"https://gillette.ca/en/king-c-gillette-collection\",\"image\":{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/k/hero_kcg__61775_category.original.jpg\",\"alt\":\"King C. Gillette Collection\"},\"description\":{},\"id\":\"38\",\"name\":\"King C. Gillette Collection\",\"count\":\"15\"},{\"url\":\"https://gillette.ca/en/razors-trimmers\",\"image\":{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/a/hero_rzorstrimmers__73054_category.original.jpg\",\"alt\":\"Razors & Trimmers\"},\"description\":{},\"id\":\"40\",\"name\":\"Razors & Trimmers\",\"count\":\"21\"},{\"url\":\"https://gillette.ca/en/care-body\",\"image\":{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/p/hero_gillette__beardbody-desktop_category_category.original.jpg\",\"alt\":\"Care & Body\"},\"description\":{},\"id\":\"39\",\"name\":\"Care & Body\",\"count\":\"21\"},{\"url\":\"https://gillette.ca/en/braun/\",\"image\":{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/b/gillette-ca-braun-harmonia_header__05605_category.original.jpg\",\"alt\":\"Braun\"},\"description\":{},\"id\":\"50\",\"name\":\"Braun\",\"count\":\"11\"}],\"url\":\"https://gillette.ca/en/all-products\",\"image\":{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/z/desktop-image_hero_allproducts__85611_category.original.jpg\",\"alt\":\"All Products\"},\"description\":{},\"id\":\"35\",\"name\":\"All Products\",\"is_active\":true,\"count\":\"59\"},{\"url\":\"https://gillette.ca/fr/get-started/\",\"image\":{},\"description\":{},\"id\":\"29\",\"name\":\"Allez-y!\",\"count\":\"1\"},{\"url\":\"https://gillette.ca/cartridge-refill/\",\"image\":{},\"description\":{},\"id\":\"32\",\"name\":\"Cartridge Refill\",\"count\":\"1\"},{\"url\":\"https://gillette.ca/epilator/\",\"image\":{},\"description\":{},\"id\":\"48\",\"name\":\"Epilator\",\"count\":\"1\"},{\"url\":\"https://gillette.ca/handle/\",\"image\":{},\"description\":{},\"id\":\"31\",\"name\":\"Handle\",\"count\":\"1\"},{\"url\":\"https://gillette.ca/en/get-started/\",\"image\":{},\"description\":{},\"id\":\"28\",\"name\":\"Get Started\",\"count\":\"1\"},{\"url\":\"https://gillette.ca/ipl/\",\"image\":{},\"description\":{},\"id\":\"49\",\"name\":\"IPL\",\"count\":\"2\"},{\"children\":[{\"url\":\"https://gillette.ca/razors/fusion5/\",\"image\":{},\"description\":{},\"id\":\"26\",\"name\":\"Fusion5\",\"count\":\"0\"},{\"url\":\"https://gillette.ca/razors/mach3/\",\"image\":{},\"description\":{},\"id\":\"27\",\"name\":\"Mach3\",\"count\":\"0\"}],\"url\":\"https://gillette.ca/razors/\",\"image\":{},\"description\":{},\"id\":\"24\",\"name\":\"Razors\",\"count\":\"1\"},{\"url\":\"https://gillette.ca/refills/\",\"image\":{},\"description\":{},\"id\":\"45\",\"name\":\"Refills\",\"count\":\"1\"},{\"url\":\"https://gillette.ca/shop-all/\",\"image\":{},\"description\":{},\"id\":\"30\",\"name\":\"Shop All\",\"count\":\"5\"},{\"children\":[{\"url\":\"https://gillette.ca/fr/heated-razor/\",\"image\":{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/b/hero_hr__88659_category.original.jpg\",\"alt\":\"Rasoir chauffant\"},\"description\":{},\"id\":\"43\",\"name\":\"Rasoir chauffant\",\"count\":\"3\"},{\"url\":\"https://gillette.ca/fr/king-c-gillette-collection/\",\"image\":{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/f/hero_kcg__61775_category.original.jpg\",\"alt\":\"King C. Gillette Collection\"},\"description\":{},\"id\":\"41\",\"name\":\"King C. Gillette Collection\",\"count\":\"15\"},{\"url\":\"https://gillette.ca/fr/razors-trimmers/\",\"image\":{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/j/hero_rzorstrimmers__73054_category.original.jpg\",\"alt\":\"Rasoirs et tondeuses\"},\"description\":{},\"id\":\"44\",\"name\":\"Rasoirs et tondeuses\",\"count\":\"14\"},{\"url\":\"https://gillette.ca/fr/care-body/\",\"image\":{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/j/hero_gillette__beardbody-desktop_category_category.original.jpg\",\"alt\":\"Soins et Corps\"},\"description\":{},\"id\":\"42\",\"name\":\"Soins et Corps\",\"count\":\"11\"},{\"url\":\"https://gillette.ca/fr/braun/\",\"image\":{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/b/gillette-ca-braun-harmonia_header__05605_category.original.jpg\",\"alt\":\"Braun\"},\"description\":{},\"id\":\"52\",\"name\":\"Braun\",\"count\":\"6\"}],\"url\":\"https://gillette.ca/fr/all-products\",\"image\":{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/k/desktop-image_hero_allproducts__85611_category.original.jpg\",\"alt\":\"Tous les produits\"},\"description\":{},\"id\":\"36\",\"name\":\"Tous les produits\",\"count\":\"45\"}],\"product\":{\"num_reviews\":0,\"url\":\"https://gillette.ca/king-c-gillette-mens-style-master-cordless-stubble-trimmer-with-4d-blade/\",\"add_this\":[{\"service\":\"facebook\",\"annotation\":\"\"},{\"service\":\"email\",\"annotation\":\"\"},{\"service\":\"print\",\"annotation\":\"\"},{\"service\":\"twitter\",\"annotation\":\"\"}],\"gtin\":null,\"options\":[],\"id\":\"164\",\"bulk_discount_rates\":[],\"can_purchase\":true,\"meta_description\":\"The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.\",\"category\":[\"All Products\",\"Tous les produits\",\"All Products/King C. Gillette Collection\",\"Tous les produits/King C. Gillette Collection\"],\"AddThisServiceButtonMeta\":\"\",\"main_image\":{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/products/164/901/00047400675711_C1N1_EMEA__63639.1646761401.jpg?c=2\",\"alt\":\"The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.\"},\"add_to_wishlist_url\":\"/wishlist.php?action=add&product_id=164\",\"custom_fields\":[{\"id\":\"676\",\"name\":\"Free Shipping\",\"value\":\"True\"},{\"id\":\"677\",\"name\":\"DontGetDiscount\",\"value\":\"True\"},{\"id\":\"678\",\"name\":\"frenchName\",\"value\":\"Tondeuse pour la barbe de trois jours King C. Gillette Maître du style pour hommes, sans cordon, avec lame à 4 directions\"}],\"sku\":\"047400675711\",\"description\":\"\",\"tags\":[],\"warranty\":\"\",\"price\":{\"with_tax\":{\"formatted\":\"$56.49\",\"value\":56.49,\"currency\":\"CAD\"},\"without_tax\":{\"formatted\":\"$49.99\",\"value\":49.99,\"currency\":\"CAD\"},\"tax_label\":\"Tax\"},\"detail_messages\":\"\",\"availability\":\"\",\"page_title\":\"King C. Gillette Men's Style Master Cordless Stubble Trimmer with 4D Blade | Gillette Canada\",\"cart_url\":\"https://gillette.ca/cart.php\",\"max_purchase_quantity\":0,\"mpn\":null,\"upc\":\"047400675711\",\"shipping_messages\":[],\"rating\":0,\"meta_keywords\":\"\",\"show_quantity_input\":0,\"title\":\"King C. Gillette Men's Style Master Cordless Stubble Trimmer with 4D Blade\",\"gift_wrapping_available\":false,\"min_purchase_quantity\":0,\"customizations\":[],\"images\":[{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/products/164/901/00047400675711_C1N1_EMEA__63639.1646761401.jpg?c=2\",\"alt\":\"The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.\"},{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/products/164/900/Gillette_KCG_Stylemaster_Product-out-of-pack-eng-only__23782.1646761401.jpg?c=2\",\"alt\":\"The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.\"},{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/products/164/893/2-gillette-kcg-style-master-blade-1280x1280__75186.1646761399.jpg?c=2\",\"alt\":\"The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.\"},{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/products/164/897/3-gillette-kcg-style-master-in-use-1280x1280__62637.1646761400.jpg?c=2\",\"alt\":\"The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.\"},{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/products/164/894/4-gillette-kcg-style-master-grip-1280x1280__12401.1646761400.jpg?c=2\",\"alt\":\"The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.\"},{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/products/164/895/5-gillette-kcg-style-master-waterproof-1280x1280__41239.1646761400.jpg?c=2\",\"alt\":\"The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.\"},{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/products/164/896/6-gillette-kcg-style-master-combs-1280x1280__30877.1646761400.jpg?c=2\",\"alt\":\"The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.\"}]},\"myProductName\":{\"num_reviews\":0,\"url\":\"https://gillette.ca/king-c-gillette-mens-style-master-cordless-stubble-trimmer-with-4d-blade/\",\"add_this\":[{\"service\":\"facebook\",\"annotation\":\"\"},{\"service\":\"email\",\"annotation\":\"\"},{\"service\":\"print\",\"annotation\":\"\"},{\"service\":\"twitter\",\"annotation\":\"\"}],\"gtin\":null,\"options\":[],\"id\":\"164\",\"bulk_discount_rates\":[],\"can_purchase\":true,\"meta_description\":\"The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.\",\"category\":[\"All Products\",\"Tous les produits\",\"All Products/King C. Gillette Collection\",\"Tous les produits/King C. Gillette Collection\"],\"AddThisServiceButtonMeta\":\"\",\"main_image\":{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/products/164/901/00047400675711_C1N1_EMEA__63639.1646761401.jpg?c=2\",\"alt\":\"The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.\"},\"add_to_wishlist_url\":\"/wishlist.php?action=add&product_id=164\",\"custom_fields\":[{\"id\":\"676\",\"name\":\"Free Shipping\",\"value\":\"True\"},{\"id\":\"677\",\"name\":\"DontGetDiscount\",\"value\":\"True\"},{\"id\":\"678\",\"name\":\"frenchName\",\"value\":\"Tondeuse pour la barbe de trois jours King C. Gillette Maître du style pour hommes, sans cordon, avec lame à 4 directions\"}],\"sku\":\"047400675711\",\"description\":\"\",\"tags\":[],\"warranty\":\"\",\"price\":{\"with_tax\":{\"formatted\":\"$56.49\",\"value\":56.49,\"currency\":\"CAD\"},\"without_tax\":{\"formatted\":\"$49.99\",\"value\":49.99,\"currency\":\"CAD\"},\"tax_label\":\"Tax\"},\"detail_messages\":\"\",\"availability\":\"\",\"page_title\":\"King C. Gillette Men's Style Master Cordless Stubble Trimmer with 4D Blade | Gillette Canada\",\"cart_url\":\"https://gillette.ca/cart.php\",\"max_purchase_quantity\":0,\"mpn\":null,\"upc\":\"047400675711\",\"shipping_messages\":[],\"rating\":0,\"meta_keywords\":\"\",\"show_quantity_input\":0,\"title\":\"King C. Gillette Men's Style Master Cordless Stubble Trimmer with 4D Blade\",\"gift_wrapping_available\":false,\"min_purchase_quantity\":0,\"customizations\":[],\"images\":[{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/products/164/901/00047400675711_C1N1_EMEA__63639.1646761401.jpg?c=2\",\"alt\":\"The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.\"},{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/products/164/900/Gillette_KCG_Stylemaster_Product-out-of-pack-eng-only__23782.1646761401.jpg?c=2\",\"alt\":\"The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.\"},{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/products/164/893/2-gillette-kcg-style-master-blade-1280x1280__75186.1646761399.jpg?c=2\",\"alt\":\"The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.\"},{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/products/164/897/3-gillette-kcg-style-master-in-use-1280x1280__62637.1646761400.jpg?c=2\",\"alt\":\"The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.\"},{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/products/164/894/4-gillette-kcg-style-master-grip-1280x1280__12401.1646761400.jpg?c=2\",\"alt\":\"The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.\"},{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/products/164/895/5-gillette-kcg-style-master-waterproof-1280x1280__41239.1646761400.jpg?c=2\",\"alt\":\"The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.\"},{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/products/164/896/6-gillette-kcg-style-master-combs-1280x1280__30877.1646761400.jpg?c=2\",\"alt\":\"The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.\"}]}}");
console.log(jsContext);
if(jsContext.colorMode) {
document.querySelector('.body').classList.add(jsContext.colorMode);
}
</script>
<script id="dynamicJSONLD" type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "Product",
"name": "King C. Gillette Men's Style Master Cordless Stubble Trimmer with 4D Blade",
"image": [
"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/901/00047400675711_C1N1_EMEA__63639.1646761401.jpg?c=2",
"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/900/Gillette_KCG_Stylemaster_Product-out-of-pack-eng-only__23782.1646761401.jpg?c=2",
"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/893/2-gillette-kcg-style-master-blade-1280x1280__75186.1646761399.jpg?c=2",
"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/897/3-gillette-kcg-style-master-in-use-1280x1280__62637.1646761400.jpg?c=2",
"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/894/4-gillette-kcg-style-master-grip-1280x1280__12401.1646761400.jpg?c=2",
"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/895/5-gillette-kcg-style-master-waterproof-1280x1280__41239.1646761400.jpg?c=2",
"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/896/6-gillette-kcg-style-master-combs-1280x1280__30877.1646761400.jpg?c=2"
],
"description":
"sku": "047400675711",
"brand": {
"@type": "Brand",
"name": "Gillette"
},
"review": {
"@type": "Review",
"reviewRating": {
"@type": "Rating",
"ratingValue": "5",
"bestRating": "0"
},
"author": {
"@type": "Person",
"name":"Gillette"
}
},
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "0",
"reviewCount": "0"
},
"offers": {
"@type": "Offer",
"url": "https://gillette.ca/king-c-gillette-mens-style-master-cordless-stubble-trimmer-with-4d-blade/",
"priceCurrency": "USD",
"price": "",
"priceValidUntil": "2020-12-31",
"itemCondition": "https://schema.org/NewCondition",
"availability": "https://schema.org/InStock",
"seller": {
"@type": "Organization",
"name": "Gillette"
}
},
"breadcrumbList": {
"@type": "BreadcrumbList",
"list": {
"@type": "ListItem",
"position": 0,
"name": "Home",
"item": "https://gillette.ca/",
"@type": "ListItem",
"position": 1,
"name": "All Products",
"item": "https://gillette.ca/en/all-products",
"@type": "ListItem",
"position": 2,
"name": "King C. Gillette Men's Style Master Cordless Stubble Trimmer with 4D Blade",
"item": "https://gillette.ca/king-c-gillette-mens-style-master-cordless-stubble-trimmer-with-4d-blade/"
}
}
}
</script>
<div class="productView redesign new-pdp"
>
<ul class="breadcrumbs jwTransFlip en" itemscope itemtype="http://schema.org/BreadcrumbList">
<li class="breadcrumb " itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
<a href="https://gillette.ca/" class="breadcrumb-label" itemprop="item"><span itemprop="name">Home</span></a>
<meta itemprop="position" content="1" />
</li>
<li class="breadcrumb " itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
<a href="https://gillette.ca/en/all-products" class="breadcrumb-label" itemprop="item"><span itemprop="name">All Products</span></a>
<meta itemprop="position" content="2" />
</li>
<li class="breadcrumb is-active" itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
<meta itemprop="item" content="https://gillette.ca/king-c-gillette-mens-style-master-cordless-stubble-trimmer-with-4d-blade/">
<span class="breadcrumb-label" itemprop="name">King C. Gillette Men's Style Master Cordless Stubble Trimmer with 4D Blade</span>
<meta itemprop="position" content="3" />
</li>
</ul>
<ul class="breadcrumbs jwTransFlip fr" itemscope itemtype="http://schema.org/BreadcrumbList" style="display: none;">
<li class="breadcrumb " itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
<a href="https://gillette.ca/" class="breadcrumb-label" itemprop="item"><span itemprop="name">
D'accueil
</span></a>
<meta itemprop="position" content="1" />
</li>
<li class="breadcrumb " itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
<a href="https://gillette.ca/en/all-products" class="breadcrumb-label" itemprop="item"><span itemprop="name">
Tous les produits
</span></a>
<meta itemprop="position" content="2" />
</li>
<li class="breadcrumb is-active" itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
<meta itemprop="item" content="https://gillette.ca/king-c-gillette-mens-style-master-cordless-stubble-trimmer-with-4d-blade/">
<span class="breadcrumb-label" itemprop="name">
Tondeuse pour la barbe de trois jours King C. Gillette Maître du style pour hommes, sans cordon, avec lame à 4 directions
</span>
<meta itemprop="position" content="3" />
</li>
</ul>
<div id="non-subscription">
<section class="productView-details">
<section class="productView-mobile-images">
<div class="productView-mobile-thumbnail">
<div class="productView-thumbnail-link" data-image-gallery-item
data-image-gallery-new-image-url="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/901/00047400675711_C1N1_EMEA__63639.1646761401.jpg?c=2"
data-image-gallery-zoom-image-url="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/1280x1280/products/164/901/00047400675711_C1N1_EMEA__63639.1646761401.jpg?c=2">
<img class="lazyload" data-sizes="auto" src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/stencil/e3379640-6527-013c-dc29-1e351524a519/e/79f5f440-9ff8-013b-95fd-2e5f2ae1c98a/img/loading.svg"
data-src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/901/00047400675711_C1N1_EMEA__63639.1646761401.jpg?c=2"
alt="The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving." title="The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.">
</div>
</div>
<div class="productView-mobile-thumbnail">
<div class="productView-thumbnail-link" data-image-gallery-item
data-image-gallery-new-image-url="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/900/Gillette_KCG_Stylemaster_Product-out-of-pack-eng-only__23782.1646761401.jpg?c=2"
data-image-gallery-zoom-image-url="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/1280x1280/products/164/900/Gillette_KCG_Stylemaster_Product-out-of-pack-eng-only__23782.1646761401.jpg?c=2">
<img class="lazyload" data-sizes="auto" src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/stencil/e3379640-6527-013c-dc29-1e351524a519/e/79f5f440-9ff8-013b-95fd-2e5f2ae1c98a/img/loading.svg"
data-src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/900/Gillette_KCG_Stylemaster_Product-out-of-pack-eng-only__23782.1646761401.jpg?c=2"
alt="The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving." title="The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.">
</div>
</div>
<div class="productView-mobile-thumbnail">
<div class="productView-thumbnail-link" data-image-gallery-item
data-image-gallery-new-image-url="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/893/2-gillette-kcg-style-master-blade-1280x1280__75186.1646761399.jpg?c=2"
data-image-gallery-zoom-image-url="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/1280x1280/products/164/893/2-gillette-kcg-style-master-blade-1280x1280__75186.1646761399.jpg?c=2">
<img class="lazyload" data-sizes="auto" src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/stencil/e3379640-6527-013c-dc29-1e351524a519/e/79f5f440-9ff8-013b-95fd-2e5f2ae1c98a/img/loading.svg"
data-src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/893/2-gillette-kcg-style-master-blade-1280x1280__75186.1646761399.jpg?c=2"
alt="The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving." title="The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.">
</div>
</div>
<div class="productView-mobile-thumbnail">
<div class="productView-thumbnail-link" data-image-gallery-item
data-image-gallery-new-image-url="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/897/3-gillette-kcg-style-master-in-use-1280x1280__62637.1646761400.jpg?c=2"
data-image-gallery-zoom-image-url="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/1280x1280/products/164/897/3-gillette-kcg-style-master-in-use-1280x1280__62637.1646761400.jpg?c=2">
<img class="lazyload" data-sizes="auto" src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/stencil/e3379640-6527-013c-dc29-1e351524a519/e/79f5f440-9ff8-013b-95fd-2e5f2ae1c98a/img/loading.svg"
data-src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/897/3-gillette-kcg-style-master-in-use-1280x1280__62637.1646761400.jpg?c=2"
alt="The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving." title="The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.">
</div>
</div>
<div class="productView-mobile-thumbnail">
<div class="productView-thumbnail-link" data-image-gallery-item
data-image-gallery-new-image-url="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/894/4-gillette-kcg-style-master-grip-1280x1280__12401.1646761400.jpg?c=2"
data-image-gallery-zoom-image-url="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/1280x1280/products/164/894/4-gillette-kcg-style-master-grip-1280x1280__12401.1646761400.jpg?c=2">
<img class="lazyload" data-sizes="auto" src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/stencil/e3379640-6527-013c-dc29-1e351524a519/e/79f5f440-9ff8-013b-95fd-2e5f2ae1c98a/img/loading.svg"
data-src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/894/4-gillette-kcg-style-master-grip-1280x1280__12401.1646761400.jpg?c=2"
alt="The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving." title="The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.">
</div>
</div>
<div class="productView-mobile-thumbnail">
<div class="productView-thumbnail-link" data-image-gallery-item
data-image-gallery-new-image-url="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/895/5-gillette-kcg-style-master-waterproof-1280x1280__41239.1646761400.jpg?c=2"
data-image-gallery-zoom-image-url="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/1280x1280/products/164/895/5-gillette-kcg-style-master-waterproof-1280x1280__41239.1646761400.jpg?c=2">
<img class="lazyload" data-sizes="auto" src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/stencil/e3379640-6527-013c-dc29-1e351524a519/e/79f5f440-9ff8-013b-95fd-2e5f2ae1c98a/img/loading.svg"
data-src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/895/5-gillette-kcg-style-master-waterproof-1280x1280__41239.1646761400.jpg?c=2"
alt="The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving." title="The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.">
</div>
</div>
<div class="productView-mobile-thumbnail">
<div class="productView-thumbnail-link" data-image-gallery-item
data-image-gallery-new-image-url="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/896/6-gillette-kcg-style-master-combs-1280x1280__30877.1646761400.jpg?c=2"
data-image-gallery-zoom-image-url="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/1280x1280/products/164/896/6-gillette-kcg-style-master-combs-1280x1280__30877.1646761400.jpg?c=2">
<img class="lazyload" data-sizes="auto" src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/stencil/e3379640-6527-013c-dc29-1e351524a519/e/79f5f440-9ff8-013b-95fd-2e5f2ae1c98a/img/loading.svg"
data-src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/896/6-gillette-kcg-style-master-combs-1280x1280__30877.1646761400.jpg?c=2"
alt="The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving." title="The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.">
</div>
</div>
</section>
<div class="description-mobile-only">
<div class="productView-product jwTransFlip en">
<h4 class="productView-title">King C. Gillette Men's Style Master Cordless Stubble Trimmer with 4D Blade</h4>
<div class="productView-rating">
<div data-bv-show="rating_summary" data-bv-product-id="164"></div>
</div>
</div>
<div class="productView-product jwTransFlip fr">
<h4 class="productView-title">Tondeuse pour la barbe de trois jours King C. Gillette Maître du style pour hommes, sans cordon, avec lame à 4 directions</h4>
<div class="productView-rating">
<div data-bv-show="rating_summary" data-bv-product-id="164"></div>
</div>
</div>
</div>
<div class="productView-product">
<div class="isDesktopOnly">
<h1 class="productView-title jwTransFlip en">King C. Gillette Men's Style Master Cordless Stubble Trimmer with 4D Blade</h1>
<h1 class="productView-title jwTransFlip fr">Tondeuse pour la barbe de trois jours King C. Gillette Maître du style pour hommes, sans cordon, avec lame à 4 directions</h1>
<div class="productView-rating">
<div data-bv-show="rating_summary" data-bv-product-id="164"></div>
</div>
</div>
<div data-content-region="product_description_multilang"><div data-layout-id="8a7c0d39-ad9d-4bae-a6db-99ec8decb026"><div data-sub-layout-container="c9365ac6-1e0c-485a-9154-fe2278573e9d" data-layout-name="Layout">
<style data-container-styling="c9365ac6-1e0c-485a-9154-fe2278573e9d">
[data-sub-layout-container="c9365ac6-1e0c-485a-9154-fe2278573e9d"] {
box-sizing: border-box;
display: flex;
flex-wrap: wrap;
z-index: 0;
position: relative;
}
[data-sub-layout-container="c9365ac6-1e0c-485a-9154-fe2278573e9d"]:after {
background-position: center center;
background-size: cover;
z-index: auto content: "";
display: block;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
</style>
<div data-sub-layout="7e1aebf9-6792-4c8b-84a8-2e9ca0d29744">
<style data-column-styling="7e1aebf9-6792-4c8b-84a8-2e9ca0d29744">
[data-sub-layout="7e1aebf9-6792-4c8b-84a8-2e9ca0d29744"] {
display: flex;
flex-direction: column;
box-sizing: border-box;
flex-basis: 100%;
max-width: 100%;
z-index: 0;
justify-content: center;
position: relative;
}
[data-sub-layout="7e1aebf9-6792-4c8b-84a8-2e9ca0d29744"]:after {
background-position: center center;
background-size: cover;
z-index: auto content: "";
display: block;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
@media only screen and (max-width: 700px) {
[data-sub-layout="7e1aebf9-6792-4c8b-84a8-2e9ca0d29744"] {
flex-basis: 100%;
max-width: 100%;
}
}
</style>
<div data-widget-id="104cb0a5-f249-40bc-b4fa-89b6689ca7f7" data-placement-id="d8fafbc3-fd39-488b-8f1b-025e97369bbf" data-placement-status="ACTIVE"><div class="top-short-description jwTransFlip en">
The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.
<a href="#FeaturesAnchor">Learn More.</a>
</div>
<div class="top-short-description jwTransFlip fr">
Maître du style est un outil polyvalent conçu pour découper et tailler la barbe de trois jours. Cette tondeuse sans cordon est dotée de lames à 4 directions qui taillent à la fois les poils longs et les poils courts pour des passages faciles et confortables pendant le rasage.
<a href="#FeaturesAnchor">Apprendre encore plus.</a>
</div>
</div>
</div>
</div></div></div>
<div data-content-region="product_below_price"></div>
</div>
<form class="form productForm-redesign" method="post" action="https://gillette.ca/cart.php" enctype="multipart/form-data"
data-cart-item-add>
<input type="hidden" name="action" value="add">
<input type="hidden" name="product_id" value="164"/>
<div data-product-option-change style="display:none;"
class="refill-count-bar ">
</div>
<div class="form-field form-field--stock u-hiddenVisually">
<label class="form-label form-label--alternate">
Current Stock:
<span data-product-stock></span>
</label>
</div>
<div class="increment">
<div class="form-field form-field--increments">
<label class="form-label form-label--alternate"
for="qty[]">QTY:</label>
<div class="form-increment" data-quantity-change>
<button class="button button--icon event_update_quantity" data-action="dec" data-action-detail="decrease">
<!-- <span class="increment-button">-</span> -->
</button>
<input class="form-input form-input--incrementTotal"
id="qty[]"
name="qty[]"
type="tel"
value="1"
data-quantity-min="0"
data-quantity-max="0"
min="1"
pattern="[0-9]*"
aria-live="polite">
<button class="button button--icon event_update_quantity" data-action="inc" data-action-detail="increase">
<!-- <span class="increment-button">+</span> -->
</button>
</div>
</div>
</div>
<div class="alertBox productAttributes-message" style="display:none">
<div class="alertBox-column alertBox-icon">
<icon glyph="ic-success" class="icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z"></path></svg></icon>
</div>
<p class="alertBox-column alertBox-message"></p>
</div>
<div class="productView-price isDesktopOnly isDesktopOnlyFlex desktop-price-number">
<div class="price-section price-section--withoutTax rrp-price--withoutTax price-section--minor" style="display: none;">
MSRP:
<span data-product-rrp-price-without-tax class="price price--rrp">
</span>
</div>
<div class="price-section price-section--withoutTax non-sale-price--withoutTax price-section--minor" style="display: none;">
Was:
<span data-product-non-sale-price-without-tax class="price price--non-sale">
</span>
</div>
<div class="price-section price-section--withoutTax">
<span class="price-label" >
</span>
<span class="price-now-label" style="display: none;">
Now:
</span>
<span data-product-price-without-tax class="price price--withoutTax price-section--minor">$49.99</span>
<!--
<span data-product-price-without-tax class="price price--withoutTax">$49.99</span>
-->
</div>
<div class="price-section price-section--saving price" style="display: none;">
<span class="price">(You save</span>
<span data-product-price-saved class="price price--saving">
</span>
<span class="price">)</span>
</div>
<div class="shipo ">
<div class="freeShipping desktoponly">
<span class="jwTransLbl">Ships FREE</span>
</div>
</div>
</div>
<div class="form-action isMobileOnlyFlex">
<span id="mobile-pdp-atcs">
<button
id="form-action-addToCart"
data-wait-message="Adding to cart…"
class="button button--primary event_buy_now_add_to_cart jwTransFlip en"
data-action-detail="047400675711"
data-action-value="49.99"
type="submit"
>
Add to Cart <span data-product-price-without-tax>49.99</span>
CAD
</button>
<button
id="form-action-addToCart"
data-wait-message="Adding to cart…"
class="button button--primary event_buy_now_add_to_cart jwTransFlip fr frenchMobileATC"
data-action-detail="047400675711"
data-action-value="49.99"
type="submit"
>
Ajouter au panier <span data-product-price-without-tax>49.99</span>
CAD
</button>
</span>
</div>
<input id="form-action-addToCart-desktop" data-wait-message="Adding to cart…"
class="button button--primary event_buy_now_add_to_cart jwTransValue isDesktopOnly" data-action-detail="047400675711" data-action-value="49.99"
type="submit"
value="Add to Cart">
</form>
</section>
<section class="productView-images" data-image-gallery id="stickyDesktop">
<div id="myHeader">
<figure class="productView-image" data-image-gallery-main
data-zoom-image="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/1280x1280/products/164/901/00047400675711_C1N1_EMEA__63639.1646761401.jpg?c=2"
>
<div class="productView-img-container">
<a
href="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/1280x1280/products/164/901/00047400675711_C1N1_EMEA__63639.1646761401.jpg?c=2">
<img class="productView-image--default lazyload" data-sizes="auto"
src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/stencil/e3379640-6527-013c-dc29-1e351524a519/e/79f5f440-9ff8-013b-95fd-2e5f2ae1c98a/img/loading.svg"
data-src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/901/00047400675711_C1N1_EMEA__63639.1646761401.jpg?c=2"
alt="The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving." title="The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving." data-main-image>
</a>
</div>
</figure>
<ul class="productView-thumbnails" data-slick='{
"infinite": false,
"mobileFirst": true,
"slidesToShow": 5,
"slidesToScroll": 1
}' >
<li class="productView-thumbnail">
<a class="productView-thumbnail-link"
href="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/901/00047400675711_C1N1_EMEA__63639.1646761401.jpg?c=2"
data-image-gallery-item
data-image-gallery-new-image-url="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/901/00047400675711_C1N1_EMEA__63639.1646761401.jpg?c=2"
data-image-gallery-zoom-image-url="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/1280x1280/products/164/901/00047400675711_C1N1_EMEA__63639.1646761401.jpg?c=2">
<img class="lazyload" data-sizes="auto" src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/stencil/e3379640-6527-013c-dc29-1e351524a519/e/79f5f440-9ff8-013b-95fd-2e5f2ae1c98a/img/loading.svg"
data-src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/901/00047400675711_C1N1_EMEA__63639.1646761401.jpg?c=2"
alt="The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving." title="The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.">
</a>
</li>
<li class="productView-thumbnail">
<a class="productView-thumbnail-link"
href="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/900/Gillette_KCG_Stylemaster_Product-out-of-pack-eng-only__23782.1646761401.jpg?c=2"
data-image-gallery-item
data-image-gallery-new-image-url="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/900/Gillette_KCG_Stylemaster_Product-out-of-pack-eng-only__23782.1646761401.jpg?c=2"
data-image-gallery-zoom-image-url="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/1280x1280/products/164/900/Gillette_KCG_Stylemaster_Product-out-of-pack-eng-only__23782.1646761401.jpg?c=2">
<img class="lazyload" data-sizes="auto" src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/stencil/e3379640-6527-013c-dc29-1e351524a519/e/79f5f440-9ff8-013b-95fd-2e5f2ae1c98a/img/loading.svg"
data-src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/900/Gillette_KCG_Stylemaster_Product-out-of-pack-eng-only__23782.1646761401.jpg?c=2"
alt="The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving." title="The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.">
</a>
</li>
<li class="productView-thumbnail">
<a class="productView-thumbnail-link"
href="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/893/2-gillette-kcg-style-master-blade-1280x1280__75186.1646761399.jpg?c=2"
data-image-gallery-item
data-image-gallery-new-image-url="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/893/2-gillette-kcg-style-master-blade-1280x1280__75186.1646761399.jpg?c=2"
data-image-gallery-zoom-image-url="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/1280x1280/products/164/893/2-gillette-kcg-style-master-blade-1280x1280__75186.1646761399.jpg?c=2">
<img class="lazyload" data-sizes="auto" src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/stencil/e3379640-6527-013c-dc29-1e351524a519/e/79f5f440-9ff8-013b-95fd-2e5f2ae1c98a/img/loading.svg"
data-src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/893/2-gillette-kcg-style-master-blade-1280x1280__75186.1646761399.jpg?c=2"
alt="The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving." title="The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.">
</a>
</li>
<li class="productView-thumbnail">
<a class="productView-thumbnail-link"
href="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/897/3-gillette-kcg-style-master-in-use-1280x1280__62637.1646761400.jpg?c=2"
data-image-gallery-item
data-image-gallery-new-image-url="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/897/3-gillette-kcg-style-master-in-use-1280x1280__62637.1646761400.jpg?c=2"
data-image-gallery-zoom-image-url="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/1280x1280/products/164/897/3-gillette-kcg-style-master-in-use-1280x1280__62637.1646761400.jpg?c=2">
<img class="lazyload" data-sizes="auto" src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/stencil/e3379640-6527-013c-dc29-1e351524a519/e/79f5f440-9ff8-013b-95fd-2e5f2ae1c98a/img/loading.svg"
data-src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/897/3-gillette-kcg-style-master-in-use-1280x1280__62637.1646761400.jpg?c=2"
alt="The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving." title="The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.">
</a>
</li>
<li class="productView-thumbnail">
<a class="productView-thumbnail-link"
href="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/894/4-gillette-kcg-style-master-grip-1280x1280__12401.1646761400.jpg?c=2"
data-image-gallery-item
data-image-gallery-new-image-url="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/894/4-gillette-kcg-style-master-grip-1280x1280__12401.1646761400.jpg?c=2"
data-image-gallery-zoom-image-url="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/1280x1280/products/164/894/4-gillette-kcg-style-master-grip-1280x1280__12401.1646761400.jpg?c=2">
<img class="lazyload" data-sizes="auto" src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/stencil/e3379640-6527-013c-dc29-1e351524a519/e/79f5f440-9ff8-013b-95fd-2e5f2ae1c98a/img/loading.svg"
data-src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/894/4-gillette-kcg-style-master-grip-1280x1280__12401.1646761400.jpg?c=2"
alt="The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving." title="The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.">
</a>
</li>
<li class="productView-thumbnail">
<a class="productView-thumbnail-link"
href="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/895/5-gillette-kcg-style-master-waterproof-1280x1280__41239.1646761400.jpg?c=2"
data-image-gallery-item
data-image-gallery-new-image-url="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/895/5-gillette-kcg-style-master-waterproof-1280x1280__41239.1646761400.jpg?c=2"
data-image-gallery-zoom-image-url="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/1280x1280/products/164/895/5-gillette-kcg-style-master-waterproof-1280x1280__41239.1646761400.jpg?c=2">
<img class="lazyload" data-sizes="auto" src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/stencil/e3379640-6527-013c-dc29-1e351524a519/e/79f5f440-9ff8-013b-95fd-2e5f2ae1c98a/img/loading.svg"
data-src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/895/5-gillette-kcg-style-master-waterproof-1280x1280__41239.1646761400.jpg?c=2"
alt="The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving." title="The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.">
</a>
</li>
<li class="productView-thumbnail">
<a class="productView-thumbnail-link"
href="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/896/6-gillette-kcg-style-master-combs-1280x1280__30877.1646761400.jpg?c=2"
data-image-gallery-item
data-image-gallery-new-image-url="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/896/6-gillette-kcg-style-master-combs-1280x1280__30877.1646761400.jpg?c=2"
data-image-gallery-zoom-image-url="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/1280x1280/products/164/896/6-gillette-kcg-style-master-combs-1280x1280__30877.1646761400.jpg?c=2">
<img class="lazyload" data-sizes="auto" src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/stencil/e3379640-6527-013c-dc29-1e351524a519/e/79f5f440-9ff8-013b-95fd-2e5f2ae1c98a/img/loading.svg"
data-src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/500x659/products/164/896/6-gillette-kcg-style-master-combs-1280x1280__30877.1646761400.jpg?c=2"
alt="The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving." title="The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.">
</a>
</li>
</ul>
</div>
</section>
<div class="product-description-wrapper">
<div data-content-region="product_subsription_info"><div data-layout-id="86bf9022-f999-4276-805d-fa32b951a352"><div data-sub-layout-container="28b4e3be-22f7-4e56-97cc-3fb3ad855a44" data-layout-name="Layout">
<style data-container-styling="28b4e3be-22f7-4e56-97cc-3fb3ad855a44">
[data-sub-layout-container="28b4e3be-22f7-4e56-97cc-3fb3ad855a44"] {
box-sizing: border-box;
display: flex;
flex-wrap: wrap;
z-index: 0;
position: relative;
}
[data-sub-layout-container="28b4e3be-22f7-4e56-97cc-3fb3ad855a44"]:after {
background-position: center center;
background-size: cover;
z-index: auto content: "";
display: block;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
</style>
<div data-sub-layout="61656314-30f2-4b7d-aab8-49672172fd9a">
<style data-column-styling="61656314-30f2-4b7d-aab8-49672172fd9a">
[data-sub-layout="61656314-30f2-4b7d-aab8-49672172fd9a"] {
display: flex;
flex-direction: column;
box-sizing: border-box;
flex-basis: 100%;
max-width: 100%;
z-index: 0;
justify-content: center;
position: relative;
}
[data-sub-layout="61656314-30f2-4b7d-aab8-49672172fd9a"]:after {
background-position: center center;
background-size: cover;
z-index: auto content: "";
display: block;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
@media only screen and (max-width: 700px) {
[data-sub-layout="61656314-30f2-4b7d-aab8-49672172fd9a"] {
flex-basis: 100%;
max-width: 100%;
}
}
</style>
<div data-widget-id="b2335750-e8b1-4c82-af37-e765ef869cc8" data-placement-id="97d4bd0f-ca63-4786-872a-347c894eeca6" data-placement-status="ACTIVE"><section class="pdpAccordion">
<ul class="accordionList jwTransFlip en">
<li class="accordionListItem extraBottomSpace" id="FeaturesAnchor">
<div class="mainBlock">
<div>Features</div>
<img class="arrow rotate" src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/icon-chevronup.png" alt>
</div>
<div class="hiddenBlock show features">
<div class="featuresTitle">
Style Master Trimmer Features
</div>
<div class="featuresList">
<ul>
<li>
<div class="img">
<img src="https://cdn11.bigcommerce.com/s-dukhrgn8mp/product_images/uploaded_images/kcg-icons-forwebsitev2-gillette-kcg-icons-10-hours.png" alt>
</div>
<div class="content">
<div class="title">Braun Know-How and Technology</div>
<div class="text">Pivoting head that contours for flexibility and precision while styling.
</div>
</div>
</li>
<li>
<div class="img">
<img src="https://cdn11.bigcommerce.com/s-dukhrgn8mp/product_images/uploaded_images/kcg-icons-forwebsitev2-gillette-kcg-icons-comb.png" alt>
</div>
<div class="content">
<div class="title">Interchangeable Combs</div>
<div class="text blades">Three interchangeable combs for flexible trimming with up or down strokes.</div>
</div>
</li>
<li>
<div class="img">
<img src="https://cdn11.bigcommerce.com/s-dukhrgn8mp/product_images/uploaded_images/kcg-icons-forwebsitev2-gillette-kcg-icons-lifetime-sharp-blades.png" alt>
</div>
<div class="content">
<div class="title">Blades That Last a Lifetime</div>
<div class="text">Replaceable long-lasting 4D Blade, that stays sharp for up to 6 months, for easy, fast, and comfortable shaving strokes in 4 directions.</div>
</div>
</li>
</ul>
<ul>
<li>
<div class="img">
<img src="https://cdn11.bigcommerce.com/s-dukhrgn8mp/product_images/uploaded_images/kcg-icons-forwebsitev2-gillette-kcg-icons-cordless-power.png" alt>
</div>
<div class="content">
<div class="title">Cordless Power</div>
<div class="text">Rechargeable battery with 45 minutes trimming time per charge.
</div>
</div></li>
<li>
<div class="img">
<img src="https://cdn11.bigcommerce.com/s-dukhrgn8mp/product_images/uploaded_images/kcg-icons-forwebsitev2-gillette-kcg-icons-washable-trimmer.png" alt>
</div>
<div class="content">
<div class="title">Waterproof
</div>
<div class="text">Slim, easy-to-grip rubberized handle for max precision in hard to reach areas. Fully waterproof for in-shower use.
</div>
</div>
</li>
<li>
<div class="img">
<img src="https://cdn11.bigcommerce.com/s-dukhrgn8mp/product_images/uploaded_images/kcg-icons-forwebsitev2-gillette-kcg-icons-shave-gel-3.png" alt>
</div>
<div class="content">
<div class="title">Style Without Compromise</div>
<div class="text">Versatile multi-purpose stubble trimmer for shaving, edging, and trimming.</div>
</div>
</li>
</ul>
</div>
</div>
</li>
<li class="accordionListItem extraBottomSpace">
<div class="mainBlock">
<div>Description</div>
<img class="arrow" src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/icon-chevronup.png" alt>
</div>
<div class="hiddenBlock description show">
<div class="title isMobileOnly">For Styling Your Perfect Look </div>
<img class="descriptionBckg isDesktopOnly" src="https://cdn11.bigcommerce.com/s-dukhrgn8mp/product_images/uploaded_images/gillette-kcg-double-edge-safety-razor-lifestyle-e.jpg" alt>
<img class="descriptionBckg isMobileOnly" src="https://cdn11.bigcommerce.com/s-dukhrgn8mp/product_images/uploaded_images/gillette-kcg-double-edge-safety-razor-lifestyle-mobile.jpg" alt>
<div class="descriptionContent">
<div class="title isDesktopOnly white">For Styling Your Perfect Look </div>
<p class="text hr-text">The King C. Gillette Style Master is a versatile tool designed to edge, trim and stubble. This cordless trimmer has 4D Blades that trim both long and short hairs for easy, fast, comfortable strokes while shaving. The Style Master’s 3 interchangeable comb attachments (1mm, 3mm, or 5mm) allow for shaving strokes in up, down, or side-to-side directions for freedom and flexibility while shaving. It also features a replaceable full metal blade that’s good for up to 6 months of close shaves, a pivoting contour head for hard-to-reach areas and a slim 360˚ rubberized grip for max precision. And it’s fully waterproof with a 45 minute battery life for convenient in-shower use. The perfect tool to discover new styles and master every one.
</p>
<br>
</div>
</div>
</li>
<li class="accordionListItem">
<div class="mainBlock">
<div>What's in the box</div>
<img class="arrow" src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/icon-chevronup.png" alt>
</div>
<div class="hiddenBlock show compatibility">
<div class="title">Style Master Kit Includes:</div>
<br>
<picture>
<source media="(min-width: 800px)" srcset="https://cdn11.bigcommerce.com/s-dukhrgn8mp/product_images/uploaded_images/gillette-pdp-kcg-stylemaster-witb-update-2200x1144.jpg?t=1649948541&_gl=1*18ljel7*_ga*MjE0Njk4OTkzMS4xNjQzNjM4Njk2*_ga_WS2VZYPC6G*MTY0OTk0ODI3Ny4xMS4xLjE2NDk5NDg1NDYuMjk" data-srcset="https://cdn11.bigcommerce.com/s-dukhrgn8mp/product_images/uploaded_images/gillette-pdp-kcg-stylemaster-witb-update-2200x1144.jpg?t=1649948541&_gl=1*18ljel7*_ga*MjE0Njk4OTkzMS4xNjQzNjM4Njk2*_ga_WS2VZYPC6G*MTY0OTk0ODI3Ny4xMS4xLjE2NDk5NDg1NDYuMjk">
<source media="(min-width: 800px)" srcset="https://cdn11.bigcommerce.com/s-dukhrgn8mp/product_images/uploaded_images/gillette-pdp-kcg-stylemaster-witb-update-2200x1144.jpg?t=1649948541&_gl=1*18ljel7*_ga*MjE0Njk4OTkzMS4xNjQzNjM4Njk2*_ga_WS2VZYPC6G*MTY0OTk0ODI3Ny4xMS4xLjE2NDk5NDg1NDYuMjk" data-srcset="https://cdn11.bigcommerce.com/s-dukhrgn8mp/product_images/uploaded_images/gillette-pdp-kcg-stylemaster-witb-update-2200x1144.jpg?t=1649948541&_gl=1*18ljel7*_ga*MjE0Njk4OTkzMS4xNjQzNjM4Njk2*_ga_WS2VZYPC6G*MTY0OTk0ODI3Ny4xMS4xLjE2NDk5NDg1NDYuMjk">
<source media="(max-width: 799px)" srcset="https://cdn11.bigcommerce.com/s-dukhrgn8mp/product_images/uploaded_images/gillette-pdp-kcg-stylemaster-witb-update-670x670.jpg?t=1649948540&_gl=1*18ljel7*_ga*MjE0Njk4OTkzMS4xNjQzNjM4Njk2*_ga_WS2VZYPC6G*MTY0OTk0ODI3Ny4xMS4xLjE2NDk5NDg1NDYuMjk" data-srcset="https://cdn11.bigcommerce.com/s-dukhrgn8mp/product_images/uploaded_images/gillette-pdp-kcg-stylemaster-witb-update-670x670.jpg?t=1649948540&_gl=1*18ljel7*_ga*MjE0Njk4OTkzMS4xNjQzNjM4Njk2*_ga_WS2VZYPC6G*MTY0OTk0ODI3Ny4xMS4xLjE2NDk5NDg1NDYuMjk">
<source media="(max-width: 799px)" srcset="https://cdn11.bigcommerce.com/s-dukhrgn8mp/product_images/uploaded_images/gillette-pdp-kcg-stylemaster-witb-update-670x670.jpg?t=1649948540&_gl=1*18ljel7*_ga*MjE0Njk4OTkzMS4xNjQzNjM4Njk2*_ga_WS2VZYPC6G*MTY0OTk0ODI3Ny4xMS4xLjE2NDk5NDg1NDYuMjk" data-srcset="https://cdn11.bigcommerce.com/s-dukhrgn8mp/product_images/uploaded_images/gillette-pdp-kcg-stylemaster-witb-update-670x670.jpg?t=1649948540&_gl=1*18ljel7*_ga*MjE0Njk4OTkzMS4xNjQzNjM4Njk2*_ga_WS2VZYPC6G*MTY0OTk0ODI3Ny4xMS4xLjE2NDk5NDg1NDYuMjk">
<img src="https://cdn11.bigcommerce.com/s-dukhrgn8mp/product_images/uploaded_images/gillette-pdp-kcg-stylemaster-witb-update-670x670.jpg?t=1649948540&_gl=1*18ljel7*_ga*MjE0Njk4OTkzMS4xNjQzNjM4Njk2*_ga_WS2VZYPC6G*MTY0OTk0ODI3Ny4xMS4xLjE2NDk5NDg1NDYuMjk" data-src="https://cdn11.bigcommerce.com/s-dukhrgn8mp/product_images/uploaded_images/gillette-pdp-kcg-stylemaster-witb-update-670x670.jpg?t=1649948540&_gl=1*18ljel7*_ga*MjE0Njk4OTkzMS4xNjQzNjM4Njk2*_ga_WS2VZYPC6G*MTY0OTk0ODI3Ny4xMS4xLjE2NDk5NDg1NDYuMjk" alt="King C Gillette Cordless Trimmer Kit" style="max-width: 90%; margin: 0 auto;" class="lazyload">
</picture>
</div>
</li>
</ul>
</section>
</div>
</div>
</div></div></div>
<section class="pdpAccordion">
</section>
<div data-content-region="product_accordion"><div data-layout-id="5c8d0e03-0f8d-428f-b7bc-95c2b220ec40"><div data-sub-layout-container="49dbf87b-03f9-4854-8fd6-3182c550721e" data-layout-name="Layout">
<style data-container-styling="49dbf87b-03f9-4854-8fd6-3182c550721e">
[data-sub-layout-container="49dbf87b-03f9-4854-8fd6-3182c550721e"] {
box-sizing: border-box;
display: flex;
flex-wrap: wrap;
z-index: 0;
position: relative;
}
[data-sub-layout-container="49dbf87b-03f9-4854-8fd6-3182c550721e"]:after {
background-position: center center;
background-size: cover;
z-index: auto content: "";
display: block;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
</style>
<div data-sub-layout="49ac48bc-f057-4d4f-a92e-fe4dd487ae54">
<style data-column-styling="49ac48bc-f057-4d4f-a92e-fe4dd487ae54">
[data-sub-layout="49ac48bc-f057-4d4f-a92e-fe4dd487ae54"] {
display: flex;
flex-direction: column;
box-sizing: border-box;
flex-basis: 100%;
max-width: 100%;
z-index: 0;
justify-content: center;
position: relative;
}
[data-sub-layout="49ac48bc-f057-4d4f-a92e-fe4dd487ae54"]:after {
background-position: center center;
background-size: cover;
z-index: auto content: "";
display: block;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
@media only screen and (max-width: 700px) {
[data-sub-layout="49ac48bc-f057-4d4f-a92e-fe4dd487ae54"] {
flex-basis: 100%;
max-width: 100%;
}
}
</style>
<div data-widget-id="e8741ee6-52bc-47b7-a85d-bcd67bb66cbb" data-placement-id="3018e4eb-7dd0-439c-a392-0da36a411a1c" data-placement-status="ACTIVE"><section class="pdpAccordion">
<ul class="accordionList jwTransFlip fr">
<li class="accordionListItem extraBottomSpace" id="FeaturesAnchor">
<div class="mainBlock">
<div>CARACTÉRISTIQUES</div>
<img class="arrow rotate" src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/icon-chevronup.png" alt>
</div>
<div class="hiddenBlock show features">
<div class="featuresTitle">
Caractéristiques de la tondeuse Maître du style
</div>
<div class="featuresList">
<ul>
<li>
<div class="img">
<img src="https://cdn11.bigcommerce.com/s-dukhrgn8mp/product_images/uploaded_images/kcg-icons-forwebsitev2-gillette-kcg-icons-10-hours.png" alt>
</div>
<div class="content">
<div class="title">Savoir-faire et technologie Braun</div>
<div class="text">Tête pivotante qui s’adapte à tous les contours pour de la flexibilité et de la précision.
</div>
</div>
</li>
<li>
<div class="img">
<img src="https://cdn11.bigcommerce.com/s-dukhrgn8mp/product_images/uploaded_images/kcg-icons-forwebsitev2-gillette-kcg-icons-comb.png" alt>
</div>
<div class="content">
<div class="title">Peignes interchangeables</div>
<div class="text blades">Trois peignes interchangeables pour une taille flexible avec des passages vers le haut ou vers le bas.</div>
</div>
</li>
<li>
<div class="img">
<img src="https://cdn11.bigcommerce.com/s-dukhrgn8mp/product_images/uploaded_images/kcg-icons-forwebsitev2-gillette-kcg-icons-lifetime-sharp-blades.png" alt>
</div>
<div class="content">
<div class="title">Lames qui durent toute une vie</div>
<div class="text">Lame à 4 directions durable et remplaçable qui reste tranchante jusqu’à 6 mois, pour des passages faciles, rapides et confortables dans 4 directions pendant le rasage.</div>
</div>
</li>
</ul>
<ul>
<li>
<div class="img">
<img src="https://cdn11.bigcommerce.com/s-dukhrgn8mp/product_images/uploaded_images/kcg-icons-forwebsitev2-gillette-kcg-icons-cordless-power.png" alt>
</div>
<div class="content">
<div class="title">Alimentation sans fil</div>
<div class="text">Pile rechargeable qui offre 45 minutes de taille par chargement.
</div>
</div></li>
<li>
<div class="img">
<img src="https://cdn11.bigcommerce.com/s-dukhrgn8mp/product_images/uploaded_images/kcg-icons-forwebsitev2-gillette-kcg-icons-washable-trimmer.png" alt>
</div>
<div class="content">
<div class="title">Étanche</div>
<div class="text">Manche fin en caoutchouc facile à manipuler pour un maximum de précision dans les endroits difficiles à atteindre. Complètement étanche pour une utilisation sous la douche.</div>
</div>
</li>
<li>
<div class="img">
<img src="https://cdn11.bigcommerce.com/s-dukhrgn8mp/product_images/uploaded_images/kcg-icons-forwebsitev2-gillette-kcg-icons-shave-gel-3.png" alt>
</div>
<div class="content">
<div class="title">Du style sans compromis</div>
<div class="text">Dondeuse pour la barbe de trois jours polyvalente pour raser, découper et tailler.</div>
</div>
</li>
</ul>
</div>
</div>
</li>
<li class="accordionListItem extraBottomSpace">
<div class="mainBlock">
<div>LA DESCRIPTION</div>
<img class="arrow" src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/icon-chevronup.png" alt>
</div>
<div class="hiddenBlock description show">
<div class="title isMobileOnly">Pour obtenir votre style parfait </div>
<img class="descriptionBckg isDesktopOnly" src="https://cdn11.bigcommerce.com/s-dukhrgn8mp/product_images/uploaded_images/gillette-kcg-double-edge-safety-razor-lifestyle-e.jpg" alt>
<img class="descriptionBckg isMobileOnly" src="https://cdn11.bigcommerce.com/s-dukhrgn8mp/product_images/uploaded_images/gillette-kcg-double-edge-safety-razor-lifestyle-mobile.jpg" alt>
<div class="descriptionContent">
<div class="title isDesktopOnly white">Pour obtenir votre style parfait</div>
<p class="text hr-text
">King C. Gillette Maître du style est un outil polyvalent conçu pour découper et tailler la barbe de trois jours. Cette tondeuse sans cordon est dotée de lames à 4 directions qui taillent à la fois les poils longs et les poils courts pour des passages faciles, rapides et confortables pendant le rasage. Les trois peignes interchangeables du Maître du style (1 mm, 3 mm ou 5 mm) permettent des passages vers le haut, le bas ou les côtés, pour plus de liberté et de flexibilité pendant le rasage. Cette tondeuse est également dotée de lames entièrement en métal remplaçables qui offrent jusqu’à 6 mois de rasage de près, d’une tête pivotante qui s’adapte à tous les contours pour raser les endroits difficiles à atteindre et d’une prise de caoutchouc fine à 360° pour une précision maximale. Elle est entièrement étanche avec une autonomie des piles de 45 minutes pour une utilisation pratique sous la douche. L’outil idéal pour découvrir de nouveaux styles et apprendre à tous les maîtriser.
</p>
<br>
</div>
</div>
</li>
<li class="accordionListItem">
<div class="mainBlock">
<div>CE QUE CONTIENT LA BOÎTE</div>
<img class="arrow" src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/icon-chevronup.png" alt>
</div>
<div class="hiddenBlock show compatibility">
<div class="title">La trousse du Maître du style comprend :</div>
<br>
<picture>
<source media="(min-width: 800px)" srcset="https://cdn11.bigcommerce.com/s-dukhrgn8mp/product_images/uploaded_images/gillette-kcg-style-master-witb-1280x1280.jpg" data-srcset="https://cdn11.bigcommerce.com/s-dukhrgn8mp/product_images/uploaded_images/gillette-kcg-style-master-witb-1280x1280.jpg">
<source media="(min-width: 800px)" srcset="https://cdn11.bigcommerce.com/s-dukhrgn8mp/product_images/uploaded_images/gillette-kcg-style-master-witb-1280x1280.jpg" data-srcset="https://cdn11.bigcommerce.com/s-dukhrgn8mp/product_images/uploaded_images/gillette-kcg-style-master-witb-1280x1280.jpg">
<source media="(max-width: 799px)" srcset="https://cdn11.bigcommerce.com/s-dukhrgn8mp/product_images/uploaded_images/gillette-kcg-style-master-witb-1280x1280.jpg" data-srcset="https://cdn11.bigcommerce.com/s-dukhrgn8mp/product_images/uploaded_images/gillette-kcg-style-master-witb-1280x1280.jpg">
<source media="(max-width: 799px)" srcset="https://cdn11.bigcommerce.com/s-dukhrgn8mp/product_images/uploaded_images/gillette-kcg-style-master-witb-670x670.jpg" data-srcset="https://cdn11.bigcommerce.com/s-dukhrgn8mp/product_images/uploaded_images/gillette-kcg-style-master-witb-670x670.jpg">
<img src="https://cdn11.bigcommerce.com/s-dukhrgn8mp/product_images/uploaded_images/gillette-kcg-style-master-witb-1280x1280.jpg" data-src="https://cdn11.bigcommerce.com/s-dukhrgn8mp/product_images/uploaded_images/gillette-kcg-style-master-witb-1280x1280.jpg" alt=" " style="max-width: 90%; margin: 0 auto;" class="lazyload">
</picture>
</div>
</li>
</ul>
</section>
</div>
</div>
</div></div></div>
<section class="pdpAccordion">
<ul class="accordionList pdpReviewStyling">
<li class="accordionListItem">
<div class="mainBlock">
<div>Reviews
<span data-bv-show="rating_summary" data-bv-product-id="164" style=""></span>
</div>
<img class="arrow" src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/icon-chevronup.png" alt="">
</div>
<div class="hiddenBlock show">
<div data-bv-show="reviews" data-bv-product-id="164"
style=""></div>
</div>
</li>
</ul>
</section>
</div>
</div>
<div class="freeTooltips">
<div class="jwTransFlip en">
<img src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/stencil/e3379640-6527-013c-dc29-1e351524a519/e/79f5f440-9ff8-013b-95fd-2e5f2ae1c98a/img/gil/ic-close.svg" alt="king" class="close isMobileOnly">
<div class="tooltipTitle">Subscribe and Save</div>
<div class="subHeader">How subscription works</div>
<p class="toolTipText">Get blades delivered directly to your door. Simply choose your favorite razor, set a delivery schedule and enjoy your shave. You can update your blades or frequency, pause your deliveries or cancel anytime from within your Account.</p>
<div class="subHeader">Every 4th Order Free</div>
<p class="toolTipText">When you sign up for a Gillette shave plan, you buy three and get one free. For every 4th subscription order, you'll get a credit. Credits are awarded for each unique subscription plan, and the value is equal to the lowest of the previous 3 subscription orders (including taxes).</p>
<div class="subHeader">Choosing your delivery schedule</div>
<ul class="tooltipList">
<li class="toolTipListItem">Every Month - recommended for daily shavers </li>
<li class="toolTipListItem">Every 2 Months - recommended for bi-weekly shavers</li>
<li class="toolTipListItem">Every 3 Months - recommended for weekly shavers </li>
</ul>
</div>
<div class="jwTransFlip fr">
<img src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/stencil/e3379640-6527-013c-dc29-1e351524a519/e/79f5f440-9ff8-013b-95fd-2e5f2ae1c98a/img/gil/ic-close.svg" alt="king" class="close isMobileOnly">
<div class="tooltipTitle">S’abonner et économise</div>
<div class="subHeader">Comment fonctionne l’abonnement</div>
<p class="toolTipText">Recevez vos lames directement à la maison. Choisissez simplement votre rasoir préféré, planifiez l’horaire de livraison et profitez de votre rasage. Vous pouvez mettre à jour le choix de vos lames ou la fréquence de livraison, suspendre les livraisons ou annuler en tout temps à partir de votre compte.</p>
<div class="subHeader">Chaque 4e commande est gratuite </div>
<p class="toolTipText">En vous inscrivant à un abonnement de rasage Gillette, vous en obtenez un gratuit à l’achat de trois. Pour chaque 4e commande d’abonnement, vous recevrez un crédit. Les crédits sont remis pour chaque abonnement unique et leur valeur correspond au total le moins élevé des 3 commandes précédentes (incluant les taxes).</p>
<div class="subHeader">Choisissez votre horaire de livraison </div>
<ul class="tooltipList">
<li class="toolTipListItem">Tous les mois : recommandé pour ceux qui se rasent quotidiennement</li>
<li class="toolTipListItem">Tous les deux mois : recommandé pour ceux qui se rasent deux fois par semaine</li>
<li class="toolTipListItem">Tous les trois mois : recommandé pour ceux qui se rasent une fois par semaine</li>
</ul>
</div>
</div>
</div>
<div class="popvideo product">
<div class="modal-content">
<div class="popvideoTable five">
<div class="skinguardVid">
<!-- <iframe width="560" height="315" src="" id="player" frameborder="0" allow="autoplay; accelerometer; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> -->
</div>
</div>
</div>
<div class="closebbtn">
<img alt="close" src="https://cdn11.bigcommerce.com/s-lj2uculjm3/product_images/uploaded_images/icon-close.png" />
</div>
</div>
</div>
<div id="modal" class="modal" data-reveal data-prevent-quick-search-close>
<a href="#" class="modal-close" aria-label="Close" role="button">
<span aria-hidden="true">×</span>
</a>
<div class="modal-content"></div>
<div class="loadingOverlay"></div>
</div>
<div id="alert-modal" class="modal modal--alert modal--small" data-reveal data-prevent-quick-search-close>
<div class="swal2-icon swal2-error swal2-animate-error-icon"><span class="swal2-x-mark swal2-animate-x-mark"><span class="swal2-x-mark-line-left"></span><span class="swal2-x-mark-line-right"></span></span></div>
<div class="modal-content"></div>
<div class="button-container"><button type="button" class="confirm button" data-reveal-close>OK</button></div>
</div>
</div>
<div class="footer-subscription jwTransFlip en ">
<div class="footer-top-div">
<h2>Sign up for Gillette emails to receive exclusive offers and updates.</h2>
<form class="form footer-form-container" action="/subscribe.php" method="post">
<fieldset class="form-fieldset">
<input type="hidden" name="action" value="subscribe">
<input type="hidden" name="nl_first_name" value="bc">
<input type="hidden" name="check" value="1">
<div class="form-field footer-subscribe-email-container">
<label class="form-label is-srOnly" for="nl_email">Email Address</label>
<input class="form-input footer-subscribe-input" id="nl_email" name="nl_email" type="email" value="" placeholder="Email Address">
<input class="button button--primary form-prefixPostfix-button--postfix footer-subscribe-button" type="submit" value="SUBSCRIBE">
</div>
</fieldset>
</form>
</div>
<p>By proceeding, I agree to receive emails from Gillette and other trusted <a href="http://us.pg.com/our-brands" target="_blank" rel="noopner">P&G brands </a> and programs. Click to read <a href=" https://www.pg.com/en_US/terms_conditions/index.shtml" target="_blank">P&G Terms & Conditions</a> and <a style="text-decoration: underline;" href="https://privacypolicy.pg.com/en/#statePrivacyNotice" class="event_outbound_link" target="_blank" data-action-detail="https://privacypolicy.pg.com/en/#statePrivacyNotice">P&G Privacy Policy</a>.</p>
</div>
<footer class="footer redesign-footer jwTransFlip en mainBlue alt no-margins " role="contentinfo">
<ul class="isDesktopOnly isDesktopOnlyFlex">
<li class="socialLinks-item">
<img src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/stencil/e3379640-6527-013c-dc29-1e351524a519/e/79f5f440-9ff8-013b-95fd-2e5f2ae1c98a/img/icons/canada-flag.svg" title="Canada" alt="Canada" class="flag">
</li>
<li>
<a href="javascript:void(0);">
© 2023 Procter & Gamble
</a>
</li>
<li>
<a href="/en/how-we-stack-up" title="how we stack up">
How We Stack Up
</a>
</li>
<li>
<a href="/en/faq" title="faq">
FAQ
</a>
</li>
<li>
<a href="/website-accessibility/" title="Accessibility">
Accessibility
</a>
</li>
<li>
<a href="/en/store-policy/" title="store policy">
Store Policy
</a>
</li>
<li>
<a target="_blank" href="https://www.pg.com/en_US/terms_conditions/index.shtml" title="Terms & Conditions">
Terms & Conditions
</a>
</li>
<li>
<a target="_blank" href="https://privacypolicy.pg.com/en/" title="Privacy Policy">
Privacy
</a>
</li>
<li>
<a href="https://preferencecenter.pg.com/en-ca/" class="event_outbound_link" target="_blank" title="My Data">
My Data
</a>
</li>
<li>
<a href="/en/contact-us" title="Contact Us">
Contact Us
</a>
</li>
<li>
<a class="event_button_click" href="javascript:void(0)" onclick="Optanon.ToggleInfoDisplay();">
Opt Out of Targeted Advertising
</a>
</li>
</ul>
<ul class="isMobileOnly isMobileOnlyFlex">
<ul>
</ul>
<ul>
<li class="socialLinks-item">
<img src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/stencil/e3379640-6527-013c-dc29-1e351524a519/e/79f5f440-9ff8-013b-95fd-2e5f2ae1c98a/img/icons/canada-flag.svg" title="Canada" alt="Canada" class="flag">
</li>
<li>
<a href="/en/how-we-stack-up" title="how we stack up">
How We Stack Up
</a>
</li>
<li>
<a href="/en/faq" title="faq">
FAQ
</a>
</li>
</ul>
<ul>
<li>
<a href="/en/store-policy/" title="store policy">
Store Policy
</a>
</li>
<li>
<a href="/website-accessibility/" title="Accessibility">
Accessibility
</a>
</li>
<li>
<a target="_blank" href="http://www.pg.com/en_CA/terms_conditions/index.shtml" title="Terms & Conditions">
Terms & Conditions
</a>
</li>
<li>
<a class="event_button_click" style="display: block; width: 143px;" href="javascript:void(0)" onclick="Optanon.ToggleInfoDisplay();">
Opt Out of Targeted Advertising
</a>
</li>
</ul>
<ul>
<li>
<a href="/en/contact-us" title="Contact Us">
Contact Us
</a>
</li>
<li>
<a target="_blank" href="https://privacypolicy.pg.com/en/" title="Privacy">
Privacy
</a>
</li>
<li>
<a href="https://preferencecenter.pg.com/en-ca/" class="event_outbound_link" target="_blank" title="My Data">
My Data
</a>
</li>
</ul>
<ul>
<li>
<a href="javascript:void(0);">
© 2023 Procter & Gamble
</a>
</li>
</ul>
</ul>
</footer>
<div class="footer-subscription jwTransFlip fr ">
<div class="footer-top-div">
<h2>Inscrivez-vous pour recevoir les courriels de Gillette<br>contenant des offres et des mises à jour.</h2>
<form class="form footer-form-container" action="/subscribe.php" method="post">
<fieldset class="form-fieldset">
<input type="hidden" name="action" value="subscribe">
<input type="hidden" name="nl_first_name" value="bc">
<input type="hidden" name="check" value="1">
<div class="form-field footer-subscribe-email-container">
<label class="form-label is-srOnly" for="nl_email_fr">Courriel</label>
<input class="form-input footer-subscribe-input" id="nl_email_fr" name="nl_email_fr" type="email" value="" placeholder="Courriel">
<input class="button button--primary form-prefixPostfix-button--postfix footer-subscribe-button" type="submit" value="S’INSCRIRE">
</div>
</fieldset>
</form>
</div>
<p>Par la présente, j’accepte de recevoir des courriels de Gillette ainsi que des autres marques et programmes de confiance de P&G.<br>Cliquer ici pour lire les <a href=" https://www.pg.com/en_US/terms_conditions/index.shtml" target="_blank">modalités de P&G</a> et la <a href="https://www.pg.com/privacy/english/privacy_statement.shtml" target="_blank">politique de confidentialité P&G.</a>.</p>
</div>
<footer class="footer redesign-footer mainBlue alt jwTransFlip fr " role="contentinfo">
<ul class="isDesktopOnly isDesktopOnlyFlex">
<li class="socialLinks-item">
<img src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/stencil/e3379640-6527-013c-dc29-1e351524a519/e/79f5f440-9ff8-013b-95fd-2e5f2ae1c98a/img/icons/canada-flag.svg" title="Canada" alt="Canada" class="flag">
</li>
<li>
<a href="javascript:void(0);">
© Procter & Gamble, 2023
</a>
</li>
<li>
<a href="/fr/how-we-stack-up" title="how we stack up">
Comment nous nous comparons
</a>
</li>
<li>
<a href="/fr/faq" title="faq">
FAQ
</a>
</li>
<li>
<a href="/website-accessibility/" title="Accessibilité">
Accessibilité
</a>
</li>
<li>
<a href="/fr/store-policy/" title="store policy">
Politique de Magasin
</a>
</li>
<li>
<a target="_blank" href="http://www.pg.com/fr_CA/terms_conditions/index.shtml" title="Terms & Conditions">
Modalités
</a>
</li>
<li>
<a href="https://preferencecenter.pg.com/fr-ca/" class="event_outbound_link" target="_blank" title="My Data">
Mes données
</a>
</li>
<li>
<a target="_blank" href="https://privacypolicy.pg.com/frca/" title="Privacy">
Confidentialité
</a>
</li>
<li>
<a href="/fr/contact-us" title="Contact Us">
Nous contacter
</a>
</li>
<li>
<a class="event_button_click" href="javascript:void(0)" onclick="Optanon.ToggleInfoDisplay();">
Me désinscrire de la publicité ciblée
</a>
</li>
</ul>
<ul class="isMobileOnly isMobileOnlyFlex">
<ul>
</ul>
<ul>
<li class="socialLinks-item">
<img src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/stencil/e3379640-6527-013c-dc29-1e351524a519/e/79f5f440-9ff8-013b-95fd-2e5f2ae1c98a/img/icons/canada-flag.svg" title="Canada" alt="Canada" class="flag">
</li>
<li>
<a href="/fr/how-we-stack-up" title="how we stack up">
Comment nous nous comparons
</a>
</li>
</ul>
<ul>
<li>
<a href="/fr/faq" title="faq">
FAQ
</a>
</li>
<li>
<a href="/website-accessibility/" title="Accessibilité">
Accessibilité
</a>
</li>
<li>
<a href="/fr/store-policy/" title="store policy">
Politique de Magasin
</a>
</li>
<li>
<a target="_blank" href="http://www.pg.com/fr_CA/terms_conditions/index.shtml" title="Terms & Conditions">
Modalités
</a>
</li>
</ul>
<ul>
<li>
<a target="https://privacypolicy.pg.com/frca/" title="Privacy">
Confidentialité
</a>
</li>
<li>
<a href="https://preferencecenter.pg.com/fr-ca/" class="event_outbound_link" target="_blank" title="My Data">
Mes données
</a>
</li>
<li>
<a href="/fr/contact-us" title="Contact Us">
Nous contacter
</a>
</li>
<li>
<a class="event_button_click" href="javascript:void(0)" onclick="Optanon.ToggleInfoDisplay();" style="display: inline-block; width: 143px;">
Me désinscrire de la publicité ciblée
</a>
</li>
</ul>
<ul>
<li>
<a href="javascript:void(0);">
© Procter & Gamble, 2023
</a>
</li>
</ul>
</ul>
</footer>
<!-- <div class="modal-base jwTransFlip en">
<div class="modal-offer-email">
<div class="modal-wrapper" id="popQuestionnaire">
<button id="modal-close-button"><img src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/stencil/e3379640-6527-013c-dc29-1e351524a519/e/79f5f440-9ff8-013b-95fd-2e5f2ae1c98a/img/modal/CloseX.png"></button>
<div class="modal-wrapper-second">
<img src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/stencil/e3379640-6527-013c-dc29-1e351524a519/e/79f5f440-9ff8-013b-95fd-2e5f2ae1c98a/img/modal/Gillette_Fusion5.png" alt="modal-image" class="isDesktopOnly"/>
<img src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/stencil/e3379640-6527-013c-dc29-1e351524a519/e/79f5f440-9ff8-013b-95fd-2e5f2ae1c98a/img/modal/m.Gillette_Fusion5.png" alt="modal-image" class="isMobileOnly"/>
</div>
<div class="modal-wrapper-first">
<div class="modal-wrapper-title jwTransFlip en">Sign up for Gillette emails to receive exclusive offers and updates.</div>
<div class="modal-wrapper-title jwTransFlip fr">Inscrivez-vous pour recevoir les courriels de Gillette contenant des offres et des mises à jour.</div>
<form class="form" action="/subscribe.php" method="post" id="popEmail">
<fieldset class="form-fieldset">
<input type="hidden" name="action" value="subscribe">
<input type="hidden" name="nl_first_name" value="bc">
<input type="hidden" name="check" value="1">
<div class="form-field">
<label class="form-label is-srOnly" for="nl_email">Email Address</label>
<div class="form-prefixPostfix wrap">
<input class="form-input" id="nl_email" name="nl_email" type="email" value="" placeholder="Email Address">
<span class="inline-message"></span>
<input id="submitPopEmail"class="button button--primary form-prefixPostfix-button--postfix event_profile_email_signup jwTransValue" data-action-detail="footer" type="submit" value="Subscribe">
</div>
</div>
</fieldset>
</form>
<div class="modal-wrapper-disclaimer jwTransFlip en">
By proceeding, I agree to receive emails from Gillette and other trusted P&G brands and programs. Click to read <a target="_blank" data-action-detail="https://www.pg.com/en_US/terms_conditions/index.shtml" class="event_outbound_link" href="https://www.pg.com/en_US/terms_conditions/index.shtml">P&G Terms & Conditions</a> and <a target="_blank" data-action-detail="https://www.pg.com/privacy/english/privacy_statement.shtml" class="event_outbound_link" href="https://www.pg.com/privacy/english/privacy_statement.shtml">P&G Privacy Policy</a>.
</div>
<div class="modal-wrapper-disclaimer jwTransFlip fr">
Par la présente, j’accepte de recevoir des courriels de Gillette ainsi que des autres marques et programmes de confiance de P&G. Cliquez pour lire les <a target="_blank" data-action-detail="https://www.pg.com/en_US/terms_conditions/index.shtml" class="event_outbound_link" href="https://www.pg.com/en_US/terms_conditions/index.shtml">modalités de P&G</a> et la <a target="_blank" data-action-detail="https://www.pg.com/privacy/english/privacy_statement.shtml" class="event_outbound_link" href="https://www.pg.com/privacy/english/privacy_statement.shtml">politique de confidentialité de P&G</a>.
</div>
</div>
</div>
</div>
</div> -->
<script>window.__webpack_public_path__ = "https://cdn11.bigcommerce.com/s-i2wp9fnqpg/stencil/e3379640-6527-013c-dc29-1e351524a519/e/79f5f440-9ff8-013b-95fd-2e5f2ae1c98a/dist/";</script>
<script src="https://cdn11.bigcommerce.com/s-i2wp9fnqpg/stencil/e3379640-6527-013c-dc29-1e351524a519/e/79f5f440-9ff8-013b-95fd-2e5f2ae1c98a/dist/theme-bundle.main.js"></script>
<script>
window.stencilBootstrap("product", "{\"themeSettings\":{\"optimizedCheckout-formChecklist-color\":\"#333333\",\"homepage_new_products_column_count\":4,\"card--alternate-color--hover\":\"#ffffff\",\"optimizedCheckout-colorFocus\":\"#4496f6\",\"fontSize-root\":14,\"show_accept_amex\":false,\"optimizedCheckout-buttonPrimary-borderColorDisabled\":\"transparent\",\"homepage_top_products_count\":4,\"paymentbuttons-paypal-size\":\"responsive\",\"optimizedCheckout-buttonPrimary-backgroundColorActive\":\"#000000\",\"brandpage_products_per_page\":12,\"color-secondaryDarker\":\"#cccccc\",\"navUser-color\":\"#333333\",\"color-textBase--active\":\"#757575\",\"social_icon_placement_bottom\":\"bottom_none\",\"show_powered_by\":true,\"show_accept_amazonpay\":false,\"fontSize-h4\":20,\"checkRadio-borderColor\":\"#cccccc\",\"color-primaryDarker\":\"#333333\",\"optimizedCheckout-buttonPrimary-colorHover\":\"#ffffff\",\"brand_size\":\"190x250\",\"optimizedCheckout-logo-position\":\"left\",\"optimizedCheckout-discountBanner-backgroundColor\":\"#e5e5e5\",\"color-textLink--hover\":\"#757575\",\"pdp-sale-price-label\":\"Now:\",\"optimizedCheckout-buttonSecondary-backgroundColorHover\":\"#f5f5f5\",\"optimizedCheckout-headingPrimary-font\":\"Google_Montserrat_700\",\"logo_size\":\"250x100\",\"optimizedCheckout-formField-backgroundColor\":\"#ffffff\",\"footer-backgroundColor\":\"#ffffff\",\"navPages-color\":\"#333333\",\"productpage_reviews_count\":9,\"optimizedCheckout-step-borderColor\":\"#dddddd\",\"show_accept_paypal\":false,\"paymentbuttons-paypal-label\":\"checkout\",\"paymentbuttons-paypal-shape\":\"pill\",\"optimizedCheckout-discountBanner-textColor\":\"#333333\",\"optimizedCheckout-backgroundImage-size\":\"1000x400\",\"pdp-retail-price-label\":\"MSRP:\",\"optimizedCheckout-buttonPrimary-font\":\"Google_Montserrat_500\",\"carousel-dot-color\":\"#333333\",\"button--disabled-backgroundColor\":\"#cccccc\",\"blockquote-cite-font-color\":\"#999999\",\"optimizedCheckout-formField-shadowColor\":\"transparent\",\"categorypage_products_per_page\":1000,\"container-fill-base\":\"#ffffff\",\"paymentbuttons-paypal-layout\":\"vertical\",\"homepage_featured_products_column_count\":4,\"button--default-color\":\"#666666\",\"pace-progress-backgroundColor\":\"#999999\",\"color-textLink--active\":\"#757575\",\"optimizedCheckout-loadingToaster-backgroundColor\":\"#333333\",\"color-textHeading\":\"#444444\",\"show_accept_discover\":false,\"optimizedCheckout-formField-errorColor\":\"#d14343\",\"spinner-borderColor-dark\":\"#999999\",\"restrict_to_login\":false,\"input-font-color\":\"#666666\",\"select-bg-color\":\"#ffffff\",\"show_accept_mastercard\":false,\"show_custom_fields_tabs\":false,\"color_text_product_sale_badges\":\"#ffffff\",\"optimizedCheckout-link-font\":\"Google_Montserrat_500\",\"homepage_show_carousel_arrows\":true,\"carousel-arrow-bgColor\":\"#ffffff\",\"lazyload_mode\":\"lazyload+lqip\",\"carousel-title-color\":\"#444444\",\"color_hover_product_sale_badges\":\"#000000\",\"show_accept_googlepay\":false,\"card--alternate-borderColor\":\"#ffffff\",\"homepage_new_products_count\":5,\"button--disabled-color\":\"#ffffff\",\"color-primaryDark\":\"#666666\",\"color-grey\":\"#999999\",\"body-font\":\"Google_Lato_400\",\"optimizedCheckout-step-textColor\":\"#ffffff\",\"optimizedCheckout-buttonPrimary-borderColorActive\":\"transparent\",\"navPages-subMenu-backgroundColor\":\"#e5e5e5\",\"button--primary-backgroundColor\":\"#444444\",\"optimizedCheckout-formField-borderColor\":\"#cccccc\",\"checkRadio-color\":\"#333333\",\"show_product_dimensions\":false,\"optimizedCheckout-link-color\":\"#476bef\",\"card-figcaption-button-background\":\"#ffffff\",\"icon-color-hover\":\"#999999\",\"button--default-borderColor\":\"#cccccc\",\"optimizedCheckout-headingSecondary-font\":\"Google_Montserrat_700\",\"headings-font\":\"Google_Montserrat_400\",\"label-backgroundColor\":\"#cccccc\",\"button--primary-backgroundColorHover\":\"#666666\",\"pdp-non-sale-price-label\":\"Was:\",\"button--disabled-borderColor\":\"transparent\",\"label-color\":\"#ffffff\",\"optimizedCheckout-headingSecondary-color\":\"#333333\",\"select-arrow-color\":\"#757575\",\"logo_fontSize\":28,\"alert-backgroundColor\":\"#ffffff\",\"optimizedCheckout-logo-size\":\"250x100\",\"default_image_brand\":\"img/BrandDefault.gif\",\"card-title-color\":\"#333333\",\"product_list_display_mode\":\"grid\",\"optimizedCheckout-link-hoverColor\":\"#002fe1\",\"fontSize-h5\":15,\"product_size\":\"500x659\",\"paymentbuttons-paypal-color\":\"gold\",\"homepage_show_carousel\":true,\"optimizedCheckout-body-backgroundColor\":\"#ffffff\",\"carousel-arrow-borderColor\":\"#ffffff\",\"button--default-borderColorActive\":\"#757575\",\"header-backgroundColor\":\"#ffffff\",\"paymentbuttons-paypal-tagline\":false,\"color-greyDarkest\":\"#000000\",\"color_badge_product_sale_badges\":\"#007dc6\",\"price_ranges\":true,\"productpage_videos_count\":8,\"color-greyDark\":\"#666666\",\"optimizedCheckout-buttonSecondary-borderColorHover\":\"#999999\",\"optimizedCheckout-discountBanner-iconColor\":\"#333333\",\"optimizedCheckout-buttonSecondary-borderColor\":\"#cccccc\",\"optimizedCheckout-loadingToaster-textColor\":\"#ffffff\",\"optimizedCheckout-buttonPrimary-colorDisabled\":\"#ffffff\",\"optimizedCheckout-formField-placeholderColor\":\"#999999\",\"navUser-color-hover\":\"#757575\",\"icon-ratingFull\":\"#757575\",\"default_image_gift_certificate\":\"img/GiftCertificate.png\",\"color-textBase--hover\":\"#757575\",\"color-errorLight\":\"#ffdddd\",\"social_icon_placement_top\":false,\"blog_size\":\"190x250\",\"shop_by_price_visibility\":true,\"optimizedCheckout-buttonSecondary-colorActive\":\"#000000\",\"optimizedCheckout-orderSummary-backgroundColor\":\"#ffffff\",\"color-warningLight\":\"#fffdea\",\"show_product_weight\":true,\"button--default-colorActive\":\"#000000\",\"color-info\":\"#666666\",\"optimizedCheckout-formChecklist-backgroundColorSelected\":\"#f5f5f5\",\"show_product_quick_view\":true,\"button--default-borderColorHover\":\"#999999\",\"card--alternate-backgroundColor\":\"#ffffff\",\"hide_content_navigation\":false,\"pdp-price-label\":\"\",\"show_copyright_footer\":true,\"swatch_option_size\":\"22x22\",\"optimizedCheckout-orderSummary-borderColor\":\"#dddddd\",\"optimizedCheckout-show-logo\":\"none\",\"carousel-description-color\":\"#333333\",\"optimizedCheckout-formChecklist-backgroundColor\":\"#ffffff\",\"fontSize-h2\":25,\"optimizedCheckout-step-backgroundColor\":\"#757575\",\"optimizedCheckout-headingPrimary-color\":\"#333333\",\"color-textBase\":\"#333333\",\"color-warning\":\"#f1a500\",\"productgallery_size\":\"500x659\",\"alert-color\":\"#333333\",\"shop_by_brand_show_footer\":true,\"card-figcaption-button-color\":\"#333333\",\"searchpage_products_per_page\":12,\"color-textSecondary--active\":\"#333333\",\"optimizedCheckout-formField-inputControlColor\":\"#476bef\",\"optimizedCheckout-contentPrimary-color\":\"#333333\",\"optimizedCheckout-buttonSecondary-font\":\"Google_Montserrat_500\",\"storeName-color\":\"#333333\",\"optimizedCheckout-backgroundImage\":\"\",\"form-label-font-color\":\"#666666\",\"color-greyLightest\":\"#e5e5e5\",\"optimizedCheckout-header-backgroundColor\":\"#f5f5f5\",\"productpage_related_products_count\":10,\"optimizedCheckout-buttonSecondary-backgroundColorActive\":\"#e5e5e5\",\"color-textLink\":\"#333333\",\"color-greyLighter\":\"#cccccc\",\"color-secondaryDark\":\"#e5e5e5\",\"fontSize-h6\":13,\"paymentbuttons-paypal-fundingicons\":false,\"carousel-arrow-color\":\"#999999\",\"productpage_similar_by_views_count\":10,\"pdp-custom-fields-tab-label\":\"Additional Information\",\"loadingOverlay-backgroundColor\":\"#ffffff\",\"optimizedCheckout-buttonPrimary-color\":\"#ffffff\",\"input-bg-color\":\"#ffffff\",\"navPages-subMenu-separatorColor\":\"#cccccc\",\"navPages-color-hover\":\"#757575\",\"color-infoLight\":\"#dfdfdf\",\"product_sale_badges\":\"none\",\"default_image_product\":\"img/ProductDefault.gif\",\"navUser-dropdown-borderColor\":\"#cccccc\",\"optimizedCheckout-buttonPrimary-colorActive\":\"#ffffff\",\"color-greyMedium\":\"#757575\",\"optimizedCheckout-formChecklist-borderColor\":\"#cccccc\",\"fontSize-h1\":28,\"homepage_featured_products_count\":4,\"color-greyLight\":\"#999999\",\"optimizedCheckout-logo\":\"\",\"icon-ratingEmpty\":\"#cccccc\",\"show_product_details_tabs\":true,\"icon-color\":\"#757575\",\"overlay-backgroundColor\":\"#333333\",\"input-border-color-active\":\"#999999\",\"hide_contact_us_page_heading\":false,\"container-fill-dark\":\"#e5e5e5\",\"optimizedCheckout-buttonPrimary-backgroundColorDisabled\":\"#cccccc\",\"button--primary-color\":\"#ffffff\",\"optimizedCheckout-buttonPrimary-borderColorHover\":\"transparent\",\"color-successLight\":\"#d5ffd8\",\"color-greyDarker\":\"#333333\",\"show_product_quantity_box\":true,\"color-success\":\"#008a06\",\"optimizedCheckout-header-borderColor\":\"#dddddd\",\"zoom_size\":\"1280x1280\",\"color-white\":\"#ffffff\",\"optimizedCheckout-buttonSecondary-backgroundColor\":\"#ffffff\",\"productview_thumb_size\":\"50x50\",\"fontSize-h3\":22,\"spinner-borderColor-light\":\"#ffffff\",\"geotrust_ssl_common_name\":\"\",\"carousel-bgColor\":\"#ffffff\",\"carousel-dot-color-active\":\"#757575\",\"input-border-color\":\"#cccccc\",\"optimizedCheckout-buttonPrimary-backgroundColor\":\"#333333\",\"color-secondary\":\"#ffffff\",\"button--primary-backgroundColorActive\":\"#000000\",\"color-textSecondary--hover\":\"#333333\",\"color-whitesBase\":\"#e5e5e5\",\"body-bg\":\"#ffffff\",\"optimizedCheckout-contentSecondary-font\":\"Google_Montserrat_500\",\"navUser-dropdown-backgroundColor\":\"#ffffff\",\"color-primary\":\"#757575\",\"api\":{\"production\":{\"store_url\":\"https://ecaas-services.azure-api.net\"},\"staging\":{\"store_url\":\"https://ecaas-services-stage.azure-api.net\"}},\"dropdown--quickSearch-backgroundColor\":\"#e5e5e5\",\"optimizedCheckout-contentPrimary-font\":\"Google_Montserrat_500\",\"supported_card_type_icons\":[\"american_express\",\"diners\",\"discover\",\"mastercard\",\"visa\"],\"navigation_design\":\"simple\",\"optimizedCheckout-formField-textColor\":\"#333333\",\"color-black\":\"#ffffff\",\"homepage_top_products_column_count\":4,\"hide_page_heading\":false,\"optimizedCheckout-buttonSecondary-colorHover\":\"#333333\",\"hide_breadcrumbs\":false,\"button--primary-colorActive\":\"#ffffff\",\"homepage_stretch_carousel_images\":false,\"optimizedCheckout-contentSecondary-color\":\"#757575\",\"card-title-color-hover\":\"#757575\",\"applePay-button\":\"black\",\"thumb_size\":\"100x100\",\"optimizedCheckout-buttonPrimary-borderColor\":\"#333333\",\"navUser-indicator-backgroundColor\":\"#333333\",\"optimizedCheckout-buttonSecondary-borderColorActive\":\"#757575\",\"hide_blog_page_heading\":false,\"optimizedCheckout-header-textColor\":\"#333333\",\"hide_category_page_heading\":false,\"optimizedCheckout-show-backgroundImage\":false,\"color-primaryLight\":\"#999999\",\"show_accept_visa\":false,\"logo-position\":\"center\",\"show_product_reviews_tabs\":false,\"carousel-dot-bgColor\":\"#ffffff\",\"optimizedCheckout-form-textColor\":\"#666666\",\"optimizedCheckout-buttonSecondary-color\":\"#333333\",\"geotrust_ssl_seal_size\":\"M\",\"button--icon-svg-color\":\"#757575\",\"alert-color-alt\":\"#ffffff\",\"button--default-colorHover\":\"#333333\",\"checkRadio-backgroundColor\":\"#ffffff\",\"optimizedCheckout-buttonPrimary-backgroundColorHover\":\"#666666\",\"input-disabled-bg\":\"#ffffff\",\"dropdown--wishList-backgroundColor\":\"#ffffff\",\"container-border-global-color-base\":\"#e5e5e5\",\"productthumb_size\":\"100x100\",\"button--primary-colorHover\":\"#ffffff\",\"color-error\":\"#cc4749\",\"homepage_blog_posts_count\":3,\"color-textSecondary\":\"#757575\",\"gallery_size\":\"300x300\"},\"genericError\":\"Oops! Something went wrong.\",\"maintenanceMode\":[],\"urls\":{\"home\":\"https://gillette.ca/\",\"account\":{\"index\":\"/account.php\",\"orders\":{\"all\":\"/account.php?action=order_status\",\"completed\":\"/account.php?action=view_orders\",\"save_new_return\":\"/account.php?action=save_new_return\"},\"update_action\":\"/account.php?action=update_account\",\"returns\":\"/account.php?action=view_returns\",\"addresses\":\"/account.php?action=address_book\",\"inbox\":\"/account.php?action=inbox\",\"send_message\":\"/account.php?action=send_message\",\"add_address\":\"/account.php?action=add_shipping_address\",\"wishlists\":{\"all\":\"/wishlist.php\",\"add\":\"/wishlist.php?action=addwishlist\",\"edit\":\"/wishlist.php?action=editwishlist\",\"delete\":\"/wishlist.php?action=deletewishlist\"},\"details\":\"/account.php?action=account_details\",\"recent_items\":\"/account.php?action=recent_items\",\"payment_methods\":{\"all\":\"/account.php?action=payment_methods\"}},\"brands\":\"https://gillette.ca/brands/\",\"gift_certificate\":{\"purchase\":\"/giftcertificates.php\",\"redeem\":\"/giftcertificates.php?action=redeem\",\"balance\":\"/giftcertificates.php?action=balance\"},\"auth\":{\"login\":\"/login.php\",\"check_login\":\"/login.php?action=check_login\",\"create_account\":\"/login.php?action=create_account\",\"save_new_account\":\"/login.php?action=save_new_account\",\"forgot_password\":\"/login.php?action=reset_password\",\"send_password_email\":\"/login.php?action=send_password_email\",\"save_new_password\":\"/login.php?action=save_new_password\",\"logout\":\"/login.php?action=logout\"},\"product\":{\"post_review\":\"/postreview.php\"},\"cart\":\"/cart.php\",\"checkout\":{\"single_address\":\"/checkout\",\"multiple_address\":\"/checkout.php?action=multiple\"},\"rss\":{\"products\":[]},\"contact_us_submit\":\"/pages.php?action=sendContactForm\",\"search\":\"/search.php\",\"compare\":\"/compare\",\"sitemap\":\"/sitemap.php\",\"subscribe\":{\"action\":\"/subscribe.php\"}},\"secureBaseUrl\":\"https://gillette.ca\",\"cartId\":null,\"template\":\"pages/custom/product/gillette_pdp\",\"categories\":[{\"children\":[{\"url\":\"https://gillette.ca/en/gillettelabs\",\"image\":{},\"description\":{},\"id\":\"54\",\"name\":\"GilletteLabs\",\"count\":\"10\"},{\"url\":\"https://gillette.ca/en/gillette-intimate\",\"image\":{},\"description\":{},\"id\":\"55\",\"name\":\"Gillette INTIMATE™\",\"count\":\"3\"},{\"children\":[{\"url\":\"https://gillette.ca/all-products/heated-razor/heated-razor-sk/\",\"image\":{},\"description\":{},\"id\":\"51\",\"name\":\"Heated Razor SK\",\"count\":\"2\"}],\"url\":\"https://gillette.ca/en/heated-razor\",\"image\":{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/n/hero_hr__88659_category.original.jpg\",\"alt\":\"Heated Razor\"},\"description\":{},\"id\":\"37\",\"name\":\"Heated Razor\",\"count\":\"4\"},{\"url\":\"https://gillette.ca/en/king-c-gillette-collection\",\"image\":{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/k/hero_kcg__61775_category.original.jpg\",\"alt\":\"King C. Gillette Collection\"},\"description\":{},\"id\":\"38\",\"name\":\"King C. Gillette Collection\",\"count\":\"15\"},{\"url\":\"https://gillette.ca/en/razors-trimmers\",\"image\":{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/a/hero_rzorstrimmers__73054_category.original.jpg\",\"alt\":\"Razors & Trimmers\"},\"description\":{},\"id\":\"40\",\"name\":\"Razors & Trimmers\",\"count\":\"21\"},{\"url\":\"https://gillette.ca/en/care-body\",\"image\":{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/p/hero_gillette__beardbody-desktop_category_category.original.jpg\",\"alt\":\"Care & Body\"},\"description\":{},\"id\":\"39\",\"name\":\"Care & Body\",\"count\":\"21\"},{\"url\":\"https://gillette.ca/en/braun/\",\"image\":{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/b/gillette-ca-braun-harmonia_header__05605_category.original.jpg\",\"alt\":\"Braun\"},\"description\":{},\"id\":\"50\",\"name\":\"Braun\",\"count\":\"11\"}],\"url\":\"https://gillette.ca/en/all-products\",\"image\":{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/z/desktop-image_hero_allproducts__85611_category.original.jpg\",\"alt\":\"All Products\"},\"description\":{},\"id\":\"35\",\"name\":\"All Products\",\"is_active\":true,\"count\":\"59\"},{\"url\":\"https://gillette.ca/fr/get-started/\",\"image\":{},\"description\":{},\"id\":\"29\",\"name\":\"Allez-y!\",\"count\":\"1\"},{\"url\":\"https://gillette.ca/cartridge-refill/\",\"image\":{},\"description\":{},\"id\":\"32\",\"name\":\"Cartridge Refill\",\"count\":\"1\"},{\"url\":\"https://gillette.ca/epilator/\",\"image\":{},\"description\":{},\"id\":\"48\",\"name\":\"Epilator\",\"count\":\"1\"},{\"url\":\"https://gillette.ca/handle/\",\"image\":{},\"description\":{},\"id\":\"31\",\"name\":\"Handle\",\"count\":\"1\"},{\"url\":\"https://gillette.ca/en/get-started/\",\"image\":{},\"description\":{},\"id\":\"28\",\"name\":\"Get Started\",\"count\":\"1\"},{\"url\":\"https://gillette.ca/ipl/\",\"image\":{},\"description\":{},\"id\":\"49\",\"name\":\"IPL\",\"count\":\"2\"},{\"children\":[{\"url\":\"https://gillette.ca/razors/fusion5/\",\"image\":{},\"description\":{},\"id\":\"26\",\"name\":\"Fusion5\",\"count\":\"0\"},{\"url\":\"https://gillette.ca/razors/mach3/\",\"image\":{},\"description\":{},\"id\":\"27\",\"name\":\"Mach3\",\"count\":\"0\"}],\"url\":\"https://gillette.ca/razors/\",\"image\":{},\"description\":{},\"id\":\"24\",\"name\":\"Razors\",\"count\":\"1\"},{\"url\":\"https://gillette.ca/refills/\",\"image\":{},\"description\":{},\"id\":\"45\",\"name\":\"Refills\",\"count\":\"1\"},{\"url\":\"https://gillette.ca/shop-all/\",\"image\":{},\"description\":{},\"id\":\"30\",\"name\":\"Shop All\",\"count\":\"5\"},{\"children\":[{\"url\":\"https://gillette.ca/fr/heated-razor/\",\"image\":{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/b/hero_hr__88659_category.original.jpg\",\"alt\":\"Rasoir chauffant\"},\"description\":{},\"id\":\"43\",\"name\":\"Rasoir chauffant\",\"count\":\"3\"},{\"url\":\"https://gillette.ca/fr/king-c-gillette-collection/\",\"image\":{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/f/hero_kcg__61775_category.original.jpg\",\"alt\":\"King C. Gillette Collection\"},\"description\":{},\"id\":\"41\",\"name\":\"King C. Gillette Collection\",\"count\":\"15\"},{\"url\":\"https://gillette.ca/fr/razors-trimmers/\",\"image\":{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/j/hero_rzorstrimmers__73054_category.original.jpg\",\"alt\":\"Rasoirs et tondeuses\"},\"description\":{},\"id\":\"44\",\"name\":\"Rasoirs et tondeuses\",\"count\":\"14\"},{\"url\":\"https://gillette.ca/fr/care-body/\",\"image\":{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/j/hero_gillette__beardbody-desktop_category_category.original.jpg\",\"alt\":\"Soins et Corps\"},\"description\":{},\"id\":\"42\",\"name\":\"Soins et Corps\",\"count\":\"11\"},{\"url\":\"https://gillette.ca/fr/braun/\",\"image\":{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/b/gillette-ca-braun-harmonia_header__05605_category.original.jpg\",\"alt\":\"Braun\"},\"description\":{},\"id\":\"52\",\"name\":\"Braun\",\"count\":\"6\"}],\"url\":\"https://gillette.ca/fr/all-products\",\"image\":{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/k/desktop-image_hero_allproducts__85611_category.original.jpg\",\"alt\":\"Tous les produits\"},\"description\":{},\"id\":\"36\",\"name\":\"Tous les produits\",\"count\":\"45\"}],\"product\":{\"num_reviews\":0,\"url\":\"https://gillette.ca/king-c-gillette-mens-style-master-cordless-stubble-trimmer-with-4d-blade/\",\"add_this\":[{\"service\":\"facebook\",\"annotation\":\"\"},{\"service\":\"email\",\"annotation\":\"\"},{\"service\":\"print\",\"annotation\":\"\"},{\"service\":\"twitter\",\"annotation\":\"\"}],\"gtin\":null,\"options\":[],\"id\":\"164\",\"bulk_discount_rates\":[],\"can_purchase\":true,\"meta_description\":\"The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.\",\"category\":[\"All Products\",\"Tous les produits\",\"All Products/King C. Gillette Collection\",\"Tous les produits/King C. Gillette Collection\"],\"AddThisServiceButtonMeta\":\"\",\"main_image\":{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/products/164/901/00047400675711_C1N1_EMEA__63639.1646761401.jpg?c=2\",\"alt\":\"The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.\"},\"add_to_wishlist_url\":\"/wishlist.php?action=add&product_id=164\",\"custom_fields\":[{\"id\":\"676\",\"name\":\"Free Shipping\",\"value\":\"True\"},{\"id\":\"677\",\"name\":\"DontGetDiscount\",\"value\":\"True\"},{\"id\":\"678\",\"name\":\"frenchName\",\"value\":\"Tondeuse pour la barbe de trois jours King C. Gillette Maître du style pour hommes, sans cordon, avec lame à 4 directions\"}],\"sku\":\"047400675711\",\"description\":\"\",\"tags\":[],\"warranty\":\"\",\"price\":{\"with_tax\":{\"formatted\":\"$56.49\",\"value\":56.49,\"currency\":\"CAD\"},\"without_tax\":{\"formatted\":\"$49.99\",\"value\":49.99,\"currency\":\"CAD\"},\"tax_label\":\"Tax\"},\"detail_messages\":\"\",\"availability\":\"\",\"page_title\":\"King C. Gillette Men's Style Master Cordless Stubble Trimmer with 4D Blade | Gillette Canada\",\"cart_url\":\"https://gillette.ca/cart.php\",\"max_purchase_quantity\":0,\"mpn\":null,\"upc\":\"047400675711\",\"shipping_messages\":[],\"rating\":0,\"meta_keywords\":\"\",\"show_quantity_input\":0,\"title\":\"King C. Gillette Men's Style Master Cordless Stubble Trimmer with 4D Blade\",\"gift_wrapping_available\":false,\"min_purchase_quantity\":0,\"customizations\":[],\"images\":[{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/products/164/901/00047400675711_C1N1_EMEA__63639.1646761401.jpg?c=2\",\"alt\":\"The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.\"},{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/products/164/900/Gillette_KCG_Stylemaster_Product-out-of-pack-eng-only__23782.1646761401.jpg?c=2\",\"alt\":\"The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.\"},{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/products/164/893/2-gillette-kcg-style-master-blade-1280x1280__75186.1646761399.jpg?c=2\",\"alt\":\"The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.\"},{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/products/164/897/3-gillette-kcg-style-master-in-use-1280x1280__62637.1646761400.jpg?c=2\",\"alt\":\"The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.\"},{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/products/164/894/4-gillette-kcg-style-master-grip-1280x1280__12401.1646761400.jpg?c=2\",\"alt\":\"The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.\"},{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/products/164/895/5-gillette-kcg-style-master-waterproof-1280x1280__41239.1646761400.jpg?c=2\",\"alt\":\"The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.\"},{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/products/164/896/6-gillette-kcg-style-master-combs-1280x1280__30877.1646761400.jpg?c=2\",\"alt\":\"The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.\"}]},\"myProductName\":{\"num_reviews\":0,\"url\":\"https://gillette.ca/king-c-gillette-mens-style-master-cordless-stubble-trimmer-with-4d-blade/\",\"add_this\":[{\"service\":\"facebook\",\"annotation\":\"\"},{\"service\":\"email\",\"annotation\":\"\"},{\"service\":\"print\",\"annotation\":\"\"},{\"service\":\"twitter\",\"annotation\":\"\"}],\"gtin\":null,\"options\":[],\"id\":\"164\",\"bulk_discount_rates\":[],\"can_purchase\":true,\"meta_description\":\"The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.\",\"category\":[\"All Products\",\"Tous les produits\",\"All Products/King C. Gillette Collection\",\"Tous les produits/King C. Gillette Collection\"],\"AddThisServiceButtonMeta\":\"\",\"main_image\":{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/products/164/901/00047400675711_C1N1_EMEA__63639.1646761401.jpg?c=2\",\"alt\":\"The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.\"},\"add_to_wishlist_url\":\"/wishlist.php?action=add&product_id=164\",\"custom_fields\":[{\"id\":\"676\",\"name\":\"Free Shipping\",\"value\":\"True\"},{\"id\":\"677\",\"name\":\"DontGetDiscount\",\"value\":\"True\"},{\"id\":\"678\",\"name\":\"frenchName\",\"value\":\"Tondeuse pour la barbe de trois jours King C. Gillette Maître du style pour hommes, sans cordon, avec lame à 4 directions\"}],\"sku\":\"047400675711\",\"description\":\"\",\"tags\":[],\"warranty\":\"\",\"price\":{\"with_tax\":{\"formatted\":\"$56.49\",\"value\":56.49,\"currency\":\"CAD\"},\"without_tax\":{\"formatted\":\"$49.99\",\"value\":49.99,\"currency\":\"CAD\"},\"tax_label\":\"Tax\"},\"detail_messages\":\"\",\"availability\":\"\",\"page_title\":\"King C. Gillette Men's Style Master Cordless Stubble Trimmer with 4D Blade | Gillette Canada\",\"cart_url\":\"https://gillette.ca/cart.php\",\"max_purchase_quantity\":0,\"mpn\":null,\"upc\":\"047400675711\",\"shipping_messages\":[],\"rating\":0,\"meta_keywords\":\"\",\"show_quantity_input\":0,\"title\":\"King C. Gillette Men's Style Master Cordless Stubble Trimmer with 4D Blade\",\"gift_wrapping_available\":false,\"min_purchase_quantity\":0,\"customizations\":[],\"images\":[{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/products/164/901/00047400675711_C1N1_EMEA__63639.1646761401.jpg?c=2\",\"alt\":\"The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.\"},{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/products/164/900/Gillette_KCG_Stylemaster_Product-out-of-pack-eng-only__23782.1646761401.jpg?c=2\",\"alt\":\"The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.\"},{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/products/164/893/2-gillette-kcg-style-master-blade-1280x1280__75186.1646761399.jpg?c=2\",\"alt\":\"The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.\"},{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/products/164/897/3-gillette-kcg-style-master-in-use-1280x1280__62637.1646761400.jpg?c=2\",\"alt\":\"The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.\"},{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/products/164/894/4-gillette-kcg-style-master-grip-1280x1280__12401.1646761400.jpg?c=2\",\"alt\":\"The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.\"},{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/products/164/895/5-gillette-kcg-style-master-waterproof-1280x1280__41239.1646761400.jpg?c=2\",\"alt\":\"The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.\"},{\"data\":\"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/{:size}/products/164/896/6-gillette-kcg-style-master-combs-1280x1280__30877.1646761400.jpg?c=2\",\"alt\":\"The Style Master is a versatile tool designed to edge,trim and stubble. This cordless trimmer has 4DBlades that trim both long & short hairs for easy and comfortable strokes while shaving.\"}]}}").load();
</script>
<script type="text/javascript" src="https://cdn11.bigcommerce.com/shared/js/csrf-protection-header-95f3d9ac8c049e3ed132c83a168cf1d6a8ed0237.js"></script>
<script>
wwPage = window.location.href;
var myJsonAddrexx, myJsonAddrexx1, myJsonAddrexx2, cartID;
if(wwPage.indexOf("checkout") >= 0){
fetch('/api/storefront/cart', {
credentials: 'include'
}).then(function(response) {
return response.json();
}).then(function(myJson) {
myJsonAddrexx = myJson;
cartID = myJsonAddrexx[0].id;
});
};
function fetch1(){
fetch('/api/storefront/cart?includes=consignments.availableShippingOptions', {
credentials: 'include'
}).then(function (response) {
return response.json();
}).then(function (cartJson) {
myJsonAddrexx1 = cartJson;
return cartJson[0].id;
}).catch(function (error) {
}).then(function (cartId) {
fetch('/api/storefront/checkouts/' + cartId, {
credentials: 'include'
}).then(function (response) {
return response.json();
}).then(function (checkoutJson) {
myJsonAddrexx2 = checkoutJson;
}).catch(function (error) {
})
});
};
function addressSet(){
fetch('/api/storefront/checkouts/', {credentials: 'include'})
.then(res => res.json())
.then(data => localStorage.setItem("shippingAddress2", (JSON.stringify(data.consignments[0].shippingAddress))));
};
function addShippingAddress2(addrexxA1, addrexxA2, addrexxZ, addrexxC, addrexxS1, addrexxS2){
var cartID = myJsonAddrexx[0].id; var consignmentsID = myJsonAddrexx2.consignments[0].id; var shippingAddressData = myJsonAddrexx2.consignments[0].shippingAddress; shippingAddressData.address1 = addrexxA1; shippingAddressData.address2 = addrexxA2; shippingAddressData.city = addrexxC; shippingAddressData.postalCode = addrexxZ; shippingAddressData.stateOrProvince = addrexxS1; shippingAddressData.stateOrProvinceCode = addrexxS2;
jQuery2.each(myJsonAddrexx[0].lineItems.physicalItems, function() {
var xhr = new XMLHttpRequest(); xhr.withCredentials = true; var cartQuantity = this.quantity; var itemIDX = this.id;
var data = JSON.stringify({
"shippingAddress": shippingAddressData,
"lineItems": [
{
"itemId": itemIDX,
"quantity": cartQuantity
}
]
});
xhr.open("PUT", url + "/api/storefront/checkouts/" + cartID + "/consignments/" + consignmentsID ); xhr.setRequestHeader("content-type", "application/json"); xhr.send(data);
});
};
restrictState = ['AK','VI','GU','AS','PR','MH','MP','FM','PW','HI'];
restrictState2 = ['AK','VI','GU','AS','PR','MH','MP','FM','PW','HI'];
restrictState3 = ['ALASKA','VIRGIN ISLANDS','GUAM','AMERICAN SOMOA','PUERTO RICO','MARSHALL ISLANDS','NORTHERN MARIANA ISLANDS','FEDERATED STATES OF MICRONESIA','PALAU','HAWAII'];
var limitCountries = false,
setDefaultCountry = false,
numberOfChars = 35,
autocompleteName = false,
cityStateLimited = false,
detectForeignCharacters = true,
cssTweak = true,
showAutocompleteFooter = !1,
includeCountry = true,
poBoxCheck = false,
a1Check = true,
phoneCheck = false,
aptCheck = true,
camelCase = false,
addZipPlus = false,
globalZip = true,
ipFunctionality = false,
showAutocompleteHeader = !1,
geoInitialComplete = !1,
customFields = false,
strictA1 = true,
strictZip = true,
validateAddressLine2 = true,
countryWillBeSet = 'united states',
countriesShipping = 'United States|Canada|Select a country|Choose a country|',
countriesBilling = 'United States|Canada|Select a country|Choose a country|',
zipDoubleCheck = false,
restrictStateEnabled = true,
phoneCheckAdded = false,
postEntryValZip = false,
postEntryA2 = false,
postEntryCheck = true;
function loadaddrexx() {var _cc_url = "xxredda.s3.amazonaws.com/bcinstall/xxerdda2022.js";var _cc_s = document.createElement('script');_cc_s.type = 'text/javascript';_cc_s.src = (("http:" === document.location.protocol) ? "http:" : "https:") + "//" + _cc_url;document.getElementsByTagName("head")[0].appendChild(_cc_s);}
if ((wwPage.indexOf("billing_address") >= 0 || wwPage.indexOf("create_account") >= 0 || wwPage.indexOf("shipping_address") >= 0 || wwPage.indexOf("checkout") >= 0) && wwPage.indexOf("confirmation") == -1 ){
if(wwPage.indexOf("create_account") >= 0 || wwPage.indexOf("add_shipping_address") >= 0){setTimeout(function() {loadaddrexx();}, 2000);} else {loadaddrexx();}};
if(wwPage.indexOf("checkout") >= 0){fetch1();}
</script>
<script async type="text/javascript">
window.bvDCC = {
catalogData: {
locale: "en_US",
catalogProducts: [{
"productId":"164",
"productName": "King C. Gillette Men's Style Master Cordless Stubble Trimmer with 4D Blade",
"productDescription":"",
"productImageURL":"https://cdn11.bigcommerce.com/s-i2wp9fnqpg/images/stencil/1280x1280/products/164/901/00047400675711_C1N1_EMEA__63639.1646761401.jpg?c=2",
"productPageURL":"https://gillette.ca/king-c-gillette-mens-style-master-cordless-stubble-trimmer-with-4d-blade/",
"brandName":"Gillette US",
"categoryPath" : [
{
"id":"35",
"Name":"All Products"
},
{
"id":"29",
"Name":"Allez-y!"
},
{
"id":"32",
"Name":"Cartridge Refill"
},
{
"id":"48",
"Name":"Epilator"
},
{
"id":"31",
"Name":"Handle"
},
{
"id":"28",
"Name":"Get Started"
},
{
"id":"49",
"Name":"IPL"
},
{
"id":"24",
"Name":"Razors"
},
{
"id":"45",
"Name":"Refills"
},
{
"id":"30",
"Name":"Shop All"
},
{
"id":"36",
"Name":"Tous les produits"
},
],
"upcs":["047400675711"],
"manufacturerPartNumbers":null,
"eans":["047400675711"],
"isbns":null,
"modelNumbers":null,
"family":"",
"inactive":false,
}]
}
};
window.bvCallback = function (BV) {
BV.pixel.trackEvent("CatalogUpdate", {
type: 'Product',
locale: window.bvDCC.catalogData.locale,
catalogProducts: window.bvDCC.catalogData.catalogProducts
});
};
</script>
</body>
</html>
|