:root {
  --store-page-background: #f5f5f7;
  --store-page-text: #000;
  --store-page-edge: max(22px, env(safe-area-inset-left));
  --store-card-gap: 20px;
}

.store-page {
  margin: 0;
  overflow-x: hidden;
  background: var(--store-page-background);
  color: var(--store-page-text);
  font-family:
    "SF Pro Text", "SF Pro Icons", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.store-page *,
.store-page *::before,
.store-page *::after {
  box-sizing: border-box;
}

.store-main {
  width: 100%;
  overflow: hidden;
  background: var(--store-page-background);
}

.store-page [data-site-footer] {
  background: var(--store-page-background);
}

.store-introduction,
.store-shelf-header,
.store-card-scroller {
  margin-inline: var(--store-page-edge);
}

.store-introduction {
  padding: 80px 0 64px;
}

.store-introduction h1 {
  margin: 0;
  color: var(--store-page-text);
  font-family:
    "SF Pro Display", "SF Pro Icons", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 80px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.015em;
}

.store-latest {
  padding-bottom: 0;
}

.store-shelf-header {
  padding-bottom: 8px;
  color: var(--store-page-text);
  font-family:
    "SF Pro Display", "SF Pro Icons", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1428571429;
  letter-spacing: 0.007em;
}

.store-shelf-header h2,
.store-shelf-header span {
  display: inline;
  margin: 0;
  font: inherit;
}

.store-shelf-header h2 {
  color: #1d1d1f;
}

.store-shelf-header span {
  color: #6e6e73;
}

.store-card-scroller {
  overflow: visible;
  outline: none;
}

.store-card-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--store-card-gap);
  margin: 0;
  padding: 16px 0 28px;
  list-style: none;
}

.store-card-list > li {
  min-width: 0;
}

.store-card {
  position: relative;
  display: flex;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 2px 4px 12px #00000014;
  color: var(--store-page-text);
  text-decoration: none;
  white-space: normal;
  transform: scale3d(1, 1, 1);
  transition: all 0.3s cubic-bezier(0, 0, 0.5, 1);
}

.store-card:hover,
.store-card:focus-visible {
  box-shadow: 2px 4px 16px #00000029;
  color: var(--store-page-text);
  text-decoration: none;
  transform: scale3d(1.01, 1.01, 1.01);
}

.store-card:focus-visible {
  outline: 4px solid #0071e3;
  outline-offset: 3px;
}

.store-card-artwork {
  position: absolute;
  inset: 0;
  background-color: #fff;
  background-image: var(--store-card-image, none);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.store-card-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 28px;
  color: var(--store-page-text);
}

.store-card-eyebrow {
  color: var(--store-page-text);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3333733333;
  letter-spacing: -0.01em;
}

.store-card-title {
  padding-top: 24px;
  color: var(--store-page-text);
  font-family:
    "SF Pro Display", "SF Pro Icons", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1428571429;
  letter-spacing: 0.007em;
}

.store-card-price {
  padding-top: 10px;
  color: var(--store-page-text);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2857742857;
  letter-spacing: -0.016em;
}

@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  :root {
    --store-page-edge: calc(-268.46154px + 28.36538vw);
  }
}

@media only screen and (min-width: 1440px) {
  :root {
    --store-page-edge: 140px;
  }
}

@media (max-width: 734px) {
  :root {
    --store-page-edge: max(22px, env(safe-area-inset-left));
  }

  .store-introduction {
    padding: 56px 0 64px;
  }

  .store-introduction h1 {
    font-size: 48px;
    line-height: 1.0834933333;
    letter-spacing: -0.003em;
  }

  .store-shelf-header {
    padding-bottom: 8px;
    font-size: 24px;
    line-height: 1.1666666667;
    letter-spacing: 0.009em;
  }

  .store-card-scroller {
    margin-inline: 0;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-inline: var(--store-page-edge);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .store-card-scroller::-webkit-scrollbar {
    display: none;
  }

  .store-card-list {
    display: flex;
    width: max-content;
    gap: var(--store-card-gap);
    padding-right: var(--store-page-edge);
    padding-left: var(--store-page-edge);
    scroll-snap-type: x mandatory;
  }

  .store-card-list > li {
    width: 309px;
    scroll-snap-align: start;
  }

  .store-card {
    height: 450px;
  }

  .store-card-copy {
    padding: 28px;
  }

  .store-card-title {
    font-size: 21px;
    line-height: 1.1904761905;
    letter-spacing: 0.011em;
  }
}

@media only screen and (max-width: 320px) {
  .store-card-list > li {
    width: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .store-card {
    transition: none;
  }
}
