.shop-page {
  min-height: 100vh;
  background: #080908;
  color: var(--white);
}

.shop-page .site-header {
  position: fixed;
}

.shop-main {
  overflow: hidden;
  padding-top: var(--header-height);
}

.shop-label,
.shop-overline,
.shop-fact dt,
.shop-assurance-item span,
.shop-related-card p,
.shop-lookbook figcaption,
.product-checkout-note,
.shop-sticky-meta span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.shop-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--muted);
}

.shop-label::before {
  width: 26px;
  height: 2px;
  background: var(--lime);
  content: "";
}

.shop-label strong {
  color: var(--lime);
}

.shop-collection-hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: end;
  padding: clamp(58px, 8vw, 116px) 0 34px;
  isolation: isolate;
}

.shop-collection-hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 72% 20%, rgba(204, 255, 51, .11), transparent 28%),
    linear-gradient(115deg, #080908 0 52%, #0d100d 100%);
  content: "";
}

.shop-collection-hero::after {
  position: absolute;
  z-index: -1;
  right: -8vw;
  bottom: -24vw;
  width: 62vw;
  height: 62vw;
  border: 1px solid rgba(204, 255, 51, .11);
  border-radius: 50%;
  content: "";
}

.shop-collection-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  gap: clamp(52px, 8vw, 122px);
  align-items: end;
}

.shop-collection-copy h1 {
  max-width: 840px;
  margin: 26px 0 0;
  font-size: clamp(78px, 11.5vw, 174px);
  line-height: .76;
  letter-spacing: -.085em;
  text-transform: uppercase;
}

.shop-collection-copy h1 span {
  display: block;
  color: var(--lime);
}

.shop-collection-copy > p:last-of-type {
  max-width: 650px;
  margin: 34px 0 0;
  color: #b2b7ad;
  font-size: clamp(18px, 1.7vw, 24px);
}

.shop-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.shop-hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .72fr;
  align-items: end;
  gap: 10px;
  min-height: 580px;
}

.shop-hero-visual figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #171a16;
}

.shop-hero-visual figure:first-child {
  height: 86%;
}

.shop-hero-visual figure:last-child {
  height: 62%;
  margin-bottom: 7%;
}

.shop-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.88) contrast(1.03);
}

.shop-hero-visual figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 9px;
  background: rgba(8, 9, 8, .82);
  color: #d3d7cf;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.shop-index-line {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 58px;
  color: #686d64;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.shop-index-line i {
  height: 1px;
  flex: 1;
  background: var(--line);
}

.shop-collection-section {
  padding: clamp(92px, 11vw, 166px) 0;
  background: var(--paper);
  color: var(--ink);
}

.shop-section-heading {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 48px;
  align-items: end;
  margin-bottom: clamp(50px, 7vw, 92px);
}

.shop-section-heading h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(56px, 8vw, 118px);
  line-height: .8;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.shop-section-heading p {
  margin: 0 0 4px;
  color: #5b6057;
}

.shop-collection-section .shop-label {
  color: #5b6057;
}

.shop-collection-section .shop-label::before {
  background: #557600;
}

.shop-product-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.shop-card {
  grid-column: span 4;
  min-width: 0;
  border: 1px solid rgba(17, 19, 15, .18);
  background: #f8f7f1;
}

.shop-card:nth-child(1),
.shop-card:nth-child(2) {
  grid-column: span 6;
}

.shop-card-art {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  background: #e7e7e2;
}

.shop-card-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.shop-card-art::after {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: var(--lime);
  color: var(--black);
  font-size: 20px;
  content: "↗";
  transition: transform .3s var(--ease);
}

.shop-card-art:hover img {
  transform: scale(1.025);
}

.shop-card-art:hover::after {
  transform: translate(3px, -3px);
}

.shop-card-art > span {
  position: absolute;
  z-index: 1;
  top: 13px;
  left: 13px;
  padding: 7px 9px;
  background: var(--black);
  color: var(--lime);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
}

.shop-card-body {
  padding: 21px 22px 23px;
}

.shop-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 13px;
  color: #5b6057;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.shop-card h3 {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: clamp(31px, 4vw, 58px);
  line-height: .92;
  letter-spacing: -.055em;
}

.shop-card:nth-child(n+3) h3 {
  font-size: clamp(28px, 3vw, 44px);
}

.shop-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  border-top: 1px solid rgba(17, 19, 15, .18);
  padding-top: 15px;
}

.shop-card-footer strong {
  font-size: 12px;
}

.shop-card-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #476600;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.shop-process {
  padding: clamp(84px, 10vw, 150px) 0;
  background: #0b0d0b;
}

.shop-process-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}

.shop-process-copy h2 {
  max-width: 820px;
  margin: 24px 0 0;
  font-size: clamp(54px, 7.7vw, 112px);
  line-height: .82;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.shop-process-copy h2 span {
  color: var(--lime);
}

.shop-process-copy > p:last-child {
  max-width: 680px;
  margin: 31px 0 0;
  color: #a9aea4;
  font-size: clamp(17px, 1.5vw, 22px);
}

.shop-process-steps {
  counter-reset: checkout-step;
  border-top: 1px solid var(--line);
}

.shop-process-steps li {
  counter-increment: checkout-step;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 15px;
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  list-style: none;
}

.shop-process-steps li::before {
  color: var(--lime);
  font-size: 10px;
  font-weight: 900;
  content: "0" counter(checkout-step);
}

.shop-process-steps strong,
.shop-process-steps span {
  display: block;
}

.shop-process-steps strong {
  font-size: 18px;
}

.shop-process-steps span {
  margin-top: 5px;
  color: #8d9289;
  font-size: 13px;
}

.shop-product-main {
  padding-top: var(--header-height);
}

.shop-product-hero {
  position: relative;
  padding: clamp(42px, 6vw, 90px) 0 clamp(90px, 10vw, 148px);
  background:
    radial-gradient(circle at 90% 2%, rgba(204, 255, 51, .08), transparent 27%),
    #080908;
}

.shop-product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 13px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.shop-product-topline span:first-child {
  color: var(--lime);
}

.shop-product-layout {
  display: grid;
  grid-template-columns: minmax(420px, .94fr) minmax(0, 1.06fr);
  gap: clamp(54px, 8vw, 124px);
  align-items: start;
  margin-top: clamp(38px, 5vw, 72px);
}

.shop-product-gallery {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.shop-product-primary {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: #ecece8;
}

.shop-product-primary::after {
  position: absolute;
  inset: 14px -14px -14px 14px;
  z-index: -1;
  border: 1px solid rgba(204, 255, 51, .64);
  content: "";
}

.shop-product-primary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-product-gallery-note {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 18px 0 0;
  color: #777d73;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.shop-product-copy {
  padding-top: 8px;
}

.shop-product-copy h1 {
  max-width: 780px;
  margin: 24px 0 0;
  overflow-wrap: anywhere;
  font-size: clamp(70px, 9.5vw, 146px);
  line-height: .76;
  letter-spacing: -.08em;
  text-transform: uppercase;
}

.shop-product-copy h1.is-long {
  font-size: clamp(58px, 7.3vw, 108px);
  line-height: .82;
}

.shop-product-deck {
  max-width: 680px;
  margin: 30px 0 0;
  color: #b0b5ab;
  font-size: clamp(17px, 1.65vw, 24px);
}

.shop-product-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 40px 0 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.shop-fact {
  min-height: 92px;
  margin: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px;
}

.shop-fact dt {
  color: #747970;
}

.shop-fact dd {
  margin: 11px 0 0;
  font-size: 17px;
  font-weight: 800;
}

.shop-buy-panel {
  margin-top: 30px;
  border: 1px solid rgba(204, 255, 51, .35);
  background: #0e110d;
  padding: 22px;
}

.shop-price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.shop-price-row > div {
  display: grid;
  gap: 10px;
}

.shop-price-row span {
  color: #797f75;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.shop-price-row strong {
  display: block;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -.05em;
}

.shop-buy-panel .button {
  width: 100%;
  margin-top: 21px;
}

.product-checkout-note {
  margin: 14px 0 0;
  color: #797f75;
  line-height: 1.6;
  letter-spacing: .08em;
}

.product-checkout-note strong {
  color: #b5baaf;
}

.shop-assurance {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0d0f0d;
}

.shop-assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.shop-assurance-item {
  min-height: 190px;
  border-right: 1px solid var(--line);
  padding: 34px;
}

.shop-assurance-item:last-child {
  border-right: 0;
}

.shop-assurance-item span {
  color: var(--lime);
}

.shop-assurance-item h2 {
  margin: 22px 0 0;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1;
  letter-spacing: -.04em;
}

.shop-assurance-item p {
  margin: 16px 0 0;
  color: #8f958b;
  font-size: 13px;
}

.shop-story {
  padding: clamp(92px, 11vw, 170px) 0;
  background: var(--paper);
  color: var(--ink);
}

.shop-story-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
}

.shop-story-copy .shop-label {
  color: #6e7369;
}

.shop-story-copy .shop-label::before {
  background: #557600;
}

.shop-story-copy h2 {
  max-width: 760px;
  margin: 28px 0 0;
  font-size: clamp(56px, 7.5vw, 108px);
  line-height: .82;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.shop-story-copy > p:last-child {
  max-width: 650px;
  margin: 32px 0 0;
  color: #62675d;
  font-size: clamp(18px, 1.65vw, 24px);
}

.shop-lookbook {
  position: relative;
  margin: 0;
}

.shop-lookbook::before {
  position: absolute;
  z-index: 1;
  inset: 16px -16px -16px 16px;
  border: 1px solid #1a1d18;
  content: "";
  pointer-events: none;
}

.shop-lookbook img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.shop-lookbook figcaption {
  position: absolute;
  z-index: 2;
  right: 13px;
  bottom: 13px;
  padding: 8px 10px;
  background: var(--black);
  color: var(--white);
}

.shop-story-mark {
  min-height: 560px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 19, 15, .18);
  background:
    linear-gradient(rgba(17, 19, 15, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 19, 15, .08) 1px, transparent 1px),
    #e9e8e1;
  background-size: 44px 44px;
}

.shop-story-mark span {
  max-width: 90%;
  color: #161814;
  font-size: clamp(70px, 10vw, 150px);
  font-weight: 900;
  line-height: .75;
  letter-spacing: -.085em;
  text-align: center;
}

.shop-related {
  padding: clamp(86px, 10vw, 148px) 0;
  background: #090a09;
}

.shop-related-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.shop-related-header h2 {
  margin: 17px 0 0;
  font-size: clamp(43px, 6vw, 82px);
  line-height: .84;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.shop-related-header > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--lime);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.shop-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.shop-related-card {
  border: 1px solid var(--line);
  background: #0d0f0d;
}

.shop-related-card > a:first-child {
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  background: #e8e8e4;
}

.shop-related-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.shop-related-card:hover img {
  transform: scale(1.025);
}

.shop-related-card-body {
  padding: 17px;
}

.shop-related-card p {
  margin: 0 0 8px;
  color: #747a70;
}

.shop-related-card h3 {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: clamp(21px, 2.5vw, 34px);
  line-height: .96;
  letter-spacing: -.04em;
}

.shop-related-card-body a {
  min-height: 44px;
  display: inline-flex;
  align-items: end;
  margin-top: 12px;
  color: var(--lime);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.shop-signup {
  padding: clamp(76px, 9vw, 128px) 0;
  background: var(--lime);
  color: var(--black);
}

.shop-signup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 9vw, 140px);
  align-items: center;
}

.shop-signup h2 {
  margin: 17px 0 0;
  font-size: clamp(48px, 6.4vw, 92px);
  line-height: .82;
  letter-spacing: -.07em;
  text-transform: uppercase;
}

.shop-signup .shop-label {
  color: rgba(8, 9, 8, .62);
}

.shop-signup .shop-label::before {
  background: var(--black);
}

.shop-signup .signup-form > p:first-child {
  margin: 0 0 19px;
  font-size: 17px;
  font-weight: 800;
}

.shop-signup .email-field input {
  border-color: rgba(8, 9, 8, .5);
  background: rgba(255, 255, 255, .27);
  color: var(--black);
}

.shop-signup .email-field input::placeholder {
  color: rgba(8, 9, 8, .5);
}

.shop-signup .email-field button {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.shop-signup .signup-fineprint,
.shop-signup .signup-fineprint a,
.shop-signup .signup-status,
.shop-signup .signup-reward {
  color: rgba(8, 9, 8, .7);
}

.shop-signup .signup-reward {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.shop-sticky-buy {
  display: none;
}

@media (max-width: 1080px) {
  .shop-collection-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
    gap: 50px;
  }

  .shop-hero-visual {
    min-height: 500px;
  }

  .shop-card,
  .shop-card:nth-child(1),
  .shop-card:nth-child(2) {
    grid-column: span 6;
  }

  .shop-product-layout {
    grid-template-columns: minmax(350px, .9fr) minmax(0, 1.1fr);
    gap: 55px;
  }
}

@media (max-width: 820px) {
  .shop-page {
    padding-bottom: 0;
  }

  .shop-product-page {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .shop-collection-hero {
    min-height: auto;
    padding: 58px 0 28px;
  }

  .shop-collection-grid,
  .shop-section-heading,
  .shop-process-grid,
  .shop-product-layout,
  .shop-story-grid,
  .shop-signup-grid {
    grid-template-columns: 1fr;
  }

  .shop-collection-copy h1 {
    font-size: clamp(72px, 19vw, 128px);
  }

  .shop-hero-visual {
    width: min(100%, 600px);
    min-height: 600px;
    margin-top: 10px;
  }

  .shop-index-line {
    margin-top: 38px;
  }

  .shop-section-heading {
    gap: 24px;
  }

  .shop-section-heading h2 {
    font-size: clamp(54px, 15vw, 84px);
  }

  .shop-process-grid {
    gap: 55px;
  }

  .shop-product-hero {
    padding-top: 34px;
  }

  .shop-product-layout {
    gap: 56px;
  }

  .shop-product-gallery {
    position: relative;
    top: auto;
    width: min(100%, 600px);
  }

  .shop-product-copy h1,
  .shop-product-copy h1.is-long {
    font-size: clamp(58px, 16vw, 102px);
  }

  .shop-assurance-grid {
    grid-template-columns: 1fr;
  }

  .shop-assurance-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .shop-assurance-item:last-child {
    border-bottom: 0;
  }

  .shop-story-grid {
    gap: 70px;
  }

  .shop-lookbook,
  .shop-story-mark {
    width: calc(100% - 16px);
  }

  .shop-related-grid {
    grid-template-columns: 1fr 1fr;
  }

  .shop-related-card:last-child {
    display: none;
  }

  .shop-signup-grid {
    gap: 40px;
  }

  .shop-sticky-buy {
    position: fixed;
    z-index: 130;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    min-height: calc(70px + env(safe-area-inset-bottom));
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, .18);
    background: rgba(5, 6, 5, .96);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }

  .shop-sticky-meta {
    min-width: 0;
  }

  .shop-sticky-meta strong,
  .shop-sticky-meta span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .shop-sticky-meta strong {
    font-size: 13px;
  }

  .shop-sticky-meta span {
    margin-top: 2px;
    color: #797e75;
    font-size: 8px;
    letter-spacing: .08em;
  }

  .shop-sticky-buy .button {
    min-height: 50px;
    padding: 0 17px;
    font-size: 9px;
  }
}

@media (max-width: 560px) {
  .shop-collection-hero {
    padding-top: 42px;
  }

  .shop-collection-copy h1 {
    font-size: clamp(66px, 21vw, 98px);
  }

  .shop-collection-copy > p:last-of-type {
    font-size: 17px;
  }

  .shop-hero-actions {
    display: grid;
  }

  .shop-hero-actions .button {
    width: 100%;
  }

  .shop-hero-visual {
    grid-template-columns: 1.18fr .82fr;
    min-height: 470px;
  }

  .shop-card,
  .shop-card:nth-child(1),
  .shop-card:nth-child(2) {
    grid-column: 1 / -1;
  }

  .shop-card h3,
  .shop-card:nth-child(n+3) h3 {
    font-size: clamp(34px, 11vw, 52px);
  }

  .shop-product-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .shop-product-copy h1,
  .shop-product-copy h1.is-long {
    font-size: clamp(52px, 17vw, 80px);
    line-height: .8;
  }

  .shop-product-deck {
    font-size: 17px;
  }

  .shop-product-facts {
    grid-template-columns: 1fr;
  }

  .shop-price-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .shop-assurance-item {
    padding: 27px 0;
  }

  .shop-story-copy h2 {
    font-size: clamp(50px, 15vw, 76px);
  }

  .shop-story-mark {
    min-height: 390px;
  }

  .shop-related-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .shop-related-grid {
    display: grid;
    grid-auto-columns: 82%;
    grid-auto-flow: column;
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .shop-related-grid::-webkit-scrollbar {
    display: none;
  }

  .shop-related-card,
  .shop-related-card:last-child {
    display: block;
    scroll-snap-align: start;
  }

  .shop-signup h2 {
    font-size: clamp(46px, 15vw, 72px);
  }
}

@media (max-width: 390px) {
  .shop-hero-visual {
    min-height: 420px;
  }

  .shop-hero-visual figcaption {
    display: block;
  }

  .shop-hero-visual figcaption span:last-child {
    display: none;
  }

  .shop-card-body {
    padding: 18px 17px 20px;
  }

  .shop-product-gallery-note {
    display: block;
  }

  .shop-product-gallery-note span:last-child {
    display: block;
    margin-top: 5px;
  }

  .shop-buy-panel {
    padding: 18px;
  }

  .shop-sticky-buy {
    gap: 8px;
  }

  .shop-sticky-buy .button {
    padding-inline: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shop-card-art img,
  .shop-related-card img {
    transition: none;
  }
}
