-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdetail.html
More file actions
902 lines (897 loc) · 62.1 KB
/
Copy pathdetail.html
File metadata and controls
902 lines (897 loc) · 62.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./assets/css/style.css">
<link rel="icon" type="image/png" href="https://static.mejuri.com/front-assets/production/images/favicon.ico">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css"
integrity="sha512-YWzhKL2whUzgiheMoBFwW8CKV4qpHQAEuvilg9FAn5VJUDwKZZxkJNuGM4XkWuk94WCrrwslk8yWNGmY1EduTA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Josefin+Sans&family=Source+Sans+Pro:wght@200;300;400&display=swap"
rel="stylesheet">
<title>Mejuri | Everyday Fine Jewelry | Online Jewelry Shop</title>
</head>
<body>
<!--Navbar-->
<header id="header">
<nav>
<div class="container-fluid navbar">
<div class="row">
<div class="col-lg-12">
<div class="custom-nav">
<ul class="nav-items">
<li>
<div class="openMenu">
<i class="fas fa-bars"></i>
</div>
<a class="nav-item" href="./shop.html">Shop</a>
</li>
<li class="nav-item"><a href="./company.html">Company</a></li>
<li class="search-bar">
<a href="">
<svg class="search" width="15" height="15" xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512">
<path
d="M213.194 34.713c98.705 0 179 81.461 179 181.575 0 100.113-80.295 181.574-179 181.574-98.681 0-178.977-81.46-178.977-181.574 0-100.114 80.296-181.575 178.977-181.575m0 397.863c54.497 0 104.111-21.013 141.864-55.264L487.797 512 512 487.446l-133.241-135.15c29.746-37.19 47.653-84.493 47.653-136.008C426.412 97.036 330.74 0 213.194 0 95.648 0 0 97.036 0 216.288c0 119.275 95.648 216.288 213.194 216.288"
fill-rule="evenodd"></path>
</svg>
<span>Search</span>
</a>
</li>
<li class="mejuri-li">
<a href="./index.html">
<svg class="mejuri" xmlns="http://www.w3.org/2000/svg" width="281.538"
height="92.308" viewBox="0 0 281.538 92.308">
<path
d="M109.446 33.947v-4.602H87.983l.003 32.588h21.46v-4.546H92.852V48.04h14.202v-4.391H92.852v-9.702zM246.995 29.068V62.46h4.871V29.068h.25-5.37z">
</path>
<g>
<path
d="M184.359 29.409H179.5v19.232c0 5.436-3.628 9.232-8.823 9.232-5.134 0-8.72-3.838-8.72-9.333V29.41h-4.858v19.488c0 7.741 5.837 13.578 13.578 13.578 7.799 0 13.681-5.837 13.681-13.578V29.409zM222.103 61.965h5.863l-7.702-12.982.271-.109c4.769-1.919 7.395-5.285 7.395-9.478 0-5.694-4.675-9.987-10.874-9.987h-13.268v32.556h4.756v-12.65h6.773l6.786 12.65zm-13.457-28.107h8.001c3.691 0 6.475 2.425 6.475 5.641 0 3.891-3.257 5.927-6.475 5.927h-8.001V33.858z">
</path>
</g>
<path
d="M64.477 50.775v4.135c0 7.261 2.267 11.021 7.345 12.166l1.154-1.733c-3.12-1.581-3.58-5.203-3.587-8.913l-.003-.094-.07-26.957H65.71L49.986 53.17 34.903 29.377h-4.284v32.615h4.687l-.036-22.495L48.987 59.75h1.733l13.763-20.249v11.281l-.006-.007zM121.541 58.306c1.119 1.332 3.897 4.042 7.963 4.042 6.231 0 10.257-4.309 10.257-10.977V29.347h-4.83v22.079c0 4.633-2.726 6.707-5.427 6.707-1.926 0-4.25-1.812-5.22-2.817l-.449.438L122 57.743l-.459.563z">
</path>
</svg>
</a>
</li>
<li class="nav-item">
<a href="./wish-list.html">
<i class="far fa-heart"></i>
</a>
<div class="fav-number-sum">3</div>
</li>
<li class="nav-item"><a href="./sign.html">Sign In</a></li>
<li>
<a id="basket-icon" href="">
<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512">
<path
d="M422.2 484.9H90L37.6 189.6h130.3c-4.7 25.5-7.9 48-9.7 62.5-.9 6.9 3.9 13.2 10.8 14.1.5.1 1.1.1 1.7.1 6.2 0 11.6-4.6 12.4-10.9 2.8-22 6.5-44.1 10.5-65.7h126.7c3.7 22.6 6.6 45 8.5 65.2.6 7 6.9 12.1 13.6 11.4 7-.6 11.9-6.7 11.4-13.7-1-11.3-3.6-34.8-7.9-62.9h128.4l-52.1 295.2zM255.5 27.1c25 0 46.7 66.2 60.5 137.3H198.7c16.1-75.7 38.2-137.3 56.8-137.3zm243.6 141.8c-2.4-2.8-6-4.4-9.7-4.4H341.7C328.3 91 302.3 2 255.5 2c-40.8 0-67.4 87.6-82.8 162.4H22.6c-3.7 0-7.2 1.7-9.7 4.4-2.4 2.8-3.4 6.6-2.7 10.3l57 320.4c1 6 6.2 10.4 12.3 10.4h353.2c6.1 0 11.3-4.3 12.3-10.4l56.8-320.4c.7-3.6-.3-7.3-2.7-10.2z">
</path>
</svg>
</a>
<div class="basket-number-sum">3</div>
</li>
<div id="basket">
<div class="basket">
<div>
<div class="basket-header">
<a href="">
<i class="fas fa-chevron-left"></i>
</a>
<span>You're Basket</span>
<a href="">
<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512">
<path
d="M422.2 484.9H90L37.6 189.6h130.3c-4.7 25.5-7.9 48-9.7 62.5-.9 6.9 3.9 13.2 10.8 14.1.5.1 1.1.1 1.7.1 6.2 0 11.6-4.6 12.4-10.9 2.8-22 6.5-44.1 10.5-65.7h126.7c3.7 22.6 6.6 45 8.5 65.2.6 7 6.9 12.1 13.6 11.4 7-.6 11.9-6.7 11.4-13.7-1-11.3-3.6-34.8-7.9-62.9h128.4l-52.1 295.2zM255.5 27.1c25 0 46.7 66.2 60.5 137.3H198.7c16.1-75.7 38.2-137.3 56.8-137.3zm243.6 141.8c-2.4-2.8-6-4.4-9.7-4.4H341.7C328.3 91 302.3 2 255.5 2c-40.8 0-67.4 87.6-82.8 162.4H22.6c-3.7 0-7.2 1.7-9.7 4.4-2.4 2.8-3.4 6.6-2.7 10.3l57 320.4c1 6 6.2 10.4 12.3 10.4h353.2c6.1 0 11.3-4.3 12.3-10.4l56.8-320.4c.7-3.6-.3-7.3-2.7-10.2z">
</path>
</svg>
</div>
<div class="basket-body">
<div class="container">
<div class="row">
<div class="container">
<div class="row">
<div class="basket-item">
<div class="basket-item-content">
<div class="col-md-3">
<img src="./assets/images/baskte-1.jpg"
alt="">
</div>
<div class="col-md-9">
<div class="name-icon">
<h2>
Jewelry Care Kit
</h2>
<button id="removeitem" type="button">
<i class="fas fa-times"></i>
</button>
</div>
<div class="count-price">
<div class="count">
<button>
<i class="fas fa-minus"></i>
</button>
<span>2</span>
<button>
<i class="fas fa-plus"></i>
</button>
</div>
<div>
<span class="price">$40</span>
</div>
</div>
</div>
</div>
</div>
<div class="basket-item">
<div class="basket-item-content">
<div class="col-md-3">
<img src="./assets/images/baskte-1.jpg"
alt="">
</div>
<div class="col-md-9">
<div class="name-icon">
<h2>
Jewelry Care Kit
</h2>
<button id="removeitem" type="button">
<i class="fas fa-times"></i>
</button>
</div>
<div class="count-price">
<div class="count">
<button>
<i class="fas fa-minus"></i>
</button>
<span>2</span>
<button>
<i class="fas fa-plus"></i>
</button>
</div>
<div>
<span class="price">$40</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="basket-footer">
<div class="basket-footer-content">
<h3>
Total price
</h3>
<span>
$390
</span>
</div>
<div class="checkout">
<a class="button button-secondary" href="">
Continue to Checkout
</a>
</div>
</div>
</div>
</div>
</ul>
</div>
</div>
</div>
</div>
<div class="custom-responsive-nav">
<nav id="navbar-responsive">
<div class="container-fluid">
<div class="nav-item-logo">
<h2>
<a href="">
<svg style="font-size: 2rem;" class="styled__MejuriLogo-sc-16722op-0 kiWGXF"
xmlns="http://www.w3.org/2000/svg" width="281.538" height="92.308"
viewBox="0 0 281.538 92.308">
<path
d="M109.446 33.947v-4.602H87.983l.003 32.588h21.46v-4.546H92.852V48.04h14.202v-4.391H92.852v-9.702zM246.995 29.068V62.46h4.871V29.068h.25-5.37z">
</path>
<g>
<path
d="M184.359 29.409H179.5v19.232c0 5.436-3.628 9.232-8.823 9.232-5.134 0-8.72-3.838-8.72-9.333V29.41h-4.858v19.488c0 7.741 5.837 13.578 13.578 13.578 7.799 0 13.681-5.837 13.681-13.578V29.409zM222.103 61.965h5.863l-7.702-12.982.271-.109c4.769-1.919 7.395-5.285 7.395-9.478 0-5.694-4.675-9.987-10.874-9.987h-13.268v32.556h4.756v-12.65h6.773l6.786 12.65zm-13.457-28.107h8.001c3.691 0 6.475 2.425 6.475 5.641 0 3.891-3.257 5.927-6.475 5.927h-8.001V33.858z">
</path>
</g>
<path
d="M64.477 50.775v4.135c0 7.261 2.267 11.021 7.345 12.166l1.154-1.733c-3.12-1.581-3.58-5.203-3.587-8.913l-.003-.094-.07-26.957H65.71L49.986 53.17 34.903 29.377h-4.284v32.615h4.687l-.036-22.495L48.987 59.75h1.733l13.763-20.249v11.281l-.006-.007zM121.541 58.306c1.119 1.332 3.897 4.042 7.963 4.042 6.231 0 10.257-4.309 10.257-10.977V29.347h-4.83v22.079c0 4.633-2.726 6.707-5.427 6.707-1.926 0-4.25-1.812-5.22-2.817l-.449.438L122 57.743l-.459.563z">
</path>
</svg>
</a>
</h2>
<a class="">
<i class="fas fa-times close-btn"></i>
</a>
</div>
<ul class="nav-items">
<li class="nav-item"><a href="">Shop</a></li>
<li class="nav-item"><a href="">Company</a>
<i class="fas fa-plus"></i>
</li>
<li class="nav-item"><a href="">Our Commitment</a></li>
<li class="nav-item"><a href="">Sign In/Sign Up</a></li>
</ul>
</div>
</nav>
</div>
</nav>
<!--Search-->
<div id="search">
<div class="search">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="search-input-button">
<input placeholder="Find what you're looking for" class="search-input" value=""
aria-label="search">
<button data-h="main-search-close-btn" data-testid="main-search-close-btn"
class="search-button"> <svg width="16" height="16" viewBox="0 0 16 16"
xmlns="http://www.w3.org/2000/svg">
<g fill="#000" fill-rule="nonzero">
<path d="M2.343 15.071L.93 13.657 13.657.929l1.414 1.414z">
</path>
<path d="M.929 2.343L2.343.93l12.728 12.728-1.414 1.414z">
</path>
</g>
</svg><span class="sr-only" uptsign="apr-0203">close
overlay</span></button>
</div>
<span>Search any products and/or materials</span>
</div>
</div>
</div>
</div>
</div>
</header>
<main>
<section id="detail-home">
<div class="container-fluid">
<div class="row">
<div class="detail-right">
<div class="container">
<div class="row">
<div class="content-detail-colors">
<div class="content-detail-color active" id="detail-gold">
<div class="row">
<div class="col-md-6 col-sm-12">
<img src="./assets/images/detail-1.jpg" alt="">
</div>
<div class="col-md-6 col-sm-12">
<img src="./assets/images/detail-2.jpg" alt="">
</div>
<div class="col-md-6 col-sm-12">
<img src="./assets/images/detail-3.jpg" alt="">
</div>
<div class="col-md-6 col-sm-12">
<img src="./assets/images/detail-4.jpg" alt="">
</div>
</div>
</div>
<div class="content-detail-color" id="detail-silver">
<div class="row">
<div class="col-md-6 col-sm-12">
<img src="./assets/images/detail-gray-1.jpg" alt="">
</div>
<div class="col-md-6 col-sm-12">
<img src="./assets/images/detail-gray-2.jpg" alt="">
</div>
<div class="col-md-6 col-sm-12">
<img src="./assets/images/detail-gray-3.jpg" alt="">
</div>
<div class="col-md-6 col-sm-12">
<img src="./assets/images/detail-gray-4.jpg" alt="">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="detail-left">
<div class="detail-wish">
<h1>
Single Mini Hoop - $30
</h1>
<div class="star">
<div data-h="review-summary" data-testid="review-summary" class="sc-yMzwv lezPrD">
<div data-h="stars" data-testid="stars" class="sc-fSnZzA fjfPfa">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<p class="product rated" data-h="stars-score" data-testid="stars-score"><span
class="sr-only" uptsign="ppr-0190">product rated
</span>4.7<span class="sr-only" uptsign="apr-0190"> stars</span></p>
<span>See 3098 reviews</span>
</div>
<div class="detail-color">
<p>14k Yellow Gold, Diamond</p>
<div class="color-items">
<div class="color-item">
<a class="tab-color-detail active" data-target="detail-gold">
<img src="./assets/images/color/gold-white.svg" alt="">
</a>
</div>
<div class="color-item">
<a class="tab-color-detail active" data-target="detail-silver">
<img src="./assets/images/color/silver-white.svg" alt="">
</a>
</div>
</div>
</div>
<div class="stock">
<svg width="12" height="11" viewBox="0 0 12 11" fill="none" class="sc-eMrnwU bsDRXu">
<path d="M1 6.35714L4.57143 9.92857L11 1" stroke="black" stroke-linecap="round">
</path>
</svg>
<p>In Stock - Ships on Nov 18</p>
</div>
<a class="btton button-secondary stock-btn">Add To Bag</a>
<div class="shipping">
<div class="shipping-info">
<i class="fas fa-shipping-fast"></i>
<p>Free Expedited Shipping over 150+</p>
</div>
</div>
<div class="detail-info">
<div class="product-name">
<span>Fair pricing</span>
</div>
<div class="product-price">
<p><span>
$30
</span>
MEJURI</p>
</div>
</div>
<div class="detail-description">
<div class="description">
<div class="description-title">
<h2>
<span>description &
details</span>
</h2>
</div>
<div class="description-body">
<p>
As basic as your white tee. Handcrafted in 14k gold, the hinge clasp makes
it easy to wear and put on. This is our lightest hoop, perfect to wear every
single day. Sold individually.
</p>
<ul>
<li>
- Made
in 14k solid gold, the alloy that gives our pieces its beautiful, subtle
hue.
</li>
<li>
- Hoop
diameter: 10 mm.
</li>
<li>
- Hoop
thickness: 1.5 mm.
</li>
<li>
- Post
thickness: 0.9 mm.
</li>
<li>
- Sold
individually.
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--Review And Question-->
<section id="review">
<div class="review-up">
<div class="container">
<div class="row">
<div class="review-title">
<h1>Why people love us</h1>
</div>
<div class="review-up-body">
<div class="container">
<div class="row">
<div class="col-md-3">
<div class="review-up-left">
<div class="review-star">
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<span class="font-color-gray based-on">3106 Reviews</span>
</div>
<div class="questions"> <a href="#"> 90
Questions \ 90 Answers </a> </div>
</div>
</div>
<div class="col-md-9">
<div class="review-up-right">
<div class="review-up-right-star">
<div class="right-star">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<span>(2649)</span>
</div>
<div class="right-star">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
<span>(2649)</span>
</div>
<div class="right-star">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
<i class="far fa-star"></i>
<span>(2649)</span>
</div>
<div class="right-star">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
<i class="far fa-star"></i>
<i class="far fa-star"></i>
<span>(2649)</span>
</div>
<div class="right-star">
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
<i class="far fa-star"></i>
<i class="far fa-star"></i>
<i class="far fa-star"></i>
<span>(2649)</span>
</div>
</div>
<a href="" class="button button-secondary ask">ASk Question</a>
</div>
</div>
</div>
</div>
</div>
<div class="user-question">
<h2>ASK A QUESTION</h2>
<form action="">
<div class="form-group">
<div class="form-element">
<label for="yotpo_input_question_content"><span>*
</span>Question: <span class="form-input-error yotpo-hidden"></span>
</label>
<textarea id="yotpo_input_question_content" name="review_content"
maxlength="1000" aria-required="true" placeholder=""></textarea>
</div>
</div>
<div class="user-nam-em">
<div class="form-group">
<div class="form-element">
<label for="yotpo_input_question_content"><span>*
</span>Use your name:: <span
class="form-input-error yotpo-hidden"></span>
</label>
<input type="text" id="yotpo_input_question_content">
</div>
</div>
<div class="form-group">
<div class="form-element">
<label for="yotpo_input_question_content"><span>*
</span>Email: <span class="form-input-error yotpo-hidden"></span>
</label>
<input type="email" id="yotpo_input_question_content">
</div>
</div>
</div>
<div class="form-element submit-button">
<button type="submit" class="button button-secondary pp"> Post</button>
</div>
</form>
</div>
<div class="review-down-body">
<div class="container">
<div class="row">
<div class="review-items">
<div class="review-item">
<a class="tab-review active" data-target="review-text">
<h2><span>Reviews</span>
<span>(3107)</span>
</h2>
</a>
</div>
<div class="review-item">
<a class="tab-review" data-target="question">
<h2> <span>Questions</span>
<span>(90)</span>
</h2>
</a>
</div>
</div>
</div>
</div>
<div class="container reviewes">
<div class="row">
<div class="col-md-12 col-xs-12">
<div class="content-reviewes">
<div class="content-review active" id="review-text">
<div class="content-review-body">
<div class="name-date">
<span class="name">Madelyn B.</span>
<span class="date">11/11/21</span>
</div>
<div class="content-stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<p class="content-user-review">
Never worn earrings longer in my life!
</p>
</div>
<div class="content-review-body">
<div class="name-date">
<span class="name">Madelyn B.</span>
<span class="date">11/11/21</span>
</div>
<div class="content-stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<p class="content-user-review">
Never worn earrings longer in my life!
</p>
</div>
</div>
<div class="content-review" id="question">
<div class="content-question-body">
<div class="question">
<div class="question-user-name-date">
<span class="question-user-name">Thuc T.</span>
<span class="question-user-date">10/15/21</span>
</div>
<p>
<span>
Q:
</span>
Is there a trick or easier way to get them to unclasp and
clasp? I got them today and immediately tried to put them
on. It took over half an hour of struggling almost breaking
multiple short nails along the way. Now that’s on, I truly
do love it. Problem is, I can’t take it off.. how do I
unclasp this without ripping my ear piercing hole?
</p>
</div>
<div class="answer">
<div class="answer-admin-name-date">
<span class="answer-admin-name">Mejuri.</span>
<span class="answer-admin-date">10/15/21</span>
</div>
<p>
<span>
A:
</span>
Hello Thuc, thanks for reaching out! Happy to provide some
insight on the Single Mini Hoop. While it's quite sturdy
when it first arrives, there is a quick tip on how to open
and close the clasp! Try pushing down the groove where the
clasp closes with your fingernail, the clasp should pop
right open and then simply click back into place. Feel free
to click on the following link for a how to video clip:
vimeo.com/374468221. Let us know if this works for you!
</p>
</div>
</div>
<div class="content-question-body">
<div class="question">
<div class="question-user-name-date">
<span class="question-user-name">Thuc T.</span>
<span class="question-user-date">10/15/21</span>
</div>
<p>
<span>
Q:
</span>
Is there a trick or easier way to get them to unclasp and
clasp? I got them today and immediately tried to put them
on. It took over half an hour of struggling almost breaking
multiple short nails along the way. Now that’s on, I truly
do love it. Problem is, I can’t take it off.. how do I
unclasp this without ripping my ear piercing hole?
</p>
</div>
<div class="answer">
<div class="answer-admin-name-date">
<span class="answer-admin-name">Mejuri.</span>
<span class="answer-admin-date">10/15/21</span>
</div>
<p>
<span>
A:
</span>
Hello Thuc, thanks for reaching out! Happy to provide some
insight on the Single Mini Hoop. While it's quite sturdy
when it first arrives, there is a quick tip on how to open
and close the clasp! Try pushing down the groove where the
clasp closes with your fingernail, the clasp should pop
right open and then simply click back into place. Feel free
to click on the following link for a how to video clip:
vimeo.com/374468221. Let us know if this works for you!
</p>
</div>
</div>
<div class="content-question-body">
<div class="question">
<div class="question-user-name-date">
<span class="question-user-name">Thuc T.</span>
<span class="question-user-date">10/15/21</span>
</div>
<p>
<span>
Q:
</span>
Is there a trick or easier way to get them to unclasp and
clasp? I got them today and immediately tried to put them
on. It took over half an hour of struggling almost breaking
multiple short nails along the way. Now that’s on, I truly
do love it. Problem is, I can’t take it off.. how do I
unclasp this without ripping my ear piercing hole?
</p>
</div>
<div class="answer">
<div class="answer-admin-name-date">
<span class="answer-admin-name">Mejuri.</span>
<span class="answer-admin-date">10/15/21</span>
</div>
<p>
<span>
A:
</span>
Hello Thuc, thanks for reaching out! Happy to provide some
insight on the Single Mini Hoop. While it's quite sturdy
when it first arrives, there is a quick tip on how to open
and close the clasp! Try pushing down the groove where the
clasp closes with your fingernail, the clasp should pop
right open and then simply click back into place. Feel free
to click on the following link for a how to video clip:
vimeo.com/374468221. Let us know if this works for you!
</p>
</div>
</div>
<div class="content-question-body">
<div class="question">
<div class="question-user-name-date">
<span class="question-user-name">Thuc T.</span>
<span class="question-user-date">10/15/21</span>
</div>
<p>
<span>
Q:
</span>
Is there a trick or easier way to get them to unclasp and
clasp? I got them today and immediately tried to put them
on. It took over half an hour of struggling almost breaking
multiple short nails along the way. Now that’s on, I truly
do love it. Problem is, I can’t take it off.. how do I
unclasp this without ripping my ear piercing hole?
</p>
</div>
<div class="answer">
<div class="answer-admin-name-date">
<span class="answer-admin-name">Mejuri.</span>
<span class="answer-admin-date">10/15/21</span>
</div>
<p>
<span>
A:
</span>
Hello Thuc, thanks for reaching out! Happy to provide some
insight on the Single Mini Hoop. While it's quite sturdy
when it first arrives, there is a quick tip on how to open
and close the clasp! Try pushing down the groove where the
clasp closes with your fingernail, the clasp should pop
right open and then simply click back into place. Feel free
to click on the following link for a how to video clip:
vimeo.com/374468221. Let us know if this works for you!
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="user-review">
<form method="post" action="/shop/review/6">
<h4>Add a Review</h4>
<div class="row">
<div class="add-a-review">
<h6>Your Ratings:</h6>
<div class="product-ratting">
<ul class="rate-pr">
<li><a href="#"><i class="fas fa-star rank"></i></a></li>
<li><a href="#"><i class="fas fa-star rank"></i></a></li>
<li><a href="#"><i class="fas fa-star rank"></i></a></li>
<li><a href="#"><i class="fas fa-star rank"></i></a></li>
<li><a href="#"><i class="fas fa-star rank"></i></a></li>
</ul>
</div>
</div>
</div>
<input type="hidden" class="rate" value="1" data-val="true"
data-val-required="The Rate field is required." id="Review_Rate" name="Review.Rate">
<input type="hidden" name="productId" value="6">
<div class="input-item input-item-textarea">
<textarea placeholder="Type your comments...." id="Review_Text"
name="Review.Text"></textarea>
</div>
<div class="input-item input-item-name">
<input type="text" placeholder="Type your name...." value="" id="Review_Username"
name="Review.Username">
</div>
<div class="input-item input-item-email">
<input type="email" placeholder="Type your email...." value="" id="Review_Email"
name="Review.Email">
</div>
<label class="save-info"><input type="checkbox" name="agree"> Save my name, email, and
website in this browser for the next time I comment.</label>
<div class="btn-wrapper">
<button class="button button-primary
" type="submit">Submit</button>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
<!--Regarding Product Category-->
<section id="same-category">
<div class="same-category-title">
<h2>
AS SEEN ON @MEJURI
</h2>
</div>
<div class="container">
<div class="row">
<div class="col-md-3 col-sm-6">
<div class="category-img">
<div class="img">
<a href="">
<img src="./assets/images/same-4.jpg" alt="">
</a>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="category-img">
<div class="img">
<a href="">
<img src="./assets/images/same-2.jpg" alt="">
</a>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="category-img">
<div class="img">
<a href="">
<img src="./assets/images/same-3.jpg" alt="">
</a>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="category-img">
<div class="img">
<a href="">
<img src="./assets/images/same-4.jpg" alt="">
</a>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
<footer id="footer">
<div class="container footer-up">
<div class="row">
<div class="col-md-3 col-sm-6">
<div class="footer-item">
<h3>Pages</h3>
<ul>
<li><a href="./index.html">Mejuri</a></li>
<li><a href="./shop.html">Shop All</a></li>
<li><a href="./company.html">Company</a></li>
</ul>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="footer-item">
<h3>ABOUT US</h3>
<ul>
<li><a href="./contact.html">Contact</a></li>
<li><a href="./faq.html">FAQ</a></li>
</ul>
</div>
</div>
<div class="col-md-6 footer-right col-sm-12">
<div class="footer-item">
<span>JOIN THE FINE CREW</span>
<p>Insider info on new arrivals, early access, and everything fine.</p>
<form>
<input type="email" class="text-field" maxlength="256" name="email" data-name="email"
placeholder="Your email" id="email" required>
</form>
</div>
</div>
</div>
</div>
<div class="footer-down">
<div class="container">
<div class="row">
<div class="col-md-6 col-xs-12">
<ul class="foot-item">
<li>© 2021 Mejuri Inc.</li>
</ul>
</div>
<div class="col-md-6 foot-right col-xs-12">
<ul class="foot-item">
<li><a href=""><i class="fab fa-facebook-f"></i></a></li>
<li><a href=""><i class="fab fa-instagram"></i></a></li>
<li><a href=""><i class="fab fa-pinterest-p"></i></a></li>
<li><a href=""><i class="fab fa-twitter"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"
integrity="sha512-894YE6QWD5I59HgZOGReFYm4dnWc1Qt5NtvYSaNcOP+u1T9qYdvdihz0PPSiiqn/+/3e7Jo4EaG7TubfWGUrMQ=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.min.js"></script>
<script src="./assets/js/slider.js"></script>
<script src="./assets/js/main.js"></script>
<script src="./assets/js/modal.js"></script>
<script src="./assets/js/plugin.js"></script>
<script src="./assets/js/timer.js"></script>
</body>
</html>