-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathseed.html
More file actions
522 lines (460 loc) · 28.7 KB
/
seed.html
File metadata and controls
522 lines (460 loc) · 28.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DigiSoria</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
'primary-blue': '#1F46A9',
'secondary-gray': '#F9FAFB',
'accent-orange': '#FF6B1F',
'text-dark': '#1F2937',
'text-muted': '#6B7280',
'red-danger': '#EF4444',
'light-bg': '#FFFFFF',
'page-bg': '#F3F4F6',
},
boxShadow: {
'custom-light': '0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06)',
}
}
}
}
</script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body class="bg-page-bg font-sans antialiased text-text-dark">
<header class="bg-primary-blue shadow-md sticky top-0 z-20">
<div class="container mx-auto py-4 px-0 md:px-4 flex justify-between items-center">
<div class="flex items-center space-x-4 pl-4 md:pl-0">
<button id="menu-button" class="text-white hover:text-accent-orange transition-colors">
<i class="fas fa-bars text-xl"></i>
</button>
<a href="seed.html" class="text-2xl font-bold text-white hidden sm:block">DigiSoria</a>
</div>
<div class="flex flex-grow max-w-lg mx-2 md:mx-8">
<div class="relative w-full">
<input type="search" id="search-input" placeholder="Search for products..."
class="w-full p-2 pl-10 border border-gray-300 rounded-lg text-text-dark focus:ring-accent-orange focus:border-accent-orange">
<i class="fas fa-search absolute left-3 top-1/2 transform -translate-y-1/2 text-gray-400"></i>
</div>
</div>
<div class="flex items-center space-x-6 ml-4 pr-4 md:pr-0">
<div id="user-indicator"
class="text-xs font-medium text-white px-3 py-1 rounded-full bg-white/20 hidden md:block transition-colors duration-200">
Logged Out
</div>
<div class="relative" id="wishlist-container">
<button id="wishlist-button" onclick="toggleWishlistPopover(event)"
class="relative text-white hover:text-red-danger transition-colors">
<i class="fas fa-heart text-xl"></i>
</button>
<div id="wishlist-popover"
class="absolute right-0 mt-3 w-80 bg-light-bg rounded-xl shadow-2xl py-2 z-30 opacity-0 scale-95 pointer-events-none transition-all duration-200 origin-top-right border border-gray-100 max-h-96 overflow-y-auto">
<div
class="absolute right-3 -top-2 w-0 h-0 border-l-8 border-l-transparent border-r-8 border-r-transparent border-b-8 border-b-white">
</div>
<div class="p-4 border-b">
<h4 class="text-lg font-bold text-red-danger">Your Wishlist</h4>
</div>
<div id="wishlist-items-list" class="space-y-3 p-4">
<p class="text-center text-text-muted text-sm">Your wishlist is empty.</p>
</div>
<div class="p-4 border-t">
</div>
</div>
</div>
<button id="cart-button" class="relative text-white hover:text-accent-orange transition-colors">
<i class="fas fa-shopping-cart text-xl"></i>
<span id="cart-count"
class="absolute -top-1 -right-1 bg-red-danger text-white text-xs font-bold rounded-full h-4 w-4 flex items-center justify-center">0</span>
</button>
<div class="relative" id="profile-container">
<button class="text-white hover:text-accent-orange transition-colors" id="profile-button">
<i class="fas fa-user-circle text-xl"></i>
</button>
<div id="profile-menu"
class="profile-menu absolute right-0 mt-3 w-48 bg-white rounded-lg shadow-xl py-2 z-20 transition-all duration-150 ease-in-out border border-gray-100">
<div
class="absolute right-3 -top-2 w-0 h-0 border-l-8 border-l-transparent border-r-8 border-r-transparent border-b-8 border-b-white">
</div>
<a href="profile.html" class="block px-4 py-2 text-text-dark hover:bg-gray-100 font-medium">My
Profile</a>
<a href="message.html" class="block px-4 py-2 text-text-dark hover:bg-gray-100">Messages</a>
<a href="my-purchases.html" class="block px-4 py-2 text-text-dark hover:bg-gray-100">My
Purchases</a>
<a href="sellerpage.html"
class="block px-4 py-2 text-text-dark hover:bg-gray-100 border-t mt-1 pt-2">Start
Selling</a>
<a href="login.html" id="auth-toggle-btn"
class="block px-4 py-2 text-red-danger hover:bg-gray-100">
<span id="auth-button-text">Log In / Sign Out</span>
</a>
</div>
</div>
</div>
</div>
</header>
<div class="container mx-auto px-4 md:px-8 pt-4 md:pt-8">
<section class="relative bg-light-bg rounded-xl overflow-hidden shadow-lg mb-8 h-80 overflow-x-hidden">
<div id="carousel-slides" class="flex h-full transition-transform duration-500 ease-in-out">
<div
class="flex-shrink-0 w-full bg-accent-orange text-white p-8 md:p-16 flex flex-col justify-center items-center text-center">
<h1 class="text-3xl md:text-5xl font-extrabold mb-4">Flash Sale!</h1>
<p class="text-md md:text-lg max-w-2xl mx-auto">Up to 50% off on selected items! Don't miss out.</p>
</div>
<div
class="flex-shrink-0 w-full bg-primary-blue text-white p-8 md:p-16 flex flex-col justify-center items-center text-center">
<h1 class="text-3xl md:text-5xl font-extrabold mb-4">New Arrivals!</h1>
<p class="text-md md:text-lg max-w-2xl mx-auto">Check out the latest tech and gadgets added this
week!</p>
</div>
<div
class="flex-shrink-0 w-full bg-secondary-gray text-text-dark p-8 md:p-16 flex flex-col justify-center items-center text-center">
<h1 class="text-3xl md:text-5xl font-extrabold mb-4">Free Shipping!</h1>
<p class="text-md md:text-lg max-w-2xl mx-auto">On all orders over $50. Limited time offer.</p>
</div>
</div>
<button id="prev-slide"
class="absolute top-1/2 left-4 transform -translate-y-1/2 text-white text-3xl p-2 rounded-full bg-black bg-opacity-30 hover:bg-opacity-50 transition-opacity cursor-pointer z-10">
<i class="fas fa-chevron-left"></i>
</button>
<button id="next-slide"
class="absolute top-1/2 right-4 transform -translate-y-1/2 text-white text-3xl p-2 rounded-full bg-black bg-opacity-30 hover:bg-opacity-50 transition-opacity cursor-pointer z-10">
<i class="fas fa-chevron-right"></i>
</button>
<div class="absolute bottom-4 left-1/2 transform -translate-x-1/2 flex space-x-2 z-10">
<span
class="w-2 h-2 bg-white rounded-full bg-opacity-70 carousel-indicator transition-all duration-300"></span>
<span
class="w-2 h-2 bg-white rounded-full bg-opacity-70 carousel-indicator transition-all duration-300"></span>
<span
class="w-2 h-2 bg-white rounded-full bg-opacity-70 carousel-indicator transition-all duration-300"></span>
</div>
</section>
<section class="mb-8">
<h2 class="text-2xl font-bold text-text-dark mb-4">Product Categories</h2>
<div class="flex flex-wrap gap-3">
<button data-category="All"
class="px-4 py-2 bg-primary-blue text-white rounded-lg shadow-md hover:bg-blue-800 transition-colors font-semibold category-button active">All</button>
<button data-category="Electronics"
class="px-4 py-2 bg-secondary-gray text-text-dark rounded-lg hover:bg-page-bg transition-colors font-medium category-button">Electronics</button>
<button data-category="Appliances"
class="px-4 py-2 bg-secondary-gray text-text-dark rounded-lg hover:bg-page-bg transition-colors font-medium category-button">Appliances</button>
<button data-category="Outdoor"
class="px-4 py-2 bg-secondary-gray text-text-dark rounded-lg hover:bg-page-bg transition-colors font-medium category-button">Outdoor</button>
<button data-category="Accessories"
class="px-4 py-2 bg-secondary-gray text-text-dark rounded-lg hover:bg-page-bg transition-colors font-medium category-button">Accessories</button>
<button data-category="Smart Home"
class="px-4 py-2 bg-secondary-gray text-text-dark rounded-lg hover:bg-page-bg transition-colors font-medium category-button">Smart
Home</button>
<button data-category="Fitness"
class="px-4 py-2 bg-secondary-gray text-text-dark rounded-lg hover:bg-page-bg transition-colors font-medium category-button">Fitness</button>
</div>
</section>
<section class="mb-12">
<h2 class="text-2xl font-bold text-text-dark mb-4">Featured Products</h2>
<div id="featured-products-grid"
class="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-4 xl:grid-cols-5 gap-4 md:gap-6">
<div class="bg-light-bg rounded-xl shadow-lg overflow-hidden product-card animate-pulse">
<div class="w-full h-48 bg-gray-200"></div>
<div class="p-4">
<div class="h-6 bg-gray-200 rounded w-3/4 mb-2"></div>
<div class="h-4 bg-gray-200 rounded w-full mb-2"></div>
<div class="h-4 bg-gray-200 rounded w-1/4"></div>
</div>
</div>
<div
class="bg-light-bg rounded-xl shadow-lg overflow-hidden product-card animate-pulse hidden sm:block">
<div class="w-full h-48 bg-gray-200"></div>
<div class="p-4">
<div class="h-6 bg-gray-200 rounded w-3/4 mb-2"></div>
<div class="h-4 bg-gray-200 rounded w-full mb-2"></div>
<div class="h-4 bg-gray-200 rounded w-1/4"></div>
</div>
</div>
</div>
</section>
<section class="mb-12">
<h2 class="text-2xl font-bold text-text-dark mb-4">Recommended Products</h2>
<div id="recommended-products-grid"
class="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-4 xl:grid-cols-5 gap-4 md:gap-6">
<div class="bg-light-bg rounded-xl shadow-lg overflow-hidden product-card animate-pulse">
<div class="w-full h-48 bg-gray-200"></div>
<div class="p-4">
<div class="h-6 bg-gray-200 rounded w-3/4 mb-2"></div>
<div class="h-4 bg-gray-200 rounded w-full mb-2"></div>
<div class="h-4 bg-gray-200 rounded w-1/4"></div>
</div>
</div>
<div class="bg-light-bg rounded-xl shadow-lg overflow-hidden product-card animate-pulse">
<div class="w-full h-48 bg-gray-200"></div>
<div class="p-4">
<div class="h-6 bg-gray-200 rounded w-3/4 mb-2"></div>
<div class="h-4 bg-gray-200 rounded w-full mb-2"></div>
<div class="h-4 bg-gray-200 rounded w-1/4"></div>
</div>
</div>
<div class="bg-light-bg rounded-xl shadow-lg overflow-hidden product-card animate-pulse">
<div class="w-full h-48 bg-gray-200"></div>
<div class="p-4">
<div class="h-6 bg-gray-200 rounded w-3/4 mb-2"></div>
<div class="h-4 bg-gray-200 rounded w-full mb-2"></div>
<div class="h-4 bg-gray-200 rounded w-1/4"></div>
</div>
</div>
<div class="bg-light-bg rounded-xl shadow-lg overflow-hidden product-card animate-pulse">
<div class="w-full h-48 bg-gray-200"></div>
<div class="p-4">
<div class="h-6 bg-gray-200 rounded w-3/4 mb-2"></div>
<div class="h-4 bg-gray-200 rounded w-full mb-2"></div>
<div class="h-4 bg-gray-200 rounded w-1/4"></div>
</div>
</div>
<div class="bg-light-bg rounded-xl shadow-lg overflow-hidden product-card animate-pulse">
<div class="w-full h-48 bg-gray-200"></div>
<div class="p-4">
<div class="h-6 bg-gray-200 rounded w-3/4 mb-2"></div>
<div class="h-4 bg-gray-200 rounded w-full mb-2"></div>
<div class="h-4 bg-gray-200 rounded w-1/4"></div>
</div>
</div>
</div>
</section>
<footer class="mt-12 text-center text-text-muted text-sm border-t pt-4">
<p>© 2025 DigiSoria. All rights reserved.</p>
</footer>
</div>
<div id="backdrop"></div>
<div id="filter-menu" class="text-text-dark">
<div class="flex justify-between items-center p-4 border-b">
<h2 class="text-2xl font-extrabold">Menu</h2>
<button id="close-menu-btn" class="text-text-muted hover:text-red-danger transition-colors text-2xl">
<i class="fas fa-times"></i>
</button>
</div>
<div class="flex-grow overflow-y-auto p-4 space-y-6">
<h3 class="text-lg font-bold text-primary-blue border-b pb-2">Filters</h3>
<div>
<h4 class="font-semibold text-text-dark mb-2">Price Range</h4>
<div class="flex items-center space-x-2">
<input type="number" placeholder="Min"
class="w-full p-2 border border-gray-300 rounded-lg text-sm focus:ring-primary-blue focus:border-primary-blue">
<span>-</span>
<input type="number" placeholder="Max"
class="w-full p-2 border border-gray-300 rounded-lg text-sm focus:ring-primary-blue focus:border-primary-blue">
</div>
</div>
<div>
<h4 class="font-semibold text-text-dark mb-2">Rating</h4>
<select
class="w-full p-2 border border-gray-300 rounded-lg text-sm bg-white focus:ring-primary-blue focus:border-primary-blue">
<option>Any</option>
<option>4 Stars & Up</option>
<option>3 Stars & Up</option>
<option>2 Stars & Up</option>
<option>1 Star & Up</option>
</select>
</div>
<div>
<h4 class="font-semibold text-text-dark mb-2">Shipping</h4>
<label class="flex items-center text-sm">
<input type="checkbox"
class="h-4 w-4 text-primary-blue rounded focus:ring-primary-blue border-gray-300 mr-2">
Free Shipping
</label>
</div>
<div>
<h4 class="text-lg font-bold text-primary-blue mb-3">Categories</h4>
<div class="flex flex-col space-y-2 text-sm">
<a href="#" class="hover:text-accent-orange transition-colors">Electronics</a>
<a href="#" class="hover:text-accent-orange transition-colors">Appliances</a>
<a href="#" class="hover:text-accent-orange transition-colors">Outdoor</a>
<a href="#" class="hover:text-accent-orange transition-colors">Accessories</a>
<a href="#" class="hover:text-accent-orange transition-colors">Smart Home</a>
<a href="#" class="hover:text-accent-orange transition-colors">Fitness</a>
</div>
</div>
</div>
<div class="p-4 border-t-2 border-primary-blue/50 shadow-inner">
<button id="apply-filters-btn"
class="w-full py-3 bg-primary-blue text-white font-extrabold text-lg rounded-xl shadow-lg hover:bg-blue-800 transition-colors transform hover:scale-[1.01] active:scale-[0.99] mb-2">
Apply Filters
</button>
<button id="cancel-filters-btn"
class="w-full py-3 bg-gray-200 text-text-dark font-semibold text-lg rounded-xl shadow-md hover:bg-gray-300 transition-colors active:scale-[0.99]">
Cancel
</button>
</div>
</div>
<div id="cart-drawer">
<div class="p-5 border-b flex justify-between items-center bg-white shadow-sm">
<h3 class="text-2xl font-bold text-primary-blue">Your Shopping Cart</h3>
<button id="close-cart-btn" class="text-text-muted hover:text-red-danger transition-colors text-2xl">
<i class="fas fa-times"></i>
</button>
</div>
<div id="cart-items-list" class="flex-grow overflow-y-auto p-4 space-y-4">
</div>
<div class="p-4 bg-white border-t-2 border-accent-orange/50 shadow-2xl">
<div class="flex justify-between items-center mb-4">
<label class="flex items-center text-sm font-medium text-text-dark">
<input type="checkbox" id="select-all-checkbox"
class="h-4 w-4 text-primary-blue rounded focus:ring-primary-blue border-gray-300 mr-2">
Select All (<span id="selected-item-count">0</span>)
</label>
<div class="text-md font-medium">
Total Item: <span class="text-2xl font-bold text-red-danger">$<span
id="cart-total">0.00</span></span>
</div>
</div>
<button id="checkout-button"
class="w-full py-3 bg-accent-orange text-white font-extrabold text-lg rounded-xl shadow-lg hover:bg-orange-600 transition-colors transform hover:scale-[1.01] active:scale-[0.99] disabled:opacity-50"
disabled>
Check Out
</button>
</div>
</div>
<div id="product-detail-modal">
<div
class="modal-content bg-light-bg rounded-xl shadow-2xl w-11/12 max-w-5xl transform transition-all duration-300 p-0">
<div class="bg-primary-blue md:bg-white p-4 md:p-6 rounded-t-xl sticky top-0 z-10 md:static">
<button id="close-detail-modal-btn"
class="absolute top-4 right-4 text-white md:text-text-muted hover:text-red-danger transition-colors text-2xl">
<i class="fas fa-times"></i>
</button>
<h2 id="modal-product-name-mobile" class="text-white text-xl font-bold md:hidden">Product Detail</h2>
</div>
<div id="product-detail-content" class="flex flex-col lg:flex-row gap-6 p-4 md:p-6 pb-20 lg:pb-6">
<div class="w-full lg:w-1/2 flex flex-row-reverse md:flex-row gap-4">
<div class="relative flex-grow h-72 md:h-[400px] bg-gray-200 rounded-xl overflow-hidden shadow-xl">
<img id="detail-main-image" src="" alt="Main Product" class="w-full h-full object-contain p-2">
<button
class="absolute top-1/2 left-4 transform -translate-y-1/2 text-text-dark text-2xl p-2 rounded-full bg-white/70 hover:bg-white transition-colors cursor-pointer hidden">
<i class="fas fa-chevron-left"></i>
</button>
<button
class="absolute top-1/2 right-4 transform -translate-y-1/2 text-text-dark text-2xl p-2 rounded-full bg-white/70 hover:bg-white transition-colors cursor-pointer hidden">
<i class="fas fa-chevron-right"></i>
</button>
</div>
<div id="detail-thumbnails"
class="flex flex-row md:flex-col space-x-2 md:space-x-0 md:space-y-3 overflow-x-auto md:overflow-y-visible flex-shrink-0">
<div
class="w-16 h-16 md:w-20 md:h-20 bg-gray-200 rounded-lg border-2 border-primary-blue flex-shrink-0 cursor-pointer shadow-md">
</div>
<div
class="w-16 h-16 md:w-20 md:h-20 bg-gray-200 rounded-lg border-2 border-transparent flex-shrink-0 cursor-pointer">
</div>
</div>
</div>
<div class="w-full lg:w-1/2 space-y-4 md:space-y-6">
<div class="border-b pb-4">
<h1 id="detail-product-name"
class="text-2xl md:text-3xl font-extrabold text-text-dark mb-1 line-clamp-2">
Product Name Placeholder
</h1>
<span id="detail-seller-property" class="text-sm text-text-muted font-medium block mb-2">DIZCAYA
PROPERTY</span>
<div class="flex flex-col md:flex-row md:items-center md:space-x-4 mb-3">
<span id="detail-price"
class="text-3xl md:text-4xl font-extrabold text-red-danger mb-2 md:mb-0">$10,000.00</span>
<div id="detail-rating" class="flex items-center text-amber-500 text-sm">
<span class="ml-2 text-text-muted text-sm">(1.0)</span>
<a href="#" class="ml-2 text-primary-blue hover:underline text-sm font-medium">View 345
Feedbacks</a>
</div>
</div>
<p id="detail-shipping-date" class="text-text-muted text-sm font-medium flex items-center">
<i class="fas fa-truck text-green-500 mr-2"></i>
Get in October 20 - October 25
</p>
</div>
<div class="space-y-4">
<div>
<label for="detail-color-select"
class="block text-sm font-medium text-text-dark mb-2">Color</label>
<select id="detail-color-select"
class="w-full lg:w-3/4 p-3 border border-gray-300 rounded-lg bg-light-bg focus:ring-primary-blue focus:border-primary-blue transition-shadow">
<option>White</option>
</select>
</div>
<div class="flex items-center space-x-4">
<span class="text-sm font-medium text-text-dark">Quantity</span>
<div class="flex items-center border border-gray-300 rounded-lg">
<button id="detail-qty-decrease"
class="p-2 text-lg text-text-dark hover:bg-gray-100 rounded-l-lg transition-colors">
<i class="fas fa-minus"></i>
</button>
<input type="number" id="detail-qty-input" value="1" min="1" max="500"
class="w-12 text-center text-md font-semibold text-text-dark border-x border-gray-300 p-2 focus:outline-none">
<button id="detail-qty-increase"
class="p-2 text-lg text-text-dark hover:bg-gray-100 rounded-r-lg transition-colors">
<i class="fas fa-plus"></i>
</button>
</div>
<span id="detail-in-stock" class="text-sm text-text-muted">In stock: 500</span>
</div>
</div>
<div class="pt-2 border-t">
<h2 class="text-xl font-bold text-text-dark mb-2">Product Description</h2>
<p id="detail-description-property" class="text-sm text-text-muted font-medium block mb-3">
DIZCAYA PROPERTY</p>
<p id="detail-description"
class="text-text-muted leading-relaxed text-sm max-h-36 overflow-y-auto">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut
labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in
voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat
cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
</div>
<div
class="flex items-center justify-between p-4 bg-secondary-gray rounded-xl shadow-inner border border-gray-200">
<div class="flex items-center space-x-3">
<div
class="w-12 h-12 bg-primary-blue rounded-full flex items-center justify-center text-white text-2xl flex-shrink-0">
<i class="fas fa-store"></i>
</div>
<div>
<p id="detail-seller-name" class="font-bold text-lg text-text-dark">DigiSoria Seller</p>
<p id="detail-seller-location" class="text-text-muted text-sm flex items-center">
<i class="fas fa-map-marker-alt mr-1"></i>
Metro Manila
</p>
</div>
</div>
<a href="message.html" type="button" class="px-6 py-2 bg-primary-blue text-white font-semibold rounded-lg hover:bg-blue-800
transition-colors shadow-md">
<i class="fas fa-comment-alt mr-2"></i> Chat Now
</a>
</div>
</div>
</div>
<div
class="fixed bottom-0 left-0 right-0 lg:static bg-white p-4 border-t-2 border-gray-100 lg:border-t flex space-x-4 shadow-2xl lg:shadow-none lg:rounded-b-xl max-w-5xl mx-auto">
<button id="detail-add-to-cart-btn"
class="w-full py-3 border-2 border-primary-blue text-primary-blue font-extrabold text-lg rounded-xl shadow-md hover:bg-primary-blue hover:text-white transition-colors">
ADD TO CART
</button>
<button id="detail-buy-now-btn"
class="w-full py-3 bg-accent-orange text-white font-extrabold text-lg rounded-xl shadow-lg hover:bg-orange-600 transition-colors transform hover:scale-[1.01] active:scale-[0.99]">
BUY NOW
</button>
</div>
</div>
</div>
<div id="order-review-screen">
</div>
<div id="track-order-screen">
</div>
</body>
<script src="seed.js" type="module"></script>
</html>