-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBlue Salon Homepage.dc.html
More file actions
1047 lines (1005 loc) · 62.9 KB
/
Copy pathBlue Salon Homepage.dc.html
File metadata and controls
1047 lines (1005 loc) · 62.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>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="./support.js"></script>
</head>
<body>
<x-dc>
<helmet>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&display=swap">
<link rel="stylesheet" href="_ds/blue-salon-design-system-2e96cc8e-316e-4712-8b81-ecf6a8190b5f/tokens/fonts.css">
<link rel="stylesheet" href="_ds/blue-salon-design-system-2e96cc8e-316e-4712-8b81-ecf6a8190b5f/tokens/colors.css">
<link rel="stylesheet" href="_ds/blue-salon-design-system-2e96cc8e-316e-4712-8b81-ecf6a8190b5f/tokens/typography.css">
<link rel="stylesheet" href="_ds/blue-salon-design-system-2e96cc8e-316e-4712-8b81-ecf6a8190b5f/tokens/spacing.css">
<link rel="stylesheet" href="_ds/blue-salon-design-system-2e96cc8e-316e-4712-8b81-ecf6a8190b5f/tokens/elevation.css">
<style>
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
background: #ffffff;
color: #36414e;
font-family: "Qatar", "Helvetica Neue", Arial, sans-serif;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
.bs-serif { font-family: "Cormorant Garamond", Georgia, serif; }
::selection { background: rgba(194,162,94,.25); }
input::placeholder { color: #a7b0bb; }
@keyframes bsHeroIn { from { opacity:.0; } to { opacity:1; } }
.bs-media-card { isolation:isolate; outline:none; }
.bs-media-card > img,
.bs-media-card > image-slot {
transition: transform .75s cubic-bezier(.2,.7,.2,1), filter .45s ease;
will-change: transform;
}
.bs-media-card:hover > img,
.bs-media-card:hover > image-slot {
transform: scale(1.045);
filter: saturate(1.04) contrast(1.02);
}
.bs-media-card::after {
content:"";
position:absolute;
inset:0;
z-index:1;
pointer-events:none;
background:linear-gradient(135deg,rgba(255,255,255,.12),transparent 42%);
opacity:0;
transition:opacity .45s ease;
}
.bs-media-card:hover::after { opacity:1; }
.bs-media-card > :not(img):not(image-slot) { z-index:2; }
.bs-payment-options {
display:flex;
flex-wrap:wrap;
gap:8px;
margin-top:10px;
}
.bs-payment-option {
width:48px;
height:30px;
border:1px solid #e2ddd3;
border-radius:4px;
background:#fff;
display:flex;
align-items:center;
justify-content:center;
color:#16273b;
}
.bs-payment-option svg {
display:block;
max-width:38px;
max-height:18px;
}
.bs-hero-image {
position:absolute;
inset:0;
width:100%;
height:100%;
object-fit:cover;
object-position:center;
animation:bsHeroIn .7s ease;
}
.bs-hero-overlay {
position:absolute;
inset:0;
background:linear-gradient(90deg,rgba(8,25,43,.82) 0%,rgba(8,25,43,.58) 39%,rgba(8,25,43,.08) 72%);
}
.bs-site-header {
box-shadow:rgba(1, 36, 73, 0.041) 0 1px 2px 0, rgba(0,57,118,.12) 0 1px 4px 1px;
}
.bs-hero-inner {
height:520px;
}
.bs-hero-copy h1 {
min-height:3.06em;
}
.bs-hero-copy-inner {
max-width:560px;
margin-left:52px;
}
.bs-hero-copy-inner.is-wide {
max-width:600px;
}
.bs-hero-copy-inner.is-tight {
max-width:500px;
}
.bs-hero-copy-inner.is-tight h1 {
font-size:clamp(42px,4.7vw,74px);
}
.bs-hero-copy-inner.is-tight a {
margin-top:34px !important;
}
.bs-hero-arrow {
z-index:4;
width:48px !important;
height:48px !important;
border:1px solid rgba(255,255,255,.9) !important;
background:#ffffff !important;
color:#003976 !important;
box-shadow:0 5px 16px rgba(8,25,43,.3);
opacity:.96;
}
.bs-hero-arrow:hover {
background:#003976 !important;
border-color:#003976 !important;
color:#fff !important;
opacity:1;
}
.bs-hero-arrow svg {
width:19px;
height:19px;
stroke-width:1.8;
}
.bs-category-card {
position:relative;
display:block;
min-height:410px;
overflow:hidden;
background:#e9e0d2;
text-decoration:none;
outline:none;
}
.bs-category-card > img {
position:absolute;
inset:0;
width:100%;
height:100%;
object-fit:cover;
}
.bs-category-card::before {
content:"";
position:absolute;
inset:0;
z-index:1;
background:linear-gradient(0deg,rgba(8,25,43,.72) 0%,rgba(8,25,43,.08) 54%,transparent 75%);
pointer-events:none;
}
.bs-category-card-copy {
position:absolute;
left:24px;
right:24px;
bottom:22px;
z-index:2;
color:#fff;
}
.bs-brand-marquee {
overflow:hidden;
position:relative;
mask-image:linear-gradient(90deg,transparent 0, #000 7%, #000 93%, transparent 100%);
}
.bs-brand-track {
display:flex;
align-items:center;
gap:14px;
width:max-content;
animation:bsBrandScroll 26s linear infinite;
}
.bs-brand-marquee:hover .bs-brand-track {
animation-play-state:paused;
}
.bs-brand-pill {
flex:0 0 auto;
min-width:156px;
padding:16px 20px;
border:1px solid #ece6da;
background:#fff;
border-radius:999px;
text-align:center;
color:#3a4250;
box-shadow:0 2px 8px rgba(22,39,59,.04);
}
.bs-brand-pill span {
display:block;
white-space:nowrap;
}
@keyframes bsBrandScroll {
0% { transform:translateX(0); }
100% { transform:translateX(-50%); }
}
.bs-social-btn {
width:34px;
height:34px;
border:1px solid #e2ddd3;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#586473;
background:#fff;
transition:transform .25s ease, border-color .25s ease, color .25s ease, background .25s ease;
}
.bs-social-btn:hover {
transform:translateY(-1px);
border-color:#cdbb8b;
color:#003976;
background:#faf8f2;
}
.bs-social-btn svg {
width:15px;
height:15px;
display:block;
}
.bs-nav-link,
.bs-section-link,
.bs-footer-link,
.bs-hero-cta,
.bs-newsletter-submit,
.bs-brand-pill {
transition:color .25s ease, border-color .25s ease, background-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.bs-nav-link:hover {
color:#003976 !important;
border-bottom-color:#003976 !important;
}
.bs-hero-cta:hover,
.bs-solid-cta:hover {
background:#003976 !important;
border-color:#003976 !important;
color:#fff !important;
box-shadow:0 8px 24px rgba(0,57,118,.22);
}
.bs-newsletter-submit:hover {
background:#c2a25e !important;
border-color:#c2a25e !important;
color:#fff !important;
box-shadow:0 8px 18px rgba(194,162,94,.2);
}
.bs-section-link:hover {
background:transparent !important;
color:#003976 !important;
box-shadow:none;
}
.bs-footer-link:hover {
color:#003976 !important;
}
.bs-category-card:hover::before {
background:linear-gradient(0deg,rgba(194,162,94,.42) 0%,rgba(8,25,43,.1) 54%,transparent 75%);
}
.bs-category-card:hover .bs-category-card-copy span:last-child {
color:#f7efe0;
}
.bs-brand-pill:hover {
border-color:#c2a25e;
box-shadow:0 8px 18px rgba(194,162,94,.14);
transform:translateY(-2px);
}
.bs-brand-pill:hover span {
color:#c2a25e;
}
.bs-hero-arrow:hover {
background:#003976 !important;
border-color:#003976 !important;
color:#fff !important;
}
.bs-social-btn:hover {
border-color:#c2a25e;
background:#fcf7ea;
color:#c2a25e;
}
.bs-living-feature {
position:relative;
min-height:430px;
overflow:hidden;
background:#e9e0d2;
}
.bs-living-feature > img {
position:absolute;
inset:0;
width:100%;
height:100%;
object-fit:cover;
transition:transform .9s cubic-bezier(.2,.7,.2,1);
}
.bs-living-feature:hover > img { transform:scale(1.035); }
.bs-living-feature::after {
content:"";
position:absolute;
inset:0;
background:linear-gradient(270deg,rgba(8,25,43,.82) 0%,rgba(8,25,43,.42) 38%,transparent 70%);
}
.bs-living-copy {
position:absolute;
z-index:2;
top:50%;
right:56px;
transform:translateY(-50%);
width:min(390px,42%);
text-align:right;
color:#fff;
}
.bs-living-copy > span {
display:block;
font-size:9.5px;
letter-spacing:.24em;
text-transform:uppercase;
color:rgba(255,255,255,.7);
margin-bottom:16px;
}
.bs-living-copy h2 { font-weight:400; font-size:clamp(34px,3.4vw,50px); line-height:1; margin:0; }
.bs-living-copy p { font-size:13px; line-height:1.7; color:rgba(255,255,255,.78); margin:17px 0 0; }
.bs-living-copy a {
display:inline-flex;
align-items:center;
gap:12px;
margin-top:24px;
color:#fff;
text-decoration:none;
font-size:10.5px;
letter-spacing:.2em;
text-transform:uppercase;
border-bottom:1px solid rgba(255,255,255,.65);
padding-bottom:5px;
}
.bs-rewards-card { position:relative; overflow:hidden; isolation:isolate; }
.bs-rewards-card > img {
position:absolute;
inset:0;
width:100%;
height:100%;
object-fit:cover;
z-index:-2;
}
.bs-rewards-card::before {
content:"";
position:absolute;
inset:0;
background:linear-gradient(90deg,rgba(9,17,27,.9),rgba(9,17,27,.58));
z-index:-1;
}
.bs-cat-strip { outline:none; }
.bs-cat-strip > img { transition:transform .75s cubic-bezier(.2,.7,.2,1); }
.bs-cat-strip:hover > img { transform:scale(1.035); filter:saturate(1.04) contrast(1.02); }
@media (max-width: 900px) {
.bs-header-inner { padding:0 22px !important; grid-template-columns:auto 1fr !important; height:66px !important; }
.bs-header-nav { display:none !important; }
.bs-header-actions { gap:16px !important; }
.bs-hero-inner { height:470px !important; min-height:470px !important; padding:0 24px !important; }
.bs-hero-copy { padding:72px 36px 86px 0 !important; max-width:470px !important; margin-left:0 !important; }
.bs-trust-grid { grid-template-columns:repeat(2,1fr) !important; }
.bs-cat-hero { grid-row:auto !important; }
.bs-category-grid { grid-template-columns:1fr 1fr !important; grid-template-rows:auto !important; }
.bs-category-card { min-height:320px !important; }
.bs-products-layout { grid-template-columns:1fr !important; }
.bs-products-intro { max-width:520px; }
.bs-product-grid { gap:18px !important; }
.bs-dual-promo { grid-template-columns:1fr !important; }
}
@media (max-width: 640px) {
section[data-screen-label] { scroll-margin-top:76px; }
.bs-section { padding-left:18px !important; padding-right:18px !important; padding-top:64px !important; }
.bs-header-inner { padding:0 18px !important; }
.bs-header-actions a[aria-label="Account"] { display:none !important; }
.bs-hero-inner { height:440px !important; min-height:440px !important; padding:0 18px !important; }
.bs-hero-copy { padding:62px 42px 82px 18px !important; margin-left:0 !important; }
.bs-hero-copy h1 { font-size:42px !important; }
.bs-hero-badge { display:none !important; }
.bs-hero-arrow { width:40px !important; height:40px !important; }
.bs-trust-wrap { padding:0 18px !important; }
.bs-trust-grid { grid-template-columns:1fr 1fr !important; }
.bs-trust-item { padding:18px 8px !important; align-items:flex-start !important; }
.bs-trust-item p { white-space:normal !important; }
.bs-cat-hero { grid-row:auto !important; }
.bs-category-grid { grid-template-columns:1fr !important; gap:16px !important; grid-template-rows:auto !important; }
.bs-category-card { min-height:440px !important; }
.bs-cat-strip { height:140px !important; }
.bs-cat-strip-copy { right:24px !important; }
.bs-product-grid {
display:flex !important;
overflow-x:auto;
scroll-snap-type:x mandatory;
gap:14px !important;
padding-bottom:12px;
scrollbar-width:none;
}
.bs-product-grid::-webkit-scrollbar { display:none; }
.bs-product-grid > * { flex:0 0 82%; scroll-snap-align:start; }
.bs-stage { margin-top:64px !important; }
.bs-stage-inner { padding:0 18px !important; }
.bs-stage-banner { height:330px !important; padding:32px 26px !important; align-items:flex-end !important; }
.bs-stage-title { font-size:43px !important; }
.bs-stage-mark { font-size:46px !important; }
.bs-section-heading { margin-bottom:30px !important; }
.bs-brands { justify-content:flex-start !important; flex-wrap:nowrap !important; overflow-x:auto; padding-bottom:12px; }
.bs-brands > * { flex:0 0 auto; }
.bs-app-panel { padding:34px 24px !important; gap:24px !important; flex-direction:column; text-align:center; }
.bs-app-visual { width:190px !important; height:250px !important; }
.bs-store-buttons { justify-content:center; flex-wrap:wrap; }
.bs-newsletter-grid { grid-template-columns:1fr !important; gap:28px !important; padding:42px 0 !important; }
.bs-newsletter-form { flex-direction:column; border:0 !important; gap:10px !important; }
.bs-newsletter-form input { border:1px solid #d8d2c6 !important; }
.bs-newsletter-form button { min-height:48px; }
.bs-footer-grid { grid-template-columns:1fr 1fr !important; gap:38px 24px !important; }
.bs-footer-grid > :first-child { grid-column:1 / -1; }
.bs-hero-image { object-position:62% center; }
.bs-hero-overlay { background:linear-gradient(90deg,rgba(8,25,43,.9) 0%,rgba(8,25,43,.68) 54%,rgba(8,25,43,.18) 100%); }
.bs-living-feature { min-height:520px; }
.bs-living-feature > img { object-position:38% center; }
.bs-living-feature::after {
background:linear-gradient(0deg,rgba(8,25,43,.9) 0%,rgba(8,25,43,.45) 48%,transparent 76%);
}
.bs-living-copy {
top:auto;
left:24px;
right:24px;
bottom:28px;
width:auto;
transform:none;
text-align:left;
}
.bs-living-copy h2 { font-size:38px; }
}
</style>
<script src="image-slot.js"></script>
</helmet>
<div style="background:#ffffff; overflow-x:clip;">
<!-- ============ ANNOUNCEMENT BAR ============ -->
<div style=" text-align:center; padding:9px 16px; border-bottom:1px solid rgba(194,162,94,.16);">
<span style="font-size:12px; letter-spacing:.14em; text-transform:uppercase; color:#003976;">Split your payment into 4 installments · Free shipping above QAR 499</span>
</div>
<!-- ============ HEADER ============ -->
<header class="bs-site-header" data-screen-label="Header" onMouseLeave="{{ closeMega }}" style="background:#ffffff; position:sticky; top:0; z-index:100;">
<div class="bs-header-inner" style="max-width:1280px; margin:0 auto; padding:0 40px; height:74px; display:grid; grid-template-columns:1fr auto 1fr; align-items:center;">
<a href="#" style="justify-self:start; display:flex; align-items:center;">
<img src="assets/logo-horizontal.svg" alt="Blue Salon" style="height:46px; width:auto; display:block;">
</a>
<nav class="bs-header-nav" style="justify-self:center; display:flex; align-items:center; gap:30px;">
<sc-for list="{{ navItems }}" as="item" hint-placeholder-count="8">
<a href="#" class="bs-nav-link" onMouseEnter="{{ item.enter }}" style="font-size:13px; letter-spacing:.14em; text-transform:uppercase; color:{{ item.color }}; text-decoration:none; padding:27px 2px; border-bottom:1px solid transparent;">{{ item.label }}</a>
</sc-for>
</nav>
<div class="bs-header-actions" style="justify-self:end; display:flex; align-items:center; gap:22px; color:#0e1722;">
<button onClick="{{ openSearch }}" aria-label="Search" style="background:none; border:0; cursor:pointer; color:inherit; display:flex; padding:0;">
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.4"><circle cx="11" cy="11" r="7"></circle><line x1="21" y1="21" x2="16.5" y2="16.5"></line></svg>
</button>
<a href="#" aria-label="Account" style="color:inherit; display:flex;">
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.4"><circle cx="12" cy="8" r="4"></circle><path d="M4 21c0-4.4 3.6-7 8-7s8 2.6 8 7"></path></svg>
</a>
<a href="#" aria-label="Bag" style="color:inherit; display:flex; position:relative;">
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.4"><path d="M6 8h12l-1 12H7L6 8z"></path><path d="M9 8V6.5C9 4.6 10.3 3.5 12 3.5S15 4.6 15 6.5V8"></path></svg>
<span style="position:absolute; top:-7px; right:-8px; min-width:15px; height:15px; padding:0 3px; border-radius:999px; background:#003976; color:#fff; font-size:9px; line-height:15px; text-align:center;">2</span>
</a>
</div>
</div>
<sc-if value="{{ megaOpen }}">
<div style="position:absolute; left:0; right:0; top:100%; z-index:95; background:#ffffff; border-top:1px solid #ece9e3; box-shadow:0 26px 44px rgba(0,42,87,.10);">
<div style="max-width:1280px; margin:0 auto; padding:42px 40px 48px; display:flex; gap:56px; align-items:stretch;">
<div style="display:flex; gap:56px; flex:1;">
<sc-for list="{{ mega.columns }}" as="col" hint-placeholder-count="3">
<div>
<p style="font-size:10px; letter-spacing:.2em; text-transform:uppercase; color:#9a7b3f; margin:0 0 18px;">{{ col.title }}</p>
<ul style="list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:12px;">
<sc-for list="{{ col.links }}" as="lk" hint-placeholder-count="4">
<li><a href="#" style="font-size:13px; color:#586473; text-decoration:none; transition:color .3s ease;" style-hover="color:#003976;">{{ lk }}</a></li>
</sc-for>
</ul>
</div>
</sc-for>
</div>
<div style="width:300px; flex-shrink:0; position:relative; overflow:hidden; background:{{ mega.feat.tone }}; padding:30px; display:flex; flex-direction:column; justify-content:flex-end; min-height:224px;">
<img src="{{ mega.feat.image }}" alt="{{ mega.feat.alt }}" style="position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center; transition:transform .75s cubic-bezier(.2,.7,.2,1);">
<div style="position:absolute; inset:0; background:linear-gradient(0deg,rgba(8,25,43,.76) 0%,rgba(8,25,43,.22) 55%,transparent 100%); pointer-events:none;"></div>
<p style="position:relative; z-index:1; font-size:10px; letter-spacing:.22em; text-transform:uppercase; color:rgba(255,255,255,.78); margin:0;">{{ mega.feat.eyebrow }}</p>
<h4 class="bs-serif" style="position:relative; z-index:1; font-weight:400; font-size:25px; line-height:1.15; color:#fff; margin:12px 0 18px;">{{ mega.feat.title }}</h4>
<a href="#" class="bs-section-link" style="position:relative; z-index:1; display:inline-flex; align-items:center; gap:10px; font-size:11px; letter-spacing:.16em; text-transform:uppercase; color:#fff; text-decoration:none; border-bottom:1px solid rgba(255,255,255,.65); padding-bottom:5px; width:fit-content;">{{ mega.feat.cta }}</a>
</div>
</div>
</div>
</sc-if>
</header>
<!-- ============ SEARCH OVERLAY ============ -->
<sc-if value="{{ searchOpen }}">
<div style="position:fixed; inset:0; z-index:300;">
<div onClick="{{ closeSearch }}" style="position:absolute; inset:0; background:rgba(14,23,34,.32);"></div>
<div style="position:relative; background:#ffffff; padding:46px 0 52px; border-bottom:1px solid #ece9e3;">
<div style="max-width:1280px; margin:0 auto; padding:0 40px;">
<div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:6px;">
<span style="font-size:10.5px; letter-spacing:.24em; text-transform:uppercase; color:#9a7b3f;">Search</span>
<button onClick="{{ closeSearch }}" aria-label="Close" style="background:none; border:0; cursor:pointer; color:#0e1722; display:flex; padding:6px;">
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.4"><line x1="6" y1="6" x2="18" y2="18"></line><line x1="18" y1="6" x2="6" y2="18"></line></svg>
</button>
</div>
<input type="text" autofocus placeholder="Search for products, brands and more" style="width:100%; border:0; border-bottom:1px solid #cdd4dc; background:transparent; outline:none; font-family:'Cormorant Garamond',Georgia,serif; font-weight:400; font-size:34px; color:#0e1722; padding:12px 0;">
<div style="display:flex; gap:34px; margin-top:30px; flex-wrap:wrap; align-items:center;">
<span style="font-size:10.5px; letter-spacing:.22em; text-transform:uppercase; color:#9aa3ad;">Popular</span>
<div style="display:flex; gap:26px; flex-wrap:wrap;">
<sc-for list="{{ topSearches }}" as="term" hint-placeholder-count="5">
<span style="font-size:14px; color:#36414e; cursor:pointer; border-bottom:1px solid transparent; padding-bottom:2px;" style-hover="border-bottom:1px solid #9a7b3f; color:#0e1722;">{{ term }}</span>
</sc-for>
</div>
</div>
</div>
</div>
</div>
</sc-if>
<main>
<!-- ============ HERO CAROUSEL ============ -->
<section data-screen-label="Hero carousel" style="position:relative; background:#16273b; border-bottom:1px solid #e7e1d6; overflow:hidden;">
<img class="bs-hero-image" src="{{ heroImage }}" alt="{{ heroAlt }}">
<div class="bs-hero-overlay"></div>
<div class="bs-hero-inner" style="max-width:1280px; margin:0 auto; padding:0 40px; min-height:520px; display:flex; align-items:center; position:relative;">
<div class="bs-hero-copy bs-hero-copy-inner {{ heroCopyClass }}" style="position:relative; z-index:2; padding:88px 0 96px;">
<div style="display:flex; align-items:center; gap:14px; margin-bottom:26px;">
<span style="width:34px; height:1px; background:#d8bd82;"></span>
<span style="font-size:11px; letter-spacing:.26em; text-transform:uppercase; color:#e1c98f;">{{ heroEyebrow }}</span>
</div>
<h1 class="bs-serif" style="font-weight:400; font-size:clamp(46px,5.4vw,82px); line-height:1.02; letter-spacing:.005em; text-transform:uppercase; color:#fff; margin:0; white-space:pre-line;">{{ heroTitle }}</h1>
<a href="#" class="bs-hero-cta bs-solid-cta" style="display:inline-flex; align-items:center; gap:14px; margin-top:42px; background:#ffffff; color:#16273b; text-decoration:none; font-size:11px; letter-spacing:.18em; text-transform:uppercase; padding:16px 30px; border-radius:2px;">{{ heroCta }}
<svg width="20" height="9" viewBox="0 0 22 9" fill="none" stroke="currentColor" stroke-width="1.3"><line x1="0" y1="4.5" x2="19" y2="4.5"></line><path d="M15.5 1l4 3.5-4 3.5"></path></svg>
</a>
</div>
<!-- curated by experts badge -->
<!-- <div class="bs-hero-badge" style="position:absolute; right:0; top:50%; transform:translateY(-50%); width:118px; height:118px; border:1px solid rgba(255,255,255,.4); background:rgba(8,25,43,.28); backdrop-filter:blur(8px); display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; gap:10px;">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="1.3"><line x1="12" y1="4" x2="12" y2="20"></line><line x1="4" y1="12" x2="20" y2="12"></line></svg>
<span style="font-size:9px; letter-spacing:.2em; text-transform:uppercase; color:#fff; line-height:1.5;">Curated<br>by<br>experts</span>
</div> -->
<!-- arrows -->
<button class="bs-hero-arrow" onClick="{{ prev }}" aria-label="Previous slide" style="position:absolute; left:14px; top:50%; transform:translateY(-50%); border-radius:50%; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background .25s ease, border-color .25s ease, box-shadow .25s ease;">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.3"><path d="M15 5l-7 7 7 7"></path></svg>
</button>
<button class="bs-hero-arrow" onClick="{{ next }}" aria-label="Next slide" style="position:absolute; right:14px; top:50%; transform:translateY(-50%); border-radius:50%; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background .25s ease, border-color .25s ease, box-shadow .25s ease;">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.3"><path d="M9 5l7 7-7 7"></path></svg>
</button>
<!-- slide indicator -->
<div style="position:absolute; left:50%; bottom:30px; transform:translateX(-50%); display:flex; align-items:center; gap:18px;">
<span style="font-size:11px; letter-spacing:.16em; color:#fff;">{{ heroIndicator }}</span>
<div style="display:flex; gap:8px;">
<button onClick="{{ d0 }}" aria-label="Slide 1" style="{{ seg0 }}"></button>
<button onClick="{{ d1 }}" aria-label="Slide 2" style="{{ seg1 }}"></button>
<button onClick="{{ d2 }}" aria-label="Slide 3" style="{{ seg2 }}"></button>
</div>
</div>
</div>
</section>
<!-- ============ TRUST BAR ============ -->
<section data-screen-label="Trust bar" style="border-bottom:1px solid #ece9e3;">
<div class="bs-trust-wrap" style="max-width:1280px; margin:0 auto; padding:0 40px;">
<div class="bs-trust-grid" style="display:grid; grid-template-columns:repeat(4, 1fr);">
<sc-for list="{{ trust }}" as="t" hint-placeholder-count="4">
<div class="bs-trust-item" style="display:flex; align-items:center; gap:14px; padding:24px 20px; border-right:1px solid #ece9e3;">
<span style="color:#003976; display:flex; flex-shrink:0;" dangerouslySetInnerHTML="{{ t.icon }}"></span>
<div style="min-width:0;">
<p style="font-size:12px; letter-spacing:.03em; color:#16273b; margin:0; font-weight:500; white-space:nowrap;">{{ t.title }}</p>
<p style="font-size:12px; color:#586473; margin:5px 0 0; white-space:nowrap;">{{ t.desc }}</p>
</div>
</div>
</sc-for>
</div>
</div>
</section>
<!-- ============ TOP CATEGORIES ============ -->
<section class="bs-section" data-screen-label="Shop by category" style="max-width:1280px; margin:0 auto; padding:84px 40px 0;">
<div style="text-align:center; margin-bottom:38px;">
<p style="font-size:10.5px; letter-spacing:.24em; text-transform:uppercase; color:#9a7b3f; margin:0 0 12px;">01 / 06 · Top Categories</p>
<h2 class="bs-serif" style="font-weight:400; font-size:38px; line-height:1.08; color:#16273b; margin:0;">Shop by Category</h2>
<div style="width:34px; height:1px; background:#c2a25e; margin:18px auto 0;"></div>
</div>
<!-- 5-tile asymmetric grid: Women hero (left, 2 rows) + 2×2 right -->
<div class="bs-category-grid" style="display:grid; grid-template-columns:1.45fr 1fr 1fr; grid-template-rows:280px 280px; gap:24px;">
<!-- Women: hero tile spanning both rows -->
<a href="#" class="bs-category-card bs-cat-hero bs-media-card" aria-label="Women" style="grid-row:1/3; min-height:auto;">
<img src="assets/fashion-women.jpg" alt="Woman in an ivory silk blouse and black tailoring" style="position:absolute; inset:0; width:100%; height:100%; object-fit:cover;">
<div class="bs-category-card-copy">
<span style="display:block; font-size:9.5px; letter-spacing:.22em; text-transform:uppercase; color:rgba(255,255,255,.72); margin-bottom:7px;">Style for Her</span>
<span class="bs-serif" style="display:block; font-size:31px; line-height:1; color:#fff;">Women</span>
</div>
</a>
<!-- Men -->
<a href="#" class="bs-category-card bs-media-card" aria-label="Men" style="min-height:auto;">
<img src="assets/fashion-belt.jpg" alt="Blue Salon men accessories" style="position:absolute; inset:0; width:100%; height:100%; object-fit:cover;">
<div class="bs-category-card-copy">
<span style="display:block; font-size:9.5px; letter-spacing:.22em; text-transform:uppercase; color:rgba(255,255,255,.72); margin-bottom:7px;">Style for Him</span>
<span class="bs-serif" style="display:block; font-size:31px; line-height:1; color:#fff;">Men</span>
</div>
</a>
<!-- Beauty -->
<a href="#" class="bs-category-card bs-media-card" aria-label="Beauty" style="min-height:auto;">
<img src="assets/section-beauty.jpg" alt="Blue Salon beauty and fragrance" style="position:absolute; inset:0; width:100%; height:100%; object-fit:cover;">
<div class="bs-category-card-copy">
<span style="display:block; font-size:9.5px; letter-spacing:.22em; text-transform:uppercase; color:rgba(255,255,255,.72); margin-bottom:7px;">Fragrances & Cosmetics</span>
<span class="bs-serif" style="display:block; font-size:31px; line-height:1; color:#fff;">Beauty</span>
</div>
</a>
<!-- Watches -->
<a href="#" class="bs-category-card bs-media-card" aria-label="Watches" style="min-height:auto;">
<img src="assets/section-watches.jpg" alt="Blue Salon luxury watches" style="position:absolute; inset:0; width:100%; height:100%; object-fit:cover;">
<div class="bs-category-card-copy">
<span style="display:block; font-size:9.5px; letter-spacing:.22em; text-transform:uppercase; color:rgba(255,255,255,.72); margin-bottom:7px;">Timeless Icons</span>
<span class="bs-serif" style="display:block; font-size:31px; line-height:1; color:#fff;">Watches</span>
</div>
</a>
<!-- Kids -->
<a href="#" class="bs-category-card bs-media-card" aria-label="Kids" style="min-height:auto;">
<img src="assets/section-gifts.jpg" alt="Blue Salon gifts and accessories for kids" style="position:absolute; inset:0; width:100%; height:100%; object-fit:cover;">
<div class="bs-category-card-copy">
<span style="display:block; font-size:9.5px; letter-spacing:.22em; text-transform:uppercase; color:rgba(255,255,255,.72); margin-bottom:7px;">Little Luxuries</span>
<span class="bs-serif" style="display:block; font-size:31px; line-height:1; color:#fff;">Kids</span>
</div>
</a>
</div>
<!-- Home & Linen: full-width accent strip -->
<a href="#" aria-label="Home & Linen" class="bs-cat-strip" style="display:block; margin-top:24px; position:relative; height:168px; overflow:hidden; background:#e9e0d2; text-decoration:none;">
<img src="assets/section-living.jpg" alt="Blue Salon home and linen collection" style="position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center 40%;">
<div style="position:absolute; inset:0; background:linear-gradient(90deg,rgba(8,25,43,.04) 0%,rgba(8,25,43,.56) 100%); pointer-events:none;"></div>
<div class="bs-cat-strip-copy" style="position:absolute; top:50%; right:56px; transform:translateY(-50%); text-align:right; color:#fff;">
<span style="display:block; font-size:9.5px; letter-spacing:.22em; text-transform:uppercase; color:rgba(255,255,255,.72); margin-bottom:8px;">More to Explore</span>
<span class="bs-serif" style="display:block; font-size:28px; line-height:1; color:#fff; margin-bottom:14px;">Home & Linen</span>
<span style="display:inline-flex; align-items:center; gap:10px; font-size:10.5px; letter-spacing:.2em; text-transform:uppercase; color:#fff; border-bottom:1px solid rgba(255,255,255,.55); padding-bottom:4px;">Discover
<svg width="16" height="7" viewBox="0 0 18 7" fill="none" stroke="currentColor" stroke-width="1.3"><line x1="0" y1="3.5" x2="15" y2="3.5"></line><path d="M12 1l3 2.5-3 2.5"></path></svg>
</span>
</div>
</a>
</section>
<!-- ============ 2026 COLLECTIONS ============ -->
<section class="bs-section" data-screen-label="New Arrivals" style="max-width:1280px; margin:0 auto; padding:96px 40px 0;">
<div class="bs-products-layout" style="display:grid; grid-template-columns:0.8fr 2.2fr; gap:48px; align-items:center;">
<div class="bs-products-intro">
<p style="font-size:10.5px; letter-spacing:.24em; text-transform:uppercase; color:#9a7b3f; margin:0;">New Arrivals</p>
<h2 class="bs-serif" style="font-weight:400; font-size:38px; line-height:1.1; color:#16273b; margin:14px 0 0;">2026 Collections</h2>
<p style="font-size:14px; line-height:1.7; color:#8a93a0; margin:22px 0 0;">The pieces you'll reach for first — curated from the season's most desirable new arrivals.</p>
<a href="#" class="bs-section-link" style="display:inline-block; margin-top:26px; font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:#16273b; text-decoration:none; border-bottom:1px solid #16273b; padding-bottom:5px;">Shop New Collections</a>
</div>
<div class="bs-product-grid" style="display:grid; grid-template-columns:repeat(3, 1fr); gap:28px;">
<sc-for list="{{ arrivals }}" as="p" hint-placeholder-count="3">
<div>
<div class="bs-media-card" style="position:relative; display:block; height:300px; overflow:hidden; background:{{ p.tone }};">
<image-slot id="{{ p.slotId }}" src="{{ p.image }}" fit="cover" shape="rect" placeholder="{{ p.name }}" style="position:absolute; inset:0; width:100%; height:100%;"></image-slot>
</div>
<div style="display:flex; align-items:center; justify-content:space-between; margin-top:16px;">
<p style="font-size:11px; letter-spacing:.12em; text-transform:uppercase; color:#16273b; margin:0;">{{ p.name }}</p>
<p style="font-size:11.5px; color:#586473; margin:0;">{{ p.price }}</p>
</div>
<div style="display:flex; align-items:center; gap:7px; margin-top:12px;">
<sc-for list="{{ p.swatches }}" as="sw" hint-placeholder-count="3">
<span style="width:13px; height:13px; border-radius:2px; border:1px solid rgba(0,0,0,.12); background:{{ sw }};"></span>
</sc-for>
<sc-if value="{{ p.extra }}"><span style="font-size:10.5px; color:#8a93a0; margin-left:3px;">{{ p.extra }}</span></sc-if>
</div>
</div>
</sc-for>
</div>
</div>
</section>
<!-- ============ STAGE BANNER ============ -->
<section class="bs-stage" data-screen-label="Blue Salon STAGE" style="margin-top:96px;">
<div class="bs-stage-inner" style="max-width:1280px; margin:0 auto; padding:0 40px;">
<div class="bs-stage-banner bs-media-card" style="position:relative; height:200px; background:#1c2733; overflow:hidden; display:flex; align-items:center; justify-content:space-between; padding:0 56px;">
<img src="assets/stage-campaign.jpg" alt="Blue Salon evening fashion campaign" style="position:absolute; inset:0; width:100%; height:100%; object-fit:cover;">
<div style="position:absolute; inset:0; background:linear-gradient(90deg, rgba(15,20,28,.82) 0%, rgba(15,20,28,.42) 50%, rgba(15,20,28,.66) 100%); pointer-events:none;"></div>
<div style="position:relative;">
<p style="font-size:10px; letter-spacing:.28em; text-transform:uppercase; color:rgba(255,255,255,.6); margin:0 0 10px;">Introducing</p>
<h2 class="bs-serif bs-stage-title" style="font-weight:400; font-size:46px; line-height:1; color:#fff; margin:0;">Blue Salon</h2>
</div>
<div style="position:relative; display:flex; flex-direction:column; align-items:flex-end; gap:14px;">
<span class="bs-serif bs-stage-mark" style="font-weight:600; font-size:64px; line-height:.9; letter-spacing:.04em; color:#fff; text-transform:uppercase;">Stage</span>
<a href="#" class="bs-section-link" style="font-size:10.5px; letter-spacing:.2em; text-transform:uppercase; color:#fff; text-decoration:none; border-bottom:1px solid rgba(255,255,255,.5); padding-bottom:4px; white-space:nowrap;">Discover Now</a>
</div>
</div>
</div>
</section>
<!-- ============ FEATURED BRANDS ============ -->
<!-- <section class="bs-section" data-screen-label="Featured Brands" style="max-width:1280px; margin:0 auto; padding:88px 40px 0;">
<div class="bs-section-heading" style="display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:46px;">
<div>
<p style="font-size:10.5px; letter-spacing:.24em; text-transform:uppercase; color:#9a7b3f; margin:0;">Our Portfolio</p>
<h2 class="bs-serif" style="font-weight:400; font-size:34px; color:#16273b; margin:12px 0 0;">Featured <span style="font-style:italic;">Brands</span></h2>
</div>
<a href="#" class="bs-section-link" style="font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:#16273b; text-decoration:none; border-bottom:1px solid #16273b; padding-bottom:5px; white-space:nowrap;">All Brands</a>
</div>
<div class="bs-brand-marquee">
<div class="bs-brand-track">
<sc-for list="{{ brandLoop }}" as="b" hint-placeholder-count="16">
<div class="bs-brand-pill">
<span style="{{ b.style }}">{{ b.name }}</span>
</div>
</sc-for>
</div>
</div>
</section> -->
<!-- ============ TRENDING NOW ============ -->
<section class="bs-section" data-screen-label="Trending Now" style="max-width:1280px; margin:0 auto; padding:88px 40px 0;">
<div class="bs-section-heading" style="display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:40px;">
<div>
<p style="font-size:10.5px; letter-spacing:.24em; text-transform:uppercase; color:#9a7b3f; margin:0;">Curated For You</p>
<h2 class="bs-serif" style="font-weight:400; font-size:34px; color:#16273b; margin:12px 0 0;">Trending <span style="font-style:italic;">Now</span></h2>
</div>
<a href="#" class="bs-section-link" style="font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:#16273b; text-decoration:none; border-bottom:1px solid #16273b; padding-bottom:5px; white-space:nowrap;">View All</a>
</div>
<div class="bs-product-grid" style="display:grid; grid-template-columns:repeat(3, 1fr); gap:28px;">
<sc-for list="{{ trending }}" as="p" hint-placeholder-count="3">
<div>
<div class="bs-media-card" style="position:relative; display:block; height:400px; overflow:hidden; background:{{ p.tone }};">
<image-slot id="{{ p.slotId }}" src="{{ p.image }}" fit="cover" shape="rect" placeholder="{{ p.name }}" style="position:absolute; inset:0; width:100%; height:100%;"></image-slot>
</div>
<div style="display:flex; align-items:center; justify-content:space-between; margin-top:18px;">
<p style="font-size:11px; letter-spacing:.12em; text-transform:uppercase; color:#16273b; margin:0;">{{ p.name }}</p>
<p style="font-size:11.5px; color:#586473; margin:0;">{{ p.price }}</p>
</div>
<div style="display:flex; align-items:center; gap:7px; margin-top:12px;">
<sc-for list="{{ p.swatches }}" as="sw" hint-placeholder-count="3">
<span style="width:13px; height:13px; border-radius:2px; border:1px solid rgba(0,0,0,.12); background:{{ sw }};"></span>
</sc-for>
<sc-if value="{{ p.extra }}"><span style="font-size:10.5px; color:#8a93a0; margin-left:3px;">{{ p.extra }}</span></sc-if>
</div>
</div>
</sc-for>
</div>
</section>
<!-- ============ DUAL PROMO ============ -->
<section class="bs-section" data-screen-label="Membership & App" style="max-width:1280px; margin:0 auto; padding:96px 40px 0;">
<div class="bs-dual-promo" style="display:grid; grid-template-columns:1fr 1fr; gap:24px;">
<!-- rewards -->
<div style="background:#11151b; color:#fff; padding:62px 40px; display:flex; flex-direction:column; align-items:center; text-align:center;">
<span class="bs-serif" style="font-size:13px; letter-spacing:.42em; text-transform:uppercase; color:rgba(255,255,255,.85);">Maison</span>
<p style="font-size:14.5px; line-height:1.7; color:rgba(255,255,255,.72); margin:22px 0 30px; max-width:300px;">Enjoy exclusive rewards, private previews and member-only offers.</p>
<a href="#" class="bs-solid-cta" style="background:#fff; color:#11151b; text-decoration:none; font-size:11px; letter-spacing:.18em; text-transform:uppercase; padding:15px 34px; border-radius:2px;">Join or Log In</a>
</div>
<!-- app -->
<div class="bs-app-panel" style="background:#f5f1ea; padding:48px 44px; display:flex; align-items:center; gap:36px;">
<div class="bs-app-visual bs-media-card" style="position:relative; width:150px; height:210px; flex-shrink:0; background:#dfd6c7; border-radius:18px; overflow:hidden; box-shadow:0 12px 30px rgba(0,42,87,.12);">
<img src="assets/app-shopping.jpg" alt="Luxury shopping app displayed on two smartphones" style="position:absolute; inset:0; width:100%; height:100%; object-fit:cover;">
</div>
<div>
<h3 class="bs-serif" style="font-weight:400; font-size:26px; line-height:1.2; color:#16273b; margin:0;">Get 10% off your<br>first app order</h3>
<p style="font-size:13px; color:#586473; margin:14px 0 24px;">Enter code <strong style="color:#16273b; letter-spacing:.04em;">BLUESALON10</strong> at checkout.</p>
<div class="bs-store-buttons" style="display:flex; gap:12px;">
<a href="#" style="display:flex; align-items:center; gap:9px; background:#11151b; color:#fff; text-decoration:none; padding:9px 15px; border-radius:6px;">
<svg width="17" height="17" viewBox="0 0 24 24" fill="currentColor"><path d="M4 3l13 9-13 9V3z"></path></svg>
<span style="display:flex; flex-direction:column; line-height:1.1;"><span style="font-size:7.5px; letter-spacing:.08em; opacity:.8;">GET IT ON</span><span style="font-size:12px; font-weight:500;">Google Play</span></span>
</a>
<a href="#" style="display:flex; align-items:center; gap:9px; background:#11151b; color:#fff; text-decoration:none; padding:9px 15px; border-radius:6px;">
<svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor"><path d="M16.7 12.6c0-2.3 1.9-3.4 2-3.5-1.1-1.6-2.8-1.8-3.4-1.8-1.4-.1-2.8.8-3.5.8s-1.8-.8-3-.8c-1.5 0-3 .9-3.8 2.3-1.6 2.8-.4 7 1.2 9.3.8 1.1 1.7 2.4 2.9 2.3 1.2 0 1.6-.7 3-.7s1.8.7 3 .7 2-1.1 2.8-2.2c.9-1.3 1.2-2.5 1.3-2.6-.1 0-2.5-1-2.5-3.8zM14.5 5.2c.6-.8 1-1.8.9-2.9-.9 0-2 .6-2.6 1.4-.6.7-1.1 1.7-.9 2.8 1 0 2-.6 2.6-1.3z"></path></svg>
<span style="display:flex; flex-direction:column; line-height:1.1;"><span style="font-size:7.5px; letter-spacing:.08em; opacity:.8;">DOWNLOAD ON THE</span><span style="font-size:12px; font-weight:500;">App Store</span></span>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- ============ NEWSLETTER ============ -->
<section class="bs-section" data-screen-label="Newsletter" style="max-width:1280px; margin:0 auto; padding:90px 40px;">
<div class="bs-newsletter-grid" style="border-top:1px solid #ece9e3; border-bottom:1px solid #ece9e3; padding:54px 0; display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center;">
<div>
<h2 class="bs-serif" style="font-weight:400; font-size:34px; color:#16273b; margin:0;">Stay in the <span style="font-style:italic;">Loop</span></h2>
<p style="font-size:14px; color:#8a93a0; margin:14px 0 0;">Access private sales, new-season previews and member-only edits — direct to your inbox.</p>
</div>
<div>
<sc-if value="{{ subscribed }}">
<p style="font-size:15px; color:#1f8a5b; margin:0;">Thank you — you're on the list.</p>
</sc-if>
<sc-if value="{{ notSubscribed }}" hint-placeholder-val="{{ true }}">
<div class="bs-newsletter-form" style="display:flex; gap:0; border:1px solid #d8d2c6;">
<input type="email" placeholder="Enter email address" style="flex:1; border:0; background:transparent; outline:none; font-family:inherit; font-size:13.5px; color:#16273b; padding:16px 18px;">
<button class="bs-newsletter-submit" onClick="{{ subscribe }}" style="background:#003976; color:#fff; border:0; cursor:pointer; font-family:inherit; font-size:11px; letter-spacing:.18em; text-transform:uppercase; padding:0 30px;">Subscribe</button>
</div>
<p style="font-size:11px; color:#a7b0bb; margin:12px 0 0;">By subscribing you agree to our <a href="#" style="color:#586473;">Privacy Policy</a>. Unsubscribe anytime.</p>
</sc-if>
</div>
</div>
</section>
</main>
<!-- ============ FOOTER ============ -->
<footer data-screen-label="Footer" style="background:#ffffff;">
<div style="max-width:1280px; margin:0 auto; padding:24px 40px 64px;">
<div class="bs-footer-grid" style="display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:48px;">
<div>
<img src="assets/logo-horizontal.svg" alt="Blue Salon" style="height:26px; width:auto; display:block;">
<p style="font-size:13px; line-height:1.7; color:#8a93a0; margin:22px 0 0; max-width:260px;">Qatar's premier destination for luxury fashion, beauty, jewellery and lifestyle — curating the world's finest since 1984.</p>
<div style="display:flex; gap:14px; margin-top:24px;">
<sc-for list="{{ socials }}" as="s" hint-placeholder-count="4">
<a href="#" aria-label="{{ s.name }}" class="bs-social-btn" dangerouslySetInnerHTML="{{ s.icon }}"></a>
</sc-for>
</div>
<div style="margin-top:24px;">
<p style="font-size:9.5px; letter-spacing:.18em; text-transform:uppercase; color:#8a93a0; margin:0;">Secure payments</p>
<div class="bs-payment-options">
<sc-for list="{{ payments }}" as="pm" hint-placeholder-count="6">
<span class="bs-payment-option" title="{{ pm.name }}" aria-label="{{ pm.name }}" dangerouslySetInnerHTML="{{ pm.mark }}"></span>
</sc-for>
</div>
</div>
</div>
<sc-for list="{{ footerCols }}" as="col" hint-placeholder-count="3">
<div>
<h4 style="font-size:10.5px; letter-spacing:.2em; text-transform:uppercase; color:#16273b; margin:6px 0 22px; font-weight:600;">{{ col.title }}</h4>
<ul style="list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:13px;">
<sc-for list="{{ col.links }}" as="link" hint-placeholder-count="6">
<li><a href="#" style="font-size:13px; color:#8a93a0; text-decoration:none; transition:color .3s ease;" style-hover="color:#003976;">{{ link }}</a></li>
</sc-for>
</ul>
</div>
</sc-for>
</div>
</div>
<div style="background:#002a57;">
<div style="max-width:1280px; margin:0 auto; padding:0 40px; height:52px; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px;">
<span style="font-size:11px; color:rgba(255,255,255,.6);">© 2026 Blue Salon · AbuIssa Holding. All rights reserved.</span>
<div style="display:flex; gap:26px;">
<sc-for list="{{ legal }}" as="l" hint-placeholder-count="4">
<a href="#" style="font-size:11px; color:rgba(255,255,255,.6); text-decoration:none;">{{ l }}</a>
</sc-for>
</div>
</div>
</div>
</footer>
<!-- scroll to top -->
<button onClick="{{ scrollTop }}" aria-label="Back to top" style="position:fixed; right:26px; bottom:26px; z-index:80; width:42px; height:42px; border-radius:50%; border:1px solid rgba(0,42,87,.2); background:#fff; box-shadow:0 8px 22px rgba(0,42,87,.14); cursor:pointer; display:flex; align-items:center; justify-content:center; color:#003976;" style-hover="background:#003976; color:#fff;">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.4"><path d="M12 19V5"></path><path d="M5 12l7-7 7 7"></path></svg>
</button>
</div>
</x-dc>
<script type="text/x-dc" data-dc-script>
class Component extends DCLogic {
state = { slide: 0, searchOpen: false, subscribed: false, openMenu: null };
componentDidMount() {
this._t = setInterval(() => {
this.setState((s) => ({ slide: (s.slide + 1) % 3 }));
}, 7000);
this._onKey = (e) => { if (e.key === 'Escape') this.setState({ searchOpen: false, openMenu: null }); };
document.addEventListener('keydown', this._onKey);
}
componentWillUnmount() {
clearInterval(this._t);
document.removeEventListener('keydown', this._onKey);
}
_go(i) { clearInterval(this._t); this.setState({ slide: ((i % 3) + 3) % 3 }); }
renderVals() {
const slide = this.state.slide;
const slides = [
{ eyebrow: 'Fine Jewellery', title: 'Crafted for\nthe\nExtraordinary', cta: 'Discover Jewellery', image: 'assets/section-jewellery.jpg', alt: 'Emerald and diamond fine jewellery collection', copyClass: 'is-wide' },
{ eyebrow: "The Women's Edit", title: 'Defined by\nQuiet\nConfidence', cta: 'Shop Women', image: 'assets/section-beauty.jpg', alt: 'Woman discovering luxury beauty and fragrance', copyClass: '' },
{ eyebrow: 'New Season 2026', title: 'The Arrivals\nYou Have\nAwaited', cta: 'Explore New In', image: 'assets/section-gifts.jpg', alt: 'Luxury Blue Salon gifts and accessories', copyClass: 'is-tight' },
];
const cur = slides[slide];
const seg = (i) => {
const active = i === slide;
return 'width:' + (active ? '34px' : '20px') + ';height:2px;border:0;padding:0;cursor:pointer;border-radius:2px;'
+ 'background:' + (active ? '#16273b' : 'rgba(22,39,59,.28)') + ';transition:width .4s ease, background .4s ease;';
};
const ic = (svg) => ({ __html: svg });
const paymentMark = (svg) => ({ __html: svg });
const trust = [
{ title: 'Premium Quality', desc: 'Finest luxury materials', icon: ic('<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.3"><path d="M12 20s-7-4.6-9.2-9C1.3 8.1 2.6 5 5.7 5 7.8 5 9 6.3 12 9c3-2.7 4.2-4 6.3-4 3.1 0 4.4 3.1 2.9 6-2.2 4.4-9.2 9-9.2 9z"></path></svg>') },
{ title: 'Timeless Style', desc: 'Designed to inspire', icon: ic('<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.3"><path d="M12 3l1.8 5.4L19 10l-5.2 1.6L12 17l-1.8-5.4L5 10l5.2-1.6z"></path></svg>') },
{ title: 'Complimentary Shipping',desc: 'On orders over QAR 500', icon: ic('<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.3"><path d="M3 7h11v8H3z"></path><path d="M14 10h4l3 3v2h-7z"></path><circle cx="7" cy="17" r="1.6"></circle><circle cx="17.5" cy="17" r="1.6"></circle></svg>') },
{ title: 'Secure Payment', desc: '100% protected', icon: ic('<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.3"><rect x="5" y="10" width="14" height="10" rx="1.5"></rect><path d="M8 10V7a4 4 0 0 1 8 0v3"></path></svg>') },
];
const categories = [
{ label: 'Men', eyebrow: 'Style for Him', image: 'assets/fashion-belt.jpg', alt: 'Blue Salon men accessories' },
{ label: 'Kids', eyebrow: 'Little Luxuries', image: 'assets/section-gifts.jpg', alt: 'Blue Salon gifts and accessories for kids' },
{ label: 'Beauty', eyebrow: 'Fragrances & Cosmetics', image: 'assets/section-beauty.jpg', alt: 'Blue Salon beauty and fragrance' },
{ label: 'Watches', eyebrow: 'Timeless Icons', image: 'assets/section-watches.jpg', alt: 'Blue Salon luxury watches' },
{ label: 'Home & Linen', eyebrow: 'More to Explore', image: 'assets/section-living.jpg', alt: 'Blue Salon home and linen collection' },
];
const arrivals = [
{ slotId: 'arr-1', name: 'Miriam Pump', price: 'QAR 5,700', swatches: ['#bcae9a', '#3a3a3a', '#7a5230'], extra: '+1', tone: '#f4f3f1', image: 'assets/fashion-shoes.jpg' },
{ slotId: 'arr-2', name: 'Miriam Pump', price: 'QAR 4,500', swatches: ['#2a2a2a', '#8a98a6', '#c9bfa8'], extra: '+1', tone: '#f4f3f1', image: 'assets/fashion-bag.jpg' },
{ slotId: 'arr-3', name: 'Marlene Pump', price: 'QAR 4,100', swatches: ['#cdb98f', '#1f1f1f', '#6b6b6b'], extra: '', tone: '#f4f3f1', image: 'assets/fashion-women.jpg' },
];
const trending = [
{ slotId: 'trd-1', name: 'Love Diamond Necklace', price: 'QAR 18,500', swatches: ['#caa96a', '#b08d57', '#3a3a3a'], extra: '', tone: '#f1f1ef', image: 'assets/section-jewellery.jpg' },
{ slotId: 'trd-2', name: 'Aventus Eau de Parfum', price: 'QAR 1,350', swatches: ['#1f1f1f'], extra: '', tone: '#f1f1ef', image: 'assets/section-beauty.jpg' },
{ slotId: 'trd-3', name: 'Magic Cream Moisturiser', price: 'QAR 465', swatches: ['#e7d3c4', '#d9b8a0'], extra: '+2', tone: '#f1f1ef', image: 'assets/beauty header.avif' },
];
const sr = "font-family:'Cormorant Garamond',Georgia,serif;font-size:22px;";
const ss = 'font-size:14px;letter-spacing:.14em;text-transform:uppercase;font-weight:600;';
const brands = [
{ name: 'Valentino', style: sr + 'font-weight:400;' },
{ name: 'Versace', style: sr + 'font-weight:500;letter-spacing:.04em;' },
{ name: 'Prada', style: sr + 'font-style:italic;font-weight:400;' },
{ name: 'JIMMY CHOO', style: ss },
{ name: 'Cartier', style: sr + 'font-weight:400;letter-spacing:.06em;' },
{ name: 'Bottega Veneta', style: sr + 'font-style:italic;font-weight:400;' },
{ name: 'STELLA McCARTNEY', style: ss },
{ name: 'Charlotte Tilbury',style: sr + 'font-weight:400;' },
];
const brandLoop = brands.concat(brands);
const footerCols = [
{ title: 'Customer Care', links: ['Contact Us', 'Size Guide', 'Delivery & Shipping', 'Returns & Exchanges', 'Track Your Order', 'FAQs'] },
{ title: 'Services', links: ['Personal Shopping', 'Gift Cards', 'Luxury Gift Wrapping', 'Loyalty Programme', 'Alterations & Tailoring', 'Concierge'] },
{ title: 'Blue Salon', links: ['About Us', 'Our Story', 'Careers', 'Press & Media', 'Sustainability', 'Corporate Gifting'] },
];
const navData = [
{ key:'new-in', label:'New In', color:'#16273b',
columns:[
{title:'Discover', links:['This Week','Back in Stock','Trending Now','The Blue Salon Edit']},
{title:'Shop New', links:['Women','Men','Beauty','Jewellery','Bags & Accessories']},
{title:'Designers', links:['New Arrivals','Emerging Houses','Exclusives']},
], feat:{eyebrow:'Just In', title:'The 2026 Collections', cta:'Shop new in', tone:'#efe7da', ctaColor:'#16273b', image:'assets/section-jewellery.jpg', alt:'Close up of Blue Salon jewellery selection'} },
{ key:'women', label:'Women', color:'#16273b',
columns:[
{title:'Clothing', links:['Dresses','Knitwear','Coats & Jackets','Tailoring','Tops']},
{title:'Bags', links:['Totes','Shoulder Bags','Clutches','Mini Bags']},
{title:'Shoes', links:['Heels','Flats','Sneakers','Boots']},
{title:'Accessories', links:['Fine Jewellery','Sunglasses','Scarves','Belts']},
], feat:{eyebrow:'Featured', title:'The Summer Edit', cta:'Discover', tone:'#e9dfd0', ctaColor:'#16273b', image:'assets/women header.webp', alt:'Close up fashion edit for women'} },
{ key:'men', label:'Men', color:'#16273b',
columns:[
{title:'Clothing', links:['Shirts','Knitwear','Tailoring','Outerwear','Trousers']},
{title:'Shoes', links:['Loafers','Sneakers','Boots','Formal']},
{title:'Accessories', links:['Bags','Belts','Watches','Sunglasses']},
{title:'Grooming', links:['Fragrance','Skincare','Shaving']},
], feat:{eyebrow:'Featured', title:'Modern Tailoring', cta:'Discover', tone:'#dcd3c4', ctaColor:'#16273b', image:'assets/men header.avif', alt:'Close up leather accessory for men'} },
{ key:'beauty', label:'Beauty', color:'#16273b',
columns:[
{title:'Skincare', links:['Moisturisers','Serums','Cleansers','Masks']},
{title:'Makeup', links:['Face','Eyes','Lips','Tools']},
{title:'Fragrance', links:['Women','Men','Home','Discovery Sets']},
{title:'Hair & Body', links:['Hair Care','Bath & Body','Wellness']},
], feat:{eyebrow:'New', title:'The Fragrance Wardrobe', cta:'Explore', tone:'#efe6d8', ctaColor:'#16273b', image:'assets/beauty header.avif', alt:'Close up luxury beauty and fragrance'} },
{ key:'luggage', label:'Luggage', color:'#16273b',
columns:[
{title:'Travel', links:['Carry On','Check In','Weekend Bags','Trolleys']},
{title:'Bags', links:['Tote Bags','Shoulder Bags','Crossbody','Backpacks']},
{title:'Accessories', links:['Wallets','Luggage Tags','Travel Organizers','Pouches']},
], feat:{eyebrow:'Essential', title:'The Travel Edit', cta:'Discover', tone:'#e8d8c2', ctaColor:'#16273b', image:'assets/luggage header.webp', alt:'Close up luxury luggage and travel bag'} },
{ key:'kids', label:'Kids', color:'#16273b',
columns:[
{title:'Baby', links:['0\u201312 Months','Clothing','Gifts','Nursery']},
{title:'Girls', links:['Clothing','Shoes','Accessories']},
{title:'Boys', links:['Clothing','Shoes','Accessories']},
{title:'More', links:['Toys','Books','Gift Sets']},
], feat:{eyebrow:'Gifting', title:'Little Luxuries', cta:'Shop kids', tone:'#e4ebe6', ctaColor:'#16273b', image:'assets/kids header.avif', alt:'Close up gifts for kids'} },
{ key:'gourmet', label:'Gourmet', color:'#16273b',
columns:[
{title:'Food', links:['Tea & Coffee','Snacks','Pantry','Breakfast']},
{title:'Gifts', links:['Chocolate Boxes','Gift Hampers','Sweet Treats','Seasonal Picks']},
{title:'Explore', links:['All Gourmet','New Arrivals','Exclusives','The Houses']},
], feat:{eyebrow:'Curated', title:'Gourmet Delights', cta:'View all', tone:'#eae3d6', ctaColor:'#16273b', image:'assets/gourmet header.avif', alt:'Close up gourmet and home lifestyle edit'} },
{ key:'sale', label:'Sale', color:'#c0392f',
columns:[
{title:'Shop Sale', links:['Women','Men','Beauty','Jewellery']},
{title:'By Category', links:['Clothing','Bags','Shoes','Accessories']},
{title:'Offers', links:['Final Reductions','Last Chance','Private Sale']},
], feat:{eyebrow:'Private Sale', title:'Up to 40% off', cta:'Shop the sale', tone:'#f3e4e2', ctaColor:'#c0392f', image:'assets/section-living.jpg', alt:'Close up sale lifestyle edit'} },
];