-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2555 lines (2465 loc) · 92.9 KB
/
index.html
File metadata and controls
2555 lines (2465 loc) · 92.9 KB
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>
<html lang="en">
<<<<<<< HEAD
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cute Fashion — Bespoke Tailoring</title>
<link
href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Josefin+Sans:wght@100;300;400&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- TOAST -->
<div class="toast" id="toast"></div>
<!-- CART DRAWER OVERLAY -->
<div class="cart-drawer-overlay" id="cartOverlay" onclick="closeCart()"></div>
<!-- CART DRAWER -->
<div class="cart-drawer" id="cartDrawer">
<div class="cart-header">
<h2>Your Cart</h2>
<button class="close-cart" onclick="closeCart()">✕</button>
</div>
<div class="cart-items" id="cartItems">
<div class="empty-cart">Your cart is beautifully empty</div>
</div>
<div class="cart-footer">
<div class="cart-total">
<span
style="font-size:0.8rem;letter-spacing:0.1em;font-family:'Josefin Sans';font-weight:300;align-self:center;">TOTAL</span>
<span id="cartTotal">₹0</span>
</div>
<button class="btn-primary" style="width:100%;text-align:center;border:none;" onclick="checkout()">Proceed to
Checkout</button>
</div>
</div>
<!-- MODAL -->
<div class="modal-overlay" id="productModal">
<div class="modal">
<button class="modal-close" onclick="closeModal()">✕</button>
<div id="modalContent"></div>
</div>
</div>
<!-- PROMO BANNER -->
<div class="promo-banner">✦ Free Consultation for Orders · Express Delivery Available · 100% Hand-Stitched ✦</div>
<!-- NAV -->
<nav id="navbar">
<a href="#" class="nav-logo">CUTE <span>FASHION</span></a>
<div class="nav-links">
<a href="#catalog">Catalog</a>
<a href="#readymade">Ready to Wear</a>
<a href="#measurements">Measure Guide</a>
<a href="#process">Our Process</a>
<a href="#order">Custom Order</a>
<a href="#contact">Contact</a>
<a href="#" class="nav-cta cart-btn" onclick="openCart(); return false;">
🛍 Cart <span class="cart-count" id="cartCount">0</span>
</a>
</div>
<button class="mobile-menu-btn" onclick="toggleMenu()">
<span></span><span></span><span></span>
</button>
</nav>
<!-- HERO -->
<section id="hero">
<div class="hero-left">
<div class="hero-tag">Attur, Salem</div>
<h1 class="hero-title">
Crafted<br>to <em>Fit</em><br>Your Story
</h1>
<p class="hero-subtitle">Custom stitching designed for you — perfect fit, beautiful finish, every time.</p>
<div class="hero-actions">
<a href="#catalog" class="btn-primary">Browse Designs</a>
<a href="#order" class="btn-outline">Place Custom Order</a>
</div>
<div class="hero-stats">
<div>
<div class="stat-val">2400+</div>
<div class="stat-label">Happy Clients</div>
</div>
<div>
<div class="stat-val">13+</div>
<div class="stat-label">Years of Craft</div>
</div>
<div>
<div class="stat-val">100%</div>
<div class="stat-label">Hand-Stitched</div>
</div>
</div>
</div>
<div class="hero-right">
<div class="hero-fabric">
<div class="fabric-strip">Premium Cotton</div>
<div class="fabric-strip">Silk & Linen</div>
<div class="fabric-strip">Elegant Georgette</div>
<div class="fabric-strip">Sheer Organza</div>
<div class="fabric-strip">Velvet & Brocade</div>
</div>
<div class="hero-badge">
<span>Boutique</span>
<strong>✦</strong>
<span>Design</span>
</div>
</div>
</section>
<!-- SERVICES TICKER -->
<div id="services-strip">
<div class="services-ticker">
<span>Bridal Blouses </span><span class="dot">✦</span>
<span>Designer Blouses</span><span class="dot">✦</span>
<span>Bridal Lehenga</span><span class="dot">✦</span>
<span>Half Saree Stitching</span><span class="dot">✦</span>
<span>Designer Kurtis</span><span class="dot">✦</span>
<span>Party Wear Dresses</span><span class="dot">✦</span>
<span>Anarkali Dresses</span><span class="dot">✦</span>
<span>Kids Frocks</span><span class="dot">✦</span>
<span>Festive Wear</span><span class="dot">✦</span>
<span>Indo-Western</span><span class="dot">✦</span>
<span>Bridal Blouses</span><span class="dot">✦</span>
<span>Designer Blouses</span><span class="dot">✦</span>
<span>Bridal Lehenga</span><span class="dot">✦</span>
<span>Half Saree Stitching</span><span class="dot">✦</span>
<span>Designer Kurtis</span><span class="dot">✦</span>
<span>Party Wear Dresses</span><span class="dot">✦</span>
<span>Anarkali Dresses</span><span class="dot">✦</span>
<span>Kids Frocks</span><span class="dot">✦</span>
<span>Custom Dress Designs</span><span class="dot">✦</span>
<span>Alterations & Fittings</span><span class="dot">✦</span>
</div>
</div>
<!-- CATALOG -->
<section id="catalog">
<div class="section-tag">Our Designs</div>
<h2 class="section-title reveal">Our <em>Designs</em></h2>
<p style="font-size:0.75rem;line-height:2;color:#9A8F85;max-width:500px;letter-spacing:0.08em;" class="reveal">
Explore some of our popular stitching styles.
Every design can be customized with your preferred fabric, fit, and finishing.</p>
<div class="filter-tabs reveal">
<button class="filter-tab active" onclick="filterCatalog('all', this)">All</button>
<button class="filter-tab" onclick="filterCatalog('kurtis', this)">Kurtis</button>
<button class="filter-tab" onclick="filterCatalog('maxi', this)">Maxi</button>
<button class="filter-tab" onclick="filterCatalog('salwar', this)">Salwar</button>
</div>
<div class="catalog-grid" id="catalogGrid"></div>
</section>
<!-- READY MADE -->
<section id="readymade">
<div class="section-tag">Ready to Wear</div>
<h2 class="section-title reveal">Off-the-Rack, <em>On Point</em></h2>
<p style="font-size:0.75rem;line-height:2;color:#9A8F85;max-width:500px;letter-spacing:0.08em;" class="reveal">
Carefully crafted ready-made garments — perfect proportions, immediate availability.</p>
<div class="readymade-grid reveal" id="readymadeGrid"></div>
</section>
<!-- PROCESS -->
<section id="process">
<div class="section-tag">How It Works</div>
<h2 class="section-title reveal">From <em>Vision</em> to Wardrobe</h2>
<div class="process-steps">
<div class="process-step reveal">
<div class="process-icon">✦</div>
<div class="process-step-num">01</div>
<div class="process-step-name">Consult</div>
<div class="process-step-desc">Book a free consultation to discuss your style vision and preferences.</div>
</div>
<div class="process-step reveal">
<div class="process-icon">📐</div>
<div class="process-step-num">02</div>
<div class="process-step-name">Measure</div>
<div class="process-step-desc">Precise measurements taken by our master tailors or guided self-measure.</div>
</div>
<div class="process-step reveal">
<div class="process-icon">🧵</div>
<div class="process-step-num">03</div>
<div class="process-step-name">Craft</div>
<div class="process-step-desc">Hand-stitched by artisans with 20+ years of experience.</div>
</div>
<div class="process-step reveal">
<div class="process-icon">🔍</div>
<div class="process-step-num">04</div>
<div class="process-step-name">Fit Trial</div>
<div class="process-step-desc">One complimentary fitting session — we adjust until it's perfect.</div>
</div>
<div class="process-step reveal">
<div class="process-icon">🎁</div>
<div class="process-step-num">05</div>
<div class="process-step-name">Deliver</div>
<div class="process-step-desc">Beautifully packaged and delivered to your doorstep.</div>
</div>
</div>
</section>
<!-- MEASUREMENT GUIDE -->
<section id="measurements">
<div class="section-tag">Measurement Guide</div>
<h2 class="section-title reveal">Get Your <em>Perfect Fit</em></h2>
<div class="measurement-layout">
<div>
<div class="measure-steps">
<div class="measure-step reveal">
<div class="step-num">01</div>
<div>
<div class="step-name">Chest / Bust</div>
<div class="step-desc">Wrap the tape around the fullest part of your chest, keeping it horizontal and
parallel to the floor. Keep two fingers under the tape for comfort.</div>
</div>
</div>
<div class="measure-step reveal">
<div class="step-num">02</div>
<div>
<div class="step-name">Waist</div>
<div class="step-desc">Measure around the narrowest part of your natural waist, typically about 1 inch
above your navel. Breathe normally, don't suck in.</div>
</div>
</div>
<div class="measure-step reveal">
<div class="step-num">03</div>
<div>
<div class="step-name">Hips</div>
<div class="step-desc">Stand with feet together and measure around the fullest part of your hips, usually
7–9 inches below the waist.</div>
</div>
</div>
<div class="measure-step reveal">
<div class="step-num">04</div>
<div>
<div class="step-name">Shoulder Width</div>
<div class="step-desc">Measure from the outer edge of one shoulder to the outer edge of the other, across
the back.</div>
</div>
</div>
<div class="measure-step reveal">
<div class="step-num">05</div>
<div>
<div class="step-name">Length</div>
<div class="step-desc">For tops: from the highest shoulder point to desired hem. For trousers: from the
natural waist to the floor.</div>
</div>
</div>
</div>
</div>
<div>
<div class="measure-figure reveal">
<svg class="human-silhouette" viewBox="0 0 260 420" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="130" cy="48" r="28" fill="#2A2A2A" opacity="0.85" />
<rect x="122" y="74" width="16" height="18" fill="#2A2A2A" opacity="0.85" />
<path
d="M90 92 Q72 97 68 125 L65 210 Q65 222 78 222 L182 222 Q195 222 195 210 L192 125 Q188 97 170 92 L158 90 Q144 87 130 87 Q116 87 102 90 Z"
fill="#2A2A2A" opacity="0.85" />
<path d="M90 94 Q72 98 60 115 L48 188 Q45 202 55 206 L68 204 L80 132 Z" fill="#2A2A2A" opacity="0.65" />
<path d="M170 94 Q188 98 200 115 L212 188 Q215 202 205 206 L192 204 L180 132 Z" fill="#2A2A2A"
opacity="0.65" />
<path d="M98 222 L88 360 Q86 374 98 374 L118 374 L130 240 Z" fill="#2A2A2A" opacity="0.75" />
<path d="M162 222 L172 360 Q174 374 162 374 L142 374 L130 240 Z" fill="#2A2A2A" opacity="0.75" />
<line x1="68" y1="122" x2="192" y2="122" stroke="#C9A84C" stroke-width="1" stroke-dasharray="4,3"
opacity="0.8" />
<line x1="20" y1="122" x2="65" y2="122" stroke="#C9A84C" stroke-width="0.8" opacity="0.5" />
<text x="2" y="119" fill="#C9A84C" font-size="7.5" font-family="sans-serif" font-weight="bold">CHEST</text>
<line x1="67" y1="168" x2="193" y2="168" stroke="#C9A84C" stroke-width="1" stroke-dasharray="4,3"
opacity="0.8" />
<line x1="20" y1="168" x2="64" y2="168" stroke="#C9A84C" stroke-width="0.8" opacity="0.5" />
<text x="2" y="165" fill="#C9A84C" font-size="7.5" font-family="sans-serif" font-weight="bold">WAIST</text>
<line x1="66" y1="210" x2="194" y2="210" stroke="#C9A84C" stroke-width="1" stroke-dasharray="4,3"
opacity="0.8" />
<line x1="20" y1="210" x2="63" y2="210" stroke="#C9A84C" stroke-width="0.8" opacity="0.5" />
<text x="7" y="207" fill="#C9A84C" font-size="7.5" font-family="sans-serif" font-weight="bold">HIPS</text>
<line x1="90" y1="88" x2="170" y2="88" stroke="#C9A84C" stroke-width="1" opacity="0.9" />
<line x1="90" y1="84" x2="90" y2="92" stroke="#C9A84C" stroke-width="1" />
<line x1="170" y1="84" x2="170" y2="92" stroke="#C9A84C" stroke-width="1" />
<text x="102" y="82" fill="#C9A84C" font-size="7.5" font-family="sans-serif"
font-weight="bold">SHOULDER</text>
<line x1="235" y1="20" x2="235" y2="374" stroke="#C9A84C" stroke-width="0.8" stroke-dasharray="3,4"
opacity="0.5" />
<line x1="230" y1="20" x2="240" y2="20" stroke="#C9A84C" stroke-width="1" opacity="0.6" />
<line x1="230" y1="374" x2="240" y2="374" stroke="#C9A84C" stroke-width="1" opacity="0.6" />
<text x="238" y="205" fill="#C9A84C" font-size="7.5" font-family="sans-serif" font-weight="bold"
transform="rotate(90,238,205)">HEIGHT</text>
<line x1="130" y1="242" x2="130" y2="374" stroke="#C9A84C" stroke-width="0.8" stroke-dasharray="3,3"
opacity="0.5" />
<text x="134" y="315" fill="#C9A84C" font-size="7" font-family="sans-serif" opacity="0.9">INSEAM</text>
</svg>
</div>
<div class="measure-form reveal">
<h3>Save My Measurements</h3>
<div class="unit-toggle">
<button class="unit-btn active" onclick="setUnit('cm', this)">Centimeters</button>
<button class="unit-btn" onclick="setUnit('in', this)">Inches</button>
</div>
<div class="form-grid">
<div class="form-group"><label>Chest / Bust</label><input type="number" placeholder="e.g. 96 cm"
id="m-chest"></div>
<div class="form-group"><label>Waist</label><input type="number" placeholder="e.g. 80 cm" id="m-waist">
</div>
<div class="form-group"><label>Hips</label><input type="number" placeholder="e.g. 98 cm" id="m-hips"></div>
<div class="form-group"><label>Shoulder</label><input type="number" placeholder="e.g. 42 cm"
id="m-shoulder"></div>
<div class="form-group"><label>Sleeve Length</label><input type="number" placeholder="e.g. 60 cm"
id="m-sleeve"></div>
<div class="form-group"><label>Inseam</label><input type="number" placeholder="e.g. 78 cm" id="m-inseam">
</div>
</div>
<button class="btn-primary" style="margin-top:1.5rem;border:none;width:100%;text-align:center;"
onclick="saveMeasurements()">Save Measurements</button>
</div>
</div>
</div>
</section>
<!-- ORDER -->
<section id="order">
<div class="section-tag">Custom Order</div>
<h2 class="section-title reveal">Commission Your <em>Piece</em></h2>
<div class="order-layout">
<form class="order-form reveal" onsubmit="submitOrder(event)">
<div class="form-field"><label>Full Name</label><input type="text" placeholder="Your full name" required></div>
<div class="form-field"><label>Phone Number</label><input type="tel" placeholder="+91 98765 43210" required>
</div>
<div class="form-field"><label>Email</label><input type="email" placeholder="your@email.com"></div>
<div class="form-field">
<label>Garment Type</label>
<select required>
<option value="">Select garment...</option>
<option>Sherwani</option>
<option>Kurta Pyjama</option>
<option>Formal Suit</option>
<option>Blazer</option>
<option>Lehenga</option>
<option>Salwar Kameez</option>
<option>Saree Blouse</option>
<option>Anarkali</option>
<option>Indo-Western</option>
<option>Other (Describe below)</option>
</select>
</div>
<div class="form-field">
<label>Occasion</label>
<select>
<option value="">Select occasion...</option>
<option>Wedding</option>
<option>Festival</option>
<option>Corporate</option>
<option>Casual</option>
<option>Party / Event</option>
</select>
</div>
<div class="form-field">
<label>Preferred Fabric Colour</label>
<div class="fabric-picker" id="fabricPicker">
<div class="fabric-swatch" style="background:#1a2438" title="Navy" onclick="selectFabric(this,'Navy Blue')">
</div>
<div class="fabric-swatch" style="background:#F5F0E8;border:1px solid #ddd" title="Ivory"
onclick="selectFabric(this,'Ivory')"></div>
<div class="fabric-swatch" style="background:#2D2D2D" title="Charcoal"
onclick="selectFabric(this,'Charcoal')"></div>
<div class="fabric-swatch" style="background:#5C1A1A" title="Wine" onclick="selectFabric(this,'Burgundy')">
</div>
<div class="fabric-swatch" style="background:#3D5240" title="Sage"
onclick="selectFabric(this,'Forest Green')"></div>
<div class="fabric-swatch" style="background:#D4A5A5" title="Blush"
onclick="selectFabric(this,'Blush Pink')"></div>
<div class="fabric-swatch" style="background:#C9A84C" title="Gold" onclick="selectFabric(this,'Gold')">
</div>
<div class="fabric-swatch" style="background:#4A3728" title="Brown"
onclick="selectFabric(this,'Chocolate Brown')"></div>
<div class="fabric-swatch" style="background:#1A1730" title="Royal Blue"
onclick="selectFabric(this,'Royal Blue')"></div>
<div class="fabric-swatch" style="background:#8B3A2A" title="Rust" onclick="selectFabric(this,'Rust')">
</div>
<div class="fabric-swatch" style="background:#2C1B47" title="Purple" onclick="selectFabric(this,'Plum')">
</div>
<div class="fabric-swatch"
style="background:repeating-linear-gradient(45deg,#1a2438,#1a2438 5px,#C9A84C 5px,#C9A84C 6px)"
onclick="selectFabric(this,'Navy & Gold Stripe')"></div>
</div>
<input type="hidden" id="selectedFabric">
<span id="fabricLabel"
style="font-size:0.6rem;color:#9A8F85;letter-spacing:0.1em;margin-top:0.5rem;display:block;"></span>
</div>
<div class="form-field"><label>Special Instructions</label><textarea rows="4"
placeholder="Embroidery details, style preferences, reference images, specific requirements..."></textarea>
</div>
<div class="form-field"><label>Required By</label><input type="date"></div>
<button type="submit" class="btn-primary" style="border:none;align-self:flex-start;">Place Order
Request</button>
</form>
<div class="order-summary reveal">
<div class="summary-title">Order Summary</div>
<div class="summary-item"><span>Base Stitching</span><span>₹1,200/- approx</span></div>
<div class="summary-item"><span>Premium Fabric (per metre)</span><span>₹800/- approx</span></div>
<div class="summary-item"><span>Embroidery (optional)</span><span>₹500/- approx</span></div>
<div class="summary-item"><span>Fitting Session</span><span style="color:#5C7A5A">Free</span></div>
<div class="summary-item total"><span>Estimated Starting From</span><span>₹2,000/- approx</span></div>
<div class="timeline-steps">
<div class="timeline-step">
<div class="timeline-icon">1</div>
<div class="timeline-text"><strong>Confirmation</strong>We call you within 24 hours to confirm details.
</div>
</div>
<div class="timeline-step">
<div class="timeline-icon">2</div>
<div class="timeline-text"><strong>Measurement Visit</strong>We schedule a home visit or in-store
appointment.</div>
</div>
<div class="timeline-step">
<div class="timeline-icon">3</div>
<div class="timeline-text"><strong>Crafting (7–21 days)</strong>Depends on complexity and fabric
availability.</div>
</div>
<div class="timeline-step">
<div class="timeline-icon">4</div>
<div class="timeline-text"><strong>Delivery</strong>Home delivery or pickup — your choice.</div>
</div>
</div>
</div>
</div>
</section>
<!-- TESTIMONIALS -->
<section id="testimonials">
<div class="section-tag">Testimonials</div>
<h2 class="section-title reveal">Worn With <em>Pride</em></h2>
<div class="testimonials-grid">
<div class="testimonial-card reveal">
<div class="stars">★★★★★</div>
<p class="testimonial-text">I ordered a custom salwar suit for my sister's wedding and I was completely blown
away. The fit was flawless and the embroidery was exactly what I had in mind. So many compliments on the day!
</p>
<div class="testimonial-author">
<div class="author-avatar">A</div>
<div>
<div class="author-name">Ananya Krishnan</div>
<div class="author-title">Wedding Client · Coimbatore</div>
</div>
</div>
</div>
<div class="testimonial-card reveal">
<div class="stars">★★★★★</div>
<p class="testimonial-text">I've been coming here for my kurtis for over 5 years and the quality never
disappoints. They understand my style perfectly and the stitching is always neat and precise. Truly my go-to
tailor!</p>
<div class="testimonial-author">
<div class="author-avatar">D</div>
<div>
<div class="author-name">Deepika Suresh</div>
<div class="author-title">Repeat Client · Salem</div>
</div>
</div>
</div>
<div class="testimonial-card reveal">
<div class="stars">★★★★★</div>
<p class="testimonial-text">My bridal lehenga was an absolute dream. Every detail — the hand embroidery, the
silhouette, the finishing — was perfect. I felt like royalty on my wedding day. Thank you so much!</p>
<div class="testimonial-author">
<div class="author-avatar">M</div>
<div>
<div class="author-name">Meenakshi Rajan</div>
<div class="author-title">Bridal Client · Trichy</div>
</div>
</div>
</div>
</div>
</section>
<!-- FOOTER / CONTACT -->
<footer id="contact">
<div class="contact-layout">
<div class="contact-info">
<div class="contact-logo">Cute <span>Fashion</span></div>
<p class="contact-desc">Precision stitching, personal style. We bring your vision to life — one perfect fit at a
time.</p>
<div class="contact-detail">
<div class="contact-item"><span>📍</span><span>Attur, Salem, Tamil Nadu</span></div>
<div class="contact-item"><span>📞</span><span>+91 99524 71853</span></div>
<div class="contact-item"><span>✉</span><span>thecutefashionboutique@gmail.com</span></div>
<div class="contact-item"><span>🕐</span><span>Mon – Sat: 10am – 8pm</span></div>
</div>
</div>
<div>
<div class="footer-links">
<div class="footer-col">
<h4>Collections</h4>
<a href="#catalog"
onclick="filterCatalog('kurtis', document.querySelector('.filter-tab:nth-child(2)'))">Designer Kurtis</a>
<a href="#catalog"
onclick="filterCatalog('salwar', document.querySelector('.filter-tab:nth-child(4)'))">Salwar Suits</a>
<a href="#catalog" onclick="filterCatalog('maxi', document.querySelector('.filter-tab:nth-child(3)'))">Maxi
Dresses</a>
<a href="#readymade">Peplum Tops</a>
<a href="#catalog">Bridal Lehenga</a>
<a href="#catalog">Ethnic & Festive</a>
</div>
<div class="footer-col">
<h4>Services</h4>
<a href="#order">Custom Stitching</a>
<a href="#readymade">Ready to Wear</a>
<a href="#order">Bridal Stitching</a>
<a href="#order">Blouse Stitching</a>
<a href="#order">Alterations & Fittings</a>
<a href="#measurements">Fit & Size Guide</a>
</div>
<div class="footer-col">
<h4>Info</h4>
<a href="#hero">About Us</a>
<a href="#process">How It Works</a>
<a href="#measurements">Measurement Guide</a>
<a href="#order">Delivery & Timelines</a>
<a href="#contact">Find Us</a>
<a href="mailto:thecutefashionboutique@gmail.com">Contact Us</a>
=======
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ADAA — Bespoke Tailoring Atelier</title>
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Josefin+Sans:wght@100;300;400&display=swap" rel="stylesheet">
<style>
:root {
--cream: #F5F0E8;
--ink: #1A1209;
--gold: #C9A84C;
--gold-light: #E8D5A3;
--rust: #8B3A2A;
--sage: #5C6B5A;
--warm-grey: #9A8F85;
--border: rgba(201,168,76,0.25);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
background: var(--cream);
color: var(--ink);
font-family: 'Josefin Sans', sans-serif;
font-weight: 300;
overflow-x: hidden;
cursor: none;
}
/* CUSTOM CURSOR */
.cursor {
width: 12px; height: 12px;
background: var(--gold);
border-radius: 50%;
position: fixed;
top: 0; left: 0;
pointer-events: none;
z-index: 9999;
transition: transform 0.1s ease, width 0.2s, height 0.2s;
transform: translate(-50%, -50%);
}
.cursor-ring {
width: 36px; height: 36px;
border: 1px solid var(--gold);
border-radius: 50%;
position: fixed;
top: 0; left: 0;
pointer-events: none;
z-index: 9998;
transform: translate(-50%, -50%);
transition: all 0.15s ease;
}
body:hover .cursor { opacity: 1; }
/* LOADER */
#loader {
position: fixed; inset: 0;
background: var(--ink);
z-index: 10000;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
transition: opacity 0.8s ease, visibility 0.8s;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-text {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(2rem, 6vw, 5rem);
color: var(--cream);
letter-spacing: 0.3em;
font-weight: 300;
opacity: 0;
animation: fadeUp 1s ease 0.3s forwards;
}
.loader-line {
width: 0;
height: 1px;
background: var(--gold);
margin-top: 1rem;
animation: expand 1.5s ease 0.8s forwards;
}
@keyframes expand { to { width: 200px; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
/* NAV */
nav {
position: fixed; top: 0; left: 0; right: 0;
z-index: 1000;
padding: 1.5rem 4rem;
display: flex;
align-items: center;
justify-content: space-between;
background: rgba(245,240,232,0.92);
backdrop-filter: blur(12px);
border-bottom: 1px solid var(--border);
transition: all 0.3s;
}
nav.scrolled { padding: 1rem 4rem; }
.nav-logo {
font-family: 'Cormorant Garamond', serif;
font-size: 2rem;
font-weight: 600;
letter-spacing: 0.15em;
color: var(--ink);
text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
font-size: 0.7rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--ink);
text-decoration: none;
transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
background: var(--ink) !important;
color: var(--cream) !important;
padding: 0.6rem 1.5rem;
font-size: 0.65rem !important;
letter-spacing: 0.2em;
transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--ink) !important; }
.cart-btn {
position: relative;
cursor: none;
}
.cart-count {
position: absolute;
top: -8px; right: -18px;
background: var(--rust);
color: white;
border-radius: 50%;
width: 18px; height: 18px;
font-size: 0.6rem;
display: flex; align-items: center; justify-content: center;
}
.mobile-menu-btn {
display: none;
flex-direction: column;
gap: 5px;
cursor: none;
background: none;
border: none;
}
.mobile-menu-btn span {
display: block;
width: 24px; height: 1px;
background: var(--ink);
transition: all 0.3s;
}
/* HERO */
#hero {
min-height: 100vh;
display: grid;
grid-template-columns: 1fr 1fr;
padding-top: 80px;
overflow: hidden;
}
.hero-left {
padding: 8rem 4rem 4rem;
display: flex;
flex-direction: column;
justify-content: center;
}
.hero-tag {
font-size: 0.65rem;
letter-spacing: 0.3em;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 2rem;
display: flex;
align-items: center;
gap: 1rem;
}
.hero-tag::before {
content: '';
display: block;
width: 40px;
height: 1px;
background: var(--gold);
}
.hero-title {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(3rem, 6vw, 6rem);
font-weight: 300;
line-height: 1.05;
margin-bottom: 2rem;
opacity: 0;
animation: fadeUp 1s ease 1.8s forwards;
}
.hero-title em { font-style: italic; color: var(--rust); }
.hero-subtitle {
font-size: 0.8rem;
letter-spacing: 0.12em;
line-height: 2;
color: var(--warm-grey);
max-width: 380px;
margin-bottom: 3rem;
opacity: 0;
animation: fadeUp 1s ease 2s forwards;
}
.hero-actions {
display: flex;
gap: 1.5rem;
flex-wrap: wrap;
opacity: 0;
animation: fadeUp 1s ease 2.2s forwards;
}
.btn-primary {
background: var(--ink);
color: var(--cream);
padding: 1rem 2.5rem;
font-family: 'Josefin Sans', sans-serif;
font-size: 0.7rem;
letter-spacing: 0.2em;
text-transform: uppercase;
border: 1px solid var(--ink);
cursor: none;
transition: all 0.3s;
text-decoration: none;
display: inline-block;
}
.btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.btn-outline {
background: transparent;
color: var(--ink);
padding: 1rem 2.5rem;
font-family: 'Josefin Sans', sans-serif;
font-size: 0.7rem;
letter-spacing: 0.2em;
text-transform: uppercase;
border: 1px solid var(--ink);
cursor: none;
transition: all 0.3s;
text-decoration: none;
display: inline-block;
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.hero-right {
position: relative;
overflow: hidden;
background: var(--ink);
}
.hero-fabric {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 0;
}
.fabric-strip {
width: 100%;
flex: 1;
display: flex;
align-items: center;
justify-content: center;
font-family: 'Cormorant Garamond', serif;
font-size: 0.7rem;
letter-spacing: 0.4em;
text-transform: uppercase;
transition: flex 0.4s;
}
.fabric-strip:nth-child(1) { background: #2C1810; color: #8B6B4A; }
.fabric-strip:nth-child(2) { background: #1A2818; color: #5C7A5A; }
.fabric-strip:nth-child(3) { background: #1A1730; color: #4A4880; }
.fabric-strip:nth-child(4) { background: #2C2018; color: #8B7A5A; }
.fabric-strip:nth-child(5) { background: #18202C; color: #4A6080; }
.fabric-strip:hover { flex: 4; cursor: none; }
.hero-badge {
position: absolute;
bottom: 2rem;
right: 2rem;
width: 100px; height: 100px;
border: 1px solid rgba(255,255,255,0.2);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
text-align: center;
}
.hero-badge span {
font-size: 0.55rem;
letter-spacing: 0.2em;
color: rgba(255,255,255,0.6);
text-transform: uppercase;
}
.hero-badge strong {
font-family: 'Cormorant Garamond', serif;
font-size: 1.4rem;
color: var(--gold);
}
.hero-stats {
display: flex;
gap: 3rem;
margin-top: 4rem;
padding-top: 2rem;
border-top: 1px solid var(--border);
opacity: 0;
animation: fadeUp 1s ease 2.4s forwards;
}
.stat-val {
font-family: 'Cormorant Garamond', serif;
font-size: 2rem;
font-weight: 300;
color: var(--gold);
}
.stat-label {
font-size: 0.6rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--warm-grey);
}
/* SECTION COMMON */
section { padding: 7rem 4rem; }
.section-tag {
font-size: 0.65rem;
letter-spacing: 0.3em;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 1rem;
display: flex;
align-items: center;
gap: 1rem;
}
.section-tag::before { content: ''; display: block; width: 30px; height: 1px; background: var(--gold); }
.section-title {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(2rem, 4vw, 3.5rem);
font-weight: 300;
line-height: 1.1;
margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--rust); }
/* SERVICES STRIP */
#services-strip {
background: var(--ink);
padding: 2rem 0;
overflow: hidden;
}
.services-ticker {
display: flex;
gap: 4rem;
animation: ticker 20s linear infinite;
white-space: nowrap;
}
.services-ticker span {
font-size: 0.7rem;
letter-spacing: 0.3em;
text-transform: uppercase;
color: var(--gold-light);
}
.services-ticker .dot { color: var(--gold); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
/* CATALOG */
#catalog { background: var(--cream); }
.catalog-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
margin-top: 3rem;
}
.catalog-card {
position: relative;
overflow: hidden;
cursor: none;
group: true;
}
.catalog-img {
aspect-ratio: 3/4;
overflow: hidden;
position: relative;
}
.catalog-img-inner {
width: 100%; height: 100%;
transition: transform 0.6s ease;
display: flex;
align-items: center;
justify-content: center;
font-family: 'Cormorant Garamond', serif;
font-size: 4rem;
position: relative;
}
.catalog-card:hover .catalog-img-inner { transform: scale(1.05); }
.catalog-overlay {
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(26,18,9,0.8) 0%, transparent 50%);
opacity: 0;
transition: opacity 0.4s;
}
.catalog-card:hover .catalog-overlay { opacity: 1; }
.catalog-overlay-btn {
position: absolute;
bottom: 1.5rem;
left: 50%;
transform: translateX(-50%) translateY(10px);
background: var(--gold);
color: var(--ink);
padding: 0.7rem 1.5rem;
font-size: 0.65rem;
letter-spacing: 0.2em;
text-transform: uppercase;
white-space: nowrap;
opacity: 0;
transition: all 0.4s;
border: none;
cursor: none;
}
.catalog-card:hover .catalog-overlay-btn { opacity: 1; transform: translateX(-50%) translateY(0); }
.catalog-info { padding: 1.2rem 0; }
.catalog-name {
font-family: 'Cormorant Garamond', serif;
font-size: 1.3rem;
font-weight: 400;
margin-bottom: 0.3rem;
}
.catalog-meta {
display: flex;
justify-content: space-between;
align-items: center;
}
.catalog-type { font-size: 0.65rem; letter-spacing: 0.15em; color: var(--warm-grey); text-transform: uppercase; }
.catalog-price {
font-family: 'Cormorant Garamond', serif;
font-size: 1.1rem;
color: var(--gold);
}
.tag-badge {
position: absolute;
top: 1rem; left: 1rem;
background: var(--rust);
color: white;
font-size: 0.55rem;
letter-spacing: 0.15em;
text-transform: uppercase;
padding: 0.3rem 0.7rem;
}
.color-dots { display: flex; gap: 0.4rem; margin-top: 0.5rem; }
.color-dot {
width: 12px; height: 12px;
border-radius: 50%;
border: 1px solid rgba(0,0,0,0.1);
cursor: none;
}
/* Fabric textures for catalog items */
.fabric-navy { background: linear-gradient(135deg, #1a2438 25%, #243050 50%, #1a2438 75%); }
.fabric-ivory { background: linear-gradient(135deg, #F5F0E8 25%, #EDE5D0 50%, #F5F0E8 75%); }
.fabric-charcoal { background: linear-gradient(135deg, #2D2D2D 25%, #3D3D3D 50%, #2D2D2D 75%); }
.fabric-wine { background: linear-gradient(135deg, #5C1A1A 25%, #7A2525 50%, #5C1A1A 75%); }
.fabric-sage { background: linear-gradient(135deg, #3D5240 25%, #4E6652 50%, #3D5240 75%); }
.fabric-blush { background: linear-gradient(135deg, #D4A5A5 25%, #E0B8B8 50%, #D4A5A5 75%); }
.fabric-overlay-pattern {
position: absolute;
inset: 0;
opacity: 0.15;
background-image: repeating-linear-gradient(
45deg,
transparent,
transparent 2px,
rgba(255,255,255,0.3) 2px,
rgba(255,255,255,0.3) 4px
);
}
/* READY MADE */