easyorders 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. package/README.md +94 -0
  2. package/cli/bin/cli.ts +240 -0
  3. package/cli/server/api.ts +56 -0
  4. package/cli/server/index.ts +320 -0
  5. package/cli/server/token-store.ts +35 -0
  6. package/cli/server/tunnel.ts +161 -0
  7. package/cli/template/theme/config.json +123 -0
  8. package/cli/template/theme/schema.json +145 -0
  9. package/cli/template/theme/script.js +412 -0
  10. package/cli/template/theme/sections/breadcrumbs.liquid +17 -0
  11. package/cli/template/theme/sections/categories.liquid +10 -0
  12. package/cli/template/theme/sections/fake-counter.liquid +27 -0
  13. package/cli/template/theme/sections/fake-stock.liquid +6 -0
  14. package/cli/template/theme/sections/fake-visitor.liquid +6 -0
  15. package/cli/template/theme/sections/featured-products.liquid +110 -0
  16. package/cli/template/theme/sections/fixed-buy-button.liquid +46 -0
  17. package/cli/template/theme/sections/footer.liquid +129 -0
  18. package/cli/template/theme/sections/gallery.liquid +61 -0
  19. package/cli/template/theme/sections/header.liquid +152 -0
  20. package/cli/template/theme/sections/home-products-grid.liquid +110 -0
  21. package/cli/template/theme/sections/list-products.liquid +93 -0
  22. package/cli/template/theme/sections/order-invoice.liquid +154 -0
  23. package/cli/template/theme/sections/product-description.liquid +30 -0
  24. package/cli/template/theme/sections/product-details.liquid +63 -0
  25. package/cli/template/theme/sections/products-grid.liquid +86 -0
  26. package/cli/template/theme/sections/related-products.liquid +88 -0
  27. package/cli/template/theme/sections/reviews.liquid +55 -0
  28. package/cli/template/theme/sections/slider.liquid +43 -0
  29. package/cli/template/theme/sections/thanks.liquid +33 -0
  30. package/cli/template/theme/style.css +3923 -0
  31. package/cli/template/theme/theme-data.json +9 -0
  32. package/package.json +37 -0
@@ -0,0 +1,3923 @@
1
+ @keyframes ab-fadeUp {
2
+ 0% {
3
+ opacity: 0;
4
+ transform: translateY(30px);
5
+ }
6
+ to {
7
+ opacity: 1;
8
+ transform: translateY(0);
9
+ }
10
+ }
11
+ @keyframes ab-shimmer {
12
+ 0% {
13
+ background-position: -200%0;
14
+ }
15
+ to {
16
+ background-position: 200%0;
17
+ }
18
+ }
19
+ .collection_container,
20
+ .product_container {
21
+ max-width: 1440px;
22
+ width: 100%;
23
+ margin: 0 auto;
24
+ padding-inline: 1.5rem;
25
+ padding-top: 100px;
26
+ }
27
+ .content_container {
28
+ max-width: 1440px;
29
+ }
30
+ @media (max-width: 768px) {
31
+ .product_container {
32
+ padding-inline: 0.7rem;
33
+ padding-top: 100px;
34
+ }
35
+ }
36
+ .p_content_container {
37
+ position: relative;
38
+ gap: 1.25rem;
39
+ }
40
+ @media (min-width: 1024px) {
41
+ .p_content_container {
42
+ display: grid;
43
+ grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
44
+ align-items: start;
45
+ column-gap: 1.25rem;
46
+ }
47
+ }
48
+ .p_gallery_container {
49
+ min-width: 0;
50
+ width: 100%;
51
+ }
52
+ .p_details_container {
53
+ background: #fff;
54
+ border-radius: 0.75rem;
55
+ padding: 2rem;
56
+ gap: 1.5rem;
57
+ margin-top: 2.5rem;
58
+ }
59
+ @media (min-width: 1024px) {
60
+ .p_details_container {
61
+ margin-top: 0;
62
+ position: sticky;
63
+ top: 120px;
64
+ }
65
+ }
66
+ .app_container,
67
+ .content_container {
68
+ background: var(--body-bg, #ece9e2) !important;
69
+ color: var(--body-text, #131316);
70
+ }
71
+ .home_section_container {
72
+ padding: 10px !important;
73
+ margin-block: 10px;
74
+ border-radius: 20px;
75
+ }
76
+ .ab-announce {
77
+ background: var(--ann-bg, #212a2f);
78
+ color: var(--ann-text, #fff);
79
+ text-align: center;
80
+ font-size: 12px;
81
+ font-weight: 500;
82
+ letter-spacing: 0.03em;
83
+ line-height: 1.4;
84
+ height: 35px;
85
+ position: relative;
86
+ z-index: 2;
87
+ overflow: hidden;
88
+ display: flex;
89
+ align-items: center;
90
+ justify-content: center;
91
+ }
92
+ .ab-announce a {
93
+ color: var(--ann-text, #fff);
94
+ text-decoration: underline;
95
+ text-underline-offset: 2px;
96
+ }
97
+ .ab-ann-simple {
98
+ display: flex;
99
+ align-items: center;
100
+ justify-content: center;
101
+ gap: 10px;
102
+ padding: 0 16px;
103
+ white-space: nowrap;
104
+ }
105
+ .ab-ann-sep {
106
+ opacity: 0.45;
107
+ font-size: 10px;
108
+ }
109
+ @keyframes ab-marquee {
110
+ 0% {
111
+ transform: translateX(0);
112
+ }
113
+ to {
114
+ transform: translateX(var(--marquee-offset, -50%));
115
+ }
116
+ }
117
+ .ab-ann-marquee {
118
+ width: 100%;
119
+ overflow: hidden;
120
+ display: flex;
121
+ align-items: center;
122
+ height: 100%;
123
+ }
124
+ .ab-ann-marquee-track {
125
+ display: flex;
126
+ align-items: center;
127
+ white-space: nowrap;
128
+ will-change: transform;
129
+ }
130
+ .ab-ann-marquee-track.ab-running {
131
+ animation: ab-marquee var(--marquee-dur, 20s) linear infinite;
132
+ }
133
+ .ab-ann-marquee-item {
134
+ flex-shrink: 0;
135
+ padding: 0 32px;
136
+ }
137
+ .ab-ann-slider {
138
+ position: relative;
139
+ width: 100%;
140
+ height: 100%;
141
+ overflow: hidden;
142
+ }
143
+ .ab-ann-slide {
144
+ position: absolute;
145
+ inset: 0;
146
+ display: flex;
147
+ align-items: center;
148
+ justify-content: center;
149
+ padding: 0 16px;
150
+ opacity: 0;
151
+ transform: translateX(100%);
152
+ transition:
153
+ opacity 0.5s ease,
154
+ transform 0.5s ease;
155
+ pointer-events: none;
156
+ }
157
+ .ab-ann-slide.ab-active {
158
+ opacity: 1;
159
+ transform: translateX(0);
160
+ pointer-events: auto;
161
+ }
162
+ .ab-ann-slide.ab-exit-left {
163
+ opacity: 0;
164
+ transform: translateX(-100%);
165
+ }
166
+ div:has(> .ab-header) {
167
+ position: fixed;
168
+ top: 0;
169
+ left: 0;
170
+ right: 0;
171
+ z-index: 50;
172
+ background: 0 0;
173
+ pointer-events: none;
174
+ }
175
+ div:has(> .ab-header) > * {
176
+ pointer-events: auto;
177
+ }
178
+ .ab-header {
179
+ position: relative;
180
+ z-index: 1;
181
+ background: var(--hd-bg, #fff);
182
+ color: var(--hd-text, #212a2f);
183
+ border-radius: 20px;
184
+ box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
185
+ transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
186
+ max-width: 1400px;
187
+ width: calc(100% - 48px);
188
+ margin: 10px auto;
189
+ }
190
+ .ab-header.ab-hidden {
191
+ transform: translateY(calc(-100% - 16px));
192
+ }
193
+ .ab-header-inner {
194
+ max-width: 1440px;
195
+ margin: 0 auto;
196
+ padding: 0 28px;
197
+ display: grid;
198
+ grid-template-columns: 1fr auto 1fr;
199
+ align-items: center;
200
+ height: 50px;
201
+ }
202
+ .ab-logo {
203
+ display: flex;
204
+ align-items: center;
205
+ text-decoration: none;
206
+ }
207
+ .ab-logo img {
208
+ height: 47px;
209
+ width: auto;
210
+ object-fit: contain;
211
+ }
212
+ .ab-logo-text {
213
+ font-style: italic;
214
+ font-size: 34px;
215
+ font-weight: 400;
216
+ color: var(--hd-text, #212a2f);
217
+ letter-spacing: -0.02em;
218
+ line-height: 1;
219
+ text-decoration: none;
220
+ }
221
+ .ab-nav {
222
+ display: flex;
223
+ align-items: center;
224
+ justify-content: center;
225
+ gap: 32px;
226
+ }
227
+ .ab-nav .ab-dropdown-trigger,
228
+ .ab-nav > a {
229
+ text-decoration: none;
230
+ color: var(--hd-text, #212a2f);
231
+ font-size: 14px;
232
+ font-weight: 600;
233
+ text-transform: uppercase;
234
+ letter-spacing: 0.08em;
235
+ padding: 4px 0;
236
+ position: relative;
237
+ transition: opacity 0.2s;
238
+ cursor: pointer;
239
+ }
240
+ .ab-nav .ab-dropdown-trigger::after,
241
+ .ab-nav > a::after {
242
+ content: "";
243
+ position: absolute;
244
+ bottom: -2px;
245
+ left: 0;
246
+ width: 0;
247
+ height: 1.5px;
248
+ background: var(--hd-text, #212a2f);
249
+ transition: width 0.25s ease;
250
+ }
251
+ .ab-nav .ab-dropdown-trigger:hover::after,
252
+ .ab-nav > a:hover::after {
253
+ width: 100%;
254
+ }
255
+ .ab-dropdown {
256
+ position: relative;
257
+ }
258
+ .ab-dropdown-panel {
259
+ display: none;
260
+ position: absolute;
261
+ top: 100%;
262
+ left: 50%;
263
+ transform: translateX(-50%);
264
+ padding-top: 12px;
265
+ z-index: 200;
266
+ border-radius: 10px;
267
+ box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
268
+ overflow: hidden;
269
+ }
270
+ .ab-dropdown:hover .ab-dropdown-panel {
271
+ display: block;
272
+ }
273
+ .ab-logo img {
274
+ display: block;
275
+ }
276
+ .ab-dropdown-panel::before {
277
+ content: "";
278
+ position: absolute;
279
+ top: 0;
280
+ left: 0;
281
+ right: 0;
282
+ height: 12px;
283
+ }
284
+ .ab-dropdown-panel > a {
285
+ display: block;
286
+ white-space: nowrap;
287
+ padding: 10px 24px;
288
+ text-decoration: none;
289
+ color: var(--hd-text, #212a2f);
290
+ font-size: 13px;
291
+ font-weight: 500;
292
+ transition:
293
+ background 0.15s,
294
+ color 0.15s;
295
+ background: var(--hd-bg, #fff);
296
+ }
297
+ .ab-dropdown-panel > a:first-child {
298
+ border-radius: 10px 10px 0 0;
299
+ padding-top: 14px;
300
+ }
301
+ .ab-dropdown-panel > a:last-child {
302
+ border-radius: 0 0 10px 10px;
303
+ padding-bottom: 14px;
304
+ }
305
+ .ab-dropdown-panel > a:only-child {
306
+ border-radius: 10px;
307
+ }
308
+ .ab-dropdown-panel > a:hover {
309
+ background: #f5f0eb;
310
+ }
311
+ .ab-right,
312
+ .ab-right-links {
313
+ display: flex;
314
+ align-items: center;
315
+ }
316
+ .ab-right {
317
+ justify-content: flex-end;
318
+ gap: 6px;
319
+ }
320
+ .ab-right-links {
321
+ gap: 16px;
322
+ margin-right: 12px;
323
+ }
324
+ .ab-right-links a {
325
+ text-decoration: none;
326
+ color: var(--hd-text, #212a2f);
327
+ font-size: 13px;
328
+ font-weight: 500;
329
+ transition: opacity 0.2s;
330
+ }
331
+ .ab-right-links a:hover {
332
+ opacity: 0.6;
333
+ }
334
+ .ab-icon-btn {
335
+ display: flex;
336
+ align-items: center;
337
+ justify-content: center;
338
+ }
339
+ .ab-icon-btn {
340
+ background: 0 0;
341
+ border: 0;
342
+ cursor: pointer;
343
+ border-radius: 50%;
344
+ color: var(--hd-text, #212a2f);
345
+ transition:
346
+ background 0.2s,
347
+ opacity 0.2s;
348
+ position: relative;
349
+ width: 36px;
350
+ height: 36px;
351
+ }
352
+ .ab-icon-btn::before,
353
+ .ab-mobile-close::before {
354
+ content: "";
355
+ display: block;
356
+ background: currentColor;
357
+ -webkit-mask-size: contain;
358
+ mask-size: contain;
359
+ -webkit-mask-repeat: no-repeat;
360
+ mask-repeat: no-repeat;
361
+ }
362
+ .ab-icon-btn::before {
363
+ width: 28px;
364
+ height: 28px;
365
+ -webkit-mask-position: center;
366
+ mask-position: center;
367
+ }
368
+ .ab-icon-btn:hover {
369
+ background: #f5f5f5;
370
+ }
371
+ .ab-icon-btn.search-btn::before {
372
+ -webkit-mask-image: url(https://files.easy-orders.net/1772538329933375167ab-search.svg);
373
+ mask-image: url(https://files.easy-orders.net/1772538329933375167ab-search.svg);
374
+ }
375
+ .ab-icon-btn.cart-btn::before {
376
+ -webkit-mask-image: url(https://files.easy-orders.net/1772538329933191621ab-cart.svg);
377
+ mask-image: url(https://files.easy-orders.net/1772538329933191621ab-cart.svg);
378
+ }
379
+ .ab-icon-btn.lang-btn::before {
380
+ width: 20px;
381
+ height: 20px;
382
+ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M2 12h20'/%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10A15.3 15.3 0 0 1 12 2z'/%3E%3C/svg%3E");
383
+ mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M2 12h20'/%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10A15.3 15.3 0 0 1 12 2z'/%3E%3C/svg%3E");
384
+ }
385
+ .ab-icon-btn.register-btn::before {
386
+ width: 22px;
387
+ height: 22px;
388
+ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cline x1='19' y1='8' x2='19' y2='14'/%3E%3Cline x1='22' y1='11' x2='16' y2='11'/%3E%3C/svg%3E");
389
+ mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cline x1='19' y1='8' x2='19' y2='14'/%3E%3Cline x1='22' y1='11' x2='16' y2='11'/%3E%3C/svg%3E");
390
+ }
391
+ .ab-cart-count {
392
+ display: flex;
393
+ align-items: center;
394
+ justify-content: center;
395
+ position: absolute;
396
+ top: 2px;
397
+ right: 2px;
398
+ background: var(--hd-text, #212a2f);
399
+ color: var(--hd-bg, #fff);
400
+ font-size: 9px;
401
+ font-weight: 700;
402
+ min-width: 16px;
403
+ height: 16px;
404
+ border-radius: 8px;
405
+ line-height: 1;
406
+ padding: 0 4px;
407
+ pointer-events: none;
408
+ }
409
+ .ab-mobile-overlay {
410
+ display: none;
411
+ position: fixed;
412
+ inset: 0;
413
+ background: rgba(0, 0, 0, 0.4);
414
+ z-index: 999;
415
+ opacity: 0;
416
+ transition: opacity 0.3s ease;
417
+ }
418
+ .ab-mobile-overlay.ab-open {
419
+ display: block;
420
+ opacity: 1;
421
+ }
422
+ .ab-mobile-menu {
423
+ display: none;
424
+ position: fixed;
425
+ top: 0;
426
+ left: 0;
427
+ bottom: 0;
428
+ width: 100%;
429
+ max-width: 100%;
430
+ background: #f5f0eb;
431
+ z-index: 1000;
432
+ transform: translateX(-100%);
433
+ transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
434
+ overflow-y: auto;
435
+ -webkit-overflow-scrolling: touch;
436
+ }
437
+ .ab-mobile-menu.ab-open {
438
+ transform: translateX(0);
439
+ }
440
+ .ab-mobile-menu-header {
441
+ display: flex;
442
+ align-items: center;
443
+ justify-content: space-between;
444
+ padding: 12px 16px;
445
+ position: sticky;
446
+ top: 0;
447
+ background: #f5f0eb;
448
+ z-index: 1;
449
+ }
450
+ .ab-mobile-menu-header .ab-logo {
451
+ position: absolute;
452
+ left: 50%;
453
+ top: 50%;
454
+ transform: translate(-50%, -50%);
455
+ }
456
+ .ab-mobile-menu-header .ab-logo img {
457
+ height: 32px;
458
+ width: auto;
459
+ display: block;
460
+ object-fit: contain;
461
+ }
462
+ .ab-mobile-menu-header .ab-logo-text {
463
+ font-size: 24px;
464
+ }
465
+ .ab-mobile-close {
466
+ display: flex;
467
+ align-items: center;
468
+ justify-content: center;
469
+ background: 0 0;
470
+ border: 0;
471
+ cursor: pointer;
472
+ color: var(--hd-text, #212a2f);
473
+ width: 36px;
474
+ height: 36px;
475
+ padding: 0;
476
+ }
477
+ .ab-mobile-close::before {
478
+ width: 22px;
479
+ height: 22px;
480
+ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
481
+ mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
482
+ }
483
+ .ab-mobile-nav {
484
+ padding: 8px 0;
485
+ }
486
+ .ab-mobile-accordion-trigger,
487
+ .ab-mobile-nav > a,
488
+ .ab-mobile-nav > button.register-btn {
489
+ display: flex;
490
+ align-items: center;
491
+ justify-content: space-between;
492
+ width: 100%;
493
+ padding: 16px 20px;
494
+ text-decoration: none;
495
+ color: var(--hd-text, #212a2f);
496
+ font-size: 16px;
497
+ font-weight: 700;
498
+ text-transform: uppercase;
499
+ letter-spacing: 0.06em;
500
+ border-bottom: 1px solid rgba(0, 0, 0, 0.08);
501
+ background: 0 0;
502
+ border-left: none;
503
+ border-right: none;
504
+ border-top: none;
505
+ cursor: pointer;
506
+ }
507
+ .ab-mobile-nav > .ab-mobile-accordion:first-child .ab-mobile-accordion-trigger,
508
+ .ab-mobile-nav > a:first-child {
509
+ border-top: 1px solid rgba(0, 0, 0, 0.08);
510
+ }
511
+ .ab-mobile-accordion-trigger svg,
512
+ .ab-mobile-nav > a svg,
513
+ .ab-mobile-nav > button.register-btn svg {
514
+ width: 24px;
515
+ height: 24px;
516
+ opacity: 0.5;
517
+ flex-shrink: 0;
518
+ }
519
+ .ab-mobile-accordion {
520
+ border-bottom: 1px solid rgba(0, 0, 0, 0.08);
521
+ }
522
+ .ab-mobile-accordion-trigger {
523
+ border-bottom: none !important;
524
+ }
525
+ .ab-accordion-arrow {
526
+ transition: transform 0.3s ease;
527
+ }
528
+ .ab-mobile-accordion.ab-open .ab-accordion-arrow {
529
+ transform: rotate(180deg);
530
+ }
531
+ .ab-mobile-accordion-panel {
532
+ max-height: 0;
533
+ overflow: hidden;
534
+ transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
535
+ }
536
+ .ab-mobile-accordion.ab-open .ab-mobile-accordion-panel {
537
+ max-height: 500px;
538
+ }
539
+ .ab-mobile-accordion-panel a {
540
+ display: block;
541
+ padding: 12px 20px 12px 36px;
542
+ text-decoration: none;
543
+ color: var(--hd-text, #212a2f);
544
+ font-size: 14px;
545
+ font-weight: 500;
546
+ letter-spacing: 0.02em;
547
+ transition: background 0.15s;
548
+ }
549
+ .ab-mobile-accordion-panel a:hover {
550
+ background: rgba(0, 0, 0, 0.04);
551
+ }
552
+ .ab-hamburger {
553
+ display: none;
554
+ }
555
+
556
+ /* ── Breadcrumbs ── */
557
+ .ab-breadcrumbs {
558
+ padding: 12px 0 4px;
559
+ }
560
+ .ab-breadcrumbs-list {
561
+ display: flex;
562
+ flex-wrap: wrap;
563
+ align-items: center;
564
+ gap: 6px;
565
+ list-style: none;
566
+ margin: 0;
567
+ padding: 0;
568
+ font-size: 14px;
569
+ font-weight: 400;
570
+ color: var(--hd-text, #212a2f);
571
+ opacity: 0.55;
572
+ }
573
+ .ab-breadcrumbs-item a {
574
+ color: inherit;
575
+ text-decoration: none;
576
+ transition: opacity 0.15s;
577
+ }
578
+ .ab-breadcrumbs-item a:hover {
579
+ opacity: 0.75;
580
+ }
581
+ .ab-breadcrumbs-sep {
582
+ margin-inline-start: 6px;
583
+ opacity: 0.5;
584
+ }
585
+ .ab-breadcrumbs-current {
586
+ opacity: 1;
587
+ color: var(--hd-text, #212a2f);
588
+ font-weight: 500;
589
+ }
590
+
591
+ @media (max-width: 1024px) {
592
+ .ab-mobile-menu {
593
+ display: block;
594
+ }
595
+ .ab-header {
596
+ width: auto;
597
+ margin: 6px 12px;
598
+ }
599
+ .ab-header-inner {
600
+ display: flex;
601
+ align-items: center;
602
+ justify-content: space-between;
603
+ padding: 0 12px;
604
+ height: 50px;
605
+ position: relative;
606
+ }
607
+ .ab-nav,
608
+ .ab-right-links {
609
+ display: none;
610
+ }
611
+ .ab-right {
612
+ justify-content: flex-end;
613
+ gap: 2px;
614
+ }
615
+ .ab-hamburger {
616
+ display: flex;
617
+ align-items: center;
618
+ justify-content: center;
619
+ background: 0 0;
620
+ border: 0;
621
+ cursor: pointer;
622
+ color: var(--hd-text, #212a2f);
623
+ width: 36px;
624
+ height: 36px;
625
+ margin-right: 4px;
626
+ }
627
+ .ab-hamburger::before {
628
+ content: "";
629
+ display: block;
630
+ width: 26px;
631
+ height: 26px;
632
+ background: currentColor;
633
+ -webkit-mask-image: url(https://files.easy-orders.net/1772538761869984865ab-menu.svg);
634
+ mask-image: url(https://files.easy-orders.net/1772538761869984865ab-menu.svg);
635
+ -webkit-mask-size: contain;
636
+ mask-size: contain;
637
+ -webkit-mask-repeat: no-repeat;
638
+ mask-repeat: no-repeat;
639
+ -webkit-mask-position: center;
640
+ mask-position: center;
641
+ }
642
+ .ab-logo {
643
+ position: absolute;
644
+ left: 50%;
645
+ top: 50%;
646
+ transform: translate(-50%, -50%);
647
+ }
648
+ .ab-logo-text {
649
+ font-size: 24px;
650
+ }
651
+ .ab-logo img {
652
+ height: 32px;
653
+ }
654
+ }
655
+ .ab-categories {
656
+ padding: 0;
657
+ }
658
+ .ab-categories-track {
659
+ display: grid;
660
+ grid-template-columns: repeat(4, 1fr);
661
+ gap: 16px;
662
+ }
663
+ .ab-cat-card {
664
+ position: relative;
665
+ border-radius: 16px;
666
+ overflow: hidden;
667
+ aspect-ratio: 0.75;
668
+ display: block;
669
+ text-decoration: none;
670
+ transition: border-radius 0.4s ease;
671
+ }
672
+ .ab-cat-card:hover {
673
+ border-radius: 100px;
674
+ }
675
+ .ab-cat-card img,
676
+ .ab-featured-hero img {
677
+ width: 100%;
678
+ height: 100%;
679
+ object-fit: cover;
680
+ display: block;
681
+ transition: transform 0.4s ease;
682
+ }
683
+ .ab-cat-label {
684
+ position: absolute;
685
+ top: 50%;
686
+ left: 50%;
687
+ transform: translate(-50%, -50%);
688
+ background: rgba(255, 255, 255, 0.85);
689
+ backdrop-filter: blur(4px);
690
+ -webkit-backdrop-filter: blur(4px);
691
+ color: #212a2f;
692
+ font-size: 13px;
693
+ font-weight: 700;
694
+ text-transform: uppercase;
695
+ letter-spacing: 0.06em;
696
+ padding: 8px 20px;
697
+ border-radius: 50px;
698
+ white-space: nowrap;
699
+ border: 1px solid rgba(255, 255, 255, 0.6);
700
+ pointer-events: none;
701
+ }
702
+ @media (max-width: 1024px) {
703
+ .ab-categories {
704
+ padding: 0 12px;
705
+ }
706
+ .ab-categories-track {
707
+ grid-template-columns: repeat(2, 1fr);
708
+ }
709
+ .ab-cat-label {
710
+ font-size: 11px;
711
+ padding: 6px 14px;
712
+ }
713
+ }
714
+ @media (max-width: 480px) {
715
+ .ab-categories-track {
716
+ grid-template-columns: repeat(2, 1fr);
717
+ gap: 10px;
718
+ }
719
+ }
720
+ .ab-featured-products {
721
+ margin-top: 40px;
722
+ }
723
+ .ab-featured-section-title {
724
+ margin: 0 0 20px;
725
+ text-align: center;
726
+ font-size: 48px;
727
+ font-weight: 400;
728
+ color: var(--hd-text, #212a2f);
729
+ line-height: 1.1;
730
+ letter-spacing: -0.02em;
731
+ }
732
+ .ab-featured-layout {
733
+ display: grid;
734
+ grid-template-columns: 1.04fr 1fr;
735
+ gap: 8px;
736
+ }
737
+ .ab-featured-hero {
738
+ position: relative;
739
+ display: block;
740
+ overflow: hidden;
741
+ transition:
742
+ transform 0.4s ease,
743
+ box-shadow 0.4s ease;
744
+ border-radius: 16px;
745
+ min-height: 430px;
746
+ text-decoration: none;
747
+ color: #fff;
748
+ }
749
+ .ab-featured-hero:hover {
750
+ transform: scale(0.98);
751
+ box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
752
+ }
753
+ .ab-featured-hero img {
754
+ min-height: 430px;
755
+ transition: transform 0.6s ease;
756
+ }
757
+ .ab-featured-hero:hover img {
758
+ transform: scale(1.05);
759
+ }
760
+ .ab-featured-hero-overlay {
761
+ position: absolute;
762
+ inset: 0;
763
+ background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.28));
764
+ }
765
+ .ab-featured-hero-content {
766
+ position: absolute;
767
+ top: 22%;
768
+ left: 50%;
769
+ transform: translateX(-50%);
770
+ width: calc(100% - 64px);
771
+ text-align: center;
772
+ }
773
+ .ab-featured-hero-title {
774
+ margin: 0;
775
+ color: #fff;
776
+ font-size: 56px;
777
+ font-weight: 400;
778
+ line-height: 1.06;
779
+ letter-spacing: -0.02em;
780
+ }
781
+ .ab-featured-hero-subtitle {
782
+ margin: 12px 0 0;
783
+ color: #fff;
784
+ font-size: 22px;
785
+ font-weight: 400;
786
+ line-height: 1.3;
787
+ }
788
+ .ab-featured-hero-cta {
789
+ position: absolute;
790
+ right: 16px;
791
+ bottom: 14px;
792
+ height: 34px;
793
+ border-radius: 999px;
794
+ padding: 0 16px;
795
+ background: #fff;
796
+ color: #1f272b;
797
+ display: inline-flex;
798
+ align-items: center;
799
+ gap: 8px;
800
+ font-size: 18px;
801
+ font-weight: 700;
802
+ line-height: 1;
803
+ letter-spacing: 0.01em;
804
+ transition:
805
+ transform 0.3s ease,
806
+ background 0.3s ease;
807
+ }
808
+ .ab-featured-hero:hover .ab-featured-hero-cta {
809
+ transform: scale(1.06);
810
+ background: #f5f0eb;
811
+ }
812
+ .ab-featured-add-btn::before,
813
+ .ab-featured-hero-cta::before {
814
+ content: "";
815
+ width: 25px;
816
+ height: 25px;
817
+ background: currentColor;
818
+ -webkit-mask-image: url(https://files.easy-orders.net/1772538329933191621ab-cart.svg);
819
+ mask-image: url(https://files.easy-orders.net/1772538329933191621ab-cart.svg);
820
+ -webkit-mask-size: contain;
821
+ mask-size: contain;
822
+ -webkit-mask-repeat: no-repeat;
823
+ mask-repeat: no-repeat;
824
+ -webkit-mask-position: center;
825
+ mask-position: center;
826
+ }
827
+ .ab-featured-grid {
828
+ display: grid;
829
+ grid-template-columns: repeat(2, minmax(0, 1fr));
830
+ gap: 8px;
831
+ }
832
+ .ab-reveal {
833
+ opacity: 0;
834
+ transform: translateY(30px);
835
+ }
836
+ .ab-reveal.ab-visible {
837
+ animation: ab-fadeUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
838
+ }
839
+ .ab-featured-card {
840
+ position: relative;
841
+ display: block;
842
+ text-decoration: none;
843
+ color: inherit;
844
+ border-radius: 14px;
845
+ overflow: hidden;
846
+ background: #fff;
847
+ transition:
848
+ transform 0.35s ease,
849
+ box-shadow 0.35s ease;
850
+ }
851
+ .ab-featured-card:hover {
852
+ transform: translateY(-4px);
853
+ box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
854
+ }
855
+ .ab-featured-badge {
856
+ position: absolute;
857
+ top: 10px;
858
+ left: 10px;
859
+ z-index: 3;
860
+ height: 24px;
861
+ border-radius: 999px;
862
+ padding: 0 10px;
863
+ background: #efede8;
864
+ color: #1f272b;
865
+ display: inline-flex;
866
+ align-items: center;
867
+ justify-content: center;
868
+ font-size: 11px;
869
+ font-weight: 700;
870
+ letter-spacing: 0.06em;
871
+ }
872
+ .ab-sale-badge {
873
+ background: #c94a4a;
874
+ color: #fff;
875
+ }
876
+ .ab-price-old {
877
+ text-decoration: line-through;
878
+ color: rgba(33, 42, 47, 0.45);
879
+ font-size: 12px;
880
+ font-weight: 500;
881
+ }
882
+ .ab-price-sale {
883
+ color: var(--product-sale-price-text, #c94a4a);
884
+ }
885
+ .ab-pgrid-price-row,
886
+ .ab-plist-price-row {
887
+ display: flex;
888
+ align-items: center;
889
+ gap: 6px;
890
+ margin-top: 4px;
891
+ }
892
+ .ab-featured-media {
893
+ background: #f5f4f2;
894
+ width: 100%;
895
+ position: relative;
896
+ overflow: hidden;
897
+ }
898
+ .ab-featured-media img {
899
+ width: 100%;
900
+ height: auto;
901
+ object-fit: contain;
902
+ display: block;
903
+ transition:
904
+ opacity 0.45s ease,
905
+ transform 0.45s ease;
906
+ }
907
+ .ab-featured-img-hover {
908
+ position: absolute;
909
+ inset: 0;
910
+ opacity: 0;
911
+ }
912
+ .ab-featured-card:hover .ab-featured-img-primary {
913
+ opacity: 0;
914
+ transform: scale(1.03);
915
+ }
916
+ .ab-featured-card:hover .ab-featured-img-hover {
917
+ opacity: 1;
918
+ transform: scale(1.03);
919
+ }
920
+ .ab-featured-info {
921
+ padding: 8px 14px 12px;
922
+ }
923
+ .ab-featured-name {
924
+ margin: 0;
925
+ color: var(--product-name-text, #212a2f);
926
+ font-size: 16px;
927
+ font-weight: 600;
928
+ line-height: 1.2;
929
+ text-transform: uppercase;
930
+ letter-spacing: 0.03em;
931
+ }
932
+ .ab-featured-price-row {
933
+ display: flex;
934
+ align-items: center;
935
+ gap: 6px;
936
+ margin-top: 4px;
937
+ }
938
+ .ab-featured-price {
939
+ color: var(--product-price-text, #212a2f);
940
+ font-size: 16px;
941
+ font-weight: 600;
942
+ line-height: 1.2;
943
+ }
944
+ .ab-featured-subtitle {
945
+ margin: 6px 0 0;
946
+ color: rgba(33, 42, 47, 0.82);
947
+ font-size: 12px;
948
+ font-weight: 500;
949
+ line-height: 1.2;
950
+ }
951
+ .ab-featured-bottom-row {
952
+ margin-top: 8px;
953
+ display: flex;
954
+ align-items: center;
955
+ justify-content: space-between;
956
+ gap: 8px;
957
+ }
958
+ .ab-featured-swatches {
959
+ min-width: 0;
960
+ display: flex;
961
+ align-items: center;
962
+ gap: 7px;
963
+ }
964
+ .ab-featured-swatch {
965
+ width: 20px;
966
+ height: 20px;
967
+ border-radius: 999px;
968
+ transition:
969
+ transform 0.2s ease,
970
+ box-shadow 0.2s ease;
971
+ }
972
+ .ab-featured-swatch:hover {
973
+ transform: scale(1.15);
974
+ box-shadow: 0 0 0 2px rgba(33, 42, 47, 0.3);
975
+ border: 1px solid rgba(0, 0, 0, 0.18);
976
+ display: inline-flex;
977
+ overflow: hidden;
978
+ }
979
+ .ab-featured-swatch-image img {
980
+ width: 100%;
981
+ height: 100%;
982
+ object-fit: cover;
983
+ display: block;
984
+ }
985
+ .ab-featured-swatch-more {
986
+ color: #1f272b;
987
+ font-size: 12px;
988
+ font-weight: 700;
989
+ line-height: 1;
990
+ text-decoration: underline;
991
+ }
992
+ .ab-featured-add-btn {
993
+ height: 34px;
994
+ border-radius: 999px;
995
+ border: 1px solid rgba(33, 42, 47, 0.45);
996
+ background: #f5f4f2;
997
+ color: #1f272b;
998
+ display: inline-flex;
999
+ align-items: center;
1000
+ justify-content: center;
1001
+ gap: 6px;
1002
+ padding: 0 14px;
1003
+ font-size: 13px;
1004
+ font-weight: 700;
1005
+ line-height: 1;
1006
+ cursor: pointer;
1007
+ flex-shrink: 0;
1008
+ transition:
1009
+ background 0.18s,
1010
+ border-color 0.18s;
1011
+ }
1012
+ .ab-featured-add-btn:hover,
1013
+ .ab-plist-arrow:hover {
1014
+ background: var(--hd-text, #212a2f);
1015
+ border-color: var(--hd-text, #212a2f);
1016
+ color: var(--hd-bg, #fff);
1017
+ }
1018
+ @media (max-width: 1024px) {
1019
+ .ab-featured-section-title {
1020
+ font-size: 34px;
1021
+ margin-bottom: 14px;
1022
+ }
1023
+ .ab-featured-layout {
1024
+ grid-template-columns: 1fr;
1025
+ gap: 10px;
1026
+ }
1027
+ .ab-featured-hero,
1028
+ .ab-featured-hero img {
1029
+ min-height: 360px;
1030
+ }
1031
+ .ab-featured-hero-title {
1032
+ font-size: 38px;
1033
+ }
1034
+ .ab-featured-hero-subtitle {
1035
+ font-size: 16px;
1036
+ }
1037
+ .ab-featured-grid {
1038
+ grid-template-columns: repeat(2, minmax(0, 1fr));
1039
+ gap: 10px;
1040
+ }
1041
+ .ab-featured-card {
1042
+ min-height: auto;
1043
+ }
1044
+ .ab-featured-name,
1045
+ .ab-featured-price {
1046
+ font-size: 14px;
1047
+ }
1048
+ .ab-featured-add-btn {
1049
+ height: 30px;
1050
+ padding: 0 12px;
1051
+ font-size: 13px;
1052
+ }
1053
+ }
1054
+ @media (max-width: 480px) {
1055
+ .ab-featured-section-title {
1056
+ font-size: 26px;
1057
+ margin-bottom: 12px;
1058
+ }
1059
+ .ab-featured-hero {
1060
+ min-height: 290px;
1061
+ border-radius: 12px;
1062
+ }
1063
+ .ab-featured-hero img {
1064
+ min-height: 290px;
1065
+ }
1066
+ .ab-featured-hero-content {
1067
+ width: calc(100% - 28px);
1068
+ top: 21%;
1069
+ }
1070
+ .ab-featured-hero-title {
1071
+ font-size: 28px;
1072
+ }
1073
+ .ab-featured-hero-subtitle {
1074
+ margin-top: 8px;
1075
+ font-size: 13px;
1076
+ }
1077
+ .ab-featured-hero-cta {
1078
+ right: 10px;
1079
+ bottom: 10px;
1080
+ height: 30px;
1081
+ font-size: 12px;
1082
+ }
1083
+ .ab-featured-grid {
1084
+ grid-template-columns: 1fr;
1085
+ }
1086
+ .ab-featured-card {
1087
+ min-height: auto;
1088
+ border-radius: 12px;
1089
+ }
1090
+ .ab-featured-media {
1091
+ padding: 0;
1092
+ }
1093
+ .ab-featured-info {
1094
+ padding: 8px 12px 12px;
1095
+ }
1096
+ .ab-featured-name {
1097
+ font-size: 13px;
1098
+ }
1099
+ .ab-featured-subtitle {
1100
+ font-size: 11px;
1101
+ }
1102
+ .ab-featured-swatch {
1103
+ width: 20px;
1104
+ height: 20px;
1105
+ }
1106
+ .ab-featured-swatch-more {
1107
+ font-size: 12px;
1108
+ }
1109
+ }
1110
+ .ab-plist {
1111
+ margin: 40px 0;
1112
+ }
1113
+ .ab-plist-header {
1114
+ display: flex;
1115
+ align-items: center;
1116
+ justify-content: space-between;
1117
+ margin-bottom: 20px;
1118
+ }
1119
+ .ab-plist-title {
1120
+ margin: 0;
1121
+ font-size: 18px;
1122
+ font-weight: 700;
1123
+ text-transform: uppercase;
1124
+ letter-spacing: 0.08em;
1125
+ color: var(--hd-text, #212a2f);
1126
+ border-bottom: 2px solid var(--hd-text, #212a2f);
1127
+ padding-bottom: 4px;
1128
+ display: inline-block;
1129
+ }
1130
+ .ab-plist-arrows {
1131
+ display: flex;
1132
+ gap: 8px;
1133
+ }
1134
+ .ab-plist-arrow {
1135
+ width: 40px;
1136
+ height: 40px;
1137
+ border-radius: 50%;
1138
+ border: 1.5px solid rgba(33, 42, 47, 0.35);
1139
+ background: 0 0;
1140
+ cursor: pointer;
1141
+ display: flex;
1142
+ align-items: center;
1143
+ justify-content: center;
1144
+ color: var(--hd-text, #212a2f);
1145
+ transition:
1146
+ background 0.2s,
1147
+ border-color 0.2s;
1148
+ }
1149
+ .ab-plist-arrow svg {
1150
+ width: 20px;
1151
+ height: 20px;
1152
+ }
1153
+ .ab-plist-track {
1154
+ display: flex;
1155
+ gap: 16px;
1156
+ overflow-x: auto;
1157
+ overflow-y: hidden;
1158
+ scroll-snap-type: x mandatory;
1159
+ scroll-behavior: smooth;
1160
+ -webkit-overflow-scrolling: touch;
1161
+ scrollbar-width: none;
1162
+ padding-bottom: 4px;
1163
+ }
1164
+ .ab-plist-track::-webkit-scrollbar {
1165
+ display: none;
1166
+ }
1167
+ .ab-plist-card {
1168
+ position: relative;
1169
+ flex: 0 0 calc(25% - 12px);
1170
+ min-width: 220px;
1171
+ scroll-snap-align: start;
1172
+ display: block;
1173
+ text-decoration: none;
1174
+ color: inherit;
1175
+ border-radius: 14px;
1176
+ overflow: hidden;
1177
+ background: #f5f4f2;
1178
+ transition:
1179
+ transform 0.35s ease,
1180
+ box-shadow 0.35s ease;
1181
+ }
1182
+ .ab-plist-card:hover {
1183
+ transform: translateY(-4px);
1184
+ box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
1185
+ }
1186
+ .ab-plist-badge {
1187
+ position: absolute;
1188
+ top: 10px;
1189
+ left: 10px;
1190
+ z-index: 3;
1191
+ height: 24px;
1192
+ border-radius: 999px;
1193
+ padding: 0 10px;
1194
+ background: #efede8;
1195
+ color: #1f272b;
1196
+ display: inline-flex;
1197
+ align-items: center;
1198
+ justify-content: center;
1199
+ font-size: 11px;
1200
+ font-weight: 700;
1201
+ letter-spacing: 0.06em;
1202
+ }
1203
+ .ab-plist-media {
1204
+ position: relative;
1205
+ overflow: hidden;
1206
+ background: #fff;
1207
+ }
1208
+ .ab-plist-media img {
1209
+ width: 100%;
1210
+ height: auto;
1211
+ object-fit: cover;
1212
+ display: block;
1213
+ transition:
1214
+ opacity 0.45s ease,
1215
+ transform 0.45s ease;
1216
+ }
1217
+ .ab-plist-img-hover {
1218
+ position: absolute;
1219
+ inset: 0;
1220
+ opacity: 0;
1221
+ }
1222
+ .ab-plist-card:hover .ab-plist-img-primary {
1223
+ opacity: 0;
1224
+ transform: scale(1.03);
1225
+ }
1226
+ .ab-plist-card:hover .ab-plist-img-hover {
1227
+ opacity: 1;
1228
+ transform: scale(1.03);
1229
+ }
1230
+ .ab-plist-add-btn {
1231
+ position: absolute;
1232
+ bottom: 10px;
1233
+ right: 10px;
1234
+ z-index: 4;
1235
+ width: 38px;
1236
+ height: 38px;
1237
+ padding: 0;
1238
+ border: 0;
1239
+ border-radius: 50%;
1240
+ background: #fff;
1241
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.13);
1242
+ cursor: pointer;
1243
+ opacity: 0;
1244
+ transform: translateY(6px);
1245
+ transition:
1246
+ opacity 0.25s ease,
1247
+ transform 0.25s ease,
1248
+ background 0.2s ease,
1249
+ box-shadow 0.2s ease;
1250
+ }
1251
+ .ab-pgrid-add-btn::before,
1252
+ .ab-plist-add-btn::before {
1253
+ content: "";
1254
+ display: block;
1255
+ width: 20px;
1256
+ height: 20px;
1257
+ margin: auto;
1258
+ background: #212a2f;
1259
+ -webkit-mask-image: url(https://files.easy-orders.net/1772538329933191621ab-cart.svg);
1260
+ mask-image: url(https://files.easy-orders.net/1772538329933191621ab-cart.svg);
1261
+ -webkit-mask-size: contain;
1262
+ mask-size: contain;
1263
+ -webkit-mask-repeat: no-repeat;
1264
+ mask-repeat: no-repeat;
1265
+ -webkit-mask-position: center;
1266
+ mask-position: center;
1267
+ }
1268
+ .ab-plist-card:hover .ab-plist-add-btn {
1269
+ opacity: 1;
1270
+ transform: translateY(0);
1271
+ }
1272
+ .ab-plist-add-btn:hover {
1273
+ background: #212a2f;
1274
+ box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
1275
+ }
1276
+ .ab-pgrid-add-btn:hover::before,
1277
+ .ab-plist-add-btn:hover::before {
1278
+ background: #fff;
1279
+ }
1280
+ .ab-plist-info {
1281
+ padding: 12px 14px 16px;
1282
+ }
1283
+ .ab-plist-name {
1284
+ margin: 0;
1285
+ color: var(--product-name-text, #212a2f);
1286
+ font-size: 16px;
1287
+ font-weight: 600;
1288
+ text-transform: uppercase;
1289
+ letter-spacing: 0.03em;
1290
+ line-height: 1.3;
1291
+ white-space: nowrap;
1292
+ overflow: hidden;
1293
+ text-overflow: ellipsis;
1294
+ }
1295
+ .ab-plist-subtitle {
1296
+ margin: 4px 0 0;
1297
+ color: rgba(33, 42, 47, 0.7);
1298
+ font-size: 12px;
1299
+ font-weight: 500;
1300
+ line-height: 1.2;
1301
+ }
1302
+ .ab-plist-price {
1303
+ display: block;
1304
+ color: var(--product-price-text, #212a2f);
1305
+ font-size: 16px;
1306
+ font-weight: 600;
1307
+ line-height: 1.2;
1308
+ }
1309
+ .ab-plist-swatches {
1310
+ margin-top: 10px;
1311
+ display: flex;
1312
+ align-items: center;
1313
+ gap: 6px;
1314
+ }
1315
+ .ab-plist-swatch {
1316
+ width: 22px;
1317
+ height: 22px;
1318
+ border-radius: 999px;
1319
+ border: 1.5px solid rgba(0, 0, 0, 0.12);
1320
+ display: inline-flex;
1321
+ overflow: hidden;
1322
+ transition:
1323
+ transform 0.2s ease,
1324
+ box-shadow 0.2s ease;
1325
+ }
1326
+ .ab-plist-swatch:hover {
1327
+ transform: scale(1.2);
1328
+ box-shadow: 0 0 0 2px rgba(33, 42, 47, 0.3);
1329
+ }
1330
+ .ab-pgrid-media img,
1331
+ .ab-plist-swatch-image img {
1332
+ width: 100%;
1333
+ height: 100%;
1334
+ object-fit: cover;
1335
+ display: block;
1336
+ }
1337
+ .ab-plist-actions {
1338
+ display: flex;
1339
+ align-items: center;
1340
+ gap: 1rem;
1341
+ }
1342
+ .ab-plist-viewall-btn {
1343
+ display: inline-flex;
1344
+ align-items: center;
1345
+ height: 40px;
1346
+ padding: 0 1.25rem;
1347
+ font-size: 0.6875rem;
1348
+ font-weight: 600;
1349
+ text-transform: uppercase;
1350
+ letter-spacing: 0.1em;
1351
+ color: var(--hd-text, #212a2f);
1352
+ border: 1.5px solid rgba(33, 42, 47, 0.35);
1353
+ border-radius: 20px;
1354
+ background: 0 0;
1355
+ text-decoration: none;
1356
+ white-space: nowrap;
1357
+ transition:
1358
+ background 0.2s,
1359
+ color 0.2s,
1360
+ border-color 0.2s;
1361
+ }
1362
+ .ab-plist-viewall-btn:hover {
1363
+ background: var(--hd-text, #212a2f);
1364
+ border-color: var(--hd-text, #212a2f);
1365
+ color: var(--hd-bg, #fff);
1366
+ }
1367
+ @media (max-width: 1024px) {
1368
+ .ab-plist {
1369
+ margin: 28px 0;
1370
+ }
1371
+ .ab-plist-card {
1372
+ flex: 0 0 calc(33.333% - 11px);
1373
+ min-width: 200px;
1374
+ }
1375
+ .ab-plist-add-btn {
1376
+ opacity: 1;
1377
+ transform: translateY(0);
1378
+ }
1379
+ }
1380
+ @media (max-width: 480px) {
1381
+ .ab-plist-card {
1382
+ flex: 0 0 65%;
1383
+ min-width: 0;
1384
+ }
1385
+ .ab-plist-arrows {
1386
+ display: none;
1387
+ }
1388
+ .ab-plist-title {
1389
+ font-size: 15px;
1390
+ }
1391
+ }
1392
+ .ab-pgrid {
1393
+ margin: 40px 0;
1394
+ }
1395
+ .ab-pgrid-wrap {
1396
+ display: grid;
1397
+ grid-template-columns: repeat(4, 1fr);
1398
+ gap: 16px;
1399
+ }
1400
+ .ab-pgrid-card {
1401
+ position: relative;
1402
+ display: block;
1403
+ text-decoration: none;
1404
+ color: inherit;
1405
+ border-radius: 14px;
1406
+ overflow: hidden;
1407
+ background: #f5f4f2;
1408
+ transition:
1409
+ transform 0.35s ease,
1410
+ box-shadow 0.35s ease;
1411
+ }
1412
+ .ab-pgrid-card:hover {
1413
+ transform: translateY(-4px);
1414
+ box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
1415
+ }
1416
+ .ab-pgrid-badge {
1417
+ position: absolute;
1418
+ top: 10px;
1419
+ left: 10px;
1420
+ z-index: 3;
1421
+ height: 24px;
1422
+ border-radius: 999px;
1423
+ padding: 0 10px;
1424
+ background: #efede8;
1425
+ color: #1f272b;
1426
+ display: inline-flex;
1427
+ align-items: center;
1428
+ justify-content: center;
1429
+ font-size: 11px;
1430
+ font-weight: 700;
1431
+ letter-spacing: 0.06em;
1432
+ }
1433
+ .ab-pgrid-media {
1434
+ position: relative;
1435
+ overflow: hidden;
1436
+ background: #f5f4f2;
1437
+ }
1438
+ .ab-pgrid-media img {
1439
+ height: auto;
1440
+ object-fit: contain;
1441
+ transition:
1442
+ opacity 0.45s ease,
1443
+ transform 0.45s ease;
1444
+ }
1445
+ .ab-pgrid-img-hover {
1446
+ position: absolute;
1447
+ inset: 0;
1448
+ opacity: 0;
1449
+ }
1450
+ .ab-pgrid-card:hover .ab-pgrid-img-primary {
1451
+ opacity: 0;
1452
+ transform: scale(1.03);
1453
+ }
1454
+ .ab-pgrid-card:hover .ab-pgrid-img-hover {
1455
+ opacity: 1;
1456
+ transform: scale(1.03);
1457
+ }
1458
+ .ab-pgrid-add-btn {
1459
+ position: absolute;
1460
+ bottom: 10px;
1461
+ right: 10px;
1462
+ z-index: 4;
1463
+ width: 38px;
1464
+ height: 38px;
1465
+ padding: 0;
1466
+ border: 0;
1467
+ border-radius: 50%;
1468
+ background: #fff;
1469
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.13);
1470
+ cursor: pointer;
1471
+ opacity: 0;
1472
+ transform: translateY(6px);
1473
+ transition:
1474
+ opacity 0.25s ease,
1475
+ transform 0.25s ease,
1476
+ background 0.2s ease,
1477
+ box-shadow 0.2s ease;
1478
+ }
1479
+ .ab-pgrid-card:hover .ab-pgrid-add-btn {
1480
+ opacity: 1;
1481
+ transform: translateY(0);
1482
+ }
1483
+ .ab-pgrid-add-btn:hover {
1484
+ background: #212a2f;
1485
+ box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
1486
+ }
1487
+ .ab-pgrid-info {
1488
+ padding: 12px 14px 16px;
1489
+ }
1490
+ .ab-pgrid-name {
1491
+ margin: 0;
1492
+ color: var(--product-name-text, #212a2f);
1493
+ font-size: 13px;
1494
+ font-weight: 700;
1495
+ text-transform: uppercase;
1496
+ letter-spacing: 0.03em;
1497
+ line-height: 1.3;
1498
+ white-space: nowrap;
1499
+ overflow: hidden;
1500
+ text-overflow: ellipsis;
1501
+ }
1502
+ .ab-pgrid-subtitle {
1503
+ margin: 2px 0 0;
1504
+ color: rgba(33, 42, 47, 0.7);
1505
+ font-size: 12px;
1506
+ font-weight: 500;
1507
+ line-height: 1.2;
1508
+ }
1509
+ .ab-pgrid-price {
1510
+ display: block;
1511
+ margin-top: 2px;
1512
+ color: var(--product-price-text, #212a2f);
1513
+ font-size: 14px;
1514
+ font-weight: 700;
1515
+ line-height: 1.2;
1516
+ }
1517
+ .ab-pgrid-swatches {
1518
+ margin-top: 8px;
1519
+ display: flex;
1520
+ align-items: center;
1521
+ gap: 5px;
1522
+ }
1523
+ .ab-pgrid-swatch {
1524
+ width: 20px;
1525
+ height: 20px;
1526
+ border-radius: 999px;
1527
+ border: 1.5px solid rgba(0, 0, 0, 0.12);
1528
+ display: inline-flex;
1529
+ overflow: hidden;
1530
+ transition:
1531
+ transform 0.2s ease,
1532
+ box-shadow 0.2s ease;
1533
+ }
1534
+ .ab-pgrid-swatch:hover {
1535
+ transform: scale(1.2);
1536
+ box-shadow: 0 0 0 2px rgba(33, 42, 47, 0.3);
1537
+ }
1538
+ .ab-pgrid-swatch-image img {
1539
+ width: 100%;
1540
+ height: 100%;
1541
+ object-fit: cover;
1542
+ display: block;
1543
+ }
1544
+ .ab-pgrid-swatch-more {
1545
+ font-size: 11px;
1546
+ font-weight: 700;
1547
+ color: rgba(33, 42, 47, 0.6);
1548
+ margin-left: 2px;
1549
+ }
1550
+ .ab-pgrid-hero {
1551
+ position: relative;
1552
+ display: flex;
1553
+ flex-direction: column;
1554
+ justify-content: flex-end;
1555
+ border-radius: 14px;
1556
+ overflow: hidden;
1557
+ text-decoration: none;
1558
+ color: #fff;
1559
+ min-height: 100%;
1560
+ transition:
1561
+ transform 0.35s ease,
1562
+ box-shadow 0.35s ease;
1563
+ }
1564
+ .ab-pgrid-hero:hover {
1565
+ transform: translateY(-4px);
1566
+ box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
1567
+ }
1568
+ .ab-pgrid-hero > img {
1569
+ position: absolute;
1570
+ inset: 0;
1571
+ width: 100%;
1572
+ height: 100%;
1573
+ object-fit: cover;
1574
+ transition: transform 0.5s ease;
1575
+ }
1576
+ .ab-pgrid-hero:hover > img {
1577
+ transform: scale(1.04);
1578
+ }
1579
+ .ab-pgrid-hero-overlay {
1580
+ position: absolute;
1581
+ inset: 0;
1582
+ background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0, transparent 60%);
1583
+ z-index: 1;
1584
+ }
1585
+ .ab-pgrid-hero-content {
1586
+ position: relative;
1587
+ z-index: 2;
1588
+ padding: 20px 20px 0;
1589
+ }
1590
+ .ab-pgrid-hero-cat {
1591
+ margin: 0;
1592
+ font-size: 11px;
1593
+ font-weight: 700;
1594
+ text-transform: uppercase;
1595
+ letter-spacing: 0.12em;
1596
+ opacity: 0.85;
1597
+ }
1598
+ .ab-pgrid-hero-title {
1599
+ font-size: 22px;
1600
+ font-weight: 700;
1601
+ line-height: 1.2;
1602
+ margin: 4px 0 10px;
1603
+ }
1604
+ .ab-pgrid-hero-cta {
1605
+ position: relative;
1606
+ z-index: 2;
1607
+ display: inline-block;
1608
+ margin: 14px 20px 20px;
1609
+ padding: 8px 18px;
1610
+ background: rgba(255, 255, 255, 0.92);
1611
+ color: #1f272b;
1612
+ font-size: 12px;
1613
+ font-weight: 600;
1614
+ letter-spacing: 0.08em;
1615
+ text-transform: uppercase;
1616
+ border-radius: 4px;
1617
+ transition: background 0.2s ease;
1618
+ }
1619
+ .ab-pgrid-hero:hover .ab-pgrid-hero-cta {
1620
+ background: #fff;
1621
+ }
1622
+ @media (max-width: 1024px) {
1623
+ .ab-pgrid-wrap {
1624
+ grid-template-columns: repeat(3, 1fr);
1625
+ }
1626
+ .ab-pgrid-hero {
1627
+ grid-column: span 3;
1628
+ min-height: 220px;
1629
+ }
1630
+ .ab-pgrid-add-btn {
1631
+ opacity: 1;
1632
+ transform: translateY(0);
1633
+ }
1634
+ }
1635
+ @media (max-width: 480px) {
1636
+ .ab-pgrid-wrap {
1637
+ grid-template-columns: repeat(2, 1fr);
1638
+ }
1639
+ .ab-pgrid-hero {
1640
+ grid-column: span 2;
1641
+ min-height: 200px;
1642
+ }
1643
+ .ab-pgrid-hero-title {
1644
+ font-size: 18px;
1645
+ }
1646
+ }
1647
+ .ab-slider {
1648
+ position: relative;
1649
+ width: 100%;
1650
+ overflow: hidden;
1651
+ border-radius: 14px;
1652
+ margin-bottom: 20px;
1653
+ }
1654
+ .ab-slider-track {
1655
+ position: relative;
1656
+ width: 100%;
1657
+ aspect-ratio: 16/7;
1658
+ }
1659
+ .ab-slider-slide {
1660
+ position: absolute;
1661
+ inset: 0;
1662
+ opacity: 0;
1663
+ transition: opacity 0.8s ease;
1664
+ pointer-events: none;
1665
+ }
1666
+ .ab-slider-slide.ab-active {
1667
+ opacity: 1;
1668
+ pointer-events: auto;
1669
+ z-index: 1;
1670
+ }
1671
+ .ab-slider-slide img {
1672
+ width: 100%;
1673
+ height: 100%;
1674
+ object-fit: cover;
1675
+ display: block;
1676
+ }
1677
+ .ab-slider-controls {
1678
+ position: absolute;
1679
+ bottom: 20px;
1680
+ left: 20px;
1681
+ right: 20px;
1682
+ z-index: 5;
1683
+ display: flex;
1684
+ align-items: center;
1685
+ gap: 12px;
1686
+ }
1687
+ .ab-slider-progress {
1688
+ flex: 1;
1689
+ height: 3px;
1690
+ background: rgba(255, 255, 255, 0.3);
1691
+ border-radius: 2px;
1692
+ overflow: hidden;
1693
+ }
1694
+ .ab-slider-progress-bar {
1695
+ display: block;
1696
+ height: 100%;
1697
+ width: 0%;
1698
+ background: #fff;
1699
+ border-radius: 2px;
1700
+ transition: width 0.1s linear;
1701
+ }
1702
+ .ab-slider-pause {
1703
+ background: 0 0;
1704
+ border: 0;
1705
+ padding: 0;
1706
+ cursor: pointer;
1707
+ color: rgba(255, 255, 255, 0.8);
1708
+ width: 24px;
1709
+ height: 24px;
1710
+ display: flex;
1711
+ align-items: center;
1712
+ justify-content: center;
1713
+ flex-shrink: 0;
1714
+ transition: color 0.2s;
1715
+ }
1716
+ .ab-slider-pause:hover {
1717
+ color: #fff;
1718
+ }
1719
+ .ab-slider-pause svg {
1720
+ width: 18px;
1721
+ height: 18px;
1722
+ }
1723
+ .ab-slider-icon-play,
1724
+ .ab-slider.ab-paused .ab-slider-icon-pause {
1725
+ display: none;
1726
+ }
1727
+ .ab-slider.ab-paused .ab-slider-icon-play {
1728
+ display: block;
1729
+ }
1730
+ @media (max-width: 768px) {
1731
+ .ab-slider {
1732
+ margin: 12px 0;
1733
+ border-radius: 10px;
1734
+ }
1735
+ .ab-slider-track {
1736
+ aspect-ratio: 9/14;
1737
+ }
1738
+ .ab-slider-controls {
1739
+ bottom: 14px;
1740
+ left: 14px;
1741
+ right: 14px;
1742
+ }
1743
+ }
1744
+ .ab-pd {
1745
+ padding-bottom: 0px;
1746
+ }
1747
+ .ab-pd-name {
1748
+ margin: 0;
1749
+ font-size: 1.5rem;
1750
+ line-height: 2rem;
1751
+ /* font-family: "inherit", serif; */
1752
+ font-weight: 400;
1753
+ letter-spacing: -0.01em;
1754
+ color: var(--product-name-text, #212a2f);
1755
+ }
1756
+ @media (min-width: 768px) {
1757
+ .ab-pd-name {
1758
+ font-size: 1.875rem;
1759
+ line-height: 2.25rem;
1760
+ order: 1;
1761
+ }
1762
+ }
1763
+ .ab-pd-price-row {
1764
+ display: flex;
1765
+ align-items: baseline;
1766
+ gap: 8px;
1767
+ margin-top: 8px;
1768
+ }
1769
+ .ab-pd-price {
1770
+ font-size: 24px;
1771
+ font-weight: 600;
1772
+ color: var(--product-price-text, #212a2f);
1773
+ }
1774
+ .ab-pd-price-sale {
1775
+ color: var(--product-sale-price-text, #c94a4a);
1776
+ }
1777
+ .ab-pd-price-old {
1778
+ font-size: 17px;
1779
+ font-weight: 500;
1780
+ color: rgba(33, 42, 47, 0.45);
1781
+ text-decoration: line-through;
1782
+ }
1783
+ .ab-pd-rating,
1784
+ .ab-pd-stars {
1785
+ display: flex;
1786
+ align-items: center;
1787
+ }
1788
+ .ab-pd-rating {
1789
+ gap: 6px;
1790
+ margin-top: 10px;
1791
+ }
1792
+ .ab-pd-stars {
1793
+ gap: 1px;
1794
+ }
1795
+ .ab-pd-star {
1796
+ width: 16px;
1797
+ height: 16px;
1798
+ display: block;
1799
+ flex-shrink: 0;
1800
+ background-size: contain;
1801
+ background-repeat: no-repeat;
1802
+ background-position: center;
1803
+ }
1804
+ .ab-pd-star-filled {
1805
+ background-image: url(https://files.easy-orders.net/1772838507170834447ab-star-filled.svg);
1806
+ }
1807
+ .ab-pd-star-half {
1808
+ background-image: url(https://files.easy-orders.net/1772838507171811970ab-star-half.svg);
1809
+ }
1810
+ .ab-pd-star-empty {
1811
+ background-image: url(https://files.easy-orders.net/1772838507171010246ab-star-empty.svg);
1812
+ }
1813
+ .ab-pd-reviews-count {
1814
+ font-size: 13px;
1815
+ font-weight: 500;
1816
+ color: rgba(33, 42, 47, 0.55);
1817
+ }
1818
+ .ab-pd-description {
1819
+ margin: 16px 0 0;
1820
+ font-size: 14px;
1821
+ font-weight: 400;
1822
+ line-height: 1.6;
1823
+ color: rgba(33, 42, 47, 0.78);
1824
+ }
1825
+ .button_variations_container {
1826
+ display: flex !important;
1827
+ flex-wrap: wrap !important;
1828
+ gap: 0.5rem !important;
1829
+ }
1830
+ @media (max-width: 768px) {
1831
+ .ab-pd-price {
1832
+ font-size: 20px;
1833
+ }
1834
+ }
1835
+ .button_variation {
1836
+ min-width: 52px;
1837
+ height: 44px;
1838
+ padding: 0 22px !important;
1839
+ border: 1.5px solid #d4d4d4 !important;
1840
+ border-radius: 0 !important;
1841
+ background: #fff;
1842
+ color: var(--hd-text, #212a2f);
1843
+ font-size: 14px;
1844
+ font-weight: 600;
1845
+ cursor: pointer;
1846
+ overflow: hidden;
1847
+ text-overflow: ellipsis;
1848
+ white-space: nowrap;
1849
+ min-width: 0;
1850
+ transition:
1851
+ border-color 0.2s ease,
1852
+ background 0.2s ease,
1853
+ color 0.2s ease;
1854
+ }
1855
+ .button_variation:hover,
1856
+ .image_variation:hover {
1857
+ border-color: #212a2f;
1858
+ }
1859
+ .button_variation_checked {
1860
+ background: #000 !important;
1861
+ color: #fff !important;
1862
+ border-color: #000 !important;
1863
+ }
1864
+ .color_variation {
1865
+ border-radius: 50% !important;
1866
+ padding: 1px !important;
1867
+ }
1868
+ .color_variation_checked {
1869
+ --tw-ring-shadow: none !important;
1870
+ outline: 1px solid #212a2f !important;
1871
+ outline-offset: 2px;
1872
+ }
1873
+ .color_variation span {
1874
+ width: 2rem !important;
1875
+ height: 2rem !important;
1876
+ border-radius: 50% !important;
1877
+ }
1878
+ .variation_name {
1879
+ font-size: 14px;
1880
+ font-weight: 500 !important;
1881
+ color: rgba(33, 42, 47, 0.78);
1882
+ margin-bottom: 0 !important;
1883
+ line-height: 1 !important;
1884
+ }
1885
+ .image_variation {
1886
+ width: 52px;
1887
+ height: 52px;
1888
+ border: 1.5px solid #d4d4d4;
1889
+ border-radius: 0;
1890
+ background: #fff;
1891
+ cursor: pointer;
1892
+ transition:
1893
+ border-color 0.2s ease,
1894
+ background 0.2s ease,
1895
+ color 0.2s ease;
1896
+ }
1897
+ .image_variation div,
1898
+ .image_variation img {
1899
+ width: 100%;
1900
+ align-items: center;
1901
+ justify-content: center;
1902
+ border-radius: 0;
1903
+ }
1904
+ .image_variation div {
1905
+ height: 100%;
1906
+ display: flex;
1907
+ }
1908
+ .image_variation img {
1909
+ height: 50px;
1910
+ object-fit: cover;
1911
+ }
1912
+ .image_variation span {
1913
+ border-radius: 0;
1914
+ }
1915
+ .image_variation_checked {
1916
+ --tw-ring-shadow: none !important;
1917
+ outline: 1px solid #212a2f !important;
1918
+ outline-offset: 2px;
1919
+ }
1920
+ .ab-gallery {
1921
+ width: 100%;
1922
+ }
1923
+ .ab-gallery-main {
1924
+ position: relative;
1925
+ border-radius: 0.75rem;
1926
+ overflow: hidden;
1927
+ background: #f0eeea;
1928
+ background-size: 400% 100%;
1929
+ cursor: zoom-in;
1930
+ min-height: 300px;
1931
+ }
1932
+ .ab-gallery-main-media {
1933
+ width: 100%;
1934
+ min-height: 300px;
1935
+ display: block;
1936
+ object-fit: contain;
1937
+ background: #f5f4f2;
1938
+ }
1939
+ .ab-gallery-zoom {
1940
+ position: absolute;
1941
+ bottom: 14px;
1942
+ right: 14px;
1943
+ z-index: 3;
1944
+ width: 40px;
1945
+ height: 40px;
1946
+ border-radius: 50%;
1947
+ border: 0;
1948
+ background: rgba(255, 255, 255, 0.9);
1949
+ backdrop-filter: blur(6px);
1950
+ -webkit-backdrop-filter: blur(6px);
1951
+ color: #1f272b;
1952
+ cursor: zoom-in;
1953
+ display: flex;
1954
+ align-items: center;
1955
+ justify-content: center;
1956
+ opacity: 0;
1957
+ transform: scale(0.85);
1958
+ transition:
1959
+ opacity 0.25s ease,
1960
+ transform 0.25s ease,
1961
+ background 0.2s ease;
1962
+ pointer-events: auto;
1963
+ }
1964
+ .ab-gallery-zoom span {
1965
+ font-size: 24px;
1966
+ font-weight: 300;
1967
+ line-height: 1;
1968
+ }
1969
+ .ab-gallery-main:hover .ab-gallery-zoom {
1970
+ opacity: 1;
1971
+ transform: scale(1);
1972
+ }
1973
+ .ab-gallery-zoom:hover {
1974
+ background: #fff;
1975
+ }
1976
+ .ab-gallery-thumbs {
1977
+ display: flex;
1978
+ gap: 8px;
1979
+ margin-top: 8px;
1980
+ flex-wrap: wrap;
1981
+ }
1982
+ .ab-gallery-thumb {
1983
+ flex: 0 0 calc(50% - 4px);
1984
+ padding: 0;
1985
+ border: 2px solid transparent;
1986
+ border-radius: 14px;
1987
+ overflow: hidden;
1988
+ background: #f5f4f2;
1989
+ cursor: pointer;
1990
+ transition:
1991
+ border-color 0.25s ease,
1992
+ transform 0.25s ease;
1993
+ }
1994
+ .ab-gallery-thumb.ab-active {
1995
+ border-color: var(--hd-text, #212a2f);
1996
+ }
1997
+ .ab-gallery-thumb:not(.ab-active):hover {
1998
+ transform: scale(0.97);
1999
+ }
2000
+ .ab-gallery-thumb img,
2001
+ .ab-gallery-thumb video {
2002
+ width: 100%;
2003
+ height: 100%;
2004
+ display: block;
2005
+ object-fit: cover;
2006
+ aspect-ratio: 1;
2007
+ }
2008
+ .ab-lightbox {
2009
+ display: none;
2010
+ position: fixed;
2011
+ inset: 0;
2012
+ z-index: 9999;
2013
+ align-items: center;
2014
+ justify-content: center;
2015
+ }
2016
+ .ab-lightbox.ab-open {
2017
+ display: flex;
2018
+ }
2019
+ .ab-lightbox-backdrop {
2020
+ position: absolute;
2021
+ inset: 0;
2022
+ background: rgba(0, 0, 0, 0.88);
2023
+ cursor: default;
2024
+ }
2025
+ .ab-lightbox-body,
2026
+ .ab-lightbox-close {
2027
+ display: flex;
2028
+ align-items: center;
2029
+ justify-content: center;
2030
+ }
2031
+ .ab-lightbox-close {
2032
+ position: absolute;
2033
+ top: 16px;
2034
+ right: 16px;
2035
+ z-index: 3;
2036
+ width: 44px;
2037
+ height: 44px;
2038
+ border-radius: 50%;
2039
+ border: 0;
2040
+ background: rgba(255, 255, 255, 0.12);
2041
+ color: #fff;
2042
+ font-size: 28px;
2043
+ font-weight: 300;
2044
+ line-height: 1;
2045
+ cursor: pointer;
2046
+ transition: background 0.2s ease;
2047
+ }
2048
+ .ab-lightbox-arrow:hover,
2049
+ .ab-lightbox-close:hover {
2050
+ background: rgba(255, 255, 255, 0.25);
2051
+ }
2052
+ .ab-lightbox-body {
2053
+ position: relative;
2054
+ z-index: 2;
2055
+ max-width: 90vw;
2056
+ max-height: 90vh;
2057
+ pointer-events: none;
2058
+ }
2059
+ .ab-lightbox-img {
2060
+ max-width: 90vw;
2061
+ max-height: 88vh;
2062
+ object-fit: contain;
2063
+ border-radius: 8px;
2064
+ user-select: none;
2065
+ -webkit-user-select: none;
2066
+ pointer-events: auto;
2067
+ }
2068
+ .ab-lightbox-arrow {
2069
+ position: absolute;
2070
+ top: 50%;
2071
+ transform: translateY(-50%);
2072
+ z-index: 3;
2073
+ width: 44px;
2074
+ height: 44px;
2075
+ border-radius: 50%;
2076
+ border: 0;
2077
+ background: rgba(255, 255, 255, 0.12);
2078
+ color: #fff;
2079
+ cursor: pointer;
2080
+ display: flex;
2081
+ align-items: center;
2082
+ justify-content: center;
2083
+ transition: background 0.2s ease;
2084
+ }
2085
+ .ab-lightbox-arrow svg {
2086
+ width: 22px;
2087
+ height: 22px;
2088
+ }
2089
+ .ab-lightbox-prev {
2090
+ left: 16px;
2091
+ }
2092
+ .ab-lightbox-next {
2093
+ right: 16px;
2094
+ }
2095
+ .ab-lightbox-counter {
2096
+ position: absolute;
2097
+ bottom: 20px;
2098
+ left: 50%;
2099
+ transform: translateX(-50%);
2100
+ z-index: 3;
2101
+ color: rgba(255, 255, 255, 0.7);
2102
+ font-size: 13px;
2103
+ font-weight: 500;
2104
+ letter-spacing: 0.08em;
2105
+ }
2106
+ @media (min-width: 769px) and (max-width: 1024px) {
2107
+ .ab-gallery-thumb {
2108
+ flex: 0 0 calc(33.333% - 6px);
2109
+ }
2110
+ }
2111
+ @media (max-width: 768px) {
2112
+ .ab-gallery-main {
2113
+ border-radius: 12px;
2114
+ }
2115
+ .ab-gallery-zoom {
2116
+ opacity: 1;
2117
+ transform: scale(1);
2118
+ width: 34px;
2119
+ height: 34px;
2120
+ bottom: 10px;
2121
+ right: 10px;
2122
+ }
2123
+ .ab-gallery-zoom span {
2124
+ font-size: 20px;
2125
+ }
2126
+ .ab-gallery-thumbs {
2127
+ flex-wrap: nowrap;
2128
+ overflow-x: auto;
2129
+ scrollbar-width: none;
2130
+ -webkit-overflow-scrolling: touch;
2131
+ padding-bottom: 2px;
2132
+ }
2133
+ .ab-gallery-thumbs::-webkit-scrollbar {
2134
+ display: none;
2135
+ }
2136
+ .ab-gallery-thumb {
2137
+ flex: 0 0 72px;
2138
+ border-radius: 10px;
2139
+ }
2140
+ .ab-lightbox-arrow {
2141
+ width: 36px;
2142
+ height: 36px;
2143
+ }
2144
+ .ab-lightbox-arrow svg {
2145
+ width: 18px;
2146
+ height: 18px;
2147
+ }
2148
+ .ab-lightbox-prev {
2149
+ left: 10px;
2150
+ }
2151
+ .ab-lightbox-next {
2152
+ right: 10px;
2153
+ }
2154
+ }
2155
+ .ab-cat-card,
2156
+ .ab-featured-hero,
2157
+ .ab-featured-media,
2158
+ .ab-pgrid-hero,
2159
+ .ab-pgrid-media,
2160
+ .ab-plist-media,
2161
+ .ab-slider-slide {
2162
+ background: #fff;
2163
+ background-size: 400% 100%;
2164
+ }
2165
+ .ab-featured-media img,
2166
+ .ab-pgrid-media img,
2167
+ .ab-plist-media img {
2168
+ min-height: 220px;
2169
+ }
2170
+ @media (max-width: 480px) {
2171
+ .ab-featured-media img,
2172
+ .ab-pgrid-media img,
2173
+ .ab-plist-media img {
2174
+ min-height: 160px;
2175
+ }
2176
+ }
2177
+ .ab-footer {
2178
+ background: var(--ft-bg, #000);
2179
+ color: var(--ft-text, #fff);
2180
+ margin-top: 40px;
2181
+ }
2182
+ .ab-footer-inner {
2183
+ max-width: 1280px;
2184
+ margin: 0 auto;
2185
+ padding: 48px 24px 32px;
2186
+ display: flex;
2187
+ justify-content: space-between;
2188
+ gap: 40px;
2189
+ flex-wrap: wrap;
2190
+ }
2191
+ .ab-footer-columns {
2192
+ display: flex;
2193
+ gap: 60px;
2194
+ flex-wrap: wrap;
2195
+ }
2196
+ .ab-footer-col {
2197
+ min-width: 140px;
2198
+ }
2199
+ .ab-footer-heading {
2200
+ margin: 0 0 16px;
2201
+ font-size: 11px;
2202
+ font-weight: 700;
2203
+ text-transform: uppercase;
2204
+ letter-spacing: 0.14em;
2205
+ opacity: 0.5;
2206
+ }
2207
+ .ab-footer-links {
2208
+ list-style: none;
2209
+ margin: 0;
2210
+ padding: 0;
2211
+ }
2212
+ .ab-footer-links li {
2213
+ margin-bottom: 10px;
2214
+ }
2215
+ .ab-footer-links a {
2216
+ font-size: 13px;
2217
+ font-weight: 400;
2218
+ transition: opacity 0.2s;
2219
+ }
2220
+ .ab-footer-links a:hover {
2221
+ opacity: 0.7;
2222
+ }
2223
+ .ab-footer-brand {
2224
+ display: flex;
2225
+ flex-direction: column;
2226
+ gap: 1.25rem;
2227
+ }
2228
+ .ab-footer-links a,
2229
+ .ab-footer-logo {
2230
+ text-decoration: none;
2231
+ color: var(--ft-text, #fff);
2232
+ }
2233
+ .ab-footer-logo {
2234
+ display: inline-block;
2235
+ }
2236
+ .ab-footer-logo img {
2237
+ max-height: 40px;
2238
+ width: auto;
2239
+ }
2240
+ .ab-footer-logo-text {
2241
+ font-size: 1.25rem;
2242
+ font-weight: 700;
2243
+ letter-spacing: 0.04em;
2244
+ text-transform: uppercase;
2245
+ }
2246
+ .ab-footer-contact {
2247
+ display: flex;
2248
+ flex-direction: column;
2249
+ gap: 0.625rem;
2250
+ }
2251
+ .ab-footer-contact-item,
2252
+ .ab-footer-social-icons a {
2253
+ display: flex;
2254
+ align-items: center;
2255
+ color: var(--ft-text, #fff);
2256
+ }
2257
+ .ab-footer-contact-item {
2258
+ gap: 0.5rem;
2259
+ font-size: 13px;
2260
+ text-decoration: none;
2261
+ }
2262
+ a.ab-footer-contact-item:hover {
2263
+ opacity: 0.9;
2264
+ }
2265
+ .ab-footer-contact-icon {
2266
+ display: inline-block;
2267
+ width: 16px;
2268
+ height: 16px;
2269
+ min-width: 16px;
2270
+ background-repeat: no-repeat;
2271
+ background-position: center;
2272
+ background-size: contain;
2273
+ filter: brightness(0) invert(1);
2274
+ opacity: 0.8;
2275
+ }
2276
+ .ab-fci-phone {
2277
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23000' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M2.25 6.75c0 8.284 6.716 15 15 15h2.25a2.25 2.25 0 002.25-2.25v-1.372c0-.516-.351-.966-.852-1.091l-4.423-1.106c-.44-.11-.902.055-1.173.417l-.97 1.293c-.282.376-.769.542-1.21.38a12.035 12.035 0 01-7.143-7.143c-.162-.441.004-.928.38-1.21l1.293-.97c.363-.271.527-.734.417-1.173L6.963 3.102a1.125 1.125 0 00-1.091-.852H4.5A2.25 2.25 0 002.25 4.5v2.25z'/%3E%3C/svg%3E");
2278
+ }
2279
+ .ab-fci-email {
2280
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23000' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M21.75 6.75v10.5a2.25 2.25 0 01-2.25 2.25h-15a2.25 2.25 0 01-2.25-2.25V6.75m19.5 0A2.25 2.25 0 0019.5 4.5h-15a2.25 2.25 0 00-2.25 2.25m19.5 0v.243a2.25 2.25 0 01-1.07 1.916l-7.5 4.615a2.25 2.25 0 01-2.36 0L3.32 8.91a2.25 2.25 0 01-1.07-1.916V6.75'/%3E%3C/svg%3E");
2281
+ }
2282
+ .ab-fci-address {
2283
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23000' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M15 10.5a3 3 0 11-6 0 3 3 0 016 0z'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 10.5c0 7.142-7.5 11.25-7.5 11.25S4.5 17.642 4.5 10.5a7.5 7.5 0 1115 0z'/%3E%3C/svg%3E");
2284
+ }
2285
+ .ab-footer-social {
2286
+ display: flex;
2287
+ flex-direction: column;
2288
+ align-items: flex-start;
2289
+ }
2290
+ .ab-footer-social-label {
2291
+ margin: 0 0 14px;
2292
+ font-size: 11px;
2293
+ font-weight: 700;
2294
+ text-transform: uppercase;
2295
+ letter-spacing: 0.14em;
2296
+ opacity: 0.5;
2297
+ }
2298
+ .ab-footer-social-icons {
2299
+ display: flex;
2300
+ gap: 10px;
2301
+ }
2302
+ .ab-footer-social-icons a {
2303
+ width: 34px;
2304
+ height: 34px;
2305
+ border-radius: 50%;
2306
+ border: 1px solid var(--ft-text, #fff);
2307
+ opacity: 0.7;
2308
+ justify-content: center;
2309
+ color: var(--ft-text, #fff);
2310
+ }
2311
+ .ab-footer-social-icons a:hover {
2312
+ opacity: 1;
2313
+ }
2314
+ .ab-footer-social-icons svg {
2315
+ width: 16px;
2316
+ height: 16px;
2317
+ fill: var(--ft-text, #fff);
2318
+ stroke: var(--ft-text, #fff);
2319
+ }
2320
+ .ab-footer-social-img {
2321
+ display: inline-block;
2322
+ width: 16px;
2323
+ height: 16px;
2324
+ background-color: var(--ft-text, #fff);
2325
+ -webkit-mask-size: contain;
2326
+ mask-size: contain;
2327
+ -webkit-mask-repeat: no-repeat;
2328
+ mask-repeat: no-repeat;
2329
+ -webkit-mask-position: center;
2330
+ mask-position: center;
2331
+ }
2332
+ .ab-footer-payment {
2333
+ margin-block: 1.25rem;
2334
+ display: flex;
2335
+ justify-content: center;
2336
+ }
2337
+ .ab-footer-payment img {
2338
+ max-height: 95px;
2339
+ width: auto;
2340
+ }
2341
+ .ab-footer-bottom {
2342
+ padding: 16px 24px;
2343
+ text-align: center;
2344
+ }
2345
+ .ab-footer-copy {
2346
+ margin: 0;
2347
+ font-size: 12px;
2348
+ }
2349
+ .ab-footer-powered {
2350
+ margin: 8px 0 0;
2351
+ font-size: 12px;
2352
+ }
2353
+ .ab-footer-powered a {
2354
+ color: #34d399;
2355
+ text-decoration: none;
2356
+ font-weight: 600;
2357
+ }
2358
+ .ab-footer-powered a:hover {
2359
+ text-decoration: underline;
2360
+ }
2361
+ .ab-footer-right {
2362
+ display: flex;
2363
+ flex-direction: column;
2364
+ gap: 28px;
2365
+ min-width: 320px;
2366
+ flex: 1;
2367
+ max-width: 420px;
2368
+ }
2369
+ .ab-footer-subscribe-form {
2370
+ display: flex;
2371
+ gap: 0;
2372
+ }
2373
+ .ab-footer-subscribe-input {
2374
+ flex: 1;
2375
+ height: 40px;
2376
+ padding: 0 12px;
2377
+ font-size: 13px;
2378
+ color: #fff;
2379
+ background: transparent;
2380
+ border: 1px solid rgba(255, 255, 255, 0.3);
2381
+ border-radius: 0;
2382
+ outline: none;
2383
+ transition: border-color 0.2s;
2384
+ }
2385
+ .ab-footer-subscribe-input::placeholder {
2386
+ color: rgba(255, 255, 255, 0.4);
2387
+ }
2388
+ .ab-footer-subscribe-input:focus {
2389
+ border-color: rgba(255, 255, 255, 0.7);
2390
+ }
2391
+ .ab-footer-subscribe-btn {
2392
+ width: 40px;
2393
+ height: 40px;
2394
+ display: flex;
2395
+ align-items: center;
2396
+ justify-content: center;
2397
+ background: var(--ft-text, #fff);
2398
+ border: none;
2399
+ cursor: pointer;
2400
+ flex-shrink: 0;
2401
+ transition: opacity 0.2s;
2402
+ }
2403
+ .ab-footer-subscribe-btn svg {
2404
+ width: 18px;
2405
+ height: 18px;
2406
+ stroke: var(--ft-bg, #000);
2407
+ }
2408
+ .ab-footer-subscribe-btn:hover {
2409
+ opacity: 0.85;
2410
+ }
2411
+ .ab-footer-subscribe-msg {
2412
+ margin: 8px 0 0;
2413
+ font-size: 12px;
2414
+ color: #34d399;
2415
+ }
2416
+ .ab-footer-subscribe-msg[data-error] {
2417
+ color: #f87171;
2418
+ }
2419
+ @media (max-width: 768px) {
2420
+ .ab-footer-inner {
2421
+ flex-direction: column;
2422
+ padding: 32px 20px 24px;
2423
+ gap: 32px;
2424
+ }
2425
+ .ab-footer-columns {
2426
+ flex-direction: column;
2427
+ gap: 32px;
2428
+ }
2429
+ .ab-footer-payment {
2430
+ display: flex;
2431
+ justify-content: center;
2432
+ width: 100%;
2433
+ }
2434
+ }
2435
+ .add_to_cart_btn {
2436
+ background: var(--crt-btn-bg, #fff);
2437
+ color: var(--crt-btn-text, #212a2f);
2438
+ border: 1px solid var(--crt-btn-border, #212a2f);
2439
+ border-radius: 1.5rem;
2440
+ flex: 1;
2441
+ padding-block: 0.5rem;
2442
+ }
2443
+ .quantity_btn_container {
2444
+ border-radius: 1.5rem;
2445
+ gap: 0.5rem;
2446
+ border: 1px solid var(--crt-btn-border, #212a2f);
2447
+ margin: 0 !important;
2448
+ }
2449
+ .add_to_cart_btn:hover {
2450
+ background: var(--crt-btn-text, #212a2f);
2451
+ color: var(--crt-btn-bg, #fff);
2452
+ }
2453
+ .checkout_btn,
2454
+ .checkout_btn:hover {
2455
+ background: var(--buy-btn-bg, #212a2f);
2456
+ }
2457
+ .checkout_btn {
2458
+ color: var(--buy-btn-text, #fff);
2459
+ border: 1px solid var(--buy-btn-border, #212a2f);
2460
+ border-radius: 1.5rem;
2461
+ font-weight: 500;
2462
+ font-size: 1rem;
2463
+ flex: 1;
2464
+ padding-block: 0.5rem;
2465
+ }
2466
+ .checkout_btn:hover {
2467
+ opacity: 0.88;
2468
+ }
2469
+ .ab-reviews {
2470
+ max-width: 1420px;
2471
+ margin: 2.5rem auto;
2472
+ padding: 0 1rem;
2473
+ }
2474
+ .ab-reviews-header {
2475
+ margin-bottom: 2rem;
2476
+ }
2477
+ .ab-reviews-title {
2478
+ font-size: 1.5rem;
2479
+ font-weight: 700;
2480
+ color: var(--hd-text, #212a2f);
2481
+ margin: 0 0 0.75rem;
2482
+ }
2483
+ .ab-reviews-summary {
2484
+ display: flex;
2485
+ align-items: center;
2486
+ gap: 0.5rem;
2487
+ margin-bottom: 1rem;
2488
+ }
2489
+ .ab-reviews-avg-stars {
2490
+ display: flex;
2491
+ align-items: center;
2492
+ gap: 2px;
2493
+ }
2494
+ .ab-reviews-count {
2495
+ font-size: 14px;
2496
+ color: rgba(33, 42, 47, 0.6);
2497
+ }
2498
+ .ab-reviews-write-btn {
2499
+ display: inline-flex;
2500
+ align-items: center;
2501
+ justify-content: center;
2502
+ padding: 0.5rem 1.5rem;
2503
+ font-size: 14px;
2504
+ font-weight: 600;
2505
+ border: 1.5px solid var(--hd-text, #212a2f);
2506
+ color: var(--hd-text, #212a2f);
2507
+ background: 0 0;
2508
+ border-radius: 2rem;
2509
+ cursor: pointer;
2510
+ transition:
2511
+ background 0.2s,
2512
+ color 0.2s;
2513
+ }
2514
+ .ab-reviews-write-btn:hover {
2515
+ background: var(--hd-text, #212a2f);
2516
+ color: #fff;
2517
+ }
2518
+ .ab-reviews-list {
2519
+ display: flex;
2520
+ flex-direction: column;
2521
+ gap: 1rem;
2522
+ }
2523
+ .ab-review-card {
2524
+ background: #fff;
2525
+ border-radius: 0.75rem;
2526
+ padding: 1.5rem;
2527
+ box-shadow:
2528
+ 0 1px 3px rgba(0, 0, 0, 0.06),
2529
+ 0 1px 2px rgba(0, 0, 0, 0.04);
2530
+ }
2531
+ .ab-review-stars {
2532
+ display: flex;
2533
+ align-items: center;
2534
+ gap: 2px;
2535
+ margin-bottom: 0.5rem;
2536
+ }
2537
+ .ab-review-author {
2538
+ font-size: 15px;
2539
+ font-weight: 700;
2540
+ color: var(--hd-text, #212a2f);
2541
+ margin: 0 0 0.5rem;
2542
+ text-transform: uppercase;
2543
+ letter-spacing: 0.02em;
2544
+ }
2545
+ .ab-review-comment {
2546
+ font-size: 14px;
2547
+ line-height: 1.6;
2548
+ color: rgba(33, 42, 47, 0.75);
2549
+ margin: 0;
2550
+ overflow: hidden;
2551
+ display: -webkit-box;
2552
+ -webkit-line-clamp: 4;
2553
+ -webkit-box-orient: vertical;
2554
+ }
2555
+ .ab-review-comment.ab-review-expanded {
2556
+ -webkit-line-clamp: unset;
2557
+ display: block;
2558
+ }
2559
+ .ab-review-read-more {
2560
+ display: none;
2561
+ background: 0 0;
2562
+ border: 0;
2563
+ padding: 0;
2564
+ margin-top: 0.25rem;
2565
+ font-size: 13px;
2566
+ font-weight: 600;
2567
+ color: var(--hd-text, #212a2f);
2568
+ cursor: pointer;
2569
+ text-decoration: none;
2570
+ }
2571
+ .ab-review-read-more:hover {
2572
+ text-decoration: underline;
2573
+ }
2574
+ .ab-review-read-more.ab-visible {
2575
+ display: inline;
2576
+ }
2577
+ .ab-review-image {
2578
+ margin-top: 0.75rem;
2579
+ width: 100px;
2580
+ height: 140px;
2581
+ object-fit: cover;
2582
+ border-radius: 0.5rem;
2583
+ border: 1px solid rgba(0, 0, 0, 0.06);
2584
+ }
2585
+ .ab-reviews-empty {
2586
+ text-align: center;
2587
+ color: rgba(33, 42, 47, 0.5);
2588
+ font-size: 15px;
2589
+ padding: 2rem 0;
2590
+ }
2591
+ .ab-review-modal {
2592
+ display: none;
2593
+ position: fixed;
2594
+ inset: 0;
2595
+ z-index: 9999;
2596
+ align-items: center;
2597
+ justify-content: center;
2598
+ }
2599
+ .ab-review-modal.ab-review-modal-open {
2600
+ display: flex;
2601
+ }
2602
+ .ab-review-modal-backdrop {
2603
+ position: absolute;
2604
+ inset: 0;
2605
+ background: rgba(0, 0, 0, 0.45);
2606
+ }
2607
+ .ab-review-modal-content {
2608
+ position: relative;
2609
+ background: #fff;
2610
+ border-radius: 0.75rem;
2611
+ width: 90%;
2612
+ max-width: 420px;
2613
+ padding: 1.5rem;
2614
+ box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
2615
+ }
2616
+ .ab-review-modal-header {
2617
+ display: flex;
2618
+ align-items: center;
2619
+ justify-content: space-between;
2620
+ margin-bottom: 1.25rem;
2621
+ }
2622
+ .ab-review-modal-header h3 {
2623
+ font-size: 18px;
2624
+ font-weight: 700;
2625
+ color: var(--hd-text, #212a2f);
2626
+ margin: 0;
2627
+ }
2628
+ .ab-review-modal-close {
2629
+ background: 0 0;
2630
+ border: 0;
2631
+ font-size: 24px;
2632
+ color: rgba(33, 42, 47, 0.5);
2633
+ cursor: pointer;
2634
+ padding: 0;
2635
+ line-height: 1;
2636
+ }
2637
+ .ab-review-modal-body {
2638
+ display: flex;
2639
+ flex-direction: column;
2640
+ gap: 0.75rem;
2641
+ }
2642
+ .ab-review-rating-select {
2643
+ display: flex;
2644
+ gap: 4px;
2645
+ margin-bottom: 0.25rem;
2646
+ }
2647
+ .ab-review-rating-star {
2648
+ background: 0 0;
2649
+ border: 0;
2650
+ cursor: pointer;
2651
+ padding: 2px;
2652
+ }
2653
+ .ab-review-rating-star .ab-pd-star {
2654
+ width: 24px;
2655
+ height: 24px;
2656
+ }
2657
+ .ab-review-input {
2658
+ width: 100%;
2659
+ padding: 0.625rem 0.875rem;
2660
+ border: 1.5px solid rgba(0, 0, 0, 0.12);
2661
+ border-radius: 0.5rem;
2662
+ font-size: 14px;
2663
+ color: #212a2f;
2664
+ outline: 0;
2665
+ transition: border-color 0.2s;
2666
+ box-sizing: border-box;
2667
+ }
2668
+ .ab-review-input:focus {
2669
+ border-color: var(--hd-text, #212a2f);
2670
+ }
2671
+ .ab-review-textarea {
2672
+ min-height: 100px;
2673
+ resize: vertical;
2674
+ }
2675
+ .ab-review-submit-btn {
2676
+ width: 100%;
2677
+ padding: 0.625rem;
2678
+ background: var(--hd-text, #212a2f);
2679
+ color: #fff;
2680
+ border: 0;
2681
+ border-radius: 2rem;
2682
+ font-size: 15px;
2683
+ font-weight: 600;
2684
+ cursor: pointer;
2685
+ transition: opacity 0.2s;
2686
+ }
2687
+ .ab-review-submit-btn:hover {
2688
+ opacity: 0.88;
2689
+ }
2690
+ @media (max-width: 768px) {
2691
+ .ab-reviews {
2692
+ padding: 0 0.75rem;
2693
+ margin: 1.5rem auto;
2694
+ }
2695
+ .ab-reviews-title {
2696
+ font-size: 1.25rem;
2697
+ }
2698
+ .ab-review-card {
2699
+ padding: 1.25rem;
2700
+ }
2701
+ }
2702
+ .checkout_bg_left.checkout_bg_left {
2703
+ background: #f5f4f2 !important;
2704
+ }
2705
+ .checkout_bg_right.checkout_bg_right,
2706
+ .checkout_order_summary.checkout_order_summary {
2707
+ background: #fff !important;
2708
+ }
2709
+ .checkout_container,
2710
+ .checkout_order_summary {
2711
+ padding-top: 80px;
2712
+ }
2713
+ .checkout_form div.bg-white {
2714
+ margin-top: 0 !important;
2715
+ }
2716
+ .checkout_order_summary h2 {
2717
+ font-size: 1.25rem !important;
2718
+ font-weight: 700 !important;
2719
+ color: var(--checkout-heading-text, #212a2f) !important;
2720
+ letter-spacing: -0.01em;
2721
+ }
2722
+ .checkout_cart_items_container.checkout_cart_items_container {
2723
+ border-color: rgba(0, 0, 0, 0.08) !important;
2724
+ }
2725
+ .checkout_form {
2726
+ background: var(--checkout-form-bg, #f5f4f2) !important;
2727
+ }
2728
+ @media (min-width: 1024px) {
2729
+ .checkout_order_summary.checkout_order_summary {
2730
+ background: 0 0 !important;
2731
+ }
2732
+ }
2733
+ .product_form_checkout.product_form_checkout {
2734
+ background: var(--checkout-form-bg, #f5f4f2) !important;
2735
+ border-radius: 1rem !important;
2736
+ border: 0 !important;
2737
+ padding: 1.75rem 1.5rem !important;
2738
+ margin-top: 1.5rem !important;
2739
+ box-shadow:
2740
+ 0 0 0 1px rgba(0, 0, 0, 0.06),
2741
+ 0 4px 16px rgba(0, 0, 0, 0.04) !important;
2742
+ }
2743
+ .checkout_form .contact-info-heading h2,
2744
+ .product_form_checkout p.text-lg {
2745
+ font-size: 1.1rem !important;
2746
+ font-weight: 700 !important;
2747
+ color: var(--checkout-heading-text, #212a2f) !important;
2748
+ margin-bottom: 0.25rem !important;
2749
+ }
2750
+ .checkout_form label,
2751
+ .product_form_checkout label {
2752
+ font-size: 12px !important;
2753
+ font-weight: 600 !important;
2754
+ color: rgba(33, 42, 47, 0.55) !important;
2755
+ text-transform: uppercase;
2756
+ letter-spacing: 0.04em;
2757
+ }
2758
+ .checkout_form .quantity_container,
2759
+ .product_form_checkout .quantity_container {
2760
+ display: inline-flex !important;
2761
+ align-items: center !important;
2762
+ background: #f5f4f2 !important;
2763
+ border-radius: 2rem !important;
2764
+ padding: 0.25rem !important;
2765
+ gap: 0 !important;
2766
+ }
2767
+ .checkout_form .quantity_btn,
2768
+ .product_form_checkout .quantity_btn {
2769
+ border-radius: 50% !important;
2770
+ border: 0 !important;
2771
+ background: 0 0 !important;
2772
+ width: 36px !important;
2773
+ height: 36px !important;
2774
+ display: flex !important;
2775
+ align-items: center !important;
2776
+ justify-content: center !important;
2777
+ padding: 0 !important;
2778
+ margin: 0 !important;
2779
+ transition: background 0.15s;
2780
+ }
2781
+ .checkout_form .quantity_btn:hover,
2782
+ .product_form_checkout .quantity_btn:hover {
2783
+ background: rgba(0, 0, 0, 0.06) !important;
2784
+ }
2785
+ .checkout_form .quantity_btn:active,
2786
+ .product_form_checkout .quantity_btn:active {
2787
+ background: rgba(0, 0, 0, 0.1) !important;
2788
+ }
2789
+ .checkout_form .quantity_container p,
2790
+ .product_form_checkout .quantity_container p {
2791
+ min-width: 2rem !important;
2792
+ text-align: center !important;
2793
+ font-weight: 600 !important;
2794
+ font-size: 15px !important;
2795
+ color: var(--hd-text, #212a2f) !important;
2796
+ }
2797
+ .checkout_form .global_input:not(.border-red-500),
2798
+ .checkout_form .global_textarea:not(.border-red-500),
2799
+ .global_input:not(.border-red-500),
2800
+ .global_textarea:not(.border-red-500),
2801
+ .product_form_checkout .global_input:not(.border-red-500),
2802
+ .product_form_checkout .global_textarea:not(.border-red-500) {
2803
+ border: 1.5px solid var(--input-border, rgba(0, 0, 0, 0.08));
2804
+ background: var(--input-bg, #fff);
2805
+ }
2806
+ .checkout_form .global_input,
2807
+ .checkout_form .global_textarea,
2808
+ .global_input,
2809
+ .global_textarea,
2810
+ .product_form_checkout .global_input,
2811
+ .product_form_checkout .global_textarea {
2812
+ border-radius: 0.75rem !important;
2813
+ transition:
2814
+ border-color 0.2s,
2815
+ background 0.2s;
2816
+ font-size: 14px !important;
2817
+ padding: 0.75rem 1rem !important;
2818
+ width: 100%;
2819
+ color: var(--input-text, #212a2f) !important;
2820
+ }
2821
+ .checkout_form .global_input:focus:not(.border-red-500),
2822
+ .checkout_form .global_textarea:focus:not(.border-red-500),
2823
+ .product_form_checkout .global_input:focus:not(.border-red-500),
2824
+ .product_form_checkout .global_textarea:focus:not(.border-red-500) {
2825
+ background: var(--input-bg, #fff);
2826
+ border-color: var(--input-border, rgba(0, 0, 0, 0.08));
2827
+ outline: 0;
2828
+ }
2829
+ .checkout_form .select__control,
2830
+ .product_form_checkout .select__control {
2831
+ border-radius: 0.75rem !important;
2832
+ border: 1.5px solid var(--input-border, rgba(0, 0, 0, 0.08)) !important;
2833
+ background: var(--input-bg, #fff) !important;
2834
+ min-height: 44px !important;
2835
+ }
2836
+ .checkout_form input[name="full_name"],
2837
+ .checkout_form input[name="full_name"]:focus,
2838
+ .product_form_checkout input[name="full_name"],
2839
+ .product_form_checkout input[name="full_name"]:focus {
2840
+ background-image: url(https://files.easy-orders.net/1772849481924617962ab-user.svg) !important;
2841
+ background-repeat: no-repeat !important;
2842
+ background-position: 0.875rem center !important;
2843
+ background-size: 18px 18px !important;
2844
+ padding-inline-start: 2.5rem !important;
2845
+ }
2846
+ .checkout_form input[name="phone"],
2847
+ .checkout_form input[name="phone"]:focus,
2848
+ .product_form_checkout input[name="phone"],
2849
+ .product_form_checkout input[name="phone"]:focus {
2850
+ background-image: url(https://files.easy-orders.net/1772849798007844352ab-phone.svg) !important;
2851
+ background-repeat: no-repeat !important;
2852
+ background-position: 0.875rem center !important;
2853
+ background-size: 18px 18px !important;
2854
+ padding-inline-start: 2.5rem !important;
2855
+ }
2856
+ .checkout_form textarea[name="address1"],
2857
+ .checkout_form textarea[name="address1"]:focus,
2858
+ .checkout_form textarea[name="address"],
2859
+ .checkout_form textarea[name="address"]:focus,
2860
+ .product_form_checkout textarea[name="address1"],
2861
+ .product_form_checkout textarea[name="address1"]:focus,
2862
+ .product_form_checkout textarea[name="address"],
2863
+ .product_form_checkout textarea[name="address"]:focus {
2864
+ background-image: url(https://files.easy-orders.net/1772850039911684644address-location-map.svg) !important;
2865
+ background-repeat: no-repeat !important;
2866
+ background-position: 0.875rem 0.75rem !important;
2867
+ background-size: 18px 18px !important;
2868
+ padding-inline-start: 2.5rem !important;
2869
+ }
2870
+ .checkout_form .global_textarea,
2871
+ .product_form_checkout .global_textarea {
2872
+ min-height: 100px !important;
2873
+ resize: vertical;
2874
+ }
2875
+ .checkout_form .shipping_cost_container,
2876
+ .product_form_checkout .shipping_cost_container {
2877
+ padding: 0.875rem 0 !important;
2878
+ margin-top: 0.5rem !important;
2879
+ border: 0 !important;
2880
+ }
2881
+ .checkout_form .shipping_cost_container dt,
2882
+ .product_form_checkout .shipping_cost_container dt {
2883
+ color: rgba(33, 42, 47, 0.55) !important;
2884
+ font-size: 14px !important;
2885
+ }
2886
+ .checkout_form .shipping_cost_container dd,
2887
+ .product_form_checkout .shipping_cost_container dd {
2888
+ font-weight: 700 !important;
2889
+ font-size: 14px !important;
2890
+ color: var(--hd-text, #212a2f) !important;
2891
+ }
2892
+ .checkout_form .payments_container,
2893
+ .product_form_checkout .payments_container {
2894
+ gap: 0.5rem !important;
2895
+ }
2896
+ .bundles_container > div,
2897
+ .checkout_form .payment_card,
2898
+ .product_form_checkout .payment_card {
2899
+ background: #fff !important;
2900
+ border-radius: 1rem !important;
2901
+ transition:
2902
+ border-color 0.2s,
2903
+ box-shadow 0.2s;
2904
+ }
2905
+ .checkout_form .payment_card,
2906
+ .product_form_checkout .payment_card {
2907
+ border: 1.5px solid rgba(0, 0, 0, 0.08) !important;
2908
+ padding: 1rem !important;
2909
+ }
2910
+ .checkout_form .payment_card:hover,
2911
+ .product_form_checkout .payment_card:hover {
2912
+ border-color: rgba(0, 0, 0, 0.18) !important;
2913
+ }
2914
+ .checkout_form .payment_card.border-blue-600,
2915
+ .product_form_checkout .payment_card.border-blue-600 {
2916
+ border-color: var(--hd-text, #212a2f) !important;
2917
+ box-shadow: 0 0 0 1px var(--hd-text, #212a2f) !important;
2918
+ }
2919
+ .checkout_form .radio_container,
2920
+ .product_form_checkout .radio_container {
2921
+ border-color: rgba(0, 0, 0, 0.15) !important;
2922
+ }
2923
+ .checkout_form .radio_circle,
2924
+ .product_form_checkout .radio_circle {
2925
+ transition: background-color 0.2s;
2926
+ }
2927
+ .checkout_form .radio_circle.bg-blue-500,
2928
+ .product_form_checkout .radio_circle.bg-blue-500 {
2929
+ background-color: var(--hd-text, #212a2f) !important;
2930
+ }
2931
+ .checkout_form .payment_card_name,
2932
+ .product_form_checkout .payment_card_name {
2933
+ font-weight: 700 !important;
2934
+ color: var(--hd-text, #212a2f) !important;
2935
+ }
2936
+ .checkout_form .payment_card_description,
2937
+ .product_form_checkout .payment_card_description {
2938
+ color: rgba(33, 42, 47, 0.5) !important;
2939
+ font-size: 13px !important;
2940
+ }
2941
+ .checkout_form .total_price_container,
2942
+ .product_form_checkout .total_price_container {
2943
+ padding: 0.875rem 0 !important;
2944
+ }
2945
+ .checkout_form .total_price_container dt,
2946
+ .product_form_checkout .total_price_container dt {
2947
+ color: rgba(33, 42, 47, 0.55) !important;
2948
+ font-size: 15px !important;
2949
+ }
2950
+ .checkout_form .total_price_container .total_price,
2951
+ .product_form_checkout .total_price_container .total_price {
2952
+ font-size: 1.2rem !important;
2953
+ font-weight: 700 !important;
2954
+ color: var(--hd-text, #212a2f) !important;
2955
+ }
2956
+ .checkout_buy_now,
2957
+ .checkout_form button[type="submit"],
2958
+ .form_checkout_btn {
2959
+ background: var(--buy-btn-bg, #212a2f) !important;
2960
+ color: var(--buy-btn-text, #fff) !important;
2961
+ border: 1.5px solid var(--buy-btn-border, #212a2f) !important;
2962
+ border-radius: 2rem !important;
2963
+ font-weight: 600 !important;
2964
+ font-size: 1rem !important;
2965
+ padding: 0.875rem 1.5rem !important;
2966
+ transition: opacity 0.2s;
2967
+ margin-top: 0.5rem !important;
2968
+ }
2969
+ .checkout_buy_now:hover,
2970
+ .checkout_form button[type="submit"]:hover,
2971
+ .form_checkout_btn:hover {
2972
+ opacity: 0.88;
2973
+ }
2974
+ .bundles_container {
2975
+ background: #f5f4f2 !important;
2976
+ border-radius: 1.25rem !important;
2977
+ padding: 1.5rem !important;
2978
+ gap: 1rem !important;
2979
+ margin-top: 1.5rem !important;
2980
+ }
2981
+ .bundles_title {
2982
+ display: flex !important;
2983
+ align-items: center !important;
2984
+ gap: 0.5rem !important;
2985
+ }
2986
+ .bundles_title::before {
2987
+ content: "";
2988
+ display: inline-flex;
2989
+ width: 40px;
2990
+ height: 40px;
2991
+ min-width: 40px;
2992
+ border-radius: 50%;
2993
+ background-color: var(--buy-btn-bg, #333);
2994
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='19' y1='5' x2='5' y2='19'/%3E%3Ccircle cx='6.5' cy='6.5' r='2.5'/%3E%3Ccircle cx='17.5' cy='17.5' r='2.5'/%3E%3C/svg%3E");
2995
+ background-repeat: no-repeat;
2996
+ background-position: center;
2997
+ background-size: 20px 20px;
2998
+ order: -1;
2999
+ }
3000
+ .bundles_container > div {
3001
+ padding: 1rem 1.25rem !important;
3002
+ margin-bottom: 0 !important;
3003
+ border-width: 1px !important;
3004
+ }
3005
+ .bundles_container > div:not(.\!border-skin-primary) {
3006
+ border: 1px solid #e5e5e5 !important;
3007
+ }
3008
+ .bundles_container .radio_container {
3009
+ width: 20px !important;
3010
+ height: 20px !important;
3011
+ min-width: 20px !important;
3012
+ border-color: #d9d9d9 !important;
3013
+ }
3014
+ .bundles_container > div.\!border-\[3px\] .radio_container,
3015
+ .bundles_container > div.\!border-skin-primary .radio_container {
3016
+ border-color: var(--hd-text, #333) !important;
3017
+ }
3018
+ .bundles_container .radio_circle {
3019
+ width: 10px !important;
3020
+ height: 10px !important;
3021
+ background: 0 0 !important;
3022
+ }
3023
+ .bundles_container .radio_circle.bg-blue-500 {
3024
+ background-color: var(--hd-text, #333) !important;
3025
+ }
3026
+ .bundles_container > div p.text-xl {
3027
+ font-size: 1.05rem !important;
3028
+ font-weight: 700 !important;
3029
+ color: var(--color-primary, #212a2f) !important;
3030
+ }
3031
+ .bundles_container > div p.text-xs.bg-\[\#eee\],
3032
+ .bundles_container > div p[class*="bg-[#eee]"] {
3033
+ background: 0 0 !important;
3034
+ color: #61758a !important;
3035
+ padding: 0 !important;
3036
+ font-size: 13px !important;
3037
+ }
3038
+ .bundles_container > div p.font-bold.text-gray-700 {
3039
+ font-size: 1.15rem !important;
3040
+ font-weight: 700 !important;
3041
+ color: #010101 !important;
3042
+ }
3043
+ .bundles_container > div p.line-through {
3044
+ font-size: 0.85rem !important;
3045
+ color: #61758a !important;
3046
+ }
3047
+ .bundles_container > div p.text-gray-500.text-xs {
3048
+ display: none !important;
3049
+ }
3050
+ .bundles_container > div > div:has(.bundles_label) {
3051
+ left: 50% !important;
3052
+ transform: translateX(-50%) !important;
3053
+ margin-inline-start: 0 !important;
3054
+ }
3055
+ .bundles_label.bundles_label {
3056
+ background-color: rgb(var(--color-primary, #212a2f)) !important;
3057
+ border-radius: 0 0 6px 6px !important;
3058
+ font-size: 11px !important;
3059
+ font-weight: 600 !important;
3060
+ letter-spacing: 0.02em;
3061
+ }
3062
+ .bundles_label .border-red-600,
3063
+ .bundles_label span.border-red-600 {
3064
+ border-color: rgb(var(--color-primary, #212a2f)) !important;
3065
+ border-left-color: transparent !important;
3066
+ border-right-color: transparent !important;
3067
+ }
3068
+ .bundles_container > div .border-t {
3069
+ border-color: #f0f0f0 !important;
3070
+ }
3071
+ @media (max-width: 767px) {
3072
+ .bundles_container {
3073
+ padding: 0.75rem !important;
3074
+ border-radius: 1rem !important;
3075
+ gap: 0.75rem !important;
3076
+ }
3077
+ .bundles_container > div {
3078
+ padding: 1.2rem 0.75rem 0.75rem !important;
3079
+ border-radius: 0.75rem !important;
3080
+ }
3081
+ .bundles_title::before {
3082
+ width: 32px;
3083
+ height: 32px;
3084
+ min-width: 32px;
3085
+ background-size: 16px 16px;
3086
+ }
3087
+ .p_details_container {
3088
+ padding: 1.25rem !important;
3089
+ }
3090
+ }
3091
+ .ab-fake-counter {
3092
+ margin: 1.75rem 0;
3093
+ background: #f5f4f2;
3094
+ border-radius: 1rem;
3095
+ padding: 1.5rem 1.75rem;
3096
+ }
3097
+ .ab-fc-header {
3098
+ display: flex;
3099
+ align-items: center;
3100
+ gap: 0.625rem;
3101
+ margin-bottom: 1.25rem;
3102
+ }
3103
+ .ab-fc-icon {
3104
+ display: inline-flex;
3105
+ align-items: center;
3106
+ justify-content: center;
3107
+ width: 28px;
3108
+ height: 28px;
3109
+ min-width: 28px;
3110
+ border-radius: 50%;
3111
+ background: var(--hd-text, #212a2f);
3112
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23fff' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 6v6l4 2'/%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3C/svg%3E");
3113
+ background-repeat: no-repeat;
3114
+ background-position: center;
3115
+ background-size: 16px 16px;
3116
+ }
3117
+ .ab-fc-title {
3118
+ font-size: 0.8125rem;
3119
+ font-weight: 600;
3120
+ text-transform: uppercase;
3121
+ letter-spacing: 0.08em;
3122
+ color: var(--hd-text, #212a2f);
3123
+ }
3124
+ .ab-fc-digits {
3125
+ display: flex;
3126
+ align-items: flex-start;
3127
+ justify-content: flex-start;
3128
+ gap: 0.625rem;
3129
+ }
3130
+ .ab-fc-num,
3131
+ .ab-fc-unit {
3132
+ display: flex;
3133
+ align-items: center;
3134
+ }
3135
+ .ab-fc-unit {
3136
+ flex-direction: column;
3137
+ gap: 0.5rem;
3138
+ min-width: 3.5rem;
3139
+ }
3140
+ .ab-fc-num {
3141
+ justify-content: center;
3142
+ width: 3.5rem;
3143
+ height: 3.5rem;
3144
+ border-radius: 0.75rem;
3145
+ border: 0;
3146
+ background: #fff;
3147
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
3148
+ font-size: 1.375rem;
3149
+ font-weight: 700;
3150
+ font-variant-numeric: tabular-nums;
3151
+ color: var(--hd-text, #212a2f);
3152
+ transition: transform 0.15s ease;
3153
+ }
3154
+ .ab-fc-label {
3155
+ font-size: 0.625rem;
3156
+ text-transform: uppercase;
3157
+ letter-spacing: 0.08em;
3158
+ color: #9a9590;
3159
+ font-weight: 500;
3160
+ }
3161
+ .ab-fc-sep {
3162
+ font-size: 1.125rem;
3163
+ font-weight: 600;
3164
+ padding-top: 0.875rem;
3165
+ color: #c5c0bb;
3166
+ }
3167
+ @media (min-width: 768px) {
3168
+ .ab-fc-num {
3169
+ width: 4rem;
3170
+ height: 4rem;
3171
+ font-size: 1.5rem;
3172
+ border-radius: 0.875rem;
3173
+ }
3174
+ .ab-fc-unit {
3175
+ min-width: 4rem;
3176
+ }
3177
+ }
3178
+ .ab-fake-stock {
3179
+ margin-top: 1.5rem;
3180
+ background: #f5f4f2;
3181
+ border-radius: 0.875rem;
3182
+ padding: 1.125rem 1.5rem;
3183
+ display: flex;
3184
+ align-items: center;
3185
+ gap: 1rem;
3186
+ }
3187
+ .ab-fs-bar {
3188
+ flex: 1;
3189
+ height: 6px;
3190
+ background: #e5e1dc;
3191
+ overflow: hidden;
3192
+ border-radius: 3px;
3193
+ }
3194
+ .ab-fs-fill {
3195
+ height: 100%;
3196
+ width: 22%;
3197
+ background: var(--hd-text, #212a2f);
3198
+ border-radius: 3px;
3199
+ }
3200
+ .ab-fs-text {
3201
+ margin-top: 0;
3202
+ font-size: 0.75rem;
3203
+ font-weight: 600;
3204
+ white-space: nowrap;
3205
+ letter-spacing: 0.04em;
3206
+ color: var(--hd-text, #212a2f);
3207
+ }
3208
+ .lq-desc-accordion {
3209
+ margin-top: 1.5rem;
3210
+ border-top: 1px solid #e5e1dc;
3211
+ }
3212
+ .lq-desc-item {
3213
+ border-bottom: 1px solid #e5e1dc;
3214
+ }
3215
+ .lq-desc-toggle {
3216
+ display: flex;
3217
+ align-items: center;
3218
+ justify-content: space-between;
3219
+ width: 100%;
3220
+ padding: 1rem 0;
3221
+ background: 0 0;
3222
+ border: 0;
3223
+ cursor: pointer;
3224
+ font-size: 0.8125rem;
3225
+ font-weight: 600;
3226
+ text-transform: uppercase;
3227
+ letter-spacing: 0.08em;
3228
+ color: var(--hd-text, #212a2f);
3229
+ text-align: start;
3230
+ }
3231
+ .lq-desc-toggle-label {
3232
+ display: flex;
3233
+ align-items: center;
3234
+ gap: 0.5rem;
3235
+ }
3236
+ .lq-desc-icon {
3237
+ width: 20px;
3238
+ height: 20px;
3239
+ min-width: 20px;
3240
+ opacity: 0.7;
3241
+ }
3242
+ .lq-desc-toggle:hover {
3243
+ opacity: 0.7;
3244
+ }
3245
+ .lq-desc-chevron {
3246
+ position: relative;
3247
+ display: inline-block;
3248
+ width: 14px;
3249
+ height: 14px;
3250
+ min-width: 14px;
3251
+ }
3252
+ .lq-desc-chevron::after,
3253
+ .lq-desc-chevron::before {
3254
+ content: "";
3255
+ position: absolute;
3256
+ background: currentColor;
3257
+ transition: transform 0.25s ease;
3258
+ }
3259
+ .lq-desc-chevron::before {
3260
+ width: 14px;
3261
+ height: 1.5px;
3262
+ top: 50%;
3263
+ left: 0;
3264
+ transform: translateY(-50%);
3265
+ }
3266
+ .lq-desc-chevron::after {
3267
+ width: 1.5px;
3268
+ height: 14px;
3269
+ top: 0;
3270
+ left: 50%;
3271
+ transform: translateX(-50%);
3272
+ }
3273
+ .lq-desc-item[data-open="true"] .lq-desc-chevron::after {
3274
+ transform: translateX(-50%) scaleY(0);
3275
+ }
3276
+ .lq-desc-panel {
3277
+ overflow: hidden;
3278
+ }
3279
+ .lq-desc-content {
3280
+ padding: 0 0 1.25rem;
3281
+ font-size: 0.875rem;
3282
+ line-height: 1.75;
3283
+ color: #555;
3284
+ }
3285
+ .lq-desc-content img {
3286
+ max-width: 100%;
3287
+ height: auto;
3288
+ }
3289
+ [data-policies-nav],
3290
+ [data-policies-panels] {
3291
+ display: contents;
3292
+ }
3293
+ .ab-fake-visitor,
3294
+ .ab-fv-eye {
3295
+ display: inline-flex;
3296
+ align-items: center;
3297
+ }
3298
+ .ab-fake-visitor {
3299
+ gap: 0.625rem;
3300
+ background: #f5f4f2;
3301
+ border-radius: 2rem;
3302
+ padding: 0.5rem 1.125rem 0.5rem 0.75rem;
3303
+ margin-top: 1rem;
3304
+ width: 100%;
3305
+ }
3306
+ .ab-fv-eye {
3307
+ justify-content: center;
3308
+ width: 24px;
3309
+ height: 24px;
3310
+ min-width: 24px;
3311
+ border-radius: 50%;
3312
+ background: var(--hd-text, #212a2f);
3313
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23fff' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M2.036 12.322a1.012 1.012 0 010-.639C3.423 7.51 7.36 4.5 12 4.5c4.638 0 8.573 3.007 9.963 7.178.07.207.07.431 0 .639C20.577 16.49 16.64 19.5 12 19.5c-4.638 0-8.573-3.007-9.963-7.178z'/%3E%3Ccircle cx='12' cy='12' r='3.5'/%3E%3C/svg%3E");
3314
+ background-repeat: no-repeat;
3315
+ background-position: center;
3316
+ background-size: 14px 14px;
3317
+ }
3318
+ .ab-fv-text {
3319
+ font-size: 0.8125rem;
3320
+ font-weight: 500;
3321
+ color: var(--hd-text, #212a2f);
3322
+ letter-spacing: 0.01em;
3323
+ line-height: 1;
3324
+ }
3325
+ .ab-fv-count {
3326
+ font-weight: 700;
3327
+ font-variant-numeric: tabular-nums;
3328
+ }
3329
+ .fake_visitors_container.fake_visitors_container {
3330
+ display: inline-flex !important;
3331
+ align-items: center !important;
3332
+ gap: 0.625rem !important;
3333
+ background: #f5f4f2 !important;
3334
+ border-radius: 2rem !important;
3335
+ padding: 0.5rem 1.125rem !important;
3336
+ margin-top: 1rem !important;
3337
+ }
3338
+ .fake_visitors_container.fake_visitors_container p {
3339
+ font-size: 0.8125rem !important;
3340
+ font-weight: 500 !important;
3341
+ color: var(--hd-text, #212a2f) !important;
3342
+ }
3343
+ .fake_visitors_container.fake_visitors_container span {
3344
+ background: var(--hd-text, #212a2f) !important;
3345
+ color: #fff !important;
3346
+ border-radius: 1rem !important;
3347
+ padding: 0.125rem 0.5rem !important;
3348
+ font-size: 0.75rem !important;
3349
+ font-weight: 700 !important;
3350
+ }
3351
+ .fake_stock_container.fake_stock_container {
3352
+ margin-top: 1.5rem !important;
3353
+ background: #f5f4f2 !important;
3354
+ border-radius: 0.875rem !important;
3355
+ padding: 1.125rem 1.5rem !important;
3356
+ display: flex !important;
3357
+ flex-direction: row !important;
3358
+ align-items: center !important;
3359
+ gap: 1rem !important;
3360
+ }
3361
+ .fake_stock_container .fake_stock_progress.fake_stock_progress {
3362
+ flex: 1 !important;
3363
+ height: 6px !important;
3364
+ background: #e5e1dc !important;
3365
+ border-radius: 3px !important;
3366
+ overflow: hidden !important;
3367
+ }
3368
+ .fake_stock_container .fake_stock_progress > div {
3369
+ height: 6px !important;
3370
+ background: var(--hd-text, #212a2f) !important;
3371
+ border-radius: 3px !important;
3372
+ margin-inline-start: 0 !important;
3373
+ width: 22% !important;
3374
+ }
3375
+ .fake_stock_container .fake_stock_count.fake_stock_count {
3376
+ font-size: 0.75rem !important;
3377
+ font-weight: 600 !important;
3378
+ white-space: nowrap !important;
3379
+ letter-spacing: 0.04em !important;
3380
+ color: var(--hd-text, #212a2f) !important;
3381
+ margin-top: 0 !important;
3382
+ order: -1 !important;
3383
+ }
3384
+ .fake_counter_container {
3385
+ margin: 1.75rem 0 !important;
3386
+ background: #f5f4f2 !important;
3387
+ border-radius: 1rem !important;
3388
+ padding: 1.5rem 1.75rem !important;
3389
+ }
3390
+
3391
+ /* ── Fixed Buy Button ── */
3392
+ .ab-fixed-buy {
3393
+ position: fixed;
3394
+ bottom: 0;
3395
+ left: 0;
3396
+ right: 0;
3397
+ z-index: 50;
3398
+ background: rgba(255, 255, 255, 0.92);
3399
+ backdrop-filter: blur(14px);
3400
+ -webkit-backdrop-filter: blur(14px);
3401
+ border-top: 1px solid rgba(0, 0, 0, 0.06);
3402
+ padding: 10px 20px;
3403
+ display: flex;
3404
+ align-items: center;
3405
+ justify-content: center;
3406
+ gap: 16px;
3407
+ }
3408
+ .ab-fixed-buy-preview {
3409
+ display: flex;
3410
+ align-items: center;
3411
+ gap: 12px;
3412
+ min-width: 0;
3413
+ flex: 1;
3414
+ max-width: 400px;
3415
+ }
3416
+ .ab-fixed-buy-thumb {
3417
+ width: 44px;
3418
+ height: 44px;
3419
+ border-radius: 10px;
3420
+ object-fit: cover;
3421
+ flex-shrink: 0;
3422
+ background: #f5f4f2;
3423
+ }
3424
+ .ab-fixed-buy-info {
3425
+ min-width: 0;
3426
+ }
3427
+ .ab-fixed-buy-name {
3428
+ font-size: 13px;
3429
+ font-weight: 600;
3430
+ color: var(--hd-text, #212a2f);
3431
+ white-space: nowrap;
3432
+ overflow: hidden;
3433
+ text-overflow: ellipsis;
3434
+ line-height: 1.3;
3435
+ }
3436
+ .ab-fixed-buy-price-row {
3437
+ display: flex;
3438
+ align-items: baseline;
3439
+ gap: 6px;
3440
+ margin-top: 2px;
3441
+ }
3442
+ .ab-fixed-buy-price {
3443
+ font-size: 14px;
3444
+ font-weight: 700;
3445
+ color: var(--hd-text, #212a2f);
3446
+ }
3447
+ .ab-fixed-buy-price-sale {
3448
+ color: #c94a4a;
3449
+ }
3450
+ .ab-fixed-buy-price-old {
3451
+ font-size: 12px;
3452
+ font-weight: 500;
3453
+ color: rgba(33, 42, 47, 0.45);
3454
+ text-decoration: line-through;
3455
+ }
3456
+ .ab-fixed-buy-qty {
3457
+ display: flex;
3458
+ align-items: center;
3459
+ gap: 4px;
3460
+ border: 1px solid rgba(0, 0, 0, 0.12);
3461
+ border-radius: 10px;
3462
+ padding: 4px 6px;
3463
+ flex-shrink: 0;
3464
+ }
3465
+ .ab-fixed-buy-qty-btn {
3466
+ display: flex;
3467
+ align-items: center;
3468
+ justify-content: center;
3469
+ width: 30px;
3470
+ height: 30px;
3471
+ border: 0;
3472
+ border-radius: 6px;
3473
+ background: #f5f4f2;
3474
+ color: var(--hd-text, #212a2f);
3475
+ cursor: pointer;
3476
+ transition: background 0.15s;
3477
+ }
3478
+ .ab-fixed-buy-qty-btn:hover {
3479
+ background: #eae8e5;
3480
+ }
3481
+ .ab-fixed-buy-qty-btn:disabled {
3482
+ opacity: 0.4;
3483
+ cursor: not-allowed;
3484
+ }
3485
+ .ab-fixed-buy-qty-value {
3486
+ min-width: 28px;
3487
+ text-align: center;
3488
+ font-size: 14px;
3489
+ font-weight: 600;
3490
+ color: var(--hd-text, #212a2f);
3491
+ user-select: none;
3492
+ }
3493
+ .ab-fixed-buy-btn {
3494
+ height: 44px;
3495
+ border-radius: 2rem;
3496
+ border: 0;
3497
+ padding: 0 2rem;
3498
+ background: var(--buy-btn-bg, #212a2f);
3499
+ color: var(--buy-btn-text, #fff);
3500
+ font-size: 15px;
3501
+ font-weight: 600;
3502
+ cursor: pointer;
3503
+ white-space: nowrap;
3504
+ flex-shrink: 0;
3505
+ transition: opacity 0.2s;
3506
+ }
3507
+ .ab-fixed-buy-btn:hover {
3508
+ opacity: 0.88;
3509
+ }
3510
+ .ab-fixed-buy-btn:disabled {
3511
+ opacity: 0.45;
3512
+ cursor: not-allowed;
3513
+ }
3514
+ @media (max-width: 480px) {
3515
+ .ab-fixed-buy {
3516
+ padding: 8px 12px;
3517
+ gap: 10px;
3518
+ }
3519
+ .ab-fixed-buy-preview {
3520
+ display: none;
3521
+ }
3522
+ .ab-fixed-buy-thumb {
3523
+ width: 38px;
3524
+ height: 38px;
3525
+ border-radius: 8px;
3526
+ }
3527
+ .ab-fixed-buy-btn {
3528
+ height: 40px;
3529
+ padding: 0 1.25rem;
3530
+ font-size: 14px;
3531
+ }
3532
+ .ab-fixed-buy-name {
3533
+ font-size: 12px;
3534
+ }
3535
+ .ab-fixed-buy-qty {
3536
+ padding: 3px 4px;
3537
+ gap: 2px;
3538
+ }
3539
+ .ab-fixed-buy-qty-btn {
3540
+ width: 26px;
3541
+ height: 26px;
3542
+ }
3543
+ .ab-fixed-buy-qty-value {
3544
+ min-width: 22px;
3545
+ font-size: 13px;
3546
+ }
3547
+ }
3548
+
3549
+ /* ── Thanks Section ── */
3550
+ .ab-thanks {
3551
+ max-width: 720px;
3552
+ margin: 3rem auto;
3553
+ padding: 0 1.5rem;
3554
+ }
3555
+ .ab-thanks-content {
3556
+ display: flex;
3557
+ flex-direction: column;
3558
+ align-items: center;
3559
+ text-align: center;
3560
+ gap: 0.5rem;
3561
+ }
3562
+ .ab-thanks-custom-content {
3563
+ text-align: start;
3564
+ line-height: 1.75;
3565
+ font-size: 15px;
3566
+ color: var(--hd-text, #212a2f);
3567
+ }
3568
+ .ab-thanks-custom-content img {
3569
+ max-width: 100%;
3570
+ height: auto;
3571
+ }
3572
+ .ab-thanks-default {
3573
+ display: flex;
3574
+ flex-direction: column;
3575
+ align-items: center;
3576
+ gap: 0.75rem;
3577
+ }
3578
+ .ab-thanks-icon {
3579
+ color: var(--hd-text, #212a2f);
3580
+ margin-bottom: 0.5rem;
3581
+ }
3582
+ .ab-thanks-icon svg {
3583
+ width: 80px;
3584
+ height: 80px;
3585
+ }
3586
+ .ab-thanks-title {
3587
+ margin: 0;
3588
+ font-size: 2rem;
3589
+ font-weight: 700;
3590
+ color: var(--hd-text, #212a2f);
3591
+ letter-spacing: -0.02em;
3592
+ line-height: 1.2;
3593
+ }
3594
+ .ab-thanks-message {
3595
+ margin: 0;
3596
+ font-size: 1.125rem;
3597
+ color: rgba(33, 42, 47, 0.7);
3598
+ line-height: 1.5;
3599
+ }
3600
+ .ab-thanks-phone-msg {
3601
+ margin: 0;
3602
+ font-size: 1.125rem;
3603
+ color: rgba(33, 42, 47, 0.7);
3604
+ line-height: 1.5;
3605
+ }
3606
+ .ab-thanks-home-btn {
3607
+ margin-top: 1.5rem;
3608
+ height: 46px;
3609
+ border-radius: 2rem;
3610
+ border: 0;
3611
+ padding: 0 2rem;
3612
+ background: var(--buy-btn-bg, #212a2f);
3613
+ color: var(--buy-btn-text, #fff);
3614
+ font-size: 15px;
3615
+ font-weight: 600;
3616
+ cursor: pointer;
3617
+ transition: opacity 0.2s;
3618
+ }
3619
+ .ab-thanks-home-btn:hover {
3620
+ opacity: 0.88;
3621
+ }
3622
+ .ab-thanks-offers {
3623
+ margin-top: 1rem;
3624
+ font-size: 1rem;
3625
+ color: var(--hd-text, #212a2f);
3626
+ text-decoration: underline;
3627
+ text-underline-offset: 6px;
3628
+ }
3629
+ @media (max-width: 480px) {
3630
+ .ab-thanks {
3631
+ padding: 0 1rem;
3632
+ }
3633
+ .ab-thanks-title {
3634
+ font-size: 1.5rem;
3635
+ }
3636
+ .ab-thanks-message,
3637
+ .ab-thanks-phone-msg {
3638
+ font-size: 1rem;
3639
+ }
3640
+ }
3641
+
3642
+ /* ── Order Invoice ── */
3643
+ .ab-invoice {
3644
+ width: 100%;
3645
+ background: #fff;
3646
+ max-width: 1280px;
3647
+ margin: 0 auto;
3648
+ padding: 1.25rem 1rem 2.5rem;
3649
+ }
3650
+ .ab-invoice-header {
3651
+ display: flex;
3652
+ align-items: center;
3653
+ justify-content: space-between;
3654
+ padding-bottom: 1.25rem;
3655
+ border-bottom: 1px solid #e5e1dc;
3656
+ }
3657
+ .ab-invoice-logo {
3658
+ height: 40px;
3659
+ width: auto;
3660
+ object-fit: contain;
3661
+ }
3662
+ .ab-invoice-track-btn {
3663
+ height: 38px;
3664
+ border-radius: 0.5rem;
3665
+ border: 0;
3666
+ padding: 0 1rem;
3667
+ background: #f5f4f2;
3668
+ color: rgba(33, 42, 47, 0.75);
3669
+ font-size: 13px;
3670
+ font-weight: 500;
3671
+ cursor: pointer;
3672
+ transition:
3673
+ background 0.15s,
3674
+ color 0.15s;
3675
+ }
3676
+ .ab-invoice-track-btn:hover {
3677
+ background: #e5e1dc;
3678
+ color: var(--hd-text, #212a2f);
3679
+ }
3680
+ .ab-invoice-body {
3681
+ display: flex;
3682
+ flex-direction: column-reverse;
3683
+ gap: 1.25rem;
3684
+ margin-top: 1.25rem;
3685
+ }
3686
+ @media (min-width: 768px) {
3687
+ .ab-invoice {
3688
+ padding: 1.25rem 2rem 2.5rem;
3689
+ }
3690
+ .ab-invoice-body {
3691
+ display: grid;
3692
+ grid-template-columns: 1fr 2fr;
3693
+ gap: 1.25rem;
3694
+ }
3695
+ }
3696
+ .ab-invoice-sidebar {
3697
+ display: flex;
3698
+ flex-direction: column;
3699
+ gap: 1.25rem;
3700
+ }
3701
+ .ab-invoice-main {
3702
+ display: flex;
3703
+ flex-direction: column;
3704
+ gap: 1.25rem;
3705
+ }
3706
+ .ab-invoice-store-info {
3707
+ font-style: normal;
3708
+ border: 1px solid #e5e1dc;
3709
+ border-radius: 0.75rem;
3710
+ padding: 1rem;
3711
+ display: flex;
3712
+ flex-direction: column;
3713
+ gap: 0.5rem;
3714
+ font-size: 13px;
3715
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
3716
+ }
3717
+ .ab-invoice-store-name {
3718
+ margin: 0;
3719
+ font-size: 14px;
3720
+ font-weight: 600;
3721
+ color: var(--hd-text, #212a2f);
3722
+ }
3723
+ .ab-invoice-store-info a {
3724
+ color: inherit;
3725
+ text-decoration: none;
3726
+ }
3727
+ .ab-invoice-store-info a:hover {
3728
+ text-decoration: underline;
3729
+ }
3730
+ .ab-invoice-contact-row {
3731
+ display: flex;
3732
+ align-items: center;
3733
+ gap: 0.75rem;
3734
+ flex-wrap: wrap;
3735
+ }
3736
+ .ab-invoice-contact-label {
3737
+ color: rgba(33, 42, 47, 0.55);
3738
+ }
3739
+ .ab-invoice-section-title {
3740
+ margin: 0 0 0.75rem;
3741
+ font-size: 14px;
3742
+ font-weight: 600;
3743
+ color: var(--hd-text, #212a2f);
3744
+ }
3745
+ .ab-invoice-shipping,
3746
+ .ab-invoice-timeline {
3747
+ border: 1px solid #e5e1dc;
3748
+ border-radius: 0.75rem;
3749
+ padding: 1rem;
3750
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
3751
+ }
3752
+ .ab-invoice-dl {
3753
+ display: flex;
3754
+ flex-direction: column;
3755
+ gap: 0.5rem;
3756
+ }
3757
+ .ab-invoice-dl-row {
3758
+ display: flex;
3759
+ justify-content: space-between;
3760
+ flex-wrap: wrap;
3761
+ gap: 0.25rem;
3762
+ font-size: 13px;
3763
+ }
3764
+ .ab-invoice-dl-row dt {
3765
+ color: rgba(33, 42, 47, 0.55);
3766
+ }
3767
+ .ab-invoice-dl-row dd {
3768
+ margin: 0;
3769
+ font-weight: 500;
3770
+ color: var(--hd-text, #212a2f);
3771
+ }
3772
+ .ab-invoice-dl-row-center {
3773
+ justify-content: center;
3774
+ }
3775
+ .ab-invoice-receipt-img {
3776
+ max-height: 240px;
3777
+ object-fit: contain;
3778
+ border-radius: 0.5rem;
3779
+ }
3780
+ .ab-invoice-notes-list {
3781
+ list-style: disc;
3782
+ margin: 0;
3783
+ padding: 0 0 0 1.25rem;
3784
+ display: flex;
3785
+ flex-direction: column;
3786
+ gap: 0.5rem;
3787
+ font-size: 13px;
3788
+ color: var(--hd-text, #212a2f);
3789
+ }
3790
+ .ab-invoice-note-date {
3791
+ display: block;
3792
+ font-size: 12px;
3793
+ color: rgba(33, 42, 47, 0.45);
3794
+ margin-top: 2px;
3795
+ }
3796
+ .ab-invoice-status-row {
3797
+ display: flex;
3798
+ justify-content: space-between;
3799
+ align-items: center;
3800
+ flex-wrap: wrap;
3801
+ gap: 0.5rem;
3802
+ padding: 1rem;
3803
+ border: 1px solid #e5e1dc;
3804
+ border-radius: 0.75rem;
3805
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
3806
+ }
3807
+ .ab-invoice-status-label {
3808
+ font-size: 1.125rem;
3809
+ font-weight: 500;
3810
+ color: rgba(33, 42, 47, 0.7);
3811
+ }
3812
+ .ab-invoice-status-value {
3813
+ font-size: 1.125rem;
3814
+ font-weight: 600;
3815
+ color: var(--hd-text, #212a2f);
3816
+ }
3817
+ .ab-invoice-items {
3818
+ border: 1px solid #e5e1dc;
3819
+ border-radius: 0.75rem;
3820
+ padding: 1.25rem;
3821
+ display: flex;
3822
+ flex-direction: column;
3823
+ gap: 1.5rem;
3824
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
3825
+ }
3826
+ .ab-invoice-item {
3827
+ display: flex;
3828
+ gap: 1rem;
3829
+ }
3830
+ .ab-invoice-item-img {
3831
+ width: 80px;
3832
+ height: 80px;
3833
+ border-radius: 0.5rem;
3834
+ object-fit: cover;
3835
+ background: #f5f4f2;
3836
+ flex-shrink: 0;
3837
+ }
3838
+ .ab-invoice-item-details {
3839
+ flex: 1;
3840
+ min-width: 0;
3841
+ }
3842
+ .ab-invoice-item-name {
3843
+ margin: 0;
3844
+ font-size: 15px;
3845
+ font-weight: 600;
3846
+ color: var(--hd-text, #212a2f);
3847
+ line-height: 1.3;
3848
+ }
3849
+ .ab-invoice-item-variants {
3850
+ margin: 4px 0 0;
3851
+ font-size: 13px;
3852
+ color: rgba(33, 42, 47, 0.55);
3853
+ }
3854
+ .ab-invoice-item-qty,
3855
+ .ab-invoice-item-unit-price {
3856
+ margin: 2px 0 0;
3857
+ font-size: 13px;
3858
+ color: rgba(33, 42, 47, 0.55);
3859
+ }
3860
+ .ab-invoice-item-metadata {
3861
+ margin-top: 6px;
3862
+ font-size: 13px;
3863
+ color: rgba(33, 42, 47, 0.55);
3864
+ display: flex;
3865
+ flex-direction: column;
3866
+ gap: 4px;
3867
+ }
3868
+ .ab-invoice-item-metadata img {
3869
+ border-radius: 0.5rem;
3870
+ margin-top: 4px;
3871
+ }
3872
+ .ab-invoice-item-total {
3873
+ font-size: 15px;
3874
+ font-weight: 600;
3875
+ color: var(--hd-text, #212a2f);
3876
+ white-space: nowrap;
3877
+ flex-shrink: 0;
3878
+ display: flex;
3879
+ align-items: baseline;
3880
+ gap: 4px;
3881
+ }
3882
+ .ab-invoice-totals {
3883
+ border: 1px solid #e5e1dc;
3884
+ border-radius: 0.75rem;
3885
+ padding: 1.25rem;
3886
+ display: flex;
3887
+ flex-direction: column;
3888
+ gap: 0.5rem;
3889
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
3890
+ }
3891
+ .ab-invoice-totals .ab-invoice-dl-row dt {
3892
+ font-weight: 500;
3893
+ }
3894
+ .ab-invoice-total-row {
3895
+ padding-top: 0.75rem;
3896
+ margin-top: 0.25rem;
3897
+ border-top: 1px solid #e5e1dc;
3898
+ }
3899
+ .ab-invoice-total-row dt,
3900
+ .ab-invoice-total-row dd {
3901
+ font-size: 15px !important;
3902
+ font-weight: 700 !important;
3903
+ color: var(--hd-text, #212a2f) !important;
3904
+ }
3905
+ @media (max-width: 480px) {
3906
+ .ab-invoice-item {
3907
+ flex-direction: column;
3908
+ gap: 0.75rem;
3909
+ }
3910
+ .ab-invoice-item-img {
3911
+ width: 100%;
3912
+ height: auto;
3913
+ max-height: 240px;
3914
+ border-radius: 0.5rem;
3915
+ }
3916
+ .ab-invoice-item-total {
3917
+ align-self: flex-end;
3918
+ }
3919
+ .ab-invoice-status-label,
3920
+ .ab-invoice-status-value {
3921
+ font-size: 1rem;
3922
+ }
3923
+ }