-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle_product.html
1006 lines (1003 loc) · 44.7 KB
/
single_product.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sofia - Women's Clothes store</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/swiper.min.css">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/responsive.css">
<!-- Favicon -->
<link rel="icon" href="images/brand/favicon.svg" type="image/x-icon">
</head>
<body>
<!-- offcanvas -->
<div class="offcanvas offcanvas-end" tabindex="-1" id="cart_canvas" aria-labelledby="offcanvasExampleLabel">
<div class="offcanvas-header">
<h6 class="text-uppercase">shopping bag <span class="text-capitalize">(5 items)</span> </h6>
<button type="button" class="btn-close" data-bs-dismiss="offcanvas"></button>
</div>
<div class="offcanvas-body bg-light">
<ul class="list-unstyled">
<li>
<div class="card cart_product mb-3">
<figure>
<a href="single_product.html"><img src="images/products/product_1.webp" class="" alt="..."></a>
</figure>
<div class="card-body">
<h5 class="card-title">drs-01</h5>
<p class="card-text">Rs. 16,650</p>
</div>
<div class="card-footer">
<button class="btn">
<i class="ph ph-trash"></i>
</button>
</div>
</div>
</li>
<li>
<div class="card cart_product mb-3">
<figure>
<a href="single_product.html"><img src="images/products/product_2.webp" class="" alt="..."></a>
</figure>
<div class="card-body">
<h5 class="card-title">drs-02</h5>
<p class="card-text">Rs. 18,950</p>
</div>
<div class="card-footer">
<button class="btn">
<i class="ph ph-trash"></i>
</button>
</div>
</div>
</li>
<li>
<div class="card cart_product mb-3">
<figure>
<a href="single_product.html"><img src="images/products/product_3.webp" class="" alt="..."></a>
</figure>
<div class="card-body">
<h5 class="card-title">drs-03</h5>
<p class="card-text">Rs. 21,350</p>
</div>
<div class="card-footer">
<button class="btn">
<i class="ph ph-trash"></i>
</button>
</div>
</div>
</li>
<li>
<div class="card cart_product mb-3">
<figure>
<a href="single_product.html"><img src="images/products/product_4.webp" class="" alt="..."></a>
</figure>
<div class="card-body">
<h5 class="card-title">drs-04</h5>
<p class="card-text">Rs. 24,500</p>
</div>
<div class="card-footer">
<button class="btn">
<i class="ph ph-trash"></i>
</button>
</div>
</div>
</li>
<li>
<div class="card cart_product mb-3">
<figure>
<a href="single_product.html"><img src="images/products/product_5.webp" class="" alt="..."></a>
</figure>
<div class="card-body">
<h5 class="card-title">drs-05</h5>
<p class="card-text">Rs. 28,750</p>
</div>
<div class="card-footer">
<button class="btn">
<i class="ph ph-trash"></i>
</button>
</div>
</div>
</li>
</ul>
</div>
<div class="offcanvas-footer">
<div class="d-flex gap-2 w-100 align-items-center justify-content-between">
<h6 class="fw-normal">Sub Total</h6>
<h6 class="fw-normal">$20.63</h6>
</div>
<small class="text-center w-100 mt-2 mb-3 d-block">Shipping, taxes, and discount codes calculated at checkout.</small>
<a href="checkout.html" class="btn w-100">
<span>Check Out</span>
</a>
<a href="cart.html" class="text_btn mt-2">
<span>View all cart</span>
</a>
</div>
</div>
<!-- end offcanvas -->
<!--============================
= Header =
=============================-->
<header>
<div class="header_top d-sm-block d-none xs-width py-2 text-white">
<div class="container">
<div class="row">
<div class="col-sm-4">
<div class="d-flex align-items-center justify-content-start gap-2">
<i class="ph ph-truck"></i>
<p class="small">Free Shipping Above $300</p>
</div>
</div>
<div class="col-sm-4 d-none d-sm-block">
<div class="d-flex align-items-center justify-content-center gap-2">
<i class="ph ph-envelope-simple"></i>
<p class="small">info.sofia@sofia.ae</p>
</div>
</div>
<div class="col-sm-4">
<div class="d-flex align-items-center justify-content-end gap-2">
<i class="ph ph-phone"></i>
<p class="small">+1 (424) 433-3993</p>
</div>
</div>
</div>
</div>
</div>
<div class="header_middle xs-width py-3">
<div class="container">
<div class="row">
<div class="col-md-3 col-6">
<a href="index.html" class="logo">
<img src="images/brand/logo.svg"/ alt="Brand Logo">
</a>
</div>
<div class="col-sm-6 d-md-block d-none">
<div class="header_search_wrapper">
<a href="#" class="header_icon d-md-none d-flex">
<i class="ph ph-magnifying-glass"></i>
</a>
<form class="form-inline w-100 d-md-flex d-none">
<div class="input-group">
<input type="text" class="form-control" placeholder="Search" aria-label="Search" aria-describedby="search-addon">
<div class="input-group-append">
<button class="btn btn-primary" type="submit"><i class="ph ph-magnifying-glass"></i></button>
</div>
</div>
</form>
</div>
</div>
<div class="col-md-3 col-6">
<div class="header_ecom_icons">
<a href="cart.html" class="header_icon icon_badge" data-bs-toggle="offcanvas" data-bs-target="#cart_canvas" data-value="5">
<i class="ph ph-shopping-bag"></i>
<span class="d-md-block d-none">Cart</span>
</a>
<a href="cart.html" class="header_icon d-flex d-md-none">
<i class="ph ph-magnifying-glass"></i>
</a>
<a href="track_order.html" class="header_icon d-flex">
<i class="ph ph-truck"></i>
</a>
<a href="login.html" class="header_icon">
<i class="ph ph-user-circle"></i>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="header_bottom xs-width">
<div class="container">
<div class="row">
<div class="col-lg-12 col-sm-2">
<button data-bs-toggle="offcanvas" data-bs-target="#menu" class="sale_btn d-lg-none px-3 d-flex">
<i class="ph ph-list"></i>
</button>
<div id="menu" class="menu">
<div class="offcanvas-header d-lg-none d-flex">
<h5 class="">Menu</h5>
<button type="button" class="btn-close" data-bs-dismiss="offcanvas"></button>
</div>
<div class="offcanvas-body overflow">
<ul class="header_categories d-lg-flex justify-content-between align-items-center gap-4">
<li>
<a class="text-capitalize" href="javascript:void(0)">eid collection</a>
<div class="dropdown-menu">
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Unstitched</span>
</a>
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Stitched</span>
</a>
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Luxury Formals</span>
</a>
<a href="collections.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>View All</span>
</a>
</div>
</li>
<li>
<a class="text-capitalize" href="javascript:void(0)">Unstitched</a>
<div class="dropdown-menu">
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Cotton Unstitched</span>
</a>
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Lawn Unstitched</span>
</a>
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Embroidered Unstitched</span>
</a>
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Printed Unstitched</span>
</a>
</div>
</li>
<li>
<a class="text-capitalize" href="javascript:void(0)">Stitched</a>
<div class="dropdown-menu">
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Casual Stitched</span>
</a>
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Formal Stitched</span>
</a>
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Designer Stitched</span>
</a>
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Party Wear Stitched</span>
</a>
</div>
</li>
<li>
<a class="text-capitalize" href="javascript:void(0)">Couture Wedding Wear</a>
<div class="dropdown-menu">
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Bridal Dresses</span>
</a>
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Groom Sherwanis</span>
</a>
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Wedding Accessories</span>
</a>
</div>
</li>
<li>
<a class="text-capitalize" href="javascript:void(0)">Jewelry</a>
<div class="dropdown-menu">
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Earrings</span>
</a>
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Necklaces</span>
</a>
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Bracelets</span>
</a>
</div>
</li>
<li>
<a class="text-capitalize" href="javascript:void(0)">Accessories</a>
<div class="dropdown-menu">
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Bags</span>
</a>
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Belts</span>
</a>
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Scarves</span>
</a>
</div>
</li>
<li>
<a class="text-capitalize" href="javascript:void(0)">Casual Wear</a>
<div class="dropdown-menu">
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Everyday Comfort</span>
</a>
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Weekend Vibes</span>
</a>
</div>
</li>
<li>
<a class="text-capitalize" href="javascript:void(0)">Formal Wear</a>
<div class="dropdown-menu">
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Office Attire</span>
</a>
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Business Meetings</span>
</a>
</div>
</li>
<li>
<a class="text-capitalize" href="javascript:void(0)">Summer Essentials</a>
<div class="dropdown-menu">
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Light Dresses</span>
</a>
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Breezy Tops</span>
</a>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<!--==== End of Footer ====-->
<!--==========================
= Main =
===========================-->
<main>
<!-- single product detail -->
<section class="single_product">
<div class="container">
<div class="row">
<div class="col-lg-7 mb-lg-0 mb-4">
<div class="row g-3 flex-md-row flex-column-reverse">
<div class="col-md-2">
<div class="single_product_thumb_slider swiper">
<div class="swiper-wrapper">
<div class="swiper-slide">
<figure class="single_product_img">
<img src="images/single_product/product_1.webp" alt="Product Image 1" class="img-fluid">
</figure>
</div>
<div class="swiper-slide">
<figure class="single_product_img">
<img src="images/single_product/product_2.webp" alt="Product Image 2" class="img-fluid">
</figure>
</div>
<div class="swiper-slide">
<figure class="single_product_img">
<img src="images/single_product/product_3.webp" alt="Product Image 3" class="img-fluid">
</figure>
</div>
<div class="swiper-slide">
<figure class="single_product_img">
<img src="images/single_product/product_4.webp" alt="Product Image 4" class="img-fluid">
</figure>
</div>
<div class="swiper-slide">
<figure class="single_product_img">
<img src="images/single_product/product_5.webp" alt="Product Image 5" class="img-fluid">
</figure>
</div>
<div class="swiper-slide">
<figure class="single_product_img">
<img src="images/single_product/product_6.webp" alt="Product Image 6" class="img-fluid">
</figure>
</div>
<div class="swiper-slide">
<figure class="single_product_img">
<img src="images/single_product/product_7.webp" alt="Product Image 7" class="img-fluid">
</figure>
</div>
<div class="swiper-slide">
<figure class="single_product_img">
<img src="images/single_product/product_8.webp" alt="Product Image 8" class="img-fluid">
</figure>
</div>
</div>
</div>
</div>
<div class="col-md-10">
<div class="single_product_slider swiper">
<div class="swiper-wrapper">
<div class="swiper-slide">
<figure class="single_product_img">
<div class="swiper-zoom-container">
<img src="images/single_product/product_1.webp" alt="Product Image 1" class="img-fluid">
</div>
</figure>
</div>
<div class="swiper-slide">
<figure class="single_product_img">
<div class="swiper-zoom-container">
<img src="images/single_product/product_2.webp" alt="Product Image 2" class="img-fluid">
</div>
</figure>
</div>
<div class="swiper-slide">
<figure class="single_product_img">
<div class="swiper-zoom-container">
<img src="images/single_product/product_3.webp" alt="Product Image 3" class="img-fluid">
</div>
</figure>
</div>
<div class="swiper-slide">
<figure class="single_product_img">
<div class="swiper-zoom-container">
<img src="images/single_product/product_4.webp" alt="Product Image 4" class="img-fluid">
</div>
</figure>
</div>
<div class="swiper-slide">
<figure class="single_product_img">
<div class="swiper-zoom-container">
<img src="images/single_product/product_5.webp" alt="Product Image 5" class="img-fluid">
</div>
</figure>
</div>
<div class="swiper-slide">
<figure class="single_product_img">
<div class="swiper-zoom-container">
<img src="images/single_product/product_6.webp" alt="Product Image 6" class="img-fluid">
</div>
</figure>
</div>
<div class="swiper-slide">
<figure class="single_product_img">
<div class="swiper-zoom-container">
<img src="images/single_product/product_7.webp" alt="Product Image 7" class="img-fluid">
</div>
</figure>
</div>
<div class="swiper-slide">
<figure class="single_product_img">
<div class="swiper-zoom-container">
<img src="images/single_product/product_8.webp" alt="Product Image 8" class="img-fluid">
</div>
</figure>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-5">
<hgroup class="mb-2">
<h2 class="text-uppercase">drs-01</h2>
<h5 class="fw-medium">Rs. 16,650</h5>
</hgroup>
<p class="text-muted mb-2">Product Code: ABC123</p>
<div class="sold_product d-flex my-3 align-items-center gap-1">
<i class="ph ph-fire"></i>
<p> 21 sold in last 15 hours</p>
</div>
<div class="single_product_actions mb-3">
<div class="counter">
<button class="minus">-</button>
<input type="text" class="count" value="1" readonly>
<button class="plus">+</button>
</div>
<div class="d-flex gap-1">
<button class="btn btn-primary mr-2">
<span>Add to Cart</span>
</button>
<button class="btn outline">
<span>Buy Now</span>
</button>
</div>
<button>
<i class="ph ph-heart"></i>
</button>
</div>
<label class="form-check-label" for="flexCheckChecked">
<input class="form-check-input" type="checkbox" value="" id="flexCheckChecked">
I agree with the <a href="#" class="text-decoration-underline">terms and conditions</a>.
</label>
<div class="d-flex gap-4 mb-3">
<div class="d-flex flex-column">
<label for="colorSelect" class="form-label">Color:</label>
<select id="colorSelect" class="form-select">
<option>Select Color</option>
<option value="Red">Red</option>
<option value="Blue">Blue</option>
<option value="Green">Green</option>
</select>
</div>
<div class="d-flex flex-column">
<label for="sizeSelect" class="form-label">Size:</label>
<select id="sizeSelect" class="form-select">
<option>Select Size</option>
<option value="Small">Small</option>
<option value="Medium">Medium</option>
<option value="Large">Large</option>
</select>
</div>
</div>
<div class="accordion" id="accordionExample">
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button" type="button" data-bs-toggle="collapse" data-bs-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
Description
</button>
</h2>
<div id="collapseOne" class="accordion-collapse collapse show" data-bs-parent="#accordionExample">
<div class="accordion-body">
<div class="product_desc">
<p class="text-muted">Enter a realm of artistry and tradition with this rust peshwas from Asim Jofa’s “Jaan-e-Jahan Chiffon collection.” Every stitch tells a tale of timeless elegance and cultural richness. Motifs inspired by cultural elements dance across the fabric speaking volumes of traditional beauty. The antique gold zariwork along with 3mm gold cupped sequins symbolizes legacy adding depth and significance to the ensemble. The rich rustic hue anchors the outfit with a sense of passion. Luminous embroidery enhances this masterpiece with grace and allure.</p>
<h5>DESIGN DETAILS:</h5>
<ul class="product-details text-muted">
<li>Embroidered front body on chiffon</li>
<li>Embroidered back body on chiffon</li>
<li>1 meter embroidered border for bodice hem on chiffon</li>
<li>22 embroidered kalis on chiffon</li>
<li>5 meter embroidered border for ghera on chiffon</li>
<li>Pair of embroidered sleeves on chiffon</li>
<li>Pair of embroidered bunches for sleeves on chiffon</li>
<li>2.5 meter embroidered dupatta on chiffon with 4 side borders</li>
<li>1.5 meter dyed twisted silk for trouser</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- recent views -->
<section class="new_arrivals bg-light">
<div class="container">
<div class="row mb-4">
<div class="col-12">
<h3 class="heading text-center">Recent Views</h3>
</div>
</div>
<div class="row products_row">
<div class="col-lg-3 col-md-4 col-6 mb-3">
<div class="card product_card">
<figure class="product_img">
<span class="badge">Sale</span>
<a href="single_product.html"><img src="images/products/product_1.webp" class="card-img" alt="Product Image"></a>
</figure>
<div class="card-body">
<hgroup>
<a href="single_product.html">
<h5 class="card-title">drs-01</h5>
</a>
<p class="card-text">Rs. 16,650</p>
</hgroup>
<a href="#" class="btn">
<span class="d-md-block d-none me-1">Add to cart</span>
<i class="ph ph-shopping-cart-simple"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-6 mb-3">
<div class="card product_card">
<figure class="product_img">
<a href="single_product.html"><img src="images/products/product_2.webp" class="card-img" alt="Product Image"></a>
</figure>
<div class="card-body">
<hgroup>
<a href="single_product.html">
<h5 class="card-title">drs-02</h5>
</a>
<p class="card-text">Rs. 18,950</p>
</hgroup>
<a href="#" class="btn">
<span class="d-md-block d-none me-1">Add to cart</span>
<i class="ph ph-shopping-cart-simple"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-6 mb-3">
<div class="card product_card">
<figure class="product_img">
<span class="badge">Sale</span>
<a href="single_product.html"><img src="images/products/product_3.webp" class="card-img" alt="Product Image"></a>
</figure>
<div class="card-body">
<hgroup>
<a href="single_product.html">
<h5 class="card-title">drs-03</h5>
</a>
<p class="card-text">Rs. 21,350</p>
</hgroup>
<a href="#" class="btn">
<span class="d-md-block d-none me-1">Add to cart</span>
<i class="ph ph-shopping-cart-simple"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-6 mb-3">
<div class="card product_card">
<figure class="product_img">
<a href="single_product.html"><img src="images/products/product_4.webp" class="card-img" alt="Product Image"></a>
</figure>
<div class="card-body">
<hgroup>
<a href="single_product.html">
<h5 class="card-title">drs-04</h5>
</a>
<p class="card-text">Rs. 24,500</p>
</hgroup>
<a href="#" class="btn">
<span class="d-md-block d-none me-1">Add to cart</span>
<i class="ph ph-shopping-cart-simple"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-6 mb-3">
<div class="card product_card">
<figure class="product_img">
<a href="single_product.html"><img src="images/products/product_5.webp" class="card-img" alt="Product Image"></a>
</figure>
<div class="card-body">
<hgroup>
<a href="single_product.html">
<h5 class="card-title">drs-05</h5>
</a>
<p class="card-text">Rs. 28,750</p>
</hgroup>
<a href="#" class="btn">
<span class="d-md-block d-none me-1">Add to cart</span>
<i class="ph ph-shopping-cart-simple"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-6 mb-3">
<div class="card product_card">
<figure class="product_img">
<a href="single_product.html"><img src="images/products/product_6.webp" class="card-img" alt="Product Image"></a>
</figure>
<div class="card-body">
<hgroup>
<a href="single_product.html">
<h5 class="card-title">drs-06</h5>
</a>
<p class="card-text">Rs. 32,450</p>
</hgroup>
<a href="#" class="btn">
<span class="d-md-block d-none me-1">Add to cart</span>
<i class="ph ph-shopping-cart-simple"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-6 mb-3">
<div class="card product_card">
<figure class="product_img">
<span class="badge">Sale</span>
<a href="single_product.html"><img src="images/products/product_7.webp" class="card-img" alt="Product Image"></a>
</figure>
<div class="card-body">
<hgroup>
<a href="single_product.html">
<h5 class="card-title">drs-07</h5>
</a>
<p class="card-text">Rs. 36,850</p>
</hgroup>
<a href="#" class="btn">
<span class="d-md-block d-none me-1">Add to cart</span>
<i class="ph ph-shopping-cart-simple"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-6 mb-3">
<div class="card product_card">
<figure class="product_img">
<span class="badge">Sale</span>
<a href="single_product.html"><img src="images/products/product_8.webp" class="card-img" alt="Product Image"></a>
</figure>
<div class="card-body">
<hgroup>
<a href="single_product.html">
<h5 class="card-title">drs-08</h5>
</a>
<p class="card-text">Rs. 39,950</p>
</hgroup>
<a href="#" class="btn">
<span class="d-md-block d-none me-1">Add to cart</span>
<i class="ph ph-shopping-cart-simple"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- product review -->
<section class="product_review custom-review">
<div class="container">
<div class="row mb-4">
<div class="col-md-6">
<h4 class="heading">Product Reviews</h4>
</div>
<div class="col-md-6 text-end">
<button class="btn" data-bs-toggle="modal" data-bs-target="#reviewModal">
<i class="ph ph-pencil-simple-line"></i>
<span>Write a review</span>
</button>
</div>
<div class="modal fade" id="reviewModal">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="reviewModalLabel">Write a Review</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<form>
<div class="row mb-3">
<div class="col-md-6">
<label for="inputName" class="form-label">Your Name</label>
<input type="text" class="form-control" id="inputName" placeholder="Enter your name">
</div>
<div class="col-md-6">
<label for="inputEmail" class="form-label">Your Email</label>
<input type="email" class="form-control" id="inputEmail" placeholder="Enter your email">
</div>
</div>
<div class="mb-3">
<label for="inputReview" class="form-label">Your Review</label>
<textarea class="form-control" id="inputReview" rows="4" placeholder="Write your review"></textarea>
</div>
<div class="row">
<div class="col-md-6">
<label class="form-label d-block">Rating</label>
<div class="d-flex">
<span class="me-1 lh-1"><i class="ph ph-star"></i></span>
<span class="me-1 lh-1"><i class="ph ph-star"></i></span>
<span class="me-1 lh-1"><i class="ph ph-star"></i></span>
<span class="me-1 lh-1"><i class="ph ph-star"></i></span>
<span class="me-1 lh-1"><i class="ph ph-star"></i></span>
</div>
</div>
<div class="col-md-6 d-flex align-items-end justify-content-end">
<button type="submit" class="btn btn-primary">
<span>Submit Review</span>
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<div class="row g-4">
<div class="col-lg-4 col-md-6 col-12">
<div class="card review_card rounded bg-light border">
<img class="customer-img" src="https://placehold.co/40" alt="Customer Image">
<div class="card-body">
<h5 class="card-title">Achi Quality</h5>
<div class="d-flex gap-1 mt-1 mb-2">
<i class="ph-fill ph-star"></i>
<i class="ph-fill ph-star"></i>
<i class="ph-fill ph-star"></i>
<i class="ph-fill ph-star"></i>
<i class="ph-fill ph-star"></i>
</div>
<p class="card-text">Yeh product bohat hi acha hai, mujhe iski quality bohat pasand aayi. Delivery bhi time pe hui.</p>
<a href="#" class="d-flex align-items-center gap-1">
<small class="customer_name">Ali</small>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-12">
<div class="card review_card rounded bg-light border">
<img class="customer-img" src="https://placehold.co/40" alt="Customer Image">
<div class="card-body">
<h5 class="card-title">Value for Money</h5>
<div class="d-flex gap-1 mt-1 mb-2">
<i class="ph-fill ph-star"></i>
<i class="ph-fill ph-star"></i>
<i class="ph-fill ph-star"></i>
<i class="ph-fill ph-star"></i>
<i class="ph-fill ph-star"></i>
</div>
<p class="card-text">Price ke hisaab se product bohat acha hai. Main zaroor recommend karunga.</p>
<a href="#" class="d-flex align-items-center gap-1">
<small class="customer_name">Sana</small>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-12">
<div class="card review_card rounded bg-light border">
<img class="customer-img" src="https://placehold.co/40" alt="Customer Image">
<div class="card-body">
<h5 class="card-title">Stylish and Comfortable</h5>
<div class="d-flex gap-1 mt-1 mb-2">
<i class="ph-fill ph-star"></i>
<i class="ph-fill ph-star"></i>
<i class="ph-fill ph-star"></i>
<i class="ph-fill ph-star"></i>
<i class="ph-fill ph-star"></i>
</div>
<p class="card-text">Design aur comfort dono hi behterin hain. Mujhe bohat pasand aaya.</p>
<a href="#" class="d-flex align-items-center gap-1">
<small class="customer_name">Hamza</small>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-12">
<div class="card review_card rounded bg-light border">
<img class="customer-img" src="https://placehold.co/40" alt="Customer Image">
<div class="card-body">
<h5 class="card-title">Highly Recommended</h5>
<div class="d-flex gap-1 mt-1 mb-2">
<i class="ph-fill ph-star"></i>
<i class="ph-fill ph-star"></i>
<i class="ph-fill ph-star"></i>
<i class="ph-fill ph-star"></i>
<i class="ph-fill ph-star"></i>
</div>
<p class="card-text">Yeh product mere expectations se bhi zyada acha nikla. Main zaroor recommend karunga.</p>
<a href="#" class="d-flex align-items-center gap-1">
<small class="customer_name">Ayesha</small>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-12">
<div class="card review_card rounded bg-light border">
<img class="customer-img" src="https://placehold.co/40" alt="Customer Image">
<div class="card-body">
<h5 class="card-title">Durable and Reliable</h5>
<div class="d-flex gap-1 mt-1 mb-2">
<i class="ph-fill ph-star"></i>
<i class="ph-fill ph-star"></i>
<i class="ph-fill ph-star"></i>
<i class="ph-fill ph-star"></i>
<i class="ph-fill ph-star"></i>
</div>
<p class="card-text">Yeh product bohat hi durable hai, main bohat khush hoon apne purchase se.</p>
<a href="#" class="d-flex align-items-center gap-1">
<small class="customer_name">Ahmed</small>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-12">
<div class="card review_card rounded bg-light border">
<img class="customer-img" src="https://placehold.co/40" alt="Customer Image">
<div class="card-body">
<h5 class="card-title">Excellent Service</h5>
<div class="d-flex gap-1 mt-1 mb-2">
<i class="ph-fill ph-star"></i>
<i class="ph-fill ph-star"></i>
<i class="ph-fill ph-star"></i>
<i class="ph-fill ph-star"></i>
<i class="ph-fill ph-star"></i>
</div>
<p class="card-text">Customer service bohat hi zabardast thi, aur product bhi lajawab hai.</p>
<a href="#" class="d-flex align-items-center gap-1">
<small class="customer_name">Zara</small>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
<!--==== End of Main ====-->
<!--============================
= Footer =
=============================-->
<footer class="footer pt-5 pb-2">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-4 col-sm-6 col-12 mb-3">
<a href="index.html" class="logo mx-0 mb-3">
<img src="images/brand/logo.svg" alt="">
</a>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean euismod bibendum laoreet.</p>
<div class="d-flex gap-2 align-items-center">
<a href="#"><i class="ph ph-facebook-logo"></i></a>
<a href="#"><i class="ph ph-instagram-logo"></i></a>
<a href="#"><i class="ph ph-x-logo"></i></a>
<a href="#"><i class="ph ph-pinterest-logo"></i></a>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-6 col-12 mb-3">
<h5 class="mb-3">Quick Links</h5>
<ul class="list-unstyled">
<li><a href="index.html">Home</a></li>
<li><a href="single_collection.html">Shop</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</div>
<div class="col-lg-3 col-md-4 col-sm-6 col-12 mb-3">
<h5 class="mb-3">Categories</h5>
<ul class="list-unstyled">
<li><a href="#">Dresses</a></li>
<li><a href="#">Tops</a></li>
<li><a href="#">Bottoms</a></li>
<li><a href="#">Outerwear</a></li>
</ul>
</div>
<div class="col-lg-3 col-md-4 col-sm-6 col-12 mb-3">
<h5 class="mb-3">Subscribe</h5>
<p>Subscribe to our newsletter for exclusive offers and updates.</p>
<form action="#" method="post" class="subscribe-form">
<div class="input-group">
<input type="email" class="form-control" placeholder="Enter your email" required>
<div class="input-group-append">
<button class="btn btn-primary" type="submit">Subscribe</button>
</div>
</div>
</form>
<div class="footer_payment_methods mt-3">
<figure class="method">
<img src="images/payments/visa.svg" alt="visa">
</figure>
<figure class="method">
<img src="images/payments/amex.svg" alt="amex">
</figure>
<figure class="method">
<img src="images/payments/mastercard.svg" alt="mastercard">
</figure>
<figure class="method">
<img src="images/payments/elo.svg" alt="elo">
</figure>
</div>
</div>
</div>
<hr>
<div class="row">
<div class="col-md-10">
<p>© 2024 SOFIA Women's Clothing Store. All rights reserved.</p>
</div>
<div class="col-md-2 text-md-right">
<ul class="list-inline">
<li class="list-inline-item"><a href="privacy_policy.html">Privacy Policy</a></li>
<li class="list-inline-item"><a href="term_conditions.html">Terms of Use</a></li>
</ul>
</div>
</div>
</div>
</footer>
<!--==== End of Footer ====-->
<!-- Scripts Files -->
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>