/* Product catalog and detail. All selectors are scoped to Product surfaces. */

.products-redesign,
.product-detail-redesign,
.product-gone {
  --product-ink: #172033;
  --product-muted: #66758b;
  --product-green: #12c98f;
  --product-green-dark: #007b60;
  --product-mint: #eafff7;
  --product-line: #dfe8e4;
  width: 100%;
  overflow: hidden;
  background: #fff;
  color: var(--product-ink);
}

.products-hero {
  min-height: 680px;
  position: relative;
  overflow: hidden;
  background: #e7fff6;
}

.products-hero-inner {
  width: min(1160px, calc(100% - 48px));
  position: relative;
  z-index: 3;
  margin: 0 auto;
  padding: 60px 0 300px;
  text-align: center;
}

.products-hero h1 {
  max-width: 1100px;
  margin: 0 auto;
  color: #00765d;
  font-size: 68px;
  line-height: 1.16;
  font-weight: 760;
  letter-spacing: 0;
}

.products-hero-inner > p {
  max-width: 620px;
  margin: 20px auto 0;
  color: #31475a;
  font-size: 19px;
  line-height: 28px;
}

.products-provider-heading {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: #172033;
  font-size: 16px;
  font-weight: 700;
}

.products-provider-heading img {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  background: #fff;
  object-fit: contain;
}

.products-hero-band {
  width: 112%;
  height: 74px;
  position: absolute;
  left: -6%;
  z-index: 1;
  transform: rotate(-7deg);
  transform-origin: center;
  pointer-events: none;
}

.products-hero-band--back {
  top: 75%;
  background: #c9ffea;
}

.products-hero-band--middle {
  top: 83%;
  background: #70edbe;
}

.products-hero-band--front {
  top: 91%;
  background: #00c995;
}

.product-filter {
  width: min(380px, 100%);
  margin: 34px auto 0;
}

.product-filter-control {
  width: 100%;
  min-height: 52px;
  position: relative;
  display: block;
  border: 1px solid #9dbeb2;
  border-radius: 26px;
  background: rgba(255, 255, 255, .64);
}

.product-filter-control select {
  width: 100%;
  min-height: 50px;
  padding: 0 48px 0 20px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #243547;
  font-size: 15px;
  appearance: none;
}

.product-filter-control svg {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  pointer-events: none;
}

.product-filter-control:focus-within {
  outline: 3px solid rgba(18, 201, 143, .28);
  outline-offset: 2px;
}

.product-language-notice {
  width: fit-content;
  max-width: 100%;
  margin: 18px auto 0 !important;
  padding: 9px 14px;
  border-left: 3px solid #007b60;
  background: rgba(255, 255, 255, .76);
  color: #315046 !important;
  font-size: 14px !important;
  line-height: 20px !important;
  text-align: left;
}

.product-results {
  position: relative;
  z-index: 4;
  margin-top: -219px;
  padding: 0 24px 104px;
}

.product-results-inner,
.product-related-news-inner {
  width: min(1216px, 100%);
  margin: 0 auto;
}

.product-detail-shell,
.product-detail-language-wrap {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px 32px;
}

.product-card {
  min-width: 0;
  min-height: 503px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e2e8e5;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(18, 32, 43, .11);
}

.product-card-topline {
  min-height: 124px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 24px 0;
}

.product-card-visual {
  width: 100px;
  height: 100px;
  flex: 0 0 100px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 0 !important;
  border-radius: 7px;
  color: #fff !important;
  text-decoration: none !important;
}

.product-card-visual img {
  width: 100%;
  height: 100%;
  display: block;
  background: #fff;
  object-fit: contain;
}

.product-card-visual--green { background: #00a979; }
.product-card-visual--blue { background: #078fd7; }
.product-card-visual--orange { background: #ffab3d; }
.product-card-visual--violet { background: #8266e8; }

.product-icon {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-card-kind {
  max-width: 152px;
  overflow: hidden;
  padding: 6px 10px;
  border-radius: 14px;
  background: #e9f6ff;
  color: #3476a8;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-card-kind--green { background: #e0f5ee; color: #087d62; }
.product-card-kind--violet { background: #eeeafd; color: #8068df; }
.product-card-kind--orange { background: #fff0dc; color: #c86b00; }
.product-card-kind--blue { background: #e7f1fb; color: #4f86c6; }

.product-card-copy {
  min-height: 0;
  flex: 1;
  padding: 16px 24px 14px;
}

.product-card-capability {
  margin: 0 0 8px;
  color: #008565;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
}

.product-card h2,
.product-card h3 {
  margin: 0;
  color: #172033;
  font-size: 23px;
  line-height: 29px;
  font-weight: 750;
  letter-spacing: 0;
}

.product-card h2 a,
.product-card h3 a {
  border: 0 !important;
  color: inherit !important;
  text-decoration: none !important;
}

.product-card-summary {
  display: -webkit-box;
  overflow: hidden;
  min-height: 66px;
  margin: 10px 0 0;
  color: #718096;
  font-size: 14px;
  line-height: 22px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-card-actions {
  min-height: 155px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  border-top: 1px solid #edf0ef;
}

.product-card-actions a {
  min-width: 0;
  min-height: 155px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 5px;
  border: 0 !important;
  border-right: 1px solid #edf0ef !important;
  color: #00a979 !important;
  font-size: 11px;
  line-height: 15px;
  font-weight: 700;
  text-align: center;
  text-decoration: none !important;
}

.product-card-actions a:last-child { border-right: 0 !important; }
.product-card-actions svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-card a:focus-visible,
.product-detail-redesign a:focus-visible,
.product-load-more:focus-visible {
  outline: 3px solid #0acfa0;
  outline-offset: 3px;
}

.product-empty-state {
  grid-column: 1 / -1;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px;
  border: 1px solid var(--product-line);
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.product-empty-state h2 { margin: 0; font-size: 26px; }
.product-empty-state p { margin: 10px 0 0; color: var(--product-muted); }

.product-load-more-wrap {
  min-height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-top: 36px;
}

.product-load-more {
  min-width: 170px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid #12c98f !important;
  border-radius: 8px;
  background: #12c98f;
  color: #063e31 !important;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none !important;
}

.product-load-more.is-loading { cursor: wait; opacity: .7; }
.product-load-more.has-error { border-color: #b42318 !important; }
.product-load-status { min-height: 20px; margin: 10px 0 0; color: #526272; }

.product-related-news,
.product-detail-news {
  padding: 0 24px 112px;
}

.product-related-news h2,
.product-detail-related > h2,
.product-detail-news > h2 {
  margin: 0 0 28px;
  color: #172033;
  font-size: 28px;
  line-height: 36px;
  font-weight: 750;
  letter-spacing: 0;
}

.product-carousel {
  position: relative;
}

.product-carousel-track {
  display: flex;
  gap: 32px;
  margin: -2px;
  padding: 2px 2px 28px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-padding: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.product-carousel-track::-webkit-scrollbar { display: none; }

.product-carousel-item {
  min-width: 0;
  flex: 0 0 calc((100% - 64px) / 3);
  scroll-snap-align: start;
}

.product-carousel-item > .product-card,
.product-carousel-item > .ft-news-card {
  height: 100%;
}

.product-carousel-button {
  width: 48px;
  height: 48px;
  position: absolute;
  top: calc(50% - 14px);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid #e2e8e5;
  border-radius: 50%;
  background: #fff;
  color: #172033;
  box-shadow: 0 12px 28px rgba(18, 32, 43, .14);
  cursor: pointer;
  transform: translateY(-50%);
}

.product-carousel-button--previous { left: -24px; }
.product-carousel-button--next { right: -24px; }
.product-carousel-button:disabled { opacity: .42; cursor: default; }
.product-carousel-button:focus-visible {
  outline: 3px solid #0acfa0;
  outline-offset: 3px;
}

.product-carousel-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Product detail */

.product-detail-page > .body {
  margin-top: 0 !important;
}

.product-detail-page .body > header#navbar {
  position: absolute !important;
  background: transparent !important;
}

.product-detail-redesign {
  position: relative;
}

.product-detail-breadcrumb-band {
  width: 100%;
  position: absolute;
  top: 80px;
  left: 0;
  z-index: 5;
  border: 0;
  background: transparent;
}

.product-detail-breadcrumb {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
}

.product-detail-breadcrumb li {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-detail-breadcrumb li + li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-top: 1px solid rgba(255, 255, 255, .78);
  border-right: 1px solid rgba(255, 255, 255, .78);
  transform: rotate(45deg);
}
.product-detail-breadcrumb a { border: 0 !important; color: rgba(255, 255, 255, .78) !important; text-decoration: none !important; }
.product-detail-breadcrumb span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.product-detail-language-wrap {
  position: absolute;
  top: 132px;
  left: 50%;
  z-index: 4;
  padding: 10px 0;
  transform: translateX(-50%);
}
.product-detail-language-wrap .product-language-notice { margin: 0 !important; }

.product-detail-hero {
  min-height: 620px;
  position: relative;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #042f2b;
  color: #fff;
}

.product-detail-hero--visual { min-height: 748px; }
.product-detail-hero--editorial { background: #003d35; }

.product-detail-hero-media,
.product-detail-hero-media img,
.product-detail-hero-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.product-detail-hero-media { overflow: hidden; background: #042f2b; }
.product-detail-hero-media img {
  width: 100%;
  max-width: none;
  right: 0;
  left: 0;
  display: block;
  object-fit: cover;
  object-position: center;
}
.product-detail-hero-overlay {
  background: linear-gradient(90deg, rgba(0, 30, 28, .48) 0%, rgba(0, 30, 28, .22) 52%, rgba(0, 30, 28, .06) 100%);
}

.product-detail-hero-content {
  position: relative;
  z-index: 2;
  padding: 170px 0 120px;
}

.product-detail-identity {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}

.product-detail-identity-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  overflow: hidden;
}

.product-detail-identity-mark .product-icon { width: 26px; height: 26px; color: #fff; }
.product-detail-identity-mark img {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: contain;
}

.product-detail-identity > span:last-child { min-width: 0; display: grid; gap: 2px; }
.product-detail-identity strong { color: #fff; font-size: 15px; line-height: 20px; }
.product-detail-identity small { color: #b9d5cf; font-size: 13px; line-height: 18px; }
.product-detail-hero--visual .product-detail-identity { display: none; }

.product-detail-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: 58px;
  line-height: 1.12;
  font-weight: 760;
  letter-spacing: 0;
}

.product-detail-hero-copy > p {
  max-width: 660px;
  margin: 20px 0 0;
  color: #e6f2ef;
  font-size: 18px;
  line-height: 28px;
}

.product-detail-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.product-detail-hero-actions a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none !important;
}

.product-detail-primary-action { border: 1px solid #12c98f !important; background: #12c98f; color: #043a2f !important; }
.product-detail-secondary-action { border: 1px solid rgba(255,255,255,.72) !important; background: rgba(0,30,28,.28); color: #fff !important; }

.product-metrics {
  height: 138px;
  min-height: 138px;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: -38px;
  overflow: hidden;
  border: 1px solid #e4e9e7;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(18, 32, 43, .12);
}

.product-metrics article {
  min-width: 0;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-content: center;
  column-gap: 12px;
  padding: 20px 34px;
  border-right: 1px solid #edf0ef;
}

.product-metrics article:last-child { border-right: 0; }
.product-metric-icon { width: 46px; height: 46px; grid-row: 1 / span 3; display: grid; place-items: center; border-radius: 50%; color: #fff; }
.product-metric-icon .product-icon { width: 25px; height: 25px; }
.product-metrics p { margin: 0; color: #6d7c88; font-size: 14px; }
.product-metrics strong { margin: 0 4px; color: #00a979; font-size: 25px; line-height: 30px; }
.product-metrics h2 { margin: 3px 0 0; color: #263746; font-size: 14px; line-height: 20px; font-weight: 650; }
.product-metrics small { color: #82909c; font-size: 11px; line-height: 16px; }

.product-overview {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(440px, 1.1fr);
  gap: 48px;
  padding: 40px 0 60px;
}

.product-overview--text-only { grid-template-columns: minmax(0, 780px); }

.product-overview h2,
.product-use-cases > h2,
.product-highlights > div > h2 {
  margin: 0 0 20px;
  color: #172033;
  font-size: 27px;
  line-height: 34px;
  font-weight: 750;
  letter-spacing: 0;
}

.product-richtext,
.product-richtext p {
  color: #3f5263;
  font-size: 16px;
  line-height: 25px;
}

.product-overview-media {
  min-height: 0;
  aspect-ratio: 1.9;
  margin-top: 9px;
  position: relative;
  overflow: hidden;
  border-radius: 7px;
  background: #073e39;
}

.product-overview-media > img { width: 100%; height: 100%; position: absolute; inset: 0; display: block; object-fit: cover; }
.product-overview-media > a { width: 100%; height: 100%; min-height: 320px; position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; border: 0 !important; background: rgba(0,31,29,.32); color: #fff !important; font-weight: 700; text-decoration: none !important; }
.product-play-icon { width: 62px; height: 62px; position: relative; display: block; border: 2px solid #fff; border-radius: 50%; }
.product-play-icon::after { content: ""; position: absolute; top: 18px; left: 24px; border-top: 11px solid transparent; border-bottom: 11px solid transparent; border-left: 17px solid #fff; }

.product-use-cases { padding: 4px 0 45px; }
.product-use-case-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.product-use-case-grid article { min-height: 292px; padding: 24px; border: 1px solid #dbe8e3; border-radius: 7px; background: #f0f9f6; }
.product-use-case-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 6px; background: #d8faed; color: #008a68; }
.product-use-case-icon .product-icon { width: 24px; height: 24px; }
.product-use-case-grid h3 { margin: 18px 0 0; color: #172033; font-size: 17px; line-height: 22px; font-weight: 720; }
.product-use-case-grid p { margin: 10px 0 0; color: #526272; font-size: 14px; line-height: 21px; }

.product-highlights { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; padding: 0 0 72px; }
.product-highlights > div { min-width: 0; }
.product-highlights article { display: grid; grid-template-columns: 18px minmax(0, 1fr); gap: 10px; padding: 15px 20px; border-right: 1px solid #e5e9e7; border-left: 1px solid #e5e9e7; background: #fff; }
.product-highlights article:first-of-type { border-top: 1px solid #e5e9e7; border-radius: 7px 7px 0 0; }
.product-highlights article:last-child { border-bottom: 1px solid #e5e9e7; border-radius: 0 0 7px 7px; }
.product-highlights article > span { width: 10px; height: 10px; margin-top: 5px; border-radius: 50%; background: #12c98f; }
.product-highlights h3 { margin: 0; color: #172033; font-size: 15px; line-height: 20px; font-weight: 700; }
.product-highlights p { margin: 4px 0 0; color: #718096; font-size: 13px; line-height: 19px; }

.product-detail-related { padding: 0 0 84px; }
.product-grid--related { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.product-grid--related .product-card { min-height: 540px; }
.product-detail-news { padding-right: 0; padding-left: 0; }

.product-gone { min-height: 65vh; display: grid; place-items: center; padding: 48px 24px; }
.product-gone section { width: min(720px, 100%); text-align: center; }
.product-gone p { color: #008565; font-weight: 700; }
.product-gone h1 { margin: 10px 0 28px; font-size: 42px; line-height: 50px; }
.product-gone a { min-height: 48px; display: inline-flex; align-items: center; padding: 0 22px; border-radius: 7px; background: #12c98f; color: #063e31 !important; font-weight: 700; text-decoration: none !important; }

@media (max-width: 1100px) {
  .products-hero h1,
  .product-detail-hero h1 { font-size: 48px; }
  .product-results-inner,
  .product-detail-shell { width: min(940px, 100%); }
  .product-grid { gap: 36px 20px; }
  .product-card-topline,
  .product-card-copy { padding-right: 20px; padding-left: 20px; }
  .product-card-provider { margin-right: 20px; margin-left: 20px; }
  .product-overview { grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr); gap: 36px; }
  .product-use-case-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-detail-hero--visual { min-height: 620px; background: #003d35; }
  .product-detail-hero--visual .product-detail-hero-media,
  .product-detail-hero--visual .product-detail-hero-overlay { display: none; }
  .product-detail-hero--visual .product-detail-identity { display: flex; }
}

@media (max-width: 900px) {
  .products-hero { min-height: 630px; }
  .products-hero-inner { padding-top: 72px; }
  .products-hero h1 { font-size: 42px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-carousel-item { flex-basis: calc((100% - 32px) / 2); }
  .product-detail-shell { width: min(720px, calc(100% - 48px)); }
  .product-detail-breadcrumb-band { top: 72px; }
  .product-detail-language-wrap { top: 120px; }
  .product-detail-hero { min-height: 620px; }
  .product-detail-hero-content { padding: 160px 0 96px; }
  .product-metrics { height: auto; grid-template-columns: 1fr; margin-top: -48px; }
  .product-metrics article { grid-template-columns: 46px minmax(0, 1fr); border-right: 0; border-bottom: 1px solid #edf0ef; }
  .product-metrics article:last-child { border-bottom: 0; }
  .product-overview { grid-template-columns: 1fr; }
  .product-highlights { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .products-hero { min-height: 570px; }
  .products-hero-inner { width: calc(100% - 32px); padding: 54px 0 250px; }
  .products-hero h1 { font-size: 34px; line-height: 41px; }
  .products-hero-inner > p { font-size: 16px; line-height: 24px; }
  .product-filter { margin-top: 24px; }
  .product-results { margin-top: -205px; padding-right: 16px; padding-left: 16px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-carousel-track { gap: 16px; }
  .product-carousel-item { flex-basis: 100%; }
  .product-carousel-button { display: none; }
  .product-card { min-height: 420px; }
  .product-card-actions a { min-height: 76px; font-size: 10px; }
  .product-related-news { padding-right: 16px; padding-left: 16px; }
  .product-detail-shell { width: calc(100% - 32px); }
  .product-detail-breadcrumb-band { top: 60px; }
  .product-detail-breadcrumb { min-height: 48px; }
  .product-detail-language-wrap { width: calc(100% - 32px); top: 108px; }
  .product-detail-hero { min-height: 620px; align-items: stretch; }
  .product-detail-hero-content { padding: 156px 0 72px; }
  .product-detail-hero h1 { font-size: 38px; line-height: 45px; }
  .product-detail-hero-copy > p { font-size: 16px; line-height: 24px; }
  .product-detail-hero-actions { flex-direction: column; align-items: stretch; }
  .product-detail-hero-actions a { width: 100%; }
  .product-detail-hero--visual.product-detail-hero--has-mobile-art {
    min-height: 0;
    flex-direction: column;
    background: #003d35;
  }
  .product-detail-hero--visual.product-detail-hero--has-mobile-art .product-detail-hero-content {
    width: calc(100% - 32px);
    order: 1;
    padding-bottom: 48px;
  }
  .product-detail-hero--visual.product-detail-hero--has-mobile-art .product-detail-hero-media {
    width: 100%;
    height: min(120vw, 560px);
    position: relative;
    inset: auto;
    order: 2;
    display: block;
  }
  .product-detail-hero--visual.product-detail-hero--has-mobile-art .product-detail-hero-media img {
    position: absolute;
    inset: 0;
  }
  .product-metrics { margin-top: 0; border-radius: 0; box-shadow: none; }
  .product-metrics article { padding: 22px 18px; }
  .product-overview { gap: 30px; padding: 48px 0; }
  .product-overview-media,
  .product-overview-media > a { min-height: 230px; }
  .product-overview-media { margin-top: 0; }
  .product-use-case-grid { grid-template-columns: 1fr; }
  .product-use-case-grid article { min-height: auto; }
  .product-grid--related .product-card { min-height: 420px; }
  .product-highlights article { padding-right: 14px; padding-left: 14px; }
  .product-gone h1 { font-size: 32px; line-height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  .products-redesign *,
  .product-detail-redesign * { scroll-behavior: auto !important; transition: none !important; }
}
