SELECT 
  cscart_bm_snapping.grid_id as grid_id, 
  cscart_bm_snapping.block_id as block_id, 
  IFNULL(
    dynamic_object_content.content, 
    default_content.content
  ) as content, 
  IFNULL(
    dynamic_object_content.object_id, 
    default_content.object_id
  ) AS object_id, 
  IFNULL(
    dynamic_object_content.object_type, 
    default_content.object_type
  ) AS object_type, 
  cscart_bm_block_statuses.object_ids as object_ids, 
  cscart_bm_snapping.*, 
  cscart_bm_blocks.*, 
  cscart_bm_blocks_descriptions.* 
FROM 
  cscart_bm_snapping 
  LEFT JOIN cscart_bm_blocks ON cscart_bm_blocks.block_id = cscart_bm_snapping.block_id 
  LEFT JOIN cscart_bm_block_statuses ON cscart_bm_snapping.snapping_id = cscart_bm_block_statuses.snapping_id 
  AND cscart_bm_block_statuses.object_type LIKE '' 
  LEFT JOIN cscart_bm_blocks_descriptions ON cscart_bm_blocks.block_id = cscart_bm_blocks_descriptions.block_id 
  LEFT JOIN cscart_bm_blocks_content AS default_content ON cscart_bm_blocks.block_id = default_content.block_id 
  AND cscart_bm_blocks_descriptions.lang_code = default_content.lang_code 
  AND default_content.snapping_id = 0 
  AND default_content.object_id = 0 
  AND default_content.object_type like '' 
  LEFT JOIN cscart_bm_blocks_content AS dynamic_object_content ON cscart_bm_blocks.block_id = dynamic_object_content.block_id 
  AND cscart_bm_blocks_descriptions.lang_code = dynamic_object_content.lang_code 
  AND dynamic_object_content.object_id = 0 
  AND dynamic_object_content.object_type like '' 
WHERE 
  cscart_bm_snapping.grid_id IN (
    2167, 2168, 2169, 2176, 2178, 2179, 2173, 
    2170, 2172, 2171, 2177, 2175, 2174, 
    2180, 2183, 2188, 2192, 2189, 2648, 
    2190, 2187, 2191, 2193, 2194, 2195, 
    2196, 5541, 5717, 5864, 6370, 6377, 
    7509, 7159, 7160, 7161, 7227, 6867, 
    7016, 7051, 7253, 7498, 6382, 6385, 
    6388, 6391, 7017, 7052, 7497, 5570, 
    5650, 5865, 6371, 6378, 6383, 6386, 
    6389, 6392, 7228, 6868, 7499, 5866, 
    6372, 6379, 7500, 7252, 5543, 7501, 
    7158, 7056, 6866, 6369, 6525, 7050, 
    7015, 5542, 5547, 5863, 6380, 6381, 
    6384, 6387, 6390, 6376, 5568, 5648, 
    5705, 5716, 5779, 7049, 7391
  ) 
  AND cscart_bm_blocks_descriptions.lang_code = 'en' 
ORDER BY 
  cscart_bm_snapping.order, 
  cscart_bm_snapping.block_id

Query time 0.01367

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "614870.86"
    },
    "ordering_operation": {
      "using_filesort": true,
      "cost_info": {
        "sort_cost": "452000.00"
      },
      "nested_loop": [
        {
          "table": {
            "table_name": "cscart_bm_snapping",
            "access_type": "range",
            "possible_keys": [
              "grid_id"
            ],
            "key": "grid_id",
            "used_key_parts": [
              "grid_id"
            ],
            "key_length": "4",
            "rows_examined_per_scan": 226,
            "rows_produced_per_join": 226,
            "filtered": "100.00",
            "index_condition": "(`cscart_db`.`cscart_bm_snapping`.`grid_id` in (2167,2168,2169,2176,2178,2179,2173,2170,2172,2171,2177,2175,2174,2180,2183,2188,2192,2189,2648,2190,2187,2191,2193,2194,2195,2196,5541,5717,5864,6370,6377,7509,7159,7160,7161,7227,6867,7016,7051,7253,7498,6382,6385,6388,6391,7017,7052,7497,5570,5650,5865,6371,6378,6383,6386,6389,6392,7228,6868,7499,5866,6372,6379,7500,7252,5543,7501,7158,7056,6866,6369,6525,7050,7015,5542,5547,5863,6380,6381,6384,6387,6390,6376,5568,5648,5705,5716,5779,7049,7391))",
            "cost_info": {
              "read_cost": "101.61",
              "eval_cost": "22.60",
              "prefix_cost": "124.21",
              "data_read_per_join": "174K"
            },
            "used_columns": [
              "snapping_id",
              "block_id",
              "grid_id",
              "wrapper",
              "user_class",
              "order",
              "status"
            ]
          }
        },
        {
          "table": {
            "table_name": "cscart_bm_blocks_descriptions",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "block_id",
              "lang_code"
            ],
            "key_length": "10",
            "ref": [
              "cscart_db.cscart_bm_snapping.block_id",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 226,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "56.50",
              "eval_cost": "22.60",
              "prefix_cost": "203.31",
              "data_read_per_join": "45K"
            },
            "used_columns": [
              "block_id",
              "lang_code",
              "name"
            ]
          }
        },
        {
          "table": {
            "table_name": "cscart_bm_blocks",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "block_id"
            ],
            "key_length": "4",
            "ref": [
              "cscart_db.cscart_bm_snapping.block_id"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 226,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "94.45",
              "eval_cost": "22.60",
              "prefix_cost": "320.36",
              "data_read_per_join": "49K"
            },
            "used_columns": [
              "block_id",
              "type",
              "properties",
              "company_id",
              "storefront_id"
            ]
          }
        },
        {
          "table": {
            "table_name": "cscart_bm_block_statuses",
            "access_type": "ref",
            "possible_keys": [
              "snapping_id"
            ],
            "key": "snapping_id",
            "used_key_parts": [
              "snapping_id"
            ],
            "key_length": "4",
            "ref": [
              "cscart_db.cscart_bm_snapping.snapping_id"
            ],
            "rows_examined_per_scan": 5,
            "rows_produced_per_join": 1130,
            "filtered": "100.00",
            "index_condition": "<if>(is_not_null_compl(cscart_bm_block_statuses), ((`cscart_db`.`cscart_bm_snapping`.`snapping_id` = `cscart_db`.`cscart_bm_block_statuses`.`snapping_id`) and (`cscart_db`.`cscart_bm_block_statuses`.`object_type` like '')), true)",
            "cost_info": {
              "read_cost": "282.50",
              "eval_cost": "113.00",
              "prefix_cost": "715.86",
              "data_read_per_join": "132K"
            },
            "used_columns": [
              "snapping_id",
              "object_ids",
              "object_type"
            ]
          }
        },
        {
          "table": {
            "table_name": "default_content",
            "access_type": "ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "block_id",
              "snapping_id",
              "lang_code",
              "object_id"
            ],
            "key_length": "18",
            "ref": [
              "cscart_db.cscart_bm_snapping.block_id",
              "const",
              "cscart_db.cscart_bm_blocks_descriptions.lang_code",
              "const"
            ],
            "rows_examined_per_scan": 10,
            "rows_produced_per_join": 11300,
            "filtered": "100.00",
            "index_condition": "<if>(is_not_null_compl(default_content), (`cscart_db`.`default_content`.`object_type` like ''), true)",
            "cost_info": {
              "read_cost": "2825.00",
              "eval_cost": "1130.00",
              "prefix_cost": "4670.86",
              "data_read_per_join": "2M"
            },
            "used_columns": [
              "snapping_id",
              "object_id",
              "object_type",
              "block_id",
              "lang_code",
              "content"
            ]
          }
        },
        {
          "table": {
            "table_name": "dynamic_object_content",
            "access_type": "ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "block_id"
            ],
            "key_length": "4",
            "ref": [
              "cscart_db.cscart_bm_snapping.block_id"
            ],
            "rows_examined_per_scan": 40,
            "rows_produced_per_join": 452000,
            "filtered": "100.00",
            "index_condition": "<if>(is_not_null_compl(dynamic_object_content), ((`cscart_db`.`dynamic_object_content`.`object_id` = 0) and (`cscart_db`.`dynamic_object_content`.`lang_code` = `cscart_db`.`cscart_bm_blocks_descriptions`.`lang_code`) and (`cscart_db`.`dynamic_object_content`.`object_type` like '')), true)",
            "cost_info": {
              "read_cost": "113000.00",
              "eval_cost": "45200.00",
              "prefix_cost": "162870.86",
              "data_read_per_join": "96M"
            },
            "used_columns": [
              "object_id",
              "object_type",
              "block_id",
              "lang_code",
              "content"
            ]
          }
        }
      ]
    }
  }
}

Result

grid_id block_id content object_id object_type object_ids snapping_id wrapper user_class order status type properties company_id storefront_id lang_code name
2648 2 0 3320 top-currencies hidden-app hidden-phone 0 A currencies a:4:{s:8:"template";s:21:"blocks/currencies.tpl";s:4:"text";s:0:"";s:6:"format";s:6:"symbol";s:14:"dropdown_limit";s:1:"4";} 0 1 en Currencies
2174 7 0 3293 bk_footer_search 0 D template a:1:{s:8:"template";s:62:"addons/ca_search_widget/blocks/static_templates/search_bar.tpl";} 0 1 en Search
2193 7 0 3316 hidden-tablet hidden-desktop 0 D template a:1:{s:8:"template";s:62:"addons/ca_search_widget/blocks/static_templates/search_bar.tpl";} 0 1 en Search
2178 18 0 3296 0 D template a:1:{s:8:"template";s:37:"blocks/static_templates/copyright.tpl";} 0 1 en Copyright
2171 67 0 3288 blocks/wrappers/sidebox_important.tpl 0 D template a:1:{s:8:"template";s:44:"blocks/static_templates/my_account_links.tpl";} 0 1 en My account
2172 69 a:1:{s:7:"content";s:434:"<ul id="demo_store_links"> <li class="ty-footer-menu__item"><a href="/faqs">FAQs</a></li> <li class="ty-footer-menu__item"><a href="/return-and-cancellation-policies">Return Policy</a></li> <li class="ty-footer-menu__item"><a href="/privacy-policy">Privacy Policy</a></li> <li class="ty-footer-menu__item"><a href="terms-and-conditions">T&C</a></li> <li class="ty-footer-menu__item"><a href="contactus">Contact Us</a></li> </ul>";} 0 3290 blocks/wrappers/sidebox_important.tpl footer-no-wysiwyg 0 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en Help
2180 331 a:1:{s:7:"content";s:11238:"<style type="text/css"> .bk_footer__accountWrap img { width: 30px; aspect-ratio: 1; object-fit: cover; border-radius: 50%; } .bk-product-list__brand a { font-weight: 600; } .bk_footer_tab_list_new { position: fixed; bottom: 0; left: 0; right: 0; z-index: 100; } .bk_footer_tab_list_new > ul { list-style: none; margin: 0; display: flex; justify-content: space-around; align-items: end; position: relative; } .bk_footer_tab_list_new > ul > li { flex: 1; padding: 0; background-color: #fff; } .bk_footer_tab_list_new > ul > li.bk_footer_navMid { background-image: radial-gradient(circle at 50% 7%, transparent 28px, #fff 0); background-color: transparent; flex: 0 0 auto; width: 56px; } .bk_footer_nav2 { border-top-right-radius: 10px; } .bk_footer_nav4 { border-top-left-radius: 10px; } .bk_footer_tab_list_new > ul > li > a, .bk_footer_ask-anything { padding: 6px 0 4px; text-align: center; font-size: 12px; color: #8F8F8F; display: flex; flex-flow: column; justify-content: end; height: 56px; cursor: pointer; } .bk_footer_tab_list_new ul li.active a { color: #2DBAA8; } .bk_footer_tab_list_new li .bk_foot_activeImg, .bk_footer_tab_list_new li.active .bk_foot_nonActiveImg { display: none } .bk_footer_tab_list_new li .bk_foot_nonActiveImg, .bk_footer_tab_list_new li.active .bk_foot_activeImg { display: flex; } .bk_footer_tab_list_new .bk-icon-footer { display: block; margin: auto; } /* .bk_footer_tab_list_new li.active .bk_foot_activeImg { opacity: 1; } */ .bk_footer_tab_list_new .bk-icon-footer svg { height: 28px; max-width: none } .bk_footer_tab_list_new .bk-icon-footer img { max-width: 24px; } .bk_footer_tab_option_wrap { position: absolute; left: 0px; right: 0px; bottom: 0; background: #000000C9; overflow: hidden; height: 100vh; width: 100%; display: flex; flex-flow: column; justify-content: end; } .footer_option_container { background: #fff; border-radius: 22px 22px 0 0; padding: 10px 10px 20px; text-align: center; } h3.footer_option_title { margin: 0; font-size: 16px; line-height: 2; font-weight: 600; } .footer_option_header { position: relative; margin-bottom: 10px; } .footer_option_closeBtn { background: #EFEAFB80; border-radius: 50px; cursor: pointer; position: absolute; right: 0; top: 0; width: 34px; height: 34px; border: 1px solid #EFEAFB80; display: inline-block; } .option-crossBtn:before, .option-crossBtn:after { content: ''; width: 2px; height: 60%; background: #000000A8; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%) rotate(45deg); } .option-crossBtn:after { width: 60%; height: 2px; } ul.bk_footer_tab_option_list { list-style: none; margin: 0; padding-inline: 10px; display: flex; flex-wrap: wrap; gap: 1rem; } li.footer_option_tab { flex: 1; } li.footer_option_tab.ask-me { flex: 0 0 100%; } ul.bk_footer_tab_option_list li a, .footer_option_btn { padding: 8px 6px; display: inline-flex; flex-flow: column; align-items: center; justify-content: center; gap: 5px; border: 1px solid #EAE9EC; background: #FFFFFFB2; box-shadow: 0px 4px 10px -6px #E9D4FF33, 0px 5px 25px -5px #E9D4FF33; border-radius: 12px; width: 100%; } li.footer_option_tab.ask-me button { flex-flow: row; background: #02A2B0; border: 1px solid #32D1C1; height: 60px; } li.footer_option_tab.ask-me p { color: #fff; } ul.bk_footer_tab_option_list li a:active, .option-crossBtn:active { opacity: 0.9; } ul.bk_footer_tab_option_list li span img { width: 28px; } ul.bk_footer_tab_option_list li p { display: inline-block; padding: 0; font-size: 14px; font-weight: 500; color: #27262C; } </style> <div class="bk_footer_tab_list_new"> <ul> <li {if $runtime.controller == 'index' && $runtime.mode == 'index'} class="active" {/if} ><a href="/"> <span class="bk-icon-footer bk_foot_activeImg"> <img src="https://cdn.kindlife.in/images/lotti-icons/footer-kiki-active.svg" alt="kiki-logo" loading="lazy"> </span> <span class="bk-icon-footer bk_foot_nonActiveImg"> <img src="https://cdn.kindlife.in/images/lotti-icons/footer-kiki-nonActive.svg" alt="kiki-logo" loading="lazy"> </span>For you </a> </li> <li {if $runtime.controller == 'kindsale' && $runtime.mode == 'kindlife-luxe'} class="active" {/if} ><a href="/luxe"> <span class="bk-icon-footer"> <img src="https://cdn.kindlife.in/images/ui_icon/footer-kindluxe-icon.png" alt="luxe-logo" loading="lazy"> </span> Store </a> </li> <li {if ($runtime.controller== 'kindsale' && $runtime.mode == 'beautytalk')} class="active" {/if}><a href="live-sessions"> <span class="bk-icon-footer"> <img src="https://cdn.kindlife.in/images/ui_icon/footer-live-icon.png" alt="live-logo" loading="lazy"> </span> Live </a> </li> <li {if ($runtime.controller== 'community' && $runtime.mode == 'video')} class="active" {/if}> <a href="/community"> <span class="bk-icon-footer"> <img src="https://cdn.kindlife.in/images/ui_icon/bk-watch-icon.svg" alt="watch-logo" loading="lazy"> </span> Watch </a> </li> <li {if ($runtime.controller== 'auth' && $runtime.mode == 'login_form') || ($runtime.controller== 'pprofile' && $runtime.mode == 'account')} class="active" {/if} > <a href="index.php?dispatch=kl_account.account"> <span class="bk-icon-footer bk_foot_nonActiveImg"> {if !empty($auth['user_id'])} <div id="bk_mobile_menu_user_pic" class="bk_footer__accountWrap"><img src="{$config.female_default_icon}" alt="user-icon" loading="lazy"></div> {else} <img src="https://cdn.kindlife.in/images/ui_icon/bk-userDefault2.svg" alt="user-icon" loading="lazy"> {/if} </span> <span class="bk-icon-footer bk_foot_activeImg"> <img src="https://cdn.kindlife.in/images/ui_icon/bk-userDefault2.svg" alt="user-icon" loading="lazy"> </span>Account</a> </li> <li {if ($runtime.controller== 'kl_qna' && $runtime.mode == 'kl_qna')} class="active" {/if} > <div class="bk_footer_ask-anything"> <span class="bk-icon-footer"> <img src="https://cdn.kindlife.in/images/ui_icon/footer-ask-kiki-outline-icon.svg" alt="ask-kiki-logo"> </span> Ask kiki</div> </li> </ul> <div class="bk_footer_tab_option_wrap" style="display: none;"> <div class="footer_option_container"> <div class="footer_option_header"> <h3 class="footer_option_title">kiki.Ai</h3> <button class="footer_option_closeBtn"><span class="option-crossBtn"></span></button> </div> <ul class="bk_footer_tab_option_list"> <li class="footer_option_tab ask-me"> <button class="footer_option_btn askMeAnything-openChatBtn"> <span><img src="https://cdn.kindlife.in/images/ui_icon/footer-option-askMe-icon1.png" alt="askMe-icon" loading="lazy"></span><p>Ask Me Anything</p> </button> </li> {* {if $auth['user_id']} *} <li class="footer_option_tab ing-scan"> <a href="{if $auth['user_id']}/ingredient-label-scan?ingredient_label_scan=open {else}/login{/if}"> <span><img src="https://cdn.kindlife.in/images/ui_icon/footer-option-ingredient-icon.svg" alt="ingredient-icon" loading="lazy"></span><p>Ingradient Scan</p> </a> </li> {* {/if} *} <li class="footer_option_tab skin-analyse"> <a href="https://kindlife.go.link/www.kindlife.in/skinanalyser?adj_t=1stsaiys&adj_deep_link_id=374676"> <span><img src="https://cdn.kindlife.in/images/ui_icon/footer-option-faceAnalysis-icon.svg" alt="faceAnalysis-icon" loading="lazy"></span><p>Skin Analyser</p> </a> </li> {* <li class="footer_option_tab"> <a href="https://kindlife.go.link/www.kindlife.in/skinanalyser?adj_t=1stsaiys&adj_deep_link_id=374676"> <span><img src="https://cdn.kindlife.in/images/ui_icon/footer-option-routine-icon.svg" alt="routine-icon" loading="lazy"></span><p>Personalised Routine</p> </a> </li> *} </ul> </div> </div> </div> <script> if (typeof window !== 'undefined' && window.ReactNativeWebView) { // $('.bk_footer_tab_list_new').hide(); } // function to open extra options $(".bk_footer_ask-anything").click(function(){ $(".bk_footer_tab_option_wrap").toggle().addClass("show"); }) // function to close extra options $(".footer_option_closeBtn, .footer_option_btn").click(function(){ $(".bk_footer_tab_option_wrap").toggle().removeClass("show"); }) $(document).ready(function() { if(!window.ReactNativeWebView){ let curr_time_in_sec = (Math.floor((new Date().getTime())/1000)); function renderUserData(user_data) { if (user_data && user_data.user_profile_pic) { var html = '<img src="' + user_data.user_profile_pic + '">'; $('#bk_mobile_menu_user_pic').html(html); } else { console.log('No user profile picture found in the response.'); } } function saveToLocalStorage(key, data) { localStorage.setItem(key, data); } function remFromLocalStorage(key) { localStorage.removeItem(key); } function fetchUserData() { Tygh.$.ceAjax('request', fn_url('kl_account.user_profile_data'), { data: { 'is_ajax': 1, 'type': 'mobile_menu', 'ts': Date.now() }, method: 'GET', callback: function (user_data) { renderUserData(user_data); if(user_data.no_data) { return; } let renew_threshold = 60*60*24*7; //7 days user_data.ttl = curr_time_in_sec + renew_threshold; saveToLocalStorage(window.btoa("user_profile_data"), window.btoa(JSON.stringify(user_data))); }, hidden: true, }); } } }); </script>";} 0 3294 hidden-tablet hidden-desktop 0 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en footer tabs - new
2176 332 a:1:{s:7:"content";s:1571:"<style> ul.bk_foot_services { margin:0; padding: 20px 0; list-style: none; display: flex; justify-content: space-around; overflow: auto; } .bk_foot_services li { display: flex; padding: 0 10px; min-width: fit-content; } .bk_foot_services li figure { padding: 5px; border: 1px solid #000; border-radius: 50%; } .bk_foot_services .bk_foot_services_text { padding-left: 10px; display: flex; align-items: center; } </style> <div class="bk_container"> <ul class="bk_foot_services"> <li> <figure><img src="https://cdn.kindlife.in/images/ui_icon/Free-Shipping.svg" alt="icon" width="34" height="34"></figure> <div class="bk_foot_services_text">Free shipping on <br> orders above ₹699</div> </li> <li> <figure><img src="https://cdn.kindlife.in/images/ui_icon/easy-retunrs.svg" alt="icon" width="34" height="34"></figure> <div class="bk_foot_services_text">5 days <br> easy returns</div> </li> <li> <figure><img src="https://cdn.kindlife.in/images/ui_icon/100perc-autehntic.svg" alt="icon" width="34" height="34"></figure> <div class="bk_foot_services_text">100% authentic, <br> direct sourcing</div> </li> <li> <figure><img src="https://cdn.kindlife.in/images/ui_icon/sku-sold.svg" alt="icon" width="34" height="34"></figure> <div class="bk_foot_services_text">2M+ units sold</div> </li> </ul> </div> ";} 0 3295 bk_footer_kind 0 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en Footer kind-icons
2190 333 a:1:{s:7:"content";s:2447:"<style type="text/css"> .bk_header_right { position: relative; } .bk-icon-proicohdr img { width: 24px; border-radius: 100px; } .bk_profileIconHeader .bk_proicohdr_activeImg { display: none; } .bk_profileIconHeader .bk_proicohdr_nonActiveImg { display: block; } .bk_profileIconHeader .active .bk_proicohdr_activeImg { display: block; } .bk_profileIconHeader .active .bk_proicohdr_nonActiveImg { display: none; } .bk_profileIcon { width: 50px; text-align: center; line-height: 60px; cursor: pointer; } .bk_profileIconHeader svg { width: 26px; height: 26px; vertical-align: middle; } </style> <div class="bk_myaccount_navigation_container"> <div class="bk_profileIconHeader bk_my_account_nav_click"> <div class="bk_profileIcon {if $auth['user_id']}active{/if}"> <span class="bk-icon-proicohdr bk_proicohdr_activeImg"> <img src="https://cdn.kindlife.in/images/ui_icon/bk-userActive1.svg" alt="user-icon" loading="lazy" width="24" height="24"> </span> <span class="bk-icon-proicohdr bk_proicohdr_nonActiveImg"> <img src="https://cdn.kindlife.in/images/ui_icon/bk-userDefault1.svg" alt="user-icon" loading="lazy" width="24" height="24"> </span> </div> </div> <div class="bk_my_account_navigation"></div> </div> {literal} <script> $(document).ready(function () { $(".bk_my_account_navigation").append($(".bk_my_account_navigation_block")); $('.bk_my_account_nav_click').on('click', function () { $(".bk_my_account_navigation").slideToggle(); $('.bk_my_account_navigation_block .bk_PopUpProfile').removeClass('hidden'); return false; }); $('.bk_proflie_popClosePP').click(function () { $(".bk_my_account_navigation").slideUp(); }); $(".bk_my_account_navigation_block .bk_nav_toggle").click(function () { $(this).closest('li').toggleClass('active').siblings().removeClass('active'); $(this).closest('li').find('.bk_nav_drdn').slideToggle(); $(this).closest('li').siblings().find('.bk_nav_drdn').slideUp(); }); }); </script> {/literal}";} 0 3313 hidden-phone 0 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en sign in desktop
2188 627 a:1:{s:4:"menu";s:1:"2";} 0 4182 bk_newSideNav 0 D menu a:2:{s:8:"template";s:33:"blocks/menu/dropdown_vertical.tpl";s:25:"right_to_left_orientation";s:1:"N";} 0 1 en main menu mobile
6388 685 a:1:{s:7:"content";s:220:"<figure class="bk-live-shop__video"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/kbw-0711bt-serum.webp" alt="beauty-talk-image" width="500" height="750" loading="lazy"> </figure> ";} 0 12038 0 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en FAB 40 serums img
6379 1248 a:3:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:53:"32931,66862,32124,33712,18016,32160,33090,33085,69258";}s:10:"show_block";s:2:"AW";s:11:"enable_ajax";s:1:"N";} 0 12029 hidden-phone hidden-app 0 D products a:20:{s:8:"template";s:37:"blocks/products/products_scroller.tpl";s:10:"show_price";s:1:"Y";s:8:"hide_tag";s:1:"N";s:19:"hide_certifications";s:1:"N";s:17:"enable_quick_view";s:1:"N";s:11:"show_rating";s:1:"N";s:15:"show_brand_name";s:1:"Y";s:17:"show_share_button";s:1:"N";s:15:"show_short_desc";s:1:"N";s:24:"not_scroll_automatically";s:1:"Y";s:15:"scroll_per_page";s:1:"N";s:5:"speed";s:3:"400";s:11:"pause_delay";s:1:"3";s:13:"item_quantity";s:1:"4";s:15:"thumbnail_width";s:3:"400";s:18:"outside_navigation";s:1:"Y";s:10:"promo_text";s:1:"N";s:16:"key_product_info";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";s:10:"block_type";s:6:"slider";} 0 1 en sunscreen 101 Korean Suncare (pids)
6377 1251 a:1:{s:7:"content";s:4160:"<!-- <div class="bk_block_heading"> <h2>Korean Suncare</h2> <p> <a href="https://www.kindlife.in/korean-beauty/skincare/sun-care/">View more</a></p> </div> --> <style type="text/css"> .bk_ticker-block.steps-ticker-bg.sunscreen { background-color: #4d4dae; margin: 40px 0 10px; } @media (max-width: 767px) { .bk_ticker-block.steps-ticker-bg.sunscreen { margin: 20px 0 10px; } } </style> <div class="bk_ticker-block steps-ticker-bg sunscreen"> <div class="bk_homepage-ticker"> <div id="bk_homepage-ticker__content_1-0" class="bk_homepage-ticker__content"> <ul class="bk_homepage-ticker__list"> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step - 5 Sunscreen</span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper">Step - 5 Sunscreen </span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper">Step - 5 Sunscreen </span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper">Step - 5 Sunscreen </span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper">Step - 5 Sunscreen </span> </li> </ul> <ul class="bk_homepage-ticker__list"> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper">Step - 5 Sunscreen </span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper">Step - 5 Sunscreen </span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step - 5 Sunscreen</span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper">Step - 5 Sunscreen </span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper">Step - 5 Sunscreen</span> </li> </ul> <ul class="bk_homepage-ticker__list"> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step - 5 Sunscreen</span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper">Step - 5 Sunscreen</span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper">Step - 5 Sunscreen </span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper">Step - 5 Sunscreen</span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper">Step - 5 Sunscreen</span> </li> </ul> </div> </div> </div>";} 0 12027 0 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en Sunscreen101 Handpicked: Must have Korean SPFs (title)
6389 2242 a:3:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:106:"66509,66852,23663,39922,33722,66853,3562,36574,66516,37840,65550,65281,33696,31337,31326,63918,66504,37876";}s:10:"show_block";s:2:"AW";s:11:"enable_ajax";s:1:"N";} 0 12039 hidden-app hidden-phone 0 D products a:20:{s:8:"template";s:37:"blocks/products/products_scroller.tpl";s:10:"show_price";s:1:"Y";s:8:"hide_tag";s:1:"N";s:19:"hide_certifications";s:1:"N";s:17:"enable_quick_view";s:1:"N";s:11:"show_rating";s:1:"Y";s:15:"show_brand_name";s:1:"Y";s:17:"show_share_button";s:1:"N";s:15:"show_short_desc";s:1:"N";s:24:"not_scroll_automatically";s:1:"Y";s:15:"scroll_per_page";s:1:"N";s:5:"speed";s:3:"400";s:11:"pause_delay";s:1:"3";s:13:"item_quantity";s:1:"4";s:15:"thumbnail_width";s:3:"400";s:18:"outside_navigation";s:1:"Y";s:10:"promo_text";s:1:"N";s:16:"key_product_info";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";s:10:"block_type";s:6:"slider";} 0 1 en fab 40 serums pids desk
6385 2681 a:1:{s:7:"content";s:219:"<figure class="bk-live-shop__video"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/kbw-0711bt-tone.webp" alt="beauty-talk-image" width="500" height="750" loading="lazy"> </figure> ";} 0 12035 0 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en Fab 40 tone img
6391 2701 a:1:{s:7:"content";s:226:"<figure class="bk-live-shop__video"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/kbw-0711bt-moisturizer.webp" alt="beauty-talk-image" width="500" height="750" loading="lazy"> </figure> ";} 0 12041 0 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en Fab 40 moisturise img
6382 2708 a:1:{s:7:"content";s:2300:"<style> /* beauty talk css start */ .span4.bk-live-shop__left { flex: 0 0 240px; margin-right: 10px; } .span12.bk-live-shop__right { flex: 1; margin: 0; overflow: auto; } .span16.bk_Beauty_Talk .row-fluid:last-child { display: flex; } .span16.bk_Beauty_Talk .row-fluid:last-child:before, .span16.bk_Beauty_Talk .row-fluid:last-child:after { display: none; } .bk-live-shop__video img { width: 100%; height: auto; border-radius: 12px; object-fit: fill; aspect-ratio: 5 / 7; } @media (max-width: 767px) { .span4.bk-live-shop__left { display: none; } .bt_scroller_mobile.serums { background-image: url(https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/kbw-0711bt-cleanse.webp); background-color: #030401; } .bt_scroller_mobile.creams { background-image: url(https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/kbw-0711bt-tone.webp); background-color: #030401; } .bt_scroller_mobile.spf { background-image: url(https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/kbw-0711bt-serum.webp); background-color: #030401; } .bt_scroller_mobile.cushion { background-image: url(https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/kbw-0711bt-moisturizer.webp); background-color: #2a2b27; } .bt_scroller_mobile { background-size: contain; background-position: left; background-repeat: no-repeat; padding: 10px 10px 10px 0; } .bt_scroller_mobile .ty-thumbnail-list { padding-left: min(50%, 225px); } .bt_scroller_mobile .ty-thumbnail-list__item { border-radius: 6px; } } /* beauty talk css end */ </style> <figure class="bk-live-shop__video"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/kbw-0711bt-cleanse.webp" alt="beauty-talk-image" width="500" height="750" loading="lazy"> </figure> ";} 0 12034 0 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en fab 40 cleanse img
6371 2710 a:1:{s:7:"content";s:1640:"<style> /* beauty talk css start */ .span4.bk-live-shop__left { flex: 0 0 240px; margin-right: 10px; } .span12.bk-live-shop__right { flex: 1; margin: 0; overflow: auto; } /* .span16.bk_Beauty_Talk .row-fluid:last-child { display: flex; } */ .span16.bk_Beauty_Talk .row-fluid:last-child:before, .span16.bk_Beauty_Talk .row-fluid:last-child:after { display: none; } .bk-live-shop__video img { width: 100%; height: auto; border-radius: 12px; object-fit: fill; aspect-ratio: 3 / 4; } @media (max-width: 767px) { .span4.bk-live-shop__left { display: none; } .bt_scroller_mobile.tried { background-image: url(https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/KBW-1012-bt-hanni.jpg); background-color: #af1619; } .bt_scroller_mobile.etude { background-image: url(https://cdn.kindlife.in/images/banners/landing-page/etude-house-launch/Etude-house-bt-2309.webp); background-color: #f0f8fb; } .bt_scroller_mobile { background-size: contain; background-position: left; background-repeat: no-repeat; padding: 10px 10px 10px 0; } .bt_scroller_mobile .ty-thumbnail-list { padding-left: min(50%, 225px); gap: 6px; } .bt_scroller_mobile .ty-thumbnail-list__item { border-radius: 12px; } } /* beauty talk css end */ </style> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/KBW-1012-bt-hanni.jpg" alt="beauty-talk-image" width="500" height="750" loading="lazy"> </figure>";} 0 12020 0 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en KBW hanni(new jeans) img
5541 2828 a:1:{s:7:"content";s:11794:"<style> .correct-scroller { content-visibility: auto; contain-intrinsic-size: 100px; } .bk_1x6_grid { grid-template-columns: repeat(6, minmax(220px, 1fr)); } .bk_grid_block { display: grid; gap: 10px; overflow: auto hidden; padding-bottom: 0px; } ul.bk_grid_block li { list-style: none; padding: 0px; } .bk_1x5_grid { grid-template-columns: repeat(6, max(267px, 23%)); } .bk_1xnew_grid { grid-template-columns: repeat(6, max(267px, 23%)); } ul.bk_grid_block li img { border-radius: 5px; } .bk_1x4_grid-lg.scroll { grid-template-columns: repeat(6, max(267px, 23%)); margin: 0px; list-style: none; } /* css for block heading start */ .bk_block_heading h2, .ty-mainbox-container h1.ty-mainbox-title, .ty-mainbox-container h2.ty-mainbox-title, .ty-mainbox-simple-title { text-align: center; font-size: 28px; line-height: 1.1; margin: 30px 0 8px; text-transform: uppercase !important; font-weight: 400; position: relative; z-index: 1; } .bk_block_heading p { font-size: 18px; text-align: center; padding: 0 0 10px; font-weight: 500; line-height: 1.1; position: relative; z-index: 1; } .bk_block_heading a { font-size: 17px; text-decoration: underline !important; font-weight: inherit; } .bk_block_heading .bk_code { background-color: #fbd3d4; display: inline-block; line-height: 2; padding: 0 10px; border-radius: 4px; color: #000; } span.bk_code1 { font-weight: 600; color: #ce0f2b; } /* css for block heading end*/ /* css for block list images start */ ul.bk_sub-cat_block { display:flex; list-style: none; padding: 5px 0 0; white-space: nowrap; text-align: center; width: 100%; overflow-x: auto; overflow-y: hidden; margin: 0px 0 0px; } ul.bk_sub-cat_block::-webkit-scrollbar { display: none; } ul.bk_sub-cat_block li { flex:0 0 15%; z-index: 1; position: relative; padding:0px; margin: 0px 5px; } ul.bk_sub-cat_block li img { height: 110px; } ul.bk_flex_block { margin: 0; list-style: none; overflow: auto; white-space: nowrap; display: flex; flex-wrap: nowrap; row-gap: 20px; padding-bottom: 0px; } ul.bk_flex_block li { padding: 0 10px; z-index: 1; position: relative; } ul.bk_flex_block li img { width: 100%; } .bk_space li img { filter: drop-shadow(2px 4px 4px #d0d0d0); } .bk_space li img:hover { filter: drop-shadow(2px 4px 4px #fff); } .bk_1x5_block.scroll { flex-wrap: nowrap; column-gap: 0px; } .bk_1x5_block.scroll li { min-width: 140px; flex: 1; padding: 0 10px; } .bk_1x5_block li { flex: 0 0 20%; } .bk_1x4_block li { flex: 0 0 25%; } .bk_1x3_block li, .bk_2x3_block li { flex: 0 0 33.33%; min-width: 320px; } .bk_1x3_block.scroll li { flex: 0 0 30%; padding: 0 5px; } .bk_1x4_block.scroll li { flex: 0 0 max(200px,20%); } .bk_1x2_block li { flex: 0 0 50%; } .bk_block_scroller { overflow: auto; padding-bottom: 5px; } .bk_block_scroller.scroll { display: flex; row-gap: 10px; } .bk_block_scroller.scroll .bk_1x4_block li { min-width: 140px; flex: 0 0 25%; } .bk_block_scroller .bk_1x2_block, .bk_block_scroller .bk_1x3_block, .bk_block_scroller .bk_1x4_block, .bk_block_scroller .bk_1x6_block, .bk_block_scroller .bk_1x8_block { overflow: unset; flex-wrap: nowrap; } .bk_block_scroller .bk_1x2_block li, .bk_block_scroller .bk_1x3_block li, .bk_block_scroller .bk_1x4_block li { min-width: 250px; } .bk_block_scroller .bk_1x6_block li { min-width: 150px; } .bk_category_link { text-align: right; margin: 10px 0 0; } .bk_category_link a { display: inline-block; font-size: 14px; border: 1px solid #1b1c1e; border-radius: 50px; border-radius: 50px; padding: 0 16px; line-height: 30px; } .bk_category_link a:hover { color: #1b1c1e; } .bk_prod_desc p { text-align: center; white-space: normal; padding: 2px 0px 2px 0px; font-size: 20px; font-weight: 600; } .HP_block_wrap { border-radius: 5px; overflow: hidden; box-shadow: 0px 4px 3px #0000000D; -webkit-box-shadow: 0px 4px 3px #0000000D; } ul.bk_flex_block li .HP_block_wrap img { border-radius: 0; } .HP_block_wrap div, .bk_prod_desc { padding: 4px 0 0; white-space: normal; text-align: center; font-size: 16px; font-weight:600; } .HP_block_wrap div span, .bk_prod_desc span { font-size: 18px; font-weight: 500; line-height: 20px; text-shadow: 0px 0px 6px rgb(0 0 0 / 10%); -webkit-text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1); } .HP_block_wrap div small { display: block; font-size: 14px; font-weight: 500; padding-top: 2px; } .HP_block_wrap figure { overflow: hidden; } .HP_block_wrap:hover img { transform: scale(1.1); transition: 0.5s; } /* css for block list images end */ /* css for strip banner start*/ .strip_banner { margin: 50px auto 0; } .strip_banner img, ul.bk_flex_block li img { border-radius: 5px; } /* css for strip banner end*/ .desktop { display: block !important; } .mobile { display: none !important; } /* css for img border start*/ .border li a img { border: 1px solid #f1f1f1; } /* css for img border end */ /* css for img shadow start */ .shadow img { box-shadow: 0px 4px 3px #0000000D; -webkit-box-shadow: 0px 4px 3px #0000000D; } .shadow img:hover { box-shadow: none; } /* css for img shadow end */ ul.bk_community_list li { box-shadow: 0px 4px 3px #0000000D; -webkit-box-shadow: 0px 4px 3px #0000000D; } /* RESPONSIVE CSS FOR ALL */ /* css for tablet view or less */ @media (min-width: 767px) { ul.bk_1x8_block, ul.bk_1x6_block { flex-wrap: nowrap; } ul.bk_1x12_block li { flex: 0 0 16.66%; } .bk_1x8_block li { flex: 0 0 12.50%; min-width: 140px; } .bk_1x6_block li { flex: 0 0 16.66%; min-width: 140px; } } /* css for tablet view or less */ @media (max-width: 767px) { ul.bk_sub-cat_block li img { height: 80px; } .bk_1x8_block li, .bk_1x12_block li { flex: 0 0 25%; } .bk_1x5_block.scroll { column-gap: 0; } .bk_block_heading h2, .ty-mainbox-container h1.ty-mainbox-title, .ty-mainbox-container h2.ty-mainbox-title, .ty-mainbox-simple-title { font-size: 20px; margin: 30px auto 5px; } .strip_banner { margin: 30px auto 0; } .bk_block_heading p { font-size: 14px; padding: 0 0 10px; } } /* css for small view or less */ @media (max-width: 600px) { .bk_prod_desc span { font-size: 13px; } ul.bk_sub-cat_block { padding: 20px 0 0; } .bk_block_heading a { font-size: 13px; } .bk_1x3_block.scroll li { flex: 0 0 80%; } ul.bk_sub-cat_block { margin: 0px; } .bk_prod_desc p { font-size: 15px; } .bk_1x4_block li, .bk_1x5_block li { flex: 0 0 50%; } ul.bk_1x2_block li { flex: 0 0 100%; } .bk_block_scroller .bk_1x2_block li { flex: 0 0 50%; } .bk_block_scroller.scroll { flex-flow: column; } .bk_block_scroller .bk_1x3_block li, .bk_block_scroller .bk_1x4_block li { flex: 0 0 48%; } .bk_block_scroller .bk_1x6_block li { flex: 0 0 40%; } .mobile { display: block !important; } .desktop { display: none !important; } ul.bk_sub-cat_block li { margin: 0px; padding: 0 5px; flex: 0 0 30%; } .bk_1x6_block li { flex: 0 0 50%; } } /* css for mobile view or less */ @media (max-width: 480px) { .bk_1x5_grid { grid-template-columns: repeat(3, 45%); } .bk_1xnew_grid { grid-template-columns: repeat(6, 45%); } .bk_1x6_grid { grid-template-columns: repeat(3, 45%); } ul.bk_flex_block.bk_1x3_block { flex-wrap: nowrap; } .bk_1x4_grid-lg.scroll { grid-template-columns: repeat(6, 44%); } ul.bk_sub-cat_block { margin: 0px 0 0px; } ul.bk_flex_block { row-gap: 10px; } ul.bk_flex_block li { padding: 0 5px; } .bk_block_scroller .bk_1x8_block li { flex: 0 0 30%; } .bk_2x3_block li { flex: 0 0 50%; } .bk_1x3_block li { flex: 0 0 80%; min-width: unset; } .HP_block_wrap div span { font-size: 13px; line-height: 16px; } .HP_block_wrap div small { font-size: 12px; } .bk_block_heading .bk_heading_link { display: block; } .bk_1x4_block.scroll li { flex: 0 0 55%; } .bk_prod_desc { font-size: 13px; } } /* css for small mobile view */ @media (max-width: 360px) { .bk_1x6_block li { flex: 0 0 50%; } } </style> <script> let arr = $(".bk_tag_product").toArray() arr.forEach(ar => { let path = $(ar).find($("img")).toArray() let kbSrc = "kbeautytag_brand_kindlife_200x200.svg"; let imgPath = path.filter(pa => { return $(pa).attr("src").match(kbSrc); }) $(imgPath).hide(); }); </script> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css" /> <script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script>";} 0 10343 0 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en Global beauty sale css
5779 2841 a:1:{s:7:"content";s:125:"<div class="bk_block_heading"> <h2>All the rage: Toners & Pads</h2> <p>Toner? I barely know her!</p> </div>";} 0 10357 0 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en Kbw all the rage heading
6370 2853 a:1:{s:7:"content";s:95:"<div class="bk_block_heading"> <h2>Hanni (NewJeans) – Fresh-face minimal makeup</h2> </div>";} 0 10369 0 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en kbw Hanni (NewJeans) – Fresh-face minimal makeup
5570 2867 a:3:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:23:"32130,13925,23657,65261";}s:10:"show_block";s:2:"AW";s:11:"enable_ajax";s:1:"N";} 0 10414 bk_bt_scroller_mobile_rev hidden-tablet hidden-desktop 0 A products a:20:{s:8:"template";s:37:"blocks/products/products_scroller.tpl";s:10:"show_price";s:1:"Y";s:8:"hide_tag";s:1:"N";s:19:"hide_certifications";s:1:"N";s:17:"enable_quick_view";s:1:"N";s:11:"show_rating";s:1:"Y";s:15:"show_brand_name";s:1:"Y";s:17:"show_share_button";s:1:"N";s:15:"show_short_desc";s:1:"Y";s:24:"not_scroll_automatically";s:1:"Y";s:15:"scroll_per_page";s:1:"N";s:5:"speed";s:3:"400";s:11:"pause_delay";s:1:"3";s:13:"item_quantity";s:1:"5";s:15:"thumbnail_width";s:3:"400";s:18:"outside_navigation";s:1:"Y";s:10:"promo_text";s:1:"N";s:16:"key_product_info";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";s:10:"block_type";s:6:"slider";} 0 1 en Serums graps pids
5542 2876 a:1:{s:7:"content";s:9881:"<style> .com_expert_category_items{ font-size: 11px; padding: 0px 5px; line-height: 16px; } .com_block_space { padding: 20px; } .com_color_white .bk_mainbox-heading * { color: #fff; } .com_block_container { display: inline-block; width: 100%; } .com_block_container li, .bk_mainbox-container li { padding: 0; } .show_only_mob { display: none; } .bk_mainbox-container { margin-top: 40px; } .bk_mainbox-heading { position: relative; } .bk_align_left { text-align: left; } .bk_align_center { text-align: center; } .bk_mainbox-heading .bk_mainbox-title { margin: 0 auto 10px; font-size: 28px; line-height: 1.1; font-weight: 300; text-transform: uppercase; } .bk_mainbox-sub-title { font-size: 18px; padding: 0 0 20px; font-weight: 500; line-height: 1.1; } .bk_mainbox-link { position: absolute; top: 5px; right: 0; font-size: 15px; color: #2dbaa8; font-weight: 500; line-height: 20px; } .bk_mainbox-link:hover { color: #2dbaa8; text-decoration: underline !important; } .bk_slider_list > ul { display: flex; overflow: auto; column-gap: 20px; padding-bottom: 5px; margin: 0; list-style: none; } .bk_slider_list > ul > li { flex: 0 0 22%; padding: 0; min-width: 180px; } .bk_grid_list > ul { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; } .bk_reel_top_banner_container img { border-radius: 18px; } /* css for reel-page tabs section start */ ul.bk_reel_tabs_list { display: flex; justify-content: center; list-style: none; column-gap: 8%; margin-top: 20px; } li.bk_reel_tabs_item a { line-height: 36px; display: inline-block; padding: 0 20px; border-radius: 17px; font-size: 16px; border: 1px solid #EBECEC; color: #323C4A; } li.bk_reel_tabs_item.active a, li.bk_reel_tabs_item a:hover { color: #fff; background: #323C4A; } /* css for reel-page tabs section end */ /* css for trending categories setion start */ ul.comm_trend_category_list { margin: 0; list-style: none; display: flex; justify-content: center; column-gap: 10px; overflow: auto; } .comm_trend_category_list li { flex: 0 0 120px; text-align: center; } .comm_trend_category_card figure { background: #E7FAF8; border-radius: 20px; padding: 10px; margin-bottom: 6px; } li.comm_trend_category_card:hover figure { box-shadow: 0px 2px 6px #00000020; } .comm_trend_category_card figure img { mix-blend-mode: darken; } .comm_trend_category_name { font-size: 16px; } /* css for trending categories setion end */ /* css for video setion start */ .bk_comm_video-item { position: relative; background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0px 0px 6px #00000020; } button.cp-video-cover__a { border: 0; padding: 0; background: transparent; width: 100%; } span.com_video_category { position: absolute; top: 10px; left: 10px; background: #0005; line-height: 24px; padding: 0 10px; color: #fff; border-radius: 17px; font-size: 11px; z-index: 1; } .com_video_user_desc { position: relative; } .com_video_thumbnail img { aspect-ratio: 2/3; object-fit: cover; width: 100%; height: 100%; } .com_video_user_details { position: absolute; bottom: 0; left: 0; right: 0; padding: 30px 6px 6px; background: linear-gradient(180deg, #09090900 0%, #111111B1 100%); } .com_video_user a { display: flex; align-items: center; column-gap: 6px; width: fit-content; } span.com_video_user_img img { box-shadow: 0px 3px 6px #00000029; border: 1px solid #FFFFFF; border-radius: 50%; overflow: hidden; width: 30px; aspect-ratio: 1; object-fit: cover; } span.com_video_user_name { color: #fff; font-size: 13px; } .com_video_title { display: flex; align-items: center; justify-content: space-between; } .com_video_title h3 { color: #FFF; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; font-size: 12px; font-weight: 500; margin: 0; } span.com_video_playBtn svg { width: 28px; height: 28px; margin-left: 10px; cursor: pointer; } .com_video_product_tag { display: flex; padding: 8px; align-items: center; column-gap: 8px; } .com_video_product_tag_img { flex: 0 0 50px; height: 50px; overflow: hidden; } .com_video_product_tag_img { object-fit: cover; } .com_video_product_tag_title { font-size: 12px; color: #35B9A8; line-height: 12px; padding: 2px 0 0; display: inline-block; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; } h4.com_video_product_tag_desc { margin: 2px 0; font-size: 12px; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; line-height: 16px; height: 32px; font-weight: 400; } /* css for video setion end */ /* css for creator setion start */ .com_creator_item, .com_expert_item_wrap { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 7/8; } figure.com_creator_thumbnail, figure.com_expert_thumbnail { height: 100%; display: grid; align-items: center; justify-content: center; background: #0003; } figure.com_expert_thumbnail { background: #0003; } figure.com_creator_thumbnail img, figure.com_expert_thumbnail img { aspect-ratio: 7/8; object-fit: cover; width: 100%; height: 100%; } figure img.no-img { width: auto; height: auto; } .com_creator_desc, .com_expert_desc { position: absolute; bottom: 0; left: 0; right: 0; padding: 10px; background: linear-gradient(181deg, #09090900 0%, #000000D5 100%); } h3.com_creator_name, h3.com_expert_name { font-size: 18px; color: #FAF5FD; font-weight: 600; line-height: 22px; margin: 0 0 10px; } .com_creator_details, .com_expert_details { display: flex; align-items: center; justify-content: space-between; } .com_creator_activity { display: flex; align-items: center; column-gap: 14px; } .com_creator_followBtn span a, .com_expert_followBtn span a { font-size: 13px; font-weight: 500; color: #fff; background: #22D1C1; border: 1px solid #22D1C1; line-height: 30px; padding: 0 14px; border-radius: 6px; display: inline-block; cursor: pointer; margin-left: 5px; } .com_creator_activity div { color: #FAF5FD; font-size: 11px; display: flex; align-items: center; column-gap: 4px; } /* css for creator setion end */ /* css for expert setion start */ .com_expert_item { padding: 3px; border-radius: 20px; background: linear-gradient(140deg, #EF7BB7 0%, #EBDFEB 38%, #FD7778 71%, #2AB6AC 100%); } .com_expert_item_wrap { border-radius: 20px; } .com_expert_category { margin-bottom: 10px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; color: #fff; } .com_expert_category_items { /* background: linear-gradient(107deg, #ef7bb791 0%, #ebdfec9e 38%, #fd7778a8 71%, #2ab6acb3 100%); */ background: #0006; display: inline-block; border-radius: 4px; padding: 0 5px; line-height: 16px; color: #fff; font-size: 12px; } span.com_expert_category_icon { padding: 0 2px; display: none; } /* css for expert setion end */ /* css for hashtag block start */ .comm_trend_hashtag_block h2 { color: #2DBAA8; } .comm_trend_hashtags_list { display: flex; flex-wrap: wrap; gap: 7px; } .comm_trend_hashtag_item { background-color: #E7FAF8; border-radius: 7px; padding: 0 10px; line-height: 32px; font-size: 14px; } /* css for hashtag block end */ @media (max-width: 991px) { .com_creator_desc, .com_expert_desc { padding: 5px 5px 10px; } h3.com_creator_name, h3.com_expert_name { font-size: 15px; line-height: 20px; margin: 0 0 6px; } .com_creator_followBtn span a, .com_expert_followBtn span a { font-size: 11px; line-height: 24px; padding: 0 10px; } .com_expert_content { font-size: 10px; line-height: 14px; } .com_expert_category { white-space: normal; margin-bottom: 2px; line-height: 18px; padding: 0px; font-size: 10px; } } @media (max-width: 767px) { .bk_mainbox-container { margin-top: 30px; } .bk_mainbox-heading .bk_mainbox-title { font-size: 20px; margin: 0 auto 5px; } .bk_mainbox-sub-title { font-size: 16px; padding: 0 0 15px; } ul.bk_reel_tabs_list { margin-top: 10px; } .com_block_space { padding-block: 10px; } .bk_shadow { box-shadow: 0px -1px 5px #00000029; padding-block: 10px; } ul.comm_trend_category_list { justify-content: start; } .comm_trend_category_list li { flex: 0 0 90px; } .comm_trend_category_name { font-size: 14px; } } @media (max-width: 600px) { .bk_grid_list > ul { grid-template-columns: repeat(2,1fr); } } @media (max-width: 480px) { .show_only_mob { display: block; } .show_only_desk { display: none; } .bk_slider_list > ul, .bk_grid_list > ul { gap: 10px; } li.bk_reel_tabs_item a { line-height: 34px; padding: 0 14px; font-weight: 400; font-size: 14px; } .comm_trend_hashtag_item { line-height: 28px; font-size: 12px; } } </style>";} 0 13214 0 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en Community page - reel css
7049 3021 a:1:{s:7:"content";s:4875:"<style> .bk_ticker-block { background-color: #4d4dae; display: flex; margin: 10px 0px; align-items: center; white-space: nowrap; } @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%) } } .bk_logo_slider { overflow: hidden; position: relative; } .slide-track { animation: scroll 20s linear infinite; display: inline-flex; } .slide { width: 120px; margin: 0 10px; text-align: center; } .slide img { width: 100%; } .drip-sale .slide { border: 2px solid #79d0c5; border-radius: 50%; overflow: hidden; } .drip-sale .slide img { transform: scale(1.1); } @media (max-width: 767px) { .slide { width: 100px; margin: 0 5px; } } </style> <div class="bk_block_heading"> <h2> K-beauty's hidden gems</h2> </div> <div class="bk_logo_slider drip-sale"> <div class="slide-track"> <div class="slide"> <a href="https://www.kindlife.in/haruharu-wonder/"> <img src="https://cdn.kindlife.in/images/banners/category/Kbeauty-1205-brands-haruharu.webp" alt="" loading="lazy" width="100" height="100" /></a> </div> <!-- <div class="slide"> <a href="https://www.kindlife.in/juice-to-cleanse/"> <img src="https://cdn.kindlife.in/images/banners/category/Underrated-2205-juice.webp" alt="" loading="lazy" width="100" height="100" /></a> </div> --> <div class="slide"> <a href="https://www.kindlife.in/orjena/"> <img src="https://cdn.kindlife.in/images/banners/category/Underrated-2205-orjena.webp" alt="" loading="lazy" width="100" height="100" /></a> </div> <div class="slide"> <a href="https://www.kindlife.in/oceglow/"> <img src="https://cdn.kindlife.in/images/banners/category/Underrated-2205-oceglow.webp" alt="" loading="lazy" width="100" height="100" /></a> </div> <div class="slide"> <a href="https://www.kindlife.in/its-skin/"> <img src="https://cdn.kindlife.in/images/banners/category/Kbeauty-1205-brands-its-skin.webp" alt="" loading="lazy" width="100" height="100" /></a> </div> <div class="slide"> <a href="https://www.kindlife.in/belif/"> <img src="https://cdn.kindlife.in/images/banners/category/Kbeauty-1205-brands-belif.webp" alt="" loading="lazy" width="100" height="100" /></a> </div> <div class="slide"> <a href="https://www.kindlife.in/one-days-you-en/ "> <img src="https://cdn.kindlife.in/images/banners/category/Kbeauty-1205-brands-one-day.webp" alt="" loading="lazy" width="100" height="100" /></a> </div> <!-- <div class="slide"> <a href="https://www.kindlife.in/holika-holika/"> <img src="https://cdn.kindlife.in/images/banners/category/Kbeauty-1205-brands-holika.webp" alt="" loading="lazy" width="100" height="100" /></a> </div> --> <div class="slide"> <a href="https://www.kindlife.in/haruharu-wonder/"> <img src="https://cdn.kindlife.in/images/banners/category/Kbeauty-1205-brands-haruharu.webp" alt="" loading="lazy" width="100" height="100" /></a> </div> <!-- <div class="slide"> <a href="https://www.kindlife.in/juice-to-cleanse/"> <img src="https://cdn.kindlife.in/images/banners/category/Underrated-2205-juice.webp" alt="" loading="lazy" width="100" height="100" /></a> </div> --> <div class="slide"> <a href="https://www.kindlife.in/orjena/"> <img src="https://cdn.kindlife.in/images/banners/category/Underrated-2205-orjena.webp" alt="" loading="lazy" width="100" height="100" /></a> </div> <div class="slide"> <a href="https://www.kindlife.in/oceglow/"> <img src="https://cdn.kindlife.in/images/banners/category/Underrated-2205-oceglow.webp" alt="" loading="lazy" width="100" height="100" /></a> </div> <div class="slide"> <a href="https://www.kindlife.in/its-skin/"> <img src="https://cdn.kindlife.in/images/banners/category/Kbeauty-1205-brands-its-skin.webp" alt="" loading="lazy" width="100" height="100" /></a> </div> <div class="slide"> <a href="https://www.kindlife.in/belif/"> <img src="https://cdn.kindlife.in/images/banners/category/Kbeauty-1205-brands-belif.webp" alt="" loading="lazy" width="100" height="100" /></a> </div> <div class="slide"> <a href="https://www.kindlife.in/one-days-you-en/ "> <img src="https://cdn.kindlife.in/images/banners/category/Kbeauty-1205-brands-one-day.webp" alt="" loading="lazy" width="100" height="100" /></a> </div> <!-- <div class="slide"> <a href="https://www.kindlife.in/holika-holika/"> <img src="https://cdn.kindlife.in/images/banners/category/Kbeauty-1205-brands-holika.webp" alt="" loading="lazy" width="100" height="100" /></a> </div> --> </div> </div>";} 0 10827 0 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en Kbw Brands Scroller
7016 3057 a:1:{s:7:"content";s:4932:"<style> .etude-wrap .carousel-card img { max-height: 150px; cursor: pointer; object-fit: contain; } .etude-wrap .carousel-card { flex: 0 0 18%; } @media (max-width: 600px) { .etude-wrap .carousel-card { flex: 1; min-width: 90px; } .etude-wrap .carousel-card img { max-height: 99px; } } </style> <style> .bk_prod_desc p { padding: 0px; font-size: 14px; } .carousel-container1 img.active-img { filter: none; opacity: 1; transition: all 0.3s ease; } .carousel-container1 img.inactive-img { filter: contrast(0.8); opacity: 0.6; transition: all 0.3s ease; } .carousel-container1 { display: flex; overflow-x: auto; scroll-behavior: smooth; justify-content: space-between; } .rizz-wrap .carousel-card { flex: 0 0 18%; } .rizz-wrap .carousel-card img { max-height: 150px; cursor: pointer; object-fit: contain; } @media(max-width:600px) { .bk_prod_desc p { padding: 0px; font-size: 11px; } .rizz-wrap .carousel-card { flex: 1; min-width: 90px; } .add-mrgin { margin-top: 15px; } } </style> <div class="bk_block_heading"> <h2>ETUDE FAVES</h2> </div> <section class="carousel-block" style="margin-bottom: 5px;"> <button class="carousel-pre-btn"><span class="ty-icon ty-icon-left-open-thin"></span></button> <button class="carousel-nxt-btn"><span class="ty-icon ty-icon-right-open-thin"></span></button> <div class="carousel-container1 card_1x4_scroll etude-wrap"> <div class="carousel-card bk_toggle_circle_five" id="pid_carousal_1"> <div class="carousel-image"> <img class="active-img" src="https://cdn.kindlife.in/images/banners/hp-images/dev-2309-lip-marker2.png" alt="img" width="400" height="120" loading="lazy"> </div> <div class="bk_prod_desc"> <p>Dear Darling Water Tints</p> </div> </div> <div class="carousel-card bk_toggle_circle_five" id="pid_carousal_2"> <div class="carousel-image"> <img class="inactive-img" src="https://cdn.kindlife.in/images/banners/hp-images/dev-2309-fixer.png" alt="img" width="400" height="120" loading="lazy"> </div> <div class="bk_prod_desc"> <p> Dear Darling Fixing Tint </p> </div> </div> <div class="carousel-card bk_toggle_circle_five" id="pid_carousal_3"> <div class="carousel-image"> <img class="inactive-img" src="https://cdn.kindlife.in/images/banners/hp-images/dev-2309-tint.png"> </div> <div class="bk_prod_desc"> <p>Dear Darling Water Gel Tints</p> </div> </div> </section> <script> $(document).ready(function () { // Initially show only pid_carousal_1 content $('.pid_carousal_1').css('display', 'block'); $(".bk_toggle_circle_five").click(function () { // Image highlight toggle $(".bk_toggle_circle_five img").removeClass("active-img").addClass("inactive-img"); $(this).find("img").removeClass("inactive-img").addClass("active-img"); // Optional: card active class $(this).addClass("active").siblings().removeClass("active"); // Content toggle logic const blockId = $(this).attr('id'); // e.g., 'pid_carousal_1' $(this).parents(".bk_toggle_container").find('.bk_toggle_pids, .bk_cat-toggle_more-link').hide(); $(this).parents(".bk_toggle_container").find('.' + blockId).show(); }); }); </script>";} 0 13219 0 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en HP ETUDE FAVES
6867 3124 a:1:{s:7:"content";s:90:"<div class="bk_block_heading"> <h2>Won-young’s signature glass-angel glow.</h2> </div>";} 0 12963 0 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en kbw Won-young’s signature glass-angel glow. heading
6378 3126 a:1:{s:7:"content";s:1185:"<style> /* beauty talk css start */ @media (max-width: 767px) { .bt_scroller_mobile.serums1 { background-image: url(https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/kbw-0711bt-sunscreen.webp); background-color: #e3caae; } .bt_scroller_mobile.won { background-image: url(https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/KBW-1012-bt-won-young.jpg); background-color: #dcb0af; } .bt_scroller_mobile.jisoo { background-image: url(https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/KBW-1012-bt-jisoo.jpg); background-color: #000; } .bt_scroller_mobile.biore { background-image: url(https://cdn.kindlife.in/images/banners/hp-images/HP-2302-vt-new-img-bt.webp); background-color: #a5b4d8; } } </style> <figure class="bk-live-shop__video"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/kbw-0711bt-sunscreen.webp" alt="beauty-talk-image" width="500" height="750" loading="lazy"> </figure> ";} 0 12028 0 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en Sunscreen beauty talk korean sunscreen
7052 3294 a:3:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:58:"65548,9265,33776,32144,38250,36533,65364,14844,28537,69853";}s:10:"show_block";s:2:"AW";s:11:"enable_ajax";s:1:"N";} 0 13254 bk_steps_pid_block step-3 0 A products a:20:{s:8:"template";s:37:"blocks/products/products_scroller.tpl";s:10:"show_price";s:1:"Y";s:8:"hide_tag";s:1:"N";s:19:"hide_certifications";s:1:"N";s:17:"enable_quick_view";s:1:"N";s:11:"show_rating";s:1:"Y";s:15:"show_brand_name";s:1:"Y";s:17:"show_share_button";s:1:"N";s:15:"show_short_desc";s:1:"N";s:24:"not_scroll_automatically";s:1:"Y";s:15:"scroll_per_page";s:1:"N";s:5:"speed";s:3:"400";s:11:"pause_delay";s:1:"3";s:13:"item_quantity";s:1:"5";s:15:"thumbnail_width";s:3:"400";s:18:"outside_navigation";s:1:"Y";s:10:"promo_text";s:1:"N";s:16:"key_product_info";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";s:10:"block_type";s:6:"slider";} 0 1 en kbw Acne & Breakouts
7017 3304 a:3:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:35:"68909,68912,68913,68910,68911,68908";}s:10:"show_block";s:2:"AW";s:11:"enable_ajax";s:1:"N";} 0 13218 bk_toggle_pids pid_carousal_1 0 A products a:20:{s:8:"template";s:37:"blocks/products/products_scroller.tpl";s:10:"show_price";s:1:"Y";s:8:"hide_tag";s:1:"N";s:19:"hide_certifications";s:1:"N";s:17:"enable_quick_view";s:1:"N";s:11:"show_rating";s:1:"Y";s:15:"show_brand_name";s:1:"Y";s:17:"show_share_button";s:1:"N";s:15:"show_short_desc";s:1:"N";s:24:"not_scroll_automatically";s:1:"Y";s:15:"scroll_per_page";s:1:"N";s:5:"speed";s:3:"400";s:11:"pause_delay";s:1:"3";s:13:"item_quantity";s:1:"5";s:15:"thumbnail_width";s:3:"400";s:18:"outside_navigation";s:1:"Y";s:10:"promo_text";s:1:"N";s:16:"key_product_info";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";s:10:"block_type";s:6:"slider";} 0 1 en HP Dear Darling Lip tint pids
7158 3654 a:1:{s:7:"content";s:1247:"<div class="custom_strip_banner strip_banner" style="display:none;"> <!-- <img class="desktop" src="https://cdn.kindlife.in/images/banners/hp-images/HP-1809-redeem-desk1.png" loading="lazy" width="1200" height="500"> <img class="mobile" src="https://cdn.kindlife.in/images/banners/hp-images/HP-1809-redeem-mob1.png" loading="lazy" width="700" height="450"> --> <img class="desktop" src="https://cdn.kindlife.in/images/banners/hp-images/HP-2611-bfs-kinders-mob.png" loading="lazy" width="1200" height="500"> <img class="mobile" src="https://cdn.kindlife.in/images/banners/hp-images/HP-2611-bfs-kinders-desk.png" loading="lazy" width="700" height="450"> </div> <script> function showCustomStripBanner() { const banner = document.querySelector('.custom_strip_banner'); const now = new Date(); const day = now.getDay(); const hour = now.getHours(); if ((day === 0 || day === 4) && (hour >= 6 && hour < 24)) { banner.style.display = "block"; } else { banner.style.display = "none"; } } showCustomStripBanner(); setInterval(showCustomStripBanner, 15 * 60 * 1000); </script> ";} 0 13080 0 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en redeem 50% kinders strip for multiple pages
6868 3720 a:1:{s:7:"content";s:190:"<figure class="bk-live-shop__video"><img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/KBW-1012-bt-won-young.jpg" alt="beauty-talk-image" width="170" height="200"></figure>";} 0 12962 0 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en Won-young kbeauty BT img
7051 3746 a:1:{s:7:"content";s:3149:"<style> .steps img { aspect-ratio: 3 / 5; object-fit: cover; transition: all 0.3s ease; } /* Inactive (greyed out) */ .steps img.inactive-img { filter: contrast(0.8); opacity: 0.6; } /* Active (normal) */ .steps img.active-img { filter: none; opacity: 1; } .bk_1x4_block.scroll li p { font-weight: 500; padding: 8px 0 0 0; text-align: center; font-size: 17px; } @media (max-width: 480px) { .bk_1x4_block.scroll li p { font-size: 14px; padding: 5px 0 0 0; } } </style> <div class="bk_block_heading"> <h2>Discover by Skin Concern</h2> </div> <div class="bk_newcat_block"> <div class="bk-routine-steps-images-container"> <ul class="bk_flex_block bk_1x4_block scroll steps"> <li><img class="bkStepsBtn" id="step-3" src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/kbw-2710-concren-acne2.webp" alt="" loading="lazy" width="270" height="450"> <p>Acne & Breakouts</p> </li> <li><img class="bkStepsBtn" id="step-4" src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/kbw-2710-concren-dryness1.webp" alt="" loading="lazy" width="270" height="450"> <p>Dryness</p> </li> <li><img class="bkStepsBtn" id="step-5" src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/kbw-2710-concren-pigmentation2.webp" alt="" loading="lazy" width="270" height="450"> <p>Pigmentation</p> </li> <li><img class="bkStepsBtn" id="step-11" src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/kbw-2710-concren-sensitive-skin2.webp" alt="" loading="lazy" width="270" height="450"> <p>Sensitive Skin</p> </li> <li><img class="bkStepsBtn" id="step-10" src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/kbw-2710-concren-aging2.webp" alt="" loading="lazy" width="270" height="450"> <p>Aging</p> </li> </ul> </div> </div> <script> $(document).ready(function () { // Initially show only step-3 block and corresponding link $('.bk_steps_pid_block').hide(); $('.bk_steps_pid_block.step-3').show(); $('.bk_cat-toggle_more-link').hide(); $('.bk_cat-toggle_more-link.step-3').show(); // Set initial image classes $('.bkStepsBtn').addClass('inactive-img').removeClass('active-img'); $('#step-3').removeClass('inactive-img').addClass('active-img'); // On hover $(".bkStepsBtn").mouseover(function () { let stepId = $(this).attr('id'); // Update parent class for styling $(this).closest(".bk_newcat_block").removeClass().addClass("bk_newcat_block " + stepId + "-active"); // Toggle visibility for step content and link $(".bk_steps_pid_block").hide(); $("." + stepId).show(); $(".bk_cat-toggle_more-link").hide(); $(".bk_cat-toggle_more-link." + stepId).show(); // Update image states $('.bkStepsBtn').addClass('inactive-img').removeClass('active-img'); $(this).removeClass('inactive-img').addClass('active-img'); }); }); </script> ";} 0 13253 0 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en kbw Discover by Skin Concern
7160 3930 a:1:{s:7:"content";s:4103:"<style type="text/css"> .bk_ticker-block.steps-ticker-bg.bg1 { background-color: #a072b7; margin: 40px 0 10px; } @media (max-width: 767px) { .bk_ticker-block.steps-ticker-bg, .bk_ticker-block.album-ticker-bg { margin-top: 0px; } .bk_ticker-block.steps-ticker-bg.bg1 { background-color: #a072b7; margin: 20px 0 10px; } } </style> <div class="bk_ticker-block steps-ticker-bg bg1"> <div class="bk_homepage-ticker"> <div id="bk_homepage-ticker__content_1-0" class="bk_homepage-ticker__content"> <ul class="bk_homepage-ticker__list"> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step- 3 Serum</span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step- 3 Serum</span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step- 3 Serum</span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step- 3 Serum</span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step- 3 Serum</span> </li> </ul> <ul class="bk_homepage-ticker__list"> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step- 3 Serum</span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step- 3 Serum</span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step- 3 Serum</span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step- 3 Serum</span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper">Step- 3 Serum</span> </li> </ul> <ul class="bk_homepage-ticker__list"> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step- 3 Serum</span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper">Step- 3 Serum</span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step- 3 Serum</span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper">Step- 3 Serum</span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step- 2 Toner</span> </li> </ul> </div> </div> </div>";} 0 13434 0 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en Ticker step 3
7161 3931 a:1:{s:7:"content";s:3984:"<style type="text/css"> .bk_ticker-block.steps-ticker-bg.bg1 { background-color: #4d4dae; margin: 40px 0 10px; } @media (max-width: 767px) { .bk_ticker-block.steps-ticker-bg.bg1 { margin: 20px 0 10px; } } </style> <div class="bk_ticker-block steps-ticker-bg bg1"> <div class="bk_homepage-ticker"> <div id="bk_homepage-ticker__content_1-0" class="bk_homepage-ticker__content"> <ul class="bk_homepage-ticker__list"> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step- 4 Moisturiser</span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper">Step- 4 Moisturiser </span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper">Step- 4 Moisturiser </span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper">Step- 4 Moisturiser </span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper">Step- 4 Moisturiser </span> </li> </ul> <ul class="bk_homepage-ticker__list"> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper">Step- 4 Moisturiser </span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper">Step- 4 Moisturiser </span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step- 4 Moisturiser</span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper">Step- 4 Moisturiser </span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper">Step- 4 Moisturiser</span> </li> </ul> <ul class="bk_homepage-ticker__list"> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step- 4 Moisturiser</span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper">Step- 4 Moisturiser</span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper">Step- 4 Moisturiser </span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper">Step- 4 Moisturiser</span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper">Step- 4 Moisturiser</span> </li> </ul> </div> </div> </div>";} 0 13435 0 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en Ticker step 4
7501 3958 a:1:{s:7:"content";s:729:"<style> .span16.jumiso-bg { background: #fae588; padding: 20px 10px; border-radius: 5px; } </style> <div class="bk_block_heading"> <h2 style="margin: 10px 0 20px"> SKIN MUST-HAVES</h2> </div> <div class="strip_banner shadow" style="margin:0 0 12px;"> <a href="https://www.kindlife.in/jumiso-launch/"> <picture> <source media="(max-width: 767px)" srcset="https://cdn.kindlife.in/images/banners/hp-images/HP-1912-jumiso-strip-mob3-republic1.webp"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-1912-jumiso-strip-desk3-republic1.webp" alt="jumiso Banner" loading="lazy" width="1200" height="300"> </picture> </a> </div>";} 0 13736 0 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en HP - SKIN MUST-HAVES jumiso strip
5543 3975 a:1:{s:7:"content";s:3347:"<!-- <style> .bk_grid_block.hot-kbeauty { grid-template-columns: repeat(3, 1fr); } @media (max-width: 600px) { .bk_grid_block.hot-kbeauty { grid-template-columns: repeat(2, 60%); } } </style> <div class="bk_block_heading"> <h2>HOT RN: KBEAUTY MAKEUP </h2> <p>Cushion compacts, tints & more</p> </div> <ul class="bk_grid_block hot-kbeauty"> <li><a href="https://www.kindlife.in/etude-launch"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-1301-hot-makeup-etude1.webp" alt="img" width="400" height="200" loading="lazy"></a> </li> <li><a href="https://www.kindlife.in/tfit/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-1301-hot-makeup-tfit1.webp" alt="img" width="400" height="200" loading="lazy"></a> </li> <li><a href="https://www.kindlife.in/tirtir/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-1301-hot-makeup-tirtir3.webp" alt="img" width="400" height="200" loading="lazy"></a> </li> <li><a href="https://www.kindlife.in/missha/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-1301-hot-makeup-missha3.webp" alt="img" width="400" height="200" loading="lazy"></a> </li> <li><a href="https://www.kindlife.in/dashing-diva/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-1301-hot-makeup-dd2.webp" alt="img" width="400" height="200" loading="lazy"></a> </li> <li><a href="https://www.kindlife.in/beauty-of-majesty/?sort_by=bestsellers&sort_order=desc"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-1301-hot-makeup-beauty-majesty1.webp" alt="img" width="400" height="200" loading="lazy"></a> </li> </ul> --> <style> .bk_grid_block.hot-kbeauty { grid-template-columns: repeat(3, 1fr); } @media (max-width: 600px) { .bk_grid_block.hot-kbeauty { grid-template-columns: repeat(2, 60%); } } </style> <div class="bk_block_heading"> <h2>COLOUR READY MAKEUP PICKS</h2> </div> <ul class="bk_grid_block hot-kbeauty"> <li><a href="https://www.kindlife.in/etude-launch"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-1602-color-ready-etude.webp" alt="img" width="400" height="200" loading="lazy"></a> </li> <li><a href="https://www.kindlife.in/tfit/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-1602-color-ready-tfit.webp" alt="img" width="400" height="200" loading="lazy"></a> </li> <li><a href="https://www.kindlife.in/tirtir/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-1602-color-ready-tiritr.webp" alt="img" width="400" height="200" loading="lazy"></a> </li> <li><a href="https://www.kindlife.in/beauty-of-majesty/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-1602-color-ready-bom.webp" alt="img" width="400" height="200" loading="lazy"></a> </li> <li><a href="https://www.kindlife.in/missha/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-1602-color-ready-missha.webp" alt="img" width="400" height="200" loading="lazy"></a> </li> <li><a href="https://www.kindlife.in/dashing-diva/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-1602-color-ready-dd.webp" alt="img" width="400" height="200" loading="lazy"></a> </li> </ul>";} 0 13550 0 D smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en kbw COLOUR READY MAKEUP PICKS
7253 4032 a:1:{s:7:"content";s:5923:"<style> .carousel-image { position: relative; width: 100%; overflow: hidden; display: flex; flex-flow: column; justify-content: center; align-items: center; } .protein-wrap .carousel-card { flex: 0 0 max(200px, calc(17% - 10px)); } .carousel-container1 img.active-img { filter: none; opacity: 1; transition: all 0.3s ease; } .carousel-container1 img.inactive-img { filter: contrast(0.8); opacity: 0.6; transition: all 0.3s ease; } .carousel-container1 { display: flex; overflow-x: auto; scroll-behavior: smooth; justify-content: space-between; } @media screen and (max-width: 480px) { .card_1x4 .carousel-card, .protein-wrap .carousel-card { flex: 0 0 45%; } } </style> <div class="bk_block_heading"> <h2>GET IN SHAPE FOR 2026</h2> </div> <section class="carousel" style="margin-bottom: 10px;"> <button class="carousel-pre-btn"><span class="ty-icon ty-icon-left-open-thin"></span></button> <button class="carousel-nxt-btn"><span class="ty-icon ty-icon-right-open-thin"></span></button> <div class="carousel-container1 protein-wrap"> <div class="carousel-card bk_toggle_circle_five" id="pid_carousal_1"> <div class="carousel-image"> <img class="active-img" src="https://cdn.kindlife.in/images/banners/category/Protein-guide-2905-top-ctgry-whey.webp" alt="img" width="400" height="120" loading="lazy"> <div class="bk_prod_desc"> <p>Whey protein</p> </div> </div> </div> <div class="carousel-card bk_toggle_circle_five" id="pid_carousal_2"> <div class="carousel-image"> <img class="inactive-img" src="https://cdn.kindlife.in/images/banners/category/Protein-guide-2905-top-ctgry-plant-protein.webp" alt="img" width="400" height="120" loading="lazy"> <div class="bk_prod_desc"> <p>Plant protein</p> </div> </div> </div> <div class="carousel-card bk_toggle_circle_five" id="pid_carousal_3"> <div class="carousel-image"> <img class="inactive-img" src="https://cdn.kindlife.in/images/banners/category/Protein-guide-2905-top-ctgry-pre-workout.webp"> <div class="bk_prod_desc"> <p>Pre-workout</p> </div> </div> </div> <div class="carousel-card bk_toggle_circle_five" id="pid_carousal_4"> <div class="carousel-image"> <img class="inactive-img" src="https://cdn.kindlife.in/images/banners/category/Protein-guide-2905-top-ctgry-protein-bars.webp"> <div class="bk_prod_desc"> <p>Protein bars </p> </div> </div> </div> <div class="carousel-card bk_toggle_circle_five" id="pid_carousal_5"> <div class="carousel-image"> <img class="inactive-img" src="https://cdn.kindlife.in/images/banners/category/Protein-guide-2905-top-ctgry-ceratine1.webp"> <div class="bk_prod_desc"> <p>Creatine</p> </div> </div> </div> </div> </section> <script> $(document).ready(function () { // Initially show only pid_carousal_1 content $('.pid_carousal_1').css('display', 'block'); $(".bk_toggle_circle_five").click(function () { // Image highlight toggle $(".bk_toggle_circle_five img").removeClass("active-img").addClass("inactive-img"); $(this).find("img").removeClass("inactive-img").addClass("active-img"); // Optional: card active class $(this).addClass("active").siblings().removeClass("active"); // Content toggle logic const blockId = $(this).attr('id'); // e.g., 'pid_carousal_1' $(this).parents(".bk_toggle_container").find('.bk_toggle_pids, .bk_cat-toggle_more-link').hide(); $(this).parents(".bk_toggle_container").find('.' + blockId).show(); }); }); </script>";} 0 13643 0 D smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en HP portein toggle
5542 4051 a:3:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:52:"33710,23656,31348,36454,39635,68345,39054,9457,34283";}s:10:"show_block";s:2:"AW";s:11:"enable_ajax";s:1:"N";} 0 13666 blocks/wrappers/mainbox_simple.tpl 0 A products a:20:{s:8:"template";s:37:"blocks/products/products_scroller.tpl";s:10:"show_price";s:1:"Y";s:8:"hide_tag";s:1:"N";s:19:"hide_certifications";s:1:"N";s:17:"enable_quick_view";s:1:"N";s:11:"show_rating";s:1:"Y";s:15:"show_brand_name";s:1:"Y";s:17:"show_share_button";s:1:"N";s:15:"show_short_desc";s:1:"N";s:24:"not_scroll_automatically";s:1:"Y";s:15:"scroll_per_page";s:1:"N";s:5:"speed";s:3:"400";s:11:"pause_delay";s:1:"3";s:13:"item_quantity";s:1:"5";s:15:"thumbnail_width";s:3:"400";s:18:"outside_navigation";s:1:"Y";s:10:"promo_text";s:1:"N";s:16:"key_product_info";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";s:10:"block_type";s:6:"slider";} 0 1 en BEST OF CLEANSING OILS
7500 4166 a:3:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:29:"69809,69810,69811,69812,69381";}s:10:"show_block";s:2:"AW";s:11:"enable_ajax";s:1:"N";} 0 14082 hidden-phone hidden-app 0 A products a:20:{s:8:"template";s:37:"blocks/products/products_scroller.tpl";s:10:"show_price";s:1:"Y";s:8:"hide_tag";s:1:"N";s:19:"hide_certifications";s:1:"N";s:17:"enable_quick_view";s:1:"N";s:11:"show_rating";s:1:"N";s:15:"show_brand_name";s:1:"Y";s:17:"show_share_button";s:1:"N";s:15:"show_short_desc";s:1:"N";s:24:"not_scroll_automatically";s:1:"Y";s:15:"scroll_per_page";s:1:"N";s:5:"speed";s:3:"400";s:11:"pause_delay";s:1:"3";s:13:"item_quantity";s:1:"4";s:15:"thumbnail_width";s:3:"300";s:18:"outside_navigation";s:1:"Y";s:10:"promo_text";s:1:"N";s:16:"key_product_info";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";s:10:"block_type";s:6:"slider";} 0 1 en HP VT LIP PLUMPING ESSENTIALS desk pids
7499 4167 a:1:{s:7:"content";s:2076:"<style> .bk_new_grid-lg.scroll.vault { grid-template-columns: repeat(6, max(200px, 19%)); justify-content: space-between; } @media (max-width: 768px) { .bk_new_grid-lg.scroll.vault { grid-template-columns: repeat(2, 48.5%); } } </style> <div class="bk_block_heading"> <h2>LUXURY SCENT VAULT</h2> </div> <ul class="bk_grid_block bk_new_grid-lg scroll vault"> <li><a href="https://www.kindlife.in/chopard/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/dev-0107-testing-arks.webp" alt="Chopard" width="400" height="120" loading="lazy"></a> <div class="protein-desc"> <p>Chopard</p> </div> </li> <li><a href="https://www.kindlife.in/arks/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/dev-0107-testing-arks.webp" alt="Arks" width="400" height="120" loading="lazy"></a> <div class="protein-desc"> <p>Arks</p> </div> </li> <li> <a href="https://www.kindlife.in/jaguar/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/dev-0107-testing-arks.webp" alt="Jaguar" width="400" height="120" loading="lazy"></a> <div class="protein-desc"> <p>Jaguar</p> </div> </li> <li> <a href="https://www.kindlife.in/ferragamo/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/dev-0107-testing-arks.webp" alt="Ferragamo" width="400" height="120" loading="lazy"></a> <div class="protein-desc"> <p>Ferragamo</p> </div> </li> <li> <a href="https://www.kindlife.in/diesel"> <img src="https://cdn.kindlife.in/images/banners/hp-images/dev-0107-testing-arks.webp" alt="Diesel" width="400" height="120" loading="lazy"></a> <div class="protein-desc"> <p>Diesel</p> </div> </li> <li> <a href="https://www.kindlife.in/joon/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/dev-0107-testing-arks.webp" alt="The Joon shop" width="400" height="120" loading="lazy"></a> <div class="protein-desc"> <p>The Joon shop</p> </div> </li> </ul>";} 0 14081 0 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en HP LUXURY SCENT VAULT
7498 4168 a:1:{s:7:"content";s:1506:"<ul class="bk_grid_block bk_new_grid-lg scroll staple-kbeauty"> <li> <div class="card"> <a href="https://www.kindlife.in/skinfood/ "> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-0904-staples-global-obsession-categry-skinfood.webp"></a> <div class="protein-desc"> <p>Skinfood </p> <span>Up to 30% off</span> </div> </li> <li><a href="https://www.kindlife.in/la-roche-posay/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-0904-staples-global-obsession-categry-la-roshey.webp"></a> <div class="protein-desc"> <p>La roche poshay </p> <span>5% off</span> </div> </li> <li><a href="https://www.kindlife.in/embryolisse/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-0904-staples-global-obsession-categry-embrolysiee.webp"></a> <div class="protein-desc"> <p>Embroylisse</p> <span>10% off</span> </div> </li> <li><a href="https://www.kindlife.in/dr.g/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-0904-staples-global-obsession-categry-dr-g1.webp"></a> <div class="protein-desc"> <p>Dr. G</p> <span>15% off</span> </div> </li> <li> <a href="https://www.kindlife.in/neutrogena/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-0904-staples-global-obsession-categry-neutrogena.webp"></a> <div class="protein-desc"> <p>Neutrogena</p> <span>Up to 16% off</span> </div> </li> </ul>";} 0 14080 0 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en HP global obsseion
7391 4176 a:1:{s:7:"content";s:8026:"<h1>Korean Beauty Products at Kindlife: Discover Authentic K-Beauty for Glass Skin</h1> <p>Welcome to Kindlife's curated collection of Korean beauty products, your ultimate destination for authentic Korean skincare and cosmetics. Whether you're searching for the best Korean skin care products or pursuing the coveted Korean glass skin look, our collection brings Korea's most innovative and trusted beauty brands directly to your doorstep.</p> <p>Korean beauty products have revolutionized skincare globally through their emphasis on prevention, innovation, and customization. Unlike traditional skincare approaches that focus on fixing problems, Korean skin care products prioritize maintaining healthy skin through multi-step routines using lightweight, effective formulations.</p> <p>The Korean beauty philosophy is built on research-backed ingredients like snail mucin, centella asiatica, fermented extracts, and botanical actives that work synergistically. Each product serves a specific purpose: cleansers remove impurities, toners balance pH, essences hydrate deeply, serums target concerns, and moisturizers seal in benefits. This layering approach allows you to customize your routine based on your unique skin needs.</p> <p>At Kindlife, we've carefully selected the best Korean skin care products across all major concerns and skin types.</p> <p>For Hydration and Sensitivity: Our collection includes lightweight hydrating essences and toners that plump skin with moisture without feeling heavy. These products work beautifully in India's humid climate, delivering deep hydration while maintaining a comfortable, non-sticky texture. Products like snail mucin essences and centella-based formulations strengthen your skin barrier while reducing sensitivity.</p> <p>For Hyperpigmentation and Brightening: Korean beauty brands excel at addressing dark spots and uneven skin tone through brightening serums containing niacinamide, vitamin C, and natural extracts. These formulations work gradually and safely, showing visible results within 4-6 weeks of consistent use. The approach focuses on even tone rather than harmful whitening.</p> <p>For Anti-Aging: Korean skincare uses peptides, retinol alternatives, and fermented ingredients to address fine lines and loss of elasticity without harsh irritation. These products rebuild skin structure while maintaining barrier health, a key advantage of the Korean approach.</p> <p>For Acne-Prone Skin: Korean beauty products for acne use salicylic acid cleansers, tea tree formulations, and sebum-controlling toners that address breakouts without over-drying. Many products include soothing ingredients to prevent irritation while treating acne.</p> <p>Korean glass skin—that luminous, poreless, glowing complexion—isn't unattainable. It requires consistent use of quality Korean beauty products combined with dedication.</p> <p>The glass skin journey starts with a proper cleansing routine using a gentle cleanser, followed by a hydrating toner that prepares skin for absorption. Next, apply a targeted serum addressing your primary concern, then seal with a lightweight moisturizer. For intensive hydration, add sheet masks or ampoules 2-3 times weekly. Most importantly, use SPF daily to prevent new damage and allow previous treatments to show results.</p> <p>Results from quality Korean skin care products typically appear within 6-8 weeks of consistent use. Your skin will show improved hydration, refined texture, reduced pores, more even tone, and increased radiance. Progress happens gradually, so patience and consistency are essential.</p> <p>We work directly with authorized Korean distributors to bring 100% authentic products to India. Every item comes with batch code verification and direct sourcing certification.</p> <p>Our Korean beauty collection includes bestselling brands like COSRX, Beauty of Joseon, SKIN1004, Dr. Ceuracle, Isntree, VT Cosmetics, and more. Whether you're a skincare beginner or experienced enthusiast, you'll find products matching your needs and budget.</p> <p>Each product is selected based on effectiveness, ingredient quality, and suitability for Indian skin and climate. We prioritize lightweight formulations that work in humidity and address hyperpigmentation concerns specific to many Indian consumers.</p> <p>Enjoy up to 45% discounts on premium Korean beauty products while maintaining authenticity. Our direct sourcing model eliminates middlemen, passing savings directly to you.</p> <p>Free shipping on orders above ₹699 with delivery across India. If any product doesn't match expectations, our 5-day easy return policy protects your purchase.</p> <p>From gentle hydrating cleansers to pore-refining foam washes, our collection includes products for every skin type. Double cleansing oil-based first, water-based second is the Korean approach to thorough yet gentle cleansing.</p> <p>These hydrating powerhouses prepare skin for serums and moisturizers while providing immediate hydration benefits.</p> <p>Concentrated treatments addressing specific concerns like hyperpigmentation, aging, sensitivity, and dullness. Korean serums are typically lighter than creams, making them ideal for layering.</p> <p>From lightweight gels to richer creams, our selection ensures you find the perfect moisturizer for your skin type and climate.</p> <p>Korean sunscreens offer broad-spectrum protection with weightless textures and minimal white cast. Essential for maintaining glass skin and preventing hyperpigmentation.</p> <p>Intensive hydration and treatment options for when your skin needs extra care. Korean sheet masks are thinly designed for maximum comfort during application.</p> <p>Start with a cleanser matching your skin type, add a hydrating toner, incorporate one serum targeting your primary concern, and seal with an appropriate moisturizer. Once this basic routine shows results, consider adding sheet masks, eye creams, or additional serums.</p> <p>The key to success with Korean beauty products is consistency. Daily morning and evening routines with quality products deliver visible results within 6-8 weeks. Most consumers notice improved hydration within 2 weeks, brighter skin within 3-4 weeks, and refined texture by week 6.</p> <p>Explore Kindlife's complete collection of authentic Korean beauty products and discover why millions of consumers worldwide have embraced the Korean skincare philosophy. From beginner-friendly starter kits to advanced multi-step routines, we have everything you need to achieve glass skin and address your specific skin concerns.</p> <p>Browse by brand, concern, or skin type to find your perfect Korean skin care products. Use our filters to narrow down selections by price, formulation, or ingredient. Read verified customer reviews and ratings to make confident purchases.</p> <p>Your journey to healthier, glowing skin starts here with the best Korean beauty products available in India.</p> <p>Korean skincare emphasizes prevention through layering lightweight, research-backed ingredients like snail mucin and centella asiatica. Products work together COSRX Advanced Snail Mucin hydrates while AXIS-Y Niacinamide tackles dark spots simultaneously.</p> <p>Double cleanse (PM), toner, essence, serum, sheet mask, moisturizer, and eye cream. Customize for your skin type and climate. Beginners start with cleanser, toner, serum, moisturizer and add steps gradually as your skin builds tolerance.</p> <p>Hydrate deeply with COSRX Snail Mucin, support your barrier with Coxir Collagen Cream, exfoliate gently twice weekly, brighten with AXIS-Y Niacinamide, and use SPF daily. Results appear within 6-8 weeks of consistent care.</p> <p>Don't mix multiple actives simultaneously. Always use SPF daily. Start simple with four core products, not ten. Match products to your skin type and climate. Wait 6-8 weeks before switching routines. Double-cleanse at night to remove pollution and residue.</p>";} 0 13939 faqs 0 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en kbeauty - content
5705 4206 a:1:{s:7:"content";s:9067:"<h1>K-Beauty Sale & Products: India's Largest K-Beauty Collection at Kindlife</h1> <p>Explore Kindlife's complete K-beauty collection featuring India's most extensive selection of authentic Korean skincare, makeup, and beauty products. From bestselling K-Beauty skincare products to exclusive K-beauty sale events, discover why millions choose Kindlife for genuine K-beauty shopping with unbeatable prices and complete authenticity guarantee.</p> <h2>What is K-Beauty?</h2> <p>K-beauty represents the Korean approach to skincare and cosmetics, a philosophy emphasizing prevention, customization, and ingredient innovation. Rather than one-product solutions, K-beauty prioritizes multi-step routines using lightweight, layered products addressing specific skin concerns.</p> <p>The K-beauty philosophy transforms skincare from occasional indulgence into a daily ritual, treating your skin as the investment it deserves. This preventive approach means addressing concerns early before they become visible problems, resulting in healthier, more resilient skin long-term.</p> <h2>Why K-Beauty Products Excel</h2> <p><strong>Science-Backed Innovation:</strong> Korean beauty brands invest heavily in research and development, testing ingredients rigorously to understand exactly how they benefit different skin types. Innovations like snail mucin, fermented extracts, and centella asiatica aren't trendy accidents—they're backed by years of clinical study.</p> <p><strong>Effective at Accessible Prices:</strong> High-quality K-Beauty skincare products deliver clinical results at 50-80% lower prices than luxury Western alternatives. You're investing in formulation quality, not luxury branding.</p> <p><strong>Results Within Weeks:</strong> Quality K-beauty products show visible improvement within 2-8 weeks depending on concern and consistency. This faster timeline means faster ROI on your skincare investment.</p> <p><strong>Customizable Solutions:</strong> Rather than recommending one product for all, K-beauty encourages customization based on individual skin type, climate, and concerns. This flexibility ensures you're never paying for unnecessary products.</p> <p><strong>Lightweight, Humidity-Friendly Formulations:</strong> Korean products prioritize lightweight textures absorbing quickly without leaving residue. This is crucial in India's humidity where heavy Western creams feel uncomfortable and may suffocate skin.</p> <h2>Current K-Beauty Sale & Offers</h2> <p>Kindlife regularly features K-beauty sale events with discounts up to 45% on bestselling brands. Current promotions include:</p> <ul> <li><strong>GLOW10 Offer:</strong> Use code GLOW10 for 10% additional discount on orders above ₹1,799. Stack this with brand-specific discounts for maximum savings.</li> <li><strong>KLOVE Offer:</strong> Get 5% off all K-beauty products with code KLOVE.</li> <li><strong>Free Shipping:</strong> Free shipping on all orders above ₹699, making even single product purchases accessible.</li> </ul> <h2>Featured K-Beauty Brands at Kindlife</h2> <ul> <li><strong>COSRX:</strong> Science-backed formulations for sensitive and acne-prone skin. The Advanced Snail Mucin and peptide serums are global bestsellers delivering visible hydration and anti-aging benefits.</li> <li><strong>Beauty of Joseon:</strong> Hanbang-inspired products blending Joseon-era wisdom with modern science. Relief Sun, Ginseng Essence, and Red Bean mask are customer favorites for brightening and barrier support.</li> <li><strong>SKIN1004:</strong> Centella asiatica specialists with innovative capsule ampoule technology. Ideal for sensitive, brightening, and barrier-repair needs.</li> <li><strong>Isntree:</strong> Natural ingredient focus with hyaluronic acid and botanical extracts. Known for effective yet gentle formulations suitable for all skin types.</li> <li><strong>AXIS-Y:</strong> K-beauty innovators specializing in glow serums, complete sun protection, and hydrating solutions. All products undergo rigorous dermatological testing.</li> <li><strong>Skinfood:</strong> Nature-inspired brand using food ingredients like rice, honey, and carrot in effective formulations. Perfect for those seeking natural K-beauty.</li> <li><strong>Mary&May:</strong> Specialists in targeted serums and ampoules for specific concerns. Known for peptide, calendula, and centella formulations.</li> <li><strong>Coxir:</strong> Black snail collagen experts with innovative delivery technology. Ideal for anti-aging, hydration, and barrier support.</li> <li><strong>Round Lab:</strong> Ocean-inspired K-beauty with innovative formulations like dokdo toner. Known for effective yet gentle products.</li> <li><strong>Frudia:</strong> Fruit-extract specialists creating brightening and hydrating products. Particularly strong in citrus and green grape ranges.</li> <li><strong>Dr. Ceuracle and Dr.G:</strong> Dermatological K-beauty focusing on gentle yet effective solutions for sensitive and problem skin.</li> </ul> <h2>K-Beauty Product Categories</h2> <ul> <li><strong>Cleansers:</strong> Oil-based and water-based options for double cleansing. K-beauty emphasizes thorough yet gentle cleansing without barrier disruption.</li> <li><strong>Toners and Essences:</strong> Hydrating bases preparing skin for serums while providing standalone benefits. These are lightweight and quickly absorbing essential K-beauty steps.</li> <li><strong>Serums and Ampoules:</strong> Concentrated treatments addressing specific concerns. Available in lightweight serum format or intensive ampoule format for weekly treatments.</li> <li><strong>Moisturizers:</strong> From lightweight gels to richer creams, options for every skin type and climate. K-beauty moisturizers hydrate without heaviness.</li> <li><strong>Sheet Masks:</strong> Intensive treatments providing concentrated hydration and treatment in a convenient format. Use 2-3 times weekly for visible results.</li> <li><strong>Sunscreens:</strong> Lightweight protective options with minimal white cast. Essential for maintaining K-beauty results and preventing new damage.</li> <li><strong>Makeup:</strong> K-beauty makeup emphasizes skin-like finish, longevity, and innovation. Tints, cushions, and innovative formulations deliver natural-looking color.</li> </ul> <h2>Building Your K-Beauty Routine</h2> <ul> <li><strong>Beginner Routine (4 products):</strong> Gentle cleanser → Hydrating toner → Lightweight serum → Moisturizer + SPF (AM)</li> <li><strong>Intermediate Routine (6-7 products):</strong> Add targeted serum addressing your primary concern and sheet masks 2-3 times weekly.</li> <li><strong>Advanced Routine (8+ products):</strong> Layer multiple serums addressing different concerns, customize day/night routines, incorporate active treatments.</li> </ul> <h2>K-Beauty Shopping Tips</h2> <ul> <li><strong>Start Simple:</strong> Begin with 4 essential products rather than overwhelming your routine. Build complexity gradually as you understand your skin's responses.</li> <li><strong>Know Your Skin Type:</strong> K-beauty emphasizes customization. Identify your skin type (oily, dry, combination, sensitive) and concerns to select appropriate products.</li> <li><strong>Commit to Consistency:</strong> K-beauty products require 6-8 weeks of consistent use before full results appear. Don't judge effectiveness after 1-2 weeks.</li> <li><strong>Read Reviews:</strong> Kindlife features verified customer reviews and ratings. Real user experiences help guide your selections.</li> <li><strong>Use Filters:</strong> Filter K-Beauty skincare products by concern, skin type, formulation, and price. This simplifies finding products matching your exact needs.</li> </ul> <h2>Shop K-Beauty Today</h2> <p>Explore Kindlife's complete K-beauty collection and discover authentic Korean skincare and cosmetics. Whether addressing specific concerns or building a complete routine, you'll find quality K-Beauty skincare products at unbeatable prices. Browse our current K-beauty sale offerings and start your K-beauty journey today.</p> <p>Your best skin begins with authentic K-beauty.</p> <h2>K-Beauty FAQs</h2> <h3>What Exactly Does K-Beauty Mean?</h3> <p>Korean skincare philosophy focused on prevention and multi-step routines. Uses lightweight, layered products to address specific concerns with research-backed ingredients like snail mucin and centella asiatica.</p> <h3>Why is K-Beauty So Popular?</h3> <p>Delivers visible results within 6-8 weeks, backed by dermatologists and clinical research. Affordable pricing (₹400-2,000 per product) with genuine efficacy across all skin types attracts global consumers.</p> <h3>Is K-Beauty Really Worth It?</h3> <p>Yes, if you have skin concerns, commit to daily use for 6-8 weeks, and invest ₹2,000-4,000 initially. Offers clinical-quality skincare at accessible prices with customizable routines addressing specific needs.</p> ";} 0 13977 0 A html_block a:1:{s:8:"template";s:21:"blocks/html_block.tpl";} 0 1 en FAQ
2171 68 a:1:{s:7:"content";s:631:"<ul id="demo_store_links"> <!-- <li class="ty-footer-menu__item"><a href="https://docs.google.com/forms/d/1h9JjQ3grp26ZqMDDsmmuKqkjAC--L_rr-ZFZaloine8/viewform?edit_requested=true">Brand</a></li> --> <li class="ty-footer-menu__item"><a href="https://kindlife.in/affiliate">kind champion</a></li> <li class="ty-footer-menu__item"><a href="https://www.kindlife.in/brand-query">Brand</a></li> <li class="ty-footer-menu__item"><a href="https://www.kindlife.in/corporate-gifting">Corporate Gifting</a></li> <li class="ty-footer-menu__item"><a href="https://www.kindlife.in/bulk-order">Bulk Order</a></li> </ul>";} 0 3289 blocks/wrappers/sidebox_important.tpl footer-no-wysiwyg 1 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en Partner
2190 185 0 3307 bk-pull-right top-cart 1 A cart_content a:4:{s:8:"template";s:23:"blocks/cart_content.tpl";s:22:"display_bottom_buttons";s:1:"Y";s:20:"display_delete_icons";s:1:"Y";s:19:"products_links_type";s:5:"thumb";} 0 1 en Cart
2188 243 a:1:{s:7:"content";s:162:"<div class="hamburger_menu"> <button class="hamburger-btn" type="button" aria-label="Open menu"><i class="top-hamburgur ty-icon-menuxd"></i></button> </div>";} 0 3302 hamburgur_icon hidden-tablet hidden-desktop 1 D smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en hamburger
2648 261 a:1:{s:7:"content";s:9293:"<style> .bk_top_code_strip_wrap { background: #54D4C6; background-size: cover; /* background:linear-gradient(#f94f01 30%,#fff 30% 70%,#2b9602 70%); background: radial-gradient(circle, rgba(142, 25, 24, 1) 0%, rgba(75, 20, 19, 1) 84%); */ } .bk_top_code_strip_inner { max-width: 1200px; margin: 0 auto; position: relative; } .bk_top_code_strip { display: inline-flex; justify-content: center; padding: 6px; flex-wrap: wrap; gap: 10px; } .bk_top_code_text-box { display: inline-flex; align-items: center; text-align: center; gap: 10px; margin: 5px 0; } /* .bk_top_code_actionBtns { background-color: #dbbbbbc9; padding: 3px; border-radius: 3px; } */ .bk_top_code_text-box p, .bk_top_code_coupon-box .coupon-code { /* background: linear-gradient(90deg, #e1625e 0%, #f3cf1f 100%); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; */ font-weight: 600; /* text-transform: uppercase; */ /* color: #fff; */ position: relative; padding: 0; color: #000; } .bk_top_code_icon { font-size: 200%; position: absolute; left: -40px; top: -10px; } .text-unset p { text-transform: unset; } /* .bk_top_code_coupon-box { padding: 5px 10px; background: #000; border: 1px dashed #000; border-radius: 5px; cursor: pointer; position: relative; } */ span.coupon-code { color: #000 !important; } .bk_top_code_actionBtns a { color: #000; display: flex; align-items: center; gap: 2px; } .coupon_code_slides { display: none } .slideshow-container { position: relative; } .prev-slide, .next-slide { all: unset; cursor: pointer; position: absolute; top: 50%; width: auto; font-size: 16px; transition: 0.6s ease; border-radius: 0 3px 3px 0; user-select: none; color: #000; /* color: #fff; */ padding: 10px; z-index: 1; margin-top: -22px; display: none; } .next-slide { right: 0; border-radius: 3px 0 0 3px; } .prev-slide:hover, .next-slide:hover { background-color: rgba(0, 0, 0, 0.1); } .bk_top_code_coupon-box p { display: none; position: absolute; bottom: -38px; background: #000; color: #2B8B35; padding: 10px; line-height: 14px; border-radius: 4px; left: 50%; transform: translateX(-50%); box-shadow: 0px 0px 4px #0005; font-size: 12px; font-weight: 500; white-space: nowrap; z-index: 10; text-transform: capitalize; } .bk_top_code_coupon-box p span { color: #fff; } .bk_top_code_coupon-box.show p { display: block; } /* Fading animation */ .bk_top_code_strip_wrap .fade { animation-name: fade; animation-duration: 1.5s; } @keyframes fade { from { opacity: .4 } to { opacity: 1 } } @media (max-width: 767px) { .bk_top_code_text-box p, .bk_top_code_coupon-box, .bk_top_code_actionBtns a { font-size: 13px; } .bk_top_code_icon { left: -36px; } } @media (max-width: 480px) { .bk_top_code_text-box p, .bk_top_code_coupon-box, .bk_top_code_actionBtns a { font-size: 10px; } .bk_top_code_icon { left: -28px; top: -8px; } .prev-slide, .next-slide, .bk_top_code_actionBtns a span { display: none !important; } .bk_top_code_coupon-box { padding: 5px; } .bk_top_code_strip { padding: 3px; } } @media (max-width: 380px) { .bk_top_code_coupon-box, .bk_top_code_actionBtns { display: none; } } </style> <div class="bk_top_code_strip_wrap"> <div class="bk_top_code_strip_inner"> <button class="bk_code_arrowBtn prev-slide" onclick="nextSlide(-1)" style="display: block;">❮</button> <button class="bk_code_arrowBtn next-slide" onclick="nextSlide(1)" style="display: block;">❯</button> <!-- <div class="bk_top_code_strip coupon_code_slides fade" style="display: flex;"> <div class="bk_top_code_text-box"> <p>Extra 30% on COSRX orders </p> <div class="bk_top_code_coupon-box"><span class="coupon-code">Use: <span>SPECIAL30</span></span> <p class="coupon-copy-text"><span></span> Copied</p> </div> </div> </div> --> <div class="bk_top_code_strip coupon_code_slides fade" style="display: flex;"> <div class="bk_top_code_text-box"> <p><span class="bk_top_code_icon">&#128230;</span> 100% Authentic</p> <!-- <div class="bk_top_code_coupon-box"> <p class="coupon-copy-text"><span></span> Copied</p> </div> --> </div> </div> <div class="bk_top_code_strip coupon_code_slides fade" style="display: none;"> <div class="bk_top_code_text-box"> <p>Sourced Directly from Brands or Authorised Distributors</p> <!-- <div class="bk_top_code_coupon-box"> <p class="coupon-copy-text"><span></span> Copied</p> </div> --> </div> </div> <div class="bk_top_code_strip coupon_code_slides fade" style="display: none;"> <div class="bk_top_code_text-box"> <p><span class="bk_top_code_icon">&#127379;</span> Shipping above ₹699</p> <!-- <div class="bk_top_code_coupon-box"> <p class="coupon-copy-text"><span></span> Copied</p> </div> --> </div> </div> <!-- <div class="bk_top_code_strip coupon_code_slides fade"> <div class="bk_top_code_text-box"> <p> EXTRA 15% off on orders ₹1,499+ </p> <div class="bk_top_code_coupon-box"><span class="coupon-code">Use Code: <span>APP15</span></span><p class="coupon-copy-text"><span></span> Copied</p></div> <div class="bk_top_code_actionBtns"> <a href="https://play.google.com/store/apps/details?id=com.kindlife&hl=en_IN&gl=US"> <img src="https://cdn.kindlife.in/images/ui_icon/get-app-icon.svg" alt="app-icon" width="20" height="20"> <span>GET APP</span> </a> </div> </div> </div> --> </div> </div> <script> let slideIndex = 1; showSlides(slideIndex); // change slide after 2 seconds var slideTimer = setInterval(() => { showSlides(++slideIndex); }, 5000); // next-slide funtion function nextSlide(n) { showSlides(slideIndex += n); clearInterval(slideTimer); slideTimer = setInterval(() => { showSlides(++slideIndex); }, 5000); } function showSlides(n) { let i; let slides = document.getElementsByClassName("coupon_code_slides"); let slideBtns = document.getElementsByClassName("bk_code_arrowBtn"); if (n > slides.length) { slideIndex = 1 } if (n < 1) { slideIndex = slides.length } for (i = 0; i < slides.length; i++) { slides[i].style.display = "none"; } if (slides.length > 1) { for (b = 0; b < slideBtns.length; b++) { slideBtns[b].style.display = "block"; } } slides[slideIndex - 1].style.display = "flex"; } </script> <script> function getMobileOperatingSystem() { var userAgent = navigator.userAgent || navigator.vendor || window.opera; if (/windows phone/i.test(userAgent)) { return "Windows Phone"; } if (/android/i.test(userAgent)) { return "Android"; } if (/iPad|iPhone|iPod/.test(userAgent) && !window.MSStream) { return "iOS"; } return "unknown"; } function DetectAndServe() { let os = getMobileOperatingSystem(); // alert(os) if (os == "Android") { window.location.href = "https://play.google.com/store/apps/details?id=com.kindlife&hl=en_IN&gl=US"; } else if (os == "iOS") { window.location.href = "https://apps.apple.com/us/app/kindlife/id1558677327"; } else if (os == "Windows Phone") { window.location.href = "https://kindlife.in"; } else { window.location.href = "https://kindlife.in"; } } $(".bk_top_code_actionBtns a").click(() => { DetectAndServe(); }) </script> <script> (function (_, $) { $(document).ready(function () { if (window.ReactNativeWebView) { $(".bk_top_code_actionBtns").hide(); setTimeout(() => { $(".hp_popup_wrap .hp_links_img").hide(); $(".hp_main_img.web").hide(); $(".hp_main_img.app").show(); }, 1000); } }); })(Tygh, Tygh.$); </script> <script> $(document).ready(function () { // copy-to-clipboad function $(".bk_top_code_coupon-box > span").click(function () { let copyText = $(this).find("span")[0]; let copyBox = $(this).parent(".bk_top_code_coupon-box").addClass("show"); let copyCode = $($(this).siblings("p")[0]).find("span")[0]; copyCode.innerText = '"' + copyText.innerText + '"' + " Coupon"; setTimeout(() => { $(copyBox).removeClass("show"); }, 3000); navigator.clipboard.writeText(copyText.innerHTML); }); }); </script>";} 0 3301 1 D smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en Top Coupon code strip
2178 266 a:1:{s:7:"content";s:86:"<p class="bottom-copyright">© 2025 AlphaCMA Private LIMITED. All Rights Reserved.</p>";} 0 13246 1 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en Copyright custom text
2174 330 a:1:{s:7:"content";s:10720:"<style> .bk_footer_block .footer-copyright, .bk_footer_desk{ background-color: #EDF2F8; } .ty-footer-grid__full-width > .row-fluid { max-width: 1200px; margin: 0 auto; } .bk_footer_block .bottom-copyright { margin: 10px 0; } .bk_footer_desk .bk_footer_kind{ border-bottom: 1px solid #D7E2F0; float: left; width: 100%; } .footer-copyright .bottom-copyright, .bk_footer_desk .bk_footer_contact p{ color: #1B1C1E; font-weight: 400; font-size: 13px; } .bk_footer_desk > .row-fluid .span3, .bk_footer_desk > .row-fluid .span4, .bk_footer_desk > .row-fluid .span6, .bk_footer_desk > .row-fluid .span7 { margin-left: 0; margin-top: 15px; } .bk_footer_desk .ty-sidebox-important__title, .bk_footer_desk span.ty-sidebox__title-wrapper, .bk_footer_desk .bk_foot_social h4{ color: #1B1C1E; font-size: 14px; font-weight: 600; margin: 0 0 5px 0; text-transform: inherit; } .bk_footer_desk .span3 ul{ margin: 0; } .bk_footer_desk .ty-search-block_1{ padding: 0; border: 1px solid #D7E2F0; border-radius: 50px; } .bk_footer_desk .ty-footer-menu__item { margin-bottom: 0px; padding: 3px 0; } .bk_footer_desk .ty-footer-menu__item a{ color: #1B1C1E; } .bk_footer_desk .ty-footer-menu__item a:hover{ text-decoration: underline!important; } .bk_footer_desk .bk_footer_social-Icons ul{ padding: 0; margin: 0; } .bk_footer_desk .bk_footer_social-Icons div { font-size:13px; } .bk_footer_desk .bk_foot_social h3 { color:#1B1C1E; font-size: 22px; line-height: 32px; font-weight: 600; margin: 0 0 24px; text-transform: none; } .bk_footer_desk .bk_footer_download { margin: 20px 0; } .bk_footer_desk .bk_footer_download span { margin-right: 5px; } .bk_footer_desk .bk_footer_download img { border-radius: 5px; margin-bottom: 5px; } .bk_footer_desk .bk_footer_social-Icons ul li { display: inline-block; margin-right: 20px; } .bk_footer_desk .bk_footer_social-Icons { margin: 10px 0; } .bk_footer_desk .bk_footer_social-Icons svg { width: 20px; height: 20px; } .bk_footer_desk li{ list-style: none; } .bk_footer_contact { margin: 10px 0; } .bk_footer_desk .bk_footer_contact .bk_btn_grn{ color: #2BBAA8; } .bk_footer_desk .about-grid .ty-icon-magnifiercartxdnew{ top: 8px; right: 10px; } .bk_footer_block h3.ty-sidebox-important__title{ color: #1B1C1E; font-size: 14px; font-weight: 600; margin: 0 0 5px 0; background: transparent; border-bottom: none; padding: 0 0; } .bk_footer_kind .ty-wysiwyg-content,.tygh-footer .ty-wysiwyg-content{ margin: 0 0 0 0; } .bk_footer_search{ width: 100%; max-width: 250px; float: left; clear: both; } .tygh-footer .ty-sidebox-important{ margin-bottom: 15px; } .tygh-footer *{ box-sizing: border-box; } .tygh-footer .bk_footer_desk .span3 .ty-wysiwyg-content div{ font-size: 13px; color: #888888; } /* mobile view */ @media (max-width: 767px){ .bk_footer_block { margin-bottom: 60px; } .bk_footer_desk .bk_foot_social h4{ margin: 0; text-transform: none; } .bk_footer_desk > .row-fluid .span3, .bk_footer_desk > .row-fluid .span4{ width: 100%; } .bk_footer_desk .ty-footer-menu__item{ display: inline-block; margin-right: 10px; border: none; } .bk_footer_desk .ty-sidebox-important__body { min-height: auto; } .bk_footer_desk .ty-sidebox-important__title, .bk_footer_desk span.ty-sidebox__title-wrapper, .bk_footer_desk .bk_foot_social h4{ margin: 0; } .bk_footer_desk > .row-fluid .span4 { width: 100%; margin-top: 40px; } .bk_footer_desk .bk_foot_social h3 { margin-bottom: 15px; } } </style> <div class="bk_foot_social"> <h3>Have you been kind to yourself today?</h3> <h4 class="bk_footer_download_h4">Download now, we App-solutely recommend it</h4> <div class="bk_footer_download"> <span><a href="http://play.google.com/store/apps/details?id=com.kindlife"><img src="https://cdn.kindlife.in/images/ui_icon/footer_app_andr_icon.png" alt="android icon" width="120" height="36" loading="lazy"></a></span> <span><a href="http://apps.apple.com/in/app/kindlife/id1558677327"><img src="https://cdn.kindlife.in/images/ui_icon/footer_app_ios_icon.png" alt="ios icon" width="120" height="36" loading="lazy"></a></span> </div> <h4>Keep up with kindlife</h4> <div class="bk_footer_social-Icons"> <ul> <li><a href="http://www.facebook.com/kindlife.in/"> <?xml version="1.0" encoding="utf-8"?> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve"> <path id="facebook-ko" fill="#1A1C1D" d="M21.4,1.9H3.6C3,1.9,2.5,2.4,2.5,3v17.8c0,0.6,0.5,1.1,1.1,1.1h9.6v-7.7h-2.6v-3h2.6V8.9 c-0.2-2,1.3-3.8,3.3-4c0.2,0,0.4,0,0.6,0c0.8,0,1.6,0,2.3,0.1v2.7h-1.6c-1.3,0-1.5,0.6-1.5,1.5v1.9h3l-0.4,3h-2.6v7.7h5.1 c0.6,0,1.1-0.5,1.1-1.1V3C22.5,2.4,22,1.9,21.4,1.9"/> </svg> </a></li> <li><a href="http://www.instagram.com/kindlife.in/"> <?xml version="1.0" encoding="utf-8"?> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve"> <g id="instagram-ko" transform="translate(732 3345)"> <path id="Path_2508" fill="#1A1C1D" d="M-719.5-3343.6c-2.9,0-3.2,0-4.4,0.1c-0.9,0-1.7,0.2-2.6,0.5c-0.7,0.3-1.3,0.7-1.9,1.2 c-0.5,0.5-1,1.2-1.2,1.9c-0.3,0.8-0.5,1.7-0.5,2.6c-0.1,1.1-0.1,1.5-0.1,4.3c0,2.9,0,3.2,0.1,4.3c0,0.9,0.2,1.7,0.5,2.6 c0.6,1.4,1.7,2.5,3.1,3.1c0.8,0.3,1.7,0.5,2.6,0.5c1.1,0.1,1.5,0.1,4.4,0.1c2.9,0,3.2,0,4.4-0.1c0.9,0,1.7-0.2,2.6-0.5 c1.4-0.5,2.5-1.7,3.1-3.1c0.3-0.8,0.5-1.7,0.5-2.6c0.1-1.1,0.1-1.5,0.1-4.3c0-2.9,0-3.2-0.1-4.3c0-0.9-0.2-1.7-0.5-2.6 c-0.6-1.4-1.7-2.5-3.1-3.1c-0.8-0.3-1.7-0.5-2.6-0.5C-716.3-3343.6-716.6-3343.6-719.5-3343.6 M-719.5-3341.7c2.8,0,3.2,0,4.3,0.1 c0.7,0,1.3,0.1,2,0.4c0.5,0.2,0.9,0.4,1.2,0.8c0.4,0.3,0.6,0.8,0.8,1.2c0.2,0.6,0.4,1.3,0.4,2c0,1.1,0.1,1.4,0.1,4.2 c0,2.8,0,3.1-0.1,4.2c0,0.7-0.1,1.3-0.4,2c-0.4,0.9-1.1,1.6-2,2c-0.6,0.2-1.3,0.4-2,0.4c-1.1,0.1-1.4,0.1-4.3,0.1s-3.2,0-4.3-0.1 c-0.7,0-1.3-0.1-2-0.4c-0.9-0.4-1.7-1.1-2-2c-0.2-0.6-0.4-1.3-0.4-2c0-1.1-0.1-1.4-0.1-4.2c0-2.8,0-3.1,0.1-4.2 c0-0.7,0.1-1.3,0.4-2c0.4-0.9,1.1-1.6,2-2c0.6-0.2,1.3-0.4,2-0.4C-722.7-3341.7-722.3-3341.7-719.5-3341.7"/> <path id="Path_2509" fill="#1A1C1D" d="M-719.3-3329.4c-1.9,0-3.5-1.6-3.5-3.5c0-1.9,1.6-3.5,3.5-3.5s3.5,1.6,3.5,3.5l0,0 C-715.8-3330.9-717.4-3329.4-719.3-3329.4 M-719.3-3338.2c-3,0-5.4,2.4-5.4,5.4c0,3,2.4,5.4,5.4,5.4s5.4-2.4,5.4-5.4l0,0 C-713.9-3335.8-716.3-3338.2-719.3-3338.2 M-712.1-3338.7c0,0.7-0.6,1.3-1.4,1.3c-0.7,0-1.3-0.6-1.3-1.4c0-0.7,0.6-1.3,1.3-1.3 C-712.7-3340-712.1-3339.4-712.1-3338.7"/> </g> </svg> </a></li> <li><a href="http://twitter.com/kindlife_in"> <?xml version="1.0" encoding="utf-8"?> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve"> <path id="twitter-ko" fill="#1A1C1D" d="M7.6,22.3c7.8,0.1,14.2-6.2,14.2-14c0-0.1,0-0.1,0-0.2c0-0.2,0-0.4,0-0.6 c1-0.7,1.8-1.6,2.5-2.6c-0.9,0.4-1.9,0.7-2.9,0.8c1-0.6,1.8-1.6,2.2-2.8c-1,0.6-2.1,1-3.2,1.2c-1.9-2-5.1-2.1-7.1-0.2 c-1.3,1.2-1.8,3-1.5,4.8c-4-0.2-7.8-2.1-10.3-5.2C0.3,5.7,1,8.6,3.2,10.1c-0.8,0-1.6-0.2-2.3-0.6v0.1c0,2.4,1.7,4.4,4,4.9 c-0.7,0.2-1.5,0.2-2.3,0.1c0.7,2,2.5,3.4,4.7,3.5c-1.8,1.4-4,2.1-6.2,2.1c-0.4,0-0.8,0-1.2-0.1C2.2,21.5,4.9,22.3,7.6,22.3"/> </svg> </a></li> <li><a href="http://www.youtube.com/channel/UCB2jIIGdFEhHKeoddqfP-Gg/featured"> <?xml version="1.0" encoding="utf-8"?> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 28 24" style="enable-background:new 0 0 28 24;" xml:space="preserve"> <g id="youtube-ko" transform="translate(813 3345)"> <path id="Path_2510" fill="#1B1B1D" d="M-785.3-3339.1c-0.1-1.1-0.5-2.1-1.1-3c-0.7-0.8-1.7-1.3-2.8-1.3c-3.9-0.3-9.8-0.3-9.8-0.3h0 c0,0-5.9,0-9.8,0.3c-1.1,0-2.1,0.5-2.8,1.3c-0.6,0.9-1,1.9-1.1,3c-0.2,1.6-0.3,3.2-0.3,4.8v2.3c0,1.6,0.1,3.2,0.3,4.8 c0.1,1.1,0.5,2.1,1.1,3c0.8,0.8,1.9,1.3,3.1,1.3c2.2,0.2,9.5,0.3,9.5,0.3s5.9,0,9.8-0.3c1.1,0,2.1-0.5,2.8-1.3c0.6-0.9,1-1.9,1.1-3 c0.2-1.6,0.3-3.2,0.3-4.8v-2.3C-785-3335.9-785.1-3337.5-785.3-3339.1L-785.3-3339.1z"/> <path id="Path_2511" fill="#FFFFFF" d="M-801-3329.4c-0.2,0-0.3,0-0.5-0.1c-0.3-0.2-0.5-0.5-0.5-0.9v-6.1c0-0.4,0.2-0.7,0.5-0.9 c0.3-0.2,0.7-0.2,1,0l5.1,3.1c0.5,0.3,0.6,1,0.3,1.4c-0.1,0.1-0.2,0.2-0.3,0.3l-5.1,3.1C-800.7-3329.5-800.9-3329.4-801-3329.4 L-801-3329.4z"/> </g> </svg> </a></li> </ul> </div> <div class="bk_footer_contact"> <p> Whatsapp us on <a class="bk_btn_grn" href="https://api.whatsapp.com/send?phone=918130287724">+918130287724 </a>to get in touch.</br> Reach out to us from 10AM - 6PM (Mon-Sat), we take a break on weekends (hi boss!) </p> </div> </div> <script> if (typeof window !== 'undefined' && window.ReactNativeWebView) { $('.bk_footer_download_h4').hide(); $('.bk_footer_download').hide(); } </script>";} 0 3292 1 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en footer social
2193 336 a:1:{s:7:"content";s:3462:"<style> .blockfullwidth { margin: 0px -10px; } .ty-wysiwyg-content .bk-mainbox-title { line-height: normal; height: auto; font-size: inherit; font-weight: 500; } .bk_prodListdiv{ background-color: #EDF2F8; padding: 0px 10px; } .bk_pagename_top >div>img { height: auto; width: 30px; border-radius: 100px; padding: 6px; background-color: white; margin-right: 10px; } .bk_prodListTags{ width: 100%; box-sizing: border-box; overflow-x: auto; white-space: nowrap; padding-bottom: 10px; } .bk_prodListTags > ul.subcategories > li { border:none; padding:0 0; } .bk_prodListTags > span{ font-weight: normal; font-stretch: normal; font-style: normal; letter-spacing: normal; text-align: left; color: #1b1c1e; display: inline-block; margin-right: 5px; margin-top: 8px; height: 30px; line-height: 30px; } .bk_prodListTags ul{ margin: 0; padding: 0; list-style: none; display: inline-block; } .bk_prodListTags ul li{ width: auto; display: inline-block; margin: 0px; } .bk_prodListTags ul li a{ display: block; width: auto; padding: 8px 10px 7px; border: solid 1px #ffffff; background: #fff; border-radius: 5px; font-size: 14px; font-weight: normal; font-stretch: normal; font-style: normal; letter-spacing: normal; text-align: center; color: #525252; box-shadow: 0 2px 6px #00000017; -webkit-box-shadow: 0 2px 6px #00000017; } .bk_prodListTags ul li.active a{ color: #2DBAA8; border: solid 1px #2DBAA8; } .bk_product_count_number{ line-height: inherit; color: #525252; background: none; padding-left: 0; padding-top: 0px; padding-bottom: 5px; font-size: 13px } .bk_product_search_count { display: none; } .bk_pagename_top{ padding: 10px 0px; } </style> <div class="bk_prodListdiv" > <div class="bk_pagename_top"> <div style="float: left;">{if !empty($category_data.main_pair.detailed.image_path) } <img src="{$category_data.main_pair.detailed.image_path}"/> {/if} </div> <div style=" display: inline-block; margin: 0px 10px 0px 0px;"> <h4 class="ty-mainbox-title header bk-mainbox-title header"> {if $category_data.category|trim} {$category_data.category nofilter} {else} <span>{$category_data.page_title}</span> {/if} <br> <div id="bk_product_count_text" class="bk_product_count_number"></div> </h4> </div> </div> {if $subcategories} <div class="bk_prodListTags"> {math equation="ceil(n/c)" assign="rows" n=$subcategories|count c=$columns|default:"2"} {split data=$subcategories size=$rows assign="splitted_subcategories"} <ul class="subcategories clearfix"> {hook name="categories:view_subcategories"} {foreach from=$splitted_subcategories item="ssubcateg"} {foreach from=$ssubcateg item=category name="ssubcateg"} {if $category} <li class="ty-subcategories__item"> <a href="{"categories.view?category_id=`$category.category_id`"|fn_url}"> {if $category.main_pair} {/if} <span {live_edit name="category:category:{$category.category_id}"}>{$category.category}</span> </a> </li> {/if} {/foreach} {/foreach} {/hook} </ul> {/if} </div> </div>";} 0 3317 1 D smarty_block a:1:{s:8:"template";s:23:"blocks/smarty_block.tpl";} 0 1 en Sub Categories on Product Listing Pages
2183 361 a:1:{s:7:"content";s:12117:"<style> /*-------New UI css 30 Jul-------*/ .ty-thumbnail-list .ty-thumbnail-list__item { border-radius: 1rem; box-shadow: rgb(0 0 0 / 10%) 0px 1px 3px; } .ty-simple-list__buttons .bk-icon-listcart, .bk_list_cartNonActive .ty-icon-cartxd, .bk-icon-listcart { border-radius: 30px; color: #f47b55; font-weight: 600 !important; width: fit-content; } body *, div .ty-menu__item .ty-menu__item-link, div .ty-btn.ty-btn__primary, input[type="text"], input[type="password"], input[type="tel"], input[type="number"], textarea, select { font-family: "DM Sans", sans-serif; } .bk-price-update { font-weight: 600; color: #1b1c1e; font-size: 16px; } .ty-thumbnail-list__brand a { color: #202121; font-weight: 600; } .bk_list_cartNonActive .ty-icon-cartxd, .bk-icon-listcart { height: 36px; margin: 0px; border: 1px solid #f47b54; border-radius: 30px; } .bk_list_cartNonActive .ty-icon-cartxd { border: none; background: #f47b54; color: #fff; } .bk-icon-listcart:before { content: "\e902"; display: none; } .bk_list_cartNonActive-img { display: none; } </style> <style> .ty-thumbnail-list__name a { font-size: 14px; } div.ty-product-review-reviews-stars { background: transparent; line-height: 13px; } span.pro_rat_scr { color: #1b1c1e; font-weight: 500; font-size: 14px; } .ty-thumbnail-list__item .ty-thumbnail-list__img-block { border: none; } .bk_tag_product { display: flex; } .search-typeahead .search-input { padding: 7px 72px 7px 20px; } .ty-simple-list__buttons .bk-icon-listcart, .bk-icon-listcart{ height: 36px; margin: 0px; border: 1px solid #f47b54; border-radius: 30px; } ul.bk_media_tagList { display: flex; flex-wrap: wrap; gap: 3px; margin-top: 8px; } ul.bk_media_tagList .bk_media_tagItem { background: #DFDEE3; padding: 1px 6px; border-radius: 22px; font-size: 12px; color: #262626; } body p, body a, body div, body li, body .bk_product_type_detail .bk_prod_name a { font-size: 15px; } .bk_price_discount { font-size: 15px; font-weight: 500; } .bk-list-price { font-size: 15px; } .bk_wish_collection_block span p { font-size: 12px !important; } /* css for seo-content start */ body { overflow-x: hidden; } div .seo-content { background-color: #f1f3f6; width: 100vw !important; position: relative; margin: 20px -50vw 0 !important; left: 50%; right: 50%; } #tygh_main_container .seo-content:not(:has(p)) { display: none; } .seo-content > div { max-width: 1200px; margin: 0 auto; padding: 10px 20px; } div .seo-content :is(h1,h2,h3,h4) { margin: 10px 0 6px; } div .seo-content h1 { font-size: 16px; } div .seo-content h2 { font-size: 14px; } div .seo-content h3 { font-size: 13px; } div .seo-content h4 { font-size: 13px; } div .seo-content p { padding: 0 0 4px; font-size: 12px; } div .seo-content ul li { padding: 0 0 5px; font-size: 12px; } div .seo-content ul li p { padding: 0; } .seo-content * { color: #878787 !important; } /* css for seo-content end */ /* css for video-swiper video start */ div .video-content a.watch_product_tag_brand, div .video-content .watch_product_tag_title h2 { font-size: 13px; } div .video_content_left { max-height: unset; max-width: 30%; width: 100%; min-width: 400px; } @media (max-width: 767px) { div .video-content .watch_product_tag_item { height: 125px; } } @media (max-width: 480px) { div .video-content a.watch_product_tag_brand, div .video-content .watch_product_tag_title h2 { font-size: 12px; } div .video_content_left { max-width: 100%; min-width: unset } div .video_content_right { max-width: 100%; } } /* css for video-swiper video end */ .bk_coll_user_info img { background: #fafafa; } li.ty-cart-items__list-item { display: none; } .ty-wysiwyg-content h4 { font-weight: 500; font-size: 16px; } /* new search widget css start*/ div .search-widget-container .search-input-container { box-shadow: none; } /* new search widget css end*/ /* css for profile-updaate start */ .bk_profile_updt_form .ty-profile-field__buttons.buttons-container { padding-top: 10px; } /* css for profile-updaate end */ /* css for review popup start */ .bk_pop-up_content .ty-product-review-new-product-review-rating .ty-control-group > div:last-child { position: absolute; width: 100px; height: 100px; right: 20px; top: 0; font-size: 11px; } .bk_pop-up_content .ty-product-review-new-product-review-rating .ty-control-group > div:last-child span { overflow: hidden; display: -webkit-box; line-clamp: 2; -webkit-line-clamp: 2; -webkit-box-orient: vertical; line-height: 16px; } .help-inline p { font-size: 80%; } @media (max-width:480px) { .bk_pop-up_content .ty-product-review-new-product-review-rating .ty-control-group > div:last-child { width: 90px; height: 90px; } } /* css for review popup end */ /* css for address page flag dropdown start */ div .bk_address_savedAddress .iti__country-list { bottom: 100%; } div .bk_address_savedAddress .bk_formGrp { overflow: unset; } div .bk_address_savedAddress .bk_col_row { overflow: auto; } /* css for address page flag dropdown end */ /* css for desk-nav-menu start */ .ty-menu-item__cokodive .ty-menu__item-link { background: url('https://cdn.kindlife.in/images/ui_icon/cokodive-logo.png') center no-repeat !important;; background-size: contain !important; color: transparent !important; user-select: none; } .ty-menu-item__kindluxe .ty-menu__item-link { background: url('https://cdn.kindlife.in/images/ui_icon/kindluxe-logo-menu.svg') center no-repeat !important;; background-size: contain !important; color: transparent !important; user-select: none; font-size: 16px; height: auto !important; line-height: 26px !important; min-height: auto; } .ty-menu__item.ty-menu-item__kindluxe { border-radius: 22px; background: linear-gradient(144.46deg, #FFFFFF 12.67%, #E8F5E1 51.8%, #FFFFFF 86.67%); border: 1px solid #cdf3b8; padding: 0 12px !important; margin: 0 6px; } .ty-menu-item__kindluxe a:before { display: none; } @media (max-width: 767px) { .ty-menu-item__cokodive .ty-menu__item-link { background-position: 16px 6px !important; background-size: 80px !important; } .ty-menu__item.ty-menu-item__kindluxe { border-radius: 0; background: transparent; border: 0; } .ty-menu-item__kindluxe .ty-menu__item-link { background-position: 16px 6px !important; background-size: 80px !important; line-height: normal !important; } } /* css for desk-nav-menu end */ /* css for kiki-ai page start */ div .kiki_people_qna_container { display: none !important; } /* css for kiki-ai page end */ /*css for popup-review start */ @media(max-width: 767px) { div .ty-product-detail .ty-product-block__left { padding:0; } div .ty-product-block__left .bk_pdp_desc_wraper { margin-top: 0; } } @media(max-width: 480px) { .bk_review_popup_new.k-ty-product-review .ty-product-review-new--review__body { height: calc(75vh - 100px); } } /*css for popup-review end */ a:hover { color: #000; } div .ty-owl-controls .owl-prev { position: absolute; left: 0; } div .ty-owl-controls .owl-next { position: absolute; right: 0; } /*css for pdp page start */ span.bk_feature_pdpShipment.bk_pdpShipment-block { display: none; } /*css for pdp page end */ /*css for plp page banner */ .bk_catBanner.mobile { display: none; } .bk_catBanner.mobile img { width: 100% } /*css for plp page banner */ body * { scrollbar-width: none; } .bk_upload_album, .bk_album_tab { display: none !important; } .ty-product-review-reviews-stars:before { display: none; } .container-fluid .buttons-container { background: transparent; } .ty-login-reglink { display: none; } .bk_desktop_nav .rfs-intrest-cate .ty-menu__submenu-items .ty-top-mine__submenu-col:last-child, .bk_desktop_nav .rfs-intrest-cate-in .ty-menu__submenu-items .ty-top-mine__submenu-col:last-child { background: #8cddc6; padding: 0px 10px; } .ty-menu-item__sale .ty-menu__item-link { color: #fe7400 !important; font-weight: 500; } .ty-menu-item__express .ty-menu__item-link { color: #22D1C1 !important; font-weight: 500; } .banners .ty-banner__image-item img { width: 100%; } .alert-error { border-color: #fff !important; background: #27262C !important; color: #F1AB51 !important; border-radius: 12px !important; } .alert-error .close { color: #fff !important; } div.notification-container { top: auto; bottom: 80px; right: auto; left: 50%; transform: translateX(-50%); min-width: unset; width: max-content; } @media (max-width: 767px) { .tygh-header { position: sticky; top: 0; z-index: 99; } .bk_catBanner.desktop { display: none; } .bk_catBanner.mobile { display: block; } .ty-search-block_category_bk .search-results.dropdown-style { position: fixed; top: 50px; box-shadow: none; border-radius: 0; max-height: 80vh; } } @media (max-width: 480px) { div.notification-container { bottom: 130px; max-width: 80%; } } </style> <!-- main popup css start --> <style> .sd-popup__content .sd-popup__close { color: #000; font-size: 24px; top: 5px; right: 5px; background: #c9c9c9; width: 30px; line-height: 30px; text-align: center; border-radius: 50%; font-weight: 400; z-index: 1; } .sd-popup__content .sd-popup__close:hover, .sd-popup__content .sd-popup__close:focus { color: #000; text-decoration: none; cursor: pointer; } .hp_popup-block { position: relative; } .hp_popup-links { position: absolute; bottom: 17%; right: 4%; width: 43%; display: flex; justify-content: space-evenly; gap: 10%; } .hp_popup-links a { flex: 1; padding: 3% 0; } .hp_popup-links span { opacity: 0; } /* main popup css end */ @font-face { font-family: glyphs; src: url('../../../../../../../../design/themes/new_2bk/media/fonts/glyphs.eot'); src: url('../../../../../../../../design/themes/new_2bk/media/fonts/glyphs.eot') format('embedded-opentype'), url('../../../../../../../../design/themes/new_2bk/media/fonts/glyphs.woff') format('woff'), url('../../../../../../../../design/themes/new_2bk/media/fonts/glyphs.ttf') format('truetype'), url('../../../../../../../../design/themes/new_2bk/media/fonts/glyphs.svg') format('svg'); font-display: swap; } .saleOffer { display: none !important; } body *, div .ty-menu__item .ty-menu__item-link, div .ty-btn.ty-btn__primary, input[type="text"], input[type="password"], input[type="tel"], input[type="number"], textarea, select { font-family: "DM Sans", sans-serif; } </style> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link rel="preload" as="style" href="https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap" onload="this.onload=null;this.rel='stylesheet'"> ";} 0 3764 1 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en CSS Custom Temporary
6386 763 a:3:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:94:"67158,68943,33123,66870,39928,65242,38099,65546,39123,63916,37844,32126,31335,63910,65273,3556";}s:10:"show_block";s:2:"AW";s:11:"enable_ajax";s:1:"N";} 0 12037 bt_scroller_mobile creams 1 A products a:9:{s:8:"template";s:40:"blocks/products/products_links_thumb.tpl";s:10:"show_price";s:1:"Y";s:11:"show_rating";s:1:"Y";s:15:"show_brand_name";s:1:"Y";s:15:"thumbnail_width";s:3:"250";s:8:"hide_tag";s:1:"N";s:17:"show_share_button";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";s:10:"block_type";s:6:"slider";} 0 1 en Fab 40 tone pids mob
6383 765 a:3:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:83:"70258,69853,33113,66414,66883,39915,34288,39636,63926,39930,65360,33711,35366,65278";}s:10:"show_block";s:2:"AW";s:11:"enable_ajax";s:1:"N";} 0 12033 bt_scroller_mobile serums 1 A products a:9:{s:8:"template";s:40:"blocks/products/products_links_thumb.tpl";s:10:"show_price";s:1:"Y";s:11:"show_rating";s:1:"Y";s:15:"show_brand_name";s:1:"Y";s:15:"thumbnail_width";s:3:"250";s:8:"hide_tag";s:1:"N";s:17:"show_share_button";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";s:10:"block_type";s:6:"slider";} 0 1 en Fab-40 cleanse mob
6379 911 a:3:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:71:"13933,37916,32160,69258,32124,32931,66862,33712,18016,33085,33090,68604";}s:10:"show_block";s:2:"AW";s:11:"enable_ajax";s:1:"N";} 0 12030 bt_scroller_mobile serums1 1 A products a:9:{s:8:"template";s:40:"blocks/products/products_links_thumb.tpl";s:10:"show_price";s:1:"Y";s:11:"show_rating";s:1:"Y";s:15:"show_brand_name";s:1:"Y";s:15:"thumbnail_width";s:3:"250";s:8:"hide_tag";s:1:"N";s:17:"show_share_button";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";s:10:"block_type";s:6:"slider";} 0 1 en Korean skincare mob pid
5650 2183 a:3:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:27:"14828,6628,18044,33990,3967";}s:10:"show_block";s:2:"AW";s:11:"enable_ajax";s:1:"N";} 0 10642 bk_steps_pid_block step-5 1 A products a:17:{s:8:"template";s:37:"blocks/products/products_scroller.tpl";s:10:"show_price";s:1:"Y";s:17:"enable_quick_view";s:1:"N";s:11:"show_rating";s:1:"Y";s:15:"show_brand_name";s:1:"Y";s:15:"show_short_desc";s:1:"Y";s:24:"not_scroll_automatically";s:1:"Y";s:15:"scroll_per_page";s:1:"N";s:5:"speed";s:3:"400";s:11:"pause_delay";s:1:"3";s:13:"item_quantity";s:1:"5";s:15:"thumbnail_width";s:3:"400";s:18:"outside_navigation";s:1:"Y";s:10:"promo_text";s:1:"N";s:16:"key_product_info";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";s:10:"block_type";s:6:"slider";} 0 1 en Global beauty Shop by skin concern dryness
6380 2521 a:1:{s:7:"content";s:1373:"<style> .deal_time_wrap { position: absolute; width: fit-content; font-size: 20px; font-weight: 500; background: #efdff4; padding: 5px 10px; z-index: 1; top: -18px; left: 50%; transform: translateX(-50%); border-radius: 6px; } @media (max-width: 1200px) { .deal_time_wrap { font-size: 2vw; } } @media (max-width: 480px) { .deal_time_wrap { font-size: 14px; top: -12px; } } </style> <div class="deal_time_wrap">Ends in <span class="deal-time">00:00:00</span></div> <script> let dealDate = new Date("oct 30, 2024 12:00:00").getTime(); // function to calculate remaining time let countDown = setInterval(function() { let now = new Date().getTime(); let curSec = Math.floor(now/1000); let distance = dealDate - now; let days = Math.floor(distance / (1000 * 60 * 60 * 24)); let hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)); let mins = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60)); let secs = Math.floor((distance % (1000 * 60)) / 1000); var formatedTime = ((hours < 10) ? "0" : "") + hours + ":" + ((mins < 10) ? "0" : "") + mins + ":" + ((secs < 10) ? "0" : "") + secs; document.querySelector(".deal-time").textContent = formatedTime; }, 1000); </script>";} 0 10662 1 D smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en HP new timer clock
5779 2633 a:3:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:76:"33878,70271,31335,38252,30144,33721,33915,17990,13924,3582,13829,32178,66491";}s:10:"show_block";s:2:"AW";s:11:"enable_ajax";s:1:"N";} 0 10829 1 A products a:20:{s:8:"template";s:37:"blocks/products/products_scroller.tpl";s:10:"show_price";s:1:"Y";s:8:"hide_tag";s:1:"N";s:19:"hide_certifications";s:1:"N";s:17:"enable_quick_view";s:1:"N";s:11:"show_rating";s:1:"Y";s:15:"show_brand_name";s:1:"Y";s:17:"show_share_button";s:1:"N";s:15:"show_short_desc";s:1:"N";s:24:"not_scroll_automatically";s:1:"Y";s:15:"scroll_per_page";s:1:"N";s:5:"speed";s:3:"400";s:11:"pause_delay";s:1:"3";s:13:"item_quantity";s:1:"5";s:15:"thumbnail_width";s:3:"250";s:18:"outside_navigation";s:1:"Y";s:10:"promo_text";s:1:"N";s:16:"key_product_info";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";s:10:"block_type";s:6:"slider";} 0 1 en Kbw All the rage pids
5541 2843 a:1:{s:7:"content";s:16071:" <style> .card_1x5_scroll .carousel-card { flex: 0 0 max(200px, calc(23% - 10px)); padding:0 5px; } /* .bk_top_code_strip_wrap { background: #ce0f2b; } .bk_top_code_coupon-box { border: 1px dashed #fff; } .bk_top_code_text-box p, .bk_top_code_coupon-box .coupon-code { color: #fff; } span.coupon-code{ color: #ce0f2b !important; } */ </style> <style> .bk_toggle_circles_block { display: flex; column-gap: 10px; overflow: auto; margin:0px 0 10px; white-space: nowrap; } .bk_toggle_circle { border: 1px solid #d7662a; background: #fff; border-radius: 25px; min-width: max-content; flex: 1; font-weight: 500; font-size: 15px; line-height: 20px; color: #d7662a; white-space: normal; position: relative; display: flex; align-items: center; column-gap: 10px; justify-content: center; padding: 6px 10px; } .bk_toggle_circle img { width: 28px; height: 28px; background: #fff; border-radius: 50%; padding: 1px; } .bk_toggle_circle.color1{ border: 1px solid #dbb42c; color: #dbb42c; } .bk_toggle_circle.color2{ border: 1px solid #710000; color: #710000; } .bk_toggle_circle.color3{ border: 1px solid #218380; color: #218380; } .bk_toggle_circle.color4{ border: 1px solid #ff0054; color: #ff0054; } /* .bk_toggle_circles_block .bk_toggle_circle:hover, .bk_toggle_circles_block .bk_toggle_circle.active{ color: #fff; background: #2dbaa8; box-shadow: 2px 2px 5px #d0d0d0; } */ .color .bk_toggle_circle.color1:hover, .color .bk_toggle_circle.color1.active{ background:#dbb42c; color: #fff; border: 1px solid #dbb42c; } .color .bk_toggle_circle.color2:hover, .color .bk_toggle_circle.color2.active{ background: #710000; color: #fff; border: 1px solid #710000; } .color .bk_toggle_circle.color3:hover, .color .bk_toggle_circle.color3.active{ background: #218380; color: #fff; border: 1px solid #218380; } .color .bk_toggle_circle.color4:hover, .color .bk_toggle_circle.color4.active{ background: #ff0054; color: #fff; border: 1px solid #ff0054; } .bk_toggle_pids { display: none; position: relative; } .bk_category_link .bk_cat-toggle_more-link { width: max-content; margin: 0 0 0 auto; } .bk_category_link .bk_cat-toggle_more-link.active{ display: block; } .bk_category_link .bk_cat-toggle_more-link{ display: none; } @media (max-width: 768px){ .bk_toggle_circle img { width: 24px; height: 24px; } .bk_toggle_circle { font-size: 14px; } } @media (max-width: 767px) { .bk_toggle_circles_block { flex-wrap: nowrap; overflow: auto; margin: 0 0 10px; justify-content: flex-start; } .bk_toggle_circle { margin: 5px; border-radius: 25px; width: auto; height: auto; min-width: max-content; padding: 8px 20px; } } @media screen and (max-width: 480px) { .card_1x4 .carousel-card, .card_1x4_scroll .carousel-card, .card_1x5_scroll .carousel-card, .card_1x6_scroll .carousel-card { flex: 0 0 45%; } } </style> <script> $(document).ready(function(){ $('.pid_carousal_1').css('display','block'); $(".bk_toggle_circle").click(function(){ $(this).toggleClass("active").siblings().removeClass("active"); $('.bk_toggle_pids,.bk_cat-toggle_more-link').css('display','none'); $('.'+$(this).attr('id')).css('display','block'); }); }); </script> <!-- css for community video and blogs --> <style type="text/css"> .bk_com_heading { padding: 25px 0px 5px; } .bk_com_heading h2 { font-size: 20px; margin: 0; } ul.bk_community_list::-webkit-scrollbar{ display:none; } ul.bk_community_list { margin: 0; padding: 0; list-style: none; overflow: auto; white-space: nowrap; padding-bottom: 5px; display: flex; column-gap: 20px; } ul.bk_community_list li{ flex: 0 0 220px; border-radius: 10px; overflow: hidden; position: relative; white-space: normal; } .bk_video-content .com_video_icon{ position: absolute; left: 15%; bottom: 45px; transform: translate(-50%, -50%); -webkit-transform: translate(-50%, -50%); width: 40px; height: 40px; } .bk_video-content .com_video_info { padding: 10px 10px 5px; height: 75px; position: absolute; bottom: 0px; left: 0; right: 0; background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%); background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%); background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%); } .bk_video-content .com_video_title { color: #fff; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; font-size: 14px; margin: 5px 0 0; line-height: 18px; font-weight: 400; } .bk_video-content .com_extra_info { margin-top: 5px; font-size: 12px; color: #fff; padding: 0; } .bk_home_blog_p{ background-color: #f2f2f2; padding: 5px 10px; position: absolute; bottom: 0px; width: 100%; } .bk_home_blog_p h4{ overflow: hidden; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; line-height: 18px; height: 18px; white-space: break-spaces; font-size: 15px; font-weight: 500; margin: 0; } .bk_home_blog_p p{ overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; line-height: 16px; height: 34px; font-size: 13px; padding: 3px 0 0px; } @media (max-width: 480px){ .bk_com_heading { padding: 20px 0px 5px; } .bk_com_heading h2 { font-size: 18px; } ul.bk_community_list { column-gap: 10px; } } </style> <style> .bk_steps_toggle_wrap.bg-grey .span16.bk_routine { background: #f1f1f1; padding: 10px 5px; } .bk_routine .bk_steps_pid_block .owl-wrapper { max-width: fit-content; margin: 0 auto; } #bk_newcat_block { text-align: center; } .bk_steps_images { overflow: auto; border: 1px solid #e3e3e3; margin: 10px 0; border-radius: 10px; background: #e3e3e3; } .bk_stepsBtns { text-align: center; } a.bkStepsBtn { color: #1b366f; margin: 20px 10px; text-decoration: underline !important; font-size: 16px; display: inline-block; } .step-3-active #step-3, .step-4-active #step-4, .step-5-active #step-5 { color: #ec138d; } .bk_steps_pid_block { display: none; margin-top: 10px; } .bk-routine-steps-images-container.steps-cont { max-width: 220px; margin: 0 auto; overflow: hidden; } .bk-step-bottles-container { width: 180%; } .bk-step-bottle-1-color .st0, .bk-step-bottle-2-color .st0, .bk-step-bottle-3-color .st0, .bk-step-bottle-4-color .st0, .bk-step-bottle-5-color .st0, .bk-step-bottle-6-color .st0, .bk-step-bottle-7-color .st0, .bk-step-bottle-8-color .st0, .bk-step-bottle-9-color .st0, .bk-step-bottle-10-color .st0 { fill: #539ac0; opacity: .64; } .bk-step-bottle-1-color .st1, .bk-step-bottle-2-color .st1, .bk-step-bottle-3-color .st1, .bk-step-bottle-4-color .st1, .bk-step-bottle-5-color .st1, .bk-step-bottle-6-color .st1, .bk-step-bottle-7-color .st1, .bk-step-bottle-8-color .st1, .bk-step-bottle-9-color .st1, .bk-step-bottle-10-color .st1 { fill: #fff; opacity: 1; } /* @media (min-width: 767px) { */ .step-3-active .bk-step-bottle-1-color .st0, .step-3-active .bk-step-bottle-3-color .st0, /* .step-3-active .bk-step-bottle-4-color .st0, */ .step-4-active .bk-step-bottle-1-color .st0, .step-4-active .bk-step-bottle-3-color .st0, .step-4-active .bk-step-bottle-4-color .st0, .step-4-active .bk-step-bottle-6-color .st0, /* .step-5-active .bk-step-bottle-1-color .st0, .step-5-active .bk-step-bottle-3-color .st0, */ .step-5-active .bk-step-bottle-4-color .st0, .step-5-active .bk-step-bottle-5-color .st0, .step-5-active .bk-step-bottle-6-color .st0, .step-7-active .bk-step-bottle-1-color .st0, .step-7-active .bk-step-bottle-2-color .st0, .step-7-active .bk-step-bottle-3-color .st0, .step-7-active .bk-step-bottle-4-color .st0, .step-7-active .bk-step-bottle-5-color .st0, .step-7-active .bk-step-bottle-6-color .st0, .step-7-active .bk-step-bottle-7-color .st0, .step-7-active .bk-step-bottle-8-color .st0, .step-7-active .bk-step-bottle-9-color .st0, .step-7-active .bk-step-bottle-10-color .st0 { fill: #ec138d; opacity: 1 } .step-3-active .bk-step-bottle-1-color .st1, .step-3-active .bk-step-bottle-3-color .st1, /* .step-3-active .bk-step-bottle-4-color .st1, */ .step-4-active .bk-step-bottle-1-color .st1, .step-4-active .bk-step-bottle-3-color .st1, .step-4-active .bk-step-bottle-4-color .st1, .step-4-active .bk-step-bottle-6-color .st1, /* .step-5-active .bk-step-bottle-1-color .st1, .step-5-active .bk-step-bottle-3-color .st1, */ .step-5-active .bk-step-bottle-4-color .st1, .step-5-active .bk-step-bottle-5-color .st1, .step-5-active .bk-step-bottle-6-color .st1, .step-7-active .bk-step-bottle-1-color .st1, .step-7-active .bk-step-bottle-2-color .st1, .step-7-active .bk-step-bottle-3-color .st1, .step-7-active .bk-step-bottle-4-color .st1, .step-7-active .bk-step-bottle-5-color .st1, .step-7-active .bk-step-bottle-6-color .st1, .step-7-active .bk-step-bottle-7-color .st1, .step-7-active .bk-step-bottle-8-color .st1, .step-7-active .bk-step-bottle-9-color .st1, .step-7-active .bk-step-bottle-10-color .st1 { fill: #fff1f9; opacity: 1 } /* } */ </style> <script> $(document).ready(function(){ $('.bk_steps_pid_block.step-3').css('display','block'); $(".bkStepsBtn").mouseover(function(){ $(this).parents("#bk_newcat_block").removeClass(); $(this).parents("#bk_newcat_block").addClass($(this).attr('id')+'-active'); $(this).parents(".bk_steps_toggle_wrap").find('.bk_steps_pid_block').css('display','none'); $(this).parents(".bk_steps_toggle_wrap").find('.'+$(this).attr('id')).css('display','block'); }); // $(".bkStepsBtn").mouseout(function(){ // $(this).parents("#bk_newcat_block").removeClass($(this).attr('id')+'-active'); // }); }); </script> <style> /* carouselS */ .carousel { position: relative; overflow: hidden; } .carousel-container { display: flex; overflow-x: auto; scroll-behavior: smooth; justify-content:space-between; column-gap: 10px; } .carousel-container::-webkit-scrollbar { display: none; } .carousel-card { position: relative; } .card_1x4_scroll .carousel-card { flex: 0 0 max(200px, 21%); } .card_1x3_scroll .carousel-card { flex: 0 0 max(300px, 30%); } .card_1x4 .carousel-card { flex: 0 0 max(200px,calc(25% - 7.25px)); } .card_1x1 .carousel-card { flex: 0 0 100%; } .carousel-image > a { display: inline-block; } .carousel-image img { width: 100%; border-radius: 5px; } .animate-text { position: absolute; bottom: 0; left: 0; } .carousel-pre-btn, .carousel-nxt-btn { width: 46px; position: absolute; top: calc(50% - 18px); cursor: pointer; z-index: 3; font-size: 22px; height: 46px; line-height: 46px; background: #ffffff5c; color: #fff; border-radius: 50%; border: 0; padding: 0; display: none; } .carousel-pre-btn { left: 0; } .carousel-nxt-btn { right: 0; } .carousel-pre-btn:hover, .carousel-nxt-btn:hover { background: #000; } @media screen and (max-width: 480px) { .card_1x4_scroll .carousel-card { flex: 0 0 45%; } .card_1x3_scroll .carousel-card { flex: 0 0 70%; } .card_1x4 .carousel-card { flex: 0 0 calc(50% - 5px); } .carousel-pre-btn, .carousel-nxt-btn { width: 40px; height: 40px; line-height: 40px; } } </style> <!-- function for image-card scroll --> <script type="text/javascript"> function cardScroller(parentSlider, parentContainer) { const carouselSlider = document.querySelectorAll(parentSlider); const carouselContainers = document.querySelectorAll(parentContainer); carouselSlider.forEach((silderItem) => { const nxtBtn = silderItem.querySelectorAll('.carousel-nxt-btn'); const preBtn = silderItem.querySelectorAll('.carousel-pre-btn'); carouselContainers.forEach((item, i) => { const carouselCards = item.querySelectorAll('.carousel-card'); const containerWidth = item.offsetWidth; const cardWidth = carouselCards[0].offsetWidth; let index = 0; nxtBtn[i].addEventListener('click', () => { index++; const maxIndex = carouselCards.length - Math.floor(containerWidth / cardWidth); if (index > maxIndex) { index = 0; item.scrollLeft = 0; } else { item.scrollLeft = index * (cardWidth + 10); } }); preBtn[i].addEventListener('click', () => { index--; if (index < 0) { index = 0; item.scrollLeft = 0; } else { item.scrollLeft = index * (cardWidth + 10); } }); setInterval(() => { nxtBtn[i].click(); }, 4000); }) }); } cardScroller(".hero-banner-slider", ".hb-container") const carouselContainers = document.querySelectorAll('.carousel-container'); const nxtBtn = document.querySelectorAll('.carousel-nxt-btn'); const preBtn = document.querySelectorAll('.carousel-pre-btn'); carouselContainers.forEach((item, i) => { const carouselCards = item.querySelectorAll('.carousel-card'); const containerWidth = item.offsetWidth; const cardWidth = carouselCards[0].offsetWidth; let index = 0; nxtBtn[i].addEventListener('click', () => { index++; const maxIndex = carouselCards.length - Math.floor(containerWidth / cardWidth); if (index > maxIndex) { index = 0; item.scrollLeft = 0; } else { item.scrollLeft = index * (cardWidth + 10); } }); preBtn[i].addEventListener('click', () => { index--; if (index < 0) { index = 0; item.scrollLeft = 0; } else { item.scrollLeft = index * (cardWidth + 10); } }); setInterval(() => { nxtBtn[i].click(); }, 4000); }); </script> ";} 0 10359 1 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en Global beauty toggle and community css
5542 2859 a:1:{s:7:"content";s:4000:"<style> .kbeauty-desc-new { text-align: center; } .flex_contain_new_block { /* background: #feffc980; */ border-radius: 5px; /* box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px; */ margin-top: 50px; } .bk_block_heading.new_head_recipecorner h2 { margin: 0px 0 10px; } .kbeauty-reels-wrap { overflow: auto; } ul.kbeauty-reels-wrap-items { display: flex; flex-wrap: nowrap; justify-content: space-between; margin: 0; } .kbeauty-desc-new h3 { font-size: 15px; font-weight: 400; margin: 5px 0 2px; } ul.kbeauty-reels-wrap-items li { flex: 0 0 23%; list-style: none; padding: 0 5px; position: relative; } ul.kbeauty-reels-wrap-items li img { border-radius: 5px; width: 100%; aspect-ratio: 3/5; } .com_video_playBtn { left: 18px; position: absolute; bottom: 67px; cursor:pointer; } button { background-color: black; color: white; font-size: 18px; border-radius: 6px; } .link_test a { line-height: 18px; font-weight: 500; font-size: 15px; text-decoration: underline !important; text-transform: uppercase; } span.desc_head { font-weight: normal; font-size: 13px; color: #2EBAA8; } @media only screen and (max-width:768px) { .kbeauty-reels-wrap { justify-content: flex-start; } ul.kbeauty-reels-wrap-items { white-space: nowrap; } ul.kbeauty-reels-wrap-items p { min-width: 150px; } } @media only screen and (max-width:600px) { .kbeauty-desc-new h3 { font-size: 14px; } ul.kbeauty-reels-wrap-items li { list-style: none; min-width: 170px; } .test_link a { font-size: 12px; } } </style> <div class="flex_contain_new_block bk_block_container"> <div class="bk_block_heading new_head_recipecorner"> <h2>Straight from the For You Page</h2> </div> <div class="kbeauty-reels-wrap"> <ul class="kbeauty-reels-wrap-items"> <li> <a href="https://www.kindlife.in/skin-food"> <img src="https://cdn.kindlife.in/images/banners/category/Kbeauty-1305-seen-on-reels-skinfood.webp"> </a> <div class="kbeauty-desc-new"> <h3><span class="desc_head">Skinfood</span> <br>Food for your skin</h3> </div> </li> <li> <a href="https://www.kindlife.in/vt-cosmetics/"> <img src="https://cdn.kindlife.in/images/banners/category/Kbeauty-1305-seen-on-reels-vt.webp"> </a> <div class="kbeauty-desc-new"> <h3><span class="desc_head">VT Cosmetics</span> <br> Korea's #1 anti-ager</h3> </div> </li> <li> <a href="https://www.kindlife.in/beauty-of-joseon/"> <img src="https://cdn.kindlife.in/images/banners/category/Kbeauty-1305-seen-on-reels-boj.webp"> </a> <div class="kbeauty-desc-new"> <h3><span class="desc_head">Beauty of Joseon</span> <br> Trending Korean suncare</h3> </div> </li> <li> <a href="https://www.kindlife.in/im-from/"> <img src="https://cdn.kindlife.in/images/banners/category/Kbeauty-1305-seen-on-reels-imfrom.webp"></a> <!-- <span class="com_video_playBtn cp-video-cover__a" id="1993" com_vid_id="1993"> <svg id="Group_12289" data-name="Group 12289" xmlns="http://www.w3.org/2000/svg" width="31.794" height="31.794" viewBox="0 0 31.794 31.794"> <circle id="Ellipse_1136" data-name="Ellipse 1136" cx="15.897" cy="15.897" r="15.897" fill="#2dbaa8"></circle> <path id="Polygon_57" data-name="Polygon 57" d="M6.188,3.27a2,2,0,0,1,3.522,0l4.6,8.543a2,2,0,0,1-1.761,2.948h-9.2a2,2,0,0,1-1.761-2.948Z" transform="translate(24.981 7.949) rotate(90)" fill="#fff"></path> </svg> </span> --> <div class="kbeauty-desc-new"> <h3><span class="desc_head">I'm From</span><br>Rice range for bright skin</h3> </div> <!-- <div class="link_test"> <a href="">SHOP</a> </div> --> </li> </ul> </div> </div>";} 0 10375 1 D smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en Global beauty Straight from the For You Page
6392 2925 a:3:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:82:"65283,66871,66854,39917,69851,65275,23660,66410,3564,39919,66389,37891,33694,39926";}s:10:"show_block";s:2:"AW";s:11:"enable_ajax";s:1:"N";} 0 12043 bt_scroller_mobile cushion 1 A products a:9:{s:8:"template";s:40:"blocks/products/products_links_thumb.tpl";s:10:"show_price";s:1:"Y";s:11:"show_rating";s:1:"Y";s:15:"show_brand_name";s:1:"Y";s:15:"thumbnail_width";s:3:"250";s:8:"hide_tag";s:1:"N";s:17:"show_share_button";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";s:10:"block_type";s:6:"slider";} 0 1 en fab 40 moisturise pids mob
6389 2926 a:3:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:71:"66509,69843,70266,66852,23663,39922,33722,65550,37840,65281,31337,31326";}s:10:"show_block";s:2:"AW";s:11:"enable_ajax";s:1:"N";} 0 12040 bt_scroller_mobile spf 1 A products a:9:{s:8:"template";s:40:"blocks/products/products_links_thumb.tpl";s:10:"show_price";s:1:"Y";s:11:"show_rating";s:1:"Y";s:15:"show_brand_name";s:1:"Y";s:15:"thumbnail_width";s:3:"250";s:8:"hide_tag";s:1:"N";s:17:"show_share_button";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";s:10:"block_type";s:6:"slider";} 0 1 en fab 40 serums pids mob
5547 3055 a:3:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:47:"66519,66873,65547,66490,65542,69107,25620,69597";}s:10:"show_block";s:2:"AW";s:11:"enable_ajax";s:1:"N";} 0 10883 blocks/wrappers/mainbox_simple.tpl 1 A products a:20:{s:8:"template";s:37:"blocks/products/products_scroller.tpl";s:10:"show_price";s:1:"Y";s:8:"hide_tag";s:1:"N";s:19:"hide_certifications";s:1:"N";s:17:"enable_quick_view";s:1:"Y";s:11:"show_rating";s:1:"Y";s:15:"show_brand_name";s:1:"Y";s:17:"show_share_button";s:1:"N";s:15:"show_short_desc";s:1:"N";s:24:"not_scroll_automatically";s:1:"Y";s:15:"scroll_per_page";s:1:"N";s:5:"speed";s:3:"400";s:11:"pause_delay";s:1:"3";s:13:"item_quantity";s:1:"5";s:15:"thumbnail_width";s:3:"200";s:18:"outside_navigation";s:1:"Y";s:10:"promo_text";s:1:"N";s:16:"key_product_info";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";s:10:"block_type";s:6:"slider";} 0 1 en Last Minute Glow Hacks
7049 3661 a:5:{s:11:"card_design";s:7:"default";s:20:"video_prod_both_show";s:15:"video_prod_both";s:24:"comm_profile_data_source";s:8:"video_id";s:11:"no_of_items";s:0:"";s:15:"default_user_id";s:0:"";} 0 13213 1 A comm_video_tagged_product a:15:{s:8:"template";s:56:"addons/kl_community/views/video/display_video_slider.tpl";s:10:"block_type";s:6:"slider";s:24:"not_scroll_automatically";s:1:"N";s:5:"speed";s:3:"400";s:11:"pause_delay";s:1:"3";s:13:"item_quantity";s:3:"2.5";s:24:"comm_profile_data_source";a:1:{s:8:"video_id";a:1:{s:30:"comm_profile_data_source_prams";s:136:"2415, 2414, 2413, 2318, 2248, 2252, 2311, 2304, 2163, 2162, 2161, 2155, 2131, 2130, 2129, 2128, 2082, 2081, 2080, 2079, 2078, 2077, 2076";}}s:25:"heading_section_alignemnt";s:6:"center";s:13:"section_title";s:28:"TRIED AND TESTED BY KINDCREW";s:17:"section_sub_title";s:0:"";s:19:"title_section_color";s:0:"";s:13:"primary_color";s:11:"transparent";s:16:"secondary_colors";s:0:"";s:10:"main_class";s:0:"";s:17:"more_content_link";s:0:"";} 0 1 en kindcrew #TBH videos
7158 3723 a:1:{s:7:"content";s:590:"<style> .top-strip { /* background-color: #deaaff; */ background-color: #ffb9c6; color: #000; text-align: center; font-size: 40px; font-weight: 500; padding: 15px; margin:50px auto 0; } @media (max-width: 600px) { .top-strip { font-size: 20px; padding: 10px; margin:30px auto 0; } } </style> <!-- <div class="top-strip"> Dermat-Trusted K-Beauty Picks </div> --> <div class="bk_block_heading"> <h2> Dermat-Trusted K-Beauty Picks</h2> </div>";} 0 12967 1 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en Dermat-Trusted K-Beauty Picks heading
7052 3754 a:3:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:64:"70277,58579,39004,65546,7267,66879,30148,69850,30044,37534,69361";}s:10:"show_block";s:2:"AW";s:11:"enable_ajax";s:1:"N";} 0 13255 bk_steps_pid_block step-4 1 A products a:20:{s:8:"template";s:37:"blocks/products/products_scroller.tpl";s:10:"show_price";s:1:"Y";s:8:"hide_tag";s:1:"N";s:19:"hide_certifications";s:1:"N";s:17:"enable_quick_view";s:1:"N";s:11:"show_rating";s:1:"Y";s:15:"show_brand_name";s:1:"Y";s:17:"show_share_button";s:1:"N";s:15:"show_short_desc";s:1:"N";s:24:"not_scroll_automatically";s:1:"Y";s:15:"scroll_per_page";s:1:"N";s:5:"speed";s:3:"400";s:11:"pause_delay";s:1:"3";s:13:"item_quantity";s:1:"5";s:15:"thumbnail_width";s:3:"400";s:18:"outside_navigation";s:1:"Y";s:10:"promo_text";s:1:"N";s:16:"key_product_info";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";s:10:"block_type";s:6:"slider";} 0 1 en kbw dryness
7017 3760 a:3:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:35:"68935,68933,68921,68925,68924,68926";}s:10:"show_block";s:2:"AW";s:11:"enable_ajax";s:1:"N";} 0 13217 bk_toggle_pids pid_carousal_2 1 A products a:20:{s:8:"template";s:37:"blocks/products/products_scroller.tpl";s:10:"show_price";s:1:"Y";s:8:"hide_tag";s:1:"N";s:19:"hide_certifications";s:1:"N";s:17:"enable_quick_view";s:1:"N";s:11:"show_rating";s:1:"Y";s:15:"show_brand_name";s:1:"Y";s:17:"show_share_button";s:1:"N";s:15:"show_short_desc";s:1:"N";s:24:"not_scroll_automatically";s:1:"Y";s:15:"scroll_per_page";s:1:"N";s:5:"speed";s:3:"400";s:11:"pause_delay";s:1:"3";s:13:"item_quantity";s:1:"5";s:15:"thumbnail_width";s:3:"400";s:18:"outside_navigation";s:1:"Y";s:10:"promo_text";s:1:"N";s:16:"key_product_info";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";s:10:"block_type";s:6:"slider";} 0 1 en HP Dear Darling Fixing Tint pids
7391 3816 a:1:{s:7:"content";s:4173:"<style> .seo21 p, a { color: #617188; } .seboot21 { border-top: 1px solid #D7E2F0; border-bottom: 1px solid #D7E2F0; padding: 15px 0px; } .seo21 h3 { color: #56657b; } </style> <p>Experience the ultimate Korean Beauty Week 2025 at Kindlife—India’s #1 K-beauty festival! Discover authentic Korean skincare, haircare, and makeup from the world’s leading brands, each tailored for Indian skin. Whether you want glowing glass skin, gentle sun protection, or science-backed routines, our curated collection offers bestsellers, new launches, mini essentials, exclusive combos, and dermatologist-approved picks.</p> <p>Shop cleansers, toners, serums, moisturizers, and sunscreens from cult-favorite brands like COSRX, Beauty of Joseon, Dear Klairs, Isntree, VT Cosmetics, Axis-Y, Skinfood, Mary & May, Coxir, Round Lab, Frudia, Secret Key, Medicube, Dr.G, Dr.Ceuracle, Tirtir, and more. Enjoy up to 45% off, exclusive bundles, mini routine kits, festival-only launches, and expert-guided solutions for all skin types and concerns.</p> <p>Explore routines for acne, hydration, sensitive skin, anti-aging, and sun care using trusted actives: snail mucin, hyaluronic acid, centella, niacinamide, tea tree, and vitamin C. Try top-rated combos and minis, and unlock your best skin with our Personalised Routine tool, ingredient scan, influencer tips, and verified customer reviews.</p> <p>Kindlife delivers India’s largest certified K-beauty assortment, fast shipping, and genuine products —your glow starts now!</p> <h3>K beauty skincare bestsellers </h3> <p> COSRX: Advanced Snail 96 Mucin Power Essence, Low pH Good Morning Gel Cleanser, Beauty of Joseon: Ginseng Essence Water, Glow Serum, Axis-Y: The Mini Glow Set, Mary & May: Calendula Peptide Ageless Sleeping Mask, Centella Asiatica Serum, Klairs: Rich Moist Foaming Cleanser, Freshly Juiced Vitamin Drop, Skinfood: Carrot Carotene Calming Water Pad, Royal Honey Propolis Emulsion, Round Lab: Birch Juice Moisturizing Sunscreen, Pine Calming Cica Toner, Coxir: Black Snail Collagen Cream, Ultra Hyaluronic Cream, VT Cosmetics: Collagen Reedle Shot, CICA Cream, I’m From: Rice Toner, Beet Refresh Pads, Frudia: Citrus Brightening Cream, Green Grape Pore Control Scrub, Medicube, Dr.G, Dr.Ceuracle: Suncare, soothing gels, iconic daily cleansers, Tirtir: Milk Skin Toner, mask fit cushions, Dashing Diva: Nail kits for Korean-inspired touch</p> <h3>Top Brands Highlight</h3> <p><a href="https://www.kindlife.in/cosrx/">COSRX</a>, <a href="https://www.kindlife.in/beauty-of-joseon/">Beauty of Joseon</a>, <a href="https://www.kindlife.in/klairs/" class="ty-features-all__list-a">Klairs</a>, <a href="https://www.kindlife.in/isntree/" class="ty-features-all__list-a">Isntree</a>, <a href="https://www.kindlife.in/vt-cosmetics/" class="ty-features-all__list-a">VT Cosmetics</a>, <a href="https://www.kindlife.in/mary-and-may/" class="ty-features-all__list-a">Mary&amp;May</a>, <a href="https://www.kindlife.in/axis-y/">AXIS-Y</a>, <a href="https://www.kindlife.in/skinfood/">Skinfood</a>, <a href="https://www.kindlife.in/coxir/">Coxir</a>, <a href="https://www.kindlife.in/round-lab/">Round Lab</a>, <a href="https://www.kindlife.in/frudia/">Frudia</a>, <a href="#" class="ty-features-all__list-a">Medicube</a>, <a href="https://www.kindlife.in/dr.g/">DR.G</a>, <a href="https://www.kindlife.in/dr.-ceuracle/" class="ty-features-all__list-a">Dr. Ceuracle</a>, <a href="https://www.kindlife.in/im-from/" class="ty-features-all__list-a">I'm From</a>, <a href="https://www.kindlife.in/tirtir/">Tirtir</a>, <a href="https://www.kindlife.in/neaf-neaf/">neaf neaf</a>, <a href="https://www.kindlife.in/kaine/" class="ty-features-all__list-a">Kaine</a>, <a href="https://www.kindlife.in/belif/" class="ty-features-all__list-a">Belif</a>, <a href="https://www.kindlife.in/dashing-diva/">Dashing Diva</a>, <a href="https://www.kindlife.in/the-face-shop/">The Face Shop</a>, <a href="https://www.kindlife.in/its-skin/">Its Skin</a>, <a href="https://www.kindlife.in/missha/">Missha</a>, <a href="https://www.kindlife.in/secret-key/" class="ty-features-all__list-a">Secret Key</a></p>";} 0 13192 seo21 1 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en korean beauty description
7056 3833 a:1:{s:7:"content";s:4695:"<style> /* rounded-glow section */ .glow-section { margin-top: 3rem; text-align: center; } ul.glow-products { margin: 0px; list-style: none; display: flex; gap: 1rem; overflow: auto; scrollbar-width: none; } li.glow-product-item { padding: 0; position: relative; flex: 0 0 23%; min-width: 200px; text-align: center; } /* base image styles */ .glow-products li img { width: 100%; display: block; transition: opacity 0.5s ease, transform 0.5s ease; } /* back image positioned above front */ .glow-products .flip-img { position: absolute; inset: 0; opacity: 0; transform: scale(0.9); transition: opacity 0.5s ease, transform 0.5s ease; } /* hover effect */ .glow-products li:hover .flip-img { opacity: 1; transform: scale(1); } .glow-products li:hover img:not(.flip-img) { opacity: 0; } @media (max-width: 767px) { .glow-section, .rl_ingredient-section { margin-top: 2rem; } ul.glow-products { margin: 0px; gap: 0.5rem; } } @media (max-width: 480px) { ul.glow-products { flex-wrap: nowrap; } li.glow-product-item { flex: 0 0 46%; min-width: unset; } } </style> <div class="glow-section"> <div class="bk_block_heading"> <h2>Perfect winter routine for beginners</h2> </div> <ul class="glow-products"> <li class="glow-product-item"> <a href="https://www.kindlife.in/red-rice-deep-cleansing-face-wash/"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/kbw-2410-routine-unik-celendula-cleansing-front1.webp" alt="ginseng-front"> <img class="flip-img" src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/kbw-2410-routine-unik-celendula-cleansing-back2.webp" alt="ginseng-back"> </a> <div class="bk_prod_desc"> Double cleanser <br> <span> Makeup melter</span> </div> </li> <li class="glow-product-item"> <a href="https://www.kindlife.in/rice-daily-brightening-scrub-foam/"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/kbw-2410-routine-skinfood-black-sugar-front3.webp" alt="redbean-front"> <img class="flip-img" src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/kbw-2410-routine-skinfood-black-sugar-back3.webp" alt="redbean-back"> </a> <div class="bk_prod_desc"> Exfoliate <br> <span> Removes dead skin</span> </div> </li> <li class="glow-product-item"> <a href="https://www.kindlife.in/jumiso-waterfull-hyaluronic-acid-toner-250ml/"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/kbw-2410-routine-milk-skin-front2.webp" alt="apricot-front"> <img class="flip-img" src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/kbw-2410-routine-milk-skin-back2.webp" alt="apricot-back"> </a> <div class="bk_prod_desc"> Tone<br><span> Hydration hero</span> </div> </li> <li class="glow-product-item"> <a href="https://www.kindlife.in/idebenoneblackberry-complex-serum-30ml/"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/Kbw-2510-brands-spotlight-mary-and-amy1.webp" alt="calming-serum-front"> <img class="flip-img" src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/kbw-2410-routine-unik-rose-back2.webp" alt="calming-serum-back"> </a> <div class="bk_prod_desc"> Serum <br> <span> Dewy skin secret</span> </div> </li> <li class="glow-product-item"> <a href="https://www.kindlife.in/black-snail-collagen-cream-50ml/"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/kbw-2410-routine-ultra-hyaluronic-front1.webp" alt="calming-serum-front"> <img class="flip-img" src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/kbw-2410-routine-ultra-hyaluronic-back2.webp" alt="calming-serum-back"> </a> <div class="bk_prod_desc"> Moisturize <br> <span> Plump protector</span> </div> </li> <li class="glow-product-item"> <a href="https://www.kindlife.in/centella-hyalu-cica-silky-fit-sun-stick-20g-en/"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/kbw-2410-routine-milk-clear-filter-front1.webp" alt="calming-serum-front"> <img class="flip-img" src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/kbw-2410-routine-milk-clear-filter-back2.webp" alt="calming-serum-back"> </a> <div class="bk_prod_desc"> SPF <br> <span> Sun shield</span> </div> </li> </ul> </div>";} 0 13247 1 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en kbw Perfect winter routine for beginners
5543 3834 a:1:{s:7:"content";s:2597:"<style> span.spot_desc { display: inline-block; padding: 5px; border-radius: 5px; font-size: 16px; font-weight: 500; line-height: 20px; background: black; color: #fff; min-width: fit-content; margin: 0 auto; } ul.bk_grid_block.bk_1x5_grid { margin: 0px !important; } @media(max-width:600px) { span.spot_desc { padding: 3px; border-radius: 5px; font-size: 13px; font-weight: 500; } } </style> <div class="bk_block_heading"> <h2>THIS SEASON'S STAR BRANDS</h2> </div> <ul class="bk_grid_block bk_1x5_grid"> <li><a href="https://www.kindlife.in/cosrx/"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/Kbw-0411-spotlight-cosrx1.webp" alt="img" width="400" height="200" loading="lazy"></a> <div class="bk_prod_desc">Cosrx <br> <span class="spot_desc"> Up to 40% off </span> </div> </li> <li><a href="https://www.kindlife.in/klairs/"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/Kbw-0411-spotlight-klairs.webp" alt="img" width="400" height="200" loading="lazy"></a> <div class="bk_prod_desc">Klairs<br> <span class="spot_desc"> 30% off </span> </div> </li> <li><a href="https://www.kindlife.in/axis-y/"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/Kbw-0411-spotlight-axis-y.webp" alt="img" width="400" height="200" loading="lazy"></a> <div class="bk_prod_desc">Axis y<br> <span class="spot_desc"> Up to 36% off </span> </div> </li> <li><a href="https://www.kindlife.in/beauty-of-joseon/"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/Kbw-0411-spotlight-boj1.webp" alt="img" width="400" height="200" loading="lazy"></a> <div class="bk_prod_desc">Beauty of Joseon<br> <span class="spot_desc"> 15% off </span> </div> </li> <li><a href="https://www.kindlife.in/vt-cosmetics/"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/Kbw-0411-spotlight-vt.webp" alt="img" width="400" height="200" loading="lazy"></a> <div class="bk_prod_desc">VT Cosmetics<br> <span class="spot_desc"> 30% off </span> </div> </li> <li><a href="https://www.kindlife.in/skin-food/"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/Kbw-0411-spotlight-skinfood.webp" alt="img" width="400" height="200" loading="lazy"></a> <div class="bk_prod_desc">Skinfood<br> <span class="spot_desc"> Up to 30% off </span> </div> </li> </ul>";} 0 13248 1 D smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en kbw THIS SEASON'S STAR BRANDS
7159 3921 a:1:{s:7:"content";s:4073:"<style type="text/css"> .bk_ticker-block.steps-ticker-bg.bg1 { margin: 40px 0 10px; } @media (max-width: 767px) { .bk_ticker-block.steps-ticker-bg, .bk_ticker-block.album-ticker-bg { margin-top: 0px; } .bk_ticker-block.steps-ticker-bg.bg1 { background-color: #a072b7; margin: 20px 0 10px; } } </style> <div class="bk_ticker-block steps-ticker-bg bg1"> <div class="bk_homepage-ticker"> <div id="bk_homepage-ticker__content_1-0" class="bk_homepage-ticker__content"> <ul class="bk_homepage-ticker__list"> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step- 2 Toner </span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step- 2 Toner </span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step- 2 Toner </span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step- 2 Toner </span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step- 2 Toner </span> </li> </ul> <ul class="bk_homepage-ticker__list"> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step- 2 Toner </span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step- 2 Toner </span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step- 2 Toner </span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step- 2 Toner </span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper">Step- 2 Toner </span> </li> </ul> <ul class="bk_homepage-ticker__list"> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step- 2 Toner </span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper">Step- 2 Toner </span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step- 2 Toner </span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper">Step- 2 Toner </span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step- 2 Toner</span> </li> </ul> </div> </div> </div>";} 0 13399 1 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en ticker for fab4 routine
7501 4117 a:3:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:41:"69844,69843,69847,69848,69850,69852,69854";}s:10:"show_block";s:2:"AW";s:11:"enable_ajax";s:1:"N";} 0 13820 1 A products a:20:{s:8:"template";s:37:"blocks/products/products_scroller.tpl";s:10:"show_price";s:1:"Y";s:8:"hide_tag";s:1:"N";s:19:"hide_certifications";s:1:"N";s:17:"enable_quick_view";s:1:"N";s:11:"show_rating";s:1:"Y";s:15:"show_brand_name";s:1:"Y";s:17:"show_share_button";s:1:"Y";s:15:"show_short_desc";s:1:"N";s:24:"not_scroll_automatically";s:1:"Y";s:15:"scroll_per_page";s:1:"N";s:5:"speed";s:3:"400";s:11:"pause_delay";s:1:"3";s:13:"item_quantity";s:1:"5";s:15:"thumbnail_width";s:3:"200";s:18:"outside_navigation";s:1:"Y";s:10:"promo_text";s:1:"N";s:16:"key_product_info";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";s:10:"block_type";s:6:"slider";} 0 1 en Full moon - jumiso pids
7500 4169 a:3:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:29:"69809,69810,69811,69812,69381";}s:10:"show_block";s:2:"AW";s:11:"enable_ajax";s:1:"N";} 0 14083 bt_scroller_mobile biore hidden-tablet hidden-desktop 1 A products a:9:{s:8:"template";s:40:"blocks/products/products_links_thumb.tpl";s:10:"show_price";s:1:"Y";s:11:"show_rating";s:1:"Y";s:15:"show_brand_name";s:1:"Y";s:15:"thumbnail_width";s:3:"400";s:8:"hide_tag";s:1:"N";s:17:"show_share_button";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";s:10:"block_type";s:6:"slider";} 0 1 en H VT LIP PLUMPING ESSENTIALS mob pids
2180 4320 a:1:{s:7:"content";s:10576:"{* code for ask-me-anything kiki chatbot *} {assign var="vol" value=$config['css_fix_version']} {script src="js/lib/ca-assistant/ca-assistant.umd.js"} {style src="addons/my_changes/ca-assistant.css?k=$vol"} {style src="addons/my_changes/ca-assistant-kl.css?k=$vol"} <div class="bk__kiki-chatbot"> <div class="kiki-chatbot-preview"> <img src="https://cdn.kindlife.in/images/ui_icon/kiki-walk-and-sing.gif" alt="kiki-chatbot-preview" width="300" height="300" decoding="async"> <h3>One sec… Kiki is pulling things together &#129668;</h3> </div> <div id="askMeAnything-chatBot"></div> </div> <script> function chatbotSDKInitialize() { // var user_id = '{$auth.user_id}'; Tygh.$.ceAjax('request', fn_url('kl_account.user_details'), { // data:{ 'is_ajax': 1, 'ts': Date.now(), 'user_id': user_id}, data:{ 'is_ajax': 1, 'ts': Date.now()}, method: 'GET', callback: function(data){ // if(data.phone) { window.ChatbotSDK.initialize('askMeAnything-chatBot', { apiKey: '{$config.ca_kl_my_acc_help_chat_api_key}', apiEndpoint: '{$config.ca_kl_my_acc_help_chat_api_end_point}', apiEnv: '{$config.ca_kl_api_env}', idPrefix: 'kl_helpBot', boxSize: { width: '600px', height: '500px' }, responseCard: { columns: '2', titleFont: '18px', contentFont: '14px', }, position: 'bottom-right', logo: '{$config.cdn_image_host}/images/ui_icon/footer-option-askMe-icon2.png', botIcon: '{__("ca_kl_bizz_logo")}', chatIcon: '{__("ca_kl_bizz_chat_icon")}', headerInfoText: '{__("ca_kl_bizz_header_info_text")}', chatFontSize: '16px', chatFontFamily: 'Gill Sans', themeName: 'light', showWaitingMessages: true, waitingMessages: { initial: { time: 30, message: {__("ca_kl_bizz_init_wait_msg")}, }, mid: { time: 60, message: {__("ca_kl_bizz_mid_wait_msg")}, }, late: { time: 90, message: {__("ca_kl_bizz_late_wait_msg")}, }, }, customBanner: ` <div class="kiki-chat__message bot"> <div class="kiki-chat__bot-name">kiki.ai</div> <p class="kiki-chat__para"> Hey there! <span>&#128075;</span> I'm kiki.ai, your personal skincare assistant! I've analyzed your skin and I'm here to help with any questions about products, ingredients, routines, or anything skincare-related. What would you like to know? </p> </div> <h3 class="kiki-chat__quick-title">Quick questions:</h3> `, customPrompts: [ { label: 'Have query about my order?', value: 'Have query about my order?', action: 'submit', showCameraIcon: false, }, { label: 'Best products for my skin type', value: 'Best products for my skin type', action: 'submit', showCameraIcon: false, }, { label: 'Scan product and know about it?', value: 'Scan product and know about it?', action: 'submit', showCameraIcon: false, }, { label: 'Morning skincare routine tips', value: 'Morning skincare routine tips', action: 'submit', showCameraIcon: false, }, ], enableImageAnalysisFeature: 'true', showReloadButton: true, enableHistory: true, enableStreaming: true, wsUrl: '{$config.ca_kl_my_acc_help_chat_ws_url}', customPayload: { mobile_number: data.phone, client_identifier: "sdk_" + data.phone, name: data.name, email: data.email, user_identifier: data.user_id, session_id: data.session_id + 'kl_helpBot', }, }); // } else { // return; // } }, hidden : true }); } chatbotSDKInitialize(); </script> <script> // function to open askMeAnything chat popup setTimeout(() => { const interval = setInterval(() => { const askMeChatIcon = document.getElementById('kl_helpBot-ca-bot-icon'); if (askMeChatIcon) { clearInterval(interval); askMeChatIcon.click(); document.querySelector(".kiki-chatbot-preview").style.display="none"; } }, 200); }, 500); </script> <style> @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap'); @media (min-width: 480px) { #askMeAnything-chatBot { #ca-chat-box-container { position: relative !important; inset: unset; margin: 20px auto 0; min-width: 700px; } } } .kiki-chatbot-preview { max-width: 300px; height: 500px; display: flex; flex-flow: column; text-align: center; align-items: center; justify-content: center; margin: 0 auto; } .kiki-chatbot-preview h3 { font-family: "Cormorant Garamond", serif; font-size: 20px; } .kiki-chatbot-preview img { width: 200px; } #askMeAnything-chatBot { #kl_helpBot-ca-bot-icon { display: none; } /* :has(#ca-chat-box-container) { background: none } */ #ca-header { background: #02A2B0; box-shadow: 0px 4px 4px 0px #00000040; border: 0; } .ca-header-info-text { color: #FAFAFA; } .reload-btn img, .ca-close-btn svg { display: none; } .reload-btn , .ca-close-btn { width: 34px; height: 34px; background: url(https://cdn.kindlife.in/images/ui_icon/askMe-reload-icon.svg) no-repeat center / cover; background-size: 60%; border-radius: 50%; } .ca-close-btn { display: none; margin-left: 6px; background-image: url(https://cdn.kindlife.in/images/ui_icon/askMe-cross-icon.svg); } #ca-chat-box-container { background: #F5F1ED !important; z-index: 10; } #ca-chat-content-area { margin: 0; background: #F5F1ED; } #ca-footer { background: #fff; } .kiki-chat__message { background: #FAFAFA; padding: 14px; border-radius: 14px; width: 90%; max-width: 400px; margin: 1rem 1rem 10px; border: 1px solid #E5E7EB; } .kiki-chat__bot-name { font-size: 14px; line-height: 2; color: #2DBBA9; margin-bottom: 4px; font-weight: 500; display: flex; align-items: end; gap: 6px; } .kiki-chat__bot-name:before { content: url('https://cdn.kindlife.in/images/ui_icon/bk-sparkle-green-icon.svg'); line-height: 22px; } .kiki-chat__message p { font-size: 14px; line-height: 1.5; color: #101828; padding: 0; } h3.kiki-chat__quick-title { display: inline-block; font-size: 14px; margin: 0.5rem 1rem 0; font-weight: 500; color: #4A5565; } #ca-prompt-content { padding: 0; margin: 0.5rem 1rem 1rem; } #ca-prompt-content button { background: #fff; border: 1px solid #C7C3BE; border-radius: 16px; color: #4E4B58; font-weight: 500; justify-content: left; padding: 10px 14px; font-size: 14px; gap: 10px; } #ca-prompt-content button:hover { background: #22d1c1b3; color: #000; } #ca-prompt-btn:before { content: ""; display: inline-block; flex: 0 0 auto; width: 20px; height: 20px; background-image: url(https://cdn.kindlife.in/images/ui_icon/bk-sparkle-dark-icon.svg); background-size: contain; background-repeat: no-repeat; } #ca-prompt-btn:nth-child(2):before { background-image: url(https://cdn.kindlife.in/images/ui_icon/bk-skin-type-icon.svg); } #ca-prompt-btn:nth-child(3):before { background-image: url(https://cdn.kindlife.in/images/ui_icon/bk-ingredient-scan-icon.png); } #ca-prompt-btn:nth-child(4):before { background-image: url(https://cdn.kindlife.in/images/ui_icon/bk-heart-dark-icon.svg); } .ca-input-wrapper { background: #fff !important; border: 1px solid #D5D3D9; box-shadow: 0px 4px 6px -4px #DAB2FF66; } .ca-receiver > div, .ca-sender > div { background: #FAFAFA !important; border: 1px solid #E9D4FF; } #ca-multi-block-header > div:nth-child(1) { font-size: 16px; margin: 0; font-weight: 600; } #ca-multi-block-message { gap: 1rem; } #ca-multi-block-product div:nth-child(2) > div:nth-child(1) { color: #6A7282; font-size: 14px; font-weight: 500; } #ca-multi-block-product div:nth-child(2) > div:nth-child(2) { color: #101828; font-size: 14px; font-weight: 500; margin: 0; } #ca-multi-block-product div:nth-child(2) > div:nth-child(3) div:nth-child(1) { color: #101828; font-size: 14px; font-weight: 600; } #ca-multi-block-product div:nth-child(2) > div:nth-child(3) div:nth-child(2) { color: #6A7282; font-size: 14px; font-weight: 500; } #ca-multi-block-product div:nth-child(2) > div:nth-child(3) div:nth-child(3) { color: #19A447; background: transparent; padding: 0; margin: 0; font-size: 14px; font-weight: 500; } #ca-multi-block-product div:nth-child(2) > button { font-weight: 600; } .product-wrapper-ul { padding: 0; margin: 5px 0 5px 20px; } strong { font-weight: 600; } } @media (max-width: 767px) { #askMeAnything-chatBot { #ca-chat-box-container { min-width: 90%; min-height: 550px; } } .tygh-footer { display: none; } } @media (max-width: 480px) { #askMeAnything-chatBot { #ca-chat-box-container { height: calc(100% - 50px) !important; top: auto; } } } </style>";} 0 14218 1 D smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en kiki chat - testing block
2189 7 0 3306 hidden-phone 2 A template a:1:{s:8:"template";s:62:"addons/ca_search_widget/blocks/static_templates/search_bar.tpl";} 0 1 en Search
2169 13 a:1:{s:7:"content";s:627:"<div class="ty-social-link-block"><h3 class="ty-social-link__title">{__("get_social")}</h3> <div class="ty-social-link facebook"> <a href="http://www.facebook.com"><i class="ty-icon-facebook"></i>Facebook</a> </div> <div class="ty-social-link instagram"> <a href="https://www.instagram.com"><i class="ty-icon-instagram"></i>Instagram</a> </div> <div class="ty-social-link twitter"> <a href="https://twitter.com"><i class="ty-icon-twitter"></i>Twitter</a> </div> <div class="ty-social-link youtube"> <a href="https://www.youtube.com/user/cscartvideos"><i class="ty-icon-youtube"></i>Youtube</a> </div></div> ";} 0 3287 2 A smarty_block a:1:{s:8:"template";s:23:"blocks/smarty_block.tpl";} 0 1 en Social links
2173 17 a:1:{s:7:"content";s:1073:"<ul id="about_cs_cart_links"> <li class="ty-footer-menu__item"><a href="/riseofkoreanbeautyinindia">Insights</a></li> <li class="ty-footer-menu__item"><a href="/kinder">kinders</a></li> <li class="ty-footer-menu__item"><a href="/kindcrew">kind crew</a></li> <li class="ty-footer-menu__item"><a href="/kind-circle">kind circle</a></li> <li class="ty-footer-menu__item"><a href="https://www.kindlife.in/community">Community</a></li> <li class="ty-footer-menu__item"><a href="/customer-love">Customer love</a></li> <li class="ty-footer-menu__item"><a href="/superkind-club">Superkind club</a></li> <li class="ty-footer-menu__item"><a href="/blog/">Blog</a></li> <!-- <li class="ty-footer-menu__item"><a href="/kindcode">kindcode</a></li> --> <!-- <li class="ty-footer-menu__item"><a href="/perfectmatch">Perfect Match</a></li> --> <!-- <li class="ty-footer-menu__item"><a href="/just-launched">Just Launched</a></li> --> <!-- <li class="ty-footer-menu__item"><a href="/how-we-curate">How we curate</a></li> --> </ul> ";} 0 3291 blocks/wrappers/sidebox_important.tpl footer-no-wysiwyg 2 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en About us
2179 19 0 3297 2 A template a:1:{s:8:"template";s:41:"blocks/static_templates/payment_icons.tpl";} 0 1 en Payment icons
2194 64 0 3319 top-languages 2 D languages a:4:{s:8:"template";s:20:"blocks/languages.tpl";s:4:"text";s:0:"";s:6:"format";s:4:"name";s:14:"dropdown_limit";s:1:"0";} 0 1 en Languages
2168 66 0 3286 2 D template a:1:{s:8:"template";s:56:"addons/newsletters/blocks/static_templates/subscribe.tpl";} 0 1 en Subscribe
2180 221 a:1:{s:7:"content";s:33225:"<style type="text/css"> .bk_footer__accountWrap img { width: 30px; aspect-ratio: 1; object-fit: cover; border-radius: 50%; } .bk_footer_tab_list_new { position: fixed; bottom: 0; left: 0; right: 0; z-index: 100; } .bk_footer_tab_list_new > ul { list-style: none; margin: 0; display: flex; justify-content: space-around; align-items: end; position: relative; } .bk_footer_tab_list_new > ul > li { flex: 1; padding: 0; background-color: #fff; } .bk_footer_tab_list_new > ul > li.bk_footer_navMid { background-image: radial-gradient(circle at 50% 7%, transparent 28px, #fff 0); background-color: transparent; flex: 0 0 auto; width: 56px; } .bk_footer_nav2 { border-top-right-radius: 10px; } .bk_footer_nav4 { border-top-left-radius: 10px; } .bk_footer_tab_list_new > ul > li > a { padding: 6px 0 4px; text-align: center; font-size: 11px; color: #8F8F8F; display: flex; flex-flow: column; justify-content: end; height: 56px; } .bk_footer_tab_list_new > ul li.bk_footer_plusBtn { position: absolute; text-align: center; aspect-ratio: 1; border-radius: 50px; transform: translateY(-60%); width: 46px; z-index: 1; } .bk_footer_tab_list_new ul li.bk_footer_plusBtn span { background: #2dbaa8; display: flex; align-items: center; justify-content: center; aspect-ratio: 1; border-radius: 50px; cursor: pointer; transition: 0.2s; position: relative; } .bk_footer_tab_list_new > ul li.bk_footer_plusBtn.open span { background: #5E2ECF; transform: rotate(45deg); } .bk_footer_tab_list_new .bk_footer_plusBtn span:before, .bk_footer_tab_list_new .bk_footer_plusBtn span:after { content: ''; width: 3px; height: 55%; background: #fff; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); } .bk_footer_tab_list_new .bk_footer_plusBtn span:after { width: 55%; height: 3px; background: #fff; } .bk_footer_tab_list_new ul li.active a { color: #2DBAA8; } .bk_footer_tab_list_new li .bk_foot_activeImg, .bk_footer_tab_list_new li.active .bk_foot_nonActiveImg { display: none } .bk_footer_tab_list_new li .bk_foot_nonActiveImg, .bk_footer_tab_list_new li.active .bk_foot_activeImg { display: flex; } .bk_footer_tab_list_new .bk-icon-footer { display: block; margin: auto; opacity: 0.5; } .bk_footer_tab_list_new li.active .bk_foot_activeImg { opacity: 1; } .bk_footer_tab_list_new .bk-icon-footer svg { height: 28px; max-width: none } .bk_footer_tab_option_wrap { position: absolute; bottom: 0; left: 0; right: 0; background: #0009; padding: 15px 0 75px; overflow: hidden; height: 100vh; display: flex; flex-flow: column; justify-content: end; } .bk_footer_tab_option_wrap ul.bk_footer_tab_option_list { text-align: center; transform-origin: bottom; list-style: none; margin: 0; transform: rotate(-60deg) translateY(100%); transition: 0.3s; } .bk_footer_tab_option_wrap.show ul { transform: none; } li.option_tab_item1 { padding-left: 12%; } li.option_tab_item2 { padding-left: 10%; } li.option_tab_item3 { padding-left: 5%; } li.option_tab_item4 { padding-left: 10%; } ul.bk_footer_tab_option_list li a { padding: 4px 0; font-size: 13px; font-weight: 500; display: inline-flex; align-items: center; } ul.bk_footer_tab_option_list li span { background: #2dbaa8; border-radius: 50px; width: 36px; aspect-ratio: 1; line-height: 36px; margin-right: 10px; display: inline-flex; align-items: center; justify-content: center; } ul.bk_footer_tab_option_list li p { display: inline-block; padding: 0; opacity: 0; transition: 0.5s; transform: translateX(20px); font-size: 13px; font-weight: 500; } .bk_footer_tab_option_wrap.show ul p { opacity: 1; transform: unset; color: #fff; } .bk-ing-aiscan-container #ca-bot-icon { display: none; } </style> <div class="bk_footer_tab_list_new"> <ul> <li {if $runtime.controller == 'index' && $runtime.mode == 'index'} class="active" {/if} ><a href=""> <span class="bk-icon-footer bk_foot_activeImg"> <img src="https://cdn.kindlife.in/images/lotti-icons/footer-kiki-active.svg" alt="kiki-logo"> </span> <span class="bk-icon-footer bk_foot_nonActiveImg"> <img src="https://cdn.kindlife.in/images/lotti-icons/footer-kiki-nonActive.svg" alt="kiki-logo"> </span>For You </a> </li> <li class="bk_footer_nav2 {if ($runtime.controller== 'kindsale' && $runtime.mode == 'beautytalk')}active{/if}"><a href="live-sessions"> <span class="bk-icon-footer bk_foot_activeImg"> <svg xmlns="http://www.w3.org/2000/svg" width="23.485" height="23.288" viewBox="0 0 23.485 23.288"> <g id="klcommunity1a" transform="translate(-139.5 -565)"> <g id="Group_5315" data-name="Group 5315" transform="translate(8 -1)"> <g id="Group_4502" data-name="Group 4502" transform="translate(132.904 567.365)"> <g id="Group_5317" data-name="Group 5317" transform="translate(0 1)"> <path id="Subtraction_26" data-name="Subtraction 26" d="M13.188,20.557h0a3,3,0,1,0-5.963-.476,3.92,3.92,0,0,0,.027.413,10.8,10.8,0,0,1-4.551-2.7A10.629,10.629,0,0,1,0,13.259a3.055,3.055,0,0,0,.395.025,3,3,0,0,0,0-6.006A3.1,3.1,0,0,0,0,7.3,10.651,10.651,0,0,1,2.7,2.771,10.792,10.792,0,0,1,7.256.064a3.064,3.064,0,0,0-.031.419,3,3,0,1,0,6,0A3.288,3.288,0,0,0,13.188,0a10.793,10.793,0,0,1,4.7,2.689A10.627,10.627,0,0,1,20.676,7.3a3,3,0,0,0,0,5.958,10.659,10.659,0,0,1-2.783,4.609,10.8,10.8,0,0,1-4.7,2.687Z" transform="translate(0 0)" fill="#c2ede8"/> </g> <g id="Group_4337" data-name="Group 4337"> <g id="Subtraction_26-2" data-name="Subtraction 26" transform="translate(0 0)" fill="none"> <path d="M13.188,20.557h0a3,3,0,1,0-5.963-.476,3.92,3.92,0,0,0,.027.413,10.8,10.8,0,0,1-4.551-2.7A10.629,10.629,0,0,1,0,13.259a3.055,3.055,0,0,0,.395.025,3,3,0,0,0,0-6.006A3.1,3.1,0,0,0,0,7.3,10.651,10.651,0,0,1,2.7,2.771,10.792,10.792,0,0,1,7.256.064a3.064,3.064,0,0,0-.031.419,3,3,0,1,0,6,0A3.288,3.288,0,0,0,13.188,0a10.793,10.793,0,0,1,4.7,2.689A10.627,10.627,0,0,1,20.676,7.3a3,3,0,0,0,0,5.958,10.659,10.659,0,0,1-2.783,4.609,10.8,10.8,0,0,1-4.7,2.687Z" stroke="none"/> <path d="M 14.12485408782959 19.18101501464844 C 15.26116180419922 18.70671272277832 16.30566024780273 18.01838874816895 17.1923942565918 17.15375518798828 C 18.13859939575195 16.23085975646973 18.88479042053223 15.12604522705078 19.38310241699219 13.91861438751221 C 17.99908638000488 13.27910423278809 17.05468368530273 11.87442016601562 17.05468368530273 10.27880477905273 C 17.05468368530273 8.684712409973145 18.0000114440918 7.281652927398682 19.38534355163574 6.64335298538208 C 18.88636779785156 5.431734085083008 18.13955879211426 4.325932025909424 17.19210433959961 3.40455436706543 C 16.30628776550293 2.539858341217041 15.26239109039307 1.851429343223572 14.12603855133057 1.376815438270569 C 13.7191801071167 3.154345512390137 12.12524127960205 4.484374523162842 10.22656440734863 4.484374523162842 C 8.357674598693848 4.484374523162842 6.783840656280518 3.196819067001343 6.345812320709229 1.46248471736908 C 5.252406597137451 1.947750210762024 4.250875473022461 2.632092714309692 3.403004169464111 3.478974342346191 C 2.556026935577393 4.322686195373535 1.873263835906982 5.318141937255859 1.391546726226807 6.403483867645264 C 3.118343353271484 6.846869945526123 4.398434162139893 8.416254997253418 4.398434162139893 10.27880477905273 C 4.398434162139893 12.14291763305664 3.119745016098022 13.71373748779297 1.394274473190308 14.15863513946533 C 1.87410044670105 15.23866748809814 2.557404756546021 16.23321533203125 3.407593965530396 17.08078384399414 C 4.255331993103027 17.92688179016113 5.255912303924561 18.61087226867676 6.347017765045166 19.09574127197266 C 6.786629199981689 17.36367988586426 8.35929012298584 16.07861518859863 10.22656440734863 16.07861518859863 C 12.12335681915283 16.07861518859863 13.71604633331299 17.40613746643066 14.12485408782959 19.18101501464844 M 13.18750381469727 20.55712509155273 L 13.18750381469727 20.5556640625 C 13.21484375 20.38525390625 13.22656440734863 20.22949409484863 13.22656440734863 20.07959365844727 C 13.22656440734863 18.4248046875 11.88281440734863 17.07861518859863 10.22656440734863 17.07861518859863 C 8.570314407348633 17.07861518859863 7.224614143371582 18.4248046875 7.224614143371582 20.07959365844727 C 7.224614143371582 20.19726371765137 7.234374046325684 20.32861518859863 7.251954078674316 20.49267387390137 C 5.537114143371582 19.98535537719727 3.964843988418579 19.0498046875 2.701174020767212 17.78857421875 C 1.433594107627869 16.52490425109863 0.4980440735816956 14.95849418640137 0.001954062609001994 13.25927448272705 C 0.1308640688657761 13.27587413787842 0.2597640752792358 13.28466415405273 0.3964840769767761 13.28466415405273 C 2.050784111022949 13.28466415405273 3.398434162139893 11.93652439117432 3.398434162139893 10.27880477905273 C 3.398434162139893 8.624514579772949 2.050784111022949 7.278324604034424 0.3964840769767761 7.278324604034424 C 0.2636740505695343 7.278324604034424 0.1289040595293045 7.28711462020874 -0.001955937594175339 7.304194450378418 C 0.4980440735816956 5.600584506988525 1.429684042930603 4.033204555511475 2.697263956069946 2.770504474639893 C 3.962893962860107 1.506344437599182 5.539063930511475 0.5712844729423523 7.255864143371582 0.06445445120334625 C 7.236323833465576 0.2050744593143463 7.224614143371582 0.3461944460868835 7.224614143371582 0.4833944439888 C 7.224614143371582 2.138184547424316 8.570314407348633 3.484374523162842 10.22656440734863 3.484374523162842 C 11.88281440734863 3.484374523162842 13.22656440734863 2.138184547424316 13.22656440734863 0.4833944439888 C 13.22656440734863 0.3320344388484955 13.21289443969727 0.1694344580173492 13.18750381469727 4.453124802239472e-06 C 14.95507431030273 0.4794944524765015 16.58007431030273 1.409664511680603 17.890625 2.688964366912842 C 19.203125 3.965334415435791 20.16406440734863 5.560544490814209 20.67578315734863 7.302244663238525 C 19.18164443969727 7.491694450378418 18.05468368530273 8.770503997802734 18.05468368530273 10.27880477905273 C 18.05468368530273 11.78857421875 19.18164443969727 13.07080459594727 20.67382431030273 13.26074409484863 C 20.16211318969727 15.00000476837158 19.1992244720459 16.59326362609863 17.890625 17.86962509155273 C 16.578125 19.1494140625 14.95312404632568 20.078125 13.18945407867432 20.55664443969727 L 13.18750381469727 20.55712509155273 Z" stroke="none" fill="#11a895"/> </g> </g> </g> <circle id="Ellipse_636" data-name="Ellipse 636" cx="1.365" cy="1.365" r="1.365" transform="translate(141.877 566)" fill="#11a895"/> <circle id="Ellipse_637" data-name="Ellipse 637" cx="1.365" cy="1.365" r="1.365" transform="translate(141.877 586.557)" fill="#11a895"/> <circle id="Ellipse_638" data-name="Ellipse 638" cx="1.365" cy="1.365" r="1.365" transform="translate(154.985 576.279) rotate(90)" fill="#11a895"/> <circle id="Ellipse_639" data-name="Ellipse 639" cx="1.365" cy="1.365" r="1.365" transform="translate(134.231 576.279) rotate(90)" fill="#11a895"/> </g> </g> </svg> </span> <span class="bk-icon-footer bk_foot_nonActiveImg"> <svg xmlns="http://www.w3.org/2000/svg" width="23.485" height="23.288" viewBox="0 0 23.485 23.288"> <g id="klcommunity1" transform="translate(-131.5 -566)"> <g id="Group_4502" data-name="Group 4502" transform="translate(132.904 567.365)"> <g id="Group_4337" data-name="Group 4337"> <g id="Subtraction_26" data-name="Subtraction 26" transform="translate(0 0)" fill="none"> <path d="M13.188,20.557h0a3,3,0,1,0-5.963-.476,3.92,3.92,0,0,0,.027.413,10.8,10.8,0,0,1-4.551-2.7A10.629,10.629,0,0,1,0,13.259a3.055,3.055,0,0,0,.395.025,3,3,0,0,0,0-6.006A3.1,3.1,0,0,0,0,7.3,10.651,10.651,0,0,1,2.7,2.771,10.792,10.792,0,0,1,7.256.064a3.064,3.064,0,0,0-.031.419,3,3,0,1,0,6,0A3.288,3.288,0,0,0,13.188,0a10.793,10.793,0,0,1,4.7,2.689A10.627,10.627,0,0,1,20.676,7.3a3,3,0,0,0,0,5.958,10.659,10.659,0,0,1-2.783,4.609,10.8,10.8,0,0,1-4.7,2.687Z" stroke="none"/> <path d="M 14.12485408782959 19.18101501464844 C 15.26116180419922 18.70671272277832 16.30566024780273 18.01838874816895 17.1923942565918 17.15375518798828 C 18.13859939575195 16.23085975646973 18.88479042053223 15.12604522705078 19.38310241699219 13.91861438751221 C 17.99908638000488 13.27910423278809 17.05468368530273 11.87442016601562 17.05468368530273 10.27880477905273 C 17.05468368530273 8.684712409973145 18.0000114440918 7.281652927398682 19.38534355163574 6.64335298538208 C 18.88636779785156 5.431734085083008 18.13955879211426 4.325932025909424 17.19210433959961 3.40455436706543 C 16.30628776550293 2.539858341217041 15.26239109039307 1.851429343223572 14.12603855133057 1.376815438270569 C 13.7191801071167 3.154345512390137 12.12524127960205 4.484374523162842 10.22656440734863 4.484374523162842 C 8.357674598693848 4.484374523162842 6.783840656280518 3.196819067001343 6.345812320709229 1.46248471736908 C 5.252406597137451 1.947750210762024 4.250875473022461 2.632092714309692 3.403004169464111 3.478974342346191 C 2.556026935577393 4.322686195373535 1.873263835906982 5.318141937255859 1.391546726226807 6.403483867645264 C 3.118343353271484 6.846869945526123 4.398434162139893 8.416254997253418 4.398434162139893 10.27880477905273 C 4.398434162139893 12.14291763305664 3.119745016098022 13.71373748779297 1.394274473190308 14.15863513946533 C 1.87410044670105 15.23866748809814 2.557404756546021 16.23321533203125 3.407593965530396 17.08078384399414 C 4.255331993103027 17.92688179016113 5.255912303924561 18.61087226867676 6.347017765045166 19.09574127197266 C 6.786629199981689 17.36367988586426 8.35929012298584 16.07861518859863 10.22656440734863 16.07861518859863 C 12.12335681915283 16.07861518859863 13.71604633331299 17.40613746643066 14.12485408782959 19.18101501464844 M 13.18750381469727 20.55712509155273 L 13.18750381469727 20.5556640625 C 13.21484375 20.38525390625 13.22656440734863 20.22949409484863 13.22656440734863 20.07959365844727 C 13.22656440734863 18.4248046875 11.88281440734863 17.07861518859863 10.22656440734863 17.07861518859863 C 8.570314407348633 17.07861518859863 7.224614143371582 18.4248046875 7.224614143371582 20.07959365844727 C 7.224614143371582 20.19726371765137 7.234374046325684 20.32861518859863 7.251954078674316 20.49267387390137 C 5.537114143371582 19.98535537719727 3.964843988418579 19.0498046875 2.701174020767212 17.78857421875 C 1.433594107627869 16.52490425109863 0.4980440735816956 14.95849418640137 0.001954062609001994 13.25927448272705 C 0.1308640688657761 13.27587413787842 0.2597640752792358 13.28466415405273 0.3964840769767761 13.28466415405273 C 2.050784111022949 13.28466415405273 3.398434162139893 11.93652439117432 3.398434162139893 10.27880477905273 C 3.398434162139893 8.624514579772949 2.050784111022949 7.278324604034424 0.3964840769767761 7.278324604034424 C 0.2636740505695343 7.278324604034424 0.1289040595293045 7.28711462020874 -0.001955937594175339 7.304194450378418 C 0.4980440735816956 5.600584506988525 1.429684042930603 4.033204555511475 2.697263956069946 2.770504474639893 C 3.962893962860107 1.506344437599182 5.539063930511475 0.5712844729423523 7.255864143371582 0.06445445120334625 C 7.236323833465576 0.2050744593143463 7.224614143371582 0.3461944460868835 7.224614143371582 0.4833944439888 C 7.224614143371582 2.138184547424316 8.570314407348633 3.484374523162842 10.22656440734863 3.484374523162842 C 11.88281440734863 3.484374523162842 13.22656440734863 2.138184547424316 13.22656440734863 0.4833944439888 C 13.22656440734863 0.3320344388484955 13.21289443969727 0.1694344580173492 13.18750381469727 4.453124802239472e-06 C 14.95507431030273 0.4794944524765015 16.58007431030273 1.409664511680603 17.890625 2.688964366912842 C 19.203125 3.965334415435791 20.16406440734863 5.560544490814209 20.67578315734863 7.302244663238525 C 19.18164443969727 7.491694450378418 18.05468368530273 8.770503997802734 18.05468368530273 10.27880477905273 C 18.05468368530273 11.78857421875 19.18164443969727 13.07080459594727 20.67382431030273 13.26074409484863 C 20.16211318969727 15.00000476837158 19.1992244720459 16.59326362609863 17.890625 17.86962509155273 C 16.578125 19.1494140625 14.95312404632568 20.078125 13.18945407867432 20.55664443969727 L 13.18750381469727 20.55712509155273 Z" stroke="none" fill="#333"/> </g> </g> </g> <circle id="Ellipse_636" data-name="Ellipse 636" cx="1.365" cy="1.365" r="1.365" transform="translate(141.877 566)" fill="#333"/> <circle id="Ellipse_637" data-name="Ellipse 637" cx="1.365" cy="1.365" r="1.365" transform="translate(141.877 586.557)" fill="#333"/> <circle id="Ellipse_638" data-name="Ellipse 638" cx="1.365" cy="1.365" r="1.365" transform="translate(154.985 576.279) rotate(90)" fill="#333"/> <circle id="Ellipse_639" data-name="Ellipse 639" cx="1.365" cy="1.365" r="1.365" transform="translate(134.231 576.279) rotate(90)" fill="#333"/> </g> </svg> </span> Live </a> </li> <li class="bk_footer_navMid" {if ($runtime.controller== 'kl_qna' && $runtime.mode == 'kl_qna')} class="active" {/if} ><a href="https://www.kindlife.in/ask-me-anything"> <span class="bk-icon-footer" style="display: none;"> <svg xmlns="http://www.w3.org/2000/svg" width="27.91" height="24.41" viewBox="0 0 27.91 24.41"> <g id="WeChat" transform="translate(0 -3)"> <path id="Path_25434" data-name="Path 25434" d="M11.775,21.484c4.666-.567,8.286-4.012,8.286-8.2C20.06,8.707,15.787,5,10.466,5a10.542,10.542,0,0,0-4.274.872l-.349-.785A9.081,9.081,0,0,0,0,13.286,8.634,8.634,0,0,0,2.573,19.3l-.785,2.922a.9.9,0,0,0,.305.916.784.784,0,0,0,.959.044l2.835-1.657a11.449,11.449,0,0,0,4.579.916c.48,0,.959-.044,1.4-.087Z" transform="translate(0 -1.128)" fill="#19a895"/> <path id="Path_25435" data-name="Path 25435" d="M15.775,13.105A1.308,1.308,0,1,0,14.466,11.8,1.285,1.285,0,0,0,15.775,13.105Zm-6.105,0A1.308,1.308,0,1,0,8.361,11.8,1.285,1.285,0,0,0,9.669,13.105Zm3.053,6.105c4.8,0,8.722-.7,8.722-4.8S17.519,7,12.722,7,4,10.314,4,14.414,7.925,19.211,12.722,19.211Z" transform="translate(-2.256 -2.256)" fill="#c2ede8" fill-rule="evenodd"/> <path id="Path_25436" data-name="Path 25436" d="M40.515,28.793h.872a7.427,7.427,0,0,1-2.4,5.408l.611,2.224a.827.827,0,0,1-.349.916.851.851,0,0,1-1,0l-2.093-1.4a9.423,9.423,0,0,1-3.532.654c-4.71,0-8.722-3.4-8.722-7.85s4.012-7.85,8.722-7.85a7.066,7.066,0,0,1,.959.044l-.087.872A8.18,8.18,0,0,1,40.515,28.793Z" transform="translate(-13.477 -10.094)" fill="#e0c3f6"/> <path id="Path_25437" data-name="Path 25437" d="M41.955,31.105c0,3.358-3.14,4.361-6.978,4.361S28,34.463,28,31.105,31.14,25,34.978,25,41.955,27.747,41.955,31.105Z" transform="translate(-15.789 -12.406)" fill="#fff"/> <path id="Path_25438" data-name="Path 25438" d="M17.12,4.744a9.679,9.679,0,0,0-4.535,1.09L11.8,4.265A11.959,11.959,0,0,1,17.12,3c5.233,0,9.725,3.4,10.379,7.981,3.968.7,7.065,3.838,7.065,7.719a7.427,7.427,0,0,1-2.4,5.408L31.642,22.1a5.641,5.641,0,0,0,1.177-3.4c0-3.053-2.617-5.713-6.193-6.062l-.741-.087-.044-.741C25.624,7.971,21.917,4.744,17.12,4.744Zm6.105,12.211a.872.872,0,1,0-.872-.872A.875.875,0,0,0,23.226,16.955Zm5.233,0a.872.872,0,1,0-.872-.872A.875.875,0,0,0,28.459,16.955Z" transform="translate(-6.654)" fill="#314a52"/> <g id="Group_14940" data-name="Group 14940" transform="translate(4.68 7.604)"> <path id="Path_2169" data-name="Path 2169" d="M298.337,438.27a1.878,1.878,0,0,0,2.624.642,1.994,1.994,0,0,0,.7-2.707,2.179,2.179,0,0,0-2.9-.542A1.806,1.806,0,0,0,298.337,438.27Z" transform="translate(-297.032 -435.033)" fill="#262626"/> <ellipse id="Ellipse_340" data-name="Ellipse 340" cx="1.52" cy="0.551" rx="1.52" ry="0.551" transform="matrix(0.834, -0.552, 0.552, 0.834, 0, 1.679)" fill="#262626"/> <path id="Path_2170" data-name="Path 2170" d="M308.994,440a.525.525,0,0,0,.735.144.491.491,0,0,0,.147-.7.582.582,0,0,0-.778-.163A.5.5,0,0,0,308.994,440Z" transform="translate(-306.136 -438.257)" fill="#8cddc6"/> </g> <g id="Group_14941" data-name="Group 14941" transform="translate(11.6 7.605)"> <path id="Path_2169-2" data-name="Path 2169" d="M301.584,438.27a1.878,1.878,0,0,1-2.624.642,1.994,1.994,0,0,1-.7-2.707,2.179,2.179,0,0,1,2.9-.542A1.806,1.806,0,0,1,301.584,438.27Z" transform="translate(-297.96 -435.034)" fill="#262626"/> <ellipse id="Ellipse_340-2" data-name="Ellipse 340" cx="1.52" cy="0.551" rx="1.52" ry="0.551" transform="matrix(-0.834, -0.552, 0.552, -0.834, 4.32, 2.597)" fill="#262626"/> <path id="Path_2170-2" data-name="Path 2170" d="M309.862,440a.525.525,0,0,1-.735.144.491.491,0,0,1-.147-.7.582.582,0,0,1,.778-.163A.5.5,0,0,1,309.862,440Z" transform="translate(-307.791 -438.258)" fill="#8cddc6"/> </g> </g> </svg> </span> Kiki.Ai </a> </li> <li class="bk_footer_nav4 {if ($runtime.controller== 'community' && $runtime.mode == 'video')}active{/if}"><a href="/community"> <span class="bk-icon-footer bk_foot_activeImg"> <svg xmlns="http://www.w3.org/2000/svg" width="22.304" height="24.247" viewBox="0 0 22.304 24.247"> <g id="klwatch1a" transform="translate(-238.5 -564)"> <g id="Group_4500" data-name="Group 4500" transform="translate(239 564)"> <rect id="Rectangle_2408" data-name="Rectangle 2408" width="15.728" height="23.156" rx="3" transform="translate(3.787 1.091)" fill="#c2ede8"/> <g id="Rectangle_2269" data-name="Rectangle 2269" transform="translate(2.788)" fill="none" stroke="#11a895" stroke-width="1"> <rect width="15.728" height="23.156" rx="3" stroke="none"/> <rect x="0.5" y="0.5" width="14.728" height="22.156" rx="2.5" fill="none"/> </g> <path id="Polygon_43" data-name="Polygon 43" d="M2.68,2.279a1.5,1.5,0,0,1,2.6,0l1.4,2.446a1.5,1.5,0,0,1-1.3,2.244H2.585a1.5,1.5,0,0,1-1.3-2.244Z" transform="translate(16.143 8.596) rotate(90)" fill="#fff"/> <g id="Polygon_42" data-name="Polygon 42" transform="translate(15.142 7.596) rotate(90)" fill="none"> <path d="M2.68,2.279a1.5,1.5,0,0,1,2.6,0l1.4,2.446a1.5,1.5,0,0,1-1.3,2.244H2.585a1.5,1.5,0,0,1-1.3-2.244Z" stroke="none"/> <path d="M 3.982226371765137 2.523345947265625 C 3.894986152648926 2.523345947265625 3.678046226501465 2.547895908355713 3.54810619354248 2.775275707244873 L 2.150646209716797 5.220826148986816 C 2.021716594696045 5.446465492248535 2.108866214752197 5.644986152648926 2.152316570281982 5.719865798950195 C 2.195766448974609 5.794735908508301 2.324896335601807 5.96889591217041 2.584766387939453 5.96889591217041 L 5.37968635559082 5.96889591217041 C 5.639556407928467 5.96889591217041 5.768686294555664 5.794735908508301 5.812136650085449 5.719865798950195 C 5.855586051940918 5.644986152648926 5.942736625671387 5.446465492248535 5.813806533813477 5.220826148986816 L 4.416346549987793 2.775275707244873 C 4.286406517028809 2.547895908355713 4.069466590881348 2.523345947265625 3.982226371765137 2.523345947265625 M 3.982226371765137 1.523345947265625 C 4.489446640014648 1.523345947265625 4.996666431427002 1.775275707244873 5.284586429595947 2.279135704040527 L 6.682046413421631 4.724685668945312 C 7.253466606140137 5.724676132202148 6.531416416168213 6.96889591217041 5.37968635559082 6.96889591217041 L 2.584766387939453 6.96889591217041 C 1.433036327362061 6.96889591217041 0.7109861373901367 5.724676132202148 1.282406330108643 4.724685668945312 L 2.679866313934326 2.279135704040527 C 2.967786312103271 1.775275707244873 3.475006580352783 1.523345947265625 3.982226371765137 1.523345947265625 Z" stroke="none" fill="#11a895"/> </g> <line id="Line_761" data-name="Line 761" y2="11.15" transform="translate(21.304 7.094)" fill="none" stroke="#11a895" stroke-linecap="round" stroke-width="1"/> <line id="Line_762" data-name="Line 762" y2="11.15" transform="translate(0 7.094)" fill="none" stroke="#11a895" stroke-linecap="round" stroke-width="1"/> </g> </g> </svg> </span> <span class="bk-icon-footer bk_foot_nonActiveImg"> <svg xmlns="http://www.w3.org/2000/svg" width="22.304" height="23.156" viewBox="0 0 22.304 23.156"> <g id="klwatch1" transform="translate(-238.5 -479)"> <g id="Group_4500" data-name="Group 4500" transform="translate(239 479)"> <g id="Rectangle_2269" data-name="Rectangle 2269" transform="translate(2.788)" fill="none" stroke="#333" stroke-width="1"> <rect width="15.728" height="23.156" rx="3" stroke="none"/> <rect x="0.5" y="0.5" width="14.728" height="22.156" rx="2.5" fill="none"/> </g> <g id="Polygon_42" data-name="Polygon 42" transform="translate(15.142 7.596) rotate(90)" fill="none"> <path d="M2.68,2.279a1.5,1.5,0,0,1,2.6,0l1.4,2.446a1.5,1.5,0,0,1-1.3,2.244H2.585a1.5,1.5,0,0,1-1.3-2.244Z" stroke="none"/> <path d="M 3.982226371765137 2.523345947265625 C 3.894986152648926 2.523345947265625 3.678046226501465 2.547895908355713 3.54810619354248 2.775275707244873 L 2.150646209716797 5.220826148986816 C 2.021716594696045 5.446465492248535 2.108866214752197 5.644986152648926 2.152316570281982 5.719865798950195 C 2.195766448974609 5.794735908508301 2.324896335601807 5.96889591217041 2.584766387939453 5.96889591217041 L 5.37968635559082 5.96889591217041 C 5.639556407928467 5.96889591217041 5.768686294555664 5.794735908508301 5.812136650085449 5.719865798950195 C 5.855586051940918 5.644986152648926 5.942736625671387 5.446465492248535 5.813806533813477 5.220826148986816 L 4.416346549987793 2.775275707244873 C 4.286406517028809 2.547895908355713 4.069466590881348 2.523345947265625 3.982226371765137 2.523345947265625 M 3.982226371765137 1.523345947265625 C 4.489446640014648 1.523345947265625 4.996666431427002 1.775275707244873 5.284586429595947 2.279135704040527 L 6.682046413421631 4.724685668945312 C 7.253466606140137 5.724676132202148 6.531416416168213 6.96889591217041 5.37968635559082 6.96889591217041 L 2.584766387939453 6.96889591217041 C 1.433036327362061 6.96889591217041 0.7109861373901367 5.724676132202148 1.282406330108643 4.724685668945312 L 2.679866313934326 2.279135704040527 C 2.967786312103271 1.775275707244873 3.475006580352783 1.523345947265625 3.982226371765137 1.523345947265625 Z" stroke="none" fill="#333"/> </g> <line id="Line_761" data-name="Line 761" y2="11.15" transform="translate(21.304 7.094)" fill="none" stroke="#333" stroke-linecap="round" stroke-width="1"/> <line id="Line_762" data-name="Line 762" y2="11.15" transform="translate(0 7.094)" fill="none" stroke="#333" stroke-linecap="round" stroke-width="1"/> </g> </g> </svg> </span> Watch </a> </li> <li {if ($runtime.controller== 'auth' && $runtime.mode == 'login_form') || ($runtime.controller== 'pprofile' && $runtime.mode == 'account')} class="active" {/if} > <a href="index.php?dispatch=kl_account.account"> <span class="bk-icon-footer bk_foot_nonActiveImg"> {if !empty($auth['user_id'])} <div id="bk_mobile_menu_user_pic" class="bk_footer__accountWrap"><img src="{$config.female_default_icon}" alt=""></div> {else} <img src="{$config.female_default_icon}" alt=""> {/if} </span> <span class="bk-icon-footer bk_foot_activeImg"> <img src="{$config.female_default_icon}" alt=""> </span> You</a> </li> <li class="bk_footer_plusBtn"> <span> <!-- <img src="https://cdn.kindlife.in/images/ui_icon/bk-plus-icon.png" alt=""> --> </span> </li> </ul> <div class="bk_footer_tab_option_wrap" style="display: none;"> <ul class="bk_footer_tab_option_list"> <li class="option_tab_item1"> <a href="https://kindlife.go.link/www.kindlife.in/skinanalyser?adj_t=1stsaiys&adj_deep_link_id=374676"> <span><img src="https://cdn.kindlife.in/images/ui_icon/bk-skin-anlysis-icon.png" alt=""></span><p>Skin Analyser</p> </a> </li> <li class="option_tab_item2"> <a href="https://kindlife.go.link/www.kindlife.in/skinanalyser?adj_t=1stsaiys&adj_deep_link_id=374676"> <span><img src="https://cdn.kindlife.in/images/ui_icon/bk-personalized-pack-icon.png" alt=""></span><p>Personalised Routine</p> </a> </li> <li class="option_tab_item3"> <a href="?dispatch=kl_qna.kiki_ai"> <span><img src="https://cdn.kindlife.in/images/ui_icon/bk-ask-person-icon.png" alt=""></span><p>Ask Me Anything</p> </a> </li> {if $auth['user_id']} <li class="option_tab_item4"> <a href="{if $auth['user_id']}https://www.kindlife.in/ingredient-label-scan?ingredient_label_scan=open {else}https://www.kindlife.in/login{/if}"> <span><img src="https://cdn.kindlife.in/images/ui_icon/Ingredient-can-icon.svg" alt=""></span><p>Ingradient Scan</p> </a> </li> {/if} </ul> </div> </div> <script> if (typeof window !== 'undefined' && window.ReactNativeWebView) { // $('.bk_footer_tab_list_new').hide(); } // function to open extra options by clicking plus icon in footer $(".bk_footer_plusBtn").click(function(){ $(this).toggleClass("open"); $(".bk_footer_tab_option_wrap").toggle().toggleClass("show"); }) // function to open ing-scan-analizer from footer tab $(".bk-ing-aiscan-openerBtn").click(function(){ $(".bk_footer_plusBtn").removeClass("open"); $(".bk_footer_tab_option_wrap").toggle().removeClass("show"); $(".bk-ing-aiscan-container #ca-bot-icon").click(); }) $(document).ready(function() { if(!window.ReactNativeWebView){ let curr_time_in_sec = (Math.floor((new Date().getTime())/1000)); function renderUserData(user_data) { if (user_data && user_data.user_profile_pic) { var html = '<img src="' + user_data.user_profile_pic + '">'; $('#bk_mobile_menu_user_pic').html(html); } else { console.log('No user profile picture found in the response.'); } } function saveToLocalStorage(key, data) { localStorage.setItem(key, data); } function remFromLocalStorage(key) { localStorage.removeItem(key); } function fetchUserData() { Tygh.$.ceAjax('request', fn_url('kl_account.user_profile_data'), { data: { 'is_ajax': 1, 'type': 'mobile_menu', 'ts': Date.now() }, method: 'GET', callback: function (user_data) { renderUserData(user_data); if(user_data.no_data) { return; } let renew_threshold = 60*60*24*7; //7 days user_data.ttl = curr_time_in_sec + renew_threshold; saveToLocalStorage(window.btoa("user_profile_data"), window.btoa(JSON.stringify(user_data))); }, hidden: true, }); } } }); </script>";} 0 3298 hidden-tablet hidden-desktop 2 D smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en bk_Footer_tabs
2193 240 0 3318 hidden-app 2 A template a:1:{s:8:"template";s:70:"addons/ca_search_widget/blocks/static_templates/kl_search_category.tpl";} 0 1 en Search_Category
2188 246 0 3303 2 A template a:1:{s:8:"template";s:50:"addons/my_changes/blocks/static_templates/side.tpl";} 0 1 en open_hamburger
2192 335 a:1:{s:4:"menu";s:1:"2";} 0 3315 hidden-phone 2 A menu a:3:{s:8:"template";s:35:"blocks/menu/dropdown_horizontal.tpl";s:30:"dropdown_second_level_elements";s:2:"12";s:29:"dropdown_third_level_elements";s:2:"10";} 0 1 en main menu desktop
6372 701 a:3:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:35:"69260,30122,69469,69480,66721,66487";}s:10:"show_block";s:2:"AW";s:11:"enable_ajax";s:1:"N";} 0 12022 bt_scroller_mobile tried 2 A products a:9:{s:8:"template";s:40:"blocks/products/products_links_thumb.tpl";s:10:"show_price";s:1:"Y";s:11:"show_rating";s:1:"N";s:15:"show_brand_name";s:1:"Y";s:15:"thumbnail_width";s:3:"200";s:8:"hide_tag";s:1:"N";s:17:"show_share_button";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";s:10:"block_type";s:6:"slider";} 0 1 en Hanni (NewJeans) pids
7228 924 a:1:{s:7:"content";s:220:"<figure class="bk-live-shop__video"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/KBW-1012-bt-jisoo.jpg" alt="beauty-talk-image" width="500" height="750" loading="lazy"> </figure> ";} 0 12044 2 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en kbw Jisoo img
2190 985 0 5940 bk_my_account_navigation_block hidden-phone 2 A template a:1:{s:8:"template";s:58:"addons/my_changes/blocks/static_templates/side-desktop.tpl";} 0 1 en Desktop My Account Navigation
5543 2240 a:1:{s:7:"content";s:137:"<div class="bk_block_heading"> <h2> Holiday Bestsellers</h2> <p> The K-beauty everyone’s gifting, stocking & restocking</p> </div> ";} 0 12019 2 D smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en K-beauty Holiday Bestsellers
2183 2492 a:1:{s:7:"content";s:82:"<style> ul.kiki_people_qna_list > li:first-child { display: none; } </style>";} 0 9853 2 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en temps kiki ai css
2648 2652 a:1:{s:7:"content";s:3872:"<style type="text/css"> .bk_top_code_strip{ background-color: #e3f3f1; } .bk_top_code_strip_text{ padding: 5px 55px 5px 5px; text-align: center; } .bk_top_code_strip *{ color: #000; font-size: 16px; font-weight: 500; background-image: linear-gradient(90deg,#d42377,#1c90fd); background-color: #208df8; background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; position: relative; } .bk_top_code_strip_text a::after{ content: ""; position: absolute; bottom: 0px; left: 0; height: 2px; width: 100%; background-image: linear-gradient(90deg,#d42377,#1c90fd); } .bk_top_code_strip_text a.bk_app_downloadBtn1::after{ height: 1px; } .bk_top_code_strip .btn{ padding: 0; } .bk_app_downloadBtn1 { display: none; } @media (max-width: 767px){ .bk_app_downloadBtn1 { display: inline-block; } .bk_app_downloadBtn-desk1 { display: none; } } @media(max-width:450px) { .bk_top_code_strip *{ font-size: 14px; } .bk_top_code_strip_text { padding: 6px; } } </style> <div class="bk_top_code_strip show_web"> <div class="bk_top_code_strip_text"> <div>Use code APP15 for extra 15% off on app <a class="btn bk_app_downloadBtn-desk1" href="https://play.google.com/store/apps/details?id=com.kindlife&hl=en_IN&gl=US"> DOWNLOAD NOW</a> <a class="btn bk_app_downloadBtn1"> DOWNLOAD NOW</a> *T&C Apply </div> </div> </div> <div class="bk_top_code_strip show_mob" style="display: none;"> <div class="bk_top_code_strip_text"> <div>Use code APP15 for extra 15% off on your first order </div> </div> </div> <script> function getMobileOperatingSystem() { var userAgent = navigator.userAgent || navigator.vendor || window.opera; if (/windows phone/i.test(userAgent)) { return "Windows Phone"; } if (/android/i.test(userAgent)) { return "Android"; } if (/iPad|iPhone|iPod/.test(userAgent) && !window.MSStream) { return "iOS"; } return "unknown"; } function DetectAndServe(){ let os = getMobileOperatingSystem(); // alert(os) if (os == "Android") { window.location.href = "https://play.google.com/store/apps/details?id=com.kindlife&hl=en_IN&gl=US"; } else if (os == "iOS") { window.location.href = "https://apps.apple.com/us/app/kindlife/id1558677327"; } else if (os == "Windows Phone") { window.location.href = "https://kindlife.in"; } else { window.location.href = "https://kindlife.in"; } } $(".bk_app_downloadBtn1").click(() => { DetectAndServe(); }) </script> <script> (function (_, $) { $(document).ready(function() { if (window.ReactNativeWebView) { $(".bk_top_code_strip.show_web").hide(); $(".bk_top_code_strip.show_mob").show(); setTimeout(() => { $(".hp_popup_wrap .hp_links_img").hide(); $(".hp_main_img.web").hide(); // $(".hp_main_img.app").show(); }, 1000); } }); })(Tygh, Tygh.$); </script> ";} 0 10286 2 D smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en HP top kindcode strip
6380 2700 a:3:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:95:"69594,64605,69541,65026,65495,68397,68396,68395,67924,67339,65028,69955,68161,69315,65024,69316";}s:10:"show_block";s:2:"AW";s:11:"enable_ajax";s:1:"N";} 0 12032 blocks/wrappers/mainbox_simple.tpl 2 A products a:20:{s:8:"template";s:37:"blocks/products/products_scroller.tpl";s:10:"show_price";s:1:"Y";s:8:"hide_tag";s:1:"N";s:19:"hide_certifications";s:1:"N";s:17:"enable_quick_view";s:1:"N";s:11:"show_rating";s:1:"N";s:15:"show_brand_name";s:1:"Y";s:17:"show_share_button";s:1:"N";s:15:"show_short_desc";s:1:"N";s:24:"not_scroll_automatically";s:1:"Y";s:15:"scroll_per_page";s:1:"N";s:5:"speed";s:3:"400";s:11:"pause_delay";s:1:"3";s:13:"item_quantity";s:1:"5";s:15:"thumbnail_width";s:3:"200";s:18:"outside_navigation";s:1:"Y";s:10:"promo_text";s:1:"N";s:16:"key_product_info";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";s:10:"block_type";s:6:"slider";} 0 1 en BEST OF KBEAUTY COMBOS
5866 2734 a:3:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:35:"64329,64325,64333,64349,64351,64328";}s:10:"show_block";s:2:"AW";s:11:"enable_ajax";s:1:"N";} 0 10650 bt_scroller_mobile dashing 2 A products a:9:{s:8:"template";s:40:"blocks/products/products_links_thumb.tpl";s:10:"show_price";s:1:"Y";s:11:"show_rating";s:1:"Y";s:15:"show_brand_name";s:1:"Y";s:15:"thumbnail_width";s:3:"400";s:8:"hide_tag";s:1:"N";s:17:"show_share_button";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";s:10:"block_type";s:6:"slider";} 0 1 en KBW prep mani pids mob
5865 2840 a:1:{s:7:"content";s:1977:"<style> .ty-thumbnail-list .ty-thumbnail-list__item { border-radius: 10px; } .ty-thumbnail-list__brand a { padding-left: 5px; } .ty-thumbnail-list__item .ty-thumbnail-list__name { padding: 0 5px; } .ty-thumbnail-list__price { padding-left: 5px; } .ty-thumbnail-list__rating { padding-left: 5px; } .ty-thumbnail-list__item .ty-thumbnail-list__butons { padding-left: 5px; } .bk-live-shop__left { text-align: center; } .bk-live-shop__video { max-width: 100%; width: 80%; border-radius: 12px; overflow: hidden; } figure.bk-live-shop__video { width: 100%; } .bk-live-shop__video img { width: 100%; height: auto; aspect-ratio: 5/7; } @media (max-width: 767px) { .span16.bk_Beauty_Talk > .row-fluid { display: flex; overflow: hidden; } .span16.bk_Beauty_Talk > .row-fluid:before,.span16.bk_Beauty_Talk > .row-fluid:after { display: none; } .bk_Beauty_Talk .row-fluid .bk-live-shop__left { text-align: left; flex: 0 0 200px; margin-right: 10px; } .bk_Beauty_Talk .row-fluid .bk-live-shop__right { flex: 1; overflow: auto; } .bt_scroller_mobile.dashing { background-image: url(https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/kbw-0711bt-dashing-diva.webp); background-color: #e5e6e3; } .bk-live-shop__video img { aspect-ratio: 2 / 3; object-fit: cover; } .bk-live-shop__video { width: 100%; } .bt_scroller_mobile.etude1 { background-image: url(https://cdn.kindlife.in/images/banners/hp-images/HP-1112-bt-makeup.webp); background-color: #ecb4b8; } } </style> <figure class="bk-live-shop__video"><img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/kbw-0711bt-dashing-diva.webp" alt="beauty-talk-image" width="170" height="200"></figure>";} 0 10355 2 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en Kbw prep mani css
5864 2842 a:1:{s:7:"content";s:140:"<div class="bk_block_heading add_space"> <h2>Don’t have time for nails?</h2> <p> Dashing Diva press-ons to the rescue </p> </div> ";} 0 10358 2 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en KBW Don’t have time for nails?
5779 2862 a:1:{s:7:"content";s:1336:"<style> /* beauty talk css start */ .bt_scroller_mobile.skincare { background-image: url(https://cdn.kindlife.in/images/banners/home-page-images/Kbeauty-skin-has-desk_beauty.webp); background-color: #e8e7ec; } .bt_scroller_mobile { background-size: contain; background-position: left; background-repeat: no-repeat; padding: 10px 10px 10px 0; } .bt_scroller_mobile .ty-thumbnail-list { padding-left: min(50%, 225px); } .bt_scroller_mobile .ty-thumbnail-list__item { border-radius: 6px; } .span4.bk-live-shop__left { flex: 0 0 270px; margin-right: 10px; } .span12.bk-live-shop__right { flex: 1; margin: 0; overflow: auto; } .span16.bk_Beauty_Talk .row-fluid:nth-child(2) { display: flex; } .span16.bk_Beauty_Talk .row-fluid:nth-child(2):before, .span16.bk_Beauty_Talk .row-fluid:nth-child(2):after { display: none; } .bk-live-shop__video img { width: 100%; height: auto; border: 1px solid #d3d3d3; border-radius: 12px; object-fit: cover; aspect-ratio: 3 / 4; } @media (max-width: 767px) { .span4.bk-live-shop__left { display: none; } } /* beauty talk css end */ </style>";} 0 10378 2 D smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en Beauty talk new css
7509 3022 a:1:{s:7:"content";s:238:"<div class="bk_block_heading"> <h2>BUILD YOUR SKINCARE ROUTINE</h2> </div> <style> .kbeauty-step-bg { background: #EEE9FF; padding: 0 10px 10px; border-radius:5px; } .step1-bg { margin-top: 30px; } </style>";} 0 10828 2 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en KBW The shaadi glow edit heading
5717 3026 a:1:{s:7:"content";s:21063:"<style> .bk_newcat_block { text-align: center; } .bk_steps_images { overflow: auto; border: 1px solid #e3e3e3; margin: 10px 0; border-radius: 10px; background: #e3e3e3; } .bk_stepsBtns { text-align: center; } a.bkStepsBtn { color: #1b366f; margin: 20px 10px; text-decoration: underline !important; font-size: 16px; display: inline-block; } .bk-routine-steps-images-container.steps-cont { max-width: 220px; margin: 0 auto; overflow: hidden; } .bk-step-bottles-container { width: 180%; } .bkStepsBtn:hover { color: #ec138d; } .bk_steps_pid_block { display: none; } .bk-step-bottles-container { max-width: 450px; } .bk-step-bottle-1-color .st0, .bk-step-bottle-2-color .st0, .bk-step-bottle-3-color .st0, .bk-step-bottle-4-color .st0, .bk-step-bottle-5-color .st0, .bk-step-bottle-6-color .st0, .bk-step-bottle-7-color .st0, .bk-step-bottle-8-color .st0, .bk-step-bottle-9-color .st0, .bk-step-bottle-10-color .st0 { fill: #539ac0; opacity: .64; } .bk-step-bottle-1-color .st1, .bk-step-bottle-2-color .st1, .bk-step-bottle-3-color .st1, .bk-step-bottle-4-color .st1, .bk-step-bottle-5-color .st1, .bk-step-bottle-6-color .st1, .bk-step-bottle-7-color .st1, .bk-step-bottle-8-color .st1, .bk-step-bottle-9-color .st1, .bk-step-bottle-10-color .st1 { fill: #fff; opacity: 1; } @media (min-width: 767px) { .step-3-active .bk-step-bottle-1-color .st0, .step-3-active .bk-step-bottle-3-color .st0, .step-4-active .bk-step-bottle-1-color .st0, .step-4-active .bk-step-bottle-3-color .st0, .step-4-active .bk-step-bottle-4-color .st0, .step-4-active .bk-step-bottle-6-color .st0, .step-5-active .bk-step-bottle-4-color .st0, .step-5-active .bk-step-bottle-5-color .st0, .step-5-active .bk-step-bottle-6-color .st0, .step-7-active .bk-step-bottle-1-color .st0, .step-7-active .bk-step-bottle-2-color .st0, .step-7-active .bk-step-bottle-3-color .st0, .step-7-active .bk-step-bottle-4-color .st0, .step-7-active .bk-step-bottle-5-color .st0, .step-7-active .bk-step-bottle-6-color .st0, .step-7-active .bk-step-bottle-7-color .st0, .step-7-active .bk-step-bottle-8-color .st0, .step-7-active .bk-step-bottle-9-color .st0, .step-7-active .bk-step-bottle-10-color .st0 { fill: #ec138d; opacity: 1 } .step-3-active .bk-step-bottle-1-color .st1, .step-3-active .bk-step-bottle-3-color .st1, .step-4-active .bk-step-bottle-1-color .st1, .step-4-active .bk-step-bottle-3-color .st1, .step-4-active .bk-step-bottle-4-color .st1, .step-4-active .bk-step-bottle-6-color .st1, .step-5-active .bk-step-bottle-4-color .st1, .step-5-active .bk-step-bottle-5-color .st1, .step-5-active .bk-step-bottle-6-color .st1, .step-7-active .bk-step-bottle-1-color .st1, .step-7-active .bk-step-bottle-2-color .st1, .step-7-active .bk-step-bottle-3-color .st1, .step-7-active .bk-step-bottle-4-color .st1, .step-7-active .bk-step-bottle-5-color .st1, .step-7-active .bk-step-bottle-6-color .st1, .step-7-active .bk-step-bottle-7-color .st1, .step-7-active .bk-step-bottle-8-color .st1, .step-7-active .bk-step-bottle-9-color .st1, .step-7-active .bk-step-bottle-10-color .st1 { fill: #fff1f9; opacity: 1 } } </style> <div class="bk_top_heading bk_block_heading"> <h2>Skincare Routines</h2> <p>For beginners and pros</p> </div> <div class="bk_newcat_block"> <div class="bk-routine-steps-images-container steps-cont"> <svg viewBox="0 0 260 43" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" class="bk-step-bottles-container"> <g class="bk-step-bottle-1-color"> <path class="st0" d="M15.5,5.4c0-0.3-0.2-0.5-0.5-0.5H0.9c-0.3,0-0.5,0.2-0.5,0.5l0,2.9L2.8,38v4.2c0,0.1,0,0.2,0.1,0.3 c0.1,0.1,0.2,0.1,0.3,0.1h9.4c0.3,0,0.5-0.2,0.5-0.5l0-4.2l2.3-29.9V5.4z M6.5,41.8c0.2-0.7,0.8-1.2,1.5-1.2 c0.7,0,1.3,0.5,1.5,1.2H6.5z M12.2,41.8l-1.8,0c-0.2-1.2-1.2-2.1-2.4-2.1s-2.2,0.9-2.4,2.1H3.7l0-3.4h8.5V41.8z M12.3,37.5H3.7 L1.4,8.7h13.1L12.3,37.5z M1.4,7.7V5.9h13.2l0,1.9H1.4z"></path> <path class="st1" d="M8,40.6c-0.7,0-1.3,0.5-1.5,1.2h3C9.3,41.1,8.7,40.6,8,40.6z"></path> <path class="st1" d="M3.7,41.8h1.8c0.2-1.2,1.2-2.1,2.4-2.1s2.2,0.9,2.4,2.1l1.8,0v-3.4H3.7L3.7,41.8z"></path> <path class="st1" d="M3.7,37.5h8.6l2.3-28.8H1.4L3.7,37.5z M11.1,11.9c0-0.3,0.2-0.5,0.5-0.4c0.3,0,0.5,0.2,0.4,0.5l-1,13.7 c0,0.2-0.2,0.4-0.5,0.4c0,0,0,0,0,0c-0.3,0-0.5-0.2-0.4-0.5L11.1,11.9z M9.9,28.4c0-0.3,0.2-0.5,0.5-0.4c0.3,0,0.5,0.2,0.4,0.5 l-0.4,5.3c0,0.2-0.2,0.4-0.5,0.4c0,0,0,0,0,0c-0.3,0-0.5-0.2-0.4-0.5L9.9,28.4z"></path> <rect x="1.4" y="5.9" class="st1" width="13.2" height="1.9"></rect> <path class="st0" d="M10.5,26.1C10.6,26.1,10.6,26.1,10.5,26.1c0.3,0,0.5-0.2,0.5-0.4l1-13.7c0-0.3-0.2-0.5-0.4-0.5 c-0.3,0-0.5,0.2-0.5,0.4l-1,13.7C10.1,25.9,10.3,26.1,10.5,26.1z"></path> <path class="st0" d="M9.9,34.2C9.9,34.2,10,34.2,9.9,34.2c0.3,0,0.5-0.2,0.5-0.4l0.4-5.3c0-0.3-0.2-0.5-0.4-0.5 c-0.3,0-0.5,0.2-0.5,0.4l-0.4,5.3C9.5,34,9.7,34.2,9.9,34.2z"></path> </g> <!-- <g class="bk-step-bottle-2-color"> <path class="st0" d="M259.7,5.2c0-0.3-0.2-0.5-0.5-0.5h-14.1c-0.3,0-0.5,0.2-0.5,0.5l0,2.9l2.3,29.8v4.2c0,0.1,0,0.2,0.1,0.3 c0.1,0.1,0.2,0.1,0.3,0.1h9.4c0.3,0,0.5-0.2,0.5-0.5l0-4.2l2.3-29.9V5.2z M250.7,41.7c0.2-0.7,0.8-1.2,1.5-1.2 c0.7,0,1.3,0.5,1.5,1.2H250.7z M256.4,41.7l-1.8,0c-0.2-1.2-1.2-2.1-2.4-2.1c-1.2,0-2.2,0.9-2.4,2.1h-1.8l0-3.4h8.5V41.7z M256.4,37.4h-8.6l-2.3-28.8h13.1L256.4,37.4z M245.5,7.6V5.7h13.2l0,1.9H245.5z"></path> <path class="st1" d="M252.1,40.5c-0.7,0-1.3,0.5-1.5,1.2h3C253.4,41,252.8,40.5,252.1,40.5z"></path> <path class="st1" d="M247.9,41.7h1.8c0.2-1.2,1.2-2.1,2.4-2.1c1.2,0,2.2,0.9,2.4,2.1l1.8,0v-3.4h-8.5L247.9,41.7z"></path> <path class="st1" d="M247.9,37.4h8.6l2.3-28.8h-13.1L247.9,37.4z M255.3,11.8c0-0.3,0.2-0.5,0.5-0.4c0.3,0,0.5,0.2,0.4,0.5 l-1,13.7c0,0.2-0.2,0.4-0.5,0.4c0,0,0,0,0,0c-0.3,0-0.5-0.2-0.4-0.5L255.3,11.8z M254.1,28.3c0-0.3,0.2-0.5,0.5-0.4 c0.3,0,0.5,0.2,0.4,0.5l-0.4,5.3c0,0.2-0.2,0.4-0.5,0.4c0,0,0,0,0,0c-0.3,0-0.5-0.2-0.4-0.5L254.1,28.3z"></path> <rect x="245.5" y="5.7" class="st1" width="13.2" height="1.9"></rect> <path class="st0" d="M254.7,26C254.7,26,254.7,26,254.7,26c0.3,0,0.5-0.2,0.5-0.4l1-13.7c0-0.3-0.2-0.5-0.4-0.5 c-0.3,0-0.5,0.2-0.5,0.4l-1,13.7C254.3,25.7,254.4,26,254.7,26z"></path> <path class="st0" d="M254.1,34.1C254.1,34.1,254.1,34.1,254.1,34.1c0.3,0,0.5-0.2,0.5-0.4l0.4-5.3c0-0.3-0.2-0.5-0.4-0.5 c-0.3,0-0.5,0.2-0.5,0.4l-0.4,5.3C253.6,33.8,253.8,34.1,254.1,34.1z"></path> </g> --> <g class="bk-step-bottle-3-color"> <path class="st0" d="M41.2,18.9h-1.4v-2.1c0-1.2-0.9-2.2-2-2.4v-4.2c0-1-0.8-1.9-1.9-1.9h-1.8c-1,0-1.9,0.8-1.9,1.9v4.2 c-1.1,0.2-2,1.2-2,2.4v2.1h-1.4c-1.6,0-2.9,1.3-2.9,3v17.9c0,1.6,1.3,3,2.9,3h12.3c1.6,0,2.9-1.3,2.9-3V21.9 C44.1,20.3,42.8,18.9,41.2,18.9z M33.1,10.3c0-0.5,0.5-1,1-1h1.8c0.6,0,1,0.4,1,1v4.1h-3.8V10.3z M31.1,16.9 c0-0.9,0.7-1.6,1.6-1.6h4.6c0.9,0,1.6,0.7,1.6,1.6v2.1h-7.8V16.9z M26.8,21.9c0-1.2,0.9-2.1,2.1-2.1h12.3c1.2,0,2.1,0.9,2.1,2.1 v4.7c-4.1,0-6.2-0.4-8.2-0.8c-2.1-0.4-4.2-0.9-8.3-0.9V21.9z M43.3,39.8c0,1.2-0.9,2.1-2.1,2.1H28.9c-1.2,0-2.1-0.9-2.1-2.1v-14 c4.1,0,6.2,0.4,8.2,0.8c2.1,0.4,4.2,0.9,8.3,0.9V39.8z"></path> <path class="st1" d="M36.9,10.3c0-0.5-0.5-1-1-1h-1.8c-0.6,0-1,0.4-1,1v4.1h3.8V10.3z M35.5,12.1c0,0.2-0.2,0.4-0.4,0.4 c-0.2,0-0.4-0.2-0.4-0.4V11c0-0.2,0.2-0.4,0.4-0.4c0.2,0,0.4,0.2,0.4,0.4V12.1z"></path> <path class="st1" d="M38.9,16.9c0-0.9-0.7-1.6-1.6-1.6h-4.6c-0.9,0-1.6,0.7-1.6,1.6v2.1h7.8V16.9z"></path> <path class="st1" d="M43.3,26.6v-4.7c0-1.2-0.9-2.1-2.1-2.1H28.9c-1.2,0-2.1,0.9-2.1,2.1v3c4.1,0,6.3,0.4,8.3,0.9 C37.1,26.2,39.2,26.6,43.3,26.6z"></path> <path class="st1" d="M26.8,25.8v14c0,1.2,0.9,2.1,2.1,2.1h12.3c1.2,0,2.1-0.9,2.1-2.1V27.5c-4.1,0-6.3-0.4-8.3-0.9 C32.9,26.2,30.8,25.8,26.8,25.8z"></path> <path class="st0" d="M35,10.6c-0.2,0-0.4,0.2-0.4,0.4v1.1c0,0.2,0.2,0.4,0.4,0.4c0.2,0,0.4-0.2,0.4-0.4V11 C35.5,10.8,35.3,10.6,35,10.6z"></path> </g> <g class="bk-step-bottle-4-color"> <path class="st0" d="M69.4,9.9c-0.5-0.3-0.9-0.6-1.3-0.8c-1-0.5-1.4-0.8-1.4-1.7h0.1c0.6,0,1.1-0.5,1.1-1.2V4 c0-0.6-0.5-1.2-1.1-1.2h-6.5c-0.6,0-1.1,0.5-1.1,1.2v2.3c0,0.6,0.5,1.1,1,1.1c-0.1,1-0.5,1.2-1.4,1.8c-0.4,0.2-0.8,0.5-1.2,0.8 c-1.9,1.3-2.9,3.2-2.9,5.2v25.6c0,1,0.9,1.7,2.1,1.7h13.8c1.1,0,2.1-0.8,2.1-1.7V15.2C72.4,13.2,71.3,11.3,69.4,9.9z M60.1,6.3V4 c0-0.1,0.1-0.2,0.2-0.2h6.5c0.1,0,0.2,0.1,0.2,0.2v2.3c0,0.1-0.1,0.2-0.2,0.2h-6.5C60.1,6.4,60.1,6.4,60.1,6.3z M71.4,40.8 c0,0.4-0.5,0.7-1.1,0.7H56.6c-0.6,0-1.1-0.3-1.1-0.7V15.2h0c0-1.7,0.9-3.2,2.5-4.4c0.4-0.3,0.8-0.5,1.2-0.8c1-0.6,1.8-1.1,1.9-2.6 h4.6c0.1,1.5,0.9,2,1.9,2.6c0.4,0.2,0.8,0.4,1.2,0.7c1.7,1.2,2.6,2.8,2.6,4.5V40.8z"></path> <path class="st1" d="M66.7,6.4c0.1,0,0.2-0.1,0.2-0.2V4c0-0.1-0.1-0.2-0.2-0.2h-6.5c-0.1,0-0.2,0.1-0.2,0.2v2.3 c0,0.1,0.1,0.2,0.2,0.2H66.7z"></path> <path class="st1" d="M68.8,10.7c-0.5-0.3-0.9-0.5-1.2-0.7c-1.1-0.6-1.8-1.1-1.9-2.6h-4.6c-0.1,1.5-0.9,2-1.9,2.6 c-0.3,0.2-0.7,0.4-1.2,0.8c-1.6,1.2-2.5,2.7-2.5,4.4h0v25.6c0,0.4,0.5,0.7,1.1,0.7h13.8c0.6,0,1.1-0.3,1.1-0.7V15.2 C71.4,13.5,70.5,11.9,68.8,10.7z M69.4,30.2c0,0.3-0.2,0.5-0.5,0.5c-0.3,0-0.5-0.2-0.5-0.5v-3.8c0-0.3,0.2-0.5,0.5-0.5 c0.3,0,0.5,0.2,0.5,0.5V30.2z M69.4,23.7c0,0.3-0.2,0.5-0.5,0.5c-0.3,0-0.5-0.2-0.5-0.5v-6.5c0-2.2-0.4-3.2-1.5-4 c-0.2-0.2-0.3-0.5-0.1-0.7c0.2-0.2,0.5-0.3,0.7-0.1c1.6,1.1,1.9,2.7,1.9,4.8V23.7z"></path> <path class="st0" d="M69,25.9c-0.3,0-0.5,0.2-0.5,0.5v3.8c0,0.3,0.2,0.5,0.5,0.5c0.3,0,0.5-0.2,0.5-0.5v-3.8 C69.4,26.1,69.2,25.9,69,25.9z"></path> <path class="st0" d="M67.5,12.4c-0.2-0.2-0.5-0.1-0.7,0.1c-0.2,0.2-0.1,0.5,0.1,0.7c1.1,0.8,1.5,1.8,1.5,4v6.5 c0,0.3,0.2,0.5,0.5,0.5c0.3,0,0.5-0.2,0.5-0.5v-6.5C69.4,15.1,69.1,13.5,67.5,12.4z"></path> </g> <g class="bk-step-bottle-5-color"> <path class="st0" d="M125.4,14.8c-0.4-0.3-0.8-0.5-1.1-0.7c-0.8-0.5-1.2-0.7-1.2-1.4h0c0.5,0,1-0.4,1-1v-2c0-0.5-0.4-1-1-1h-5.5 c-0.5,0-1,0.4-1,1v2c0,0.5,0.4,0.9,0.9,1c0,0.8-0.4,1-1.2,1.5c-0.3,0.2-0.7,0.4-1.1,0.7c-1.6,1.1-2.5,2.8-2.5,4.4v21.8 c0,0.8,0.8,1.5,1.8,1.5h11.7c1,0,1.8-0.7,1.8-1.5V19.3C128,17.5,127,15.9,125.4,14.8z M117.4,11.6v-2c0-0.1,0.1-0.1,0.1-0.1h5.5 c0.1,0,0.1,0.1,0.1,0.1v2c0,0.1-0.1,0.1-0.1,0.1h-5.5C117.5,11.8,117.4,11.7,117.4,11.6z M127.1,41.1c0,0.3-0.4,0.6-0.9,0.6h-11.7 c-0.5,0-0.9-0.3-0.9-0.6v-7.5h13.6V41.1z M127.1,32.8L127.1,32.8h-13.6V21.1h13.6V32.8z M127.1,20.2h-13.6v-0.9 c0-1.4,0.8-2.8,2.1-3.7c0.4-0.3,0.7-0.5,1-0.6c0.9-0.5,1.6-1,1.6-2.3h3.9c0.1,1.3,0.7,1.7,1.6,2.2c0.3,0.2,0.7,0.4,1,0.6 c1.4,1,2.2,2.4,2.2,3.8V20.2z"></path> <polygon class="st1" points="113.5,32.8 127.1,32.8 127.1,32.8 127.1,21.1 113.5,21.1 "></polygon> <path class="st1" d="M113.5,41.1c0,0.3,0.4,0.6,0.9,0.6h11.7c0.5,0,0.9-0.3,0.9-0.6v-7.5h-13.6V41.1z"></path> <path class="st1" d="M123.1,11.8c0.1,0,0.1-0.1,0.1-0.1v-2c0-0.1-0.1-0.1-0.1-0.1h-5.5c-0.1,0-0.1,0.1-0.1,0.1v2 c0,0.1,0.1,0.1,0.1,0.1H123.1z"></path> <path class="st1" d="M124.9,15.5c-0.4-0.3-0.7-0.5-1-0.6c-0.9-0.5-1.6-0.9-1.6-2.2h-3.9c-0.1,1.3-0.8,1.7-1.6,2.3 c-0.3,0.2-0.6,0.4-1,0.6c-1.4,1-2.1,2.3-2.1,3.7v0.9h13.6v-0.9C127.1,17.8,126.3,16.4,124.9,15.5z"></path> </g> <g class="bk-step-bottle-6-color"> <path class="st0" d="M99,15.3h-1.6V13c0-1.6-1.3-2.9-2.8-2.9h-0.7V6.6h0.6c1.1,0,4,0.2,4.6,1.7c0.1,0.2,0.3,0.3,0.4,0.3h2.2 c0.2,0,0.4-0.2,0.5-0.4c0-0.1,0.4-1.5-1.4-3c-2.4-2.1-6.3-1.9-6.4-1.9h-6.8c-0.3,0-0.5,0.2-0.5,0.5v2.3c0,0.3,0.2,0.5,0.5,0.5H90 v3.6h-0.7c-1.6,0-2.8,1.3-2.8,2.9v2.3h-1.6c-1.9,0-3.4,1.5-3.4,3.4v20.6c0,1.9,1.5,3.4,3.4,3.4H99c1.9,0,3.4-1.5,3.4-3.4V18.7 C102.4,16.8,100.9,15.3,99,15.3z M88.1,5.6V4.3h0l6.4,0c0,0,3.7-0.2,5.7,1.6c0.8,0.7,1,1.3,1.1,1.7h-1.4c-1.2-2.1-5.2-2-5.4-2 H88.1z M92.8,6.6v3.6H91V6.6H92.8z M87.4,13c0-1,0.8-1.9,1.9-1.9h5.3c1,0,1.9,0.8,1.9,1.9v2.3h-9V13z M101.4,39.3 c0,1.3-1.1,2.4-2.4,2.4H84.8c-1.3,0-2.4-1.1-2.4-2.4V24.2h0h0h19V39.3z M101.4,23.3h-19v-4.5c0-1.3,1.1-2.4,2.4-2.4H99 c1.3,0,2.4,1.1,2.4,2.4V23.3z"></path> <path class="st1" d="M99.8,7.6h1.4c-0.1-0.4-0.3-1-1.1-1.7c-2.1-1.8-5.7-1.6-5.7-1.6l-6.4,0h0v1.3h6.4C94.6,5.6,98.6,5.5,99.8,7.6 z"></path> <rect x="91" y="6.6" class="st1" width="1.9" height="3.6"></rect> <path class="st1" d="M96.4,13c0-1-0.8-1.9-1.9-1.9h-5.3c-1,0-1.9,0.8-1.9,1.9v2.3h9V13z"></path> <path class="st1" d="M99,16.3H84.8c-1.3,0-2.4,1.1-2.4,2.4v4.5h19v-4.5C101.4,17.4,100.3,16.3,99,16.3z"></path> <path class="st1" d="M82.4,39.3c0,1.3,1.1,2.4,2.4,2.4H99c1.3,0,2.4-1.1,2.4-2.4V24.2h-19V39.3z"></path> </g> <!-- <g class="bk-step-bottle-7-color"> <path class="st0" d="M155.6,2c0-0.3-0.2-0.5-0.5-0.5h-15.3c-0.3,0-0.5,0.2-0.5,0.5l0,3.1l2.5,32.4v4.6c0,0.1,0.1,0.3,0.1,0.4 c0.1,0.1,0.2,0.2,0.4,0.2h10.2c0.3,0,0.5-0.2,0.5-0.5l0-4.6L155.6,5V2z M145.8,41.5c0.2-0.7,0.8-1.3,1.6-1.3 c0.8,0,1.4,0.5,1.6,1.3H145.8z M152,41.5l-2,0c-0.2-1.3-1.3-2.3-2.6-2.3c-1.3,0-2.4,1-2.6,2.3h-2l0-3.6h9.2V41.5z M152,36.9h-9.3 l-1.1-13.6h11.4L152,36.9z M153.2,22.3h-11.6l-1.3-16.7h14.2L153.2,22.3z M140.2,4.5v-2h14.3l0,2H140.2z"></path> <polygon class="st1" points="141.6,22.3 153.2,22.3 154.5,5.5 140.3,5.5 "></polygon> <path class="st1" d="M147.4,40.3c-0.8,0-1.4,0.5-1.6,1.3h3.2C148.8,40.8,148.2,40.3,147.4,40.3z"></path> <path class="st1" d="M142.8,41.5h2c0.2-1.3,1.3-2.3,2.6-2.3c1.3,0,2.4,1,2.6,2.3l2,0v-3.6h-9.2L142.8,41.5z"></path> <polygon class="st1" points="142.7,36.9 152,36.9 153.1,23.3 141.7,23.3 "></polygon> <rect x="140.2" y="2.5" class="st1" width="14.3" height="2"></rect> </g> <g class="bk-step-bottle-8-color"> <path class="st0" d="M182.8,16.6v-2.3c0-1.3-1-2.3-2.3-2.3h-2.1V8h0.5c0.3,0,0.5-0.2,0.5-0.5V2.9c0-0.3-0.2-0.5-0.5-0.5h-4.5 c-0.3,0-0.5,0.2-0.5,0.5v0.6h-5.5c-0.3,0-0.5,0.2-0.5,0.5v2.4c0,0.3,0.2,0.5,0.5,0.5h5.5v0.6c0,0.3,0.2,0.5,0.5,0.5h0.6v4h-2.2 c-1.3,0-2.3,1-2.3,2.3v2.3c-2.1,1.5-3.3,3.7-3.3,5.9v18.1c0,1.1,1.1,1.9,2.3,1.9h14.2c1.3,0,2.3-0.9,2.3-1.9V22.5 C186.1,20.3,184.9,18.1,182.8,16.6z M173.9,5.9h-5V4.5h5V5.9z M174.9,7V3.4h3.5V7H174.9z M177.4,8v4H176V8H177.4z M171.5,14.3 c0-0.7,0.6-1.3,1.3-1.3h7.8c0.7,0,1.3,0.6,1.3,1.3v2.1h-10.3V14.3z M168.2,22.5c0-2,1-3.8,2.9-5.1c0,0,0,0,0,0h5V23h-8V22.5z M185.1,40.6c0,0.5-0.6,0.9-1.3,0.9h-14.2c-0.7,0-1.3-0.4-1.3-0.9v-4.9h8v3.1c0,0.3,0.2,0.5,0.5,0.5s0.5-0.2,0.5-0.5v-3.1h8V40.6z M185.1,34.8h-16.9V24h16.9V34.8z M185.1,23L185.1,23h-8v-5.6h5c1.9,1.3,3,3.2,3,5.2V23z"></path> <rect x="168.9" y="4.5" class="st1" width="5" height="1.4"></rect> <rect x="174.9" y="3.4" class="st1" width="3.5" height="3.6"></rect> <rect x="176" y="8" class="st1" width="1.4" height="4"></rect> <path class="st1" d="M181.8,14.3c0-0.7-0.6-1.3-1.3-1.3h-7.8c-0.7,0-1.3,0.6-1.3,1.3v2.1h10.3V14.3z"></path> <path class="st1" d="M176.1,17.4h-5c0,0,0,0,0,0c-1.9,1.4-2.9,3.2-2.9,5.1V23h8V17.4z"></path> <rect x="168.2" y="24" class="st1" width="16.9" height="10.8"></rect> <path class="st1" d="M177.1,38.8c0,0.3-0.2,0.5-0.5,0.5s-0.5-0.2-0.5-0.5v-3.1h-8v4.9c0,0.5,0.6,0.9,1.3,0.9h14.2 c0.7,0,1.3-0.4,1.3-0.9v-4.9h-8V38.8z"></path> <path class="st1" d="M182.1,17.4h-5V23h8h0v-0.4C185.1,20.6,184,18.7,182.1,17.4z"></path> </g> <g class="bk-step-bottle-9-color"> <path class="st0" d="M213.4,15.5c-0.1-0.8-0.4-1.5-1.1-2.1l-2.3-2c-0.2-0.2-0.4-0.5-0.4-0.8V9.9h0.2c0.3,0,0.5-0.2,0.5-0.5V5.3 c0-0.3-0.2-0.5-0.5-0.5h-7c-0.3,0-0.5,0.2-0.5,0.5v4.1c0,0.3,0.2,0.5,0.5,0.5h0.2v0.8c0,0.3-0.1,0.6-0.4,0.8l-2.3,2 c-0.6,0.5-1,1.3-1.1,2.1l-2.1,25.2c0,0.5,0.1,0.9,0.4,1.3c0.3,0.4,0.8,0.6,1.3,0.6h14.9c0.5,0,1-0.2,1.3-0.6 c0.3-0.4,0.5-0.8,0.4-1.3L213.4,15.5z M208,5.8h1.4v3.2h0H208V5.8z M205.7,5.8h1.4v3.2h-1.4V5.8z M203.3,5.8h1.4v3.2h-1.4V5.8z M200.2,15.6c0-0.5,0.3-1,0.7-1.4l2.3-2c0.5-0.4,0.7-0.9,0.7-1.5V9.9h4.8v0.8c0,0.6,0.3,1.1,0.7,1.5l2.3,2 c0.4,0.4,0.7,0.9,0.7,1.4l0.7,8.7c-3.3,0-5.1-0.2-6.8-0.5c-1.7-0.2-3.5-0.5-6.9-0.5L200.2,15.6z M214.4,41.3 c-0.2,0.2-0.4,0.3-0.7,0.3h-14.9c-0.3,0-0.5-0.1-0.7-0.3c-0.1-0.2-0.2-0.4-0.2-0.6l1.4-16.5c3.4,0,5.2,0.2,6.9,0.5 c1.7,0.2,3.5,0.5,7,0.5l1.3,15.5C214.6,41,214.6,41.2,214.4,41.3z"></path> <polygon class="st1" points="209.4,8.9 209.4,5.8 208,5.8 208,8.9 209.4,8.9 "></polygon> <rect x="205.7" y="5.8" class="st1" width="1.4" height="3.2"></rect> <rect x="203.3" y="5.8" class="st1" width="1.4" height="3.2"></rect> <path class="st1" d="M213.2,24.3l-0.7-8.7c0-0.5-0.3-1-0.7-1.4l-2.3-2c-0.5-0.4-0.7-0.9-0.7-1.5V9.9H204v0.8 c0,0.6-0.3,1.1-0.7,1.5l-2.3,2c-0.4,0.4-0.7,0.9-0.7,1.4l-0.7,7.8c3.4,0,5.2,0.2,6.9,0.5C208.1,24.1,209.9,24.3,213.2,24.3z"></path> <path class="st1" d="M206.3,24.8c-1.7-0.2-3.5-0.5-6.9-0.5l-1.4,16.5c0,0.2,0.1,0.4,0.2,0.6c0.2,0.2,0.4,0.3,0.7,0.3h14.9 c0.3,0,0.5-0.1,0.7-0.3c0.1-0.2,0.2-0.4,0.2-0.6l-1.3-15.5C209.9,25.3,208.1,25,206.3,24.8z"></path> </g> <g class="bk-step-bottle-10-color"> <path class="st0" d="M237.7,32h-1.1v-3.4c0-0.3-0.3-0.6-0.6-0.6h-10.7c-0.3,0-0.6,0.3-0.6,0.6V32h-1.1c-0.8,0-1.4,0.7-1.4,1.4v6.1 c0,2.2,0.8,3,3.1,3H236c2.3,0,3.1-0.7,3.1-3v-6.1C239.1,32.6,238.5,32,237.7,32z M225.9,29.1h9.4V32h-9.4V29.1z M236,41.3h-10.7 c-1.7,0-1.9-0.3-1.9-1.8v-6.1c0-0.1,0.1-0.2,0.2-0.2h1.7H236h1.7c0.1,0,0.2,0.1,0.2,0.2v6.1h0C237.9,41,237.7,41.3,236,41.3z"></path> <rect x="225.9" y="29.1" class="st1" width="9.4" height="2.8"></rect> <path class="st1" d="M237.8,33.4c0-0.1-0.1-0.2-0.2-0.2H236h-10.7h-1.7c-0.1,0-0.2,0.1-0.2,0.2v6.1c0,1.5,0.2,1.8,1.9,1.8H236 c1.7,0,1.9-0.3,1.9-1.8h0V33.4z M236.3,34.5c0-0.2,0.1-0.3,0.3-0.3s0.3,0.1,0.3,0.3V38c0,0.2-0.1,0.3-0.3,0.3 c-0.2,0-0.3-0.1-0.3-0.3V34.5z M236.6,40.4c-0.6,0-1-0.4-1-1c0-0.6,0.4-1,1-1c0.6,0,1,0.4,1,1C237.6,39.9,237.2,40.4,236.6,40.4z"></path> <path class="st0" d="M236.6,38.4c0.2,0,0.3-0.1,0.3-0.3v-3.5c0-0.2-0.1-0.3-0.3-0.3s-0.3,0.1-0.3,0.3v3.5 C236.3,38.2,236.5,38.4,236.6,38.4z"></path> <circle class="st0" cx="236.6" cy="39.4" r="1"></circle> </g> --> </svg> </div> <div class="bk_stepsBtns"> <a class="bkStepsBtn" id="step-3" href="https://www.kindlife.in/combo-of-royal-honey-propolis-enrich-essence-50ml-and-rice-mask-wash-off-100ml/">2 steps</a> <!-- <a class="bkStepsBtn" id="step-4">3 steps</a> --> <a class="bkStepsBtn" id="step-5" href="https://www.kindlife.in/3-step-cosrx-skincare-routine/">3 steps</a> <!--<a class="bkStepsBtn" id="step-7">7 steps</a> --> </div> </div> <script> $(".bkStepsBtn").mouseover(function(){ $(this).parents(".bk_newcat_block").addClass($(this).attr('id')+'-active'); $(this).parents(".bk_steps_toggle_wrap").find('.bk_steps_pid_block').css('display','none'); $(this).parents(".bk_steps_toggle_wrap").find('.'+$(this).attr('id')).css('display','block'); }); $(".bkStepsBtn").mouseout(function(){ $(this).parents(".bk_newcat_block").removeClass($(this).attr('id')+'-active'); }); $(".bk_steps_pid_wrap,.bk_steps_toggle_wrap").mouseleave(function(){ $('.bk_steps_pid_block').css('display','none'); }); </script>";} 0 10835 2 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en Global beauty skincare routine
5542 3264 a:1:{s:7:"content";s:123:" <div class="bk_block_heading"> <h2>Pocket-sized must-haves</h2> <!-- <p>K-beauty bestseller routines</p> --> </div>";} 0 12960 2 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en Pocket-sized must-haves
7017 3305 a:3:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:41:"68889,68893,68890,68891,68892,68894,68888";}s:10:"show_block";s:2:"AW";s:11:"enable_ajax";s:1:"N";} 0 13216 bk_toggle_pids pid_carousal_3 2 A products a:20:{s:8:"template";s:37:"blocks/products/products_scroller.tpl";s:10:"show_price";s:1:"Y";s:8:"hide_tag";s:1:"N";s:19:"hide_certifications";s:1:"N";s:17:"enable_quick_view";s:1:"N";s:11:"show_rating";s:1:"Y";s:15:"show_brand_name";s:1:"Y";s:17:"show_share_button";s:1:"N";s:15:"show_short_desc";s:1:"N";s:24:"not_scroll_automatically";s:1:"Y";s:15:"scroll_per_page";s:1:"N";s:5:"speed";s:3:"400";s:11:"pause_delay";s:1:"3";s:13:"item_quantity";s:1:"5";s:15:"thumbnail_width";s:3:"400";s:18:"outside_navigation";s:1:"Y";s:10:"promo_text";s:1:"N";s:16:"key_product_info";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";s:10:"block_type";s:6:"slider";} 0 1 en HP Dear Darling Water Gel Tints pids
7158 3340 a:1:{s:7:"content";s:3944:"<style> .bk_toggle_pids.show { display: block; } .new_design_wrap img { cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease; height: auto !important; } ul.bk_sub-cat_block.new_ctgry { margin: 0px; padding: 12px 5px 0px 5px; display: flex; gap: 15px; justify-content: space-between; } ul.new_design_wrap li { margin: 0px; flex: 0 0 20%; min-width: 100px; } li.new_design_wrap { flex: 0 0 25%; } ul.new_design_wrap li img { height: auto; } .bk_prod_desc.brands_d { font-size: 16px; text-align: center; margin-top: 6px; font-size: 14px; color: #444; } .bk_prod_desc.brands_d span { font-size: 16px; display: block; font-weight: 500; color: #000; } ul.bk_sub-cat_block.new_ctgry li img { width: 100%; } /* Zoom effect only for active */ .new_design_wrap.active img { transform: scale(1.08); filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.6)); border-radius: 12px; } @media (max-width: 767px) { ul.bk_sub-cat_block .new_design_wrap { width: 20%; min-width: 104px; } ul.bk_sub-cat_block.new_ctgry { margin: 25px 0 0; padding: 8px 5px 7px 5px; } } </style> <ul class="bk_sub-cat_block new_ctgry"> <li class="new_design_wrap active"> <a href="https://www.kindlife.in/real-barrier/"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/KBW-2602-real-barrier.webp" alt="Real-barrier"> </a> <div class="bk_prod_desc brands_d"> <span> Real Barrier</span></div> </li> <li class="new_design_wrap"> <a href="https://www.kindlife.in/dr.g/"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/kbw-1509-rrr-derma-dr-g2.webp" alt="dr-g"> </a> <div class="bk_prod_desc brands_d"> <span>Dr. G</span></div> </li> <li class="new_design_wrap"> <a href="https://www.kindlife.in/dr.-ceuracle/ "> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/kbw-1509-rrr-derma-neutrogena2.webp" alt="dr-cerucale"> </a> <div class="bk_prod_desc brands_d"><span>Dr. Ceuracle</span></div> </li> <!-- <li class="new_design_wrap"> <a href="https://www.kindlife.in/dr.-jart/ "> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/Kbeauty-0309-derma-dr-jart.webp" alt="Jart"> </a> <div class="bk_prod_desc brands_d"><span>Dr Jart</span></div> </li> --> </ul> <script> // Make clicked one zoomed (active) document.querySelectorAll(".new_design_wrap").forEach(item => { item.addEventListener("click", () => { document.querySelectorAll(".new_design_wrap").forEach(el => el.classList.remove("active")); item.classList.add("active"); }); }); </script>";} 0 12965 hidden-phone hidden-app 2 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en Derma brands desk categories
7052 3494 a:3:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:41:"28568,30064,66411,15216,35368,33717,32144";}s:10:"show_block";s:2:"AW";s:11:"enable_ajax";s:1:"N";} 0 13256 bk_steps_pid_block step-5 2 A products a:20:{s:8:"template";s:37:"blocks/products/products_scroller.tpl";s:10:"show_price";s:1:"Y";s:8:"hide_tag";s:1:"N";s:19:"hide_certifications";s:1:"N";s:17:"enable_quick_view";s:1:"N";s:11:"show_rating";s:1:"Y";s:15:"show_brand_name";s:1:"Y";s:17:"show_share_button";s:1:"N";s:15:"show_short_desc";s:1:"N";s:24:"not_scroll_automatically";s:1:"Y";s:15:"scroll_per_page";s:1:"N";s:5:"speed";s:3:"400";s:11:"pause_delay";s:1:"3";s:13:"item_quantity";s:1:"5";s:15:"thumbnail_width";s:3:"400";s:18:"outside_navigation";s:1:"Y";s:10:"promo_text";s:1:"N";s:16:"key_product_info";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";s:10:"block_type";s:6:"slider";} 0 1 en kbw pigmentation pids
7056 3557 a:3:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:82:"68896,33085,36293,3569,66720,68941,32129,37844,68608,65262,30055,30337,37177,67724";}s:10:"show_block";s:2:"AW";s:11:"enable_ajax";s:1:"N";} 0 13250 blocks/wrappers/mainbox_simple.tpl 2 A products a:20:{s:8:"template";s:37:"blocks/products/products_scroller.tpl";s:10:"show_price";s:1:"Y";s:8:"hide_tag";s:1:"N";s:19:"hide_certifications";s:1:"N";s:17:"enable_quick_view";s:1:"N";s:11:"show_rating";s:1:"Y";s:15:"show_brand_name";s:1:"Y";s:17:"show_share_button";s:1:"N";s:15:"show_short_desc";s:1:"N";s:24:"not_scroll_automatically";s:1:"Y";s:15:"scroll_per_page";s:1:"N";s:5:"speed";s:3:"400";s:11:"pause_delay";s:1:"3";s:13:"item_quantity";s:1:"5";s:15:"thumbnail_width";s:3:"400";s:18:"outside_navigation";s:1:"Y";s:10:"promo_text";s:1:"N";s:16:"key_product_info";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";s:10:"block_type";s:6:"slider";} 0 1 en Under-rated beauty hidden gems
5541 3679 a:1:{s:7:"content";s:2109:"<style> .bk_ticker_block { background-color: #79d0c5; display: flex; align-items: center; white-space: nowrap; overflow: hidden; } .bk_homepage-ticker { padding: 1rem; overflow: hidden; white-space: nowrap; position: relative; } .bk_homepage-ticker__content { display: inline-flex; white-space: nowrap; animation: marquee 15s linear infinite; } .bk_homepage-ticker__list { display: inline-flex; margin: 0 !important; padding: 0; } .bk_homepage-ticker__item { display: inline-flex; align-items: center; } .bk_homepage-ticker__item span { display: inline-block; color: #000; font-weight: 500; margin: 0 1rem; font-size: 2.2rem; } #bk_homepage-ticker__content_1-0:hover { animation-play-state: paused; } .bk_homepage-ticker__item:after { display: inline-block; content: "✦"; margin: 0 1rem; } /* Seamless marquee animation */ @keyframes marquee { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-50%, 0, 0); } } </style> <div class="bk_ticker_block"> <div class="bk_homepage-ticker"> <div class="bk_homepage-ticker__content"> <ul class="bk_homepage-ticker__list"> <li class="bk_homepage-ticker__item kiki"> <span class="bk_link__wrapper"> Today’s Onekl is cancelled due to technical difficulties. We will be back next week! </span> </li> </ul> <ul class="bk_homepage-ticker__list"> <li class="bk_homepage-ticker__item kiki"> <span class="bk_link__wrapper"> Today’s Onekl is cancelled due to technical difficulties. We will be back next week! </span> </li> </ul> </div> </div> </div>";} 0 12816 2 D smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:2:"30";} 0 1 en live page - ticker
7049 4010 a:1:{s:7:"content";s:1553:"<style> .bk_flex-block { display: flex; overflow: hidden; position: relative; border-radius: 12px; } .bk_flex-block picture img { width: 100%; } .bk_flex-block .animate { position: absolute; right: 0; bottom: 9%; width: 40%; pointer-events: none; } .watch-banner { margin-top: 20px; } div .bk_mainbox-heading { text-align: center; } .watch-banner.shop:not(:has(a)) { margin-bottom: -20px; } .watch-banner.shop a { position: absolute; inset: 0; z-index: 1; } @media (max-width: 600px) { .bk_flex-block .animate { bottom: 0; width: 44%; } .watch-banner.shop { margin: 10px auto 0; } .watch-banner.shop:not(:has(a)) { margin-bottom: 0; } } </style> <div class="strip_banner watch-banner shop"> <div class="bk_flex-block"> {if ($runtime.controller !== 'community' && $runtime.mode !== 'video')}<a href="https://www.kindlife.in/community" aria-label="kindlife community"></a>{/if} <picture> <source media="(max-width: 600px)" srcset="https://cdn.kindlife.in/images/banners/app-img/watch-shop-banner0512.png"> <img src="https://cdn.kindlife.in/images/banners/app-img/watch-shop-desk.png" alt="watch-shop-banner" width="1200" height="270" loading="lazy"/> </picture> <img class="animate" src="https://cdn.kindlife.in/images/banners/app-img/watch-shop-animation.gif" alt="watch-shop-animation" loading="lazy"/> </div> </div>";} 0 13670 2 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en comm banner - shop and scroll banner (for multiple pages)
2195 3 a:1:{s:4:"menu";s:1:"1";} 0 3321 top-quick-links 3 A menu a:2:{s:8:"template";s:26:"blocks/menu/text_links.tpl";s:18:"show_items_in_line";s:1:"Y";} 0 1 en Quick links
2190 212 0 3308 top-wishlist bk-pull-right 3 A template a:1:{s:8:"template";s:58:"addons/my_changes/blocks/static_templates/wishlist_2bk.tpl";} 0 1 en wishlist_2bk
2188 230 a:1:{s:7:"content";s:269:"<div onclick="return goToPreviousPage()" ><img src="images/back_bt.svg" ></div> <script> function goToPreviousPage(){ if(document.referrer.indexOf(window.location.hostname) !== -1){ window.history.back(); }else{ window.location.href = "/"; } } </script>";} 0 3304 bk_backBtn hidden-tablet hidden-desktop 3 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en back-button
2183 621 a:1:{s:7:"content";s:228:"<script> const queryString = window.location.search; const urlParams = new URLSearchParams(queryString); if(urlParams.has('app_header')){ $('.tygh-header').css("display", "none"); } </script>";} 0 4173 3 D smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en hide header for app
7509 683 a:1:{s:7:"content";s:6888:"<style type="text/css"> .bk_ticker-block.steps-ticker-bg { background-color: #4d4dae; margin: 0px 0 10px; } .bk_homepage-ticker { padding: 0.3rem 1rem; overflow: hidden; white-space: nowrap; } #bk_homepage-ticker__content_1-0 { animation: marquee 40s linear infinite forwards; } #bk_homepage-ticker__content_1-0:hover { animation-play-state: paused; } .bk_homepage-ticker__content { display: inline-block; } .bk_homepage-ticker__list { display: inline-block; margin-bottom: 0; margin-left: 0 !important; } .bk_homepage-ticker__item { display: inline-flex; align-items: center; } .bk_homepage-ticker__item span { display: inline-block; color: #fff; font-weight: 500; margin: 0 10px; font-size: 16px; } .bk_homepage-ticker__link .bk_link__wrapper { padding-bottom: 0.0625rem; } .bk_homepage-ticker__item:after { display: inline-block; content: "✦"; margin: 0 1rem; color: #fff; } .bk_homepage-ticker__item a { background: #fff; color: #fff; border-radius: 22px; line-height: 28px; display: inline-block; padding: 0 10px; margin: 0 1rem; } .bk_homepage-ticker__item a:hover { text-decoration: underline !important; } @-webkit-keyframes marquee { 0% { transform: translateX(0) } 100% { transform: translateX(-33.3333%) } } @keyframes marquee { 0% { transform: translateX(0) } 100% { transform: translateX(-33.3333%) } } @media (max-width: 767px) { .bk_ticker-block.steps-ticker-bg, .bk_ticker-block.album-ticker-bg { margin-top: 0px; } .bk_ticker-block { margin:20px 0 10px ; } .bk_ticker-block h2 { font-size: 13px; } .bk_homepage-ticker__item:after { margin: 0 1rem; } .bk_homepage-ticker__item a { line-height: 26px; padding: 0 8px; margin: 0 0.4rem; font-size: 12px; } .bk_homepage-ticker__item span { font-size: 14px; } } </style> <div class="bk_ticker-block steps-ticker-bg"> <div class="bk_homepage-ticker"> <div id="bk_homepage-ticker__content_1-0" class="bk_homepage-ticker__content"> <ul class="bk_homepage-ticker__list"> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step-1 Cleanser </span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step-1 Cleanser </span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step-1 Cleanser </span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step-1 Cleanser </span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step-1 Cleanser </span> </li> </ul> <ul class="bk_homepage-ticker__list"> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step-1 Cleanser </span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step-1 Cleanser </span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step-1 Cleanser </span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step-1 Cleanser </span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper">Step-1 Cleanser </span> </li> </ul> <ul class="bk_homepage-ticker__list"> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step-1 Cleanser </span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper">Step-1 Cleanser </span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step-1 Cleanser </span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper">Step-1 Cleanser </span> </li> <li class="bk_homepage-ticker__item"> <span class="bk_link__wrapper"> Step-1 Cleanser</span> </li> </ul> </div> </div> </div>";} 0 12031 3 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en Fab 40 ticker
5542 2704 a:3:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:101:"37276,58526,66776,39121,37615,67160,26971,66861,65541,65071,32163,66699,39913,18019,36710,66700,65538";}s:10:"show_block";s:2:"AW";s:11:"enable_ajax";s:1:"N";} 0 12961 3 A products a:20:{s:8:"template";s:37:"blocks/products/products_scroller.tpl";s:10:"show_price";s:1:"Y";s:8:"hide_tag";s:1:"N";s:19:"hide_certifications";s:1:"N";s:17:"enable_quick_view";s:1:"N";s:11:"show_rating";s:1:"Y";s:15:"show_brand_name";s:1:"Y";s:17:"show_share_button";s:1:"N";s:15:"show_short_desc";s:1:"N";s:24:"not_scroll_automatically";s:1:"Y";s:15:"scroll_per_page";s:1:"N";s:5:"speed";s:3:"400";s:11:"pause_delay";s:1:"3";s:13:"item_quantity";s:1:"5";s:15:"thumbnail_width";s:3:"400";s:18:"outside_navigation";s:1:"Y";s:10:"promo_text";s:1:"N";s:16:"key_product_info";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";s:10:"block_type";s:6:"slider";} 0 1 en Skincare minis kit
5779 3263 a:1:{s:7:"content";s:1860:"<style> .bk_grid_block { display: grid; gap: 10px; margin: 0px !important; overflow: auto hidden; padding-bottom: 0px; } ul.bk_grid_block.bk_1x3_grid.coupons-hp { justify-content: space-evenly; } ul.bk_grid_block.bk_1x3_grid.coupons-hp li { list-style: none; } .bk_1x3_grid.coupons-hp { grid-template-columns: repeat(3, minmax(250px, 30%)); column-gap: 20px; } @media (max-width: 480px) { .bk_1x3_grid.coupons-hp { grid-template-columns: repeat(3, minmax(250px, 80%)); column-gap: 10px; } } </style> <div class="strip_banner"> <ul class="bk_grid_block bk_1x3_grid coupons-hp"> <li><a href="https://www.kindlife.in/kbeauty/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-0311-coupons-klove.png" alt="img" width="400" height="120" loading="lazy"></a> </li> <li><a href="https://www.kindlife.in/skincare-l/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-2210coupon-01111.png" alt="img" width="400" height="120" loading="lazy"></a> </li> <li><a href="https://www.kindlife.in/cokodive/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-2210coupon-0333.png" alt="img" width="400" height="120" loading="lazy"></a> </li> </ul> </div>";} 0 12928 3 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en coupons for multiple pages
7052 3534 a:3:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:40:"3978,70272,33717,65550,37891,65261,68361";}s:10:"show_block";s:2:"AW";s:11:"enable_ajax";s:1:"N";} 0 12485 bk_steps_pid_block step-11 3 A products a:20:{s:8:"template";s:37:"blocks/products/products_scroller.tpl";s:10:"show_price";s:1:"Y";s:8:"hide_tag";s:1:"N";s:19:"hide_certifications";s:1:"N";s:17:"enable_quick_view";s:1:"N";s:11:"show_rating";s:1:"Y";s:15:"show_brand_name";s:1:"Y";s:17:"show_share_button";s:1:"N";s:15:"show_short_desc";s:1:"N";s:24:"not_scroll_automatically";s:1:"Y";s:15:"scroll_per_page";s:1:"N";s:5:"speed";s:3:"400";s:11:"pause_delay";s:1:"3";s:13:"item_quantity";s:1:"5";s:15:"thumbnail_width";s:3:"400";s:18:"outside_navigation";s:1:"Y";s:10:"promo_text";s:1:"N";s:16:"key_product_info";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";s:10:"block_type";s:6:"slider";} 0 1 en kbw sensitive skin pids
5541 3658 a:1:{s:7:"content";s:517:"<div class="strip_banner"> <a href="https://www.kindlife.in/buy-1-get-2/"> <img style="border:2px solid #fbff12;" class="hidden-phone" src="https://cdn.kindlife.in/images/banners/landing-page/BFS-lp/BFS-2511-buy2-strip-desk.gif" loading="lazy" width="1200" height="300"> <img style="border:2px solid #fbff12;" class="hidden-tablet hidden-desktop" src="https://cdn.kindlife.in/images/banners/landing-page/BFS-lp/BFS-2511-buy2-strip-mob.gif" loading="lazy" width="700" height="300"> </a> </div> ";} 0 13511 3 D smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en BFS buy 1 get 2 strip
7158 3722 a:1:{s:7:"content";s:3263:"<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css" /> <style> /* Container */ .brandSwiper { width: 100%; padding: 20px 0 0; } /* Wrapper (acts like swiper-wrapper) */ .brand-wrapper { display: flex; margin-top: 20px; transition-property: transform; box-sizing: content-box; } /* Slides */ .brand-slide { flex-shrink: 0; width: auto; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; transition: transform 0.3s ease, opacity 0.3s ease; opacity: 0.5; } .brand-slide img { max-width: 180px; height: auto; transition: transform 0.3s ease; transform: scale(0.85); } /* Active Slide */ .brand-slide-active { opacity: 1; } .brand-slide-active img { transform: scale(1.2); } /* Text */ .category-text { margin-top: 17px; font-size: 14px; color: #666; transition: all 0.3s ease; } .brand-slide-active .category-text { font-size: 16px; font-weight: 400; color: #000; } .brand { display: block; font-weight: bold; } /* Non-active slide dimmed */ .brand-slide:not(.brand-slide-active) img { filter: brightness(70%); } </style> <!-- Swiper Container --> <div class="swiper brandSwiper"> <div class="brand-wrapper"> <div class="brand-slide"> <a href="https://www.kindlife.in/real-barrier/"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/KBW-2602-real-barrier.webp" alt="Real-barrier"> </a> <div class="category-text"> <span class="brand">Real barrier</span> </div> </div> <div class="brand-slide"> <a href="https://www.kindlife.in/dr.g/"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/kbw-1509-rrr-derma-dr-g2.webp" alt="dr-g"> </a> <div class="category-text"> <span class="brand">Dr. G</span> </div> </div> <div class="brand-slide"> <a href="https://www.kindlife.in/dr.-ceuracle/ "> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/kbw-1509-rrr-derma-neutrogena2.webp" alt="dr-cerucale"> </a> <div class="category-text"> <span class="brand">Dr. ceuracle</span> </div> </div> <!-- <div class="brand-slide"> <a href="https://www.kindlife.in/dr.-jart/ "> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/Kbeauty-0309-derma-dr-jart.webp" alt="Jart"> </a> <div class="category-text"> <span class="brand">Dr. jart</span> </div> </div> --> </div> </div> <script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script> <script> var brandSwiper = new Swiper(".brandSwiper", { slidesPerView: 3, centeredSlides: true, loop: true, autoplay: { delay: 2000, disableOnInteraction: false, }, wrapperClass: "brand-wrapper", // custom wrapper slideClass: "brand-slide", // custom slide slideActiveClass: "brand-slide-active", // custom active containerModifierClass: "brand-", // prefix breakpoints: { 0: { slidesPerView: 1.9 }, 768: { slidesPerView: 3 } } }); </script>";} 0 12966 hidden-tablet hidden-desktop 3 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en KBW derma scroller mob
7056 3838 a:3:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:51:"67165,37831,9457,66856,7265,63942,69844,66517,14827";}s:10:"show_block";s:2:"AW";s:11:"enable_ajax";s:1:"N";} 0 13265 blocks/wrappers/mainbox_simple.tpl 3 A products a:20:{s:8:"template";s:37:"blocks/products/products_scroller.tpl";s:10:"show_price";s:1:"Y";s:8:"hide_tag";s:1:"N";s:19:"hide_certifications";s:1:"N";s:17:"enable_quick_view";s:1:"N";s:11:"show_rating";s:1:"Y";s:15:"show_brand_name";s:1:"Y";s:17:"show_share_button";s:1:"N";s:15:"show_short_desc";s:1:"N";s:24:"not_scroll_automatically";s:1:"Y";s:15:"scroll_per_page";s:1:"N";s:5:"speed";s:3:"400";s:11:"pause_delay";s:1:"3";s:13:"item_quantity";s:1:"5";s:15:"thumbnail_width";s:3:"400";s:18:"outside_navigation";s:1:"Y";s:10:"promo_text";s:1:"N";s:16:"key_product_info";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";s:10:"block_type";s:6:"slider";} 0 1 en TRENDING ON KINDLIFE
5543 4037 a:3:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:35:"13925,17976,32130,66832,39930,65261";}s:10:"show_block";s:2:"AW";s:11:"enable_ajax";s:1:"N";} 0 13649 bk_toggle_pids pid_carousal_6 3 D products a:20:{s:8:"template";s:37:"blocks/products/products_scroller.tpl";s:10:"show_price";s:1:"Y";s:8:"hide_tag";s:1:"N";s:19:"hide_certifications";s:1:"N";s:17:"enable_quick_view";s:1:"N";s:11:"show_rating";s:1:"Y";s:15:"show_brand_name";s:1:"Y";s:17:"show_share_button";s:1:"N";s:15:"show_short_desc";s:1:"N";s:24:"not_scroll_automatically";s:1:"Y";s:15:"scroll_per_page";s:1:"N";s:5:"speed";s:3:"400";s:11:"pause_delay";s:1:"3";s:13:"item_quantity";s:1:"5";s:15:"thumbnail_width";s:3:"400";s:18:"outside_navigation";s:1:"Y";s:10:"promo_text";s:1:"N";s:16:"key_product_info";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";s:10:"block_type";s:6:"slider";} 0 1 en Holidy sale green tea pids
2188 171 a:1:{s:7:"content";s:416:"<div class="bk-kindlife-logo"> <a href="/index.php" title="online shopping" itemprop="url"> <img class="kiki-main-logo" src="https://cdn.kindlife.in/images/lotti-icons/Kindlife-logo.png" alt="kiki-logo" width="130" height="25"> </a> </div> <div class="bk-kindluxe-logo" style="display: none;"> <img src="https://cdn.kindlife.in/images/ui_icon/kindluxe-logo.png" alt="kindluxe logo"> </div>";} 0 3305 top-logo 4 A html_block a:1:{s:8:"template";s:21:"blocks/html_block.tpl";} 0 1 en Logo_2BK
2190 187 a:1:{s:7:"content";s:90:"<div> <a href="#"><i class="ty-notification__icon ty-icon-notificationxd"></i> </a> </div>";} 0 3309 top-notification bk-pull-right 4 D html_block a:1:{s:8:"template";s:21:"blocks/html_block.tpl";} 0 1 en new notification
2183 1143 a:1:{s:7:"content";s:1961:"<style> body div.ui-dialog .ui-dialog-titlebar { padding: 10px 15px; } body div.ui-dialog .ui-dialog-titlebar .ui-dialog-title.bk_popup-title { font-size: 22px; } body div.ui-widget-content.ui-dialog .bk_pop-up_content .buttons-container { margin-top: 10px; } .bk_review_popup_new img { border: 1px solid #f2f2f2; padding: 5px; } .ty-product-review-new-product-review__media .ty-fileuploader__drop-zone--visible .ty-fileuploader__drop-zone-text { text-transform: none; font-weight: 400; } body .ui-dialog .ui-dialog-titlebar { border-bottom: 1px solid #d3d3d3; } .bk_review_popup_new .ty-control-group__title { font-size: 16px; font-weight: 500; color: #000; } @media(max-width: 480px) { .bk_review_popup_new.k-ty-product-review .ty-control-group .ty-product-review-rate+div { width: 90px; height: 90px; } /* .bk_review_popup_new.k-ty-product-review .ty-product-review-new--review__body { height: 445px; } */ .bk_review_popup_new textarea { min-height: 160px; } .ui-dialog.ui-corner-all.ui-widget.ui-widget-content.ui-front.dialog-auto-sized.bk_popup-containers { width: 100% !important; height: 100% !important; border-radius: 0px !important; max-height: 100vh !important; } .bk_popup-containers.ui-dialog .ui-dialog-titlebar { border-bottom: none; } /* .bk_review_popup_new .ty-btn.ty-btn__primary { width: 100%; border-radius: 0; height: 45px; } */ .bk_popup-containers .ui-dialog-content.ui-widget-content { padding: 0; } .bk_review_popup_new.ty-product-review-new-product-review.k-ty-product-review { margin-top: 10px; } .bk_pop-up_content.k-ty-product-review .ty-product-review-new--review__body section { padding: 0; } } </style>";} 0 6282 4 D smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en popup review css
5541 2222 a:3:{s:5:"width";s:0:"";s:6:"height";s:0:"";s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:15:"344,345,346,347";}} 0 10653 hidden-app hidden-phone 4 D banners a:6:{s:8:"template";s:34:"addons/banners/blocks/carousel.tpl";s:10:"navigation";s:1:"D";s:5:"delay";s:1:"3";s:10:"block_type";s:19:"horizontal_scroller";s:15:"kl_is_promotion";s:1:"N";s:17:"kl_promotion_name";s:0:"";} 0 1 en Global beauty banner web
5543 2739 a:3:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:46:"69310,36291,38680,13933,3562,69036,67165,37830";}s:10:"show_block";s:2:"AW";s:11:"enable_ajax";s:1:"N";} 0 12216 bt_scroller_mobile jisoo 4 D products a:20:{s:8:"template";s:37:"blocks/products/products_scroller.tpl";s:10:"show_price";s:1:"Y";s:8:"hide_tag";s:1:"N";s:19:"hide_certifications";s:1:"N";s:17:"enable_quick_view";s:1:"N";s:11:"show_rating";s:1:"Y";s:15:"show_brand_name";s:1:"Y";s:17:"show_share_button";s:1:"N";s:15:"show_short_desc";s:1:"N";s:24:"not_scroll_automatically";s:1:"Y";s:15:"scroll_per_page";s:1:"N";s:5:"speed";s:3:"400";s:11:"pause_delay";s:1:"3";s:13:"item_quantity";s:1:"5";s:15:"thumbnail_width";s:3:"400";s:18:"outside_navigation";s:1:"Y";s:10:"promo_text";s:1:"N";s:16:"key_product_info";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";s:10:"block_type";s:6:"slider";} 0 1 en KBW Holiday Bestsellers pids
7052 2833 a:3:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:41:"37893,65234,65370,17987,28570,30043,67439";}s:10:"show_block";s:2:"AW";s:11:"enable_ajax";s:1:"N";} 0 10348 bk_steps_pid_block step-10 4 A products a:20:{s:8:"template";s:37:"blocks/products/products_scroller.tpl";s:10:"show_price";s:1:"Y";s:8:"hide_tag";s:1:"N";s:19:"hide_certifications";s:1:"N";s:17:"enable_quick_view";s:1:"N";s:11:"show_rating";s:1:"Y";s:15:"show_brand_name";s:1:"Y";s:17:"show_share_button";s:1:"N";s:15:"show_short_desc";s:1:"N";s:24:"not_scroll_automatically";s:1:"Y";s:15:"scroll_per_page";s:1:"N";s:5:"speed";s:3:"400";s:11:"pause_delay";s:1:"3";s:13:"item_quantity";s:1:"5";s:15:"thumbnail_width";s:3:"250";s:18:"outside_navigation";s:1:"Y";s:10:"promo_text";s:1:"N";s:16:"key_product_info";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";s:10:"block_type";s:6:"slider";} 0 1 en KBW aging pids
7056 3222 a:1:{s:7:"content";s:168:"<div class="bk_block_heading"> <h2>MAKEUP MUST HAVES</h2> <p><a href="https://www.kindlife.in/makeup/?features_hash=19-61552-61562-59745">Show more</a> </p> </div>";} 0 11693 4 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en kbw - Makeup must haves for every function (title)
7158 3510 a:1:{s:7:"content";s:2738:"<style> .bk_1x6_grid-lg.scroll.brands_luv { grid-template-columns: repeat(4, max(270px, 28%)); row-gap: 12px; margin: 0px !important; } @media (max-width: 480px) { .bk_1x6_grid-lg.scroll.brands_luv { grid-template-columns: repeat(2, 65%) !important; column-gap: 10px; row-gap: 10px; } } </style> <div class="bk_block_heading"> <h2>#FOUNDITFIRST</h2> <p style="padding-bottom:0px;">Global ingredients of the future </p> </div> <ul class="bk_grid_block bk_1x6_grid-lg scroll brands_luv"> <li><a href="https://www.kindlife.in/red-booster-reedle-shot-700-30ml/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-0804-foundit-drgaon.webp" alt="img" width="400" height="200" loading="lazy"></a> </li> <li><a href="https://www.kindlife.in/beyond-beyond/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-0804-foundit-nad+.webp" alt="img" width="400" height="200" loading="lazy"></a> </li> <li><a href="https://www.kindlife.in/cica-exosome-moisture-mask-20ea/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-0804-foundit-exosomes.webp" alt="img" width="400" height="200" loading="lazy"></a> </li> <li><a href="https://www.kindlife.in/?dispatch=kl_products.kl_search&match=all&subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=Peptide"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-0804-foundit-peptides.webp" alt="img" width="400" height="200" loading="lazy"></a> </li> <li><a href="https://www.kindlife.in/pdrn/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-0804-foundit-pdrn1.webp" alt="img" width="400" height="200" loading="lazy"></a> </li> <li><a href="https://www.kindlife.in/matcha-en/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-0804-foundit-matcha.webp" alt="img" width="400" height="200" loading="lazy"></a> </li> <li><a href="https://www.kindlife.in/black-snail-collagen/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-0804-foundit-black-snail.webp" alt="img" width="400" height="200" loading="lazy"></a> </li> <li><a href="https://www.kindlife.in/black-truffle-reedle-shot-100-50ml"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-0804-foundit-black.webp" alt="img" width="400" height="200" loading="lazy"></a> </li> </ul>";} 0 13212 4 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en HP #FOUNDITFIRST
2190 231 a:1:{s:7:"content";s:227:"<div class="open_search_box"> <button class="open-searchBtn" type="button" aria-label="search" title="search" fdprocessedid="n5vsdu"> <img src="images/search_bt.svg" alt="search" width="24" height="24"> </button> </div>";} 0 3310 top-search bk-pull-right hidden-desktop hidden-tablet 5 A html_block a:1:{s:8:"template";s:21:"blocks/html_block.tpl";} 0 1 en search_bt
7056 764 a:3:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:41:"30122,69380,68977,68903,69307,66765,30112";}s:10:"show_block";s:2:"AW";s:11:"enable_ajax";s:1:"N";} 0 12036 5 A products a:20:{s:8:"template";s:37:"blocks/products/products_scroller.tpl";s:10:"show_price";s:1:"Y";s:8:"hide_tag";s:1:"N";s:19:"hide_certifications";s:1:"N";s:17:"enable_quick_view";s:1:"N";s:11:"show_rating";s:1:"N";s:15:"show_brand_name";s:1:"Y";s:17:"show_share_button";s:1:"N";s:15:"show_short_desc";s:1:"N";s:24:"not_scroll_automatically";s:1:"Y";s:15:"scroll_per_page";s:1:"N";s:5:"speed";s:3:"400";s:11:"pause_delay";s:1:"3";s:13:"item_quantity";s:1:"5";s:15:"thumbnail_width";s:3:"200";s:18:"outside_navigation";s:1:"Y";s:10:"promo_text";s:1:"N";s:16:"key_product_info";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";s:10:"block_type";s:6:"slider";} 0 1 en kbw - Makeup must haves for every function (pids)
2183 2166 a:1:{s:7:"content";s:5916:"<style> div .search-typeahead .search-input { background: #FFFFFF99; border: 1px solid #EAE9EC; } .tygh-header .hamburgur_icon, .tygh-header .top-logo, .tygh-header .top-wishlist, .tygh-header .top-notification, .tygh-header .ty-dropdown-box, .tygh-header .top-search, .tygh-header .bk_backBtn { position: relative; line-height: 60px; height: 60px; width: 50px; text-align: center; padding: 0; } .tygh-header .bk_backBtn{ cursor: pointer; width: 40px; } .tygh-header .top-wishlist a, .tygh-header .top-notification a, .tygh-header .ty-dropdown-box a, .tygh-header .top-logo a, .tygh-header .hamburgur_icon a { display: block; padding: 0; float: none; } .tygh-header .top-logo { width: 130px; } .tygh-header .top-logo svg { vertical-align: middle; } .tygh-header .hamburgur_icon a i, .tygh-header .hamburger-btn i, .tygh-header .ty-wishlist, .tygh-header .ty-minicart__icon { font-size: 24px; vertical-align: middle; color: #1b1c1e; position: static; display: inline-block; } .tygh-header .bk_backBtn img { width: 22px; } .open_search_box { padding: 0; width: 100%; } .open_search_box button, .bk_backBtn .go-back-btn, .tygh-header .hamburger-btn { background: transparent; border: 0; line-height: inherit; width: 100%; padding: 0; } .open_search_box button img { width: 24px; } .ty-minicart-title { position: absolute; width: 18px; height: 18px; color: #fff; font-size: 10px; font-weight: 600; line-height: 18px; text-align: center; right: 5px; top: 10px; background: #F07F87; -webkit-border-radius: 100%; -moz-border-radius: 100%; border-radius: 100%; box-sizing: content-box; border: #fff solid 1px; } .ty-search-block_1 form { position: relative; margin: 0 10px 0; height: auto; line-height: 60px; } button.ty-icon-magnifiercartxdnew { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; border: none; background: url('../../../../../../../../design/themes/new_2bk/media/images/banners/home-page/magnifier_icon1.png?1678953024') no-repeat; background-size: 18px 18px; opacity: 50%; } .ty-search-block_1 form input.ty-search-block__input { display: inline-block; padding: 7px 30px 7px 10px; width: 100%; height: 40px; border: none; border-radius: 30px; background-color: rgba(237,242,248,0.45); -webkit-transition: all .2s ease-in-out; -moz-transition: all .2s ease-in-out; -o-transition: all .2s ease-in-out; transition: all .2s ease-in-out; } .ty-search-block__input:focus { background-color: #fcfcfc; } .bk_overlay-search_cat { position: fixed; display: none; width: 100%; height: 100%; top: 0; left: 0; right: 0; bottom: 0; background-color: #fff; z-index: 100; } .tygh-header .bk_backBtn1 { line-height: 40px; height: 40px; min-width: 40px; text-align: center; position: relative; margin: 0; padding: 0; } .tygh-header .bk_backBtn1 img { width: 22px; cursor: pointer; } .tygh-header .ty-search-block_category_bk form.search-form { position: static; } .ty-search-block_category_bk .ca-search-results { border-radius: 0; } input.ty-search-block__input_category_bk { padding: 10px 30px 10px 15px !important; flex: 1; height: 48px !important; border: 1px solid #EFEAFB !important; border-radius: 22px !important; background-color: #F6F9FF !important; -webkit-transition: all .2s ease-in-out; -moz-transition: all .2s ease-in-out; -o-transition: all .2s ease-in-out; transition: all .2s ease-in-out; } input.ty-search-block__input_category_bk:focus { border-color: #ccc; } span.search_textDelete { position: absolute; right: 15px; top: 50%; margin-top: -6px; display: none; cursor: pointer; } div.ty-search-block_1 { margin: 0; padding: 0; border: 0; width: 100%; } div.ty-dropdown-box__title { padding: 0; border: 0; position: static; display: block; } div .ca-product-title { margin: 0; } div .ca-product-brand { font-size: 13px; } .ca-product-price { font-weight: 500; } @media (max-width: 766px){ .top-cart { padding-right: 0px; } .tygh-header .top-logo { width: 116px; } } @media (max-width: 480px){ .tygh-header .hamburgur_icon, .tygh-header .top-wishlist, .tygh-header .top-notification, .tygh-header .ty-dropdown-box, .tygh-header .top-search, .tygh-header .bk_backBtn { width: 40px; line-height: 50px; height: 50px; } .tygh-header .top-logo, .ty-search-block_1 form { line-height: 50px; height: 50px; } .ca-product-item { grid-template-columns: 50px 1fr; } } .banners .owl-controls { position: absolute; bottom: 0; margin: 0; width: 100%; } .banners.owl-carousel .owl-wrapper-outer { border-radius: 10px; } .banners.owl-carousel .owl-item { padding: 0; } .owl-controls .owl-pagination { text-align: center; } div.owl-theme .owl-controls .owl-page span { width: 10px; transition: all 1s; } .owl-theme .owl-controls .owl-page.active span { width: 20px; } .owl-carousel:not(.owl-theme):not(.owl-one-theme):not(.owl-more-theme) { white-space: nowrap; overflow: hidden; } .owl-carousel:not(.owl-theme):not(.owl-one-theme):not(.owl-more-theme) > * { display: inline-block; } </style>";} 0 9388 5 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en top header icons temp css
5542 3263 a:1:{s:7:"content";s:1860:"<style> .bk_grid_block { display: grid; gap: 10px; margin: 0px !important; overflow: auto hidden; padding-bottom: 0px; } ul.bk_grid_block.bk_1x3_grid.coupons-hp { justify-content: space-evenly; } ul.bk_grid_block.bk_1x3_grid.coupons-hp li { list-style: none; } .bk_1x3_grid.coupons-hp { grid-template-columns: repeat(3, minmax(250px, 30%)); column-gap: 20px; } @media (max-width: 480px) { .bk_1x3_grid.coupons-hp { grid-template-columns: repeat(3, minmax(250px, 80%)); column-gap: 10px; } } </style> <div class="strip_banner"> <ul class="bk_grid_block bk_1x3_grid coupons-hp"> <li><a href="https://www.kindlife.in/kbeauty/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-0311-coupons-klove.png" alt="img" width="400" height="120" loading="lazy"></a> </li> <li><a href="https://www.kindlife.in/skincare-l/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-2210coupon-01111.png" alt="img" width="400" height="120" loading="lazy"></a> </li> <li><a href="https://www.kindlife.in/cokodive/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-2210coupon-0333.png" alt="img" width="400" height="120" loading="lazy"></a> </li> </ul> </div>";} 0 12018 5 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en coupons for multiple pages
5543 3650 a:1:{s:7:"content";s:4787:"<style> .bk_1x4_grid { grid-template-columns: repeat(4, minmax(200px, 1fr)); } ul.bk_grid_block.bk_1x4_grid.blog-content { list-style: none; padding: 0; } .blog-content li { display: flex; flex-flow: column; } .blog-content .bk_prod_desc { text-align: left; padding-top: 0; } .bk_prod_desc.text-xl.brand-desc { background: #f7d8d7; font-size: 16px; padding: 40px 8px 3px; margin-top: 0; border-radius: 0 0 6px 6px; display: flex; flex-flow: column; gap: 14px; flex: 1; position: relative; } .bk_prod_desc.text-xl.brand-desc img { max-width: 50%; height: 20px; width: auto; object-fit: contain; border-radius: 0; position: absolute; top: 12px; } .bk_prod_desc.brand-desc.big-h img { height: 32px; top: 6px; } .bk_prod_desc.text-xl.brand-desc br { display: none; } .bk_prod_desc.text-xl.brand-desc span, .bk_prod_desc.text-xl.brand-desc { font-weight: 600; color: #333; } .bk_grid_block li img { border-radius: 6px 6px 0 0; width: 100%; height: auto; } @media (max-width: 600px) { .bk_1x4_grid { grid-template-columns: repeat(2, 1fr); } } </style> <div class="bk_block_container"> <div class="bk_block_heading"> <h2>GLASS SKIN ESSENTIALS</h2> </div> <ul class="bk_grid_block bk_1x4_grid blog-content"> <li><a href="https://www.kindlife.in/coxir/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-0611-brands-cosir3.webp" alt="img" loading="lazy" width="300" height="400"> </a> <div class="bk_prod_desc text-xl brand-desc"><img src="https://cdn.kindlife.in/images/banners/hp-images/HP-0611-brands-coxir-logo1.png" alt=""> <span>30% off</span> <!-- <span>50% off</span> --> </div> </li> <li><a href="https://www.kindlife.in/the-face-shop/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-0611-brands-face-shop-logo3.webp" alt="img" loading="lazy" width="300" height="400"> </a> <div class="bk_prod_desc text-xl brand-desc"><img src="https://cdn.kindlife.in/images/banners/hp-images/HP-0611-brands-face-shop-logo.png" alt=""> <span>Up to 33% off</span> </div> </li> <li><a href="https://www.kindlife.in/mary-and-may/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-0611-brands-mary.webp" alt="img" loading="lazy" width="300" height="400"> </a> <div class="bk_prod_desc text-xl brand-desc"><img src="https://cdn.kindlife.in/images/banners/hp-images/HP-0611-brands-mary-logo.png" alt=""> <span>25% off</span> </div> </li> <li><a href="https://www.kindlife.in/skin-food/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-0611-brands-skinfood4.webp" alt="img" loading="lazy" width="300" height="400"> </a> <div class="bk_prod_desc text-xl brand-desc"><img src="https://cdn.kindlife.in/images/banners/hp-images/HP-0611-brands-skinfood-logo.png" alt=""> <span>30% off</span> </div> </li> <li><a href="https://www.kindlife.in/numbuz-n/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-0611-brands-numbuzin3.webp" alt="img" loading="lazy" width="300" height="400"> </a> <div class="bk_prod_desc text-xl brand-desc"><img src="https://cdn.kindlife.in/images/banners/hp-images/HP-0611-brands-numbuzin-logo.png" alt=""> <span>30% off </span> </div> </li> <li><a href="https://www.kindlife.in/iunik/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-0611-brands-iunik4.webp" alt="img" loading="lazy" width="300" height="400"> </a> <div class="bk_prod_desc text-xl brand-desc"><img src="https://cdn.kindlife.in/images/banners/hp-images/HP-0611-brands-iunik-logo.png" alt=""> <span>25% off</span> <!-- <span>50% off</span> --> </div> </li> <li><a href="https://www.kindlife.in/isntree/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-0611-brands-isntree4.webp" alt="img" loading="lazy" width="300" height="400"> </a> <div class="bk_prod_desc text-xl brand-desc"><img src="https://cdn.kindlife.in/images/banners/hp-images/HP-0611-brands-isntree-logo.png" alt=""> <span> 30% off</span> </div> </li> <li><a href="https://www.kindlife.in/klairs/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-0611-brands-klairs4.webp" alt="img" loading="lazy" width="300" height="400"> </a> <div class="bk_prod_desc text-xl brand-desc"><img src="https://cdn.kindlife.in/images/banners/hp-images/HP-0611-brands-klairs-logo.png" alt=""> <span>30% off</span> </div> </li> </ul> </div>";} 0 13518 5 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en kbw GLASS SKIN ESSENTIALS
5541 3815 a:1:{s:7:"content";s:6245:"<style> .protein-desc { text-align: center; } .protein-desc span.deal-discount { color: #d6000a; font-weight: 500; } .bk_new_grid-lg.scroll.kbw-category { grid-template-columns: repeat(7, max(166px, 14%)); gap: 10px; list-style: none; justify-content: space-between; margin: 5px 0 0 0; } ul.bk_grid_block.bk_new_grid-lg.scroll.kbw-category li { padding: 0; text-align: center; } ul.bk_grid_block.bk_new_grid-lg.scroll.kbw-category li img { width: 100%; } .protein-desc p { font-weight: 500; font-family: "Cormorant Garamond", serif; font-size: 18px; line-height: 1; padding-bottom: 0; } .protein-desc span { /* color: #f7725c; */ color: #d6000a; font-size: 18px; /* font-weight: 500; */ } @media (max-width: 480px) { .bk_new_grid-lg.scroll.kbw-category { grid-template-columns: repeat(7, 30%) !important; gap: 5px; } ul.bk_grid_block.bk_new_grid-lg.scroll.kbw-category li { padding: 0; } .protein-desc p { font-size: 16px; } .protein-desc span { font-size: 15px; font-weight: 500; } } </style> <ul class="bk_grid_block bk_new_grid-lg scroll kbw-category"> {* <li><a href="https://www.kindlife.in/all-day-airy-mineral-sunscreen-spf50-pa-with-zinc-for-acne-prone-and-sensitive-skin-60gm/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-Daily-Drops1407.gif" alt="Klairs - 50% off" width="160" height="160" loading="lazy"></a> <div class="protein-desc"> <p>Klairs</p> <span class="deal-discount">50% off</span> </div> </li> *} <li><a href="https://www.kindlife.in/sunscreen101/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-0607-drip-top-ctgry-sunscreen.webp" alt="Sunscreens - Save up to 50%" width="160" height="160" loading="lazy"></a> <div class="protein-desc"> <p>Sunscreens</p> <!-- <span>Up to 88% off</span> --> </div> </li> <li><a href="https://www.kindlife.in/skincare-l/cleansers/" data-category-id="2686"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-0607-drip-top-ctgry-cleansers.webp" alt="Cleansers - Save up to 50% " width="160" height="160" loading="lazy"> </a> <div class="protein-desc"> <p>Cleansers</p> <!-- <span>Up to 70% off</span> --> </div> </li> <li><a href="https://www.kindlife.in/skincare-l/toners/?sort_by=bestsellers&sort_order=desc" data-category-id="2710"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-0607-drip-top-ctgry-toner.webp" alt="TonersSave up to 70%" width="160" height="160" loading="lazy"> </a> <div class="protein-desc"> <p>Toners</p> <!-- <span>Up to 80% off</span> --> </div> </li> <li><a href="https://www.kindlife.in/skincare-l/serums/?sort_by=bestsellers&sort_order=desc" data-category-id="2827"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-0607-drip-top-ctgry-serums1.webp" alt="SerumsSave up to 50%" width="160" height="160" loading="lazy"> </a> <div class="protein-desc"> <p>Serums</p> <!-- <span>Up to 60% off</span> --> </div> </li> <li><a href="https://www.kindlife.in/skincare-l/moisturisers/?sort_by=bestsellers&sort_order=desc" data-category-id="2705"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-0607-drip-top-ctgry-moisturisers.webp" alt="MoisturisersSave up to 45% " width="160" height="160" loading="lazy"> </a> <div class="protein-desc"> <p>Moisturisers</p> <!-- <span>Up to 82% off</span> --> </div> </li> <li><a href="https://www.kindlife.in/makeup-marvel/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-0607-drip-top-ctgry-makeup.webp" alt="Makeup Up to 60% off" width="160" height="160" loading="lazy"></a> <div class="protein-desc"> <p>Makeup</p> <!-- <span>Up to 75% off</span> --> </div> </li> <li><a href="https://www.kindlife.in/tools-makeup-kit-and-brushes/?sort_by=timestamp&sort_order=desc&aff_id=430361" data-category-id="3304"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-0607-drip-top-ctgry-tools1.webp" alt="ToolsUp to 75% off" width="160" height="160" loading="lazy"></a> <div class="protein-desc"> <p>Tools</p> <!-- <span>Up to 75% off</span> --> </div> </li> </ul>";} 0 13817 5 D smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:4:"1200";} 0 1 en HP summer sale top categories
7158 3831 a:1:{s:7:"content";s:1952:"<div class="bk_block_heading"> <h2>THE ONES YOU ALMOST MISSED</h2> </div> <ul class="bk_grid_block bk_1xnew_grid"> <li><a href="https://www.kindlife.in/rovectin//"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/KBW-1012-forgotten-rovectin.webp" alt="img" width="400" height="200" loading="lazy"></a> </li> <li><a href="https://www.kindlife.in/the-face-shop/"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/KBW-1012-forgotten-face-shop.webp" alt="img" width="400" height="200" loading="lazy"></a> </li> <li><a href="https://www.kindlife.in/haruharu-wonder/"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/KBW-1012-forgotten-haruharu.webp" alt="img" width="400" height="200" loading="lazy"></a> </li> <li><a href="https://www.kindlife.in/secret-key/"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/KBW-1012-forgotten-secret-key1.webp" alt="img" width="400" height="200" loading="lazy"></a> </li> <li><a href="https://www.kindlife.in/mirabelle/"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/KBW-1012-forgotten-mirabelle.webp" alt="img" width="400" height="200" loading="lazy"></a> </li> <li><a href="https://www.kindlife.in/xenrix/"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/KBW-1012-forgotten-xenriz.webp" alt="img" width="400" height="200" loading="lazy"></a> </li> <!-- <li><a href="https://www.kindlife.in/biodance/"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/KBW-1012-forgotten-biodance.webp" alt="img" width="400" height="200" loading="lazy"></a> </li> --> </ul>";} 0 13238 5 D smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en kbw THE ONES YOU ALMOST MISSED
2190 232 a:1:{s:7:"content";s:60:"<div> <a href="#"><img src="images/share_bt.svg"></a> </div>";} 0 3311 top-share bk-pull-right 6 D html_block a:1:{s:8:"template";s:21:"blocks/html_block.tpl";} 0 1 en share_bt
7056 553 a:1:{s:7:"content";s:1471:"<div class="strip_banner shadow"> <a href="https://www.kindlife.in/etude/"> <img class="desktop" src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/LP-etude-Sunscreen2210-desk1.webp" loading="lazy" width="1200" height="500"> <img class="mobile" src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/LP-etude-Sunscreen2210-mob1.webp" loading="lazy" width="700" height="450"> </a> </div> <script> $(document).ready(function () { // Initially show only pid_carousal_1 content $('.pid_carousal_1').css('display', 'block'); $(".bk_toggle_circle_five").click(function () { // Image highlight toggle $(".bk_toggle_circle_five img").removeClass("active-img").addClass("inactive-img"); $(this).find("img").removeClass("inactive-img").addClass("active-img"); // Optional: card active class $(this).addClass("active").siblings().removeClass("active"); // Content toggle logic const blockId = $(this).attr('id'); // e.g., 'pid_carousal_1' $(this).parents(".bk_toggle_container").find('.bk_toggle_pids, .bk_cat-toggle_more-link').hide(); $(this).parents(".bk_toggle_container").find('.' + blockId).show(); }); }); </script>";} 0 12588 6 D smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en kbw - etude banner
2183 2143 a:1:{s:7:"content";s:363:"<style> .ty-mainbox-body button:active, .correct-scroller .ty-scroller-list__item:active, .bk_header_right a i:active, .ty-banner__image-item:active, .ty-wysiwyg-content button:active, .ty-wysiwyg-content a svg:active{ filter: opacity(0.6); } .ty-wysiwyg-content a:active, .ty-wysiwyg-content a img:active{ filter: contrast(0.8); } </style>";} 0 9594 6 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en faded effect css for all buttons/links
5541 2837 a:1:{s:7:"content";s:2226:"<div class="bk_block_container" style="margin-top: 10px;"> <ul class="bk_sub-cat_block"> <li><a href="https://www.kindlife.in/korean-beauty/makeup/?sort_by=on_sale&sort_order=desc"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/KBW-1010-top-ctgry-makeup.webp" alt="img" loading="lazy"></a> <div class="bk_prod_desc">Makeup <p class="bauOffer">Up to 40% off</p> <!-- <p>Up to 50% off</p> --> </div> </li> <li><a href="https://www.kindlife.in/korean-beauty/skincare/cleansers "> <img src="https://cdn.kindlife.in/images/banners/category/Kbw-1309-top-ctgry-cleanser.webp" alt="img" loading="lazy"></a> <div class="bk_prod_desc">Cleansers <p class="bauOffer">Up to 40% off</p> <!-- <p>Up to 50% off</p> --> </div> </li> <li><a href="https://www.kindlife.in/korean-beauty/skincare/toners"> <img src="https://cdn.kindlife.in/images/banners/category/Kbw-1309-top-ctgry-toners.webp" alt="img" loading="lazy"></a> <div class="bk_prod_desc">Toners <p class="bauOffer">Up to 35% Off</p> <!-- <p>Up to 50% off</p> --> </div> </li> <li><a href="https://www.kindlife.in/korean-beauty/skincare/face-serums-and-oils/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-1811-kbeauty-ctgry-serum.webp" alt="img" loading="lazy"></a> <div class="bk_prod_desc">Serums <p class="bauOffer">Up to 36% off</p> <!-- <p>Up to 50% off</p> --> </div> </li> <li><a href="https://www.kindlife.in/korean-beauty/skincare/moisturisers"> <img src="https://cdn.kindlife.in/images/banners/category/Kbw-1309-top-ctgry-Moisturisers.webp" alt="img" loading="lazy"></a> <div class="bk_prod_desc">Moisturisers <p class="bauOffer">Up to 35% off</p> <!-- <p>Up to 50% off</p> --> </div> </li> <li><a href="https://www.kindlife.in/korean-beauty/skincare/sun-care"> <img src="https://cdn.kindlife.in/images/banners/category/Kbw-1309-top-ctgry-Sunscreens.webp" alt="img" loading="lazy"></a> <div class="bk_prod_desc">Sunscreens <p class="bauOffer">Up to 35% off</p> <!-- <p>Up to 50% off</p> --> </div> </li> </ul> </div>";} 0 10352 6 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en Global beauty top categories
5543 4020 a:1:{s:7:"content";s:2189:"<style> .bk_new_grid-lg.scroll.glass-skin { grid-template-columns: repeat(4, max(204px, 24%)); list-style: none; margin: 0px; } @media (max-width: 768px) { .bk_new_grid-lg.scroll.glass-skin { grid-template-columns: repeat(2, 55%); } } </style> <div class="bk_block_heading"> <h2>HOLI GLOW FT KBEAUTY</h2> </div> <ul class="bk_grid_block bk_new_grid-lg scroll glass-skin"> <li><a href="https://www.kindlife.in/coxir/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-1702-holi-glow-coxir.webp" alt="img" width="400" height="120" loading="lazy"></a> </li> <li><a href="https://www.kindlife.in/the-face-shop/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-1702-holi-glow-face-shop.webp" alt="img" width="400" height="120" loading="lazy"></a> </li> <li> <a href="https://www.kindlife.in/skinfood/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-1702-holi-glow-skinfood.webp" alt="img" width="400" height="120" loading="lazy"></a> </li> <li><a href="https://www.kindlife.in/numbuz-n/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-1702-holi-glow-numbuzin1.webp" alt="img" width="400" height="120" loading="lazy"> </a> </li> <li><a href="https://www.kindlife.in/iunik/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-1702-holi-glow-iunik.webp" alt="img" width="400" height="120" loading="lazy"></a> </li> <li><a href="https://www.kindlife.in/isntree/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-1702-holi-glow-isntree1.webp" alt="img" width="400" height="120" loading="lazy"></a> </li> <li><a href="https://www.kindlife.in/klairs/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-1702-holi-glow-klairs.webp" alt="img" width="400" height="120" loading="lazy"></a> </li> <li><a href="https://www.kindlife.in/korean-beauty/skincare/?aff_id=313097&features_hash=19-46555"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-1702-holi-glow-apieu.webp" alt="img" width="400" height="120" loading="lazy"></a> </li> </ul>";} 0 13616 6 D smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en KBW HOLI GLOW FT KBEAUTY
2190 4 0 3312 blocks/wrappers/onclick_dropdown.tpl top-my-account bk_topMyAccount 7 D my_account a:1:{s:8:"template";s:21:"blocks/my_account.tpl";} 0 1 en My Account
5541 3307 a:1:{s:7:"content";s:4366:"<style> .xyz-section { padding: 0; } .xyz-row { display: flex; justify-content: space-between; gap: 100px; } /* each set */ .xyz-set { flex: 1; min-width: 420px; } .xyz-subheading { font-size: 22px; font-weight: 400; margin-top: 10px; margin-bottom: 10px; text-align: center; } .xyz-images { display: flex; gap: 10px; } .xyz-card { text-align: center; width: 100%; } .xyz-card a { border-radius: 10px; overflow: hidden; } .xyz-card img { width: 100%; border-radius: 5px; display: block; transition: transform .4s ease; } /* .xyz-card:hover img{ transform:scale(1.05); } */ .xyz-name { margin-top: 8px; font-size: 15px; font-weight: 500; } /* MOBILE SCROLL */ @media(max-width:768px) { .xyz-row { overflow-x: auto; scroll-snap-type: x mandatory; gap: 40px; padding-bottom: 10px; } .xyz-row::-webkit-scrollbar { display: none; } .xyz-set { flex: 0 0 85%; scroll-snap-align: start; } .xyz-heading { font-size: 26px; } .xyz-subheading { font-size: 18px; } } </style> <div class="xyz-section"> <div class="bk_block_heading"> <h2>CO- SIGNED BY THE GIRLS</h2> </div> <div class="xyz-row"> <!-- SET 1 --> <div class="xyz-set"> <div class="xyz-subheading">The Queen Bee & The It Girl</div> <div class="xyz-images"> <div class="xyz-card"> <img src="https://cdn.kindlife.in/images/banners/landing-page/Girls-girl-sale/Girls-girl-0603-co-signed-queen-bee1.webp"> <div class="bk_prod_desc">Queen Bee</div> </div> <div class="xyz-card"> <img src="https://cdn.kindlife.in/images/banners/landing-page/Girls-girl-sale/Girls-girl-0603-co-signed-it-girl1.webp"> <div class="bk_prod_desc">IT GIRL</div> </div> </div> </div> <!-- SET 2 --> <div class="xyz-set"> <div class="xyz-subheading">The Planner & The Pretty Problem</div> <div class="xyz-images"> <div class="xyz-card"> <img src="https://cdn.kindlife.in/images/banners/landing-page/Girls-girl-sale/Girls-girl-0603-co-signed-the-planner1.webp"> <div class="bk_prod_desc">The planner</div> </div> <div class="xyz-card"> <img src="https://cdn.kindlife.in/images/banners/landing-page/Girls-girl-sale/Girls-girl-0603-co-signed-pretty-problem1.webp"> <div class="bk_prod_desc">The pretty problem</div> </div> </div> </div> </div> </div>";} 0 13251 bauOffer 7 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en kbw Hero banners
5543 4146 a:3:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:35:"66427,30034,65572,31306,67725,70258";}s:10:"show_block";s:2:"AW";s:11:"enable_ajax";s:1:"N";} 0 14086 blocks/wrappers/mainbox_simple.tpl 7 A products a:20:{s:8:"template";s:37:"blocks/products/products_scroller.tpl";s:10:"show_price";s:1:"Y";s:8:"hide_tag";s:1:"N";s:19:"hide_certifications";s:1:"N";s:17:"enable_quick_view";s:1:"N";s:11:"show_rating";s:1:"Y";s:15:"show_brand_name";s:1:"Y";s:17:"show_share_button";s:1:"N";s:15:"show_short_desc";s:1:"N";s:24:"not_scroll_automatically";s:1:"Y";s:15:"scroll_per_page";s:1:"N";s:5:"speed";s:3:"400";s:11:"pause_delay";s:1:"3";s:13:"item_quantity";s:1:"5";s:15:"thumbnail_width";s:3:"400";s:18:"outside_navigation";s:1:"Y";s:10:"promo_text";s:1:"N";s:16:"key_product_info";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";s:10:"block_type";s:6:"slider";} 0 1 en The Holi Secret List
2190 334 a:1:{s:7:"content";s:1361:"<style> .bk_top_Btns_wrap { display: flex; align-items: center; column-gap: 12px; height: 60px; } .bk_top_Btns_wrap a, .bk_top_Btns_wrap button { display: flex; align-items: center; column-gap: 5px; color: #000000; line-height: 32px; padding: 0 10px; border-radius: 50px; margin: 0; font-size: 14px; background: #FFFFFF99; border: 1px solid #EAE9EC; } .bk_top_Btns_wrap a:hover, .bk_top_Btns_wrap button:hover { border: 1px solid #1C2B2D; } .bk_top_Btns_wrap img { width: 16px; } @media (max-width:900px){ .bk_kikiAi-tab { display: none; } } </style> <div class="bk_top_Btns_wrap"> <div class="bk_kikiAi-tab"> <!-- <button class="discover-with-ai-btn askMeAnything-openChatBtns"> --> <a class="discover-with-ai-btn" href="/ask-me-anything"> <img src="https://cdn.kindlife.in/images/ui_icon/bk-sparkle-icon.svg" alt="kiki-ai icon"> <span class="kiki-btnText">Discover with Ai</span> </a> </div> <div class="bk_community-tab"> <a href="https://www.kindlife.in/community" title="Watch"> <img src="https://cdn.kindlife.in/images/ui_icon/bk-watchPlay-icon.svg" alt="watch icon"> <span>Watch</span> </a> </div> </div>";} 0 3314 hidden-phone bk_communityBtn 8 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en Community / watch tabs
5541 440 a:1:{s:7:"content";s:5139:"<!-- Swiper CSS --> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css" /> <style> .kl-hero-slider { overflow: hidden; margin: auto; margin-top: 30px; } .kl-hero-slider .kl-slider-track { display: flex; will-change: transform; } .kl-hero-slider .kl-slide img { border-radius: 10px; display: block; height: auto; } /* PAGINATION BELOW BANNER */ .kl-hero-slider .kl-pagination { position: relative; margin-top: 15px; text-align: center; } /* Black dots */ .kl-hero-slider .swiper-pagination-bullet { background: #000; opacity: 0.4; width: 8px; height: 8px; } .kl-hero-slider .swiper-pagination-bullet-active { background: #000; opacity: 1; } @media screen and (max-width: 600px) { .kl-hero-slider { margin-top: 25px; } } </style> <div class="swiper kl-hero-slider"> <div class="swiper-wrapper kl-slider-track"> <div class="swiper-slide kl-slide"> <a href="https://www.kindlife.in/cosrx-collection/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-102-hb-cosrx.webp" alt="cosrx banner" fetchpriority="high" width="600" height="500"> </a> </div> <div class="swiper-slide kl-slide"> <a href="https://www.kindlife.in/im-from/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-102-hb-im-from.webp" alt="im-from banner" fetchpriority="high" width="600" height="500"> </a> </div> <div class="swiper-slide kl-slide"> <a href="https://www.kindlife.in/skin1004/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-102-hb-skin1004.webp" alt="skin1004 banner" fetchpriority="high" width="600" height="500"> </a> </div> <div class="swiper-slide kl-slide"> <a href="https://www.kindlife.in/beauty-of-joseon-collection/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-102-hb-boj.webp" alt="beauty-of-joseon banner" loading="lazy" width="600" height="500"> </a> </div> <div class="swiper-slide kl-slide"> <a href="https://www.kindlife.in/axis-y/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-102-hb-axis-y.webp" alt="axis-y banner" loading="lazy" width="600" height="500"> </a> </div> <div class="swiper-slide kl-slide"> <a href="https://www.kindlife.in/vt-cosmetics/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-102-hb-vt.webp" alt="vt-cosmetics banner" loading="lazy" width="600" height="500"> </a> </div> <div class="swiper-slide kl-slide"> <a href="https://www.kindlife.in/mary-and-may/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-102-hb-mary-and-may2.png" loading="lazy" width="600" height="500"> </a> </div> <div class="swiper-slide kl-slide"> <a href="https://www.kindlife.in/biodance/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-102-hb-biodance.webp" loading="lazy" width="600" height="500"> </a> </div> </div> <!-- Pagination --> <div class="swiper-pagination kl-pagination"></div> </div> <!-- Swiper JS --> <script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script> <script> const sliderEl = document.querySelector(".kl-hero-slider"); const slideCount = sliderEl.querySelectorAll(".kl-slide").length; const klSwiper = new Swiper(".kl-hero-slider", { slidesPerView: 1, centeredSlides: true, spaceBetween: 20, loop: true, autoplay: { delay: 3000, disableOnInteraction: false, pauseOnMouseEnter: true, }, pagination: { el: ".kl-pagination", clickable: true, }, breakpoints: { 768: { slidesPerView: slideCount >= 3 ? 2.5 : slideCount, centeredSlides: slideCount < 3, spaceBetween: 20, }, 480: { slidesPerView: slideCount >= 3 ? 2 : slideCount, centeredSlides: slideCount < 3, }, }, }); function adjustSliderCenter() { const wrapper = document.querySelector(".kl-hero-slider .kl-slider-track"); if (slideCount < 3) { wrapper.style.justifyContent = "center"; } else { wrapper.style.justifyContent = ""; } } adjustSliderCenter(); </script>";} 0 10647 8 D smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en kbw holi Hero banners
2190 805 a:1:{s:7:"content";s:2657:"<div class="bk_logo-container"> <div class="bk-kiki-icon"> <a href="/index.php" aria-label="kindlife-logo"> <img class="kiki-icon" src="https://cdn.kindlife.in/images/lotti-icons/footer-kiki-active.svg" alt="kiki-icon" width="24" height="24"> </a> </div> <div class="open_search_box"> <span class="open-searchArea">kiki.ai is here to help you</span> <button class="open-searchIcon" type="button" aria-label="search" title="search"> <img src="images/search_bt.svg" alt="search" width="24" height="24"> </button> </div> </div> <script> const logoBlock = document.querySelector(".mobile_menus"); const searchBlock = document.querySelector(".search-block"); const iconBlock = document.querySelector(".bk_header_right"); window.addEventListener("scroll", () => { if (window.scrollY <= 100) { logoBlock.classList.remove("scroll-active"); searchBlock.classList.remove("scroll-active"); iconBlock.classList.remove("scroll-active"); } else { logoBlock.classList.add("scroll-active"); searchBlock.classList.add("scroll-active"); iconBlock.classList.add("scroll-active"); } }); </script> <style> .kiki-icon, .bk_searchBox { display: none; } .bk-kiki-icon a { width: 32px; height: 40px; display: flex; align-items: center; justify-self: center; } .bk_logo-container { display: flex; align-items: center; gap: 10px; height: 50px; } @media (max-width: 767px) { .header-grid .bk_container .row-fluid { display: flex; justify-content: space-between; } .header-grid .bk_container .row-fluid:after, .header-grid .bk_container .row-fluid:before{ display: none; } .header-grid .bk_container .row-fluid > div { width: auto; } .tygh-header .scroll-active.mobile_menus { display: none; } .header-grid .bk_container .search-block { flex: 1; } .bk_searchBox .open_search_box { display: flex; align-items: center; background: #FFFFFF99; border: 1px solid #EAE9EC; height: 36px; border-radius: 22px; padding-left: 15px; color: #0006; } .bk_searchBox, .open-searchArea { width: 100%; } .bk_searchBox .open-searchIcon { width: 36px; opacity: 0.5; height: 36px; padding: 7px; margin-right: 6px; } .scroll-active :is(.hamburgur_icon,.kiki-main-logo,.top-search) { display: none !important; } .scroll-active :is(.kiki-icon,.bk_searchBox) { display: inline-block; } .scroll-active .search-input-container { height: 50px; } } </style>";} 0 4452 bk_perfectMatch_Tab hidden-phone 9 D smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en search box - show on scroll
5541 4266 a:1:{s:7:"content";s:10347:"<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css" /> <style> .exclusive-card { text-decoration: none; color: #000; display: block; } .exclusive-media img { width: 100%; display: block; } .hero-discount { font-size: 35px; font-weight: 300; margin-top: 12px; } .exclusive-content { background: #E8DFD4; min-height: 240px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 10px 0; } .brand-logo { width: 120px; } .ap-wid { width: 90px; } .exclusive-content p { font-size: 22px; font-weight: 300; margin: 0; /* min-height: 55px; */ } .hero-discount { min-height: 24px; } .exclusive-media { overflow: hidden; } .exclusive-media img { width: 100%; height: 300px; object-fit: cover; display: block; } .hero-btns span { display: inline-block; background: #000; color: #fff; padding: 3px 10px; margin-top: 15px; letter-spacing: 1px; } .hero-video-slider .swiper-pagination { position: relative !important; bottom: 0 !important; margin-top: 6px; } .swiper-pagination { position: relative; margin-top: 15px; } .swiper-pagination-bullet-active { background: #000; } @media(max-width:768px) { .exclusive-content { min-height: 120px; } .exclusive-content p { font-size: 20px; min-height: auto; } .brand-logo { width: 100px; } .ap-wid { width: 80px; } .hero-discount { font-size: 25px; margin-top: 5px; } } </style> <div class="bk_block_heading"> <h2>THE KINDLIFE EXCLUSIVES</h2> </div> <div class="swiper hero-video-slider"> <div class="swiper-wrapper"> <!--Dewdap --> <div class="swiper-slide"> <a href="https://www.kindlife.in/dewdap/" class="exclusive-card"> <div class="exclusive-media"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-2606-excluisve-dewdap.gif" alt=""> </div> <div class="exclusive-content"> <img class="brand-logo" src="https://cdn.kindlife.in/images/banners/hp-images/HP-2606-exclusive-dewdap.png"> <p>Mindful skincare, backed by science</p> <div class="hero-discount">Save 25%</div> <span class="jl-btn">SHOP</span> </div> </a> </div> <!--Dewdap --> <div class="swiper-slide"> <a href="https://www.kindlife.in/brtc/" class="exclusive-card"> <div class="exclusive-media"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-2606-excluisve-brtc.gif" alt=""> </div> <div class="exclusive-content"> <img class="brand-logo" src="https://cdn.kindlife.in/images/banners/hp-images/HP-2606-exclusive-brtc.png"> <p>Korean derm care for stressed skin</p> <div class="hero-discount">Save 25%</div> <span class="jl-btn">SHOP</span> </div> </a> </div> <!-- CARD 1 --> <div class="swiper-slide"> <a href="https://www.kindlife.in/apieu-launch/" class="exclusive-card"> <div class="exclusive-media"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-2606-excluisve-apieu.gif" alt=""> </div> <div class="exclusive-content"> <img class="brand-logo ap-wid" src="https://cdn.kindlife.in/images/banners/landing-page/apieu-lp/Apieu-2206-hp-strip-logo.png"> <p>Witty K-Beauty charm</p> <div class="hero-discount">Save up to 50%</div> <span class="jl-btn">SHOP</span> </div> </a> </div> <!-- CARD 2 --> <div class="swiper-slide"> <a href="https://www.kindlife.in/frankly-launch/" class="exclusive-card"> <div class="exclusive-media"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-2606-excluisve-frankly.gif" alt=""> </div> <div class="exclusive-content"> <img class="brand-logo" src="https://cdn.kindlife.in/images/banners/hp-images/HP-1206-frankly-logo.png"> <p>Glow booster salmon PDRN serum</p> <div class="hero-discount">Save 20%</div> <span class="jl-btn">SHOP</span> </div> </a> </div> <!-- CARD 3 --> <div class="swiper-slide"> <a href="https://www.kindlife.in/seapuri-launch/" class="exclusive-card"> <div class="exclusive-media"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-2606-excluisve-seapuri.gif" alt=""> </div> <div class="exclusive-content"> <img class="brand-logo" src="https://cdn.kindlife.in/images/banners/hp-images/Seapuri-launch-top-logo.png"> <p>Korea’s #1 scalp serum is here</p> <div class="hero-discount">Save 25%</div> <span class="jl-btn">SHOP</span> </div> </a> </div> <!-- CARD 5 --> <div class="swiper-slide"> <a href="" class="exclusive-card"> <div class="exclusive-media"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-2606-excluisve-aplb.gif" alt=""> </div> <div class="exclusive-content"> <img class="brand-logo" src="https://cdn.kindlife.in/images/banners/hp-images/HP-2606-latest-aplb-logo.webp"> <p>Science-driven care for sensitive skin</p> <div class="hero-discount">Save 25%</div> <span class="jl-btn">SHOP</span> </div> </a> </div> <!-- CARD 6 --> <!-- <div class="swiper-slide"> </div> --> </div> <div class="swiper-pagination"></div> </div> <script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script> <script> new Swiper('.hero-video-slider', { loop: true, speed: 600, autoplay: { delay: 5000, disableOnInteraction: false }, pagination: { el: '.swiper-pagination', clickable: true }, breakpoints: { 0: { slidesPerView: 1, spaceBetween: 0 }, 769: { slidesPerView: 3, spaceBetween: 20 } } }); </script>";} 0 14059 9 D smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en HP exclusive swiper
5541 946 a:1:{s:7:"content";s:4503:"<!-- Swiper CSS --> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css" /> <style> .swiper-container.hero-banners { overflow: hidden; margin: auto; margin-top: 30px; } .hero-banners .swiper-wrapper { display: flex; will-change: transform; } .hero-banners .swiper-slide img { border-radius: 10px; display: block; } .productImg.weekend { display: none; } @media screen and (max-width: 600px) { .swiper-container.hero-banners { margin-top: 25px; } } </style> <div class="swiper-container hero-banners"> <div class="swiper-wrapper"> <div class="swiper-slide"><a href="https://www.kindlife.in/cosrx-collection/"> <img src="https://cdn.kindlife.in/images/banners/landing-page/full-moon-lp/fullmoon-hb0201-cosrx1.webp" alt="cosrx-collection-banner" loading="lazy" width="600" height="500"> </a> </div> <div class="swiper-slide"><a href="https://www.kindlife.in/im-from/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-3012-hb-imfrom122.webp" alt="im-from-banner" loading="lazy" width="600" height="500"></a></div> <div class="swiper-slide"><a href="https://www.kindlife.in/skin1004/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-3012-hb-skin10042.webp" alt="skin1004-banner" loading="lazy" width="600" height="500"> </a> </div> <div class="swiper-slide"><a href="https://www.kindlife.in/beauty-of-joseon-collection/"> <img src="https://cdn.kindlife.in/images/banners/landing-page/full-moon-lp/fullmoon-hb0201-Beauty-of-Joseon1.webp" alt="beauty-of-joseon-collection-banner" loading="lazy" width="600" height="500"></a> </div> <div class="swiper-slide"><a href="https://www.kindlife.in/biodance/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-3012-hb-biodance1.webp" alt="biodance-banner" loading="lazy" width="600" height="500"></a> </div> <div class="swiper-slide"><a href="https://www.kindlife.in/axis-y/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-3012-hb-axis-y1.webp" alt="axis-y-banner" loading="lazy" width="600" height="500"></a> </div> <div class="swiper-slide"><a href="https://www.kindlife.in/vt-cosmetics/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-3012-hb-vt1-skin2.webp" alt="vt-cosmetics-banner" loading="lazy" width="600" height="500"></a> </div> <div class="swiper-slide"><a href="https://www.kindlife.in/coxir/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-3012-hb-coxir2.webp" alt="coxir-banner" loading="lazy" width="600" height="500"></a> </div> </div> </div> <!-- Swiper JS --> <script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script> <script> const swiperEl = document.querySelector(".swiper-container"); const realSlides = swiperEl.querySelectorAll(".swiper-slide").length; // real banner count const swiper = new Swiper(".swiper-container", { slidesPerView: 1, // Mobile default centeredSlides: true, spaceBetween: 20, loop: true, // Infinite loop autoplay: { delay: 3000, disableOnInteraction: false, pauseOnMouseEnter: true, }, breakpoints: { 768: { slidesPerView: realSlides >= 3 ? 2.5 : realSlides, // Show peek if enough banners centeredSlides: realSlides < 3, spaceBetween: 20, }, 480: { slidesPerView: realSlides >= 3 ? 2 : realSlides, // Show peek if enough banners centeredSlides: realSlides < 3, }, }, }); function adjustCentering() { const wrapper = document.querySelector(".swiper-wrapper"); if (realSlides < 3) { wrapper.style.justifyContent = "center"; } else { wrapper.style.justifyContent = ""; } } adjustCentering(); </script>";} 0 13818 saleOffer 10 D smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en Full moon party - banners
5541 3836 a:1:{s:7:"content";s:10619:"<style> .kbw-banner-content { position: relative; } .bk_kbeauty_caption p { font-size: 16px; font-weight: 600; padding: 4px 0 0; } .kbw-text { position: absolute; top: 12%; left: 50%; transform: translateX(-50%); text-align: center; color: #fff; z-index: 2; } .kbw-text h1 { font-size: 28px; font-weight: 400; margin: 0; line-height: 1; } .kbw-text h2 { font-size: 18px; font-weight: 500; margin: 4px 0 0; } ul.kbw-banner-block { list-style-type: none; margin: 0; padding: 0; position: relative; padding-bottom: 10%; } ul.kbw-banner-block li { position: absolute; width: 15%; bottom: 0; transition: 0.5s; z-index: 1; } ul.kbw-banner-block li img { border: 1px solid #0002; border-radius: 16px; } .prod1 { left: 3%; } .prod2 { left: 23%; } .prod3 { left: 43%; } .prod4 { left: 63%; } .prod5 { left: 83%; } .bk_kbeauty_caption { text-align: center; color: #333; font-size: 14px; } @media (max-width: 768px) { .kbw-bg { display: none; } .kbw-banner-content { background-image: url('https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/kbw-2810-top-banner-bg-mob.webp'); background-size: cover; background-position: center; background-repeat: no-repeat; padding: 20px 10px 10px; } .kbw-text { position: relative; } .bk_kbeauty_caption p { font-size: 13px; } .kbw-text h1 { font-size: 20px; } .kbw-text h2 { font-size: 16px; margin-top: 6px; } ul.kbw-banner-block { display: grid; gap: 10px; grid-template-columns: repeat(3, minmax(130px, 1fr)); overflow-x: auto; margin-top: 10px; padding: 0; } ul.kbw-banner-block li { display: flex; flex-flow: column; justify-content: center; gap: 10px; position: static; width: 100%; } .kbw-banner-block .prod { border-radius: 12px; transition: 0.3s; } .kbw-banner-block .prod:hover { box-shadow: 2px 2px 5px #0005; } } </style> <section class="kbw-banner strip_banner"> <div class="kbw-banner-content"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/kbw-2810-top-banner-bg1.webp" alt="Clean Beauty Background" class="kbw-bg" /> <div class="kbw-text"> <h1>Trending K-Beauty</h1> <h2>You can't miss</h2> </div> <div class="kbw-banner-images hidden-phone"> <ul class="kbw-banner-block"> <li class="prod prod1"> <a href="https://www.kindlife.in/tranexamic-acidglutathione-eye-cream-30g/"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/KBW-3110-hb-011.webp" alt="Product 1" /></a> <div class="bk_kbeauty_caption"> <p>Mary and May</p> </div> </li> <li class="prod prod2"> <a href="https://www.kindlife.in/relief-sun-aqua-fresh-rice-b5-spf50-pa-50ml/"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/KBW-3110-hb-0222.webp" alt="Product 2" /></a> <div class="bk_kbeauty_caption"> <p>Beauty of Joseon </p> </div> </li> <li class="prod prod3"> <a href="https://www.kindlife.in/tea-tree-relief-serum-50ml/"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/KBW-3110-hb-033.webp" alt="Product 3" /></a> <div class="bk_kbeauty_caption"> <p>iUNIK</p> </div> </li> <li class="prod prod4"> <a href="https://www.kindlife.in/reedle-shot-100-50ml/"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/KBW-3110-hb-055.webp" alt="Product 5" /></a> <div class="bk_kbeauty_caption"> <p> VT Cosmetics</p> </div> </li> <li class="prod prod5"> <a href="https://www.kindlife.in/ultra-light-invisible-sunscreen/"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/KBW-3110-hb-0444.webp" alt="Product 4" /></a> <div class="bk_kbeauty_caption"> <p>Neaf Neaf</p> </div> </li> </ul> </div> <!-- MOBILE --> <div class="kbw-banner-images hidden-tablet hidden-desktop"> <ul class="kbw-banner-block"> <li class="kbw-images col1"> <figure> <a href="https://www.kindlife.in/relief-sun-aqua-fresh-rice-b5-spf50-pa-50ml/"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/KBW-3110-hb-0222.webp" alt="Product 1" class="prod" /></a> <p class="bk_kbeauty_caption">Beauty of Joseon</p> </figure> <figure> <a href="https://www.kindlife.in/reedle-shot-100-50ml/"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/KBW-0411-hb-02.webp" alt="Product 2" class="prod" /></a> <p class="bk_kbeauty_caption"> VT Cosmetics</p> </figure> </li> <li class="kbw-images col2"> <figure> <a href="https://www.kindlife.in/tranexamic-acidglutathione-eye-cream-30g/"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/KBW-0411-hb-03.webp" alt="Product 3" class="prod" /></a> <p class="bk_kbeauty_caption">Mary and May</p> </figure> </li> <li class="kbw-images col3"> <figure> <a href="https://www.kindlife.in/ultra-light-invisible-sunscreen/"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/KBW-0411-hb-04.webp" alt="Product 4" class="prod" /></a> <p class="bk_kbeauty_caption">Cosrx</p> </figure> <figure> <a href="https://www.kindlife.in/tea-tree-relief-serum-50ml/"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/KBW-0411-hb-051.webp" alt="Product 5" class="prod" /></a> <p class="bk_kbeauty_caption">iUNIK</p> </figure> </li> </div> </div> </section>";} 0 13252 11 D smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en kbw trending kbeauty 1x5
5541 3263 a:1:{s:7:"content";s:1860:"<style> .bk_grid_block { display: grid; gap: 10px; margin: 0px !important; overflow: auto hidden; padding-bottom: 0px; } ul.bk_grid_block.bk_1x3_grid.coupons-hp { justify-content: space-evenly; } ul.bk_grid_block.bk_1x3_grid.coupons-hp li { list-style: none; } .bk_1x3_grid.coupons-hp { grid-template-columns: repeat(3, minmax(250px, 30%)); column-gap: 20px; } @media (max-width: 480px) { .bk_1x3_grid.coupons-hp { grid-template-columns: repeat(3, minmax(250px, 80%)); column-gap: 10px; } } </style> <div class="strip_banner"> <ul class="bk_grid_block bk_1x3_grid coupons-hp"> <li><a href="https://www.kindlife.in/kbeauty/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-0311-coupons-klove.png" alt="img" width="400" height="120" loading="lazy"></a> </li> <li><a href="https://www.kindlife.in/skincare-l/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-2210coupon-01111.png" alt="img" width="400" height="120" loading="lazy"></a> </li> <li><a href="https://www.kindlife.in/cokodive/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-2210coupon-0333.png" alt="img" width="400" height="120" loading="lazy"></a> </li> </ul> </div>";} 0 13191 12 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en coupons for multiple pages
5541 4036 a:1:{s:7:"content";s:1861:"<div class="nl-carousel"> <div class="bk_block_heading"> <h2>JUST LAUNCHED</h2> </div> <div class="nl-swiper myNewLaunchSwiper"> <div class="nl-swiper-wrapper swiper-wrapper"> <div class="nl-slide swiper-slide"> <a href="https://www.kindlife.in/torriden/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-2502-just-launched-brand011.gif" alt="Nat habit" loading="lazy" /> </a> </div> <div class="nl-slide swiper-slide"> <a href="https://www.kindlife.in/ample-n/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-2502-just-launched-brand021.gif" alt="Nat habit" loading="lazy" /> </a> </div> </div> </div> </div> <script> const newLaunchSwiper = new Swiper(".myNewLaunchSwiper", { loop: true, slidesPerView: 2, spaceBetween: 12, autoplay: { delay: 2500, disableOnInteraction: false, }, pagination: { el: ".nl-pagination", clickable: true, }, breakpoints: { 0: { slidesPerView: 1 }, 768: { slidesPerView: 2 } } }); </script> <style> .nl-carousel { position: relative; margin: 0; overflow: hidden; } .nl-slide img { border-radius: 5px; display: block; } /* Pagination (dot indicators) */ .nl-pagination { text-align: center; margin-top: 12px; position: relative; } .nl-pagination .swiper-pagination-bullet { width: 8px; height: 8px; background: #ccc; opacity: 1; margin: 0 4px !important; transition: background 0.3s, transform 0.3s; } .nl-pagination .swiper-pagination-bullet-active { background: #333; transform: scale(1.1); } </style>";} 0 13639 13 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en KBW just launched strips
5541 3974 a:3:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:69:"36366,3963,68345,66516,39001,69314,39923,37916,3978,39054,69310,67165";}s:10:"show_block";s:2:"AW";s:11:"enable_ajax";s:1:"N";} 0 13551 blocks/wrappers/mainbox_simple.tpl 14 A products a:20:{s:8:"template";s:37:"blocks/products/products_scroller.tpl";s:10:"show_price";s:1:"Y";s:8:"hide_tag";s:1:"N";s:19:"hide_certifications";s:1:"N";s:17:"enable_quick_view";s:1:"N";s:11:"show_rating";s:1:"Y";s:15:"show_brand_name";s:1:"Y";s:17:"show_share_button";s:1:"N";s:15:"show_short_desc";s:1:"Y";s:24:"not_scroll_automatically";s:1:"Y";s:15:"scroll_per_page";s:1:"N";s:5:"speed";s:3:"400";s:11:"pause_delay";s:1:"3";s:13:"item_quantity";s:1:"5";s:15:"thumbnail_width";s:3:"400";s:18:"outside_navigation";s:1:"Y";s:10:"promo_text";s:1:"N";s:16:"key_product_info";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";s:10:"block_type";s:6:"slider";} 0 1 en 2026 Everyday Essentials
5541 923 a:1:{s:7:"content";s:4681:"<div class="bk_block_container"> <div class="bk_block_heading"> <h2>K-BEAUTY GLOW LIST</h2> </div> <ul class="bk_grid_block bk_1x10_grid"> <li> <a href=" https://www.kindlife.in/tranexamic-acidglutathione-eye-cream-30g/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-1602-glow-list-01.webp" alt="kbeauty bestseller img" width="200" height="250" loading="lazy"> </a> <div class="bk_prod_desc text-xl"> <div class="desktop"> Glutathione Eye Cream</div> <div class="mobile"> Glutathione Eye<br> Cream</div> <div class="bk_price"> <span class="old">₹1,850 </span> <span class="new">₹1,018 </span> </div> </div> </li> <li> <a href="https://www.kindlife.in/product-69361/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-1602-glow-list-02.webp" alt="kbeauty bestseller img" width="200" height="250" loading="lazy"> </a> <div class="bk_prod_desc text-xl"> <div class="desktop"> PDRN Capsule Cream</div> <div class="mobile"> PDRN Capsule <br> Cream</div> <div class="bk_price"> <span class="old">₹2,199</span> <span class="new"> ₹1,209</span> </div> </div> </li> <li> <a href="https://www.kindlife.in/freshly-juiced-vitamin-drop-35ml/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-1602-glow-list-03.webp" alt="kbeauty bestseller img" width="200" height="250" loading="lazy"> </a> <div class="bk_prod_desc text-xl"> <div class="desktop"> Vit C Serum</div> <div class="mobile"> Vit C <br> Serum</div> <div class="bk_price"> <span class="old">₹1,570</span> <span class="new">₹864 </span> </div> </div> </li> <li> <a href=" https://www.kindlife.in/cica-reedle-shot-100-essence-50ml/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-1602-glow-list-041.webp" alt="kbeauty bestseller img" width="200" height="250" loading="lazy"> </a> <div class="bk_prod_desc text-xl"> <div class="desktop">Reedle Shot 100</div> <div class="mobile">Reedle Shot <br>100</div> <div class="bk_price"> <span class="old">₹2,999 </span> <span class="new">₹1,649</span> </div> </div> </li> <li> <a href=" https://www.kindlife.in/ginseng-cleansing-oil-210ml/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-1602-glow-list-05.webp" alt="kbeauty bestseller img" width="200" height="250" loading="lazy"> </a> <div class="bk_prod_desc text-xl"> <div class="desktop"> Cleansing Oil</div> <div class="mobile"> Cleansing <br>Oil</div> <div class="bk_price"> <span class="old">₹1,670 </span> <span class="new">₹1,336</span> </div> </div> </li> </ul> </div>";} 0 13819 15 D smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en kbw K-BEAUTY GLOW LIST
5541 3108 a:1:{s:7:"content";s:1079:"<div class="bk_block_heading"> <h2>Exclusive on kindlife </h2> <p>Use <span class="bk_code"> GLOW10</span> for extra 10% off </p> <!-- <p>Use <span class="bk_code"> HALFPRICE</span> to get 50% off </p> --> </div> <div class="bk_block_container"> <ul class="bk_flex_block bk_1x3_block"> <li> <a href="https://www.kindlife.in/neafneaf"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/Kbw-0812-exclusive-neaf1.webp" alt="neafneaf-banner" width="350" height="200" loading="lazy"> </a> </li> <li> <a href="https://www.kindlife.in/frudia/"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/Kbw-0812-exclusive-frudia.webp" alt="frudia-banner" width="350" height="200" loading="lazy"> </a> </li> <li> <a href="https://www.kindlife.in/fresh-care-toner-trio-3-x-248ml/"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/Kbw-0812-exclusive-key.webp" alt="secret-key-banner" width="350" height="200" loading="lazy"> </a> </li> </ul> </div>";} 0 11001 16 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en kbeauty exclusive on kindlife 1x3
5541 4234 a:3:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:41:"38088,23671,66879,32931,66490,66858,70320";}s:10:"show_block";s:2:"AW";s:11:"enable_ajax";s:1:"N";} 0 14099 blocks/wrappers/mainbox_simple.tpl 17 A products a:20:{s:8:"template";s:37:"blocks/products/products_scroller.tpl";s:10:"show_price";s:1:"Y";s:8:"hide_tag";s:1:"N";s:19:"hide_certifications";s:1:"N";s:17:"enable_quick_view";s:1:"N";s:11:"show_rating";s:1:"Y";s:15:"show_brand_name";s:1:"Y";s:17:"show_share_button";s:1:"N";s:15:"show_short_desc";s:1:"N";s:24:"not_scroll_automatically";s:1:"Y";s:15:"scroll_per_page";s:1:"N";s:5:"speed";s:3:"400";s:11:"pause_delay";s:1:"3";s:13:"item_quantity";s:1:"5";s:15:"thumbnail_width";s:3:"400";s:18:"outside_navigation";s:1:"Y";s:10:"promo_text";s:1:"N";s:16:"key_product_info";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";s:10:"block_type";s:6:"slider";} 0 1 en SEEN ON K-BEAUTY FEEDS
5541 3835 a:1:{s:7:"content";s:2325:"<style> .schedule-wrap { margin: 0 auto; display: flex; flex-wrap: nowrap; } .schedule-wrap img { width: 100%; height: auto; display: block; } .broke-the-new-wrap { background-color: #fdd0b1; color: #000; text-align: center; border-radius: 5px 5px 0 0; padding: 10px; margin: 0; display: flex; justify-content: center; align-items: center; } .broke-the-new-wrap h2 { font-size: 25px; font-weight: 500; margin: 0px; color: #000; } /* ---- Mobile Styles ---- */ @media (max-width: 600px) { .schedule-wrap { overflow-x: auto; scroll-behavior: smooth; } .schedule-wrap a { flex: 0 0 29%; min-width: 26%; } .schedule-wrap img { width: 100%; height: auto; } .broke-the-new-wrap { padding: 5px; gap: 8px; } .broke-the-new-wrap h2 { font-size: 16px; font-weight: 500; } } </style> <div class="bk_block_heading"> <h2>The Kbeauty global faves</h2> <p>That broke the internet</p> </div> <div class="schedule-wrap"> <a href="https://www.kindlife.in/dear-darling-water-tint-04-red-grapefruit-ade/"> <img style="border-radius:0px 0 0 5px;" src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/kbw-2810-broke-etude-tint1.webp" alt=""></a> <a href="https://www.kindlife.in/vita-c-bright-cream-50ml/"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/kbw-2810-broke-rice-toner2.webp" alt=""></a> <a href="https://www.kindlife.in/centella-water-alcohol-free-toner-150ml/"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/kbw-2810-broke-rice-toner4.webp" alt=""></a> <a href="https://www.kindlife.in/radiance-fit-serum-foundation-n02-nude-30gm/"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/kbw-2810-broke-tirtir2.webp" alt=""></a> <a href="https://www.kindlife.in/madagascar-centella-ampoule-100ml/"> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/kbw-2810-broke-skin10041.webp" alt=""></a> <a href="https://www.kindlife.in/calming-lotus-sun-cream-spf50-pa-50ml/"> <img style="border-radius:0px 0px 5px 0px;" src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/kbw-2810-broke-boj3.webp" alt=""></a> </div> ";} 0 13249 18 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en kbw - The Kbeauty global faves
5541 3006 a:1:{s:7:"content";s:1701:"<style> .bk_grid_block.hot-kbeauty { grid-template-columns: repeat(3, 1fr); } @media (max-width: 600px) { .bk_grid_block.hot-kbeauty { grid-template-columns: repeat(2, 59%); } } </style> <div class="bk_block_heading"> <h2>HOT RN: KBEAUTY MAKEUP </h2> <p>Cushion compacts, tints & more</p> </div> <ul class="bk_grid_block hot-kbeauty"> <li><a href="https://www.kindlife.in/etude-launch"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-1301-hot-makeup-etude1.webp" alt="img" width="400" height="200" loading="lazy"></a> </li> <li><a href="https://www.kindlife.in/tfit/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-1301-hot-makeup-tfit1.webp" alt="img" width="400" height="200" loading="lazy"></a> </li> <li><a href="https://www.kindlife.in/tirtir/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-1301-hot-makeup-tirtir3.webp" alt="img" width="400" height="200" loading="lazy"></a> </li> <li><a href="https://www.kindlife.in/missha/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-1301-hot-makeup-missha3.webp" alt="img" width="400" height="200" loading="lazy"></a> </li> <li><a href="https://www.kindlife.in/dashing-diva/"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-1301-hot-makeup-dd2.webp" alt="img" width="400" height="200" loading="lazy"></a> </li> <li><a href="https://www.kindlife.in/beauty-of-majesty/?sort_by=bestsellers&sort_order=desc"> <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-1301-hot-makeup-beauty-majesty1.webp" alt="img" width="400" height="200" loading="lazy"></a> </li> </ul>";} 0 10798 19 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en KBW HOT RN: KBEAUTY MAKEUP
5541 3234 a:1:{s:7:"content";s:5114:"<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css" /> <style> /* Container */ .brandSwiper { width: 100%; padding: 20px 0 0; } /* Wrapper (acts like swiper-wrapper) */ .brand-wrapper { display: flex; margin-top: 20px; transition-property: transform; box-sizing: content-box; } /* Slides */ .brand-slide { flex-shrink: 0; width: auto; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; transition: transform 0.3s ease, opacity 0.3s ease; opacity: 0.5; } .brand-slide img { max-width: 180px; height: auto; transition: transform 0.3s ease; transform: scale(0.85); } /* Active Slide */ .brand-slide-active { opacity: 1; } .brand-slide-active img { transform: scale(1.2); } /* Text */ .category-text { margin-top: 17px; font-size: 14px; color: #666; transition: all 0.3s ease; } .brand-slide-active .category-text { font-size: 16px; font-weight: 400; color: #000; } .brand { display: block; font-weight: bold; } /* Non-active slide dimmed */ .brand-slide:not(.brand-slide-active) img { filter: brightness(70%); } </style> <!-- Swiper Container --> <div class="swiper brandSwiper"> <div class="brand-wrapper"> <div class="brand-slide"> <a href="https://www.kindlife.in/mary-and-may/"> <!-- <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-2908-brands-mary.webp" alt="Mary & May"> --> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/KBW-1509-monsoon-refresh-mary-and-amy1.webp" alt="Mary & May"> </a> <div class="category-text"> Magic of <span class="brand">Mary & May</span> </div> </div> <div class="brand-slide"> <a href="https://www.kindlife.in/rovectin-launch"> <!-- <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-2908-brands-rovectine.webp" alt="Rovectin"> --> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/KBW-1509-monsoon-refresh-rovectin1.webp" alt="Rovectin"> </a> <div class="category-text"> Reset with <span class="brand">Rovectin</span> </div> </div> <div class="brand-slide"> <a href="https://www.kindlife.in/coxir-launch/"> <!-- <img src="https://cdn.kindlife.in/images/banners/hp-images/HP-2908-brands-coxir.webp" alt="Coxir"> --> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/KBW-1509-monsoon-refresh-coxir1.webp" alt="Coxir"> </a> <div class="category-text"> Dew more with <span class="brand">coxir</span> </div> </div> <div class="brand-slide"> <a href="https://www.kindlife.in/roundlab-launch"> <!-- <img src="https://cdn.kindlife.in/images/banners/hp-images/Testing-2908-ctrgy-roundlab.webp" alt="Round Lab"> --> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/KBW-1509-monsoon-refresh-round-lab1.webp" alt="Round Lab"> </a> <div class="category-text"> Refresh with <span class="brand">Round Lab</span> </div> </div> <div class="brand-slide"> <a href="https://www.kindlife.in/ssunsu/"> <!-- <img src="https://cdn.kindlife.in/images/banners/hp-images/Testing-2908-ctrgy-sunsu.webp" alt="Ssunsu"> --> <img src="https://cdn.kindlife.in/images/banners/landing-page/kbw-lp/KBW-1509-monsoon-refresh-ssunsu1.webp" alt="Ssunsu"> </a> <div class="category-text"> Shine with <span class="brand">Ssunsu</span> </div> </div> </div> </div> <script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script> <script> var brandSwiper = new Swiper(".brandSwiper", { slidesPerView: 3, centeredSlides: true, loop: true, autoplay: { delay: 2000, disableOnInteraction: false, }, wrapperClass: "brand-wrapper", // custom wrapper slideClass: "brand-slide", // custom slide slideActiveClass: "brand-slide-active", // custom active containerModifierClass: "brand-", // prefix breakpoints: { 0: { slidesPerView: 1.9 }, 768: { slidesPerView: 3 } } }); </script>";} 0 11878 hidden-tablet hidden-desktop 20 D smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en KBW brands categroy scroller
5541 2798 a:1:{s:7:"content";s:6645:"<style> /* .christmas_wrap { background-image: url(https://cdn.kindlife.in/images/banners/home-page-images/HP-2012-testing-bg-desk.png); padding: 10px; background-size: 100% 100%; position: relative; } */ .bk_prod_desc.kbw_desc { font-size: 20px; background: #ce0f2b; color: #fff; margin: 0px auto 5px; padding: 5px; border-radius: 5px; max-width: fit-content; text-align: center; } .bk_prod_desc .bk_code { color: #861657; } .hb-logo { height: 40px; margin: 5px 0; } /* .hb-logo.logo1 { min-height: 55px; } */ .hb-logo img { height: 100%; object-fit: contain; } ul.scroll { flex-wrap: nowrap; } ul.bk_1x4_block.scroll li { flex: 0 0 22%; min-width: 220px; text-align:center; padding: 0; } ul.bk_1x4_block.scroll.ch1 { padding: 0px; margin: 0px; gap: 8px; } span.offers_bold { display: inline-block; color: #ce0f2b; font-weight: 800; } .desc_new { font-size: 17px; margin-top: 5px; } .christmas_desc { font-weight: 400; padding-bottom: 15px; } @media (max-width: 600px) { ul.bk_1x4_block.scroll li { flex: 0 0 45%; min-width: unset; } .bk_prod_desc.change { font-size: 15px; } /* .hb-logo.logo1 { min-height: 40px; } */ .hb-logo { height: 30px; } .bk_prod_desc.kbw_desc { font-size: 14px; } .desc_new { font-size: 12px; margin-top: 5px; } } </style> <div class="strip_banner desktop shadow" style="margin-bottom:8px; margin-top:16px;"> <img src="https://cdn.kindlife.in/images/banners/category/KBW-0402-valentines-desk.webp" alt="img" width="1200" height="120" loading="lazy"> </div> <div class="strip_banner mobile shadow" style="margin-bottom:6px; padding:0px; margin-top:10px;"> <img src="https://cdn.kindlife.in/images/banners/category/KBW-0402-valentines-mob.webp" alt="img" width="800" height="120" loading="lazy"> </a> </div> <!-- <div class="popup coupon-popup"> <img class="hidden-phone" style="margin-bottom:8px; margin-top:10px;" src="https://cdn.kindlife.in/images/banners/home-page-images/HP-2801-lunar-year-desk1.gif" alt=""> <img class="hidden-desktop hidden-tablet" style="margin-bottom:6px; padding:0px;" src="https://cdn.kindlife.in/images/banners/home-page-images/HP-2801-lunar-year-mob1.gif" alt=""> <span class="popuptext" id="myPopup"> <div class="popuptopbr"> <div class="popofferBF"><b>Korean Lunar Year Sale </b></div> <div class="popofferBF_close">x</div> </div> <div class="popofferBfli"> <ul> <li>From 28th to 30th Jan </li> <li> Use : <b>LUNAR</b> to get EXTRA 10% off on Korean brands</li> <li> Not applicable on: COSRX, Secret Key, iUnik, Beauty of Joseon, AXIS-Y, Dashing Diva</li> </ul> </div> </span> </div> --> <div class="bk_block_container"> <ul class="bk_flex_block bk_1x4_block scroll ch1"> <li><a href="https://www.kindlife.in/cosrx/"> <img src="https://cdn.kindlife.in/images/banners/category/KBW-2801-hb-cosrx1.webp" alt="img"></a> <div class="hb-logo"> <img src="https://cdn.kindlife.in/images/banners/home-page-images/HP-1701-hb-cosrx-logo.webp" alt=""> </div> <div class="bk_prod_desc kbw_desc" style="font-weight:600;">Flat 42% </div> <span class="desc_new" style="font-weight: 400;">Use: <span class="offers_bold">KLOVE</span> for EXTRA 10% off </span> </li> <li><a href="https://www.kindlife.in/beauty-of-joseon/"> <img src="https://cdn.kindlife.in/images/banners/category/KBW-2801-hb-boj1.webp" alt="img"></a> <div class="hb-logo logo1"> <img src="https://cdn.kindlife.in/images/banners/home-page-images/HP-1701-hb-boj-logo.webp" alt=""> </div> <div class="bk_prod_desc kbw_desc" style="font-weight:600;">Flat 35% </div> <span class="desc_new" style="font-weight: 400;">Use: <span class="offers_bold">KLOVE</span> for EXTRA 10% off </span> </li> <li><a href="https://www.kindlife.in/iunik/"> <img src="https://cdn.kindlife.in/images/banners/category/KBW-2801-hb-iunik1.webp" alt="img"></a> <div class="hb-logo"> <img style="margin-top:0px;" src="https://cdn.kindlife.in/images/banners/home-page-images/HP-2801-iunik-logo.webp" alt=""> </div> <div class="bk_prod_desc kbw_desc" style="font-weight:600;">Flat 42% </div> <span class="desc_new" style="font-weight: 400;">Use: <span class="offers_bold">KLOVE</span> for EXTRA 10% off </span> </li> <li><a href="https://www.kindlife.in/skin1004/"> <img src="https://cdn.kindlife.in/images/banners/category/KBW-2801-hb-skin1004.webp" alt="img"></a> <div class="hb-logo"> <img src="https://cdn.kindlife.in/images/banners/home-page-images/KBW-3001-hb-SKIN1004-logo.webp" alt=""> </div> <div class="bk_prod_desc kbw_desc" style="font-weight:600;">Flat 35% </div> <span class="desc_new" style="font-weight: 400;">Use: <span class="offers_bold">KLOVE</span> for EXTRA 10% off </span> </li> <li><a href="https://www.kindlife.in/secret-key/"> <img src="https://cdn.kindlife.in/images/banners/category/KBW-2801-hb-secret1.webp" alt="img"></a> <div class="hb-logo"> <img style="margin-top: 0px;" src="https://cdn.kindlife.in/images/banners/category/KBw-2801-secret-key-logo.png" alt=""> </div> <div class="bk_prod_desc kbw_desc" style="font-weight:600;">Flat 40% </div> <span class="desc_new" style="font-weight: 400;">Use: <span class="offers_bold">KLOVE</span> for EXTRA 10% off </span> </li> </ul> </div>";} 0 10648 21 D smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en KBW TOP BANNERS