havells.com Open in urlscan Pro
151.101.1.124  Public Scan

Submitted URL: http://havells.com/
Effective URL: https://havells.com/
Submission: On December 03 via manual from US — Scanned from US

Form analysis 46 forms found in the DOM

GET https://havells.com/catalogsearch/result/

<form class="form minisearch sparsh-minisearch" id="search_mini_form" action="https://havells.com/catalogsearch/result/" method="get">
  <div class="field search">
    <label class="label" for="search" data-role="minisearch-label">
      <span>Search</span>
    </label>
    <div class="control">
      <input id="search" type="text" name="q" value="" placeholder="Search Products" class="input-text" maxlength="128" role="combobox" aria-haspopup="false" aria-autocomplete="both" autocomplete="off">
      <div class="nested">
        <a class="action advanced" href="https://havells.com/catalogsearch/advanced/" data-action="advanced-search">
        Advanced Search    </a>
      </div>
      <div id="search-auto-complete" class="sparsh-search-auto-complete" style="display:none">
        <div class="product-data" style="display:none">
          <div class="sparsh-search-auto-complete-suggest" style="display:none">
            <div class="title">Suggested Searches</div>
            <ul id="sparsh-search-auto-complete-suggest" role="listbox">
            </ul>
          </div>
          <div class="sparsh-search-auto-complete-category" style="display:none">
            <div class="title"> Categories </div>
            <ul id="sparsh-search-auto-complete-category" role="listbox">
            </ul>
          </div>
          <div class="sparsh-search-auto-complete-product" style="display:none">
            <div class="title"> Products <a class="sparsh-search-auto-complete-product-see-all">
                    See All                    <span class="sparsh-search-auto-complete-product-see-all-size"></span>
                </a>
            </div>
            <ul id="sparsh-search-auto-complete-product" role="listbox">
            </ul>
          </div>
          <div class="sparsh-search-auto-complete-cms-pages" style="display:none">
            <div class="title"> CMS Pages </div>
            <ul id="sparsh-search-auto-complete-cms-pages" role="listbox">
            </ul>
          </div>
        </div>
        <div class="no-result" style="display: none;">Sorry, no results were found!</div>
      </div>
      <script>
        require(
          ['jquery', 'uiComponent'],
          function($, Component) {
            if ($(window).width() < 768) {
              $("#search_mini_form .search .label").click(function() {
                $("#search").toggle();
              });
            }
            $("#search_mini_form .control").append('<div class="icon-container " style="display:none;"><i class="loader"></i></div>');
            var minCharacters = "3";
            var timeLapse = "1000";
            $("#search_mini_form").unbind('input');
            var timer = null;
            $("#search").on('keyup', function() {
              clearTimeout(timer);
              if ($("#search").val().length >= minCharacters) {
                $("#search_mini_form .icon-container").show();
              } else {
                $("#search_mini_form .icon-container").hide();
                $("#search-auto-complete").hide();
              }
              timer = setTimeout(doneTyping, timeLapse)
            });

            function doneTyping() {
              if ($("#search").val().length < minCharacters) {
                $("#search-auto-complete").hide();
                return false;
              }
              if ($("#search").val().length >= minCharacters) {
                $.ajax({
                  url: "https://havells.com/search_auto_complete/ajax/index/",
                  data: {
                    q: $("#search").val()
                  },
                  dataType: "json",
                  type: 'GET',
                  success: function(response) {
                    if (typeof response.result != 'undefined' && response.result.length > 0) {
                      SparshSearchAutoCompleteParseData(response.result);
                    } else {
                      $("#search_mini_form .icon-container").hide();
                    }
                  }
                });
                return false;
              } else {
                $("#search-auto-complete").hide();
              }
            }
            $(document).on("focusout", "#search", function() {
              if (!jQuery("#search-auto-complete").is(":hover")) {
                $("#search-auto-complete").hide();
              }
            });
            $(document).on("click", ".autocompleteAddToCart", function() {
              $(this).html('<span>Processing...</span>');
              $.ajax({
                url: $(this).attr('data-form-url'),
                data: {
                  product: $(this).attr('data-product-id'),
                  uenc: $(this).attr('data-url-encoded'),
                  form_key: $(this).attr('data-form-key')
                },
                dataType: "json",
                type: 'post',
                success: function(response) {
                  $(this).html('<span>Add to Cart</span>');
                  $("#search-auto-complete").hide();
                  if (typeof response.backUrl != 'undefined') {
                    window.location.href = response.backUrl;
                  }
                }
              });
              return false;
            });

            function SparshSearchAutoCompleteParseData(result) {
              var suggestCount = 0;
              var productCount = 0;
              var categoryCount = 0;
              var cmsCount = 0;
              var htmlSuggest = '';
              var htmlProduct = '';
              var htmlCategory = '';
              var htmlCms = '';
              $("#sparsh-search-auto-complete-suggest").html('');
              $("#sparsh-search-auto-complete-product").html('');
              $("#sparsh-search-auto-complete-category").html('');
              $("#sparsh-search-auto-complete-cms-pages").html('');
              $(".sparsh-search-auto-complete-suggest").hide();
              $(".sparsh-search-auto-complete-product").hide();
              $(".sparsh-search-auto-complete-category").hide();
              $(".sparsh-search-auto-complete-cms-pages").hide();
              result.forEach(function(res) {
                if (res.code == 'suggest') {
                  suggestCount = suggestCount + res.data.length;
                  if (res.data.length > 0) {
                    res.data.forEach(function(suggestRes) {
                      htmlSuggest += '<li>';
                      htmlSuggest += '<a href="' + suggestRes.url + '" title="' + suggestRes.title + '">';
                      if (suggestRes.title.toLowerCase().indexOf($("#search").val().toLowerCase()) != -1) {
                        var res = suggestRes.title.replace(eval("/" + $("#search").val() + "/i"), '<strong>' + $("#search").val() + '</strong>');
                        htmlSuggest += res + '(<span>' + suggestRes.num_results + '</span>)';
                      } else {
                        htmlSuggest += '<span>' + suggestRes.title + '</span> (<span>' + suggestRes.num_results + '</span>)';
                      }
                      htmlSuggest += '</a>';
                      htmlSuggest += '</li>';
                    });
                    $("#sparsh-search-auto-complete-suggest").append(htmlSuggest);
                  } else {
                    htmlSuggest += '<li>';
                    htmlSuggest += '<span>Sorry, no results were found!</span>';
                    htmlSuggest += '</li>';
                    $("#sparsh-search-auto-complete-suggest").append(htmlSuggest);
                  }
                  $(".sparsh-search-auto-complete-suggest").show();
                }
                if (res.code == 'category') {
                  categoryCount = categoryCount + res.size;
                  if (res.size > 0) {
                    Object.values(res.data).forEach(function(categoryRes) {
                      htmlCategory += '<li>';
                      if (typeof categoryRes.parent_name != 'undefined' && categoryRes.parent_name != '') {
                        htmlCategory += '<span class="parent_name">' + categoryRes.parent_name + ' > </span>';
                      }
                      htmlCategory += '<a href="' + categoryRes.path + '" title="' + categoryRes.name + '">';
                      if (categoryRes.name.toLowerCase().indexOf($("#search").val().toLowerCase()) != -1) {
                        var res = categoryRes.name.replace(eval("/" + $("#search").val() + "/i"), '<strong>' + $("#search").val() + '</strong>');
                        htmlCategory += res;
                      } else {
                        htmlCategory += '<span>' + categoryRes.name + '</span>';
                      }
                      htmlCategory += '</a>';
                      htmlCategory += '</li>';
                    });
                    $("#sparsh-search-auto-complete-category").append(htmlCategory);
                    $(".sparsh-search-auto-complete-category").show();
                  } else {
                    htmlCategory += '<li>';
                    htmlCategory += '<span>Sorry, no results were found!</span>';
                    htmlCategory += '</li>';
                    //$("#sparsh-search-auto-complete-category").append(htmlCategory);
                  }
                  //$(".sparsh-search-auto-complete-category").show();
                }
                if (res.code == 'cms') {
                  cmsCount = cmsCount + res.size;
                  if (res.size > 0) {
                    Object.values(res.data).forEach(function(cmsRes) {
                      htmlCms += '<li>';
                      htmlCms += '<a href="' + cmsRes.url + '" title="' + cmsRes.title + '">';
                      if (cmsRes.title.toLowerCase().indexOf($("#search").val().toLowerCase()) != -1) {
                        var res = cmsRes.title.replace(eval("/" + $("#search").val() + "/i"), '<strong>' + $("#search").val() + '</strong>');
                        htmlCms += res;
                      } else {
                        htmlCms += '<span>' + cmsRes.title + '</span>';
                      }
                      htmlCms += '</a>';
                      htmlCms += '</li>';
                    });
                    $("#sparsh-search-auto-complete-cms-pages").append(htmlCms);
                  } else {
                    htmlCms += '<li>';
                    htmlCms += '<span>Sorry, no results were found!</span>';
                    htmlCms += '</li>';
                    $("#sparsh-search-auto-complete-cms-pages").append(htmlCms);
                  }
                  $(".sparsh-search-auto-complete-cms-pages").show();
                }
                if (res.code == 'product') {
                  productCount = productCount + res.data.length;
                  if (res.data.length > 0) {
                    $(".sparsh-search-auto-complete-product-see-all").attr("href", res.url);
                    $(".sparsh-search-auto-complete-product-see-all-size").text(res.size);
                    $(".sparsh-search-auto-complete-product-see-all").show();
                    res.data.forEach(function(productRes) {
                      htmlProduct += '<li>';
                      if (productRes.image) {
                        htmlProduct += '<div class="qs-option-image">';
                        htmlProduct += '<a href="' + productRes.url + '" title="' + productRes.name + '">';
                        htmlProduct += '<img src="' + productRes.image + '" title="' + productRes.name + '" />';
                        htmlProduct += '</a>';
                        htmlProduct += '</div>';
                      }
                      htmlProduct += '<div class="qs-option-info">';
                      if (productRes.name) {
                        htmlProduct += '<div class="qs-option-title">';
                        if (productRes.name.toLowerCase().indexOf($("#search").val().toLowerCase()) != -1) {
                          var res = productRes.name.replace(eval("/" + $("#search").val() + "/i"), '<strong>' + $("#search").val() + '</strong>');
                          htmlProduct += '<a href="' + productRes.url + '" title="' + productRes.name + '">' + res + '</a>';
                        } else {
                          htmlProduct += '<a href="' + productRes.url + '" title="' + productRes.name + '">' + productRes.name + '</a>';
                        }
                        htmlProduct += '</div>';
                      }
                      if (productRes.reviews_rating) {
                        htmlProduct += '<div class="qs-option-reviews">' + productRes.reviews_rating + '</div>';
                      }
                      if (productRes.sku) {
                        if (productRes.sku.toLowerCase().indexOf($("#search").val().toLowerCase()) != -1) {
                          var res = productRes.sku.replace(eval("/" + $("#search").val() + "/i"), '<strong>' + $("#search").val() + '</strong>');
                          htmlProduct += '<div class="qs-option-sku">SKU: ' + res + '</div>';
                        } else {
                          htmlProduct += '<div class="qs-option-sku">SKU: <span>' + productRes.sku + '</span></div>';
                        }
                      }
                      if (productRes.short_description) {
                        if (productRes.short_description.toLowerCase().indexOf($("#search").val().toLowerCase()) != -1) {
                          var res = productRes.short_description.replace(eval("/" + $("#search").val() + "/i"), '<strong>' + $("#search").val() + '</strong>');
                          htmlProduct += '<div class="qs-option-shortdescription">' + res + '</div>';
                        } else {
                          htmlProduct += '<div class="qs-option-shortdescription">' + productRes.short_description + '</div>';
                        }
                      }
                      if (productRes.description) {
                        if (productRes.description.toLowerCase().indexOf($("#search").val().toLowerCase()) != -1) {
                          var res = productRes.description.replace(eval("/" + $("#search").val() + "/i"), '<strong>' + $("#search").val() + '</strong>');
                          htmlProduct += '<div class="qs-option-description">' + res + '</div>';
                        } else {
                          htmlProduct += '<div class="qs-option-description">' + productRes.description + '</div>';
                        }
                      }
                      if (productRes.price) {
                        htmlProduct += '<div class="qs-option-price">' + productRes.price + '</div>';
                      }
                      if (productRes.add_to_cart) {
                        htmlProduct += '<div class="qs-option-addtocart">';
                        htmlProduct += '<button type="button" title="Add to Cart" data-product-id="' + productRes.add_to_cart.productId + '" data-url-encoded="' + productRes.add_to_cart.urlEncoded + '" data-form-key="' + productRes
                          .add_to_cart.formKey + '" data-form-url="' + productRes.add_to_cart.formUrl + '" class="action tocart primary autocompleteAddToCart">';
                        htmlProduct += '<span>Add to Cart</span>';
                        htmlProduct += '</button>';
                        htmlProduct += '</div>';
                      }
                      htmlProduct += '</div>';
                      htmlProduct += '</li>';
                    });
                    $("#sparsh-search-auto-complete-product").append(htmlProduct);
                  } else {
                    $(".sparsh-search-auto-complete-product-see-all").hide();
                    htmlProduct += '<li>';
                    htmlProduct += '<span>Sorry, no results were found!</span>';
                    htmlProduct += '</li>';
                    $("#sparsh-search-auto-complete-product").append(htmlProduct);
                  }
                  $(".sparsh-search-auto-complete-product").show();
                }
              });
              var sum = suggestCount + productCount + categoryCount + cmsCount;
              if (sum > 0) {
                $(".product-data").show();
                $(".no-result").hide();
              } else {
                $(".no-result").show();
                $(".product-data").hide();
              }
              $("#search_mini_form .icon-container").hide();
              $("#search-auto-complete").show();
            }
          });

        function loadFromLocalSorage(queryText) {
          if (!this.localStorage) {
            return;
          }
          var hash = this._hash(queryText);
          var data = this.localStorage.getItem(hash);
          if (!data) {
            return false;
          }
          return JSON.parse(data);
        }

        function saveToLocalSorage(data, queryText) {
          if (!this.localStorage) {
            return;
          }
          var hash = this._hash(queryText);
          this.localStorage.removeItem(hash);
          this.localStorage.setItem(hash, JSON.stringify(data));
        }

        function _hash(object) {
          var string = JSON.stringify(object) + "";
          var hash = 0,
            i, chr, len;
          if (string.length == 0) {
            return hash;
          }
          for (i = 0, len = string.length; i < len; i++) {
            chr = string.charCodeAt(i);
            hash = ((hash << 5) - hash) + chr;
            hash |= 0;
          }
          return 'searchautocomplete_h' + hash;
        }
      </script>
      <div class="icon-container " style="display:none;"><i class="loader"></i></div>
    </div>
  </div>
  <div class="actions">
    <button type="submit" title="Search" class="action search" aria-label="Search">
      <span>Search</span>
    </button>
  </div>
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/93079/

<form data-role="tocart-form" data-product-sku="GHRAPMEE008" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/93079/" method="post" novalidate="novalidate">
  <input type="hidden" name="product" value="93079">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0LzkzMDc5Lw,,">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut"> <button type="submit" title="Add to Cart" class="action tocart primary">
    <span>Add to Cart</span>
  </button>
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/7704/

<form data-role="tocart-form" data-product-sku="GHWRGAS015" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/7704/" method="post" novalidate="novalidate">
  <input type="hidden" name="product" value="7704">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0Lzc3MDQv">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut"> <button type="submit" title="Add to Cart" class="action tocart primary">
    <span>Add to Cart</span>
  </button>
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/128952/

<form data-role="tocart-form" data-product-sku="GHWAMNTWH025-C" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/128952/" method="post" novalidate="novalidate">
  <input type="hidden" name="product" value="128952">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0LzEyODk1Mi8,">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut"> <button type="submit" title="Add to Cart" class="action tocart primary">
    <span>Add to Cart</span>
  </button>
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/122025/

<form data-role="tocart-form" data-product-sku="FHCCB5SCHL48-C" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/122025/" method="post" novalidate="novalidate">
  <input type="hidden" name="product" value="122025">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0LzEyMjAyNS8,">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut"> <button type="submit" title="Add to Cart" class="action tocart primary">
    <span>Add to Cart</span>
  </button>
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/122063/

<form data-role="tocart-form" data-product-sku="FHCCB5SSLS48-C" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/122063/" method="post" novalidate="novalidate">
  <input type="hidden" name="product" value="122063">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0LzEyMjA2My8,">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut"> <button type="submit" title="Add to Cart" class="action tocart primary">
    <span>Add to Cart</span>
  </button>
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/122072/

<form data-role="tocart-form" data-product-sku="FHCOCURAWW52-C" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/122072/" method="post" novalidate="novalidate">
  <input type="hidden" name="product" value="122072">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0LzEyMjA3Mi8,">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut"> <button type="submit" title="Add to Cart" class="action tocart primary">
    <span>Add to Cart</span>
  </button>
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/11675/

<form data-role="tocart-form" data-product-sku="FHWSWINIVR16" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/11675/" method="post" novalidate="novalidate">
  <input type="hidden" name="product" value="11675">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0LzExNjc1Lw,,">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut"> <button type="submit" title="Add to Cart" class="action tocart primary">
    <span>Add to Cart</span>
  </button>
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/2403/

<form data-role="tocart-form" data-product-sku="FHSSWSTOWH16" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/2403/" method="post" novalidate="novalidate">
  <input type="hidden" name="product" value="2403">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0LzI0MDMv">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut"> <button type="submit" title="Add to Cart" class="action tocart primary">
    <span>Add to Cart</span>
  </button>
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/121106/

<form data-role="tocart-form" data-product-sku="GHPHHJBBSL00" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/121106/" method="post" novalidate="novalidate">
  <input type="hidden" name="product" value="121106">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0LzEyMTEwNi8,">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut"> <button type="submit" title="Add to Cart" class="action tocart primary">
    <span>Add to Cart</span>
  </button>
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/121108/

<form data-role="tocart-form" data-product-sku="GHPHHCAXBL00-c" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/121108/" method="post" novalidate="novalidate">
  <input type="hidden" name="product" value="121108">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0LzEyMTEwOC8,">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut"> <button type="submit" title="Add to Cart" class="action tocart primary">
    <span>Add to Cart</span>
  </button>
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/121147/

<form data-role="tocart-form" data-product-sku="GHPDDAAZBK16" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/121147/" method="post" novalidate="novalidate">
  <input type="hidden" name="product" value="121147">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0LzEyMTE0Ny8,">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut"> <button type="submit" title="Add to Cart" class="action tocart primary">
    <span>Add to Cart</span>
  </button>
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/7135/

<form data-role="tocart-form" data-product-sku="GHPTTABCML00" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/7135/" method="post" novalidate="novalidate">
  <input type="hidden" name="product" value="7135">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0LzcxMzUv">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut"> <button type="submit" title="Add to Cart" class="action tocart primary">
    <span>Add to Cart</span>
  </button>
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/121135/

<form data-role="tocart-form" data-product-sku="GHPDHIBBBL12S-c" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/121135/" method="post" novalidate="novalidate">
  <input type="hidden" name="product" value="121135">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0LzEyMTEzNS8,">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut"> <button type="submit" title="Add to Cart" class="action tocart primary">
    <span>Add to Cart</span>
  </button>
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/128952/

<form data-role="tocart-form" data-product-sku="GHWAMNTWH025-C" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/128952/" method="post" novalidate="novalidate">
  <input type="hidden" name="product" value="128952">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0LzEyODk1Mi8,">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut"> <button type="submit" title="Add to Cart" class="action tocart primary">
    <span>Add to Cart</span>
  </button>
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/128937/

<form data-role="tocart-form" data-product-sku="GHWCAITIV015-C" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/128937/" method="post" novalidate="novalidate">
  <input type="hidden" name="product" value="128937">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0LzEyODkzNy8,">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut"> <button type="submit" title="Add to Cart" class="action tocart primary">
    <span>Add to Cart</span>
  </button>
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/128940/

<form data-role="tocart-form" data-product-sku="GHWCARTWH010-C" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/128940/" method="post" novalidate="novalidate">
  <input type="hidden" name="product" value="128940">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0LzEyODk0MC8,">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut"> <button type="submit" title="Add to Cart" class="action tocart primary">
    <span>Add to Cart</span>
  </button>
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/128967/

<form data-role="tocart-form" data-product-sku="GHWBHRTWS010-C" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/128967/" method="post" novalidate="novalidate">
  <input type="hidden" name="product" value="128967">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0LzEyODk2Ny8,">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut"> <button type="submit" title="Add to Cart" class="action tocart primary">
    <span>Add to Cart</span>
  </button>
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/128964/

<form data-role="tocart-form" data-product-sku="GHWBORSWH015-C" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/128964/" method="post" novalidate="novalidate">
  <input type="hidden" name="product" value="128964">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0LzEyODk2NC8,">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut"> <button type="submit" title="Add to Cart" class="action tocart primary">
    <span>Add to Cart</span>
  </button>
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/120699/

<form data-role="tocart-form" data-product-sku="GHFFPEKK140" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/120699/" method="post" novalidate="novalidate">
  <input type="hidden" name="product" value="120699">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0LzEyMDY5OS8,">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut"> <button type="submit" title="Add to Cart" class="action tocart primary">
    <span>Add to Cart</span>
  </button>
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/6869/

<form data-role="tocart-form" data-product-sku="GHFJMBAV050" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/6869/" method="post" novalidate="novalidate">
  <input type="hidden" name="product" value="6869">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0LzY4Njkv">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut"> <button type="submit" title="Add to Cart" class="action tocart primary">
    <span>Add to Cart</span>
  </button>
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/7995/

<form data-role="tocart-form" data-product-sku="GHGSICCU220" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/7995/" method="post" novalidate="novalidate">
  <input type="hidden" name="product" value="7995">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0Lzc5OTUv">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut"> <button type="submit" title="Add to Cart" class="action tocart primary">
    <span>Add to Cart</span>
  </button>
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/8544/

<form data-role="tocart-form" data-product-sku="GHCSTDSK075" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/8544/" method="post" novalidate="novalidate">
  <input type="hidden" name="product" value="8544">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0Lzg1NDQv">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut"> <button type="submit" title="Add to Cart" class="action tocart primary">
    <span>Add to Cart</span>
  </button>
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/162513/

<form data-role="tocart-form" data-product-sku="GLWT855N12CB" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/162513/" method="post">
  <input type="hidden" name="product" value="162513" tabindex="0">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0LzE2MjUxMy8," tabindex="0">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut" tabindex="0"> <!-- <button type="submit"
                                                        title="Add to Cart"
                                                        class="action tocart primary">
                                                    <span>Add to Cart</span>
                                                </button> -->
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/128787/

<form data-role="tocart-form" data-product-sku="GLS18V5FWGST" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/128787/" method="post">
  <input type="hidden" name="product" value="128787" tabindex="0">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0LzEyODc4Ny8," tabindex="0">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut" tabindex="0"> <!-- <button type="submit"
                                                        title="Add to Cart"
                                                        class="action tocart primary">
                                                    <span>Add to Cart</span>
                                                </button> -->
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/129027/

<form data-role="tocart-form" data-product-sku="GLS18V3KOGSY" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/129027/" method="post">
  <input type="hidden" name="product" value="129027" tabindex="0">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0LzEyOTAyNy8," tabindex="0">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut" tabindex="0"> <!-- <button type="submit"
                                                        title="Add to Cart"
                                                        class="action tocart primary">
                                                    <span>Add to Cart</span>
                                                </button> -->
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/89634/

<form data-role="tocart-form" data-product-sku="GLWMF70WC1" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/89634/" method="post">
  <input type="hidden" name="product" value="89634" tabindex="0">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0Lzg5NjM0Lw,," tabindex="0">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut" tabindex="0"> <!-- <button type="submit"
                                                        title="Add to Cart"
                                                        class="action tocart primary">
                                                    <span>Add to Cart</span>
                                                </button> -->
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/121938/

<form data-role="tocart-form" data-product-sku="GLWS905GH1VG" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/121938/" method="post">
  <input type="hidden" name="product" value="121938" tabindex="-1">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0LzEyMTkzOC8," tabindex="-1">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut" tabindex="-1"> <!-- <button type="submit"
                                                        title="Add to Cart"
                                                        class="action tocart primary">
                                                    <span>Add to Cart</span>
                                                </button> -->
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/159726/

<form data-role="tocart-form" data-product-sku="GLS18V5FWSSL" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/159726/" method="post">
  <input type="hidden" name="product" value="159726" tabindex="0">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0LzE1OTcyNi8," tabindex="0">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut" tabindex="0"> <!-- <button type="submit"
                                                        title="Add to Cart"
                                                        class="action tocart primary">
                                                    <span>Add to Cart</span>
                                                </button> -->
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/129021/

<form data-role="tocart-form" data-product-sku="GLS18V5FOGVV" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/129021/" method="post">
  <input type="hidden" name="product" value="129021" tabindex="0">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0LzEyOTAyMS8," tabindex="0">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut" tabindex="0"> <!-- <button type="submit"
                                                        title="Add to Cart"
                                                        class="action tocart primary">
                                                    <span>Add to Cart</span>
                                                </button> -->
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/121798/

<form data-role="tocart-form" data-product-sku="GLS12I5FWRBV-C" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/121798/" method="post">
  <input type="hidden" name="product" value="121798" tabindex="0">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0LzEyMTc5OC8," tabindex="0">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut" tabindex="0"> <!-- <button type="submit"
                                                        title="Add to Cart"
                                                        class="action tocart primary">
                                                    <span>Add to Cart</span>
                                                </button> -->
  <input class="swatch-input super-attribute-select" name="super_attribute[2408]" type="text" value="" data-selector="super_attribute[2408]" data-validate="{required: true}" aria-required="true" aria-invalid="false" data-attr-name="ac_description"
    tabindex="0">
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/126900/

<form data-role="tocart-form" data-product-sku="GLS12I3FOSEV" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/126900/" method="post">
  <input type="hidden" name="product" value="126900" tabindex="0">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0LzEyNjkwMC8," tabindex="0">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut" tabindex="0"> <!-- <button type="submit"
                                                        title="Add to Cart"
                                                        class="action tocart primary">
                                                    <span>Add to Cart</span>
                                                </button> -->
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/162513/

<form data-role="tocart-form" data-product-sku="GLWT855N12CB" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/162513/" method="post">
  <input type="hidden" name="product" value="162513" tabindex="0">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0LzE2MjUxMy8," tabindex="0">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut" tabindex="0"> <!-- <button type="submit"
                                                        title="Add to Cart"
                                                        class="action tocart primary">
                                                    <span>Add to Cart</span>
                                                </button> -->
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/121938/

<form data-role="tocart-form" data-product-sku="GLWS905GH1VG" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/121938/" method="post">
  <input type="hidden" name="product" value="121938" tabindex="0">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0LzEyMTkzOC8," tabindex="0">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut" tabindex="0"> <!-- <button type="submit"
                                                        title="Add to Cart"
                                                        class="action tocart primary">
                                                    <span>Add to Cart</span>
                                                </button> -->
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/89634/

<form data-role="tocart-form" data-product-sku="GLWMF70WC1" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/89634/" method="post">
  <input type="hidden" name="product" value="89634" tabindex="0">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0Lzg5NjM0Lw,," tabindex="0">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut" tabindex="0"> <!-- <button type="submit"
                                                        title="Add to Cart"
                                                        class="action tocart primary">
                                                    <span>Add to Cart</span>
                                                </button> -->
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/129054/

<form data-role="tocart-form" data-product-sku="GLWMS75AVGEL-C" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/129054/" method="post">
  <input type="hidden" name="product" value="129054" tabindex="-1">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0LzEyOTA1NC8," tabindex="-1">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut" tabindex="-1"> <!-- <button type="submit"
                                                        title="Add to Cart"
                                                        class="action tocart primary">
                                                    <span>Add to Cart</span>
                                                </button> -->
  <input class="swatch-input super-attribute-select" name="super_attribute[2703]" type="text" value="" data-selector="super_attribute[2703]" data-validate="{required: true}" aria-required="true" aria-invalid="false"
    data-attr-name="wm_capacity_variant" tabindex="-1"><input class="swatch-input super-attribute-select" name="super_attribute[93]" type="text" value="" data-selector="super_attribute[93]" data-validate="{required: true}" aria-required="true"
    aria-invalid="false" data-attr-name="color" tabindex="-1">
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/129072/

<form data-role="tocart-form" data-product-sku="GLWMT75GMBEH-C" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/129072/" method="post">
  <input type="hidden" name="product" value="129072" tabindex="-1">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0LzEyOTA3Mi8," tabindex="-1">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut" tabindex="-1"> <!-- <button type="submit"
                                                        title="Add to Cart"
                                                        class="action tocart primary">
                                                    <span>Add to Cart</span>
                                                </button> -->
  <input class="swatch-input super-attribute-select" name="super_attribute[2703]" type="text" value="" data-selector="super_attribute[2703]" data-validate="{required: true}" aria-required="true" aria-invalid="false"
    data-attr-name="wm_capacity_variant" tabindex="-1">
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/121930/

<form data-role="tocart-form" data-product-sku="GLFF343AMBC1PC" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/121930/" method="post">
  <input type="hidden" name="product" value="121930" tabindex="0">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0LzEyMTkzMC8," tabindex="0">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut" tabindex="0"> <!-- <button type="submit"
                                                        title="Add to Cart"
                                                        class="action tocart primary">
                                                    <span>Add to Cart</span>
                                                </button> -->
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/121929/

<form data-role="tocart-form" data-product-sku="GLFF343AGSC1PC" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/121929/" method="post">
  <input type="hidden" name="product" value="121929" tabindex="0">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0LzEyMTkyOS8," tabindex="0">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut" tabindex="0"> <!-- <button type="submit"
                                                        title="Add to Cart"
                                                        class="action tocart primary">
                                                    <span>Add to Cart</span>
                                                </button> -->
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/121920/

<form data-role="tocart-form" data-product-sku="GLFF292ADWC1GC" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/121920/" method="post">
  <input type="hidden" name="product" value="121920" tabindex="-1">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0LzEyMTkyMC8," tabindex="-1">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut" tabindex="-1"> <!-- <button type="submit"
                                                        title="Add to Cart"
                                                        class="action tocart primary">
                                                    <span>Add to Cart</span>
                                                </button> -->
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/8721/

<form data-role="tocart-form" data-product-sku="GL43U4L1ZG" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/8721/" method="post">
  <input type="hidden" name="product" value="8721" tabindex="0">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0Lzg3MjEv" tabindex="0">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut" tabindex="0"> <!-- <button type="submit"
                                                        title="Add to Cart"
                                                        class="action tocart primary">
                                                    <span>Add to Cart</span>
                                                </button> -->
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/121422/

<form data-role="tocart-form" data-product-sku="GL43U4D2EP" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/121422/" method="post">
  <input type="hidden" name="product" value="121422" tabindex="0">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0LzEyMTQyMi8," tabindex="0">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut" tabindex="0"> <!-- <button type="submit"
                                                        title="Add to Cart"
                                                        class="action tocart primary">
                                                    <span>Add to Cart</span>
                                                </button> -->
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/121421/

<form data-role="tocart-form" data-product-sku="GL50U4G2EP" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/121421/" method="post">
  <input type="hidden" name="product" value="121421" tabindex="0">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0LzEyMTQyMS8," tabindex="0">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut" tabindex="0"> <!-- <button type="submit"
                                                        title="Add to Cart"
                                                        class="action tocart primary">
                                                    <span>Add to Cart</span>
                                                </button> -->
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/121420/

<form data-role="tocart-form" data-product-sku="GL55U4P2EP" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/121420/" method="post">
  <input type="hidden" name="product" value="121420" tabindex="0">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0LzEyMTQyMC8," tabindex="0">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut" tabindex="0"> <!-- <button type="submit"
                                                        title="Add to Cart"
                                                        class="action tocart primary">
                                                    <span>Add to Cart</span>
                                                </button> -->
</form>

POST https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/8724/

<form data-role="tocart-form" data-product-sku="GL75U4N2BG" action="https://havells.com/checkout/cart/add/uenc/aHR0cHM6Ly9oYXZlbGxzLmNvbS8%2C/product/8724/" method="post">
  <input type="hidden" name="product" value="8724" tabindex="-1">
  <input type="hidden" name="uenc" value="aHR0cHM6Ly9oYXZlbGxzLmNvbS9jaGVja291dC9jYXJ0L2FkZC91ZW5jL2FIUjBjSE02THk5b1lYWmxiR3h6TG1OdmJTOCUyQy9wcm9kdWN0Lzg3MjQv" tabindex="-1">
  <input name="form_key" type="hidden" value="AkP2A83no4H4F8ut" tabindex="-1"> <!-- <button type="submit"
                                                        title="Add to Cart"
                                                        class="action tocart primary">
                                                    <span>Add to Cart</span>
                                                </button> -->
</form>

POST

<form class="form form-login" method="post" data-bind="event: {submit: login }" id="login-form">
  <div class="fieldset login" data-bind="attr: {'data-hasrequired': $t('* Required Fields')}" data-hasrequired="* Required Fields">
    <div class="field email required">
      <label class="label" for="customer-email"><span data-bind="i18n: 'Email Address'">Email Address</span></label>
      <div class="control">
        <input name="username" id="customer-email" type="email" class="input-text" data-mage-init="{&quot;mage/trim-input&quot;:{}}" data-bind="attr: {autocomplete: autocomplete}" data-validate="{required:true, 'validate-email':true}"
          autocomplete="off">
      </div>
    </div>
    <div class="field password required">
      <label for="pass" class="label"><span data-bind="i18n: 'Password'">Password</span></label>
      <div class="control">
        <input name="password" type="password" class="input-text" id="pass" data-bind="attr: {autocomplete: autocomplete}" data-validate="{required:true}" autocomplete="off">
      </div>
    </div>
    <!-- ko foreach: getRegion('additional-login-form-fields') -->
    <!-- ko template: getTemplate() -->
    <input name="captcha_form_id" type="hidden" data-bind="value: formId,  attr: {'data-scope': dataScope}" value="user_login" data-scope="">
    <!-- ko if: (isRequired() && getIsVisible())--><!-- /ko -->
    <!-- /ko -->
    <!-- /ko -->
    <div class="actions-toolbar">
      <input name="context" type="hidden" value="checkout">
      <div class="primary">
        <button type="submit" class="action action-login secondary" name="send" id="send2">
          <span data-bind="i18n: 'Sign In'">Sign In</span>
        </button>
      </div>
      <div class="secondary">
        <a class="action" data-bind="attr: {href: forgotPasswordUrl}" href="https://havells.com/customer/account/forgotpassword/">
                                <span data-bind="i18n: 'Forgot Your Password?'">Forgot Your Password?</span>
                            </a>
      </div>
    </div>
  </div>
</form>

Text Content

This website would like to send you awesome updates and offers!

Notifications can be turned off anytime from browser settings

Don't Allow Allow
The store will not work correctly in the case when cookies are disabled.

JavaScript seems to be disabled in your browser. For the best experience on our
site, be sure to turn on Javascript in your browser.

Search
Search
Search
Advanced Search
Suggested Searches
Categories
Products See All
CMS Pages
Sorry, no results were found!

Search
Menu
 * Fans
   * Ceiling Fans
   * Table Fans
   * Wall Fans
   * Pedestal Fans
   * Ceiling Mounting Fans
   * Personal Fans
   * Domestic Exhaust Fans
 * Lighting
   * Home Art Light
   * LED Panels
   * LED COB
   * LED Downlighter
   * LED Spotlight
   * Glamtubes
   * LED Battens
   * LED Lamps
   * String Light
   * Portable Lighting
   * Smart Lighting
 * Switches
   * ViruzSafe
   * Murano
   * Athena/Amare
   * Signia
   * Magnus Modular Range
   * Coral Modular Range
   * Fabio Range
   * Verona
   * Thames
   * Weatherpruf
   * Accessories
 * Home Appliances
   * Air Conditioners
   * LED Televisions
   * Washing Machines
   * Refrigerators
   * Water Heaters
   * Air Purifiers
   * Chimney Hob & Cooktop
   * Appliances
   * Personal Grooming
   * Air Coolers
   * Water Purifiers
 * Home Electricals
   * Flexible Cables
   * Pumps
   * Solar
   * Switchgears
     * Circuit Breaker
     * Energy Saver
     * Human Safety
     * Distribution Board
     * Surge Protection Device
     * Control and Monitoring Device
 * Smart Home
   * Smart Modular Switches
   * Monoblock Smart Panels
   * Video Door Phone
   * Smart Accessories
   
 * See Our Brands
   * 
   * 
   * 
   * 
   
   
   * INSIDE THINKING
     
     Our commitment to innovation, quality and going beyond the ordinary has
     inspired us to create exceptional products that fit seamlessly into your
     life.
 * Support
    * Product Help
      * Register Product
      * Service Requests
      * Product Manuals
      * Standard Warranty Information
      * Service Charge
    * Contact
      * Contact Us
      * WhatsApp Support 9711773333
      * Customer Care Number 080 45 77 1313
      * Email customercare@havells.com
      * Store Locator
    * Policy Information
      * Privacy Policy
      * Shipping Policy
      * Returns and Replacements Policy
      * Disclaimer
      * Terms of Use
    * AMC/Extended Warranty
      * Buy Now

 * For Business
 * 

 * Fans
   * Fans
     Ceiling Fans
   * Table Fans
   * Wall Fans
   * Pedestal Fans
   * Ceiling Mounting Fans
   * Personal Fans
   * Domestic Exhaust Fans
 * Lighting
   * Lighting
     Home Art Light
   * LED Panels
   * LED COB
   * LED Downlighter
   * LED Spotlight
   * Glamtubes
   * LED Battens
   * LED Lamps
   * String Light
   * Portable Lighting
   * Smart Lighting
 * Switches
   * Switches
     ViruzSafe
   * Murano
   * Athena/Amare
   * Signia
   * Magnus Modular Range
   * Coral Modular Range
   * Fabio Range
   * Verona
   * Thames
   * Weatherpruf
   * Accessories
 * Home Appliances
   * Home Appliances
     Air Conditioners
   * LED Televisions
   * Washing Machines
   * Refrigerators
   * Water Heaters
   * Air Purifiers
   * Chimney Hob & Cooktop
   * Appliances
   * Personal Grooming
   * Air Coolers
   * Water Purifiers
 * Home Electricals
   * Home Electricals
     Flexible Cables
   * Pumps
   * Solar
   * Switchgears
     * Switchgears
       Circuit Breaker
     * Energy Saver
     * Human Safety
     * Distribution Board
     * Surge Protection Device
     * Control and Monitoring Device
 * Smart Home
   * Smart Home
     Smart Modular Switches
   * Monoblock Smart Panels
   * Video Door Phone
   * Smart Accessories
   
 * See Our Brands
   * See Our Brands
   * 
   * 
   * 
   
   
   * INSIDE THINKING
     
     Our commitment to innovation, quality and going beyond the ordinary has
     inspired us to create exceptional products that fit seamlessly into your
     life.
 * Support
   * Support
     Product Help
     * Product Help
       Register Product
     * Service Requests
     * Product Manuals
     * Standard Warranty Information
     * Service Charge
   * Contact
     * Contact
       Contact Us
     * WhatsApp Support 9711773333
     * Customer Care Number 080 45 77 1313
     * Email customercare@havells.com
     * Store Locator
   * Policy Information
     * Policy Information
       Privacy Policy
     * Shipping Policy
     * Returns and Replacements Policy
     * Disclaimer
     * Terms of Use
   * AMC/Extended Warranty
     * AMC/Extended Warranty
       Buy Now
 * For Business
 * 

 * Search by Category
   * Fans
     * Ceiling Fans
     * Table Fans
     * Wall Fans
     * Pedestal Fans
     * Ceiling Mounting Fans
     * Personal Fans
     * Domestic Exhaust Fans
   * Lighting
     * Home Art Light
     * LED Panels
     * LED COB
     * LED Downlighter
     * LED Spotlight
     * Glamtubes
     * LED Battens
     * LED Lamps
     * String Light
     * Portable Lighting
     * Smart Lighting
   * Switches
     * ViruzSafe
     * Murano
     * Athena/Amare
     * Signia
     * Magnus Modular Range
     * Coral Modular Range
     * Fabio Range
     * Verona
     * Thames
     * Weatherpruf
     * Accessories
   * Home Appliances
     * Air Conditioners
     * LED Televisions
     * Washing Machines
     * Refrigerators
     * Water Heaters
     * Air Purifiers
     * Chimney Hob & Cooktop
     * Appliances
     * Personal Grooming
     * Air Coolers
     * Water Purifiers
   * Home Electricals
     * Flexible Cables
     * Pumps
     * Solar
     * Switchgears
       * Circuit Breaker
       * Energy Saver
       * Human Safety
       * Distribution Board
       * Surge Protection Device
       * Control and Monitoring Device
   * Smart Home
     * Smart Modular Switches
     * Monoblock Smart Panels
     * Video Door Phone
     * Smart Accessories
   
 * See Our Brands
   * 
   * 
   * 
   * 
   
   
   * INSIDE THINKING
     
     Our commitment to innovation, quality and going beyond the ordinary has
     inspired us to create exceptional products that fit seamlessly into your
     life.
 * Support
    * Product Help
      * Register Product
      * Service Requests
      * Product Manuals
      * Standard Warranty Information
      * Service Charge
    * Contact
      * Contact Us
      * WhatsApp Support 9711773333
      * Customer Care Number 080 45 77 1313
      * Email customercare@havells.com
      * Store Locator
    * Policy Information
      * Privacy Policy
      * Shipping Policy
      * Returns and Replacements Policy
      * Disclaimer
      * Terms of Use
    * AMC/Extended Warranty
      * Buy Now

 * For Business
 * 

Cart
Cart 0
Close You have no items in your shopping cart.

Skip to Content
 * 
 * 

Menu
Toggle Nav
 * New Products
 * Best Seller
 * Virtual Tour
 * Register Product
 * Buy AMC
 * Loyalty


HOME PAGE


 * 1
 * 2
 * 3
 * 4
 * 5
 * 6
 * 7
 * 8


DISCOVER OUR BRANDS





THIS WEEKS HIGHLIGHTS

 * Trending
 * Fan
 * Personal Grooming
 * Water Heater
 * Appliances

 1. Gema Chandelier  23LS G9 SMK CRM
    Special Price ₹ 13 29 996.00 (incl. of all taxes) MRP ₹ 17 50 000.00 24% Off
    Shop Now
    Out of stock
    Add to Wish List Add to Compare
 2. Meditate AP 400
    Special Price ₹ 39 999.00 (incl. of all taxes) MRP ₹ 59 900.00 33% Off
    Shop Now
    Add to Cart
    Add to Wish List Add to Compare
 3. Gracia Alkaline
    Special Price ₹ 21 991.00 (incl. of all taxes) MRP ₹ 34 499.00 36% Off
    Shop Now
    Add to Cart
    Add to Wish List Add to Compare
 4. Magnatron
    As low as ₹ 15 491.00 (incl. of all taxes) MRP ₹ 27 890.00 44% Off
    Shop Now
    Add to Cart
    Add to Wish List Add to Compare
 5. Digital 11 Wave Fins Oil Filled Room Heater
    Special Price ₹ 11 500.00 (incl. of all taxes) MRP ₹ 21 425.00 46% Off
    Shop Now
    Out of stock
    Add to Wish List Add to Compare

 1. Crista BLDC+
    As low as ₹ 8 278.00 (incl. of all taxes) MRP ₹ 13 530.00 39% Off
    Shop Now
    Add to Cart
    Add to Wish List Add to Compare
 2. Libeccio BLDC+
    As low as ₹ 7 824.00 (incl. of all taxes) MRP ₹ 13 300.00 41% Off
    Shop Now
    Add to Cart
    Add to Wish List Add to Compare
 3. Octet UL
    As low as ₹ 13 241.00 (incl. of all taxes) MRP ₹ 22 430.00 41% Off
    Shop Now
    Add to Cart
    Add to Wish List Add to Compare
 4. Swing Wall fan
    Special Price ₹ 2 463.00 (incl. of all taxes) MRP ₹ 4 030.00 39% Off
    Shop Now
    Add to Cart
    Add to Wish List Add to Compare
 5. Swing Pedestal Fan
    Special Price ₹ 2 846.00 (incl. of all taxes) MRP ₹ 4 800.00 41% Off
    Shop Now
    Add to Cart
    Add to Wish List Add to Compare

 1. HC4085 Air Care Styler (Black)
    Special Price ₹ 2 000.00 (incl. of all taxes) MRP ₹ 3 495.00 43% Off
    Shop Now
    Add to Cart
    Add to Wish List Add to Compare
 2. HS4109 Ceramic Plates Fast Heat up Hair Straightener
    As low as ₹ 1 175.00 (incl. of all taxes) MRP ₹ 1 995.00 41% Off
    Shop Now
    Add to Cart
    Add to Wish List Add to Compare
 3. HD3191 1600 W Unisex Cool Shot & Foldable Hair Dryer (Black)
    Special Price ₹ 1 615.00 (incl. of all taxes) MRP ₹ 1 895.00 15% Off
    Shop Now
    Add to Cart
    Add to Wish List Add to Compare
 4. BT5113 Rechargeable Beard Trimmer
    Special Price ₹ 1 049.00 (incl. of all taxes) MRP ₹ 1 995.00 47% Off
    Shop Now
    Add to Cart
    Add to Wish List Add to Compare
 5. HD3151 1200 W Powerful Hair Dryer with Cool Shot Button
    As low as ₹ 999.00 (incl. of all taxes) MRP ₹ 1 695.00 41% Off
    Shop Now
    Add to Cart
    Add to Wish List Add to Compare

 1. Magnatron
    As low as ₹ 15 491.00 (incl. of all taxes) MRP ₹ 27 890.00 44% Off
    Shop Now
    Add to Cart
    Add to Wish List Add to Compare
 2. Adonia I
    As low as ₹ 15 491.00 (incl. of all taxes) MRP ₹ 27 190.00 43% Off
    Shop Now
    Add to Cart
    Add to Wish List Add to Compare
 3. Adonia R
    As low as ₹ 12 891.00 (incl. of all taxes) MRP ₹ 21 490.00 40% Off
    Shop Now
    Add to Cart
    Add to Wish List Add to Compare
 4. Otto
    As low as ₹ 12 390.00 (incl. of all taxes) MRP ₹ 19 190.00 35% Off
    Shop Now
    Add to Cart
    Add to Wish List Add to Compare
 5. Orizzonte
    As low as ₹ 13 191.00 (incl. of all taxes) MRP ₹ 21 890.00 40% Off
    Shop Now
    Add to Cart
    Add to Wish List Add to Compare

 1. Prolife Crystal Air Fryer
    Special Price ₹ 6 400.00 (incl. of all taxes) MRP ₹ 19 150.00 67% Off
    Shop Now
    Add to Cart
    Add to Wish List Add to Compare
 2. Silencio 4 Jar
    Special Price ₹ 14 016.00 (incl. of all taxes) MRP ₹ 24 670.00 43% Off
    Shop Now
    Out of stock
    Add to Wish List Add to Compare
 3. Rigo 3 Jar 500 W
    Special Price ₹ 4 066.00 (incl. of all taxes) MRP ₹ 6 595.00 38% Off
    Shop Now
    Add to Cart
    Add to Wish List Add to Compare
 4. Husky Steam Iron
    Special Price ₹ 2 549.00 (incl. of all taxes) MRP ₹ 4 300.00 41% Off
    Shop Now
    Add to Cart
    Add to Wish List Add to Compare
 5. Perfect Fill Plus 2 Slice Sandwich Grill BLK
    Special Price ₹ 1 485.00 (incl. of all taxes) MRP ₹ 3 055.00 51% Off
    Shop Now
    Add to Cart
    Add to Wish List Add to Compare


LLOYD PRODUCT HIGHLIGHTS

 * New In
 * Air Conditioner
 * Washing Machine
 * Refrigerator
 * LED Television

Previous
New
Fully Automatic Top Load Novante IOT 8.5 kg
Special Price ₹ 29 990.00 (incl. of all taxes) MRP ₹ 49 990.00 40% Off
 * 5 star rating
 * IOT with Wash Genie Assist
 * 5D Wash - Dynamic Waterfall, Dual Flow Lint Filter, Double Jet Spray, Hexamax
   Drum, Dual Power Pulsator

View Details
Add to Wish List Add to Compare
Stellar Split AC 1.5 - 5 Star
Special Price ₹ 61 000.00 (incl. of all taxes) MRP ₹ 89 990.00 32% Off
 * Mood Lighting
 * Ambi-Lighting (Temperatue Based)
 * Ambi-Lighting (Air Quality Based)

View Details
Add to Wish List Add to Compare
Stylus Split AC 1.5 - 3 Star
Special Price ₹ 41 000.00 (incl. of all taxes) MRP ₹ 69 990.00 41% Off
 * Changeable Fascia (Marble & Wood)
 * 6 in 1 Convertible
 * Automatic Humidity Control

View Details
Add to Wish List Add to Compare
HealthQ Fully Automatic Front Load
Special Price ₹ 29 790.00 (incl. of all taxes) MRP ₹ 39 990.00 26% Off
 * 1400 revolution per minute
 * 90 °C Sterilize wash
 * Super Size Door

View Details
Add to Wish List Add to Compare
Digi Grande H Semi Automatic
Special Price ₹ 16 990.00 (incl. of all taxes) MRP ₹ 24 890.00 32% Off
 * In-built Heater with Digital Panel
 * 8 Wash-Program
 * Memory Back Up

View Details
Add to Wish List Add to Compare
Side By Side Refrigerator Multi Door 519 L Stainless Steel
Special Price ₹ 73 001.00 (incl. of all taxes) MRP ₹ 1 04 990.00 30% Off
 * Inverter Technology
 * Convertible Zone
 * Spacious Door Shelves

View Details
Out of stock
Add to Wish List Add to Compare
Next

New
Stellar Split AC 1.5 - 5 Star
Special Price ₹ 51 000.00 (incl. of all taxes) MRP ₹ 81 990.00 38% Off
 * Mood Lighting
 * Ambi-Lighting (Temperatue Based)
 * Smart 4-Way Swing

View Details
Add to Wish List Add to Compare
Stylus Split AC 1.5 - 5 Star
Special Price ₹ 48 000.00 (incl. of all taxes) MRP ₹ 77 990.00 38% Off
 * Changeable Fascia (Marble & Wood)
 * 6 in 1 Convertible
 * Automatic Humidity Control

View Details
Add to Wish List Add to Compare
Bliss Plus Split AC Inverter - 1.0 - 5 Star
As low as ₹ 37 000.00 (incl. of all taxes) MRP ₹ 58 990.00 37% Off
1.0
1.5
 * Cools at 52 °C
 * 5 in 1 Convertible AC
 * Smart 4-Way Swing

View Details
Add to Wish List Add to Compare
New
Element Split AC 1.0 - 3 Star
Special Price ₹ 32 000.00 (incl. of all taxes) MRP ₹ 49 990.00 36% Off
 * 100 % Copper
 * Turbo Cool
 * Stabilizer Free Operation

View Details
Add to Wish List Add to Compare

Previous
New
Fully Automatic Top Load Novante IOT 8.5 kg
Special Price ₹ 29 990.00 (incl. of all taxes) MRP ₹ 49 990.00 40% Off
 * 5 star rating
 * IOT with Wash Genie Assist
 * 5D Wash - Dynamic Waterfall, Dual Flow Lint Filter, Double Jet Spray, Hexamax
   Drum, Dual Power Pulsator

View Details
Add to Wish List Add to Compare
Digi Grande H Semi Automatic
Special Price ₹ 16 990.00 (incl. of all taxes) MRP ₹ 24 890.00 32% Off
 * In-built Heater with Digital Panel
 * 8 Wash-Program
 * Memory Back Up

View Details
Add to Wish List Add to Compare
HealthQ Fully Automatic Front Load
Special Price ₹ 29 790.00 (incl. of all taxes) MRP ₹ 39 990.00 26% Off
 * 1400 revolution per minute
 * 90 °C Sterilize wash
 * Super Size Door

View Details
Add to Wish List Add to Compare
MagiQ Fully Automatic Front Load
Special Price ₹ 34 501.00 (incl. of all taxes) MRP ₹ 43 490.00 21% Off
 * 1400 revolution per minute
 * Intellivents
 * Big LED display

View Details
Out of stock
Add to Wish List Add to Compare
Elante Semi Automatic
As low as ₹ 14 291.00 (incl. of all taxes) MRP ₹ 16 990.00 16% Off
7.5 kg
8.0 kg

 * 5 star rating
 * Double layerd Lids with soft closing and Toughened Glass
 * Special Detergent Mix

View Details
Add to Wish List Add to Compare
Estello H Fully Automatic Top load
As low as ₹ 23 001.00 (incl. of all taxes) MRP ₹ 32 990.00 30% Off
7.5 kg
8.0 kg
 * 5 star rating
 * In Built Heater
 * Puro Drum

View Details
Add to Wish List Add to Compare
Next

Previous
Side By Side Refrigerator 587 L Stainless Steel
Special Price ₹ 65 001.00 (incl. of all taxes) MRP ₹ 98 990.00 34% Off
 * Inverter Technology
 * Ice maker with twistable knob which helps the ice cubes fall seamlessly into
   the tray and makes storing and dispensing of ice easier and convenient.
 * Shower LED Light

View Details
Out of stock
Add to Wish List Add to Compare
Side By Side Refrigerator Multi Door 519 L Stainless Steel
Special Price ₹ 73 001.00 (incl. of all taxes) MRP ₹ 1 04 990.00 30% Off
 * Inverter Technology
 * Convertible Zone
 * Spacious Door Shelves

View Details
Out of stock
Add to Wish List Add to Compare
Frost Free Refrigerator 310 L Metallic Black
Special Price ₹ 40 001.00 (incl. of all taxes) MRP ₹ 53 490.00 25% Off
 * Inverter Technology
 * Ten Vent Technology (TVT)
 * Big Bottle Storage

View Details
Add to Wish List Add to Compare
Frost Free Refrigerator 310 L Graphite Steel
Special Price ₹ 39 001.00 (incl. of all taxes) MRP ₹ 52 490.00 26% Off
 * Inverter Technology
 * Ten Vent Technology (TVT)
 * Big Bottle Storage

View Details
Add to Wish List Add to Compare
Frost Free Refrigerator 260 L Daisy Wine
Special Price ₹ 31 001.00 (incl. of all taxes) MRP ₹ 43 990.00 30% Off
 * Inverter Technology
 * Ten Vent Technology (TVT)
 * Big Bottle Storage

View Details
Add to Wish List Add to Compare
Next

Previous
LED Television 1.09 m (43UX900D)
Special Price ₹ 36 991.00 (incl. of all taxes) MRP ₹ 52 490.00 30% Off
 * Google TV OS
 * 4K Ultra HD
 * Dolby Vision

View Details
Add to Wish List Add to Compare
LED Television 1.09 m (43PS850E)
Special Price ₹ 32 991.00 (incl. of all taxes) MRP ₹ 50 490.00 35% Off
 * WCG Vision Pro
 * 4K Ultra HD
 * 4K Upscaler

View Details
Add to Wish List Add to Compare
LED Television 1.26 m (50PS850E)
Special Price ₹ 40 991.00 (incl. of all taxes) MRP ₹ 54 890.00 25% Off
 * WCG Vision Pro
 * 4K Ultra HD
 * 4K Upscaler

View Details
Add to Wish List Add to Compare
LED Television 1.38 m (55PS850E)
Special Price ₹ 51 991.00 (incl. of all taxes) MRP ₹ 66 990.00 22% Off
 * WCG Vision Pro
 * 4K Ultra HD
 * 4K Upscaler

View Details
Add to Wish List Add to Compare
LED Television QLED , 1.89 m (75QX900D)
Special Price ₹ 1 04 991.00 (incl. of all taxes) MRP ₹ 1 99 990.00 48% Off
 * QLED Panel
 * 4K Ultra HD
 * Google TV OS

View Details
Add to Wish List Add to Compare
Next


ELEVATE YOUR HOME WITH CUSTOMISED SOLUTIONS

Get expert guidance with Havells Home Advisor



Ask our Experts


ELEVATE YOUR HOME WITH CUSTOMISED SOLUTIONS

Get expert guidance with Havells Home Advisor



Ask our Experts



HAVELLS VIRTUAL TOUR


EXPLORE THE HAVELLS EXPERIENCE ZONE THROUGH OUR VIRTUAL TOUR

Dive-in to the virtual world of appliances from the comfort of your home with
our Experience Zone.

Visit Now



AMC/EXTENDED WARRANTY


HAVELLS EXTENDED WARRANTY, A WORRY-FREE TOTAL MAINTENANCE SERVICE

To avail extended warranty schemes, register your product through "Havells One
App".

Learn More


Select Store
Havells
 * Havells Studio
 * Lloyd
 * Havells Crabtree
 * Reo

FOR CONSUMER

 * Fans
 * Lighting
 * Switches
 * Home Appliances
 * Home Electricals
 * Switchgears
 * Smart Home
 * Personal Grooming

OFFERS

   
 * Lloyd Diwali Offer
 * SDA Festival Dhamaka
   
 * Har Ghar Tyohaar Offer
   
 * Cashback Offer
   

FOR BUSINESS

 * Switchgear & Controlgear
 * Power Quality Solutions
 * Heavy Duty Fans
 * Cables
 * Motors
 * Professional Lighting
 * Solar

OUR BRANDS

 * Havells Studio
 * Havells
 * Lloyd
 * Havells Crabtree
 * REO

OTHER INITIATIVES

 * Home Advisor
 * Home Art Lights
   

SUPPORT

 * FAQs
 * Register Product
 * Service Requests
 * Product Manuals
 * Warranty Information

POLICIES

 * Privacy Policy
 * Shipping Policy
 * Returns and Replacements Policy
 * Disclaimer
 * Terms of Use

ABOUT HAVELLS

 * About Us
 * Careers
 * Havells International
 * Havells Brand Family
 * Made in India
 * Manufacturing Facilities
 * Press & Media
 * Brochure & Pricelist
 * CLRA Compliance Delhi Branch
 * E-waste Awareness

CORPORATE

 * Investors
 * Smart ODR
 * SEBI New Investor Website
 * Events
 * Sustainability
 * CSR

CONTACT

 * Contact Us
 * Enquiry Form
 * Book A Demo
 * Store Locator
 * Product Review

DOWNLOAD THE HAVELLS ONE APP


Sitemap

Manufacturer / Importer
Havells India Ltd.
Registered Office:
904, Surya Kiran Building, K.G. Marg, New Delhi – 110001. (India)
Corporate Office:
QRG Towers, 2D, Sec- 126, Expressway Noida - 201304 U.P. (India)
Corporate Identity Number(CIN):
L31900DL1983PLC016304

For Consumer Complaint, Contact:
Consumer Care Executive, Havells India Ltd.
Regd. Office : 904, Surya Kiran Building, K.G. Marg, New Delhi – 110001. (India)
Customer Care No.: 08045 77 1313
E-mail: customercare@havells.com 

Crossed value on this website is in MRP Rs. and both MRP & offer price are
inclusive of all taxes.



© Copyright 2024 Havells India Ltd. All rights reserved.
All trademarks used herein are property of their respective owners.
Any use of third party trademarks is for identification purposes only and does
not imply endorsement.

 
 * 
 * 
 * 


SCHEDULE A VIRTUAL CALL

To Schedule Virtual Video Call Appointment Please Fill Below Form

HAVELLS TEAM WILL CONTACT & ASSIST YOU SOON.

Alternatively You Can Book The Appointment By Calling On 08045771777 Or Giving
Missed Call On 08045771777

Great!
Terms & Conditions


TERMS & CONDITIONS




Close
Checkout as a new customer

Creating an account has many benefits:

 * See order and shipping status
 * Track order history
 * Check out faster

Create an Account
Checkout using your account

Email Address

Password

Sign In
Forgot Your Password?

 * Fans
 * Lighting
 * Switches
 * Home Appliances
 * Home Electricals
 * Smart Home
   
 * See Our Brands
 * Support
 * For Business
 * 

 * Fans
   Ceiling Fans
 * Table Fans
 * Wall Fans
 * Pedestal Fans
 * Ceiling Mounting Fans
 * Personal Fans
 * Domestic Exhaust Fans

 * Lighting
   Home Art Light
 * LED Panels
 * LED COB
 * LED Downlighter
 * LED Spotlight
 * Glamtubes
 * LED Battens
 * LED Lamps
 * String Light
 * Portable Lighting
 * Smart Lighting

 * Switches
   ViruzSafe
 * Murano
 * Athena/Amare
 * Signia
 * Magnus Modular Range
 * Coral Modular Range
 * Fabio Range
 * Verona
 * Thames
 * Weatherpruf
 * Accessories

 * Home Appliances
   Air Conditioners
 * LED Televisions
 * Washing Machines
 * Refrigerators
 * Water Heaters
 * Air Purifiers
 * Chimney Hob & Cooktop
 * Appliances
 * Personal Grooming
 * Air Coolers
 * Water Purifiers

 * Home Electricals
   Flexible Cables
 * Pumps
 * Solar
 * Switchgears

 * Switchgears
   Circuit Breaker
 * Energy Saver
 * Human Safety
 * Distribution Board
 * Surge Protection Device
 * Control and Monitoring Device

 * Smart Home
   Smart Modular Switches
 * Monoblock Smart Panels
 * Video Door Phone
 * Smart Accessories

 * See Our Brands
 * 
 * 
 * 


 * INSIDE THINKING
   
   Our commitment to innovation, quality and going beyond the ordinary has
   inspired us to create exceptional products that fit seamlessly into your
   life.

 * Support
   Product Help
 * Contact
 * Policy Information
 * AMC/Extended Warranty

 * Product Help
   Register Product
 * Service Requests
 * Product Manuals
 * Standard Warranty Information
 * Service Charge

 * Contact
   Contact Us
 * WhatsApp Support 9711773333
 * Customer Care Number 080 45 77 1313
 * Email customercare@havells.com
 * Store Locator

 * Policy Information
   Privacy Policy
 * Shipping Policy
 * Returns and Replacements Policy
 * Disclaimer
 * Terms of Use

 * AMC/Extended Warranty
   Buy Now