@sonic-equipment/ui 188.0.0 → 189.0.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 (82) hide show
  1. package/dist/cards/data-card/data-card.js +1 -1
  2. package/dist/country-selector/connected-country-selector.js +0 -11
  3. package/dist/country-selector/use-countries-languages.js +0 -11
  4. package/dist/delivery-time/delivery-time.js +3 -4
  5. package/dist/exports.d.ts +12 -3
  6. package/dist/forms/fields/select-field/select-field.js +1 -1
  7. package/dist/forms/layout/form/form.js +1 -1
  8. package/dist/header/link-list/navigation-link-list.js +14 -4
  9. package/dist/index.js +13 -4
  10. package/dist/intl/formatted-date.d.ts +4 -0
  11. package/dist/intl/formatted-date.js +8 -0
  12. package/dist/intl/translation-id.d.ts +1 -1
  13. package/dist/intl/use-formatted-date.d.ts +6 -0
  14. package/dist/intl/use-formatted-date.js +19 -0
  15. package/dist/lists/menu-list/menu-list-item.js +3 -1
  16. package/dist/lists/menu-list/menu-list-provider.d.ts +11 -0
  17. package/dist/lists/menu-list/menu-list-provider.js +30 -0
  18. package/dist/lists/menu-list/menu-list.d.ts +2 -1
  19. package/dist/lists/menu-list/menu-list.js +4 -3
  20. package/dist/lists/menu-list/menu-list.module.css.js +1 -1
  21. package/dist/lists/menu-list/use-menu-list-item.d.ts +5 -0
  22. package/dist/lists/menu-list/use-menu-list-item.js +12 -0
  23. package/dist/lists/menu-list/use-menu-list.d.ts +1 -0
  24. package/dist/lists/menu-list/use-menu-list.js +11 -0
  25. package/dist/loading/dynamic-loading-overlay.d.ts +5 -0
  26. package/dist/loading/dynamic-loading-overlay.js +26 -0
  27. package/dist/loading/dynamic-loading-overlay.module.css.js +3 -0
  28. package/dist/pages/checkout/cart-page/cart-page.js +1 -1
  29. package/dist/pages/checkout/order-confirmation-page/order-confirmation-page-content.js +2 -4
  30. package/dist/pages/error-page/error-page.js +2 -7
  31. package/dist/pages/my-sonic/actions/change-password/connected-change-password-dialog.js +0 -2
  32. package/dist/pages/my-sonic/navigation/my-sonic-desktop-navigation.js +1 -1
  33. package/dist/pages/my-sonic/pages/order-history/order-history.d.ts +1 -0
  34. package/dist/pages/my-sonic/pages/order-history/order-history.js +166 -0
  35. package/dist/pages/my-sonic/pages/order-history/order-history.module.css.js +3 -0
  36. package/dist/pages/product/product-listing-page/product-listing.js +1 -1
  37. package/dist/pages/product/search-result-page/search-results-page.js +1 -1
  38. package/dist/shared/api/storefront/hooks/orders/use-fetch-orders.d.ts +10 -0
  39. package/dist/shared/api/storefront/hooks/orders/use-fetch-orders.js +13 -0
  40. package/dist/shared/api/storefront/model/storefront.model.d.ts +13 -1
  41. package/dist/shared/api/storefront/model/storefront.model.js +28 -1
  42. package/dist/shared/api/storefront/services/order-service.d.ts +12 -0
  43. package/dist/shared/api/storefront/services/order-service.js +29 -0
  44. package/dist/shared/hooks/use-intersection-observer.d.ts +3 -1
  45. package/dist/shared/hooks/use-intersection-observer.js +3 -2
  46. package/dist/shared/utils/date.d.ts +4 -1
  47. package/dist/shared/utils/date.js +6 -5
  48. package/dist/shared/utils/price.d.ts +1 -1
  49. package/dist/shared/{hooks/use-scroll-to.d.ts → utils/scrolling.d.ts} +1 -1
  50. package/dist/shared/utils/scrolling.js +16 -0
  51. package/dist/shared/utils/uuid.d.ts +2 -1
  52. package/dist/styles.css +894 -634
  53. package/dist/table/data-table.d.ts +37 -10
  54. package/dist/table/data-table.js +72 -17
  55. package/dist/table/data-table.module.css.js +1 -1
  56. package/dist/table/elements/switch-sort-direction.d.ts +2 -0
  57. package/dist/table/elements/switch-sort-direction.js +11 -0
  58. package/dist/table/elements/table-context.d.ts +6 -5
  59. package/dist/table/elements/table-context.js +1 -16
  60. package/dist/table/elements/table-provider.d.ts +6 -5
  61. package/dist/table/elements/table-provider.js +23 -17
  62. package/dist/table/elements/table-row-context.d.ts +2 -2
  63. package/dist/table/elements/table-row-provider.js +4 -4
  64. package/dist/table/elements/table-sort-button.d.ts +8 -7
  65. package/dist/table/elements/table-sort-button.js +5 -4
  66. package/dist/table/elements/table.d.ts +1 -1
  67. package/dist/table/elements/table.js +2 -2
  68. package/dist/table/elements/table.module.css.js +1 -1
  69. package/dist/table/elements/td.d.ts +1 -1
  70. package/dist/table/elements/th.d.ts +1 -7
  71. package/dist/table/elements/th.js +2 -3
  72. package/dist/table/elements/tr.d.ts +2 -8
  73. package/dist/table/elements/tr.js +1 -3
  74. package/dist/table/elements/types.d.ts +36 -0
  75. package/dist/table/elements/use-table.js +1 -3
  76. package/dist/table/elements/use-td.d.ts +1 -1
  77. package/dist/table/elements/use-th.d.ts +2 -2
  78. package/package.json +1 -1
  79. package/dist/shared/hooks/use-scroll-to.js +0 -19
  80. package/dist/table/elements/table-column-properties.d.ts +0 -10
  81. package/dist/table/elements/use-tr.d.ts +0 -2
  82. package/dist/table/elements/use-tr.js +0 -16
package/dist/styles.css CHANGED
@@ -4653,6 +4653,13 @@ button.swiper-pagination-bullet {
4653
4653
  justify-self: center;
4654
4654
  }
4655
4655
 
4656
+ .select-field-module-T07fb .select-field-module-uGX30 .select-field-module-NyDa0 {
4657
+ block-size: 20px;
4658
+ grid-area: icon;
4659
+ inline-size: 20px;
4660
+ justify-self: center;
4661
+ }
4662
+
4656
4663
  .select-field-module-T07fb[data-invalid] .select-field-module-uGX30 {
4657
4664
  border-bottom-color: var(--color-brand-red);
4658
4665
  }
@@ -5891,44 +5898,31 @@ button.swiper-pagination-bullet {
5891
5898
  --ml-item-inner-spacing: var(--space-12);
5892
5899
  --ml-item-outer-spacing: var(--space-16);
5893
5900
  --ml-icon-size: 16px;
5901
+ --ml-min-size: 56px;
5894
5902
 
5895
5903
  position: relative;
5896
5904
  display: grid;
5897
5905
  overflow: hidden;
5898
5906
  color: currentcolor;
5907
+ container-type: inline-size;
5899
5908
  font-size: var(--ml-font-size);
5900
5909
  grid-template: auto 1fr / 1fr;
5901
5910
  grid-template-areas:
5902
5911
  'back-button'
5903
5912
  'scroll-area';
5913
+ min-inline-size: var(--ml-min-size);
5904
5914
  -webkit-user-select: none;
5905
5915
  -moz-user-select: none;
5906
5916
  user-select: none;
5907
5917
  }
5908
5918
 
5909
- /* TODO: scroll area row should stretch to avail height, but also enforce the scroll-area to scroll if overflowing */
5910
-
5911
- .menu-list-module-TloB9.menu-list-module-xUg6i {
5912
- --ml-font-size: var(--font-size-18);
5913
- --ml-font-weight: var(--font-weight-bold);
5914
- --ml-button-hover-color: var(--color-white);
5915
- --ml-button-hover-bgcolor: var(--color-brand-red);
5916
- --ml-link-hover-color: var(--color-white);
5917
- --ml-link-hover-bgcolor: var(--color-brand-red);
5918
- --ml-selected-color: var(--color-white);
5919
- --ml-selected-bgcolor: var(--color-brand-red);
5920
- }
5921
-
5922
5919
  /* scroll area */
5923
-
5924
5920
  .menu-list-module-TloB9.menu-list-module-AiDgG .menu-list-module-x3D-V {
5921
+ overflow: hidden auto;
5925
5922
  grid-area: scroll-area;
5926
- overflow-y: auto;
5927
5923
  scrollbar-width: thin;
5928
5924
  }
5929
-
5930
5925
  /* list */
5931
-
5932
5926
  .menu-list-module-TloB9 .menu-list-module-m3rpo {
5933
5927
  display: grid;
5934
5928
  padding: 0 0 1px;
@@ -5936,10 +5930,56 @@ button.swiper-pagination-bullet {
5936
5930
  grid-template-columns: 1fr;
5937
5931
  list-style: none;
5938
5932
  }
5939
-
5940
5933
  .menu-list-module-TloB9 .menu-list-module-m3rpo > * {
5941
5934
  margin-block: 0 -1px;
5942
5935
  }
5936
+ /* primary variant */
5937
+ .menu-list-module-TloB9.menu-list-module-xUg6i {
5938
+ --ml-font-size: var(--font-size-18);
5939
+ --ml-font-weight: var(--font-weight-bold);
5940
+ --ml-button-hover-color: var(--color-white);
5941
+ --ml-button-hover-bgcolor: var(--color-brand-red);
5942
+ --ml-link-hover-color: var(--color-white);
5943
+ --ml-link-hover-bgcolor: var(--color-brand-red);
5944
+ --ml-selected-color: var(--color-white);
5945
+ --ml-selected-bgcolor: var(--color-brand-red);
5946
+ }
5947
+ /* badges variant */
5948
+ @container (inline-size < 216px) {
5949
+ .menu-list-module-TloB9.menu-list-module-vd14x .menu-list-module-m3rpo {
5950
+ /* switch to fixed width below certain container sizes */
5951
+ inline-size: var(--ml-min-size);
5952
+ }
5953
+ /* no separator lines */
5954
+ .menu-list-module-TloB9.menu-list-module-vd14x .menu-list-module-4QhF4::before,
5955
+ .menu-list-module-TloB9.menu-list-module-vd14x .menu-list-module-4QhF4::after {
5956
+ display: none;
5957
+ }
5958
+
5959
+ /* hide the label */
5960
+ .menu-list-module-TloB9.menu-list-module-vd14x .menu-list-module-4QhF4 .menu-list-module-xFYyo > span {
5961
+ position: absolute;
5962
+ overflow: hidden;
5963
+ block-size: 0;
5964
+ inline-size: 0;
5965
+ }
5966
+
5967
+ .menu-list-module-TloB9.menu-list-module-vd14x .menu-list-module-4QhF4 .menu-list-module-4PbP- {
5968
+ margin: 0;
5969
+ }
5970
+
5971
+ .menu-list-module-TloB9.menu-list-module-vd14x .menu-list-module-4QhF4.menu-list-module-61uJb {
5972
+ grid-template-areas: '. imagebadge .';
5973
+ grid-template-columns: var(--mli-outer-spacing) max-content var(
5974
+ --mli-outer-spacing
5975
+ );
5976
+ }
5977
+
5978
+ /* stylelint-disable-next-line max-nesting-depth */
5979
+ .menu-list-module-TloB9.menu-list-module-vd14x .menu-list-module-4QhF4.menu-list-module-61uJb .menu-list-module-syyw9 {
5980
+ display: none;
5981
+ }
5982
+ }
5943
5983
 
5944
5984
  /* menu list back button */
5945
5985
 
@@ -6048,7 +6088,7 @@ button.swiper-pagination-bullet {
6048
6088
  minmax(var(--ml-item-minimal-height, 48px), min-content) / var(
6049
6089
  --mli-outer-spacing
6050
6090
  )
6051
- minmax(0, min-content) 1fr var(--mli-outer-spacing);
6091
+ max-content 1fr var(--mli-outer-spacing);
6052
6092
  grid-template-areas: '. imagebadge label .';
6053
6093
 
6054
6094
  /* children icon */
@@ -6188,13 +6228,14 @@ button.swiper-pagination-bullet {
6188
6228
  /* has children */
6189
6229
 
6190
6230
  .menu-list-module-4QhF4.menu-list-module-61uJb {
6231
+ --arrow-space: calc(
6232
+ var(--mli-inner-spacing) + var(--mli-icon-size) + var(--mli-inner-spacing)
6233
+ );
6234
+
6191
6235
  grid-template-areas: '. imagebadge label icon';
6192
6236
  grid-template-columns:
6193
- var(--mli-outer-spacing) minmax(0, min-content)
6194
- 1fr calc(
6195
- var(--mli-inner-spacing) + var(--mli-icon-size) +
6196
- var(--mli-inner-spacing)
6197
- );
6237
+ var(--mli-outer-spacing) max-content
6238
+ 1fr var(--arrow-space);
6198
6239
  }
6199
6240
 
6200
6241
  .menu-list-module-4QhF4.menu-list-module-61uJb:not(.menu-list-module-hiMca):has(.menu-list-module-xFYyo:hover) {
@@ -6712,6 +6753,61 @@ button.swiper-pagination-bullet {
6712
6753
  place-items: center;
6713
6754
  }
6714
6755
 
6756
+ .dynamic-loading-overlay-module-CAecM {
6757
+ --content-opacity: 0.35;
6758
+ --indicator-min-size: 176px;
6759
+ --intersected-height: 0px;
6760
+ --transition-duration: var(--transition-duration-short);
6761
+ --transition-delay: var(--transition-duration-short);
6762
+
6763
+ position: relative;
6764
+ display: grid;
6765
+ box-sizing: border-box;
6766
+ align-self: start;
6767
+ }
6768
+
6769
+ .dynamic-loading-overlay-module-CAecM .dynamic-loading-overlay-module-XeFAb {
6770
+ z-index: 1;
6771
+ grid-column: 1;
6772
+ grid-row: 1;
6773
+ transition: opacity var(--transition-duration);
6774
+ }
6775
+
6776
+ .dynamic-loading-overlay-module-CAecM .dynamic-loading-overlay-module-lhL5i {
6777
+ position: sticky;
6778
+ z-index: 2;
6779
+ box-sizing: border-box;
6780
+ block-size: var(--intersected-height);
6781
+ grid-column: 1;
6782
+ grid-row: 1;
6783
+ inset: 0;
6784
+ max-block-size: 100svh;
6785
+ min-block-size: var(--indicator-min-size);
6786
+ opacity: 0;
6787
+ pointer-events: none;
6788
+ transition:
6789
+ visibility var(--transition-duration),
6790
+ opacity var(--transition-duration);
6791
+ visibility: hidden;
6792
+ }
6793
+
6794
+ .dynamic-loading-overlay-module-CAecM .dynamic-loading-overlay-module-lhL5i .dynamic-loading-overlay-module-cpo4H {
6795
+ position: absolute;
6796
+ margin: auto;
6797
+ inset: 0;
6798
+ }
6799
+
6800
+ .dynamic-loading-overlay-module-CAecM.dynamic-loading-overlay-module-3bed- .dynamic-loading-overlay-module-XeFAb {
6801
+ opacity: var(--content-opacity);
6802
+ transition-delay: var(--transition-delay);
6803
+ }
6804
+
6805
+ .dynamic-loading-overlay-module-CAecM.dynamic-loading-overlay-module-3bed- .dynamic-loading-overlay-module-lhL5i {
6806
+ opacity: 1;
6807
+ transition-delay: var(--transition-delay);
6808
+ visibility: visible;
6809
+ }
6810
+
6715
6811
  .loading-overlay-module-L67Gy {
6716
6812
  position: fixed;
6717
6813
  display: grid;
@@ -7725,9 +7821,20 @@ button.swiper-pagination-bullet {
7725
7821
  }
7726
7822
 
7727
7823
  @media (width >= 768px) {.my-sonic-layout-module-ep0n3 {
7728
- --aside-size: clamp(236px, 22%, 308px);
7729
7824
  --gap: var(--space-20);
7730
7825
  --margin: 0;
7826
+ --aside-size: 56px;
7827
+ --aside-sticky-top: calc(var(--header-bottom, 0) + var(--space-16));
7828
+
7829
+ grid-template-areas:
7830
+ '. . title'
7831
+ 'aside . main';
7832
+ grid-template-columns: var(--aside-size) var(--gap) 1fr
7833
+ }
7834
+ }
7835
+
7836
+ @media (width >= 1024px) {.my-sonic-layout-module-ep0n3 {
7837
+ --aside-size: clamp(56px, 22%, 308px);
7731
7838
 
7732
7839
  grid-template-areas:
7733
7840
  'pre-aside . title'
@@ -7738,32 +7845,50 @@ button.swiper-pagination-bullet {
7738
7845
 
7739
7846
  @media (width >= 1440px) {.my-sonic-layout-module-ep0n3 {
7740
7847
  --gap: var(--space-40);
7741
- --padding: var(--space-48)
7848
+ --padding: var(--space-48);
7849
+ --aside-sticky-top: calc(var(--header-bottom, 0) + var(--space-20))
7742
7850
  }
7743
7851
  }
7744
7852
 
7853
+ /* title */
7854
+
7745
7855
  .my-sonic-layout-module-ep0n3 .my-sonic-layout-module-yMdPQ {
7746
7856
  align-self: last baseline;
7747
7857
  grid-area: title;
7748
7858
  margin-block-end: var(--margin);
7749
7859
  }
7750
7860
 
7861
+ /* main */
7862
+
7751
7863
  .my-sonic-layout-module-ep0n3 .my-sonic-layout-module-f0Bhf {
7752
7864
  container-type: inline-size;
7753
7865
  grid-area: main;
7754
7866
  }
7755
7867
 
7868
+ /* pre aside */
7869
+
7756
7870
  .my-sonic-layout-module-ep0n3 .my-sonic-layout-module-6pWHC {
7757
7871
  align-self: last baseline;
7758
7872
  grid-area: pre-aside;
7759
7873
  margin-block-end: var(--margin);
7760
7874
  }
7761
7875
 
7876
+ /* aside */
7877
+
7762
7878
  .my-sonic-layout-module-ep0n3 .my-sonic-layout-module--OEV- {
7879
+ align-self: start;
7763
7880
  grid-area: aside;
7764
7881
  margin-block-end: var(--margin);
7765
7882
  }
7766
7883
 
7884
+ @media (width >= 768px) {
7885
+
7886
+ .my-sonic-layout-module-ep0n3 .my-sonic-layout-module--OEV- {
7887
+ position: sticky;
7888
+ inset-block-start: var(--aside-sticky-top)
7889
+ }
7890
+ }
7891
+
7767
7892
  .my-sonic-desktop-navigation-module-f8Y3F {
7768
7893
  font-weight: bold;
7769
7894
  }
@@ -7780,794 +7905,929 @@ button.swiper-pagination-bullet {
7780
7905
  }
7781
7906
  }
7782
7907
 
7783
- .product-details-page-layout-module-pPtZX {
7784
- display: flex;
7785
- flex-direction: column;
7786
- padding-top: var(--space-24);
7787
- margin-bottom: var(--space-64);
7788
- gap: var(--space-64);
7908
+ .table-module-pevNG {
7909
+ position: relative;
7910
+ box-sizing: border-box;
7911
+ container-name: table-container;
7912
+ container-type: inline-size;
7913
+ overflow-x: auto;
7789
7914
  }
7790
7915
 
7791
- .product-details-page-layout-module-pPtZX .product-details-page-layout-module-KCKLZ .product-details-page-layout-module-0uf92 {
7792
- height: 100%;
7793
- align-self: flex-start;
7794
- margin-bottom: var(--space-16);
7795
- }
7916
+ .table-module-k47fT {
7917
+ --columns: 1;
7918
+ --border-color: var(--color-gray-200);
7919
+ --bgcolor-odd: var(--color-white);
7920
+ --bgcolor-even: var(--color-gray-50);
7921
+ --bgcolor-col-selected: rgb(0 0 0 / 5%);
7922
+ --bgcolor-row-selected: rgb(0 0 0 / 10%);
7923
+ --bgcolor-col-highlight: rgb(0 0 0 / 2.5%);
7924
+ --bgcolor-row-highlight: rgb(0 0 0 / 2.5%);
7925
+ --cell-padding: var(--space-12);
7926
+ --grid-columns-default: repeat(var(--columns), minmax(min-content, auto));
7927
+ --shadow: rgb(0 0 0 / 12.5%);
7928
+ --z-column: 10;
7929
+ --z-sticky: 11;
7930
+ --z-selected: 12;
7796
7931
 
7797
- .product-details-page-layout-module-pPtZX .product-details-page-layout-module-KCKLZ .product-details-page-layout-module-3-19O {
7798
- position: sticky;
7799
- top: calc(var(--header-bottom) + var(--space-8));
7800
- height: -moz-fit-content;
7801
- height: fit-content;
7802
- }
7932
+ @property --columns {
7933
+ initial-value: 1;
7934
+ syntax: '<integer>';
7935
+ }
7803
7936
 
7804
- .product-details-page-layout-module-pPtZX .product-details-page-layout-module-lfAgH {
7805
- display: flex;
7806
- flex-direction: column;
7807
- align-items: center;
7808
- gap: var(--space-24);
7937
+ position: relative;
7938
+ display: grid;
7939
+ box-sizing: border-box;
7940
+ padding: 0;
7941
+ background: var(--color-white);
7942
+ grid-template-columns: var(--grid-columns, var(--grid-columns-default));
7943
+ grid-template-rows:
7944
+ [clmns-start thead-start]
7945
+ auto
7946
+ [thead-end tbody-start]
7947
+ auto
7948
+ [tbody-end clmns-end];
7949
+ line-height: 1.25;
7950
+ max-inline-size: -moz-fit-content;
7951
+ max-inline-size: fit-content;
7952
+
7953
+ /* column highlighting (just 10 columns) */
7954
+ }
7955
+
7956
+ /* columns */
7957
+
7958
+ .table-module-k47fT .table-module-1lgqE {
7959
+ display: grid;
7960
+ grid-column: 1 / -1;
7961
+ grid-row: clmns;
7962
+ grid-template-columns: subgrid;
7963
+ pointer-events: none;
7809
7964
  }
7810
7965
 
7811
- .product-details-page-layout-module-pPtZX .product-details-page-layout-module-e8ZNQ {
7966
+ .table-module-k47fT .table-module-dISOo {
7812
7967
  position: relative;
7813
- left: -10px;
7814
- width: 100dvw;
7968
+ z-index: var(--z-column);
7815
7969
  }
7816
7970
 
7817
- @media (width >= 768px) {
7818
- .product-details-page-layout-module-pPtZX .product-details-page-layout-module-e8ZNQ {
7819
- position: relative;
7820
- left: auto;
7821
- width: auto;
7971
+ .table-module-k47fT .table-module-dISOo.table-module-WGz-I {
7972
+ background-blend-mode: multiply;
7973
+ background-color: var(--bgcolor-col-selected);
7822
7974
  }
7823
- }
7824
7975
 
7825
- @media (width >= 1024px) {
7826
- .product-details-page-layout-module-pPtZX .product-details-page-layout-module-KCKLZ {
7827
- display: grid;
7828
- gap: var(--space-24);
7829
- grid-template-columns: 396px 1fr;
7976
+ .table-module-k47fT .table-module-dISOo.table-module-PQejy {
7977
+ position: sticky;
7978
+ z-index: var(--z-selected);
7979
+ container-name: sticky-column;
7980
+ /* stylelint-disable-next-line declaration-property-value-no-unknown */
7981
+ container-type: scroll-state;
7982
+ inset-inline: 0;
7830
7983
  }
7831
7984
 
7832
- .product-details-page-layout-module-pPtZX .product-details-page-layout-module-KCKLZ .product-details-page-layout-module-0uf92 {
7833
- margin-bottom: 0;
7985
+ .table-module-k47fT .table-module-dISOo.table-module-PQejy::before,
7986
+ .table-module-k47fT .table-module-dISOo.table-module-PQejy::after {
7987
+ position: absolute;
7988
+ background: linear-gradient(-90deg, var(--shadow) 0%, transparent 100%);
7989
+ content: '';
7990
+ inline-size: var(--space-8);
7991
+ inset-block: 0;
7992
+ opacity: 0;
7993
+ transition: opacity var(--transition-duration-short);
7834
7994
  }
7835
- }
7836
7995
 
7837
- @media (width >= 1440px) {
7838
- .product-details-page-layout-module-pPtZX .product-details-page-layout-module-KCKLZ {
7839
- gap: var(--space-32);
7840
- grid-template-columns: 600px 1fr;
7841
- }
7842
- }
7996
+ .table-module-k47fT .table-module-dISOo.table-module-PQejy::before {
7997
+ inset-inline: auto 100%;
7998
+ }
7843
7999
 
7844
- .product-detail-images-module-ERzjA {
7845
- display: flex;
7846
- width: 100%;
7847
- height: 100%;
7848
- box-sizing: border-box;
7849
- align-items: center;
7850
- justify-content: center;
7851
- padding: 64px 48px;
7852
- }
8000
+ @container sticky-column scroll-state(stuck: inline-end) {
7853
8001
 
7854
- .product-details-panel-module-MXfPm {
7855
- display: flex;
7856
- flex-direction: column;
7857
- gap: 24px;
7858
- }
8002
+ .table-module-k47fT .table-module-dISOo.table-module-PQejy::before {
8003
+ opacity: 1
8004
+ }
8005
+ }
7859
8006
 
7860
- .product-details-panel-module-MXfPm .product-details-panel-module-rtZYR {
7861
- display: flex;
7862
- flex-direction: column;
7863
- gap: 8px;
7864
- }
8007
+ .table-module-k47fT .table-module-dISOo.table-module-PQejy::after {
8008
+ inset-inline: 100% auto;
8009
+ rotate: 180deg;
8010
+ }
7865
8011
 
7866
- .product-details-panel-module-MXfPm .product-details-panel-module-IbS9- {
7867
- align-self: start;
7868
- }
8012
+ @container sticky-column scroll-state(stuck: inline-start) {
7869
8013
 
7870
- .product-details-panel-module-MXfPm .product-details-panel-module-wHZCr {
7871
- display: flex;
7872
- width: 100%;
7873
- align-items: flex-end;
7874
- justify-content: space-between;
8014
+ .table-module-k47fT .table-module-dISOo.table-module-PQejy::after {
8015
+ opacity: 1
8016
+ }
8017
+ }
8018
+
8019
+ /* cells */
8020
+
8021
+ .table-module-k47fT .table-module-jRXnY,
8022
+ .table-module-k47fT .table-module-wJwSq {
8023
+ overflow: hidden;
8024
+ box-sizing: border-box;
8025
+ padding: var(--cell-padding);
8026
+ text-align: start;
8027
+ text-wrap: balance;
7875
8028
  }
7876
8029
 
7877
- .product-details-panel-module-MXfPm .product-details-panel-module-wHZCr .product-details-panel-module-dI2JL {
7878
- --price-toggle-size: var(--price-size-larger);
8030
+ .table-module-k47fT .table-module-jRXnY.table-module-h7qdo, .table-module-k47fT .table-module-wJwSq.table-module-h7qdo {
8031
+ text-wrap: nowrap;
7879
8032
  }
7880
8033
 
7881
- .product-details-panel-module-MXfPm .product-details-panel-module-wHZCr .product-details-panel-module-QLafW {
7882
- display: flex;
7883
- align-items: center;
8034
+ .table-module-k47fT .table-module-jRXnY.table-module-PQejy, .table-module-k47fT .table-module-wJwSq.table-module-PQejy {
8035
+ position: sticky;
8036
+ z-index: var(--z-sticky);
8037
+ inset-inline: 0;
7884
8038
  }
7885
8039
 
7886
- .product-details-panel-module-MXfPm .product-details-panel-module-9L-Nm {
7887
- margin-top: var(--space-12);
7888
- color: var(--color-brand-dark-gray);
7889
- font-size: 16px;
7890
- font-stretch: normal;
7891
- font-style: normal;
7892
- font-weight: normal;
7893
- letter-spacing: normal;
7894
- line-height: 1.5;
8040
+ .table-module-k47fT thead th {
8041
+ position: relative;
7895
8042
  }
7896
8043
 
7897
- .product-details-panel-module-MXfPm .product-details-panel-module-9L-Nm p {
7898
- margin: 0;
8044
+ .table-module-k47fT thead th:not(:last-child)::after {
8045
+ position: absolute;
8046
+ border-inline-end: 1px solid var(--border-color);
8047
+ content: '';
8048
+ inset: var(--space-8) 0 var(--space-8) auto;
7899
8049
  }
7900
8050
 
7901
- .product-details-panel-module-MXfPm .product-details-panel-module-NC2nx {
7902
- margin-top: var(--space-16);
7903
- margin-bottom: var(--space-24);
7904
- }
8051
+ .table-module-k47fT tbody th.table-module-EWdty, .table-module-k47fT tbody td.table-module-EWdty {
8052
+ text-align: start;
8053
+ }
7905
8054
 
7906
- .product-details-recently-viewed-section-module-cGFgH {
7907
- display: flex;
7908
- flex-direction: column;
7909
- align-items: center;
7910
- gap: var(--space-24);
7911
- }
8055
+ .table-module-k47fT tbody th.table-module-yJD74, .table-module-k47fT tbody td.table-module-yJD74 {
8056
+ text-align: end;
8057
+ }
7912
8058
 
7913
- & .promo-banner-module-yuVEO {
7914
- position: relative;
7915
- display: block;
7916
- height: 122px;
7917
- outline: none;
7918
- }
8059
+ .table-module-k47fT tbody th.table-module-XAdfy, .table-module-k47fT tbody td.table-module-XAdfy {
8060
+ text-align: center;
8061
+ }
7919
8062
 
7920
- & .promo-banner-module-yuVEO.promo-banner-module-ut8Kd {
7921
- width: 250px;
7922
- }
8063
+ /* rows */
7923
8064
 
7924
- & .promo-banner-module-yuVEO.promo-banner-module-CSkIw {
7925
- width: 310px;
8065
+ .table-module-k47fT .table-module-Nisf1 {
8066
+ display: grid;
8067
+ border-block-end: 1px solid var(--border-color);
8068
+ grid-column: 1 / -1;
8069
+ grid-template-columns: subgrid;
8070
+ grid-template-rows: subgrid;
7926
8071
  }
7927
8072
 
7928
- & .promo-banner-module-yuVEO picture {
7929
- width: 100%;
7930
- }
8073
+ .table-module-k47fT .table-module-Nisf1 .table-module-jRXnY,
8074
+ .table-module-k47fT .table-module-Nisf1 .table-module-wJwSq {
8075
+ background-color: var(--bgcolor-odd);
8076
+ }
7931
8077
 
7932
- & .promo-banner-module-yuVEO picture img {
7933
- width: 100%;
8078
+ .table-module-k47fT .table-module-Nisf1:nth-child(even) .table-module-jRXnY,
8079
+ .table-module-k47fT .table-module-Nisf1:nth-child(even) .table-module-wJwSq {
8080
+ background-color: var(--bgcolor-even);
8081
+ }
8082
+
8083
+ :has(.table-module-3zZB6) .table-module-k47fT .table-module-Nisf1::after {
8084
+ z-index: var(--z-selected);
8085
+ background-blend-mode: multiply;
8086
+ background-color: var(--bgcolor-row-highlight);
8087
+ content: '';
8088
+ grid-column: 1 / -1;
8089
+ opacity: 0;
8090
+ pointer-events: none;
8091
+ }
8092
+
8093
+ @media (pointer: fine) {
8094
+
8095
+ :has(.table-module-3zZB6) .table-module-k47fT .table-module-Nisf1:hover::after {
8096
+ opacity: 1
8097
+ }
8098
+ }
8099
+
8100
+ .table-module-k47fT .table-module-Nisf1.table-module-WGz-I::after {
8101
+ z-index: var(--z-selected);
8102
+ background-blend-mode: multiply;
8103
+ background-color: var(--bgcolor-row-selected);
8104
+ content: '';
8105
+ grid-column: 1 / -1;
8106
+ opacity: 1;
8107
+ pointer-events: none;
8108
+ }
8109
+
8110
+ .table-module-k47fT .table-module-Nisf1.table-module-qRfjM {
8111
+ cursor: pointer;
7934
8112
  }
7935
8113
 
7936
- & .promo-banner-module-yuVEO:focus-visible::after {
7937
- position: absolute;
7938
- display: block;
7939
- background-color: transparent;
7940
- box-shadow: var(--shadow-focus-outline) inset;
7941
- content: '';
7942
- inset: 0;
7943
- pointer-events: none;
7944
- -webkit-user-select: none;
7945
- -moz-user-select: none;
7946
- user-select: none;
7947
- }
8114
+ /* table header */
7948
8115
 
7949
- @media (width >= 768px) {
7950
- & .promo-banner-module-yuVEO {
7951
- height: 230px;
8116
+ .table-module-k47fT .table-module-DK-wn {
8117
+ display: grid;
8118
+ grid-column: 1 / -1;
8119
+ grid-row: thead;
8120
+ grid-template-columns: subgrid;
7952
8121
  }
7953
8122
 
7954
- & .promo-banner-module-yuVEO.promo-banner-module-CSkIw,
7955
- & .promo-banner-module-yuVEO.promo-banner-module-ut8Kd {
7956
- width: auto;
8123
+ .table-module-k47fT .table-module-DK-wn .table-module-Nisf1 {
8124
+ border-block-start: 0;
7957
8125
  }
7958
- }
7959
8126
 
7960
- .promo-banners-module-uVyxh {
7961
- margin-bottom: var(--space-24);
7962
- }
8127
+ .table-module-k47fT .table-module-DK-wn .table-module-Nisf1 .table-module-jRXnY,
8128
+ .table-module-k47fT .table-module-DK-wn .table-module-Nisf1 .table-module-wJwSq {
8129
+ background-color: var(--bgcolor-even);
8130
+ font-weight: var(--font-weight-bold);
8131
+ }
7963
8132
 
7964
- @media (width >= 768px) {
7965
- .promo-banners-module-uVyxh {
8133
+ /* table body */
8134
+
8135
+ .table-module-k47fT .table-module-tygZb {
7966
8136
  display: grid;
7967
- margin-bottom: var(--space-32);
7968
- gap: var(--space-16);
7969
- grid-template-columns: 2fr 1fr;
8137
+ grid-column: 1 / -1;
8138
+ grid-row: tbody;
8139
+ grid-template-columns: subgrid;
8140
+ transition: opacity var(--transition-duration-short);
7970
8141
  }
7971
- }
7972
8142
 
7973
- @media (width >= 1440px) {
7974
- .promo-banners-module-uVyxh {
7975
- gap: var(--space-24);
7976
- grid-template-columns: 1.5fr 1fr;
8143
+ /* full width table */
8144
+
8145
+ .table-module-k47fT.table-module-YnmWV {
8146
+ min-inline-size: 100%;
7977
8147
  }
7978
- }
7979
8148
 
7980
- .sidebar-module-fSa9Q.sidebar-module-AIq0M {
7981
- --transition-timing-function: ease-in-out;
8149
+ .table-module-k47fT.table-module-YnmWV .table-module-skhNZ {
8150
+ text-align: start;
8151
+ }
7982
8152
 
7983
- position: fixed;
7984
- z-index: calc(var(--sidebar-layer) + 1);
7985
- top: 0;
7986
- left: 0;
7987
- width: 382px;
7988
- max-width: 100vw;
7989
- height: 100%;
7990
- box-sizing: border-box;
7991
- padding-top: 46px;
7992
- padding-bottom: 56px;
7993
- background: var(--color-white);
7994
- }
8153
+ /* no text wrap for entire table */
7995
8154
 
7996
- .sidebar-module-fSa9Q.sidebar-module-AIq0M.sidebar-module-LEZgg {
7997
- transition: transform var(--transition-duration)
7998
- var(--transition-timing-function);
7999
- }
8155
+ .table-module-k47fT.table-module-h7qdo .table-module-Nisf1 .table-module-jRXnY,
8156
+ .table-module-k47fT.table-module-h7qdo .table-module-Nisf1 .table-module-wJwSq {
8157
+ text-wrap: nowrap;
8158
+ }
8000
8159
 
8001
- .sidebar-module-fSa9Q.sidebar-module-AIq0M.sidebar-module-lV7wp {
8002
- box-shadow: var(--box-shadow-heavy);
8003
- pointer-events: auto;
8004
- transform: translateX(0);
8160
+ .table-module-k47fT col:hover {
8161
+ background-color: red;
8005
8162
  }
8006
8163
 
8007
- .sidebar-module-fSa9Q.sidebar-module-AIq0M.sidebar-module-dGDrr {
8008
- box-shadow: none;
8009
- pointer-events: none;
8010
- transform: translateX(-100%);
8011
- }
8164
+ @media (pointer: fine) {
8012
8165
 
8013
- .sidebar-module-fSa9Q.sidebar-module-AIq0M .sidebar-module-2puGC {
8014
- position: absolute;
8015
- z-index: calc(var(--sidebar-layer) + 2);
8016
- top: 36px;
8017
- right: 8px;
8166
+ .table-module-k47fT.table-module-JEp5f:has(.table-module-DK-wn th.table-module-hyPmy:nth-child(1):hover) .table-module-dISOo:nth-child(1),
8167
+ .table-module-k47fT.table-module-JEp5f:has(.table-module-DK-wn th.table-module-hyPmy:nth-child(2):hover) .table-module-dISOo:nth-child(2),
8168
+ .table-module-k47fT.table-module-JEp5f:has(.table-module-DK-wn th.table-module-hyPmy:nth-child(3):hover) .table-module-dISOo:nth-child(3),
8169
+ .table-module-k47fT.table-module-JEp5f:has(.table-module-DK-wn th.table-module-hyPmy:nth-child(4):hover) .table-module-dISOo:nth-child(4),
8170
+ .table-module-k47fT.table-module-JEp5f:has(.table-module-DK-wn th.table-module-hyPmy:nth-child(5):hover) .table-module-dISOo:nth-child(5),
8171
+ .table-module-k47fT.table-module-JEp5f:has(.table-module-DK-wn th.table-module-hyPmy:nth-child(6):hover) .table-module-dISOo:nth-child(6),
8172
+ .table-module-k47fT.table-module-JEp5f:has(.table-module-DK-wn th.table-module-hyPmy:nth-child(7):hover) .table-module-dISOo:nth-child(7),
8173
+ .table-module-k47fT.table-module-JEp5f:has(.table-module-DK-wn th.table-module-hyPmy:nth-child(8):hover) .table-module-dISOo:nth-child(8),
8174
+ .table-module-k47fT.table-module-JEp5f:has(.table-module-DK-wn th.table-module-hyPmy:nth-child(9):hover) .table-module-dISOo:nth-child(9),
8175
+ .table-module-k47fT.table-module-JEp5f:has(.table-module-DK-wn th.table-module-hyPmy:nth-child(10):hover) .table-module-dISOo:nth-child(10) {
8176
+ background-blend-mode: multiply;
8177
+ background-color: var(--bgcolor-col-highlight)
8018
8178
  }
8019
-
8020
- .sidebar-module-fSa9Q.sidebar-module-AIq0M .sidebar-module-2puGC svg {
8021
- display: block;
8022
- width: 32px;
8023
- height: 32px;
8024
8179
  }
8025
8180
 
8026
- .sidebar-module-fSa9Q.sidebar-module-AIq0M .sidebar-module-2puGC button {
8027
- -webkit-tap-highlight-color: transparent;
8028
- }
8181
+ /* table sort buttons */
8029
8182
 
8030
- .sidebar-module-fSa9Q.sidebar-module-Scw7D {
8031
- --transition-timing-function: ease-in-out;
8183
+ .table-module-RtOV- {
8184
+ --icon-space: 12px;
8185
+ --icon-size: 12px;
8186
+ --icon-rotation: 0deg;
8187
+ --icon-visibility: hidden;
8188
+ --gap: var(--space-4);
8032
8189
 
8033
- position: static;
8034
- z-index: initial;
8035
- overflow: hidden;
8036
- width: 0;
8037
- padding: 0;
8038
- transform: translateX(0);
8039
- white-space: nowrap;
8190
+ all: unset;
8191
+ display: grid;
8192
+ align-items: baseline;
8193
+ padding: var(--cell-padding);
8194
+ cursor: pointer;
8195
+ gap: var(--gap);
8196
+ grid-template-areas: 'label icon';
8197
+ grid-template-columns: 1fr var(--icon-space);
8198
+ inline-size: 100%;
8199
+ text-align: start;
8040
8200
  }
8041
8201
 
8042
- .sidebar-module-fSa9Q.sidebar-module-Scw7D.sidebar-module-LEZgg {
8043
- transition:
8044
- width var(--transition-duration) var(--transition-timing-function),
8045
- transform var(--transition-duration) var(--transition-timing-function);
8202
+ .table-module-RtOV-:focus-visible {
8203
+ box-shadow: var(--shadow-focus-outline) inset;
8204
+ outline: none;
8046
8205
  }
8047
8206
 
8048
- .sidebar-module-fSa9Q.sidebar-module-Scw7D.sidebar-module-lV7wp {
8049
- width: 324px;
8050
- box-shadow: none;
8051
- }
8207
+ .table-module-RtOV- .table-module-ukG8s {
8208
+ grid-area: label;
8209
+ }
8052
8210
 
8053
- .sidebar-module-fSa9Q.sidebar-module-Scw7D.sidebar-module-dGDrr {
8054
- transform: translateX(0);
8211
+ .table-module-RtOV- .table-module-QdiLJ {
8212
+ grid-area: icon;
8213
+ justify-self: center;
8214
+ rotate: var(--icon-rotation);
8215
+ visibility: var(--icon-visibility);
8055
8216
  }
8056
8217
 
8057
- .sidebar-module-fSa9Q.sidebar-module-Scw7D .sidebar-module-2puGC {
8058
- display: none;
8218
+ .table-module-RtOV-.table-module-gWy-a {
8219
+ --icon-visibility: visible;
8059
8220
  }
8060
8221
 
8061
- .product-listing-page-module-U0zLZ .product-listing-page-module-9a0ps {
8062
- margin-bottom: 44px;
8222
+ .table-module-RtOV-.table-module-9AwNp {
8223
+ --icon-rotation: 0deg;
8063
8224
  }
8064
- .product-listing-page-module-U0zLZ .product-listing-page-module-VvYG3 {
8065
- margin-bottom: var(--space-24);
8225
+
8226
+ .table-module-RtOV-.table-module-aYS8r {
8227
+ --icon-rotation: 180deg;
8066
8228
  }
8067
- .product-listing-page-module-U0zLZ .product-listing-page-module-jGACo {
8068
- display: grid;
8069
- gap: var(--space-16);
8070
- justify-items: center;
8229
+
8230
+ .table-module-DK-wn .table-module-RtOV- {
8231
+ margin: calc(var(--cell-padding) * -1);
8232
+ }
8233
+
8234
+ .truncated-module-bwo1A {
8235
+ display: -webkit-box;
8236
+ text-wrap: auto;
8237
+ }
8238
+
8239
+ .truncated-module-bwo1A.truncated-module-JHMUL {
8240
+ overflow: hidden;
8241
+ -webkit-box-orient: vertical;
8242
+ -webkit-line-clamp: var(--lines, 1);
8243
+ line-clamp: var(--lines, 1);
8244
+ text-overflow: ellipsis;
8071
8245
  }
8072
- .product-listing-page-module-U0zLZ .product-listing-page-module-jGACo .product-listing-page-module-qhR-J,
8073
- .product-listing-page-module-U0zLZ .product-listing-page-module-jGACo .product-listing-page-module-3LRKg {
8074
- width: 100%;
8075
- }
8076
- .product-listing-page-module-U0zLZ .product-listing-page-module-jGACo .product-listing-page-module-qhR-J > *, .product-listing-page-module-U0zLZ .product-listing-page-module-jGACo .product-listing-page-module-3LRKg > * {
8077
- display: flex;
8078
- width: 100%;
8079
- justify-content: center;
8080
- }
8081
- .product-listing-page-module-U0zLZ .product-listing-page-module-jGACo .product-listing-page-module-3Jtw- {
8082
- order: 2;
8083
- }
8084
- .product-listing-page-module-U0zLZ .product-listing-page-module-UwMEE {
8085
- margin-bottom: var(--space-44);
8246
+
8247
+ .data-table-module-7CcZR {
8248
+ display: flex;
8249
+ flex-direction: column;
8250
+ gap: var(--space-16);
8251
+ }
8252
+
8253
+ .data-table-module-WFG32 .data-table-module-9UZ8I {
8254
+ display: block;
8255
+ margin: 0 auto;
8256
+ block-size: var(--space-20);
8257
+ inline-size: var(--space-20);
8086
8258
  }
8087
- .product-listing-page-module-U0zLZ .product-listing-page-module-cUe4a {
8088
- display: grid;
8089
- grid-template-columns: 1fr;
8259
+
8260
+ .order-history-module-LrkiZ {
8261
+ --gap-col: var(--space-8);
8262
+ --gap-row: var(--space-8);
8263
+ --z-index-sticky: 10;
8264
+ --sticky-top: var(--header-bottom, 0);
8265
+ --shadow: rgb(0 0 0 / 12.5%);
8266
+
8267
+ display: grid;
8268
+ gap: var(--gap-row) var(--gap-col);
8269
+ grid-template:
8270
+ [bar-start] auto [bar-end] repeat(3, auto)
8271
+ / [bar-start] 1fr [bar-end];
8272
+ grid-template-areas:
8273
+ 'search'
8274
+ 'filter'
8275
+ 'results'
8276
+ 'paging';
8277
+ scroll-margin-block: calc(var(--sticky-top) + var(--gap-row));
8278
+ }
8279
+
8280
+ @media (width >= 768px) {.order-history-module-LrkiZ {
8281
+ --gap-row: var(--space-16);
8282
+
8283
+ grid-template-areas:
8284
+ 'search filter'
8285
+ 'results results'
8286
+ 'paging paging';
8287
+ grid-template-columns: [bar-start] 1fr 1fr [bar-end]
8288
+ }
8090
8289
  }
8091
- .product-listing-page-module-U0zLZ .product-listing-page-module-dtbXB {
8092
- display: flex;
8093
- flex-direction: column;
8290
+
8291
+ @media (width >= 1024px) {.order-history-module-LrkiZ {
8292
+ grid-template-areas:
8293
+ '. search filter'
8294
+ 'results results results'
8295
+ 'paging paging paging';
8296
+ grid-template-columns: [bar-start] 1fr 26ch 26ch [bar-end]
8297
+ }
8094
8298
  }
8095
- .product-listing-page-module-U0zLZ .product-listing-page-module-zKOQv {
8096
- margin-top: var(--space-24);
8097
- grid-column: span 2;
8299
+
8300
+ @media (width >= 1440px) {.order-history-module-LrkiZ {
8301
+ --gap-row: var(--space-20)
8302
+ }
8098
8303
  }
8099
- @media (width >= 768px) {
8100
- .product-listing-page-module-U0zLZ .product-listing-page-module-UwMEE {
8101
- margin-bottom: var(--space-64);
8102
- }
8103
8304
 
8104
- .product-listing-page-module-U0zLZ .product-listing-page-module-jGACo {
8105
- display: grid;
8106
- align-items: center;
8107
- justify-content: space-between;
8108
- margin-bottom: var(--space-24);
8109
- grid-template-columns: repeat(3, 1fr);
8110
- row-gap: var(--space-8);
8111
- }
8305
+ /* search */
8112
8306
 
8113
- .product-listing-page-module-U0zLZ .product-listing-page-module-jGACo .product-listing-page-module-qhR-J,
8114
- .product-listing-page-module-U0zLZ .product-listing-page-module-jGACo .product-listing-page-module-3LRKg {
8115
- width: initial;
8116
- }
8307
+ .order-history-module-LrkiZ .order-history-module-Y18m7 {
8308
+ position: sticky;
8309
+ z-index: var(--z-index-sticky);
8310
+ grid-area: search;
8311
+ inset-block-start: calc(var(--sticky-top, 0) + var(--gap-row));
8312
+ }
8117
8313
 
8118
- .product-listing-page-module-U0zLZ .product-listing-page-module-jGACo .product-listing-page-module-qhR-J > *, .product-listing-page-module-U0zLZ .product-listing-page-module-jGACo .product-listing-page-module-3LRKg > * {
8119
- width: initial;
8120
- }
8314
+ /* filter */
8121
8315
 
8122
- .product-listing-page-module-U0zLZ .product-listing-page-module-jGACo .product-listing-page-module-qhR-J {
8123
- justify-self: flex-start;
8124
- }
8316
+ .order-history-module-LrkiZ .order-history-module-tBrZG {
8317
+ grid-area: filter;
8318
+ }
8125
8319
 
8126
- .product-listing-page-module-U0zLZ .product-listing-page-module-jGACo .product-listing-page-module-3LRKg {
8127
- display: flex;
8128
- justify-self: flex-end;
8129
- }
8320
+ @media (width >= 768px) {
8130
8321
 
8131
- .product-listing-page-module-U0zLZ .product-listing-page-module-jGACo .product-listing-page-module-3Jtw- {
8132
- order: initial;
8133
- margin: auto;
8134
- }
8322
+ .order-history-module-LrkiZ .order-history-module-tBrZG {
8323
+ position: sticky;
8324
+ z-index: var(--z-index-sticky);
8325
+ inset-block-start: calc(var(--sticky-top) + var(--gap-row))
8135
8326
  }
8136
- @media (width >= 1440px) {
8137
- .product-listing-page-module-U0zLZ .product-listing-page-module-cUe4a {
8138
- grid-template-columns: auto 1fr;
8139
8327
  }
8328
+
8329
+ /* results */
8330
+
8331
+ .order-history-module-LrkiZ .order-history-module-5mST2 {
8332
+ grid-area: results;
8333
+ }
8334
+
8335
+ .order-history-module-LrkiZ .order-history-module-5mST2 .order-history-module-g-FzV {
8336
+ margin-block: var(--space-8);
8337
+ }
8338
+
8339
+ /* paging */
8340
+
8341
+ .order-history-module-LrkiZ .order-history-module-POsiS {
8342
+ grid-area: paging;
8343
+ justify-self: center;
8344
+ padding-block: var(--gap-row);
8140
8345
  }
8141
8346
 
8142
- .search-results-page-module-uE5NE .search-results-page-module-grXkv {
8143
- margin-bottom: 44px;
8347
+ /* white bar behind sticky elements */
8348
+
8349
+ .order-history-module-LrkiZ .order-history-module-98Tvf {
8350
+ position: sticky;
8351
+ z-index: calc(var(--z-index-sticky) - 1);
8352
+ margin: calc(var(--gap-row) * -1)
8353
+ calc(var(--page-container-padding-inline) * -1);
8354
+ background-color: var(--color-white);
8355
+ container-name: sticky-bar;
8356
+ /* stylelint-disable-next-line declaration-property-value-no-unknown */
8357
+ container-type: scroll-state;
8358
+ grid-area: bar;
8359
+ inset-block: var(--sticky-top, 0);
8144
8360
  }
8145
- .search-results-page-module-uE5NE .search-results-page-module--GBRi {
8146
- display: grid;
8147
- gap: var(--space-16);
8148
- justify-items: center;
8361
+
8362
+ @media (width >= 768px) {
8363
+
8364
+ .order-history-module-LrkiZ .order-history-module-98Tvf {
8365
+ margin-inline: 0
8149
8366
  }
8150
- .search-results-page-module-uE5NE .search-results-page-module--GBRi .search-results-page-module-7G8Fo,
8151
- .search-results-page-module-uE5NE .search-results-page-module--GBRi .search-results-page-module-MzRkN {
8152
- width: 100%;
8153
8367
  }
8154
- .search-results-page-module-uE5NE .search-results-page-module--GBRi .search-results-page-module-7G8Fo > *, .search-results-page-module-uE5NE .search-results-page-module--GBRi .search-results-page-module-MzRkN > * {
8155
- display: flex;
8156
- width: 100%;
8157
- justify-content: center;
8368
+
8369
+ .order-history-module-LrkiZ .order-history-module-98Tvf::after {
8370
+ position: absolute;
8371
+ background: linear-gradient(180deg, var(--shadow) 0%, transparent 100%);
8372
+ block-size: var(--space-8);
8373
+ content: '';
8374
+ inset: 100% 0 auto;
8375
+ opacity: 0;
8376
+ transition: opacity var(--transition-duration-short);
8377
+ }
8378
+
8379
+ @container sticky-bar scroll-state(stuck: block-start) {
8380
+
8381
+ .order-history-module-LrkiZ .order-history-module-98Tvf::after {
8382
+ opacity: 1
8383
+ }
8158
8384
  }
8159
- .search-results-page-module-uE5NE .search-results-page-module--GBRi .search-results-page-module-rhDU1 {
8160
- order: 2;
8385
+
8386
+ .product-details-page-layout-module-pPtZX {
8387
+ display: flex;
8388
+ flex-direction: column;
8389
+ padding-top: var(--space-24);
8390
+ margin-bottom: var(--space-64);
8391
+ gap: var(--space-64);
8392
+ }
8393
+
8394
+ .product-details-page-layout-module-pPtZX .product-details-page-layout-module-KCKLZ .product-details-page-layout-module-0uf92 {
8395
+ height: 100%;
8396
+ align-self: flex-start;
8397
+ margin-bottom: var(--space-16);
8161
8398
  }
8162
- .search-results-page-module-uE5NE .search-results-page-module-uxlXw {
8163
- margin-bottom: var(--space-44);
8164
- }
8165
- .search-results-page-module-uE5NE .search-results-page-module-p6Qod {
8166
- display: grid;
8167
- grid-template-columns: 1fr;
8168
- }
8169
- .search-results-page-module-uE5NE .search-results-page-module-7T07c {
8399
+
8400
+ .product-details-page-layout-module-pPtZX .product-details-page-layout-module-KCKLZ .product-details-page-layout-module-3-19O {
8401
+ position: sticky;
8402
+ top: calc(var(--header-bottom) + var(--space-8));
8403
+ height: -moz-fit-content;
8404
+ height: fit-content;
8405
+ }
8406
+
8407
+ .product-details-page-layout-module-pPtZX .product-details-page-layout-module-lfAgH {
8170
8408
  display: flex;
8171
8409
  flex-direction: column;
8410
+ align-items: center;
8411
+ gap: var(--space-24);
8172
8412
  }
8173
- .search-results-page-module-uE5NE .search-results-page-module-zcJy7 {
8174
- margin-top: var(--space-24);
8175
- grid-column: span 2;
8413
+
8414
+ .product-details-page-layout-module-pPtZX .product-details-page-layout-module-e8ZNQ {
8415
+ position: relative;
8416
+ left: -10px;
8417
+ width: 100dvw;
8176
8418
  }
8419
+
8177
8420
  @media (width >= 768px) {
8178
- .search-results-page-module-uE5NE .search-results-page-module-uxlXw {
8179
- margin-bottom: var(--space-64);
8421
+ .product-details-page-layout-module-pPtZX .product-details-page-layout-module-e8ZNQ {
8422
+ position: relative;
8423
+ left: auto;
8424
+ width: auto;
8180
8425
  }
8426
+ }
8181
8427
 
8182
- .search-results-page-module-uE5NE .search-results-page-module--GBRi {
8428
+ @media (width >= 1024px) {
8429
+ .product-details-page-layout-module-pPtZX .product-details-page-layout-module-KCKLZ {
8183
8430
  display: grid;
8184
- align-items: center;
8185
- justify-content: space-between;
8186
- margin-bottom: var(--space-24);
8187
- grid-template-columns: repeat(3, 1fr);
8188
- row-gap: var(--space-8);
8431
+ gap: var(--space-24);
8432
+ grid-template-columns: 396px 1fr;
8189
8433
  }
8190
8434
 
8191
- .search-results-page-module-uE5NE .search-results-page-module--GBRi .search-results-page-module-7G8Fo,
8192
- .search-results-page-module-uE5NE .search-results-page-module--GBRi .search-results-page-module-MzRkN {
8193
- width: initial;
8194
- }
8195
-
8196
- .search-results-page-module-uE5NE .search-results-page-module--GBRi .search-results-page-module-7G8Fo > *, .search-results-page-module-uE5NE .search-results-page-module--GBRi .search-results-page-module-MzRkN > * {
8197
- width: initial;
8198
- }
8199
-
8200
- .search-results-page-module-uE5NE .search-results-page-module--GBRi .search-results-page-module-7G8Fo {
8201
- justify-self: flex-start;
8202
- }
8203
-
8204
- .search-results-page-module-uE5NE .search-results-page-module--GBRi .search-results-page-module-MzRkN {
8205
- display: flex;
8206
- justify-self: flex-end;
8207
- }
8208
-
8209
- .search-results-page-module-uE5NE .search-results-page-module--GBRi .search-results-page-module-rhDU1 {
8210
- order: initial;
8211
- margin: auto;
8435
+ .product-details-page-layout-module-pPtZX .product-details-page-layout-module-KCKLZ .product-details-page-layout-module-0uf92 {
8436
+ margin-bottom: 0;
8212
8437
  }
8213
8438
  }
8439
+
8214
8440
  @media (width >= 1440px) {
8215
- .search-results-page-module-uE5NE .search-results-page-module-p6Qod {
8216
- grid-template-columns: auto 1fr;
8441
+ .product-details-page-layout-module-pPtZX .product-details-page-layout-module-KCKLZ {
8442
+ gap: var(--space-32);
8443
+ grid-template-columns: 600px 1fr;
8217
8444
  }
8218
8445
  }
8219
8446
 
8220
- .sidebar-provider-module-rjeCL {
8221
- --transition-duration: 0;
8222
- }
8223
-
8224
- .sidebar-provider-module-rjeCL.sidebar-provider-module-C0cKR {
8225
- --transition-duration: 0.3s;
8226
- }
8227
-
8228
- .table-module-pevNG {
8447
+ .product-detail-images-module-ERzjA {
8448
+ display: flex;
8449
+ width: 100%;
8450
+ height: 100%;
8229
8451
  box-sizing: border-box;
8230
- container-name: table-container;
8231
- container-type: inline-size;
8232
- overflow-x: auto;
8452
+ align-items: center;
8453
+ justify-content: center;
8454
+ padding: 64px 48px;
8233
8455
  }
8234
8456
 
8235
- .table-module-k47fT {
8236
- --columns: 1;
8237
- --border-color: var(--color-gray-200);
8238
- --bgcolor-odd: var(--color-white);
8239
- --bgcolor-even: var(--color-gray-50);
8240
- --bgcolor-col-selected: rgb(0 0 0 / 5%);
8241
- --bgcolor-row-selected: rgb(0 0 0 / 10%);
8242
- --bgcolor-col-highlight: rgb(0 0 0 / 2.5%);
8243
- --bgcolor-row-highlight: rgb(0 0 0 / 2.5%);
8244
- --cell-padding: var(--space-12);
8245
- --grid-columns-default: repeat(var(--columns), minmax(min-content, auto));
8246
- --shadow: rgb(0 0 0 / 12.5%);
8247
- --z-column: 10;
8248
- --z-sticky: 11;
8249
- --z-selected: 12;
8457
+ .product-details-panel-module-MXfPm {
8458
+ display: flex;
8459
+ flex-direction: column;
8460
+ gap: 24px;
8461
+ }
8250
8462
 
8251
- @property --columns {
8252
- initial-value: 1;
8253
- syntax: '<integer>';
8463
+ .product-details-panel-module-MXfPm .product-details-panel-module-rtZYR {
8464
+ display: flex;
8465
+ flex-direction: column;
8466
+ gap: 8px;
8254
8467
  }
8255
8468
 
8256
- position: relative;
8257
- display: grid;
8258
- box-sizing: border-box;
8259
- align-content: flex-end;
8260
- padding: 0;
8261
- background: var(--color-white);
8262
- grid-template-columns: var(--grid-columns, var(--grid-columns-default));
8263
- grid-template-rows:
8264
- [clmns-start thead-start]
8265
- auto
8266
- [thead-end tbody-start]
8267
- auto
8268
- [tbody-end clmns-end];
8269
- line-height: 1.25;
8270
- max-inline-size: -moz-fit-content;
8271
- max-inline-size: fit-content;
8469
+ .product-details-panel-module-MXfPm .product-details-panel-module-IbS9- {
8470
+ align-self: start;
8471
+ }
8272
8472
 
8273
- /* column highlighting (just 10 columns) */
8473
+ .product-details-panel-module-MXfPm .product-details-panel-module-wHZCr {
8474
+ display: flex;
8475
+ width: 100%;
8476
+ align-items: flex-end;
8477
+ justify-content: space-between;
8478
+ }
8479
+
8480
+ .product-details-panel-module-MXfPm .product-details-panel-module-wHZCr .product-details-panel-module-dI2JL {
8481
+ --price-toggle-size: var(--price-size-larger);
8482
+ }
8483
+
8484
+ .product-details-panel-module-MXfPm .product-details-panel-module-wHZCr .product-details-panel-module-QLafW {
8485
+ display: flex;
8486
+ align-items: center;
8487
+ }
8488
+
8489
+ .product-details-panel-module-MXfPm .product-details-panel-module-9L-Nm {
8490
+ margin-top: var(--space-12);
8491
+ color: var(--color-brand-dark-gray);
8492
+ font-size: 16px;
8493
+ font-stretch: normal;
8494
+ font-style: normal;
8495
+ font-weight: normal;
8496
+ letter-spacing: normal;
8497
+ line-height: 1.5;
8498
+ }
8499
+
8500
+ .product-details-panel-module-MXfPm .product-details-panel-module-9L-Nm p {
8501
+ margin: 0;
8502
+ }
8503
+
8504
+ .product-details-panel-module-MXfPm .product-details-panel-module-NC2nx {
8505
+ margin-top: var(--space-16);
8506
+ margin-bottom: var(--space-24);
8507
+ }
8508
+
8509
+ .product-details-recently-viewed-section-module-cGFgH {
8510
+ display: flex;
8511
+ flex-direction: column;
8512
+ align-items: center;
8513
+ gap: var(--space-24);
8274
8514
  }
8275
8515
 
8276
- /* columns */
8516
+ & .promo-banner-module-yuVEO {
8517
+ position: relative;
8518
+ display: block;
8519
+ height: 122px;
8520
+ outline: none;
8521
+ }
8277
8522
 
8278
- .table-module-k47fT .table-module-1lgqE {
8279
- display: grid;
8280
- grid-column: 1 / -1;
8281
- grid-row: clmns;
8282
- grid-template-columns: subgrid;
8283
- pointer-events: none;
8523
+ & .promo-banner-module-yuVEO.promo-banner-module-ut8Kd {
8524
+ width: 250px;
8284
8525
  }
8285
8526
 
8286
- .table-module-k47fT .table-module-dISOo {
8287
- position: relative;
8288
- z-index: var(--z-column);
8527
+ & .promo-banner-module-yuVEO.promo-banner-module-CSkIw {
8528
+ width: 310px;
8289
8529
  }
8290
8530
 
8291
- .table-module-k47fT .table-module-dISOo.table-module-WGz-I {
8292
- background-blend-mode: multiply;
8293
- background-color: var(--bgcolor-col-selected);
8294
- }
8531
+ & .promo-banner-module-yuVEO picture {
8532
+ width: 100%;
8533
+ }
8295
8534
 
8296
- .table-module-k47fT .table-module-dISOo.table-module-PQejy {
8297
- position: sticky;
8298
- z-index: var(--z-selected);
8299
- container-name: sticky-column;
8300
- /* stylelint-disable-next-line declaration-property-value-no-unknown */
8301
- container-type: scroll-state;
8302
- inset-inline: 0;
8535
+ & .promo-banner-module-yuVEO picture img {
8536
+ width: 100%;
8303
8537
  }
8304
8538
 
8305
- .table-module-k47fT .table-module-dISOo.table-module-PQejy::before,
8306
- .table-module-k47fT .table-module-dISOo.table-module-PQejy::after {
8307
- position: absolute;
8308
- background: linear-gradient(-90deg, var(--shadow) 0%, transparent 100%);
8309
- content: '';
8310
- inline-size: var(--space-8);
8311
- inset-block: 0;
8312
- opacity: 0;
8313
- transition: opacity var(--transition-duration-short);
8314
- }
8539
+ & .promo-banner-module-yuVEO:focus-visible::after {
8540
+ position: absolute;
8541
+ display: block;
8542
+ background-color: transparent;
8543
+ box-shadow: var(--shadow-focus-outline) inset;
8544
+ content: '';
8545
+ inset: 0;
8546
+ pointer-events: none;
8547
+ -webkit-user-select: none;
8548
+ -moz-user-select: none;
8549
+ user-select: none;
8550
+ }
8315
8551
 
8316
- @supports not (container-type: scroll-state) {
8552
+ @media (width >= 768px) {
8553
+ & .promo-banner-module-yuVEO {
8554
+ height: 230px;
8555
+ }
8317
8556
 
8318
- .table-module-k47fT .table-module-dISOo.table-module-PQejy::before,
8319
- .table-module-k47fT .table-module-dISOo.table-module-PQejy::after {
8320
- background: var(--shadow);
8321
- inline-size: 1px;
8322
- opacity: 1
8323
- }
8324
- }
8557
+ & .promo-banner-module-yuVEO.promo-banner-module-CSkIw,
8558
+ & .promo-banner-module-yuVEO.promo-banner-module-ut8Kd {
8559
+ width: auto;
8560
+ }
8561
+ }
8325
8562
 
8326
- .table-module-k47fT .table-module-dISOo.table-module-PQejy::before {
8327
- inset-inline: auto 100%;
8328
- }
8563
+ .promo-banners-module-uVyxh {
8564
+ margin-bottom: var(--space-24);
8565
+ }
8329
8566
 
8330
- @container sticky-column scroll-state(stuck: inline-end) {
8567
+ @media (width >= 768px) {
8568
+ .promo-banners-module-uVyxh {
8569
+ display: grid;
8570
+ margin-bottom: var(--space-32);
8571
+ gap: var(--space-16);
8572
+ grid-template-columns: 2fr 1fr;
8573
+ }
8574
+ }
8331
8575
 
8332
- .table-module-k47fT .table-module-dISOo.table-module-PQejy::before {
8333
- opacity: 1
8334
- }
8335
- }
8576
+ @media (width >= 1440px) {
8577
+ .promo-banners-module-uVyxh {
8578
+ gap: var(--space-24);
8579
+ grid-template-columns: 1.5fr 1fr;
8580
+ }
8581
+ }
8336
8582
 
8337
- .table-module-k47fT .table-module-dISOo.table-module-PQejy::after {
8338
- inset-inline: 100% auto;
8339
- rotate: 180deg;
8340
- }
8583
+ .sidebar-module-fSa9Q.sidebar-module-AIq0M {
8584
+ --transition-timing-function: ease-in-out;
8341
8585
 
8342
- @container sticky-column scroll-state(stuck: inline-start) {
8586
+ position: fixed;
8587
+ z-index: calc(var(--sidebar-layer) + 1);
8588
+ top: 0;
8589
+ left: 0;
8590
+ width: 382px;
8591
+ max-width: 100vw;
8592
+ height: 100%;
8593
+ box-sizing: border-box;
8594
+ padding-top: 46px;
8595
+ padding-bottom: 56px;
8596
+ background: var(--color-white);
8597
+ }
8343
8598
 
8344
- .table-module-k47fT .table-module-dISOo.table-module-PQejy::after {
8345
- opacity: 1
8346
- }
8347
- }
8599
+ .sidebar-module-fSa9Q.sidebar-module-AIq0M.sidebar-module-LEZgg {
8600
+ transition: transform var(--transition-duration)
8601
+ var(--transition-timing-function);
8602
+ }
8348
8603
 
8349
- /* cells */
8604
+ .sidebar-module-fSa9Q.sidebar-module-AIq0M.sidebar-module-lV7wp {
8605
+ box-shadow: var(--box-shadow-heavy);
8606
+ pointer-events: auto;
8607
+ transform: translateX(0);
8608
+ }
8350
8609
 
8351
- .table-module-k47fT .table-module-jRXnY,
8352
- .table-module-k47fT .table-module-wJwSq {
8353
- overflow: hidden;
8354
- box-sizing: border-box;
8355
- padding: var(--cell-padding);
8356
- text-wrap: balance;
8610
+ .sidebar-module-fSa9Q.sidebar-module-AIq0M.sidebar-module-dGDrr {
8611
+ box-shadow: none;
8612
+ pointer-events: none;
8613
+ transform: translateX(-100%);
8357
8614
  }
8358
8615
 
8359
- .table-module-k47fT .table-module-jRXnY.table-module-EWdty, .table-module-k47fT .table-module-wJwSq.table-module-EWdty {
8360
- text-align: start;
8361
- }
8616
+ .sidebar-module-fSa9Q.sidebar-module-AIq0M .sidebar-module-2puGC {
8617
+ position: absolute;
8618
+ z-index: calc(var(--sidebar-layer) + 2);
8619
+ top: 36px;
8620
+ right: 8px;
8621
+ }
8362
8622
 
8363
- .table-module-k47fT .table-module-jRXnY.table-module-yJD74, .table-module-k47fT .table-module-wJwSq.table-module-yJD74 {
8364
- text-align: end;
8623
+ .sidebar-module-fSa9Q.sidebar-module-AIq0M .sidebar-module-2puGC svg {
8624
+ display: block;
8625
+ width: 32px;
8626
+ height: 32px;
8365
8627
  }
8366
8628
 
8367
- .table-module-k47fT .table-module-jRXnY.table-module-XAdfy, .table-module-k47fT .table-module-wJwSq.table-module-XAdfy {
8368
- text-align: center;
8629
+ .sidebar-module-fSa9Q.sidebar-module-AIq0M .sidebar-module-2puGC button {
8630
+ -webkit-tap-highlight-color: transparent;
8369
8631
  }
8370
8632
 
8371
- .table-module-k47fT .table-module-jRXnY.table-module-h7qdo, .table-module-k47fT .table-module-wJwSq.table-module-h7qdo {
8372
- text-wrap: nowrap;
8633
+ .sidebar-module-fSa9Q.sidebar-module-Scw7D {
8634
+ --transition-timing-function: ease-in-out;
8635
+
8636
+ position: static;
8637
+ z-index: initial;
8638
+ overflow: hidden;
8639
+ width: 0;
8640
+ padding: 0;
8641
+ transform: translateX(0);
8642
+ white-space: nowrap;
8643
+ }
8644
+
8645
+ .sidebar-module-fSa9Q.sidebar-module-Scw7D.sidebar-module-LEZgg {
8646
+ transition:
8647
+ width var(--transition-duration) var(--transition-timing-function),
8648
+ transform var(--transition-duration) var(--transition-timing-function);
8649
+ }
8650
+
8651
+ .sidebar-module-fSa9Q.sidebar-module-Scw7D.sidebar-module-lV7wp {
8652
+ width: 324px;
8653
+ box-shadow: none;
8654
+ }
8655
+
8656
+ .sidebar-module-fSa9Q.sidebar-module-Scw7D.sidebar-module-dGDrr {
8657
+ transform: translateX(0);
8658
+ }
8659
+
8660
+ .sidebar-module-fSa9Q.sidebar-module-Scw7D .sidebar-module-2puGC {
8661
+ display: none;
8662
+ }
8663
+
8664
+ .product-listing-page-module-U0zLZ .product-listing-page-module-9a0ps {
8665
+ margin-bottom: 44px;
8666
+ }
8667
+ .product-listing-page-module-U0zLZ .product-listing-page-module-VvYG3 {
8668
+ margin-bottom: var(--space-24);
8669
+ }
8670
+ .product-listing-page-module-U0zLZ .product-listing-page-module-jGACo {
8671
+ display: grid;
8672
+ gap: var(--space-16);
8673
+ justify-items: center;
8674
+ }
8675
+ .product-listing-page-module-U0zLZ .product-listing-page-module-jGACo .product-listing-page-module-qhR-J,
8676
+ .product-listing-page-module-U0zLZ .product-listing-page-module-jGACo .product-listing-page-module-3LRKg {
8677
+ width: 100%;
8373
8678
  }
8374
-
8375
- .table-module-k47fT .table-module-jRXnY.table-module-PQejy, .table-module-k47fT .table-module-wJwSq.table-module-PQejy {
8376
- position: sticky;
8377
- z-index: var(--z-sticky);
8378
- inset-inline: 0;
8679
+ .product-listing-page-module-U0zLZ .product-listing-page-module-jGACo .product-listing-page-module-qhR-J > *, .product-listing-page-module-U0zLZ .product-listing-page-module-jGACo .product-listing-page-module-3LRKg > * {
8680
+ display: flex;
8681
+ width: 100%;
8682
+ justify-content: center;
8683
+ }
8684
+ .product-listing-page-module-U0zLZ .product-listing-page-module-jGACo .product-listing-page-module-3Jtw- {
8685
+ order: 2;
8379
8686
  }
8380
-
8381
- /* rows */
8382
-
8383
- .table-module-k47fT .table-module-Nisf1 {
8687
+ .product-listing-page-module-U0zLZ .product-listing-page-module-UwMEE {
8688
+ margin-bottom: var(--space-44);
8689
+ }
8690
+ .product-listing-page-module-U0zLZ .product-listing-page-module-cUe4a {
8384
8691
  display: grid;
8385
- border-block-end: 1px solid var(--border-color);
8386
- grid-column: 1 / -1;
8387
- grid-template-columns: subgrid;
8388
- grid-template-rows: subgrid;
8692
+ grid-template-columns: 1fr;
8389
8693
  }
8390
-
8391
- .table-module-k47fT .table-module-Nisf1 .table-module-jRXnY,
8392
- .table-module-k47fT .table-module-Nisf1 .table-module-wJwSq {
8393
- background-color: var(--bgcolor-odd);
8694
+ .product-listing-page-module-U0zLZ .product-listing-page-module-dtbXB {
8695
+ display: flex;
8696
+ flex-direction: column;
8697
+ }
8698
+ .product-listing-page-module-U0zLZ .product-listing-page-module-zKOQv {
8699
+ margin-top: var(--space-24);
8700
+ grid-column: span 2;
8701
+ }
8702
+ @media (width >= 768px) {
8703
+ .product-listing-page-module-U0zLZ .product-listing-page-module-UwMEE {
8704
+ margin-bottom: var(--space-64);
8394
8705
  }
8395
8706
 
8396
- .table-module-k47fT .table-module-Nisf1:nth-child(even) .table-module-jRXnY,
8397
- .table-module-k47fT .table-module-Nisf1:nth-child(even) .table-module-wJwSq {
8398
- background-color: var(--bgcolor-even);
8399
- }
8707
+ .product-listing-page-module-U0zLZ .product-listing-page-module-jGACo {
8708
+ display: grid;
8709
+ align-items: center;
8710
+ justify-content: space-between;
8711
+ margin-bottom: var(--space-24);
8712
+ grid-template-columns: repeat(3, 1fr);
8713
+ row-gap: var(--space-8);
8714
+ }
8400
8715
 
8401
- :has(.table-module-3zZB6) .table-module-k47fT .table-module-Nisf1::after {
8402
- z-index: var(--z-selected);
8403
- background-blend-mode: multiply;
8404
- background-color: var(--bgcolor-row-highlight);
8405
- content: '';
8406
- grid-column: 1 / -1;
8407
- opacity: 0;
8408
- pointer-events: none;
8716
+ .product-listing-page-module-U0zLZ .product-listing-page-module-jGACo .product-listing-page-module-qhR-J,
8717
+ .product-listing-page-module-U0zLZ .product-listing-page-module-jGACo .product-listing-page-module-3LRKg {
8718
+ width: initial;
8409
8719
  }
8410
8720
 
8411
- @media (pointer: fine) {
8721
+ .product-listing-page-module-U0zLZ .product-listing-page-module-jGACo .product-listing-page-module-qhR-J > *, .product-listing-page-module-U0zLZ .product-listing-page-module-jGACo .product-listing-page-module-3LRKg > * {
8722
+ width: initial;
8723
+ }
8412
8724
 
8413
- :has(.table-module-3zZB6) .table-module-k47fT .table-module-Nisf1:hover::after {
8414
- opacity: 1
8725
+ .product-listing-page-module-U0zLZ .product-listing-page-module-jGACo .product-listing-page-module-qhR-J {
8726
+ justify-self: flex-start;
8415
8727
  }
8416
- }
8417
8728
 
8418
- .table-module-k47fT .table-module-Nisf1.table-module-WGz-I::after {
8419
- z-index: var(--z-selected);
8420
- background-blend-mode: multiply;
8421
- background-color: var(--bgcolor-row-selected);
8422
- content: '';
8423
- grid-column: 1 / -1;
8424
- opacity: 1;
8425
- pointer-events: none;
8729
+ .product-listing-page-module-U0zLZ .product-listing-page-module-jGACo .product-listing-page-module-3LRKg {
8730
+ display: flex;
8731
+ justify-self: flex-end;
8426
8732
  }
8427
8733
 
8428
- .table-module-k47fT .table-module-Nisf1.table-module-qRfjM {
8429
- cursor: pointer;
8734
+ .product-listing-page-module-U0zLZ .product-listing-page-module-jGACo .product-listing-page-module-3Jtw- {
8735
+ order: initial;
8736
+ margin: auto;
8737
+ }
8738
+ }
8739
+ @media (width >= 1440px) {
8740
+ .product-listing-page-module-U0zLZ .product-listing-page-module-cUe4a {
8741
+ grid-template-columns: auto 1fr;
8430
8742
  }
8743
+ }
8431
8744
 
8432
- /* table header */
8433
-
8434
- .table-module-k47fT .table-module-DK-wn {
8745
+ .search-results-page-module-uE5NE .search-results-page-module-grXkv {
8746
+ margin-bottom: 44px;
8747
+ }
8748
+ .search-results-page-module-uE5NE .search-results-page-module--GBRi {
8435
8749
  display: grid;
8436
- grid-column: 1 / -1;
8437
- grid-row: thead;
8438
- grid-template-columns: subgrid;
8750
+ gap: var(--space-16);
8751
+ justify-items: center;
8439
8752
  }
8440
-
8441
- .table-module-k47fT .table-module-DK-wn .table-module-Nisf1 {
8442
- border-block-start: 0;
8753
+ .search-results-page-module-uE5NE .search-results-page-module--GBRi .search-results-page-module-7G8Fo,
8754
+ .search-results-page-module-uE5NE .search-results-page-module--GBRi .search-results-page-module-MzRkN {
8755
+ width: 100%;
8443
8756
  }
8444
-
8445
- .table-module-k47fT .table-module-DK-wn .table-module-Nisf1 .table-module-jRXnY,
8446
- .table-module-k47fT .table-module-DK-wn .table-module-Nisf1 .table-module-wJwSq {
8447
- background-color: var(--bgcolor-even);
8448
- font-weight: var(--font-weight-bold);
8757
+ .search-results-page-module-uE5NE .search-results-page-module--GBRi .search-results-page-module-7G8Fo > *, .search-results-page-module-uE5NE .search-results-page-module--GBRi .search-results-page-module-MzRkN > * {
8758
+ display: flex;
8759
+ width: 100%;
8760
+ justify-content: center;
8449
8761
  }
8450
-
8451
- /* table body */
8452
-
8453
- .table-module-k47fT .table-module-tygZb {
8762
+ .search-results-page-module-uE5NE .search-results-page-module--GBRi .search-results-page-module-rhDU1 {
8763
+ order: 2;
8764
+ }
8765
+ .search-results-page-module-uE5NE .search-results-page-module-uxlXw {
8766
+ margin-bottom: var(--space-44);
8767
+ }
8768
+ .search-results-page-module-uE5NE .search-results-page-module-p6Qod {
8454
8769
  display: grid;
8455
- grid-column: 1 / -1;
8456
- grid-row: tbody;
8457
- grid-template-columns: subgrid;
8770
+ grid-template-columns: 1fr;
8458
8771
  }
8459
-
8460
- /* full width table */
8461
-
8462
- .table-module-k47fT.table-module-YnmWV {
8463
- min-inline-size: 100%;
8772
+ .search-results-page-module-uE5NE .search-results-page-module-7T07c {
8773
+ display: flex;
8774
+ flex-direction: column;
8464
8775
  }
8465
-
8466
- .table-module-k47fT.table-module-YnmWV .table-module-skhNZ {
8467
- text-align: start;
8468
- }
8469
-
8470
- /* no text wrap for entire table */
8471
-
8472
- .table-module-k47fT.table-module-h7qdo .table-module-Nisf1 .table-module-jRXnY,
8473
- .table-module-k47fT.table-module-h7qdo .table-module-Nisf1 .table-module-wJwSq {
8474
- text-wrap: nowrap;
8475
- }
8476
-
8477
- @media (pointer: fine) {
8478
-
8479
- .table-module-k47fT.table-module-JEp5f:has(.table-module-DK-wn th:nth-child(1):hover) .table-module-dISOo:nth-child(1),
8480
- .table-module-k47fT.table-module-JEp5f:has(.table-module-DK-wn th:nth-child(2):hover) .table-module-dISOo:nth-child(2),
8481
- .table-module-k47fT.table-module-JEp5f:has(.table-module-DK-wn th:nth-child(3):hover) .table-module-dISOo:nth-child(3),
8482
- .table-module-k47fT.table-module-JEp5f:has(.table-module-DK-wn th:nth-child(4):hover) .table-module-dISOo:nth-child(4),
8483
- .table-module-k47fT.table-module-JEp5f:has(.table-module-DK-wn th:nth-child(5):hover) .table-module-dISOo:nth-child(5),
8484
- .table-module-k47fT.table-module-JEp5f:has(.table-module-DK-wn th:nth-child(6):hover) .table-module-dISOo:nth-child(6),
8485
- .table-module-k47fT.table-module-JEp5f:has(.table-module-DK-wn th:nth-child(7):hover) .table-module-dISOo:nth-child(7),
8486
- .table-module-k47fT.table-module-JEp5f:has(.table-module-DK-wn th:nth-child(8):hover) .table-module-dISOo:nth-child(8),
8487
- .table-module-k47fT.table-module-JEp5f:has(.table-module-DK-wn th:nth-child(9):hover) .table-module-dISOo:nth-child(9),
8488
- .table-module-k47fT.table-module-JEp5f:has(.table-module-DK-wn th:nth-child(10):hover) .table-module-dISOo:nth-child(10) {
8489
- background-blend-mode: multiply;
8490
- background-color: var(--bgcolor-col-highlight)
8776
+ .search-results-page-module-uE5NE .search-results-page-module-zcJy7 {
8777
+ margin-top: var(--space-24);
8778
+ grid-column: span 2;
8491
8779
  }
8780
+ @media (width >= 768px) {
8781
+ .search-results-page-module-uE5NE .search-results-page-module-uxlXw {
8782
+ margin-bottom: var(--space-64);
8492
8783
  }
8493
8784
 
8494
- /* table sort buttons */
8495
-
8496
- .table-module-RtOV- {
8497
- --icon-space: 24px;
8498
- --icon-size: 12px;
8499
- --icon-rotation: 0deg;
8500
- --icon-visibility: hidden;
8501
-
8502
- all: unset;
8503
- display: grid;
8504
- align-items: baseline;
8505
- padding: var(--cell-padding);
8506
- cursor: pointer;
8507
- grid-template-areas: 'label icon .';
8508
- grid-template-columns: auto var(--icon-space) 1fr;
8509
- inline-size: 100%;
8510
- text-align: start;
8511
- }
8512
-
8513
- .table-module-RtOV- .table-module-ukG8s {
8514
- grid-area: label;
8515
- }
8785
+ .search-results-page-module-uE5NE .search-results-page-module--GBRi {
8786
+ display: grid;
8787
+ align-items: center;
8788
+ justify-content: space-between;
8789
+ margin-bottom: var(--space-24);
8790
+ grid-template-columns: repeat(3, 1fr);
8791
+ row-gap: var(--space-8);
8792
+ }
8516
8793
 
8517
- .table-module-RtOV- .table-module-QdiLJ {
8518
- grid-area: icon;
8519
- justify-self: center;
8520
- rotate: var(--icon-rotation);
8521
- visibility: var(--icon-visibility);
8522
- }
8794
+ .search-results-page-module-uE5NE .search-results-page-module--GBRi .search-results-page-module-7G8Fo,
8795
+ .search-results-page-module-uE5NE .search-results-page-module--GBRi .search-results-page-module-MzRkN {
8796
+ width: initial;
8797
+ }
8523
8798
 
8524
- .table-module-RtOV-.table-module-gWy-a {
8525
- --icon-visibility: visible;
8526
- }
8799
+ .search-results-page-module-uE5NE .search-results-page-module--GBRi .search-results-page-module-7G8Fo > *, .search-results-page-module-uE5NE .search-results-page-module--GBRi .search-results-page-module-MzRkN > * {
8800
+ width: initial;
8801
+ }
8527
8802
 
8528
- .table-module-RtOV-.table-module-SjJ57 {
8529
- --icon-rotation: 0deg;
8530
- }
8803
+ .search-results-page-module-uE5NE .search-results-page-module--GBRi .search-results-page-module-7G8Fo {
8804
+ justify-self: flex-start;
8805
+ }
8531
8806
 
8532
- .table-module-RtOV-.table-module--p8TF {
8533
- --icon-rotation: 180deg;
8534
- }
8807
+ .search-results-page-module-uE5NE .search-results-page-module--GBRi .search-results-page-module-MzRkN {
8808
+ display: flex;
8809
+ justify-self: flex-end;
8810
+ }
8535
8811
 
8536
- .table-module-RtOV-.table-module-XAdfy {
8537
- grid-template-areas: '. . label icon .';
8538
- grid-template-columns: 1fr var(--icon-space) auto var(--icon-space) 1fr;
8539
- text-align: center;
8812
+ .search-results-page-module-uE5NE .search-results-page-module--GBRi .search-results-page-module-rhDU1 {
8813
+ order: initial;
8814
+ margin: auto;
8815
+ }
8540
8816
  }
8541
-
8542
- .table-module-RtOV-.table-module-yJD74 {
8543
- grid-template-areas: '. icon label';
8544
- grid-template-columns: 1fr var(--icon-space) auto;
8545
- text-align: end;
8817
+ @media (width >= 1440px) {
8818
+ .search-results-page-module-uE5NE .search-results-page-module-p6Qod {
8819
+ grid-template-columns: auto 1fr;
8820
+ }
8546
8821
  }
8547
8822
 
8548
- .table-module-DK-wn .table-module-RtOV- {
8549
- margin: calc(var(--cell-padding) * -1);
8550
- }
8551
-
8552
- .truncated-module-bwo1A {
8553
- display: -webkit-box;
8554
- text-wrap: balance;
8823
+ .sidebar-provider-module-rjeCL {
8824
+ --transition-duration: 0;
8555
8825
  }
8556
8826
 
8557
- .truncated-module-bwo1A.truncated-module-JHMUL {
8558
- overflow: hidden;
8559
- -webkit-box-orient: vertical;
8560
- -webkit-line-clamp: var(--lines, 1);
8561
- line-clamp: var(--lines, 1);
8562
- text-overflow: ellipsis;
8827
+ .sidebar-provider-module-rjeCL.sidebar-provider-module-C0cKR {
8828
+ --transition-duration: 0.3s;
8563
8829
  }
8564
8830
 
8565
- .data-table-module-7CcZR {
8566
- display: flex;
8567
- flex-direction: column;
8568
- gap: var(--space-16);
8569
- }
8570
-
8571
8831
  :root {
8572
8832
  --toastify-color-light: #fff;
8573
8833
  --toastify-color-dark: #121212;