-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
5323 lines (5315 loc) · 501 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!--[if IE 8]> <html lang="en" class="ie ie8 lt-ie9 lt-ie10"> <![endif]-->
<!--[if IE 9]> <html lang="en" class="ie ie9 lt-ie10"> <![endif]-->
<!--[if IE]> <html lang="en" class="ie"> <![endif]-->
<!--[if gt IE 9]><!-->
<html lang="en">
<!--<![endif]-->
<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# snapdeallog: http://ogp.me/ns/fb/snapdeallog#">
<link rel="dns-prefetch" href="http://i1.sdlcdn.com" />
<link rel="dns-prefetch" href="http://i2.sdlcdn.com" />
<link rel="dns-prefetch" href="http://i3.sdlcdn.com" />
<link rel="dns-prefetch" href="http://i4.sdlcdn.com" />
<link rel="dns-prefetch" href="http://n1.sdlcdn.com" />
<link rel="dns-prefetch" href="http://n2.sdlcdn.com" />
<link rel="dns-prefetch" href="http://n3.sdlcdn.com" />
<link rel="dns-prefetch" href="http://n4.sdlcdn.com" />
<link rel="dns-prefetch" href="http://sa.snapdeal.com" />
<link rel="dns-prefetch" href="http://i.sdlcdn.com" />
<link rel="dns-prefetch" href="http://rtis.snapdeal.com" />
<link rel="dns-prefetch" href="http://l.snapdeal.com" />
<link type="application/opensearchdescription+xml" rel="search" href="opensearch.xml" />
<link rel="publisher" href="https://plus.google.com/+snapdeal" />
<link rel="alternate" media="handheld" href="https://m.snapdeal.com/" />
<link rel="shortcut icon" href="http://i3.sdlcdn.com/img/icons/favicon.ico" type="image/x-icon" />
<link rel=icon type=image/ico href="http://i3.sdlcdn.com/img/icons/favicon.ico" />
<link rel="alternate" href="android-app://com.snapdeal.main/snapdeal/m.snapdeal.com/" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="msvalidate.01" content="431A1F370506446F4F451D7B16EE166C" />
<meta name="y_key" content="b8b20c3f440781c8" />
<meta name="format-detection" content="telephone=no" />
<meta charset="utf-8">
<title>Online Shopping in India at Snapdeal - India's Largest Shopping Site
</title>
<link href="http://i1.sdlcdn.com/css/web22mar322/snap/common/scss/base.min.css" rel="stylesheet" type="text/css" />
<link rel="canonical" href="index.html" />
<meta property="fb:admins" content="100002805349917" />
<meta name="description" content="Shop Online in India: Buy Books, Mobiles, Laptops, Appliances, Clothing, Footwear, Home Furnishing & more online at Snapdeal. Free Shipping, Cash on Delivery & EMI* options across India."></meta>
<meta name="keywords" content="snapdeal, mobiles, laptops, books, cameras, watches, online shopping"></meta>
<meta name="robots" content="index, follow
" />
<meta name="twitter:card" content="app">
<meta name="twitter:app:country" content="IN" />
<meta name="twitter:app:name:iphone" content="Snapdeal" />
<meta name="twitter:app:id:iphone" content="721124909" />
<meta name="twitter:app:name:ipad" content="Snapdeal" />
<meta name="twitter:app:id:ipad" content="721124909" />
<meta name="twitter:app:name:googleplay" content="Snapdeal" />
<meta name="twitter:app:id:googleplay" content="com.snapdeal.main" />
<meta name="twitter:app:url:iphone" content="snapdeal://m.snapdeal.com">
<meta name="twitter:app:url:ipad" content="snapdeal://m.snapdeal.com">
<meta name="twitter:app:url:googleplay" content="snapdeal://m.snapdeal.com">
<meta name="og_title" property="og:title" content="Snapdeal.com" />
<meta name="og_site_name" property="og:site_name" content="Snapdeal.com" />
<meta name="og_image" property="og:image" content="" />
<meta name="og_url" property="og:url" id="og-url" content="http://www.snapdeal.com" />
<link href="http://i1.sdlcdn.com/css/web22mar322/snap/pages/homePage/scss/home.min.css" rel="stylesheet" type="text/css" />
</head>
<body data-pageName='HomePage' data-pageType=''>
<!--[if lte IE 9]>
<script type="text/javascript" src="http://i3.sdlcdn.com/js/web22mar322/snap/lteie9.min.js"></script>
<![endif]-->
<input type="hidden" id="pincodeExpiryTimeListing" name="pincodeExpiryTimeListing" value="90" />
<input type="hidden" id="closeShortlistId" name="closeShortlistId" value="false" />
<input type="hidden" id="getBalanceSwitchEnabled" value="true" />
<input type="hidden" id="animationEnabledSwitch" value="false" />
<input type="hidden" id="animationLogoSrc" value="img/storeFrontFeaturedProductAdmin/12/NewYear150X45.gif" />
<input type="hidden" id="dpExperimentVersion" value="" />
<input type="hidden" value="true" id="loadWebPImage">
<input type="hidden" value="4000" id="cartToastTimeoutMili">
<input type="hidden" value="true" id="shoppingListSwitch">
<input type="hidden" value="Daily Needs" id="shoppingListCatLeftnav">
<input type="hidden" value="3" id="maxFMCGQuantity">
<script>
var jsLoggingEnabled = 'true';
var jsLoggingApi = 'https://l.snapdeal.com';
var dotBrandingFlag = 'true';
var webPincodeExperimentIsActive = 'true';
var webPincodeExperimentType = 'modal';
var pincodeSalienceDelay = '1';
var webPincodeSalienceJourneyTime = '360';
var dotGlobalFlag = 'true';
var signupWithMobile = 'true';
var dotWebCheckoutDiffer = 'true';
var matrixUser = 'false';
var startTime = new Date().getTime();
var loadingTime = 0;
var env = 'prod';
var staticRes = '';
var ajaxRes = '';
var httpPath = 'http://www.snapdeal.com';
var absoluteHttpPath = 'http://www.snapdeal.com';
var absoluteHttpsPath = 'https://www.snapdeal.com:443';
var pureHttpPath = 'http://www.snapdeal.com:80';
if (typeof Snapdeal == 'undefined') {
Snapdeal = {};
};
var https = '443';
window.sdHttpPath = 'http://www.snapdeal.com';
var abVersion = 1;
var abEnabled = true;
var abExpireDay = 1;
var serverName = 'avatar-i-1f94d7bb.snapdeal.com';
var fbPermissions = 'email,user_birthday,user_likes,user_hometown,user_location';
var fbFields = 'email,birthday,likes,hometown,location';
var fbAuthRequest = '&auth_type=rerequest';
var fbAppId = "689277371113314";
var googleAppId = "36115742491-h38grsuuq7jilk484i69j84bmul8nst5.apps.googleusercontent.com";
var sdLoggerSwitch = window.location.protocol === 'https:' ? 'true' == 'true' : 'true' == 'true';
</script>
<script type="text/javascript">
var showOnloadFlag = parseInt("0");
/** 0 : Don't Show ,1 : Show only to new users ,2 : Show to all not logged */
if (typeof Snapdeal == "undefined")
Snapdeal = {};
// Set the configuration here for signupwidget
Snapdeal.signupWidConfig = {
onloadShowOnlyIfNewUser: showOnloadFlag == 1,
onloadShow: showOnloadFlag != 0,
cookieName: "snapdeal",
cookieNameFirstTime: "firstTimeVisit",
loggedIn: false,
forceManual: false,
targetUrl: "/",
// Currently the code used in prod -- now used when no promo is sent
regMsgCode: 103,
// Code when promo is sent on social signup
socialMsgCode: 1110,
// Code when promo is sent on normal signup
hasCouponMsgCode: 1112
};
// Google Ads related code -- required so that gpt.js can be lazy loaded
var googletag = googletag || {};
googletag.cmd = googletag.cmd || [];
// switches for various external components
Snapdeal = window.Snapdeal || {};
Snapdeal.componentSwitches = {};
Snapdeal.componentSwitches.searchClosed = "false";
Snapdeal.componentSwitches.recSysClosed = "false";
Snapdeal.componentSwitches.scoreClosed = "false";
Snapdeal.componentSwitches.promoClosed = "false";
Snapdeal.componentSwitches.cocofsClosed = "false";
Snapdeal.componentSwitches.facebookClosed = "false";
Snapdeal.componentSwitches.zendeskClosed = "false";
Snapdeal.componentSwitches.autoSuggestClosed = "false";
Snapdeal.componentSwitches.ebayClosed = "false";
// switch for quick buy button
var disableQuickBuy = "false";
var isLocalizationEnabled = "";
var localizationHeaderState = "";
var selectedTab = "hp"
var activeProductTab = "";
var gpsf = false;
var partialSearch = '';
var openFlowFlag = 'true';
window.suggestmeyes_loaded = true;
</script>
<input type="hidden" value="true" id="isPincodeModalActive" />
<div id="pincodeSalienceComponent" class="pincodeSalienceModal pcs-modal-box fade-animation hidden" style="display: none;">
<div class="pcs-modal-box-backdrop"></div>
<div class="pcs-modal-box-dialog">
<i class="sd-icon sd-icon-delete-sign"></i>
<div class="pcs-modal-box-logo"><img width="50px;" height="73px;" lazySrc="http://i3.sdlcdn.com/img/metroUI/pcs/map.png" /></div>
<p class="pinInfo">Share pincode to get faster delivery & best deals for your location.</p>
<div class="separator"></div>
<div class="pcs-modal-box-content clearfix">
<div class="col-xs-19 reset-padding">
<input class="col-xs-21 marT5" type="text" id="pincode-salience-check" maxlength="6" placeholder="Enter Pincode" value="" />
<span class="pcs-check-msg"></span>
</div>
<div class="col-xs-5 btn btn-small btn-gray rippleGrey marT5 reset-padding">
<span>SUBMIT</span>
</div>
</div>
</div>
</div>
<div id="sdHeader" class="comp comp-header reset-padding">
<div id="autoSuggestorVersion" style="display: none;">v2</div>
<div id="appDL_popup" class="hidden"></div>
<div id="signin_box" style="background: transparent"></div>
<div class="headerBar reset-padding">
<div id='faqSearchHolder'>
<div id="faq_parent" class="faq_search_parent" style="display:none">
<div>
<!-- Container that will be taken as parent for SideBar -->
<div class="faq_search_panal no-scroll">
<!-- Serach Box -->
<div id="faq_search_Form" class="faq_search_form">
<input class="faq_hook_search_text" autofocus autocomplete="off" id="faq_hook_serach_text" type="text" />
<!-- Delete Button Icon on Serach Box -->
<button id="faq_hook_delete_button" class="faq_serachform_button hidden">
<span id="faq_deleteicon">
<i class="iconcolor sd-icon sd-icon-delete-sign "></i>
</span>
</button>
<!-- Serach Button Icon On FAQ -->
<button id="faq_hook_search_button" class="faq_serachform_button">
<span id="faq_searchicon">
<i id="faq_serach_button_icon" class=" iconcolor sd-icon sd-icon-search"></i>
</span>
</button>
</div>
<!-- FAQ List Parent -->
<div id="faq_hook_faq_container_content" class=" faq_hook_faq_container_content no-scroll">
<div class="noResultUI hidden">
Sorry!! No result found for "OK".Please press enter for search.
</div>
<!-- FAQ SubTitle -->
<div class="faq_search_title_wrapper">
<h3 id="faq_hook_faq_subtitle"></h3> </div>
<!--FAQ List-->
<ul id="faq_hook_top_faq_list_items" class="scrollbar faq_search_list"></ul>
</div>
</div>
<!-- FAQ Footer -->
<div class="faq_search_footer">
<div class="h-center v-center">
<a class="help_centre_link" href="faq/faqhome@redirectFrom=hook.html">
View Help Center
</a>
</div>
</div>
</div>
</div>
</div>
<input type="hidden" value="8" id="topSearchesId" name="topSearchesId" />
<input type="hidden" value="48" id="defaultProdCount" />
<div class="topBar top-bar-homepage ">
<div class="logoWidth lfloat">
<div class="menuBar " id="leftNavMenuBar">
<a href="javascript:void(0);">
<i></i><i></i><i></i>
<span>Shop</span>
</a>
</div>
<i class="sdHomepage mainLogo" title="Snapdeal.com" style="background-image:url(http://i1.sdlcdn.com/img/storeFrontFeaturedProductAdmin/12/NewSnapdealLogo15045.png)"></i>
</div>
<div class="col-xs-10 search-box-wrapper">
<input autocomplete="off" name="keyword" type="text" class="col-xs-20 searchformInput keyword" onkeypress="clickGo(event, this)" placeholder="Find your dil ki deal!" value="" />
<button class="searchformButton col-xs-4 rippleGrey" onclick="submitSearchForm('go_header');">
<span class="loading hidden"><img lazySrc="http://i2.sdlcdn.com/img/metroUI/loader.svg" type="image/svg+xml" height="20" width="20"></span>
<i class="sd-icon sd-icon-search"></i>
</button>
<div id="topsearches" class="hidden">
<div class="topSearch-container">
<div class="topsearch-suggestionBox">
<ul>
<div class="searchContainer">
<i class="sd-icon sd-icon-trending"></i>
<span class="topsearches">Trending Searches</span>
</div>
<li>
<div>
<a class="subDefault" href="http://www.snapdeal.com/search?clickSrc=top_searches&keyword=iphone 5s&categoryId=0&vertical=p&noOfResults=48&SRPID=topsearch">
iphone 5s</a>
</div>
</li>
<li>
<div>
<a class="subDefault" href="http://www.snapdeal.com/search?clickSrc=top_searches&keyword=micromax mobiles&categoryId=0&vertical=p&noOfResults=48&SRPID=topsearch">
micromax mobiles</a>
</div>
</li>
<li>
<div>
<a class="subDefault" href="http://www.snapdeal.com/search?clickSrc=top_searches&keyword=voltas ac&categoryId=0&vertical=p&noOfResults=48&SRPID=topsearch">
voltas ac</a>
</div>
</li>
<li>
<div>
<a class="subDefault" href="http://www.snapdeal.com/search?clickSrc=top_searches&keyword=led tv&categoryId=0&vertical=p&noOfResults=48&SRPID=topsearch">
led tv</a>
</div>
</li>
<li>
<div>
<a class="subDefault" href="http://www.snapdeal.com/search?clickSrc=top_searches&keyword=air coolers&categoryId=0&vertical=p&noOfResults=48&SRPID=topsearch">
air coolers</a>
</div>
</li>
<li>
<div>
<a class="subDefault" href="http://www.snapdeal.com/search?clickSrc=top_searches&keyword=sports shoes&categoryId=0&vertical=p&noOfResults=48&SRPID=topsearch">
sports shoes</a>
</div>
</li>
<li>
<div>
<a class="subDefault" href="http://www.snapdeal.com/search?clickSrc=top_searches&keyword=watches&categoryId=0&vertical=p&noOfResults=48&SRPID=topsearch">
watches</a>
</div>
</li>
<li>
<div>
<a class="subDefault" href="http://www.snapdeal.com/search?clickSrc=top_searches&keyword=sarees&categoryId=0&vertical=p&noOfResults=48&SRPID=topsearch">
sarees</a>
</div>
</li>
</ul>
</div>
</div>
</div>
<div class="searchAutoSuggstn"></div>
<div class="cross-btn hidden">
<i class="sd-icon sd-icon-delete-sign"></i>
<p>Close</p>
</div>
</div>
<div class="rfloat col-xs-7 reset-padding">
<ul class="rhslink reset-padding">
<li class="openCartModal" id="cartHeader">
<div class="menuLinks"><i class="sd-icon sd-icon-shopping-cart"></i><small class="circleCountCart">0</small></div>
</li>
<li class=" moreOptionsHeader">
<div class="menuLinks"><i class="sd-icon sd-icon-9dot"></i><span class="moreText">more</span></div>
</li>
<li class=" accountHeaderClass" id="accountHeader">
<div class="menuLinks hoverLink"><i class="sd-icon sd-icon-user"></i><i class="sd-icon sd-icon-expand-arrow"></i><span>account</span></div>
<div class="dropdownWrapper hard-hidden">
<div class="dropdownAccount hidden">
<div class="accountInfoLoggedIn">
<div class="nonLoginUser hidden">
<i class="sd-icon sd-icon-user"></i>
</div>
<img alt="user Image" class="imgUser" />
<p class="userLoginName"></p>
<p class="userLoginEmail"></p>
<span class="accountBtn rippleWhite"><a href="myorders.html">View My Account</a></span>
</div>
<div class="accountList">
<ul>
<li><a href="myorders.html">Orders</a></li>
<li><a href="mywishlist.html">Shortlist</a></li>
<li><a href="shopping-list.html">Shopping List</a></li>
<li><a href="mysdcash.html">SD Cash<div class="sd-balance rfloat"></div></a></li>
<li><a href="myEGiftVoucher.html">E-Gift Voucher</a></li>
<li><a href="logout.html" class="sign logout-account">Logout</a></li>
</ul>
</div>
</div>
<div class="dropdownAccountNonLoggedIn hidden">
<div class="accountInfoNonLoggedIn">
<div class="nonLoginUser">
<i class="sd-icon sd-icon-user"></i>
</div>
<span class="accountBtn rippleWhite"><a href="login.html">login</a></span>
<p class="newUser"><span>New User?</span><span class="newUserRegister">Register</span></p>
</div>
<div class="accountList">
<ul>
<li><a href="myorders.html">Orders</a></li>
<li><a href="mywishlist.html">Shortlist</a></li>
<li><a href="shopping-list.html">Shopping List</a></li>
<li><a href="mysdcash.html">SD Cash</a></li>
<li><a href="myEGiftVoucher.html">E-Gift Voucher</a></li>
</ul>
</div>
</div>
</div>
</li>
<li class="headerShortlist">
<a class="menuLinks"><i class="sd-icon sd-icon-marker"></i><span>Track Order</span></a>
</li>
<li class="faqHelpHeader">
<a class="menuLinks"><i class="sd-icon sd-icon-nhelpfilled"></i><span class="helptext">Help</span></a>
</li>
</ul>
</div>
</div>
<div class='header-shadow dock hidden'></div>
<div id="headerMoreOptions_modal_right" style="display:none;">
<div class="quickLinks reset-padding col-xs-24-quickLinks">
<div class="sidebaroverlay hiddenImp" id="removeOverlay"></div>
<ul>
<li class="toggleOffers"><span class="icon-font-grey-size36"><i class="sd-icon sd-icon-discount color-grey"></i></span>
<p>Offers</p>
</li>
<li><a href="mywishlist.html"><span class="icon-font-grey-size36"><i class="sd-icon sd-icon-like-outline color-grey"></i></span><p>Shortlist</p></a>
</li>
<li><a href="http://sellers.snapdeal.com/"><span class="icon-font-grey-size36"><i class="sd-icon sd-icon-nhandshake color-grey"></i></span><p class="marginLeft">Sell On Snapdeal</p></a>
</li>
<li><a href="page/snapdeal-hdfcbank.html"><span class="icon-font-grey-size36"><i class="sd-icon sd-icon-sell color-grey"></i></span><p class="marginLeft">SD HDFC Bank Card</p></a>
</li>
</ul>
</div>
<div class="offersDropdown" id="topOffersDiv">
</div>
</div>
<div class="cartToastMsg" id="cartToastMsg" style="display : none;">
<div class="cTMSArrow">
<span></span>
</div>
<div class="cTMSProductInfo">
<div class="cTMSucces">
</div>
<div class="cTMError">
<p>Something went wrong. Please refresh the page and try again.</p>
</div>
</div>
</div>
</div>
<section class="homePageTopHooks-section">
<div class="topHookContainer">
<span class="topHooks">
<div class='top-hooks-icon'>
<span class="displayLazy"><i class="customHeaderIcon lazyBg" style="background: url(http://i1.sdlcdn.com/img/eventImage/06/EOSS-icon.png) no-repeat"></i></span></div>
<a href="offers/deal-of-the-day.html">Deals Of the Day</a></span>
<span class="topHooks">
<div class='top-hooks-icon'>
<span class="displayLazy"><i class="customHeaderIcon lazyBg" style="background: url(http://i4.sdlcdn.com/img/homepage/01/Donate%20via%20Snapdeal.png) no-repeat"></i></span></div>
<a href="offers/giveindia.html">Donate for Girls' Education</a></span>
<span class="topHooks">
<div class='top-hooks-icon'>
<span class="displayLazy"><i class="customHeaderIcon lazyBg" style="background: url(http://i1.sdlcdn.com/img/homepage/12/handshakekjhgvc.png) no-repeat"></i></span></div>
<a href="http://sellers.snapdeal.com/">Sell on Snapdeal</a></span>
<span class="topHooks">
<div class='top-hooks-icon'>
<span class="displayLazy"><i class="customHeaderIcon lazyBg" style="background: url(http://i2.sdlcdn.com/img/hooks03/AppDownload15thMarch.png) no-repeat"></i></span></div>
<a href="offers/mobile-app@MID=popup_appDownload.html">Download App</a></span>
<span class="topHooks">
<div class='top-hooks-icon'>
<span class="displayLazy"><i class="customHeaderIcon lazyBg" style="background: url(http://i1.sdlcdn.com/img/eventImage/06/EOSS-icon.png) no-repeat"></i></span></div>
<a href="products/beauty@sort=plrty&MID=fmcgDailyNeeds_personalCare.html" id="btnSubscribe">Subscribe</a></span>
<span class="rfloat headerLinks loginRegBtnHpage hidden">
<span class="headerLoginLink"><button onclick="showLogin('','topHooks')">Login</button></span>
<span class="headerRegisterLink"><button onclick="showRegister()">Register</button></span>
</span>
</div>
</section>
<div class="header-shortlist hidden">
<p>Your item has been added to shortlist</p>
<span><a href="mywishlist.html">View All</a></span></div>
<div class="header-shoppinglist hidden">
<p>Your Item has been added to Shopping List</p>
<span><a href="shopping-list.html">View All</a></span></div>
<form id="formSearch" class="searchform" name="formSearch" action="http://www.snapdeal.com/search" method="get">
<input type="hidden" value="false" id="rightNavFlag" />
<input type="hidden" value="false" id="redirToMatchingSugg" />
<input id="keyword" name="keyword" type="hidden" value="" />
<input type="hidden" id="santizedKeyword" name="santizedKeyword" value="" />
<input type="text" style="display: none;" />
<input type="hidden" name="catId" id="catId" value="" />
<input type="hidden" name="categoryId" id="categoryId" value="" />
<input type="hidden" name="suggested" id="suggested" value="false" />
<input type="hidden" name="vertical" id="vertical" value="" />
<input type="hidden" name="noOfResults" id="noOfResults" value="48" />
<input type="hidden" name="clickSrc" id="clickSrc" value="" />
<input type="hidden" name="lastKeyword" id="lastKeyword" value="" />
<input type="hidden" name="prodCatId" id="prodCatId" value="" />
<input type="hidden" name="changeBackToAll" id="changeBackToAll" value="false" />
<input type="hidden" name="foundInAll" id="foundInAll" value="false" />
<input type="hidden" name="categoryIdSearched" id="categoryIdSearched" value="" />
<input type="hidden" name="cityPageUrl" id="searchedCity" value="" />
<input type="hidden" id="url" name="url" value="" />
<input type="hidden" id="utmContent" name="utmContent" value="" />
<input type="hidden" id="dealDetail" name="dealDetail" value="" />
</form>
<div class="cross-btn hidden"><i class="sd-icon sd-icon-delete-sign"></i>
<p>CLOSE</p>
</div>
<div class="cross-btn hidden">
<i class="sd-icon sd-icon-delete-sign"></i>
<p>CLOSE</p>
</div>
<input type="hidden" id="uidField" name="trackingUid" value="0" />
<input type="hidden" id="sharerEmail" name="sharerEmail" value="0" />
<script type="text/javascript">
window.fbLoginId = 689277371113314;
</script>
</div>
<!-- Start Optimizely Asynchronous Code -->
<script src="http://cdn.optimizely.com/js/3501950057.js"></script>
<!-- End Optimizely Asynchronous Code -->
<input type="hidden" value="false" id="codAvailableSwitch">
<input type="hidden" name="affiliate" id="aff" value="" />
<input type="hidden" name="logServiceUrl" id="logServiceUrl" value="https://l.snapdeal.com" />
<input type="hidden" id="firstHit" u="" />
<input type="hidden" id="globalSwitchForWalletCashback" value="true" />
<input type="hidden" id="walletCashBackEffectivePriceName" value="Effective Price" />
<input type="hidden" name="utm_content" id="utm_content" value="" />
<input type="hidden" name="ref" id="ref" value="" />
<input type="hidden" name="utm_medium" id="utm_medium" value="" />
<input type="hidden" name="utm_campaign" id="utm_campaign" value="" />
<input type="hidden" name="utm_source" id="utm_source" value="INLINK" />
<input type="hidden" name="afcampaign_id" id="afcampaign_id" value="" />
<input type="hidden" name="affiliate_id" id="affiliate_id" value="" />
<input type="hidden" name="utm_term" id="utm_term" value="" />
<input type="hidden" name="afcookie_id" id="afcookie_id" value="" />
<input type="hidden" value="false" id="codAvailableSwitch">
<input type="hidden" value="200" id="intervalLazyLoading">
<input type="hidden" id="initShowCart" value="" />
<div id="cartModal" class="modal-box fade-animation" style="display: none;">
<div class="modal-box-backdrop fade-animation" data-omnitureName="cartCloseFadedArea"></div>
<div class="modal-box-dialog">
<div class="modal-box-content"></div>
</div>
</div>
<div id="cartRemoveBundle" style="display: none;">
<h3 class="bundle-removal-heading">Remove Item/s</h3>
<span class="icon-font-grey-size24 cancel-bundle">
<i class="sd-icon sd-icon-delete-sign"></i>
</span>
<h4 class="bundle-removal-sub-heading">Your order with item/s</h4>
<ol type="1" class="bundle-removal-list"></ol>
<h4 class="bundle-removal-sub-heading-bottom">Will be removed</h4>
<button class="remove-bundle-confirm btn ripple-white" type="button">Confirm</button>
</div>
<div id="bundleCover"> </div>
<div id="sidebar_modal_right" class="sidebar rightside bigwidth">
<div class="sidebaroverlay"></div>
<div class="sidebarin">
<div align="center" class="sd-loader hidden">
<img class="js_svgLoader" lazySrc="http://i1.sdlcdn.com/img/revamp/loaderRevamp.svg" onerror="this.src='http://i1.sdlcdn.com/img/revamp/cyclicLoader.gif'; this.onerror=null;" height="32" width="32" />
</div>
<div class="close close1"><i class="sd-icon sd-icon-delete-sign"></i></div>
<div class="sidebarin-heading">
<h3></h3>
</div>
<div class="sidebarin-content">
</div>
</div>
</div>
<div class="searcharea-overlay hidden"></div>
<div class="loaderProgress toploader hidden"></div>
<div id="content_wrapper">
<input type='hidden' id='homePageType' value='CMP' />
<div id="leftNavMenuRevamp" class="">
<div class="leftNavWrapperRevamp">
<div class="leftNavigationLeftContainer expandDiv">
<ul class="nav smallNav">
<li class="navBreakTop"></li>
<li class="navlink">
<a href="javascript:void(0);" class="leftCategoriesProduct ">
<span class="labelIcon" style="background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAFoTx1HAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTExIDc5LjE1ODMyNSwgMjAxNS8wOS8xMC0wMToxMDoyMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjQ5RTE0MEY3Q0VGNDExRTU4MzM0RkRGRkY3QzMyQTM4IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjQ5RTE0MEY4Q0VGNDExRTU4MzM0RkRGRkY3QzMyQTM4Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NDlFMTQwRjVDRUY0MTFFNTgzMzRGREZGRjdDMzJBMzgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NDlFMTQwRjZDRUY0MTFFNTgzMzRGREZGRjdDMzJBMzgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5BSdUzAAABBElEQVR42mI4ffr0ov///zMwgAgg5z9AAIEJEIeJAQjOnDnzHyCAGMHCUGBiYsIIVgtTD6IBAgjMAOIfcH1AwA7SC+OAARNYMwQIAAQQ2FSQAEgZiulAAJL8ATKDAQtgBFsJdRyanABAAKE4FgiKgEb2wx0AxA1APAvK7wOaUAE3Fk0nDFQCTehgYcAO2oEm/AQZW4lDgS/YtVB72pEkTgGNNWeCeroDyQSwBIgBEGAwBz0G4rlAnAfEQtgch24nLNC5gVgKiDlwOPw/svfxBQE+AHYByMYiEjWCXPADOS7RQwgXOAXEbnCNMIDHALAGoDM/oqQedAA0oBBqwDEgDoRpgAEA2vmVORtcaqgAAAAASUVORK5CYII=);"></span>
<span class="labelIcon activeIcon hidden" style="background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAFoTx1HAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTExIDc5LjE1ODMyNSwgMjAxNS8wOS8xMC0wMToxMDoyMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjVCRDQ1QzlGQ0VGNDExRTVCNkJEODQ2QTc3OTlEQjI1IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjVCRDQ1Q0EwQ0VGNDExRTVCNkJEODQ2QTc3OTlEQjI1Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NUJENDVDOURDRUY0MTFFNUI2QkQ4NDZBNzc5OURCMjUiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NUJENDVDOUVDRUY0MTFFNUI2QkQ4NDZBNzc5OURCMjUiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7dhKgQAAABA0lEQVR42mIwd/db9P//fwYGEAHk/AcIIDAB4jAxAIGFh/9/gABiBAtDwYkdGxnBamHqQTRAAIEZQPwDrg8I2EF6YRwwYAJrhgABgACCa4bq/Q/jgzDIyh8gMxiwAEawlVDHockJAAQQimOBoAhoZz/cAUDcAMSzoPw+oAkVcGPRdMJAJdCEDhYG7KAdaMJPkLGVOBT4gl0LtacdSeIU0FhzJmiQdiCZAJYAMQACDOagx0A8F4jzgFgIm+PQ7YQFOjcQSwExBw6H/0f2Pr4gwAfALgDZWESiRpALfiDHJXoI4QKngNgNrhEG8BgA1gB05keU1IMOgAYUQg04BsSBMA0wAABAG4jN1HBQPAAAAABJRU5ErkJggg==);"></span>
<span class="catText">All Offers</span>
</a>
<div id="category1Data" class="leftNavigationRightBlock">
<div class="leftData colDataBlk">
<div class="colDataSection noBorder">
<div class="colDataInnerBlk">
<p><a href="javascript:void(0);" class="rightMenuLink shiftHeadTop noHasTagWidth noCursor"><span class="headingText">New Promotions</span></a>
</p>
<p>
<a href="offers/electronics_tv_dth.html" class="rightMenuLink noHasTagWidth">
<span class="linkTest">#BringHomeTheStadium</span></a>
</p>
<p>
<a href="offers/appliances-summer-sale.html" class="rightMenuLink noHasTagWidth">
<span class="linkTest">#BeatTheHeat</span></a>
</p>
<p>
<a href="offers/women-fashion-offers.html" class="rightMenuLink noHasTagWidth">
<span class="linkTest">Spring is in the Air</span></a>
</p>
<p><a href="javascript:void(0);" class="rightMenuLink headingTextLink noHasTagWidth noCursor"><span class="headingText">Snapdeal Stores</span></a>
</p>
<p>
<a href="offers/wedding-store-bride.html" class="rightMenuLink noHasTagWidth">
<span class="linkTest">The Wedding Store</span></a>
</p>
<p>
<a href="offers/pride-of-india.html" class="rightMenuLink noHasTagWidth">
<span class="linkTest">Pride of India</span></a>
</p>
<p>
<a href="offers/travel-store-destinations.html" class="rightMenuLink ">
<span class="linkTest">The Travel Store</span></a>
<span class="red-tag">New</span></p>
<p>
<a href="offers/luxury-beauty-store.html" class="rightMenuLink ">
<span class="linkTest">Luxury Beauty Store</span></a>
<span class="red-tag">New</span></p>
<p><a href="javascript:void(0);" class="rightMenuLink headingTextLink noHasTagWidth noCursor"><span class="headingText">Summer Must-Haves</span></a>
</p>
<p>
<a href="products/women-apparel@q=Season_s%253ASS16%257CTopBrands_s%253ABrands%257C&sort=plrty.html" class="rightMenuLink noHasTagWidth">
<span class="linkTest">Women's Fashion</span></a>
</p>
<p>
<a href="products/men-apparel@q=Occasion_s%253ANew%2520Launch%257C&sort=plrty.html" class="rightMenuLink noHasTagWidth">
<span class="linkTest">Men's Fashion</span></a>
</p>
<p>
<a href="offers/dailyneeds-beat-the-heat.html" class="rightMenuLink noHasTagWidth">
<span class="linkTest">Summer Essentials</span></a>
</p>
<p style="display:none;">
<a href="index.html" class="rightMenuLink headingTextLink noHasTagWidth noCursor">
<span class="headingText"></span></a>
<p style="display:none;">
<a href="index.html" class="rightMenuLink headingTextLink noHasTagWidth noCursor">
<span class="headingText"></span></a>
<p style="display:none;">
<a href="index.html" class="rightMenuLink headingTextLink noHasTagWidth noCursor">
<span class="headingText"></span></a>
<p style="display:none;">
<a href="index.html" class="rightMenuLink headingTextLink noHasTagWidth noCursor">
<span class="headingText"></span></a>
<p style="display:none;">
<a href="index.html" class="rightMenuLink headingTextLink noHasTagWidth noCursor">
<span class="headingText"></span></a>
<p style="display:none;">
<a href="index.html" class="rightMenuLink headingTextLink noHasTagWidth noCursor">
<span class="headingText"></span></a>
<p style="display:none;">
<a href="index.html" class="rightMenuLink headingTextLink noHasTagWidth noCursor">
<span class="headingText"></span></a>
<p style="display:none;">
<a href="index.html" class="rightMenuLink headingTextLink noHasTagWidth noCursor">
<span class="headingText"></span></a>
<p style="display:none;">
<a href="index.html" class="rightMenuLink headingTextLink noHasTagWidth noCursor">
<span class="headingText"></span></a>
<p style="display:none;">
<a href="index.html" class="rightMenuLink headingTextLink noHasTagWidth noCursor">
<span class="headingText"></span></a>
</div>
</div>
</div>
<div class="midData colDataBlk">
<div class="colDataSection ">
<div class="colDataInnerBlk">
<p><a href="offers/exclusive-launches.html" class="rightMenuLink shiftHeadTop noHasTagWidth
"><span class="headingText">Snapdeal Exclusives</span></a>
</p>
<p>
<a href="product/samsung-galaxy-abc-8gb-4g/676860597612.html" class="rightMenuLink ">
<span class="linkTest">Samsung Galaxy J3</span></a>
<span class="red-tag">New</span></p>
<p>
<a href="product/infocus-bingo-50-16gb-4g/671370471326.html" class="rightMenuLink ">
<span class="linkTest">InFocus Bingo 50</span></a>
<span class="red-tag">New</span></p>
<p>
<a href="flash-sale/micromax/canvas-spark3.html" class="rightMenuLink ">
<span class="linkTest">Micromax Spark 3</span></a>
<span class="red-tag">new</span></p>
<p>
<a href="product/intex-cloud-jewel-16gb-4g/682509052103.html" class="rightMenuLink noHasTagWidth">
<span class="linkTest">Intex Cloud Jewel</span></a>
</p>
<p>
<a href="product/asus-zenpad-c-70-z170mg/634801192067.html" class="rightMenuLink noHasTagWidth">
<span class="linkTest">Asus Zenpad Z170 MG</span></a>
</p>
<p>
<a href="product/infocus-bingo-10-8gb-3g/650501932721.html" class="rightMenuLink noHasTagWidth">
<span class="linkTest">InFocus Bingo 10</span></a>
</p>
<p>
<a href="product/intex-cloud-breeze-8gb-grey/671476050074.html" class="rightMenuLink noHasTagWidth">
<span class="linkTest">Intex Cloud Breeze</span></a>
</p>
<p>
<a href="offers/infocus-tvs.html" class="rightMenuLink noHasTagWidth">
<span class="linkTest">InFocus LED TVs</span></a>
</p>
<p>
<a href="product/blue-star-15-ton-3/640804836748.html" class="rightMenuLink noHasTagWidth">
<span class="linkTest">Blue Star AC</span></a>
</p>
<p>
<a href="product/kelloggs-special-k-multigrain-honey/653691375358.html" class="rightMenuLink noHasTagWidth">
<span class="linkTest">Kellogg's Special K</span></a>
</p>
<p>
<a href="http://decathlon.snapdeal.com/" class="rightMenuLink noHasTagWidth">
<span class="linkTest">Decathlon</span></a>
</p>
<p style="display:none;">
<a href="index.html" class="rightMenuLink headingTextLinknoHasTagWidth noCursor">
<span class="headingText"></span></a>
<p style="display:none;">
<a href="index.html" class="rightMenuLink headingTextLinknoHasTagWidth noCursor">
<span class="headingText"></span></a>
<p style="display:none;">
<a href="index.html" class="rightMenuLink headingTextLinknoHasTagWidth noCursor">
<span class="headingText"></span></a>
<p style="display:none;">
<a href="index.html" class="rightMenuLink headingTextLinknoHasTagWidth noCursor">
<span class="headingText"></span></a>
<p style="display:none;">
<a href="index.html" class="rightMenuLink headingTextLinknoHasTagWidth noCursor">
<span class="headingText"></span></a>
<p style="display:none;">
<a href="index.html" class="rightMenuLink headingTextLinknoHasTagWidth noCursor">
<span class="headingText"></span></a>
<p style="display:none;">
<a href="index.html" class="rightMenuLink headingTextLinknoHasTagWidth noCursor">
<span class="headingText"></span></a>
<p style="display:none;">
<a href="index.html" class="rightMenuLink headingTextLinknoHasTagWidth noCursor">
<span class="headingText"></span></a>
<p style="display:none;">
<a href="index.html" class="rightMenuLink headingTextLinknoHasTagWidth noCursor">
<span class="headingText"></span></a>
<p style="display:none;">
<a href="index.html" class="rightMenuLink headingTextLinknoHasTagWidth noCursor">
<span class="headingText"></span></a>
<p style="display:none;">
<a href="index.html" class="rightMenuLink headingTextLinknoHasTagWidth noCursor">
<span class="headingText"></span></a>
</div>
</div>
</div>
<div class="rightData colDataBlk">
<div class="colDataSection noBorder">
<div class="colDataInnerBlk">
<p style="display:none;">
<a href="index.html" class="rightMenuLink
shiftHeadTop noHasTagWidth
noCursor">
<span class="headingText"></span></a>
<p style="display:none;">
<a href="index.html" class="rightMenuLink
headingTextLink noHasTagWidth
noCursor">
<span class="headingText"></span></a>
<p style="display:none;">
<a href="index.html" class="rightMenuLink
headingTextLink noHasTagWidth
noCursor">
<span class="headingText"></span></a>
<p style="display:none;">
<a href="index.html" class="rightMenuLink
headingTextLink noHasTagWidth
noCursor">
<span class="headingText"></span></a>
<p style="display:none;">
<a href="index.html" class="rightMenuLink
headingTextLink noHasTagWidth
noCursor">
<span class="headingText"></span></a>
<p style="display:none;">
<a href="index.html" class="rightMenuLink
headingTextLink noHasTagWidth
noCursor">
<span class="headingText"></span></a>
<p style="display:none;">
<a href="index.html" class="rightMenuLink
headingTextLink noHasTagWidth
noCursor">
<span class="headingText"></span></a>
<p style="display:none;">
<a href="index.html" class="rightMenuLink
headingTextLink noHasTagWidth
noCursor">
<span class="headingText"></span></a>
<p style="display:none;">
<a href="index.html" class="rightMenuLink
headingTextLink noHasTagWidth
noCursor">
<span class="headingText"></span></a>
<p style="display:none;">
<a href="index.html" class="rightMenuLink
headingTextLink noHasTagWidth
noCursor">
<span class="headingText"></span></a>
<p style="display:none;">
<a href="index.html" class="rightMenuLink
headingTextLink noHasTagWidth
noCursor">
<span class="headingText"></span></a>
<p style="display:none;">
<a href="index.html" class="rightMenuLink
headingTextLink noHasTagWidth
noCursor">
<span class="headingText"></span></a>
<p style="display:none;">
<a href="index.html" class="rightMenuLink
headingTextLink noHasTagWidth
noCursor">
<span class="headingText"></span></a>
<p style="display:none;">
<a href="index.html" class="rightMenuLink
headingTextLink noHasTagWidth
noCursor">
<span class="headingText"></span></a>
<p style="display:none;">
<a href="index.html" class="rightMenuLink
headingTextLink noHasTagWidth
noCursor">
<span class="headingText"></span></a>
<p style="display:none;">
<a href="index.html" class="rightMenuLink
headingTextLink noHasTagWidth
noCursor">
<span class="headingText"></span></a>
<p style="display:none;">
<a href="index.html" class="rightMenuLink
headingTextLink noHasTagWidth
noCursor">
<span class="headingText"></span></a>
<p style="display:none;">
<a href="index.html" class="rightMenuLink
headingTextLink noHasTagWidth
noCursor">
<span class="headingText"></span></a>
<p style="display:none;">
<a href="index.html" class="rightMenuLink
headingTextLink noHasTagWidth
noCursor">
<span class="headingText"></span></a>
<p style="display:none;">
<a href="index.html" class="rightMenuLink
headingTextLink noHasTagWidth
noCursor">
<span class="headingText"></span></a>
<p style="display:none;">
<a href="index.html" class="rightMenuLink
headingTextLink noHasTagWidth
noCursor">
<span class="headingText"></span></a>
<p style="display:none;">
<a href="index.html" class="rightMenuLink
headingTextLink noHasTagWidth
noCursor">
<span class="headingText"></span></a>
<p style="display:none;">
<a href="index.html" class="rightMenuLink
headingTextLink noHasTagWidth
noCursor">
<span class="headingText"></span></a>
</div>
</div>
</div>
<div class="commonOffer fstOffer">
<div class="firstOfferForm">
<a class="bannerLink" href="offers/fmcg-daily-need-store.html">
<img class="bigOfferBanner lazy-load hidden-inview" data-src="http://i2.sdlcdn.com/img/leftnav03/4MarchDNSLeftnav.jpg" height="510" width="195"></img>
</a>
</div>
</div>
<div class="commonOffer secndOffer">
<div class="firstOfferForm secndOfferForm2">
<a class="bannerLink" href="offers/deal-of-the-day.html">
<img class="smallOfferBanner lazy-load hidden-inview" data-src="http://i4.sdlcdn.com/img/storefront/02/Smallleftnev-copy-dod.jpg" height="250" width="195"></img>
</a>
<a class="bannerLink" href="products/refurbished-mobiles.html">
<img class="smallOfferBanner secndBanner lazy-load hidden-inview" data-src="http://i4.sdlcdn.com/img/leftnav03/Hiru_Mobiles_refurbished_small_leftnav_10kb.jpg" height="250" width="195"></img>
</a>
</div>
</div>
</div>
</li>
<li class="navBreak"></li>
<li class="navBreakTop"></li>
<li class="navlink">
<a href="javascript:void(0);" class="leftCategoriesProduct ">
<span class="labelIcon" style="background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAFoTx1HAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTExIDc5LjE1ODMyNSwgMjAxNS8wOS8xMC0wMToxMDoyMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjkyODRBRUE3Q0VGNDExRTVBMTFFOUE1QjFFMkZGRTBDIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjkyODRBRUE4Q0VGNDExRTVBMTFFOUE1QjFFMkZGRTBDIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6OTI4NEFFQTVDRUY0MTFFNUExMUU5QTVCMUUyRkZFMEMiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6OTI4NEFFQTZDRUY0MTFFNUExMUU5QTVCMUUyRkZFMEMiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz49Y9stAAAAy0lEQVR42mL4//8/w+nTp88yghggABBAIN5/EAcuAhBACCkoYAIRZ86c+Q/CIDZAAIFVADkLgGwjBhAHauwFJmz6WoGUPkAAwZUhY5AWEI2iDR2wwBhAoxyQxHlABEAAwZxyCcj+DcSXgTjexMSEEawE2Q50jNdO8iVhruVBdi3QQQeQdSoD8X4gdoXSYAAQYCjhDtT9BUQB8Q8oBgEOKAYaaMIDV4wtSPEFN1FBQHYI0EQjCxpfH5YWgeAllBYnxsbLSGxxNE3IcgwAp2WlZDIb0pkAAAAASUVORK5CYII=);"></span>
<span class="labelIcon activeIcon hidden" style="background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAFoTx1HAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTExIDc5LjE1ODMyNSwgMjAxNS8wOS8xMC0wMToxMDoyMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkE1RERBRjY3Q0VGNDExRTU5N0M3QzIxQjg0RDMxRTVDIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkE1RERBRjY4Q0VGNDExRTU5N0M3QzIxQjg0RDMxRTVDIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6QTVEREFGNjVDRUY0MTFFNTk3QzdDMjFCODREMzFFNUMiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6QTVEREFGNjZDRUY0MTFFNTk3QzdDMjFCODREMzFFNUMiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7Z+fl2AAAAzElEQVR42mL4//8/g7m731lGEAMEAAIIxPsP4sBFAAIIIQUDUE3/YUoBAgiswsLDfwFQzggsC1VxgQlZG5gDVNYKpPQBAgiuDBmDtIBoJgY8gAXGABrlgCTOAyIAAgjmlEtA9m8gvgzE8Sd2bGREdvgFbHbjtZN8SZhreZBdC3TQAWSdykC8H4hdoTQYAAQYSrgDdX8BUmeA+AcUgwAHFJsATeRBiR/0IMUX3EQFAdkhQBONLGh8fWAAwULrJZQWJ8bGy0hscTRNyHIMAFaZlsU3QqzwAAAAAElFTkSuQmCC);"></span>
<span class="catText">Mobiles & Tablets</span>
</a>
<div id="category2Data" class="leftNavigationRightBlock">
<div class="leftData colDataBlk">
<div class="colDataSection noBorder">
<div class="colDataInnerBlk">
<p><a href="products/mobiles-mobile-phones.html" class="rightMenuLink shiftHeadTop noHasTagWidth"><span class="headingText">Mobile Phones</span></a>
</p>
<p>
<a href="products/mobiles-mobile-phones@sort=plrty&q=Connectivity_s%253A4G%255E4G%2520LTE%257C.html" class="rightMenuLink noHasTagWidth">
<span class="linkTest">4G SmartPhones</span></a>
</p>
<p>
<a href="products/mobiles-mobile-phones@q=Connectivity_s%253A3G%255E2G%257C&sort=plrty.html" class="rightMenuLink noHasTagWidth">
<span class="linkTest">3G & 2G SmartPhones</span></a>
</p>
<p>
<a href="products/mobiles-mobile-phones@sort=plrty.html" class="rightMenuLink noHasTagWidth">
<span class="viewText">View All</span></a>
</p>
<p><a href="javascript:void(0);" class="rightMenuLink headingTextLink noHasTagWidth noCursor"><span class="headingText">Shop By Price</span></a>
</p>
<p>
<a href="products/mobiles-mobile-phones@q=Price%253A2000%252C4999%257C&sort=plrty.html" class="rightMenuLink noHasTagWidth">
<span class="linkTest">2000 - 4999</span></a>
</p>
<p>
<a href="products/mobiles-mobile-phones@q=Price%253A5000%252C7999%257C&sort=plrty.html" class="rightMenuLink noHasTagWidth">
<span class="linkTest">5000-7999</span></a>
</p>
<p>
<a href="products/mobiles-mobile-phones@q=Price%253A8000%252C14999%257C&sort=plrty.html" class="rightMenuLink noHasTagWidth">
<span class="linkTest">8000-14999</span></a>
</p>
<p>
<a href="products/mobiles-mobile-phones@q=Price%253A15000%252C24999%257C&sort=plrty.html" class="rightMenuLink noHasTagWidth">
<span class="linkTest">15000-24999</span></a>
</p>
<p>
<a href="products/mobiles-mobile-phones@q=Price%253A25000%252C89990%257C&sort=plrty.html" class="rightMenuLink noHasTagWidth">
<span class="linkTest">Above 25,000</span></a>
</p>
<p>
<a href="products/mobiles-mobile-phones/filters/Form_s~Feature Phones@sort=plrty&q=Form_s%253AFeature%2520Phones%257CPrice%253A550%252C2000%257C.html" class="rightMenuLink noHasTagWidth">
<span class="linkTest">Below 2000</span></a>
</p>
<p><a href="javascript:void(0);" class="rightMenuLink headingTextLink noHasTagWidth noCursor"><span class="headingText">Top Brands</span></a>
</p>
<p>
<a href="brand/micromax/mobiles-mobile-phones.html" class="rightMenuLink noHasTagWidth">
<span class="linkTest">Micromax</span></a>
</p>
<p>
<a href="brand/samsung/mobiles-mobile-phones.html" class="rightMenuLink noHasTagWidth">
<span class="linkTest">Samsung</span></a>
</p>
<p>
<a href="products/mobiles-mobile-phones@q=Brand%253AInFocus%257C&sort=plrty.html" class="rightMenuLink noHasTagWidth">
<span class="linkTest">InFocus</span></a>
</p>
<p>
<a href="http://asus.snapdeal.com/custom/mobiles" class="rightMenuLink noHasTagWidth">
<span class="linkTest">ASUS</span></a>
</p>
<p><a href="products/mobiles-tablets.html" class="rightMenuLink headingTextLink noHasTagWidth"><span class="headingText">Tablets</span></a>
</p>
<p>
<a href="products/mobiles-tablets/filters/Connectivity_s~Wifi Only@sort=plrty.html" class="rightMenuLink noHasTagWidth">
<span class="linkTest">Wifi Tablets</span></a>
</p>
<p>
<a href="products/mobiles-tablets/filters/Connectivity_s~3G Calling@sort=plrty.html" class="rightMenuLink noHasTagWidth">
<span class="linkTest">3G Tablets</span></a>
</p>
<p>
<a href="products/mobiles-tablets/filters/Connectivity_s~4G@sort=plrty.html" class="rightMenuLink noHasTagWidth">
<span class="linkTest">4G Tablets</span></a>
</p>
<p>
<a href="products/mobiles-tablets@sort=plrty.html" class="rightMenuLink noHasTagWidth">
<span class="viewText">View All</span></a>
</p>
<p><a href="products/mobiles-tablet-accessories.html" class="rightMenuLink headingTextLink noHasTagWidth"><span class="headingText">Tablet Accessories</span></a>
</p>
<p style="display:none;">
<a href="index.html" class="rightMenuLink headingTextLink noHasTagWidth noCursor">
<span class="headingText"></span></a>
</div>
</div>
</div>
<div class="midData colDataBlk">
<div class="colDataSection ">
<div class="colDataInnerBlk">
<p><a href="products/mobiles-cases-covers.html" class="rightMenuLink shiftHeadTop noHasTagWidth
"><span class="headingText">Mobile Cases & Covers</span></a>
</p>
<p>
<a href="products/mobiles-printed-back-covers@sort=plrty.html" class="rightMenuLink noHasTagWidth">
<span class="linkTest">Printed Back Covers</span></a>
</p>
<p>
<a href="products/mobiles-flip-cases-covers@sort=plrty.html" class="rightMenuLink noHasTagWidth">
<span class="linkTest">Flip Covers</span></a>
</p>
<p>
<a href="products/mobiles-plain-back-covers@sort=plrty.html" class="rightMenuLink noHasTagWidth">
<span class="linkTest">Plain Back Covers</span></a>
</p>
<p>
<a href="products/mobiles-cases-covers@sort=plrty.html" class="rightMenuLink noHasTagWidth">
<span class="viewText">View All</span></a>
</p>
<p><a href="products/mobiles-power-banks.html" class="rightMenuLink headingTextLink noHasTagWidth
"><span class="headingText">Power Banks</span></a>
</p>
<p>
<a href="http://www.snapdeal.com/products/mobiles-power-banks/?q=Mah_s:2001-3000^%203001-4000^%204001-5000" class="rightMenuLink noHasTagWidth">
<span class="linkTest">2000 mAh - 5000 mAh</span></a>
</p>
<p>
<a href="http://www.snapdeal.com/products/mobiles-power-banks/?q=Mah_s:5001-6000^%206001-7000" class="rightMenuLink noHasTagWidth">
<span class="linkTest">5001 mAh - 7000 mAh</span></a>
</p>
<p>
<a href="http://www.snapdeal.com/products/mobiles-power-banks/?q=Mah_s:7001-8000^%208001-9000" class="rightMenuLink noHasTagWidth">
<span class="linkTest">7001 mAh - 9000 mAh</span></a>
</p>
<p>
<a href="http://www.snapdeal.com/products/mobiles-power-banks/?q=Mah_s:10000above^%209001-10000" class="rightMenuLink noHasTagWidth">
<span class="linkTest">10000 mAh & Above</span></a>
</p>
<p><a href="products/mobiles-accessories.html" class="rightMenuLink headingTextLink noHasTagWidth
"><span class="headingText">Mobile Accessories</span></a>
</p>
<p>
<a href="products/mobiles-bluetooth.html" class="rightMenuLink noHasTagWidth">
<span class="linkTest">Bluetooth Devices</span></a>
</p>
<p>
<a href="products/mobiles-screen-guards.html" class="rightMenuLink noHasTagWidth">
<span class="linkTest">Screen Guards</span></a>
</p>