@sonic-equipment/ui 0.0.88 → 0.0.90

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 (52) hide show
  1. package/dist/.storybook/RenderHook.d.ts +1 -1
  2. package/dist/index.d.ts +117 -38
  3. package/dist/index.js +622 -367
  4. package/dist/src/algolia/{algolia-product-hit-type.d.ts → algolia-hit-type.d.ts} +17 -2
  5. package/dist/src/algolia/algolia-hits-provider.d.ts +6 -0
  6. package/dist/src/algolia/use-algolia-hits.d.ts +10 -0
  7. package/dist/src/algolia/use-algolia-search.d.ts +3 -3
  8. package/dist/src/carousel/card-carousel/card-carousel.d.ts +10 -0
  9. package/dist/src/carousel/{product-carousel/product-carousel.stories.d.ts → card-carousel/product-card-carousel.stories.d.ts} +3 -3
  10. package/dist/src/carousel/card-carousel/promo-card-carousel.stories.d.ts +20 -0
  11. package/dist/src/carousel/promo-card-carousel/promo-card-carousel.d.ts +10 -0
  12. package/dist/src/country-selector/country-selector-dialog/country-selector-dialog.d.ts +13 -0
  13. package/dist/src/country-selector/country-selector-dialog/country-selector-dialog.stories.d.ts +20 -0
  14. package/dist/src/country-selector/country-selector-trigger/country-selector-trigger.d.ts +8 -0
  15. package/dist/src/country-selector/country-selector-trigger/country-selector-trigger.stories.d.ts +16 -0
  16. package/dist/src/country-selector/country-selector.d.ts +12 -0
  17. package/dist/src/country-selector/country-selector.stories.d.ts +19 -0
  18. package/dist/src/country-selector/use-countries-languages.d.ts +43 -0
  19. package/dist/src/country-selector/use-countries-languages.stories.d.ts +9 -0
  20. package/dist/src/forms/select/select.d.ts +2 -1
  21. package/dist/src/global-search/types.d.ts +1 -1
  22. package/dist/src/index.d.ts +2 -1
  23. package/dist/src/intl/translation-id.d.ts +1 -1
  24. package/dist/src/modals/dialog/dialog.d.ts +1 -1
  25. package/dist/src/modals/dialog/dialog.stories.d.ts +1 -0
  26. package/dist/src/modals/modal/modal.d.ts +1 -1
  27. package/dist/src/modals/modal/modal.stories.d.ts +0 -1
  28. package/dist/src/pages/product-listing-page/product-listing-page-data-types.d.ts +3 -3
  29. package/dist/src/promos/promo-banner/promo-banner.d.ts +7 -0
  30. package/dist/src/promos/promo-banner/promo-banner.stories.d.ts +19 -0
  31. package/dist/src/promos/promo-banners/promo-banners.d.ts +8 -0
  32. package/dist/src/promos/{promo-cards/promo-cards.stories.d.ts → promo-banners/promo-banners.stories.d.ts} +3 -3
  33. package/dist/src/promos/promo-card/promo-card.d.ts +5 -5
  34. package/dist/src/promos/promo-card/promo-card.stories.d.ts +1 -8
  35. package/dist/src/shared/api/bff/model/bff.model.d.ts +4 -4
  36. package/dist/src/shared/api/storefront/hooks/website/use-fetch-countries-languages.d.ts +4 -0
  37. package/dist/src/shared/api/storefront/hooks/website/use-fetch-countries.d.ts +1 -0
  38. package/dist/src/shared/api/storefront/hooks/website/use-update-language-by-id.d.ts +2 -0
  39. package/dist/src/shared/api/storefront/hooks/website/website.stories.d.ts +10 -0
  40. package/dist/src/shared/api/storefront/services/website-service.d.ts +9 -0
  41. package/dist/src/shared/hooks/use-cookie.d.ts +8 -0
  42. package/dist/src/shared/hooks/use-disclosure.d.ts +1 -0
  43. package/dist/src/shared/hooks/use-session-storage.d.ts +6 -0
  44. package/dist/src/shared/model/countries-languages.d.ts +13 -0
  45. package/dist/src/shared/model/{product-hit.d.ts → hit.d.ts} +12 -1
  46. package/dist/styles.css +520 -373
  47. package/package.json +3 -1
  48. package/dist/src/algolia/algolia-products-hits-provider.d.ts +0 -6
  49. package/dist/src/algolia/use-algolia-product-hits.d.ts +0 -10
  50. package/dist/src/carousel/product-carousel/product-carousel.d.ts +0 -10
  51. package/dist/src/promos/promo-cards/promo-cards.d.ts +0 -8
  52. package/dist/src/shared/utils/cookies.d.ts +0 -3
package/dist/styles.css CHANGED
@@ -226,6 +226,12 @@
226
226
  --header-height-mobile: 54px;
227
227
  --search-input-height: 76px;
228
228
  --announcement-bar-height: 52px;
229
+ --header-height: var(--header-height-mobile);
230
+ }
231
+ @media (width >= 1024px) {
232
+ :root {
233
+ --header-height: var(--header-height-desktop);
234
+ }
229
235
  }
230
236
 
231
237
  /* stylelint-disable no-descending-specificity */
@@ -911,11 +917,14 @@
911
917
 
912
918
  position: relative;
913
919
  display: grid;
920
+ width: 100%;
921
+ height: 100%;
914
922
  box-sizing: border-box;
915
923
  padding-top: var(--space-12);
916
924
  background-color: var(--color-white);
917
925
  color: var(--color-black);
918
926
  cursor: pointer;
927
+ grid-template-rows: auto 1fr;
919
928
  outline: none;
920
929
  text-decoration: none;
921
930
  transition:
@@ -931,6 +940,8 @@
931
940
 
932
941
  .product-card-module-pLaiB .product-card-module-e0kMu {
933
942
  display: grid;
943
+ height: 100%;
944
+ box-sizing: border-box;
934
945
  padding-bottom: var(--padding-bottom);
935
946
  margin-top: auto;
936
947
  gap: var(--space-16);
@@ -1355,6 +1366,7 @@
1355
1366
  position: relative;
1356
1367
  display: block;
1357
1368
  width: 100%;
1369
+ height: 100%;
1358
1370
  -webkit-user-select: none;
1359
1371
  -moz-user-select: none;
1360
1372
  user-select: none;
@@ -1368,6 +1380,7 @@
1368
1380
  .carousel-module-ealh- .carousel-module-IftbN {
1369
1381
  position: relative;
1370
1382
  display: block;
1383
+ overflow: visible;
1371
1384
  opacity: 0;
1372
1385
  }
1373
1386
 
@@ -1415,6 +1428,7 @@
1415
1428
  .carousel-module-ealh- .carousel-module-bUMlb {
1416
1429
  width: -moz-fit-content;
1417
1430
  width: fit-content;
1431
+ height: auto;
1418
1432
  }
1419
1433
 
1420
1434
  /* stylelint-disable-next-line no-descending-specificity */
@@ -1668,6 +1682,415 @@
1668
1682
  grid-template-rows: 1fr;
1669
1683
  }
1670
1684
 
1685
+ .select-module-ui-Wc {
1686
+ --trigger-width: initial;
1687
+ --height: var(--space-44);
1688
+
1689
+ all: unset;
1690
+ position: relative;
1691
+ display: inline-flex;
1692
+ box-sizing: border-box;
1693
+ flex-direction: column;
1694
+ flex-grow: 1;
1695
+ gap: var(--space-4);
1696
+ }
1697
+
1698
+ .select-module-ui-Wc.select-module-44a1l {
1699
+ --height: var(--space-36);
1700
+ }
1701
+
1702
+ .select-module-ui-Wc.select-module-QUm-8 {
1703
+ --height: var(--space-44);
1704
+ }
1705
+
1706
+ .select-module-ui-Wc .select-module-aMQIQ {
1707
+ all: unset;
1708
+ position: relative;
1709
+ display: flex;
1710
+ width: 100%;
1711
+ height: var(--height);
1712
+ box-sizing: border-box;
1713
+ align-items: center;
1714
+ padding: 10px 32px 10px 16px;
1715
+ border: 1px solid var(--color-brand-medium-gray);
1716
+ border-radius: var(--border-radius-8);
1717
+ font: inherit;
1718
+ gap: var(--space-16);
1719
+ outline: none;
1720
+ }
1721
+
1722
+ .select-module-ui-Wc .select-module-aMQIQ .select-module-00uRU {
1723
+ position: absolute;
1724
+ display: block;
1725
+ width: var(--space-12);
1726
+ height: var(--space-12);
1727
+ color: var(--color-brand-dark-gray);
1728
+ inset-block: 0;
1729
+ inset-inline-end: 14px;
1730
+ margin-block: auto;
1731
+ }
1732
+
1733
+ .select-module-ui-Wc .select-module-aMQIQ [slot='description'] {
1734
+ display: none;
1735
+ }
1736
+
1737
+ .select-module-ui-Wc .select-module-aMQIQ.select-module-XMc0P,
1738
+ .select-module-ui-Wc .select-module-aMQIQ:focus,
1739
+ .select-module-ui-Wc .select-module-aMQIQ:has([data-focused]) {
1740
+ border-color: transparent;
1741
+ box-shadow: var(--shadow-focus-outline);
1742
+ outline: none;
1743
+ }
1744
+
1745
+ .select-module-ui-Wc .select-module-aMQIQ[disabled] {
1746
+ opacity: 0.4;
1747
+ }
1748
+
1749
+ .select-module-ui-Wc.select-module-IRd4F .select-module-aMQIQ {
1750
+ border-color: var(--color-brand-light-gray);
1751
+ background-color: var(--color-brand-light-gray);
1752
+ }
1753
+
1754
+ .select-module-z8cWq {
1755
+ overflow: auto;
1756
+ width: var(--trigger-width);
1757
+ min-width: -moz-fit-content;
1758
+ min-width: fit-content;
1759
+ background-color: var(--color-white);
1760
+ box-shadow: var(--box-shadow-light);
1761
+ padding-block: var(--space-8);
1762
+ }
1763
+
1764
+ .select-module-S21ba {
1765
+ outline: none;
1766
+ }
1767
+
1768
+ .select-module-4Bm2j {
1769
+ padding: var(--space-8) var(--space-24);
1770
+ color: var(--color-brand-dark-gray);
1771
+ cursor: default;
1772
+ line-height: 1;
1773
+ outline: none;
1774
+ word-break: break-word;
1775
+ }
1776
+
1777
+ .select-module-LgEJO {
1778
+ position: relative;
1779
+ padding: var(--space-8) var(--space-24);
1780
+ cursor: pointer;
1781
+ line-height: 1;
1782
+ outline: none;
1783
+ word-break: break-word;
1784
+ }
1785
+
1786
+ .select-module-LgEJO .select-module-lQFw3 {
1787
+ position: absolute;
1788
+ width: var(--space-24);
1789
+ height: var(--space-24);
1790
+ inset: 0;
1791
+ margin-block: auto;
1792
+ }
1793
+
1794
+ .select-module-LgEJO:hover,
1795
+ .select-module-LgEJO:focus {
1796
+ background-color: var(--color-brand-red);
1797
+ color: var(--color-white);
1798
+ }
1799
+
1800
+ .modal-module-rVFJc {
1801
+ position: fixed;
1802
+ z-index: calc(var(--modal-layer) - 1);
1803
+ top: 0;
1804
+ left: 0;
1805
+ display: flex;
1806
+ width: 100vw;
1807
+ height: var(--visual-viewport-height);
1808
+ align-items: center;
1809
+ justify-content: center;
1810
+ -webkit-backdrop-filter: blur(4px);
1811
+ backdrop-filter: blur(4px);
1812
+ background-color: rgb(0 0 0 / 52%);
1813
+ }
1814
+
1815
+ .modal-module-rVFJc[data-entering] {
1816
+ animation: modal-module-63Uyl 200ms;
1817
+ }
1818
+
1819
+ .modal-module-rVFJc[data-exiting] {
1820
+ animation: modal-module-63Uyl 150ms reverse ease-in;
1821
+ }
1822
+
1823
+ .modal-module-rVFJc:has(.modal-module-uwets) {
1824
+ display: contents;
1825
+ }
1826
+
1827
+ .modal-module-6vlFt {
1828
+ position: absolute;
1829
+ z-index: calc(var(--modal-layer) - 1);
1830
+ bottom: var(--space-36);
1831
+ min-width: 300px;
1832
+ max-width: 90%;
1833
+ border: 1px solid var(--gray-400);
1834
+ border-radius: 12px;
1835
+ background: var(--color-white);
1836
+ box-shadow: 0 8px 20px rgba(0 0 0 / 10%);
1837
+ color: var(--text-color);
1838
+ outline: none;
1839
+ }
1840
+
1841
+ .modal-module-6vlFt section:focus-visible,
1842
+ .modal-module-6vlFt section:focus {
1843
+ outline: none;
1844
+ }
1845
+
1846
+ .modal-module-6vlFt .modal-module-FJxzx {
1847
+ width: 100%;
1848
+ height: 100%;
1849
+ }
1850
+
1851
+ .modal-module-6vlFt[data-entering] {
1852
+ animation: modal-module-jkAe7 600ms ease;
1853
+ }
1854
+
1855
+ .modal-module-6vlFt[data-entering] .modal-module-FJxzx {
1856
+ animation: modal-module-WOZ01 600ms ease;
1857
+ }
1858
+
1859
+ .modal-module-6vlFt:where(.modal-module-uwets) {
1860
+ position: fixed;
1861
+ max-width: 100%;
1862
+ border-radius: 0;
1863
+ inset: 0;
1864
+ }
1865
+
1866
+ .modal-module-6vlFt:where(.modal-module-uwets)[data-entering] {
1867
+ animation: modal-module-63Uyl 200ms;
1868
+ }
1869
+
1870
+ .modal-module-6vlFt:where(.modal-module-uwets)[data-exiting] {
1871
+ animation: modal-module-63Uyl 200ms reverse;
1872
+ }
1873
+
1874
+ .modal-module-6vlFt .modal-module-7zIZE {
1875
+ position: absolute;
1876
+ top: 0;
1877
+ right: 0;
1878
+ }
1879
+
1880
+ @media (width >= 768px) {
1881
+
1882
+ .modal-module-6vlFt {
1883
+ bottom: auto
1884
+ }
1885
+
1886
+ .modal-module-6vlFt:where(.modal-module-uwets) {
1887
+ bottom: 0;
1888
+ }
1889
+ .modal-module-6vlFt[data-entering]:not(.modal-module-uwets) {
1890
+ animation: modal-module-aPJ7X 600ms ease;
1891
+ }
1892
+
1893
+ .modal-module-6vlFt[data-entering]:not(.modal-module-uwets) .modal-module-FJxzx {
1894
+ animation: modal-module-WOZ01 600ms ease;
1895
+ }
1896
+ }
1897
+
1898
+ @keyframes modal-module-63Uyl {
1899
+ from {
1900
+ opacity: 0;
1901
+ }
1902
+
1903
+ to {
1904
+ opacity: 1;
1905
+ }
1906
+ }
1907
+
1908
+ @keyframes modal-module-aPJ7X {
1909
+ from {
1910
+ transform: scale(0.1);
1911
+ }
1912
+
1913
+ to {
1914
+ transform: scale(1);
1915
+ }
1916
+ }
1917
+
1918
+ @keyframes modal-module-jkAe7 {
1919
+ 0% {
1920
+ transform: translateY(100%);
1921
+ }
1922
+
1923
+ 50% {
1924
+ transform: translateY(1%);
1925
+ }
1926
+
1927
+ 100% {
1928
+ transform: translateY(0);
1929
+ }
1930
+ }
1931
+
1932
+ @keyframes modal-module-WOZ01 {
1933
+ 0% {
1934
+ opacity: 0;
1935
+ }
1936
+
1937
+ 50% {
1938
+ opacity: 0;
1939
+ }
1940
+
1941
+ 100% {
1942
+ opacity: 1;
1943
+ }
1944
+ }
1945
+
1946
+ .heading-module-pMC65 {
1947
+ padding: 0;
1948
+ margin: 0;
1949
+ color: var(--color-brand-black);
1950
+ font-weight: var(--font-weight-normal);
1951
+ transition: all 0.2s ease-out;
1952
+ }
1953
+
1954
+ .heading-module-pMC65:where(.heading-module-6spgX) {
1955
+ text-transform: uppercase;
1956
+ }
1957
+
1958
+ .heading-module-pMC65:where(.heading-module-XXMDM) {
1959
+ font-style: italic;
1960
+ }
1961
+
1962
+ .heading-module-pMC65:where(.heading-module-xvrxo) {
1963
+ font-weight: var(--font-weight-black);
1964
+ }
1965
+
1966
+ .heading-module-pMC65:where(.heading-module-Kn3ZN) {
1967
+ font-size: var(--text-heading-xxl-size);
1968
+ line-height: var(--text-heading-xxl-line-height);
1969
+ }
1970
+
1971
+ .heading-module-pMC65:where(.heading-module--hZs-) {
1972
+ font-size: var(--text-heading-xl-size);
1973
+ line-height: var(--text-heading-xl-line-height);
1974
+ }
1975
+
1976
+ .heading-module-pMC65:where(.heading-module-WrJRY) {
1977
+ font-size: var(--text-heading-l-size);
1978
+ line-height: var(--text-heading-l-line-height);
1979
+ }
1980
+
1981
+ .heading-module-pMC65:where(.heading-module-hTexc) {
1982
+ font-size: var(--text-heading-m-size);
1983
+ line-height: var(--text-heading-m-line-height);
1984
+ }
1985
+
1986
+ .heading-module-pMC65:where(.heading-module-7W29m) {
1987
+ font-size: var(--text-heading-s-size);
1988
+ line-height: var(--text-heading-s-line-height);
1989
+ }
1990
+
1991
+ .heading-module-pMC65:where(.heading-module-SgaLB) {
1992
+ font-size: var(--text-heading-xs-size);
1993
+ line-height: var(--text-heading-xs-line-height);
1994
+ }
1995
+
1996
+ .heading-module-pMC65:where(.heading-module-33en7) {
1997
+ font-size: var(--text-heading-xxs-size);
1998
+ line-height: var(--text-heading-xxs-line-height);
1999
+ }
2000
+
2001
+ .dialog-module-qKzgy {
2002
+ position: relative;
2003
+ padding: 1rem;
2004
+ }
2005
+
2006
+ .dialog-module-qKzgy,
2007
+ .dialog-module-qKzgy * {
2008
+ box-sizing: border-box;
2009
+ }
2010
+
2011
+ .dialog-module-qKzgy .dialog-module-ZnsAe {
2012
+ display: flex;
2013
+ align-items: center;
2014
+ justify-content: space-between;
2015
+ gap: 8px;
2016
+ line-height: 1;
2017
+ }
2018
+
2019
+ .dialog-module-qKzgy .dialog-module-ZnsAe:not(:empty) {
2020
+ margin-bottom: var(--space-16);
2021
+ }
2022
+
2023
+ .dialog-module-qKzgy .dialog-module-ZnsAe .dialog-module-Y7Tqg {
2024
+ position: absolute;
2025
+ top: 0;
2026
+ right: 0;
2027
+ }
2028
+
2029
+ .dialog-module-qKzgy .dialog-module-y7Axm {
2030
+ display: flex;
2031
+ flex-direction: column;
2032
+ margin-top: var(--space-32);
2033
+ gap: 8px;
2034
+ }
2035
+
2036
+ .country-selector-dialog-module-mMJS0 {
2037
+ max-width: 342px;
2038
+ padding: var(--space-36) var(--space-24);
2039
+ }
2040
+
2041
+ .country-selector-dialog-module-mMJS0 .country-selector-dialog-module-z-ZqY {
2042
+ display: grid;
2043
+ }
2044
+
2045
+ .country-selector-dialog-module-mMJS0 .country-selector-dialog-module-z-ZqY .country-selector-dialog-module-7VjsF {
2046
+ display: block;
2047
+ margin-bottom: var(--space-16);
2048
+ margin-inline: auto;
2049
+ }
2050
+
2051
+ .country-selector-dialog-module-mMJS0 .country-selector-dialog-module-z-ZqY .country-selector-dialog-module-IdVDt {
2052
+ margin-top: 0;
2053
+ margin-bottom: var(--space-12);
2054
+ }
2055
+
2056
+ .country-selector-dialog-module-mMJS0 .country-selector-dialog-module-z-ZqY .country-selector-dialog-module-Nvikf {
2057
+ display: grid;
2058
+ gap: var(--space-24);
2059
+ }
2060
+
2061
+ .country-selector-trigger-module-aioDu {
2062
+ all: unset;
2063
+ display: inline-flex;
2064
+ align-items: center;
2065
+ gap: var(--space-8);
2066
+ }
2067
+
2068
+ .country-selector-trigger-module-aioDu:hover {
2069
+ cursor: pointer;
2070
+ }
2071
+
2072
+ .country-selector-trigger-module-aioDu:focus-visible {
2073
+ box-shadow: var(--shadow-focus-outline);
2074
+ }
2075
+
2076
+ .country-selector-trigger-module-aioDu .country-selector-trigger-module-zOSJK {
2077
+ width: 24px;
2078
+ height: 24px;
2079
+ border: 1px solid var(--color-white);
2080
+ border-radius: 50%;
2081
+ }
2082
+
2083
+ .country-selector-trigger-module-aioDu .country-selector-trigger-module-TE8tl {
2084
+ display: flex;
2085
+ color: var(--color-white);
2086
+ font: inherit;
2087
+ line-height: 1;
2088
+ }
2089
+
2090
+ .country-selector-trigger-module-aioDu .country-selector-trigger-module-TE8tl .country-selector-trigger-module-GNRDD {
2091
+ margin-inline: var(--space-4);
2092
+ }
2093
+
1671
2094
  .multi-select-module-DC7Ix .multi-select-module-OW-NK {
1672
2095
  display: flex;
1673
2096
  min-height: 32px;
@@ -1779,131 +2202,14 @@
1779
2202
  background-position:
1780
2203
  2px 2px,
1781
2204
  14px 14px;
1782
- background-repeat: no-repeat;
1783
- background-size: 10px 10px;
1784
- }
1785
-
1786
- .checkbox-module-YNVdd.checkbox-module-nEhvW[data-disabled] {
1787
- cursor: pointer;
1788
- opacity: 0.4;
1789
- }
1790
-
1791
- .select-module-ui-Wc {
1792
- --trigger-width: initial;
1793
- --height: var(--space-44);
1794
-
1795
- all: unset;
1796
- position: relative;
1797
- display: inline-flex;
1798
- box-sizing: border-box;
1799
- flex-direction: column;
1800
- flex-grow: 1;
1801
- gap: var(--space-4);
1802
- }
1803
-
1804
- .select-module-ui-Wc.select-module-44a1l {
1805
- --height: var(--space-36);
1806
- }
1807
-
1808
- .select-module-ui-Wc.select-module-QUm-8 {
1809
- --height: var(--space-44);
1810
- }
1811
-
1812
- .select-module-ui-Wc.select-module-IRd4F button {
1813
- background-color: var(--color-brand-light-gray);
1814
- }
1815
-
1816
- .select-module-aMQIQ {
1817
- all: unset;
1818
- position: relative;
1819
- display: flex;
1820
- width: 100%;
1821
- height: var(--height);
1822
- box-sizing: border-box;
1823
- align-items: center;
1824
- padding: 10px 32px 10px 16px;
1825
- border: 1px solid var(--color-brand-medium-gray);
1826
- border-radius: var(--border-radius-8);
1827
- font: inherit;
1828
- gap: var(--space-16);
1829
- outline: none;
1830
- }
1831
-
1832
- .select-module-aMQIQ .select-module-00uRU {
1833
- position: absolute;
1834
- display: block;
1835
- width: var(--space-12);
1836
- height: var(--space-12);
1837
- color: var(--color-brand-dark-gray);
1838
- inset-block: 0;
1839
- inset-inline-end: 14px;
1840
- margin-block: auto;
1841
- }
1842
-
1843
- .select-module-aMQIQ [slot='description'] {
1844
- display: none;
1845
- }
1846
-
1847
- .select-module-aMQIQ.select-module-XMc0P,
1848
- .select-module-aMQIQ:focus,
1849
- .select-module-aMQIQ:has([data-focused]) {
1850
- border-color: transparent;
1851
- box-shadow: var(--shadow-focus-outline);
1852
- outline: none;
1853
- }
1854
-
1855
- .select-module-aMQIQ[disabled] {
1856
- opacity: 0.4;
1857
- }
1858
-
1859
- .select-module-z8cWq {
1860
- width: var(--trigger-width);
1861
- min-width: -moz-fit-content;
1862
- min-width: fit-content;
1863
- background-color: var(--color-white);
1864
- box-shadow: var(--box-shadow-light);
1865
- padding-block: var(--space-8);
1866
- }
1867
-
1868
- .select-module-z8cWq.select-module-IRd4F {
1869
- background-color: var(--color-brand-light-gray);
1870
- }
1871
-
1872
- .select-module-S21ba {
1873
- outline: none;
1874
- }
1875
-
1876
- .select-module-4Bm2j {
1877
- padding: var(--space-8) var(--space-24);
1878
- color: var(--color-brand-dark-gray);
1879
- cursor: default;
1880
- line-height: 1;
1881
- outline: none;
1882
- word-break: break-word;
1883
- }
1884
-
1885
- .select-module-LgEJO {
1886
- position: relative;
1887
- padding: var(--space-8) var(--space-24);
1888
- cursor: pointer;
1889
- line-height: 1;
1890
- outline: none;
1891
- word-break: break-word;
1892
- }
1893
-
1894
- .select-module-LgEJO .select-module-lQFw3 {
1895
- position: absolute;
1896
- width: var(--space-24);
1897
- height: var(--space-24);
1898
- inset: 0;
1899
- margin-block: auto;
1900
- }
2205
+ background-repeat: no-repeat;
2206
+ background-size: 10px 10px;
2207
+ }
1901
2208
 
1902
- .select-module-LgEJO:hover,
1903
- .select-module-LgEJO:focus {
1904
- background-color: var(--color-brand-red);
1905
- color: var(--color-white);
1906
- }
2209
+ .checkbox-module-YNVdd.checkbox-module-nEhvW[data-disabled] {
2210
+ cursor: pointer;
2211
+ opacity: 0.4;
2212
+ }
1907
2213
 
1908
2214
  .textarea-module-C6Xr1 {
1909
2215
  position: relative;
@@ -2049,6 +2355,7 @@
2049
2355
 
2050
2356
  .product-overview-grid-module-MlUVA {
2051
2357
  position: relative;
2358
+ min-height: 380px;
2052
2359
  }
2053
2360
 
2054
2361
  .product-overview-grid-module-MlUVA:not(:last-child)::before {
@@ -2072,12 +2379,23 @@
2072
2379
  z-index: 1;
2073
2380
  }
2074
2381
 
2382
+ @media (width >= 360px) {
2383
+ .product-overview-grid-module-MlUVA {
2384
+ min-height: 448px;
2385
+ }
2386
+ }
2387
+
2075
2388
  @media (width >= 576px) {
2076
2389
  .product-overview-grid-module-bzys- {
2077
2390
  --amount-of-columns: 2;
2078
2391
  --row-gap: 0;
2079
2392
  --column-gap: var(--space-16);
2080
2393
  }
2394
+
2395
+ .product-overview-grid-module-MlUVA {
2396
+ min-height: 448px;
2397
+ }
2398
+
2081
2399
  .product-overview-grid-module-MlUVA::before {
2082
2400
  display: none;
2083
2401
  }
@@ -2291,61 +2609,6 @@
2291
2609
  }
2292
2610
  }
2293
2611
 
2294
- .heading-module-pMC65 {
2295
- padding: 0;
2296
- margin: 0;
2297
- color: var(--color-brand-black);
2298
- font-weight: var(--font-weight-normal);
2299
- transition: all 0.2s ease-out;
2300
- }
2301
-
2302
- .heading-module-pMC65:where(.heading-module-6spgX) {
2303
- text-transform: uppercase;
2304
- }
2305
-
2306
- .heading-module-pMC65:where(.heading-module-XXMDM) {
2307
- font-style: italic;
2308
- }
2309
-
2310
- .heading-module-pMC65:where(.heading-module-xvrxo) {
2311
- font-weight: var(--font-weight-black);
2312
- }
2313
-
2314
- .heading-module-pMC65:where(.heading-module-Kn3ZN) {
2315
- font-size: var(--text-heading-xxl-size);
2316
- line-height: var(--text-heading-xxl-line-height);
2317
- }
2318
-
2319
- .heading-module-pMC65:where(.heading-module--hZs-) {
2320
- font-size: var(--text-heading-xl-size);
2321
- line-height: var(--text-heading-xl-line-height);
2322
- }
2323
-
2324
- .heading-module-pMC65:where(.heading-module-WrJRY) {
2325
- font-size: var(--text-heading-l-size);
2326
- line-height: var(--text-heading-l-line-height);
2327
- }
2328
-
2329
- .heading-module-pMC65:where(.heading-module-hTexc) {
2330
- font-size: var(--text-heading-m-size);
2331
- line-height: var(--text-heading-m-line-height);
2332
- }
2333
-
2334
- .heading-module-pMC65:where(.heading-module-7W29m) {
2335
- font-size: var(--text-heading-s-size);
2336
- line-height: var(--text-heading-s-line-height);
2337
- }
2338
-
2339
- .heading-module-pMC65:where(.heading-module-SgaLB) {
2340
- font-size: var(--text-heading-xs-size);
2341
- line-height: var(--text-heading-xs-line-height);
2342
- }
2343
-
2344
- .heading-module-pMC65:where(.heading-module-33en7) {
2345
- font-size: var(--text-heading-xxs-size);
2346
- line-height: var(--text-heading-xxs-line-height);
2347
- }
2348
-
2349
2612
  .page-module-XtZ9Y {
2350
2613
  font-family: var(--font-family-sonic);
2351
2614
  }
@@ -2383,187 +2646,63 @@
2383
2646
  line-height: 1;
2384
2647
  }
2385
2648
 
2386
- .modal-module-rVFJc {
2387
- position: fixed;
2388
- z-index: calc(var(--modal-layer) - 1);
2389
- top: 0;
2390
- left: 0;
2391
- display: flex;
2392
- width: 100vw;
2393
- height: var(--visual-viewport-height);
2394
- align-items: center;
2395
- justify-content: center;
2396
- -webkit-backdrop-filter: blur(4px);
2397
- backdrop-filter: blur(4px);
2398
- background-color: rgb(0 0 0 / 52%);
2399
- }
2400
-
2401
- .modal-module-rVFJc[data-entering] {
2402
- animation: modal-module-63Uyl 200ms;
2403
- }
2404
-
2405
- .modal-module-rVFJc[data-exiting] {
2406
- animation: modal-module-63Uyl 150ms reverse ease-in;
2407
- }
2408
-
2409
- .modal-module-rVFJc:has(.modal-module-uwets) {
2410
- display: contents;
2411
- }
2412
-
2413
- .modal-module-6vlFt {
2414
- position: absolute;
2415
- z-index: calc(var(--modal-layer) - 1);
2416
- min-width: 300px;
2417
- max-width: 90%;
2418
- border: 1px solid var(--gray-400);
2419
- border-radius: 12px;
2420
- background: var(--color-white);
2421
- box-shadow: 0 8px 20px rgba(0 0 0 / 10%);
2422
- color: var(--text-color);
2423
- outline: none;
2424
- }
2425
-
2426
- .modal-module-6vlFt section:focus-visible,
2427
- .modal-module-6vlFt section:focus {
2428
- outline: none;
2429
- }
2430
-
2431
- .modal-module-6vlFt[data-entering] {
2432
- animation: modal-module-aPJ7X 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
2433
- }
2434
-
2435
- .modal-module-6vlFt .modal-module-7c3-9 {
2436
- width: 100%;
2437
- height: 100%;
2438
- }
2439
-
2440
- .modal-module-6vlFt:where(.modal-module-uwets) {
2441
- position: fixed;
2442
- max-width: 100%;
2443
- border-radius: 0;
2444
- inset: 0;
2445
- }
2446
-
2447
- .modal-module-6vlFt:where(.modal-module-uwets)[data-entering] {
2448
- animation: modal-module-63Uyl 300ms;
2449
- }
2450
-
2451
- .modal-module-6vlFt:where(.modal-module-uwets)[data-exiting] {
2452
- animation: modal-module-63Uyl 300ms reverse;
2453
- }
2454
-
2455
- .modal-module-6vlFt .modal-module-7zIZE {
2456
- position: absolute;
2457
- top: 0;
2458
- right: 0;
2459
- }
2460
-
2461
- @keyframes modal-module-63Uyl {
2462
- from {
2463
- opacity: 0;
2464
- }
2465
-
2466
- to {
2467
- opacity: 1;
2468
- }
2469
- }
2470
-
2471
- @keyframes modal-module-aPJ7X {
2472
- from {
2473
- transform: scale(0.8);
2474
- }
2475
-
2476
- to {
2477
- transform: scale(1);
2478
- }
2479
- }
2480
-
2481
- .dialog-module-qKzgy {
2482
- position: relative;
2483
- padding: 1rem;
2484
- }
2485
-
2486
- .dialog-module-qKzgy,
2487
- .dialog-module-qKzgy * {
2488
- box-sizing: border-box;
2489
- }
2490
-
2491
- .dialog-module-qKzgy .dialog-module-ZnsAe {
2492
- display: flex;
2493
- align-items: center;
2494
- justify-content: space-between;
2495
- margin-bottom: var(--space-16);
2496
- gap: 8px;
2497
- line-height: 1;
2498
- }
2499
-
2500
- .dialog-module-qKzgy .dialog-module-ZnsAe .dialog-module-Y7Tqg {
2501
- position: absolute;
2502
- top: 0;
2503
- right: 0;
2504
- }
2505
-
2506
- .dialog-module-qKzgy .dialog-module-y7Axm {
2507
- display: flex;
2508
- flex-direction: column;
2509
- margin-top: var(--space-32);
2510
- gap: 8px;
2511
- }
2512
-
2513
2649
  .sign-in-dialog-module-P-AHV {
2514
2650
  max-width: 403px;
2515
2651
  padding: 28px 24px 36px;
2516
2652
  }
2517
2653
 
2518
- .product-carousel-module-DpUaX {
2654
+ .card-carousel-module-JXQmk {
2519
2655
  display: flex;
2520
2656
  width: 100%;
2657
+ height: 100%;
2521
2658
  flex-direction: column;
2522
2659
  gap: var(--space-24);
2523
2660
  }
2524
2661
 
2525
2662
  @media (width >= 768px) {
2526
- .product-carousel-module-DpUaX .product-carousel-module-0ymqZ {
2663
+ .card-carousel-module-JXQmk .card-carousel-module-XQ2pX {
2527
2664
  align-self: center;
2528
2665
  }
2529
2666
  }
2530
2667
 
2531
- .product-carousel-module-DpUaX .swiper {
2668
+ .card-carousel-module-JXQmk .swiper {
2532
2669
  --padding: var(--space-16);
2533
2670
 
2534
2671
  width: calc(100% + (2 * var(--padding)));
2672
+ height: 100%;
2535
2673
  padding: var(--padding);
2536
2674
  margin-top: calc(var(--padding) * -1);
2537
2675
  margin-bottom: calc(var(--padding) * -1);
2538
2676
  margin-left: calc(var(--padding) * -1);
2539
2677
  }
2540
2678
 
2541
- .product-carousel-module-XVTB1 {
2679
+ .card-carousel-module-DxKOG {
2542
2680
  --slide-width-normal: 300px;
2543
2681
  --slide-width-narrow: 154px;
2544
2682
  --slide-width-auto: auto;
2545
2683
  --slide-width: var(--slide-width-narrow);
2546
2684
 
2547
2685
  position: relative;
2686
+ height: 100%;
2548
2687
  }
2549
2688
 
2550
- .product-carousel-module-XVTB1.product-carousel-module-E2EUK {
2689
+ .card-carousel-module-DxKOG.card-carousel-module-RQ8gl {
2551
2690
  --slide-width: var(--slide-width-auto);
2552
2691
  }
2553
2692
 
2554
- .product-carousel-module-XVTB1.product-carousel-module-yrkV9 {
2693
+ .card-carousel-module-DxKOG.card-carousel-module-8uKSt {
2555
2694
  --slide-width: var(--slide-width-narrow);
2556
2695
  }
2557
2696
 
2558
- .product-carousel-module-XVTB1.product-carousel-module-SzVga {
2697
+ .card-carousel-module-DxKOG.card-carousel-module-l-ylK {
2559
2698
  --slide-width: var(--slide-width-normal);
2560
2699
  }
2561
2700
 
2562
- .product-carousel-module-XVTB1 > * {
2701
+ .card-carousel-module-DxKOG > * {
2563
2702
  width: var(--slide-width);
2564
2703
  }
2565
2704
 
2566
- .product-carousel-module-XVTB1:not(:first-child)::after {
2705
+ .card-carousel-module-DxKOG:not(:first-child)::after {
2567
2706
  position: absolute;
2568
2707
  top: 0;
2569
2708
  left: calc((var(--column-gap) / 2) * -1);
@@ -2583,35 +2722,35 @@
2583
2722
  /* Hide the separator line between the cards when hovering */
2584
2723
 
2585
2724
  @media (hover: hover) {
2586
- .product-carousel-module-XVTB1:hover {
2725
+ .card-carousel-module-DxKOG:hover {
2587
2726
  z-index: 1;
2588
2727
  }
2589
2728
 
2590
- .product-carousel-module-XVTB1:hover::after {
2729
+ .card-carousel-module-DxKOG:hover::after {
2591
2730
  display: none;
2592
2731
  }
2593
- .product-carousel-module-XVTB1:hover + .product-carousel-module-XVTB1::after {
2732
+ .card-carousel-module-DxKOG:hover + .card-carousel-module-DxKOG::after {
2594
2733
  display: none;
2595
2734
  }
2596
2735
  }
2597
2736
 
2598
2737
  @media (width >= 768px) {
2599
- .product-carousel-module-XVTB1 {
2738
+ .card-carousel-module-DxKOG {
2600
2739
  --slide-width-normal: 300px;
2601
2740
  --slide-width-narrow: 192px;
2602
2741
  --slide-width-auto: auto;
2603
2742
  --slide-width: var(--slide-width-narrow);
2604
2743
  }
2605
2744
 
2606
- .product-carousel-module-XVTB1.product-carousel-module-E2EUK {
2745
+ .card-carousel-module-DxKOG.card-carousel-module-RQ8gl {
2607
2746
  --slide-width: var(--slide-width-auto);
2608
2747
  }
2609
2748
 
2610
- .product-carousel-module-XVTB1.product-carousel-module-yrkV9 {
2749
+ .card-carousel-module-DxKOG.card-carousel-module-8uKSt {
2611
2750
  --slide-width: var(--slide-width-narrow);
2612
2751
  }
2613
2752
 
2614
- .product-carousel-module-XVTB1.product-carousel-module-SzVga {
2753
+ .card-carousel-module-DxKOG.card-carousel-module-l-ylK {
2615
2754
  --slide-width: var(--slide-width-normal);
2616
2755
  }
2617
2756
  }
@@ -3026,7 +3165,7 @@ button.swiper-pagination-bullet {
3026
3165
 
3027
3166
  .product-details-page-layout-module-IQFIn .product-details-page-layout-module--7oUp .product-details-page-layout-module-Y2490 {
3028
3167
  position: sticky;
3029
- top: 0;
3168
+ top: calc(var(--header-height) + var(--space-8));
3030
3169
  height: -moz-fit-content;
3031
3170
  height: fit-content;
3032
3171
  }
@@ -3541,30 +3680,30 @@ button.swiper-pagination-bullet {
3541
3680
  height: 12px;
3542
3681
  }
3543
3682
 
3544
- & .promo-card-module-e2oii {
3683
+ & .promo-banner-module-yuVEO {
3545
3684
  position: relative;
3546
3685
  display: block;
3547
3686
  height: 122px;
3548
3687
  outline: none;
3549
3688
  }
3550
3689
 
3551
- & .promo-card-module-e2oii.promo-card-module-1-jT0 {
3690
+ & .promo-banner-module-yuVEO.promo-banner-module-ut8Kd {
3552
3691
  width: 250px;
3553
3692
  }
3554
3693
 
3555
- & .promo-card-module-e2oii.promo-card-module-zIYDh {
3694
+ & .promo-banner-module-yuVEO.promo-banner-module-CSkIw {
3556
3695
  width: 310px;
3557
3696
  }
3558
3697
 
3559
- & .promo-card-module-e2oii picture {
3698
+ & .promo-banner-module-yuVEO picture {
3560
3699
  width: 100%;
3561
3700
  }
3562
3701
 
3563
- & .promo-card-module-e2oii picture img {
3702
+ & .promo-banner-module-yuVEO picture img {
3564
3703
  width: 100%;
3565
3704
  }
3566
3705
 
3567
- & .promo-card-module-e2oii:focus-visible::after {
3706
+ & .promo-banner-module-yuVEO:focus-visible::after {
3568
3707
  position: absolute;
3569
3708
  display: block;
3570
3709
  background-color: transparent;
@@ -3578,22 +3717,22 @@ button.swiper-pagination-bullet {
3578
3717
  }
3579
3718
 
3580
3719
  @media (width >= 768px) {
3581
- & .promo-card-module-e2oii {
3720
+ & .promo-banner-module-yuVEO {
3582
3721
  height: 230px;
3583
3722
  }
3584
3723
 
3585
- & .promo-card-module-e2oii.promo-card-module-zIYDh,
3586
- & .promo-card-module-e2oii.promo-card-module-1-jT0 {
3724
+ & .promo-banner-module-yuVEO.promo-banner-module-CSkIw,
3725
+ & .promo-banner-module-yuVEO.promo-banner-module-ut8Kd {
3587
3726
  width: auto;
3588
3727
  }
3589
3728
  }
3590
3729
 
3591
- .promo-cards-module-Dy4p3 {
3730
+ .promo-banners-module-uVyxh {
3592
3731
  margin-bottom: var(--space-24);
3593
3732
  }
3594
3733
 
3595
3734
  @media (width >= 768px) {
3596
- .promo-cards-module-Dy4p3 {
3735
+ .promo-banners-module-uVyxh {
3597
3736
  display: grid;
3598
3737
  margin-bottom: var(--space-32);
3599
3738
  gap: var(--space-16);
@@ -3602,7 +3741,7 @@ button.swiper-pagination-bullet {
3602
3741
  }
3603
3742
 
3604
3743
  @media (width >= 1440px) {
3605
- .promo-cards-module-Dy4p3 {
3744
+ .promo-banners-module-uVyxh {
3606
3745
  gap: var(--space-24);
3607
3746
  grid-template-columns: 1.5fr 1fr;
3608
3747
  }
@@ -3822,6 +3961,48 @@ button.swiper-pagination-bullet {
3822
3961
  }
3823
3962
  }
3824
3963
 
3964
+ .promo-card-module-idY1g {
3965
+ height: 100%;
3966
+ container-type: inline-size;
3967
+ }
3968
+
3969
+ .promo-card-module-e2oii {
3970
+ --box-shadow: var(--box-shadow-medium);
3971
+
3972
+ position: relative;
3973
+ overflow: hidden;
3974
+ width: 100%;
3975
+ height: 100%;
3976
+ box-sizing: border-box;
3977
+ cursor: pointer;
3978
+ outline: none;
3979
+ text-decoration: none;
3980
+ transition:
3981
+ scale ease 0.2s,
3982
+ box-shadow ease 0.2s;
3983
+ }
3984
+
3985
+ .promo-card-module-e2oii .promo-card-module-jr9sn img {
3986
+ -o-object-fit: cover;
3987
+ object-fit: cover;
3988
+ -o-object-position: bottom left;
3989
+ object-position: bottom left;
3990
+ }
3991
+
3992
+ @media (hover: hover) {
3993
+ .promo-card-module-e2oii:hover {
3994
+ box-shadow: var(--box-shadow);
3995
+ color: var(--color-black);
3996
+ scale: 1.04;
3997
+ }
3998
+ }
3999
+
4000
+ @container (min-width: 273px) {
4001
+ .promo-card-module-e2oii {
4002
+ --box-shadow: var(--box-shadow-heavy);
4003
+ }
4004
+ }
4005
+
3825
4006
  .product-listing-page-module-dmIHF .product-listing-page-module-Oz76Z {
3826
4007
  margin-bottom: 44px;
3827
4008
  }
@@ -4209,6 +4390,7 @@ button.swiper-pagination-bullet {
4209
4390
  --padding-block: var(--space-20);
4210
4391
 
4211
4392
  display: grid;
4393
+ grid-template-rows: auto 1fr;
4212
4394
  padding-block: var(--padding-block);
4213
4395
  padding-inline: var(--padding-inline);
4214
4396
  }
@@ -4243,7 +4425,8 @@ button.swiper-pagination-bullet {
4243
4425
  }
4244
4426
 
4245
4427
  .search-content-module-KIok6 .search-content-module-qK5sg {
4246
- display: block;
4428
+ display: grid;
4429
+ grid-template-rows: 1fr auto;
4247
4430
  }
4248
4431
 
4249
4432
  .search-content-module-w-ORq {
@@ -4268,6 +4451,7 @@ button.swiper-pagination-bullet {
4268
4451
  --card-width: 154px;
4269
4452
 
4270
4453
  overflow: hidden;
4454
+ height: 100%;
4271
4455
  padding-top: 32px;
4272
4456
  margin-top: -32px;
4273
4457
  gap: var(--column-gap);
@@ -4375,43 +4559,6 @@ button.swiper-pagination-bullet {
4375
4559
  font-weight: var(--font-weight-bold);
4376
4560
  }
4377
4561
 
4378
- .no-search-module-87NKV {
4379
- position: relative;
4380
- left: -16px;
4381
- display: inline-block;
4382
- overflow: hidden;
4383
- width: calc(100% + var(--space-32));
4384
- }
4385
-
4386
- .no-search-module-87NKV .no-search-module-beCXI {
4387
- padding-inline: var(--space-16);
4388
- }
4389
-
4390
- .no-search-module-87NKV .no-search-module-dtT5J {
4391
- display: grid;
4392
- width: 153px;
4393
- height: 272px;
4394
- cursor: pointer;
4395
- place-items: center;
4396
- }
4397
-
4398
- @media (width >= 768px) {
4399
- .no-search-module-87NKV {
4400
- position: static;
4401
- left: unset;
4402
- width: 100%;
4403
- }
4404
-
4405
- .no-search-module-87NKV .no-search-module-beCXI {
4406
- padding-inline: 0;
4407
- }
4408
-
4409
- .no-search-module-87NKV .no-search-module-dtT5J {
4410
- width: 192px;
4411
- height: 343px;
4412
- }
4413
- }
4414
-
4415
4562
  .search-result-panel-module-KBrc9 {
4416
4563
  position: absolute;
4417
4564
  z-index: var(--sidebar-layer);