@sc-360-v2/storefront-cms-library 0.2.100 → 0.3.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.
@@ -97,6 +97,684 @@ $resizeActive: '[data-cms-element-resizer="true"]';
97
97
  // grid-template-rows: max(var(--_ctm-bun-lt-ht), auto) !important;
98
98
  }
99
99
  }
100
+ .bundle__details__element__container {
101
+ .template_1 {
102
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
103
+ sans-serif;
104
+ color: #374151;
105
+ padding: 24px 16px;
106
+ max-width: 1200px;
107
+ margin: 0 auto;
108
+
109
+ @media (min-width: 768px) {
110
+ padding: 32px;
111
+ }
112
+ .container {
113
+ display: flex;
114
+ flex-direction: column;
115
+
116
+ @media (min-width: 768px) {
117
+ flex-direction: row;
118
+ gap: 40px;
119
+ }
120
+ }
121
+
122
+ .gallerySection {
123
+ flex: 1;
124
+ margin-bottom: 24px;
125
+
126
+ @media (min-width: 768px) {
127
+ flex: 0 0 50%;
128
+ margin-bottom: 0;
129
+ }
130
+ }
131
+
132
+ .infoSection {
133
+ flex: 1;
134
+ }
135
+
136
+ .optionsSection {
137
+ display: flex;
138
+ flex-direction: column;
139
+ gap: 24px;
140
+ margin-top: 24px;
141
+ }
142
+
143
+ .actionSection {
144
+ display: flex;
145
+ flex-direction: column;
146
+ gap: 16px;
147
+ margin-top: 24px;
148
+
149
+ @media (min-width: 576px) {
150
+ flex-direction: row;
151
+ align-items: flex-start;
152
+ }
153
+ }
154
+
155
+ .selectButton {
156
+ display: flex;
157
+ align-items: center;
158
+ justify-content: center;
159
+ background-color: #2563eb;
160
+ color: white;
161
+ font-weight: 600;
162
+ font-size: 14px;
163
+ letter-spacing: 0.5px;
164
+ height: 48px;
165
+ border-radius: 6px;
166
+ padding: 0 24px;
167
+ border: none;
168
+ cursor: pointer;
169
+ transition:
170
+ background-color 0.2s ease-in-out,
171
+ transform 0.1s ease-in-out;
172
+ flex: 1;
173
+
174
+ @media (min-width: 576px) {
175
+ flex: 0 0 auto;
176
+ min-width: 120px;
177
+ }
178
+
179
+ &:hover {
180
+ background-color: #1d4ed8;
181
+ }
182
+
183
+ &:active {
184
+ transform: scale(0.98);
185
+ }
186
+
187
+ &:focus {
188
+ outline: none;
189
+ box-shadow: 0 0 0 2px #dbeafe;
190
+ }
191
+ }
192
+
193
+ .selectIcon {
194
+ display: flex;
195
+ align-items: center;
196
+ margin-right: 8px;
197
+ }
198
+ }
199
+ .sizeSelector {
200
+ display: flex;
201
+ flex-direction: column;
202
+ gap: 12px;
203
+
204
+ .header {
205
+ display: flex;
206
+ justify-content: space-between;
207
+ align-items: center;
208
+ }
209
+
210
+ .label {
211
+ font-size: 14px;
212
+ font-weight: 600;
213
+ color: #1f2937;
214
+ }
215
+
216
+ .sizeChartButton {
217
+ font-size: 13px;
218
+ font-weight: 500;
219
+ color: #2563eb;
220
+ background: none;
221
+ border: none;
222
+ padding: 0;
223
+ cursor: pointer;
224
+ text-decoration: underline;
225
+ transition: color 0.2s ease-in-out;
226
+
227
+ &:hover {
228
+ color: #1d4ed8;
229
+ }
230
+
231
+ &:focus {
232
+ outline: none;
233
+ color: #1d4ed8;
234
+ }
235
+ }
236
+
237
+ .options {
238
+ display: flex;
239
+ flex-wrap: wrap;
240
+ gap: 8px;
241
+ }
242
+
243
+ .sizeOption {
244
+ min-width: 44px;
245
+ padding: 8px 12px;
246
+ border: 1px solid #e5e7eb;
247
+ border-radius: 6px;
248
+ background-color: transparent;
249
+ font-size: 14px;
250
+ font-weight: 500;
251
+ color: #374151;
252
+ cursor: pointer;
253
+ transition: all 0.2s ease-in-out;
254
+ display: flex;
255
+ align-items: center;
256
+ justify-content: center;
257
+
258
+ &:hover {
259
+ background-color: #f3f4f6;
260
+ }
261
+
262
+ &.selected {
263
+ border-color: #2563eb;
264
+ background-color: #dbeafe;
265
+ color: #1d4ed8;
266
+ }
267
+
268
+ &:focus {
269
+ outline: none;
270
+ box-shadow: 0 0 0 2px #dbeafe;
271
+ }
272
+ }
273
+ }
274
+ .quantitySelector {
275
+ display: flex;
276
+ flex-direction: column;
277
+ gap: 12px;
278
+ flex: 1;
279
+
280
+ @media (min-width: 576px) {
281
+ flex-direction: row;
282
+ align-items: center;
283
+ flex-wrap: wrap;
284
+ }
285
+
286
+ .label {
287
+ font-size: 14px;
288
+ font-weight: 600;
289
+ color: #1f2937;
290
+
291
+ @media (min-width: 576px) {
292
+ flex: 0 0 auto;
293
+ margin-right: 12px;
294
+ }
295
+ }
296
+
297
+ .controls {
298
+ display: flex;
299
+ align-items: center;
300
+ height: 40px;
301
+
302
+ @media (min-width: 576px) {
303
+ flex: 0 0 auto;
304
+ }
305
+ }
306
+
307
+ .input {
308
+ width: 60px;
309
+ height: 100%;
310
+ border: 1px solid #e5e7eb;
311
+ border-left: none;
312
+ border-right: none;
313
+ text-align: center;
314
+ font-size: 14px;
315
+ font-weight: 500;
316
+ color: #1f2937;
317
+ padding: 0 8px;
318
+
319
+ &:focus {
320
+ outline: none;
321
+ }
322
+ }
323
+
324
+ .decreaseButton,
325
+ .increaseButton {
326
+ display: flex;
327
+ align-items: center;
328
+ justify-content: center;
329
+ width: 36px;
330
+ height: 100%;
331
+ background-color: #f9fafb;
332
+ border: 1px solid #e5e7eb;
333
+ cursor: pointer;
334
+ color: #1f2937;
335
+ transition: background-color 0.2s ease-in-out;
336
+
337
+ &:hover {
338
+ background-color: #f3f4f6;
339
+ }
340
+
341
+ &:focus {
342
+ outline: none;
343
+ box-shadow: 0 0 0 2px #dbeafe;
344
+ z-index: 1;
345
+ }
346
+
347
+ &:disabled {
348
+ opacity: 0.5;
349
+ cursor: not-allowed;
350
+ }
351
+ }
352
+
353
+ .decreaseButton {
354
+ border-radius: 6px 0 0 6px;
355
+ }
356
+
357
+ .increaseButton {
358
+ border-radius: 0 6px 6px 0;
359
+ }
360
+
361
+ .priceContainer {
362
+ display: flex;
363
+ align-items: center;
364
+ gap: 8px;
365
+
366
+ @media (min-width: 576px) {
367
+ flex: 1;
368
+ justify-content: flex-end;
369
+ }
370
+ }
371
+
372
+ .priceLabel {
373
+ font-size: 14px;
374
+ font-weight: 600;
375
+ color: #1f2937;
376
+ }
377
+
378
+ .price {
379
+ font-size: 16px;
380
+ font-weight: 700;
381
+ color: #1f2937;
382
+ }
383
+ }
384
+ .productInfo {
385
+ display: flex;
386
+ flex-direction: column;
387
+ gap: 16px;
388
+
389
+ .title {
390
+ font-size: 24px;
391
+ font-weight: 700;
392
+ line-height: 1.2;
393
+ color: #1f2937;
394
+ margin: 0;
395
+
396
+ @media (min-width: 768px) {
397
+ font-size: 28px;
398
+ }
399
+ }
400
+
401
+ .details {
402
+ display: flex;
403
+ flex-direction: column;
404
+ gap: 8px;
405
+ font-size: 14px;
406
+ color: #9ca3af;
407
+ }
408
+
409
+ .brand,
410
+ .itemNumber {
411
+ display: inline-block;
412
+ }
413
+
414
+ .brand {
415
+ font-weight: 500;
416
+ }
417
+
418
+ .rating {
419
+ display: flex;
420
+ align-items: center;
421
+ gap: 8px;
422
+ margin-top: 4px;
423
+ }
424
+
425
+ .stars {
426
+ display: flex;
427
+ align-items: center;
428
+ }
429
+
430
+ .star {
431
+ color: #f59e0b;
432
+ margin-right: 2px;
433
+
434
+ &.emptyStar {
435
+ color: #e5e7eb;
436
+ }
437
+ }
438
+
439
+ .reviewCount {
440
+ font-size: 14px;
441
+ color: #9ca3af;
442
+ }
443
+
444
+ .price {
445
+ font-size: 24px;
446
+ font-weight: 700;
447
+ color: #1f2937;
448
+ margin-top: 8px;
449
+ }
450
+ }
451
+ .gallery {
452
+ display: flex;
453
+ flex-direction: column;
454
+ gap: 16px;
455
+
456
+ .mainImage {
457
+ position: relative;
458
+ overflow: hidden;
459
+ border-radius: 8px;
460
+ background-color: #f9fafb;
461
+ aspect-ratio: 1 / 1;
462
+
463
+ &::before {
464
+ content: "";
465
+ display: block;
466
+ padding-top: 100%;
467
+ }
468
+ }
469
+
470
+ .image {
471
+ position: absolute;
472
+ top: 0;
473
+ left: 0;
474
+ width: 100%;
475
+ height: 100%;
476
+ object-fit: cover;
477
+ transition: transform 0.3s ease-in-out;
478
+
479
+ &:hover {
480
+ transform: scale(1.05);
481
+ }
482
+ }
483
+
484
+ .thumbnails {
485
+ display: flex;
486
+ gap: 8px;
487
+ }
488
+
489
+ .thumbnailButton {
490
+ width: 80px;
491
+ height: 80px;
492
+ padding: 0;
493
+ border: 2px solid transparent;
494
+ border-radius: 6px;
495
+ overflow: hidden;
496
+ cursor: pointer;
497
+ background: none;
498
+ transition: border-color 0.2s ease-in-out;
499
+
500
+ &:hover {
501
+ border-color: #dbeafe;
502
+ }
503
+
504
+ &.active {
505
+ border-color: #2563eb;
506
+ }
507
+
508
+ &:focus {
509
+ outline: none;
510
+ border-color: #2563eb;
511
+ box-shadow: 0 0 0 2px #dbeafe;
512
+ }
513
+ }
514
+
515
+ .thumbnailImage {
516
+ width: 100%;
517
+ height: 100%;
518
+ object-fit: cover;
519
+ }
520
+ }
521
+ .fitSelector {
522
+ display: flex;
523
+ flex-direction: column;
524
+ gap: 12px;
525
+
526
+ .label {
527
+ font-size: 14px;
528
+ font-weight: 600;
529
+ color: #1f2937;
530
+ }
531
+
532
+ .options {
533
+ display: flex;
534
+ gap: 8px;
535
+
536
+ @media (max-width: 480px) {
537
+ flex-wrap: wrap;
538
+ }
539
+ }
540
+
541
+ .fitOption {
542
+ padding: 8px 16px;
543
+ border: 1px solid #e5e7eb;
544
+ border-radius: 6px;
545
+ background-color: transparent;
546
+ font-size: 14px;
547
+ font-weight: 500;
548
+ color: #374151;
549
+ cursor: pointer;
550
+ transition: all 0.2s ease-in-out;
551
+
552
+ &:hover {
553
+ background-color: #f3f4f6;
554
+ }
555
+
556
+ &.selected {
557
+ border-color: #2563eb;
558
+ background-color: #dbeafe;
559
+ color: #1d4ed8;
560
+ }
561
+
562
+ &:focus {
563
+ outline: none;
564
+ box-shadow: 0 0 0 2px #dbeafe;
565
+ }
566
+ }
567
+ }
568
+ .customizationSection {
569
+ border-top: 1px solid #e5e7eb;
570
+ border-bottom: 1px solid #e5e7eb;
571
+ padding: 16px 0;
572
+
573
+ .header {
574
+ display: flex;
575
+ justify-content: space-between;
576
+ align-items: center;
577
+ width: 100%;
578
+ background: none;
579
+ border: none;
580
+ padding: 0;
581
+ cursor: pointer;
582
+ text-align: left;
583
+
584
+ &:focus {
585
+ outline: none;
586
+ }
587
+ }
588
+
589
+ .title {
590
+ font-size: 14px;
591
+ font-weight: 600;
592
+ color: #1f2937;
593
+ }
594
+
595
+ .expandIcon {
596
+ color: #9ca3af;
597
+ transition: transform 0.3s ease;
598
+ }
599
+
600
+ .content {
601
+ margin-top: 16px;
602
+ animation: fadeIn 0.3s ease-in-out;
603
+ }
604
+
605
+ @keyframes fadeIn {
606
+ from {
607
+ opacity: 0;
608
+ transform: translateY(-8px);
609
+ }
610
+ to {
611
+ opacity: 1;
612
+ transform: translateY(0);
613
+ }
614
+ }
615
+
616
+ .description {
617
+ font-size: 14px;
618
+ line-height: 1.5;
619
+ color: #374151;
620
+ margin-bottom: 16px;
621
+ }
622
+
623
+ .checkboxContainer {
624
+ display: flex;
625
+ align-items: center;
626
+ font-size: 14px;
627
+ color: #374151;
628
+ cursor: pointer;
629
+ user-select: none;
630
+ position: relative;
631
+ padding-left: 28px;
632
+ }
633
+
634
+ .checkbox {
635
+ position: absolute;
636
+ opacity: 0;
637
+ height: 0;
638
+ width: 0;
639
+
640
+ &:checked ~ .checkmark {
641
+ background-color: #2563eb;
642
+ border-color: #2563eb;
643
+
644
+ &::after {
645
+ display: block;
646
+ }
647
+ }
648
+
649
+ &:focus ~ .checkmark {
650
+ box-shadow: 0 0 0 2px #dbeafe;
651
+ }
652
+ }
653
+
654
+ .checkmark {
655
+ position: absolute;
656
+ top: 0;
657
+ left: 0;
658
+ height: 18px;
659
+ width: 18px;
660
+ background-color: white;
661
+ border: 1px solid #e5e7eb;
662
+ border-radius: 3px;
663
+ transition: all 0.2s ease-in-out;
664
+
665
+ &::after {
666
+ content: "";
667
+ position: absolute;
668
+ display: none;
669
+ left: 6px;
670
+ top: 2px;
671
+ width: 4px;
672
+ height: 9px;
673
+ border: solid white;
674
+ border-width: 0 2px 2px 0;
675
+ transform: rotate(45deg);
676
+ }
677
+ }
678
+
679
+ .customizationOptions {
680
+ margin-top: 16px;
681
+ padding-top: 16px;
682
+ border-top: 1px dashed #f3f4f6;
683
+ animation: fadeIn 0.3s ease-in-out;
684
+ }
685
+
686
+ .inputLabel {
687
+ display: flex;
688
+ flex-direction: column;
689
+ gap: 6px;
690
+ font-size: 14px;
691
+ font-weight: 500;
692
+ color: #1f2937;
693
+ }
694
+
695
+ .textInput {
696
+ padding: 10px 12px;
697
+ border: 1px solid #e5e7eb;
698
+ border-radius: 6px;
699
+ font-size: 14px;
700
+ transition:
701
+ border-color 0.2s ease-in-out,
702
+ box-shadow 0.2s ease-in-out;
703
+
704
+ &:hover {
705
+ border-color: #d1d5db;
706
+ }
707
+
708
+ &:focus {
709
+ outline: none;
710
+ border-color: #2563eb;
711
+ box-shadow: 0 0 0 3px #dbeafe;
712
+ }
713
+ }
714
+
715
+ .hint {
716
+ font-size: 12px;
717
+ color: #9ca3af;
718
+ font-weight: 400;
719
+ }
720
+ }
721
+ .colorSelector {
722
+ display: flex;
723
+ flex-direction: column;
724
+ gap: 12px;
725
+
726
+ .label {
727
+ font-size: 14px;
728
+ font-weight: 600;
729
+ color: #1f2937;
730
+ }
731
+
732
+ .swatches {
733
+ display: flex;
734
+ flex-wrap: wrap;
735
+ gap: 8px;
736
+ }
737
+
738
+ .colorSwatch {
739
+ width: 32px;
740
+ height: 32px;
741
+ border-radius: 50%;
742
+ border: 2px solid #e5e7eb;
743
+ cursor: pointer;
744
+ padding: 0;
745
+ transition:
746
+ transform 0.2s ease,
747
+ border-color 0.2s ease;
748
+ position: relative;
749
+
750
+ &:hover {
751
+ transform: scale(1.1);
752
+ }
753
+
754
+ &.selected {
755
+ border-color: #2563eb;
756
+
757
+ &::after {
758
+ content: "";
759
+ position: absolute;
760
+ top: 50%;
761
+ left: 50%;
762
+ transform: translate(-50%, -50%);
763
+ width: 12px;
764
+ height: 12px;
765
+ border-radius: 50%;
766
+ background-color: white;
767
+ box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
768
+ }
769
+ }
770
+
771
+ &:focus {
772
+ outline: none;
773
+ box-shadow: 0 0 0 2px #dbeafe;
774
+ }
775
+ }
776
+ }
777
+ }
100
778
 
101
779
  .embla {
102
780
  width: 100%;
@@ -630,813 +1308,5 @@ $resizeActive: '[data-cms-element-resizer="true"]';
630
1308
  }
631
1309
  }
632
1310
  }
633
-
634
- .bundle_details_heading_wrapper {
635
- display: flex;
636
- width: 100%;
637
- flex-direction: column;
638
- padding: 24px 96px;
639
- border-bottom: 1px solid #d0d5dd;
640
- gap: 16px;
641
-
642
- .bundle_details_heading_text_wrapper {
643
- display: flex;
644
- flex-direction: column;
645
- gap: 6px;
646
- width: 100%;
647
- flex: 1 0 0;
648
-
649
- .bundle_name {
650
- background-color: var(--_ctm-dn-be-ds-hr-dn-be-ne-dn-bd-cr);
651
- border-color: var(--_ctm-dn-be-ds-hr-dn-be-ne-dn-br-cr);
652
- border-radius: var(--_ctm-dn-be-ds-hr-dn-be-ne-dn-br-rs);
653
- border-style: var(--_ctm-dn-be-ds-hr-dn-be-ne-dn-br-se);
654
- border-width: var(--_ctm-dn-be-ds-hr-dn-be-ne-dn-br-wh);
655
- color: var(--_ctm-dn-be-ds-hr-dn-be-ne-dn-cr);
656
- font-family: var(--_ctm-dn-be-ds-hr-dn-be-ne-dn-ft-fy);
657
- font-size: var(--_ctm-dn-be-ds-hr-dn-be-ne-dn-ft-se);
658
- font-style: var(--_ctm-dn-be-ds-hr-dn-be-ne-dn-ft-se-ic);
659
- font-weight: var(--_ctm-dn-be-ds-hr-dn-be-ne-dn-ft-wt);
660
- line-height: var(--_ctm-dn-be-ds-hr-dn-be-ne-dn-le-ht);
661
- letter-spacing: var(--_ctm-dn-be-ds-hr-dn-be-ne-dn-lr-sg);
662
- box-shadow: var(--_ctm-dn-be-ds-hr-dn-be-ne-dn-sw-ae)
663
- var(--_ctm-dn-be-ds-hr-dn-be-ne-dn-sw-br) var(--_ctm-dn-be-ds-hr-dn-be-ne-dn-sw-sd)
664
- var(--_ctm-dn-be-ds-hr-dn-be-ne-dn-sw-cr);
665
- text-align: var(--_ctm-dn-be-ds-hr-dn-be-ne-dn-tt-an);
666
- text-decoration: var(--_ctm-dn-be-ds-hr-dn-be-ne-dn-ue);
667
- }
668
-
669
- .bundle_description {
670
- background-color: var(--_ctm-dn-be-ds-hr-dn-be-dn-dn-bd-cr);
671
- border-color: var(--_ctm-dn-be-ds-hr-dn-be-dn-dn-br-cr);
672
- border-radius: var(--_ctm-dn-be-ds-hr-dn-be-dn-dn-br-rs);
673
- border-style: var(--_ctm-dn-be-ds-hr-dn-be-dn-dn-br-se);
674
- border-width: var(--_ctm-dn-be-ds-hr-dn-be-dn-dn-br-wh);
675
- color: var(--_ctm-dn-be-ds-hr-dn-be-dn-dn-cr);
676
- font-family: var(--_ctm-dn-be-ds-hr-dn-be-dn-dn-ft-fy);
677
- font-size: var(--_ctm-dn-be-ds-hr-dn-be-dn-dn-ft-se);
678
- font-style: var(--_ctm-dn-be-ds-hr-dn-be-dn-dn-ft-se-ic);
679
- font-weight: var(--_ctm-dn-be-ds-hr-dn-be-dn-dn-ft-wt);
680
- line-height: var(--_ctm-dn-be-ds-hr-dn-be-dn-dn-le-ht);
681
- letter-spacing: var(--_ctm-dn-be-ds-hr-dn-be-dn-dn-lr-sg);
682
- box-shadow: var(--_ctm-dn-be-ds-hr-dn-be-dn-dn-sw-ae)
683
- var(--_ctm-dn-be-ds-hr-dn-be-dn-dn-sw-br) var(--_ctm-dn-be-ds-hr-dn-be-dn-dn-sw-sd)
684
- var(--_ctm-dn-be-ds-hr-dn-be-dn-dn-sw-cr);
685
- text-align: var(--_ctm-dn-be-ds-hr-dn-be-dn-dn-tt-an);
686
- text-decoration: var(--_ctm-dn-be-ds-hr-dn-be-dn-dn-ue);
687
- }
688
- }
689
-
690
- .category_card_wrapper {
691
- display: flex;
692
- padding: 16px;
693
- gap: 12px;
694
- background-color: var(--_ctm-dn-cy-sr-cd-dn-cy-cd-dn-dt-se-bd-cr);
695
- border-color: var(--_ctm-dn-cy-sr-cd-dn-cy-cd-dn-dt-se-br-cr);
696
- border-radius: var(--_ctm-dn-cy-sr-cd-dn-cy-cd-dn-dt-se-br-rs);
697
- border-style: var(--_ctm-dn-cy-sr-cd-dn-cy-cd-dn-dt-se-br-se);
698
- border-width: var(--_ctm-dn-cy-sr-cd-dn-cy-cd-dn-dt-se-br-wh);
699
- box-shadow: var(--_ctm-dn-cy-sr-cd-dn-cy-cd-dn-dt-se-sw-ae)
700
- var(--_ctm-dn-cy-sr-cd-dn-cy-cd-dn-dt-se-sw-br)
701
- var(--_ctm-dn-cy-sr-cd-dn-cy-cd-dn-dt-se-sw-sd)
702
- var(--_ctm-dn-cy-sr-cd-dn-cy-cd-dn-dt-se-sw-cr);
703
-
704
- &:hover {
705
- background-color: var(--_ctm-dn-cy-sr-cd-dn-cy-cd-dn-hr-se-bd-cr);
706
- border-color: var(--_ctm-dn-cy-sr-cd-dn-cy-cd-dn-hr-se-br-cr);
707
- border-radius: var(--_ctm-dn-cy-sr-cd-dn-cy-cd-dn-hr-se-br-rs);
708
- border-style: var(--_ctm-dn-cy-sr-cd-dn-cy-cd-dn-hr-se-br-se);
709
- border-width: var(--_ctm-dn-cy-sr-cd-dn-cy-cd-dn-hr-se-br-wh);
710
- box-shadow: var(--_ctm-dn-cy-sr-cd-dn-cy-cd-dn-hr-se-sw-ae)
711
- var(--_ctm-dn-cy-sr-cd-dn-cy-cd-dn-hr-se-sw-br)
712
- var(--_ctm-dn-cy-sr-cd-dn-cy-cd-dn-hr-se-sw-sd)
713
- var(--_ctm-dn-cy-sr-cd-dn-cy-cd-dn-hr-se-sw-cr);
714
- }
715
-
716
- &.active {
717
- background-color: var(--_ctm-dn-cy-sr-cd-dn-cy-cd-dn-sd-se-bd-cr);
718
- border-color: var(--_ctm-dn-cy-sr-cd-dn-cy-cd-dn-sd-se-br-cr);
719
- border-radius: var(--_ctm-dn-cy-sr-cd-dn-cy-cd-dn-sd-se-br-rs);
720
- border-style: var(--_ctm-dn-cy-sr-cd-dn-cy-cd-dn-sd-se-br-se);
721
- border-width: var(--_ctm-dn-cy-sr-cd-dn-cy-cd-dn-sd-se-br-wh);
722
- box-shadow: var(--_ctm-dn-cy-sr-cd-dn-cy-cd-dn-sd-se-sw-ae)
723
- var(--_ctm-dn-cy-sr-cd-dn-cy-cd-dn-sd-se-sw-br)
724
- var(--_ctm-dn-cy-sr-cd-dn-cy-cd-dn-sd-se-sw-sd)
725
- var(--_ctm-dn-cy-sr-cd-dn-cy-cd-dn-sd-se-sw-cr);
726
- }
727
-
728
- .category_image {
729
- width: 48px;
730
- height: 72px;
731
- }
732
-
733
- .category_card_info_wrapper {
734
- display: flex;
735
- flex-direction: column;
736
- gap: 4px;
737
- width: fit-content;
738
- white-space: nowrap;
739
-
740
- .category_card_category_name {
741
- background-color: var(--_ctm-dn-cy-sr-cd-dn-cy-ne-dn-bd-cr);
742
- color: var(--_ctm-dn-cy-sr-cd-dn-cy-ne-dn-cr);
743
- font-family: var(--_ctm-dn-cy-sr-cd-dn-cy-ne-dn-ft-fy);
744
- font-size: var(--_ctm-dn-cy-sr-cd-dn-cy-ne-dn-ft-se);
745
- font-style: var(--_ctm-dn-cy-sr-cd-dn-cy-ne-dn-ft-se-ic);
746
- font-weight: var(--_ctm-dn-cy-sr-cd-dn-cy-ne-dn-ft-wt);
747
- line-height: var(--_ctm-dn-cy-sr-cd-dn-cy-ne-dn-le-ht);
748
- letter-spacing: var(--_ctm-dn-cy-sr-cd-dn-cy-ne-dn-lr-sg);
749
- text-align: var(--_ctm-dn-cy-sr-cd-dn-cy-ne-dn-tt-an);
750
- text-decoration: var(--_ctm-dn-cy-sr-cd-dn-cy-ne-dn-ue);
751
- }
752
-
753
- .category_card_product_count {
754
- background-color: var(--_ctm-dn-cy-sr-cd-dn-cy-cd-io-dn-bd-cr);
755
- color: var(--_ctm-dn-cy-sr-cd-dn-cy-cd-io-dn-cr);
756
- font-family: var(--_ctm-dn-cy-sr-cd-dn-cy-cd-io-dn-ft-fy);
757
- font-size: var(--_ctm-dn-cy-sr-cd-dn-cy-cd-io-dn-ft-se);
758
- font-style: var(--_ctm-dn-cy-sr-cd-dn-cy-cd-io-dn-ft-se-ic);
759
- font-weight: var(--_ctm-dn-cy-sr-cd-dn-cy-cd-io-dn-ft-wt);
760
- line-height: var(--_ctm-dn-cy-sr-cd-dn-cy-cd-io-dn-le-ht);
761
- letter-spacing: var(--_ctm-dn-cy-sr-cd-dn-cy-cd-io-dn-lr-sg);
762
- text-align: var(--_ctm-dn-cy-sr-cd-dn-cy-cd-io-dn-tt-an);
763
- text-decoration: var(--_ctm-dn-cy-sr-cd-dn-cy-cd-io-dn-ue);
764
- }
765
-
766
- .category_card_product_select_count {
767
- background-color: var(--_ctm-dn-cy-sr-cd-dn-cy-cd-io-dn-bd-cr);
768
- color: var(--_ctm-dn-cy-sr-cd-dn-cy-cd-io-dn-cr);
769
- font-family: var(--_ctm-dn-cy-sr-cd-dn-cy-cd-io-dn-ft-fy);
770
- font-size: var(--_ctm-dn-cy-sr-cd-dn-cy-cd-io-dn-ft-se);
771
- font-style: var(--_ctm-dn-cy-sr-cd-dn-cy-cd-io-dn-ft-se-ic);
772
- font-weight: var(--_ctm-dn-cy-sr-cd-dn-cy-cd-io-dn-ft-wt);
773
- line-height: var(--_ctm-dn-cy-sr-cd-dn-cy-cd-io-dn-le-ht);
774
- letter-spacing: var(--_ctm-dn-cy-sr-cd-dn-cy-cd-io-dn-lr-sg);
775
- text-align: var(--_ctm-dn-cy-sr-cd-dn-cy-cd-io-dn-tt-an);
776
- text-decoration: var(--_ctm-dn-cy-sr-cd-dn-cy-cd-io-dn-ue);
777
- }
778
- }
779
- }
780
- }
781
-
782
- .bundle_details_product_list_wrapper {
783
- display: flex;
784
- flex-direction: column;
785
- gap: 16px;
786
- padding: 36px 96px;
787
- width: 100%;
788
-
789
- .add_to_cart_wrapper {
790
- display: flex;
791
- flex-direction: column;
792
- gap: 16px;
793
- padding: 16px;
794
- width: 100%;
795
- background-color: #f5f5f5;
796
-
797
- .add_to_cart_heading {
798
- border-color: var(--_ctm-dn-be-ds-hr-dn-be-ne-dn-br-cr);
799
- border-radius: var(--_ctm-dn-be-ds-hr-dn-be-ne-dn-br-rs);
800
- border-style: var(--_ctm-dn-be-ds-hr-dn-be-ne-dn-br-se);
801
- border-width: var(--_ctm-dn-be-ds-hr-dn-be-ne-dn-br-wh);
802
- color: var(--_ctm-dn-be-ds-hr-dn-be-ne-dn-cr);
803
- font-family: var(--_ctm-dn-be-ds-hr-dn-be-ne-dn-ft-fy);
804
- font-size: var(--_ctm-dn-be-ds-hr-dn-be-ne-dn-ft-se);
805
- font-style: var(--_ctm-dn-be-ds-hr-dn-be-ne-dn-ft-se-ic);
806
- font-weight: var(--_ctm-dn-be-ds-hr-dn-be-ne-dn-ft-wt);
807
- line-height: var(--_ctm-dn-be-ds-hr-dn-be-ne-dn-le-ht);
808
- letter-spacing: var(--_ctm-dn-be-ds-hr-dn-be-ne-dn-lr-sg);
809
- box-shadow: var(--_ctm-dn-be-ds-hr-dn-be-ne-dn-sw-ae)
810
- var(--_ctm-dn-be-ds-hr-dn-be-ne-dn-sw-br) var(--_ctm-dn-be-ds-hr-dn-be-ne-dn-sw-sd)
811
- var(--_ctm-dn-be-ds-hr-dn-be-ne-dn-sw-cr);
812
- text-align: var(--_ctm-dn-be-ds-hr-dn-be-ne-dn-tt-an);
813
- text-decoration: var(--_ctm-dn-be-ds-hr-dn-be-ne-dn-ue);
814
- }
815
-
816
- .add_to_cart_estimator_wrapper {
817
- display: flex;
818
- gap: 48px;
819
- justify-content: space-between;
820
- width: 100%;
821
-
822
- .add_to_cart_estimate_wrapper {
823
- display: flex;
824
- flex-direction: column;
825
- gap: 6px;
826
-
827
- .add_to_cart_estimate_label {
828
- font-family: var(--_ctm-dn-be-ds-hr-dn-be-ne-dn-ft-fy);
829
- line-height: 150%;
830
- font-size: 16px;
831
- color: #000000;
832
-
833
- .add_to_cart_qty {
834
- width: 205px;
835
- border: 1px solid #d0d5dd !important;
836
- border-radius: 2px !important;
837
- outline: none;
838
- padding: 8px 12px !important;
839
- }
840
-
841
- .add_to_cart_price {
842
- color: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-pe-dn-cr);
843
- font-family: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-pe-dn-ft-fy);
844
- font-size: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-pe-dn-ft-se);
845
- font-style: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-pe-dn-ft-se-ic);
846
- font-weight: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-pe-dn-ft-wt);
847
- line-height: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-pe-dn-le-ht);
848
- letter-spacing: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-pe-dn-lr-sg);
849
- text-align: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-pe-dn-tt-an);
850
- text-decoration: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-pe-dn-ue);
851
- }
852
- }
853
- }
854
- }
855
-
856
- .add_to_cart_btn {
857
- display: flex;
858
- justify-content: center;
859
- align-items: center;
860
- padding: 10px 16px;
861
- transition: all 0.3s ease;
862
- background-color: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-dt-se-bd-cr);
863
- border-color: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-dt-se-br-cr);
864
- border-radius: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-dt-se-br-rs);
865
- border-style: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-dt-se-br-se);
866
- border-width: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-dt-se-br-wh);
867
- color: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-dt-se-cr);
868
- font-family: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-dt-se-ft-fy);
869
- font-size: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-dt-se-ft-se);
870
- font-style: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-dt-se-ft-se-ic);
871
- font-weight: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-dt-se-ft-wt);
872
- line-height: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-dt-se-le-ht);
873
- letter-spacing: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-dt-se-lr-sg);
874
- box-shadow: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-dt-se-sw-ae)
875
- var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-dt-se-sw-br)
876
- var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-dt-se-sw-sd)
877
- var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-dt-se-sw-cr);
878
- text-align: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-dt-se-tt-an);
879
- text-decoration: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-dt-se-ue);
880
-
881
- &:hover {
882
- background-color: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-hr-se-bd-cr);
883
- border-color: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-hr-se-br-cr);
884
- border-radius: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-hr-se-br-rs);
885
- border-style: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-hr-se-br-se);
886
- border-width: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-hr-se-br-wh);
887
- color: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-hr-se-cr);
888
- font-family: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-hr-se-ft-fy);
889
- font-size: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-hr-se-ft-se);
890
- font-style: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-hr-se-ft-se-ic);
891
- font-weight: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-hr-se-ft-wt);
892
- line-height: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-hr-se-le-ht);
893
- letter-spacing: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-hr-se-lr-sg);
894
- box-shadow: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-hr-se-sw-ae)
895
- var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-hr-se-sw-br)
896
- var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-hr-se-sw-sd)
897
- var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-hr-se-sw-cr);
898
- text-align: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-hr-se-tt-an);
899
- text-decoration: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-hr-se-ue);
900
- }
901
-
902
- &.selected {
903
- background-color: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-sd-se-bd-cr);
904
- border-color: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-sd-se-br-cr);
905
- border-radius: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-sd-se-br-rs);
906
- border-style: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-sd-se-br-se);
907
- border-width: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-sd-se-br-wh);
908
- color: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-sd-se-cr);
909
- font-family: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-sd-se-ft-fy);
910
- font-size: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-sd-se-ft-se);
911
- font-style: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-sd-se-ft-se-ic);
912
- font-weight: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-sd-se-ft-wt);
913
- line-height: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-sd-se-le-ht);
914
- letter-spacing: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-sd-se-lr-sg);
915
- box-shadow: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-sd-se-sw-ae)
916
- var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-sd-se-sw-br)
917
- var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-sd-se-sw-sd)
918
- var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-sd-se-sw-cr);
919
- text-align: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-sd-se-tt-an);
920
- text-decoration: var(--_ctm-dn-pt-pl-dn-ad-to-ct-bn-dn-sd-se-ue);
921
-
922
- .icon {
923
- color: white;
924
- }
925
- }
926
- }
927
- }
928
-
929
- .bundle_details_product_wrapper {
930
- display: flex;
931
- gap: 48px;
932
- width: 100%;
933
-
934
- &.vertical_wrapper {
935
- flex-direction: row;
936
-
937
- .product_card_scroll_wrapper {
938
- min-width: 400px;
939
- max-width: 400px;
940
- display: flex;
941
- flex-direction: column;
942
- gap: 16px;
943
-
944
- .category_bundle_product_card {
945
- width: 100%;
946
- display: flex;
947
- padding: 16px;
948
- gap: 16px;
949
- background-color: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-dn-dt-se-bd-cr);
950
- border-color: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-dn-dt-se-br-cr);
951
- border-radius: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-dn-dt-se-br-rs);
952
- border-style: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-dn-dt-se-br-se);
953
- border-width: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-dn-dt-se-br-wh);
954
- box-shadow: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-dn-dt-se-sw-ae)
955
- var(--_ctm-dn-pt-cs-sl-dn-pt-cd-dn-dt-se-sw-br)
956
- var(--_ctm-dn-pt-cs-sl-dn-pt-cd-dn-dt-se-sw-sd)
957
- var(--_ctm-dn-pt-cs-sl-dn-pt-cd-dn-dt-se-sw-cr);
958
-
959
- &:hover {
960
- background-color: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-dn-hr-se-bd-cr);
961
- border-color: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-dn-hr-se-br-cr);
962
- border-radius: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-dn-hr-se-br-rs);
963
- border-style: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-dn-hr-se-br-se);
964
- border-width: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-dn-hr-se-br-wh);
965
- box-shadow: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-dn-hr-se-sw-ae)
966
- var(--_ctm-dn-pt-cs-sl-dn-pt-cd-dn-hr-se-sw-br)
967
- var(--_ctm-dn-pt-cs-sl-dn-pt-cd-dn-hr-se-sw-sd)
968
- var(--_ctm-dn-pt-cs-sl-dn-pt-cd-dn-hr-se-sw-cr);
969
- }
970
-
971
- &.active {
972
- background-color: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-dn-sd-se-bd-cr);
973
- border-color: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-dn-sd-se-br-cr);
974
- border-radius: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-dn-sd-se-br-rs);
975
- border-style: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-dn-sd-se-br-se);
976
- border-width: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-dn-sd-se-br-wh);
977
- box-shadow: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-dn-sd-se-sw-ae)
978
- var(--_ctm-dn-pt-cs-sl-dn-pt-cd-dn-sd-se-sw-br)
979
- var(--_ctm-dn-pt-cs-sl-dn-pt-cd-dn-sd-se-sw-sd)
980
- var(--_ctm-dn-pt-cs-sl-dn-pt-cd-dn-sd-se-sw-cr);
981
-
982
- .category_bundle_product_card_product_name {
983
- font-weight: bolder;
984
- }
985
- }
986
-
987
- .category_bundle_product_card_select {
988
- width: auto;
989
- }
990
-
991
- .category_bundle_product_card_img {
992
- width: 80px;
993
- height: auto;
994
- }
995
-
996
- .category_bundle_product_card_info {
997
- display: flex;
998
- flex-direction: column;
999
- gap: 24px;
1000
-
1001
- .category_bundle_product_card_info_wrapper {
1002
- display: flex;
1003
- flex-direction: column;
1004
- gap: 6px;
1005
-
1006
- .category_bundle_product_card_product_name {
1007
- background-color: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-ne-dn-bd-cr);
1008
- color: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-ne-dn-cr);
1009
- font-family: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-ne-dn-ft-fy);
1010
- font-size: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-ne-dn-ft-se);
1011
- font-style: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-ne-dn-ft-se-ic);
1012
- font-weight: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-ne-dn-ft-wt);
1013
- line-height: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-ne-dn-le-ht);
1014
- letter-spacing: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-ne-dn-lr-sg);
1015
- text-align: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-ne-dn-tt-an);
1016
- text-decoration: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-ne-dn-ue);
1017
- }
1018
-
1019
- .category_bundle_product_card_brand_name {
1020
- background-color: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-io-dn-bd-cr);
1021
- color: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-io-dn-cr);
1022
- font-family: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-io-dn-ft-fy);
1023
- font-size: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-io-dn-ft-se);
1024
- font-style: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-io-dn-ft-se-ic);
1025
- font-weight: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-io-dn-ft-wt);
1026
- line-height: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-io-dn-le-ht);
1027
- letter-spacing: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-io-dn-lr-sg);
1028
- text-align: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-io-dn-tt-an);
1029
- text-decoration: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-io-dn-ue);
1030
- }
1031
-
1032
- .category_bundle_product_card_item_name {
1033
- background-color: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-io-dn-bd-cr);
1034
- color: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-io-dn-cr);
1035
- font-family: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-io-dn-ft-fy);
1036
- font-size: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-io-dn-ft-se);
1037
- font-style: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-io-dn-ft-se-ic);
1038
- font-weight: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-io-dn-ft-wt);
1039
- line-height: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-io-dn-le-ht);
1040
- letter-spacing: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-io-dn-lr-sg);
1041
- text-align: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-io-dn-tt-an);
1042
- text-decoration: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-io-dn-ue);
1043
- }
1044
- }
1045
-
1046
- .category_bundle_product_card_product_price {
1047
- background-color: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-pe-dn-bd-cr);
1048
- color: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-pe-dn-cr);
1049
- font-family: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-pe-dn-ft-fy);
1050
- font-size: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-pe-dn-ft-se);
1051
- font-style: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-pe-dn-ft-se-ic);
1052
- font-weight: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-pe-dn-ft-wt);
1053
- line-height: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-pe-dn-le-ht);
1054
- letter-spacing: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-pe-dn-lr-sg);
1055
- text-align: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-pe-dn-tt-an);
1056
- text-decoration: var(--_ctm-dn-pt-cs-sl-dn-pt-cd-pe-dn-ue);
1057
- }
1058
- }
1059
- }
1060
- }
1061
- }
1062
-
1063
- .gallery {
1064
- display: flex;
1065
- flex-direction: column;
1066
- gap: 16px;
1067
-
1068
- .mainImage {
1069
- position: relative;
1070
- overflow: visible;
1071
- border-radius: 8px;
1072
- background-color: #f9fafb;
1073
- aspect-ratio: 1 / 1;
1074
- width: 360px;
1075
-
1076
- &::before {
1077
- content: "";
1078
- display: block;
1079
- padding-top: 100%;
1080
- }
1081
- }
1082
-
1083
- .image {
1084
- position: absolute;
1085
- top: 0;
1086
- left: 0;
1087
- width: 100%;
1088
- height: 100%;
1089
- object-fit: cover;
1090
- transition: transform 0.3s ease-in-out;
1091
-
1092
- &:hover {
1093
- transform: scale(1.05);
1094
- }
1095
- }
1096
-
1097
- .thumbnails {
1098
- display: flex;
1099
- gap: 8px;
1100
- }
1101
-
1102
- .thumbnailButton {
1103
- width: 80px;
1104
- height: 80px;
1105
- padding: 0;
1106
- border: 2px solid transparent;
1107
- border-radius: 6px;
1108
- overflow: hidden;
1109
- cursor: pointer;
1110
- background: none;
1111
- transition: border-color 0.2s ease-in-out;
1112
-
1113
- &:hover {
1114
- border-color: #dbeafe;
1115
- }
1116
-
1117
- &.active {
1118
- border-color: #2563eb;
1119
- }
1120
-
1121
- &:focus {
1122
- outline: none;
1123
- border-color: #2563eb;
1124
- box-shadow: 0 0 0 2px #dbeafe;
1125
- }
1126
- }
1127
-
1128
- .thumbnailImage {
1129
- width: 100%;
1130
- height: 100%;
1131
- object-fit: cover;
1132
- }
1133
- }
1134
-
1135
- .bundle_detail_product_information {
1136
- display: flex;
1137
- flex-direction: column;
1138
- flex: 1 0 0;
1139
- width: 100%;
1140
- gap: 24px;
1141
-
1142
- .bundle_detail_product_image_slide_wrapper {
1143
- display: flex;
1144
- max-width: 40rem;
1145
- gap: 16px;
1146
- overflow-x: scroll;
1147
-
1148
- .bundle_detail_product_image_slide {
1149
- width: 148px;
1150
- height: 248px;
1151
- }
1152
- }
1153
-
1154
- .bundle_detail_product_heading_wrapper {
1155
- display: flex;
1156
- flex-direction: column;
1157
- gap: 6px;
1158
- width: 100%;
1159
-
1160
- .bundle_detail_product_name {
1161
- background-color: var(--_ctm-dn-pt-pl-dn-pt-ne-dn-bd-cr);
1162
- color: var(--_ctm-dn-pt-pl-dn-pt-ne-dn-cr);
1163
- font-family: var(--_ctm-dn-pt-pl-dn-pt-ne-dn-ft-fy);
1164
- font-size: var(--_ctm-dn-pt-pl-dn-pt-ne-dn-ft-se);
1165
- font-style: var(--_ctm-dn-pt-pl-dn-pt-ne-dn-ft-se-ic);
1166
- font-weight: var(--_ctm-dn-pt-pl-dn-pt-ne-dn-ft-wt);
1167
- line-height: var(--_ctm-dn-pt-pl-dn-pt-ne-dn-le-ht);
1168
- letter-spacing: var(--_ctm-dn-pt-pl-dn-pt-ne-dn-lr-sg);
1169
- text-align: var(--_ctm-dn-pt-pl-dn-pt-ne-dn-tt-an);
1170
- text-decoration: var(--_ctm-dn-pt-pl-dn-pt-ne-dn-ue);
1171
- width: 100%;
1172
- }
1173
-
1174
- .bundle_detail_product_info {
1175
- background-color: var(--_ctm-dn-pt-pl-dn-pt-io-dn-bd-cr);
1176
- color: var(--_ctm-dn-pt-pl-dn-pt-io-dn-cr);
1177
- font-family: var(--_ctm-dn-pt-pl-dn-pt-io-dn-ft-fy);
1178
- font-size: var(--_ctm-dn-pt-pl-dn-pt-io-dn-ft-se);
1179
- font-style: var(--_ctm-dn-pt-pl-dn-pt-io-dn-ft-se-ic);
1180
- font-weight: var(--_ctm-dn-pt-pl-dn-pt-io-dn-ft-wt);
1181
- line-height: var(--_ctm-dn-pt-pl-dn-pt-io-dn-le-ht);
1182
- letter-spacing: var(--_ctm-dn-pt-pl-dn-pt-io-dn-lr-sg);
1183
- text-align: var(--_ctm-dn-pt-pl-dn-pt-io-dn-tt-an);
1184
- text-decoration: var(--_ctm-dn-pt-pl-dn-pt-io-dn-ue);
1185
- width: 100%;
1186
- }
1187
- }
1188
-
1189
- .bundle_detail_product_price {
1190
- background-color: var(--_ctm-dn-pt-pl-dn-pt-pe-dn-bd-cr);
1191
- color: var(--_ctm-dn-pt-pl-dn-pt-pe-dn-cr);
1192
- font-family: var(--_ctm-dn-pt-pl-dn-pt-pe-dn-ft-fy);
1193
- font-size: var(--_ctm-dn-pt-pl-dn-pt-pe-dn-ft-se);
1194
- font-style: var(--_ctm-dn-pt-pl-dn-pt-pe-dn-ft-se-ic);
1195
- font-weight: var(--_ctm-dn-pt-pl-dn-pt-pe-dn-ft-wt);
1196
- line-height: var(--_ctm-dn-pt-pl-dn-pt-pe-dn-le-ht);
1197
- letter-spacing: var(--_ctm-dn-pt-pl-dn-pt-pe-dn-lr-sg);
1198
- text-align: var(--_ctm-dn-pt-pl-dn-pt-pe-dn-tt-an);
1199
- text-decoration: var(--_ctm-dn-pt-pl-dn-pt-pe-dn-ue);
1200
- width: 100%;
1201
- }
1202
-
1203
- .standard_wrapper {
1204
- // Select Colors
1205
- .select__colors {
1206
- font-size: 16px;
1207
- color: var(--_gray-500);
1208
- display: flex;
1209
- flex-direction: column;
1210
- gap: 8px;
1211
- padding: 12px;
1212
-
1213
- .title {
1214
- margin-bottom: 4px;
1215
- color: #000000;
1216
- font-size: 16px;
1217
- }
1218
-
1219
- .select__group {
1220
- display: flex;
1221
- flex-direction: row;
1222
- gap: 8px;
1223
-
1224
- .item {
1225
- background-color: #ffffff;
1226
-
1227
- &.selected_item {
1228
- width: fit-content;
1229
- border: 1px solid #000000;
1230
- }
1231
- .select__group__item {
1232
- transition: width 0.3s ease;
1233
- width: 30px;
1234
- height: 30px;
1235
- border: 1px solid #d0d5dd;
1236
- cursor: pointer;
1237
- overflow: hidden;
1238
-
1239
- &.selected {
1240
- width: 45px;
1241
- border: 1px solid #000;
1242
- }
1243
-
1244
- &.disabled {
1245
- cursor: not-allowed;
1246
- opacity: 0.4;
1247
- }
1248
- .product-select-image {
1249
- width: 40px;
1250
- height: 40px;
1251
- object-fit: contain;
1252
- }
1253
- }
1254
- }
1255
- }
1256
- }
1257
- // Select Fit and Size
1258
- .select__fit {
1259
- font-size: 16px;
1260
- color: var(--_gray-500);
1261
- display: flex;
1262
- flex-direction: column;
1263
- gap: 8px;
1264
-
1265
- padding: 12px;
1266
-
1267
- .title {
1268
- margin-bottom: 4px;
1269
- color: #000000;
1270
- font-size: 16px;
1271
- line-height: 150%;
1272
- }
1273
- .select__group {
1274
- display: flex;
1275
- gap: 8px;
1276
- flex-wrap: wrap;
1277
- margin-bottom: 10px;
1278
- flex-direction: row;
1279
- gap: 8px;
1280
-
1281
- .select__group__item {
1282
- transition: color 0.3s ease;
1283
- padding: 5px 12px;
1284
- border-radius: 6px;
1285
- border: 1px solid var(--_gray-200);
1286
- font-size: 16px;
1287
- font-weight: 600;
1288
- cursor: pointer;
1289
- border: 1px solid #d0d5dd;
1290
- color: #000000;
1291
- font-size: 16px;
1292
- line-height: 150%;
1293
-
1294
- &.child {
1295
- border: 0;
1296
- border-radius: 0;
1297
- border-bottom: 2px solid var(--_gray-200);
1298
- }
1299
- &.selected {
1300
- border: 1px solid var(--_primary-200);
1301
- background-color: var(--_primary-25);
1302
- color: var(--_primary-400);
1303
-
1304
- border: 1pxsolid #000000;
1305
- color: #000000;
1306
- font-weight: bold;
1307
- }
1308
-
1309
- &.selected__child {
1310
- border: 0px;
1311
- border-bottom: 2px solid var(--_primary-400);
1312
- }
1313
- &.disabled {
1314
- cursor: not-allowed;
1315
- opacity: 0.4;
1316
- position: relative;
1317
- overflow: hidden;
1318
- &::after {
1319
- content: "";
1320
- width: 172%;
1321
- height: 1px;
1322
- position: absolute;
1323
- background: #f00;
1324
- left: -14px;
1325
- transform: rotate(48deg);
1326
- /* -webkit-transform: rotate(48deg); */
1327
- -moz-transform: rotate(48deg);
1328
- top: 14px;
1329
- box-shadow: 2px 0 5px rgba(255, 255, 255, 1);
1330
- }
1331
- &::before {
1332
- content: "";
1333
- width: 164%;
1334
- height: 1px;
1335
- position: absolute;
1336
- background: #f00;
1337
- left: -14px;
1338
- transform: rotate(-48deg);
1339
- -webkit-transform: rotate(-48deg);
1340
- -moz-transform: rotate(-48deg);
1341
- top: 14px;
1342
- box-shadow: 2px 0 5px rgba(255, 255, 255, 1);
1343
- }
1344
- }
1345
- }
1346
- }
1347
- }
1348
- }
1349
-
1350
- .bundle_detail_product_qty_select {
1351
- display: flex;
1352
- justify-content: space-between;
1353
- align-items: center;
1354
- width: 100%;
1355
-
1356
- .select-button {
1357
- display: flex;
1358
- align-items: center;
1359
- padding: 10px 16px;
1360
- transition: all 0.3s ease;
1361
- background-color: var(--_ctm-dn-pt-pl-dn-st-bn-dn-dt-se-bd-cr);
1362
- border-color: var(--_ctm-dn-pt-pl-dn-st-bn-dn-dt-se-br-cr);
1363
- border-radius: var(--_ctm-dn-pt-pl-dn-st-bn-dn-dt-se-br-rs);
1364
- border-style: var(--_ctm-dn-pt-pl-dn-st-bn-dn-dt-se-br-se);
1365
- border-width: var(--_ctm-dn-pt-pl-dn-st-bn-dn-dt-se-br-wh);
1366
- color: var(--_ctm-dn-pt-pl-dn-st-bn-dn-dt-se-cr);
1367
- font-family: var(--_ctm-dn-pt-pl-dn-st-bn-dn-dt-se-ft-fy);
1368
- font-size: var(--_ctm-dn-pt-pl-dn-st-bn-dn-dt-se-ft-se);
1369
- font-style: var(--_ctm-dn-pt-pl-dn-st-bn-dn-dt-se-ft-se-ic);
1370
- font-weight: var(--_ctm-dn-pt-pl-dn-st-bn-dn-dt-se-ft-wt);
1371
- line-height: var(--_ctm-dn-pt-pl-dn-st-bn-dn-dt-se-le-ht);
1372
- letter-spacing: var(--_ctm-dn-pt-pl-dn-st-bn-dn-dt-se-lr-sg);
1373
- box-shadow: var(--_ctm-dn-pt-pl-dn-st-bn-dn-dt-se-sw-ae)
1374
- var(--_ctm-dn-pt-pl-dn-st-bn-dn-dt-se-sw-br)
1375
- var(--_ctm-dn-pt-pl-dn-st-bn-dn-dt-se-sw-sd)
1376
- var(--_ctm-dn-pt-pl-dn-st-bn-dn-dt-se-sw-cr);
1377
- text-align: var(--_ctm-dn-pt-pl-dn-st-bn-dn-dt-se-tt-an);
1378
- text-decoration: var(--_ctm-dn-pt-pl-dn-st-bn-dn-dt-se-ue);
1379
-
1380
- &:hover {
1381
- background-color: var(--_ctm-dn-pt-pl-dn-st-bn-dn-hr-se-bd-cr);
1382
- border-color: var(--_ctm-dn-pt-pl-dn-st-bn-dn-hr-se-br-cr);
1383
- border-radius: var(--_ctm-dn-pt-pl-dn-st-bn-dn-hr-se-br-rs);
1384
- border-style: var(--_ctm-dn-pt-pl-dn-st-bn-dn-hr-se-br-se);
1385
- border-width: var(--_ctm-dn-pt-pl-dn-st-bn-dn-hr-se-br-wh);
1386
- color: var(--_ctm-dn-pt-pl-dn-st-bn-dn-hr-se-cr);
1387
- font-family: var(--_ctm-dn-pt-pl-dn-st-bn-dn-hr-se-ft-fy);
1388
- font-size: var(--_ctm-dn-pt-pl-dn-st-bn-dn-hr-se-ft-se);
1389
- font-style: var(--_ctm-dn-pt-pl-dn-st-bn-dn-hr-se-ft-se-ic);
1390
- font-weight: var(--_ctm-dn-pt-pl-dn-st-bn-dn-hr-se-ft-wt);
1391
- line-height: var(--_ctm-dn-pt-pl-dn-st-bn-dn-hr-se-le-ht);
1392
- letter-spacing: var(--_ctm-dn-pt-pl-dn-st-bn-dn-hr-se-lr-sg);
1393
- box-shadow: var(--_ctm-dn-pt-pl-dn-st-bn-dn-hr-se-sw-ae)
1394
- var(--_ctm-dn-pt-pl-dn-st-bn-dn-hr-se-sw-br)
1395
- var(--_ctm-dn-pt-pl-dn-st-bn-dn-hr-se-sw-sd)
1396
- var(--_ctm-dn-pt-pl-dn-st-bn-dn-hr-se-sw-cr);
1397
- text-align: var(--_ctm-dn-pt-pl-dn-st-bn-dn-hr-se-tt-an);
1398
- text-decoration: var(--_ctm-dn-pt-pl-dn-st-bn-dn-hr-se-ue);
1399
- }
1400
-
1401
- .icon {
1402
- margin-right: 8px;
1403
- color: #003366;
1404
- }
1405
-
1406
- &.selected {
1407
- background-color: var(--_ctm-dn-pt-pl-dn-st-bn-dn-sd-se-bd-cr);
1408
- border-color: var(--_ctm-dn-pt-pl-dn-st-bn-dn-sd-se-br-cr);
1409
- border-radius: var(--_ctm-dn-pt-pl-dn-st-bn-dn-sd-se-br-rs);
1410
- border-style: var(--_ctm-dn-pt-pl-dn-st-bn-dn-sd-se-br-se);
1411
- border-width: var(--_ctm-dn-pt-pl-dn-st-bn-dn-sd-se-br-wh);
1412
- color: var(--_ctm-dn-pt-pl-dn-st-bn-dn-sd-se-cr);
1413
- font-family: var(--_ctm-dn-pt-pl-dn-st-bn-dn-sd-se-ft-fy);
1414
- font-size: var(--_ctm-dn-pt-pl-dn-st-bn-dn-sd-se-ft-se);
1415
- font-style: var(--_ctm-dn-pt-pl-dn-st-bn-dn-sd-se-ft-se-ic);
1416
- font-weight: var(--_ctm-dn-pt-pl-dn-st-bn-dn-sd-se-ft-wt);
1417
- line-height: var(--_ctm-dn-pt-pl-dn-st-bn-dn-sd-se-le-ht);
1418
- letter-spacing: var(--_ctm-dn-pt-pl-dn-st-bn-dn-sd-se-lr-sg);
1419
- box-shadow: var(--_ctm-dn-pt-pl-dn-st-bn-dn-sd-se-sw-ae)
1420
- var(--_ctm-dn-pt-pl-dn-st-bn-dn-sd-se-sw-br)
1421
- var(--_ctm-dn-pt-pl-dn-st-bn-dn-sd-se-sw-sd)
1422
- var(--_ctm-dn-pt-pl-dn-st-bn-dn-sd-se-sw-cr);
1423
- text-align: var(--_ctm-dn-pt-pl-dn-st-bn-dn-sd-se-tt-an);
1424
- text-decoration: var(--_ctm-dn-pt-pl-dn-st-bn-dn-sd-se-ue);
1425
-
1426
- .icon {
1427
- color: white;
1428
- }
1429
- }
1430
- }
1431
- }
1432
- }
1433
- }
1434
-
1435
- hr {
1436
- &:last-child {
1437
- display: none;
1438
- }
1439
- }
1440
- }
1441
1311
  }
1442
1312
  }