@charset "UTF-8";

:root {
  --product-ref-bg: #111;
  --product-ref-panel: #1e1e1e;
  --product-ref-panel-strong: #2e2e2e;
  --product-ref-text: #f7f7f7;
  --product-ref-muted: #c8c8c8;
  --product-ref-dim: #9a9a9a;
  --product-ref-line: rgba(255, 255, 255, 0.13);
  --product-ref-accent: #a8ff00;
  --product-ref-red: #ff2a26;
  --product-ref-radius: 8px;
}

.product-detail-page {
  padding-bottom: 0;
}

@media (min-width: 769px) {
  .product-detail-page .product-section-title {
    max-width: min(calc(var(--site-shell-width, 1280px) / 2), 100%);
  }
}

.product-reference {
  background: var(--product-ref-bg);
  color: var(--product-ref-text);
  padding: 0 20px;
}

.product-reference__inner {
  width: 100%;
  max-width: var(--site-shell-width, 1280px);
  margin: 0 auto;
  padding: 38px 0 52px;
}

.product-reference__grid {
  display: grid;
  grid-template-columns: minmax(0, 37.5fr) minmax(0, 39.5fr) minmax(0, 23fr);
  gap: clamp(20px, 2vw, 32px);
  align-items: start;
}

.product-reference__gallery,
.product-reference__summary,
.product-reference__buy {
  min-width: 0;
}

.product-reference__gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.product-reference__thumbs {
  --product-thumb-gap: 12px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--product-thumb-gap);
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  order: 2;
}

.product-reference__thumbs button {
  width: 100%;
  min-width: 0;
  aspect-ratio: 4 / 3;
  display: block;
  padding: 0;
  border: 0;
  border-radius: var(--product-ref-radius);
  background: #1a1a1a;
  cursor: pointer;
  overflow: hidden;
  opacity: 0.7;
  transition: opacity 0.22s ease, background-color 0.22s ease;
}

.product-reference__thumbs button.is-active {
  background: var(--product-ref-panel);
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  .product-reference__thumbs button:hover {
    background: var(--product-ref-panel);
    opacity: 1;
  }
}

.product-reference__thumbs img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-reference__image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--product-ref-radius);
  background: var(--product-ref-panel);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  order: 1;
}

.product-reference__image-button {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.product-reference__zoom-trigger {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 6;
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.54);
  color: #fff;
  cursor: zoom-in;
  -webkit-tap-highlight-color: transparent;
}

.product-reference__zoom-trigger svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-reference__image,
.product-reference__image-button,
.product-lightbox__frame {
  touch-action: pan-y;
}

.product-reference__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.is-product-lightbox-open {
  overflow: hidden;
  padding-right: var(--product-lightbox-scrollbar, 0);
}

body.is-product-zoom-open {
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

body.is-product-zoom-open .product-reference__zoom-trigger {
  opacity: 0;
  pointer-events: none;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 58px);
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.product-lightbox[hidden] {
  display: none;
}

.product-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.product-lightbox__stage {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(88vw, 114.67vh, 1080px);
  aspect-ratio: 4 / 3;
  max-height: 86vh;
}

.product-lightbox__frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--product-ref-radius);
  background: #111;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}

.product-lightbox__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-reference__image.is-sliding [data-product-main-image],
.product-lightbox__frame.is-sliding .product-lightbox__image {
  opacity: 0;
}

.product-gallery-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  will-change: transform;
}

.product-gallery-drag-track {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  will-change: transform;
}

.product-gallery-drag-track .product-gallery-slide {
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

.product-gallery-slide--out-next {
  animation: productGallerySlideOutLeft 0.58s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.product-gallery-slide--in-next {
  animation: productGallerySlideInRight 0.58s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.product-gallery-slide--out-prev {
  animation: productGallerySlideOutRight 0.58s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.product-gallery-slide--in-prev {
  animation: productGallerySlideInLeft 0.58s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes productGallerySlideOutLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes productGallerySlideInRight {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes productGallerySlideOutRight {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(100%);
  }
}

@keyframes productGallerySlideInLeft {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

.product-lightbox__close,
.product-lightbox__nav {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #fff;
  cursor: pointer;
}

.product-lightbox__close {
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.58);
  font-size: 30px;
  line-height: 1;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.product-lightbox__close:hover {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 42, 38, 0.92);
}

.product-lightbox__nav {
  top: 50%;
  width: 70px;
  height: 110px;
  border: 0;
  background: transparent;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.72);
  transition: color 0.18s ease, opacity 0.18s ease;
}

.product-lightbox__nav:hover {
  color: #ff2a26;
}

.product-lightbox__nav--prev {
  left: 10px;
  transform: translateY(-50%);
}

.product-lightbox__nav--next {
  right: 10px;
  transform: translateY(-50%);
}

.product-lightbox.has-single-image .product-lightbox__nav {
  display: none;
}

.product-image-zoom {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  touch-action: none;
  transition: opacity 0.16s ease;
}

.product-image-zoom[hidden] {
  display: none;
}

.product-image-zoom.is-open {
  opacity: 1;
  pointer-events: auto;
}

.product-image-zoom__canvas {
  position: absolute;
  inset: 0;
  overflow: hidden;
  touch-action: none;
  cursor: grab;
}

.product-image-zoom__canvas.is-dragging {
  cursor: grabbing;
}

.product-image-zoom__image {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  max-width: none;
  max-height: none;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
  will-change: transform;
  transform-origin: center center;
}

.product-image-zoom__close {
  position: fixed;
  top: max(66px, calc(env(safe-area-inset-top) + 66px));
  right: max(14px, calc(env(safe-area-inset-right) + 14px));
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.product-image-zoom__hint {
  position: fixed;
  top: max(88px, calc(env(safe-area-inset-top) + 88px));
  left: 50%;
  z-index: 3;
  max-width: calc(100vw - 150px);
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.62);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.product-image-zoom__hint.is-visible {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0);
}

.product-reference__summary {
  padding-top: 4px;
}

.product-reference__brand {
  margin: 0 0 17px;
  color: var(--product-ref-muted);
  font-size: 14px;
  line-height: 1;
}

.product-reference__summary h2 {
  margin: 0;
  color: var(--product-ref-text);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.product-reference__title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.product-reference__model {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 12px;
  border-radius: 999px;
  background: #ff2f2f;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.product-reference__lead {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--product-ref-muted);
  font-size: 16px;
  line-height: 1.42;
}

.product-reference__read,
.product-reference__specs > a {
  color: var(--product-ref-text);
  transition: color 0.24s ease;
}

.product-reference__read {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  padding-top: 10px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.product-reference__read-icon {
  width: 1.58em;
  height: 1.13em;
  flex: 0 0 auto;
  display: block;
}

.product-reference__read-text {
  display: inline-block;
}

.product-reference__read::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--product-ref-red);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: opacity 0.24s ease, transform 0.28s ease;
}

.product-reference__read:has(.product-reference__read-icon)::after {
  left: calc(1.58em + 8px);
  width: calc(100% - 1.58em - 8px);
}

.product-reference__read:hover {
  color: rgba(247, 247, 247, 0.68);
}

.product-reference__read:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.product-reference__read.is-disabled,
.product-reference__read.is-disabled:hover {
  color: rgba(247, 247, 247, 0.38);
  cursor: default;
  pointer-events: none;
}

.product-reference__read.is-disabled::after {
  opacity: 0;
  transform: scaleX(0);
}

.product-reference__specs > a {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.product-reference__specs {
  margin-top: 58px;
  min-width: 0;
}

.product-reference__specs > p {
  margin: 0 0 18px;
  color: var(--product-ref-text);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.product-reference__specs article {
  padding: 11px 0 13px;
  border-bottom: 1px solid var(--product-ref-line);
}

.product-reference__specs h3 {
  margin: 0 0 5px;
  color: var(--product-ref-text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  overflow-wrap: anywhere;
  word-break: normal;
}

.product-reference__specs span {
  display: block;
  color: var(--product-ref-muted);
  font-size: 14px;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: normal;
}

.product-reference__specs > a {
  display: inline-block;
  margin-top: 17px;
  color: var(--product-ref-accent);
  font-size: 14px;
  font-weight: 700;
}

.product-reference__buy {
  display: grid;
  gap: 18px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.product-reference__cart {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-height: 0;
  padding: 26px 24px 22px;
  border-radius: var(--product-ref-radius);
  background: var(--product-ref-panel);
}

.product-reference__cart h3 {
  max-width: 100%;
  margin: 0;
  color: #24a65a;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.product-reference__cart-row {
  display: grid;
  justify-items: start;
  gap: 18px;
  margin-top: 24px;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.product-reference__cart-row > a {
  font-size: 14px;
  font-weight: 400;
  margin-top: 0;
}

.product-reference__cart-row.product-reference__trial-actions {
  gap: 10px;
  margin-top: 14px;
}

.product-reference__trial-actions > .product-reference__read {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  width: auto;
  max-width: 100%;
  min-height: 28px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #000;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.product-reference__trial-actions > a.product-reference__read:hover,
.product-reference__trial-actions > a.product-reference__read:focus-visible {
  background-color: #24a65a;
  color: rgba(255, 255, 255, 0.78);
}

.product-reference__trial-actions > .product-reference__read::after,
.product-reference__trial-actions > .product-reference__read:hover::after {
  content: none;
  display: none;
}

.product-reference__trial-actions > a.product-reference__read:focus-visible {
  outline: 2px solid rgba(36, 166, 90, 0.48);
  outline-offset: 3px;
}

.product-reference__trial-actions > .product-reference__read.is-disabled {
  opacity: 0.52;
  cursor: default;
}

.product-reference__stock svg,
.product-reference__service svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-reference__stock {
  --trial-remaining-ratio: 25%;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 18px;
  align-items: center;
  margin: 4px 0 10px;
}

.product-reference__stock span {
  color: var(--product-ref-red);
  width: 28px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.product-reference__stock div {
  position: relative;
  height: 5px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--product-ref-red) 0 var(--trial-remaining-ratio), transparent var(--trial-remaining-ratio) 100%),
    rgba(255, 255, 255, 0.14);
}

.product-reference__stock div::after {
  content: "";
  position: absolute;
  left: var(--trial-remaining-ratio);
  top: 50%;
  width: 2px;
  height: 15px;
  border-radius: 999px;
  background: var(--product-ref-red);
  transform: translate(-1px, -50%);
}

.product-reference__countdown p {
  max-width: 430px;
  margin: 0 0 0 46px;
  color: var(--product-ref-muted);
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: normal;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-reference__service {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-height: 112px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  padding: 24px 22px;
  border: 1px solid var(--product-ref-line);
  border-radius: var(--product-ref-radius);
}

.product-reference__countdown + .product-reference__service {
  margin-top: 20px;
}

.product-reference__service-icon {
  color: var(--product-ref-red);
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin-top: -3px;
  margin-left: -2px;
}

.product-reference__service--store .product-reference__service-icon {
  width: 27px;
  height: 27px;
  margin-left: -3px;
  margin-top: -5px;
}

.product-reference__store-group {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 16px;
  margin-top: 34px;
  margin-left: -38px;
  width: calc(100% + 38px);
  align-items: start;
}

.product-reference__service-icon--store {
  width: 27px;
  height: 27px;
  margin-left: -3px;
  margin-top: -5px;
}

.product-reference__service > div {
  min-width: 0;
}

.product-reference__service h3 {
  max-width: 220px;
  margin: 0 0 8px;
  color: var(--product-ref-text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.12;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow-wrap: anywhere;
  word-break: normal;
}

.product-reference__service a {
  display: inline-block;
  max-width: 100%;
  color: var(--product-ref-dim);
  font-size: 14px;
  line-height: 1.45;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: color 0.22s ease;
}

.product-reference__links {
  display: grid;
  gap: 0;
  justify-items: start;
  width: min(100%, 220px);
  margin-top: 20px;
}

.product-reference__links a {
  position: relative;
  display: block;
  padding-bottom: 12px;
  font-weight: 800;
}

.product-reference__links:not(.product-reference__links--store) a {
  width: 100%;
  background-image: linear-gradient(90deg, rgba(255, 42, 38, 0.82), rgba(255, 42, 38, 0));
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: min(180px, 100%) 1px;
}

.product-reference__links a + a {
  margin-top: 12px;
}

.product-reference__links--store {
  margin-top: 16px;
}

.product-reference__links a:hover {
  color: var(--product-ref-text);
}


.product-story {
  background: #fff;
  color: #050505;
  padding: 72px 20px 86px;
}

.product-story__inner {
  width: 100%;
  max-width: var(--site-shell-width, 1280px);
  margin: 0 auto;
}

.product-section-title {
  max-width: 780px;
  margin: 0;
  color: currentColor;
}

.product-story__image {
  width: fit-content;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  overflow: visible;
  background: transparent;
}

.product-story__image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: var(--product-ref-radius);
  object-fit: contain;
}

.product-story p {
  max-width: var(--site-shell-width, 1280px);
  margin: 28px 0 0;
  color: #4b4b4b;
  font-size: 16px;
  line-height: 1.7;
}

.product-story__paragraphs {
  max-width: var(--site-shell-width, 1280px);
  color: #4b4b4b;
  font-size: 16px;
  line-height: 1.7;
}

.product-story__paragraphs p {
  max-width: none;
  margin: 0;
  color: inherit;
  font: inherit;
}

.product-story__paragraphs p + p {
  margin-top: 0.9em;
}

.product-story__paragraphs strong {
  color: #050505;
  font-weight: 800;
}

.product-story__paragraphs ul,
.product-story__paragraphs ol {
  margin: 0.9em 0 0;
  padding-left: 1.4em;
}

.product-story__paragraphs li + li {
  margin-top: 0.45em;
}

.product-table-wrap {
  width: 100%;
  max-width: 100%;
  margin: 1.2em 0 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.product-table {
  width: max-content;
  min-width: 100%;
  border-collapse: collapse;
  color: #333;
  font-size: 0.98em;
  line-height: 1.45;
}

.product-table th,
.product-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(5, 5, 5, 0.16);
  text-align: left;
  vertical-align: top;
}

.product-table th {
  color: #050505;
  font-weight: 800;
  white-space: nowrap;
}

.product-story__paragraphs .rich-math-block {
  max-width: 100%;
  margin: 1.2em 0 0;
  overflow-x: auto;
  overflow-y: hidden;
  color: #050505;
  -webkit-overflow-scrolling: touch;
}

.product-story__paragraphs .rich-math-block + .rich-math-block {
  margin-top: 4px;
}

.product-story__paragraphs mjx-container {
  max-width: 100%;
  color: #050505;
  overflow-x: auto;
  overflow-y: hidden;
}

.product-story__paragraphs mjx-container[display="true"] {
  margin: 0;
  padding: 2px 0;
  text-align: center;
}

@media (max-width: 768px) {
  .product-story__paragraphs {
    min-width: 0;
  }

  .product-table-wrap {
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .product-table {
    width: 100%;
    min-width: 0;
    font-size: 0.88em;
    line-height: 1.35;
  }

  .product-table th,
  .product-table td {
    padding: 10px 5px;
    border-bottom-color: rgba(5, 5, 5, 0.28);
  }

  .product-table th {
    white-space: normal;
  }

  .product-story__paragraphs .rich-math-block {
    margin-top: 1em;
  }

  .product-story__paragraphs .rich-math-block + .rich-math-block {
    margin-top: 4px;
  }
}

.product-story__inner > .product-section-title + .product-story__paragraphs {
  margin-top: 0;
}

.product-story__inner > .product-story__image + .product-story__paragraphs {
  margin-top: 28px;
}

.product-story__inner > .product-story__paragraphs + .product-section-eyebrow,
.product-story__inner > .product-story__image + .product-section-eyebrow {
  margin-top: clamp(48px, 5vw, 78px);
}

.product-story__inner > .product-story__paragraphs + .product-story__image,
.product-story__inner > .product-section-title + .product-story__image {
  margin-top: 34px;
}

.product-specs-detail__value {
  display: grid;
  gap: 0.35em;
  min-width: 0;
  color: var(--product-ref-muted);
  font-size: 16px;
  line-height: 1.4;
}

.product-specs-detail__value p {
  margin: 0;
  color: inherit;
  font: inherit;
  text-align: left;
}

@media (min-width: 1025px) {
  .product-detail-page .product-story .product-section-title {
    max-width: min(980px, 100%);
    font-size: clamp(1.75rem, 3vw, 2.6rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
    word-break: normal;
    overflow-wrap: normal;
  }

  html[data-language="CN"] .product-detail-page .product-story .product-section-title {
    font-size: clamp(1.55rem, 2.45vw, 2.2rem);
    line-height: 1.18;
    letter-spacing: -0.025em;
  }
}

.product-specs-detail {
  background: var(--product-ref-bg);
  color: var(--product-ref-text);
  padding: 72px 20px 86px;
}

.product-specs-detail__inner {
  width: 100%;
  max-width: var(--site-shell-width, 1280px);
  margin: 0 auto;
}

.product-specs-detail__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(48px, 6vw, 96px);
}

.product-specs-detail__grid article {
  display: grid;
  grid-template-columns: minmax(150px, 0.38fr) minmax(0, 1fr);
  column-gap: clamp(20px, 3vw, 56px);
  row-gap: 0;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--product-ref-line);
  text-align: left;
}

.product-specs-detail__grid h3 {
  margin: 0;
  color: var(--product-ref-text);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  min-width: 0;
  overflow-wrap: anywhere;
}

.product-specs-detail__grid p {
  margin: 0;
  color: var(--product-ref-muted);
  font-size: 16px;
  line-height: 1.4;
  text-align: left;
  min-width: 0;
  overflow-wrap: anywhere;
}

.product-docs-detail {
  background: #fff;
  color: #111;
  padding: 72px 20px 86px;
}

.product-docs-detail__inner {
  width: 100%;
  max-width: var(--site-shell-width, 1280px);
  margin: 0 auto;
}

.product-docs-detail__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(48px, 6vw, 96px);
  row-gap: 0;
}

.product-docs-detail__row {
  padding: 22px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}

.product-docs-detail__row h3 {
  margin: 0;
  color: #111;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.product-docs-detail__copy p {
  margin: 8px 0 0;
  color: #4b4b4b;
  font-size: 15px;
  line-height: 1.5;
}

.product-docs-detail__actions {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.product-docs-detail__language {
  width: 230px;
  max-width: 100%;
  min-width: 210px;
  height: 36px;
  padding: 0 30px 0 0;
  border: 0;
  border-bottom: 2px solid rgba(17, 17, 17, 0.18);
  border-radius: 0;
  appearance: none;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' fill='none' stroke='%23111111' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 16px 16px;
  color: #111;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.22s ease, color 0.22s ease;
}

.product-docs-detail__language:invalid {
  color: #737373;
  font-weight: 700;
}

.product-docs-detail__language:focus {
  outline: none;
  border-bottom-color: #0b6f2a;
}

.product-docs-detail__download {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 14px;
  margin-top: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #0b6f2a;
  font-family: inherit;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 5px;
  cursor: pointer;
  transition: color 0.22s ease;
}

.product-docs-detail__download:hover {
  color: #111;
}

.product-docs-detail__download.is-disabled,
.product-docs-detail__download[aria-disabled="true"] {
  color: #9a9a9a;
  cursor: not-allowed;
  pointer-events: none;
  text-decoration-color: #bdbdbd;
}

.product-docs-detail__download svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin-left: -4px;
}

.product-docs-detail__menu {
  position: relative;
  display: inline-flex;
}

.product-docs-detail__menu-list {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 20;
  min-width: 112px;
  padding: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.product-docs-detail__menu-list[hidden] {
  display: none;
}

.product-docs-detail__menu-list a {
  display: block;
  padding: 8px 12px;
  color: #111;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.product-docs-detail__menu-list a:hover,
.product-docs-detail__menu-list a:focus {
  background: #f4f4f4;
  color: #0b6f2a;
  outline: none;
}

@media (min-width: 768px) {
  .product-docs-detail__list {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .product-docs-detail__copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: clamp(32px, 5vw, 80px);
    align-items: end;
  }

  .product-docs-detail__copy h3,
  .product-docs-detail__copy p {
    grid-column: 1;
    min-width: 0;
  }

  .product-docs-detail__download {
    grid-column: auto;
    grid-row: auto;
    justify-self: auto;
    align-self: auto;
    margin-top: 0;
    text-align: right;
  }

  .product-docs-detail__actions {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
    align-self: end;
    margin-top: 0;
    text-align: right;
  }
}

.product-video-detail {
  scroll-margin-top: 55px;
  background: var(--product-ref-bg);
  color: var(--product-ref-text);
  padding: 72px 20px 86px;
}

.product-video-detail__inner {
  width: 100%;
  max-width: var(--site-shell-width, 1280px);
  margin: 0 auto;
}

.product-video-detail__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--product-ref-radius);
  background: #050505;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  isolation: isolate;
}

.product-video-detail__media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #050505;
}

.product-video-detail__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 14px;
  align-content: center;
  border: 0;
  padding: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.34));
  color: var(--product-ref-text);
  cursor: pointer;
  z-index: 2;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.product-video-detail__stage.is-playing .product-video-detail__overlay,
.product-video-detail__stage.has-video-started .product-video-detail__overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.product-video-detail__play {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 999px;
  background: var(--product-ref-red);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
}

.product-video-detail__play svg {
  width: 30px;
  height: 30px;
  margin-left: 1px;
  fill: currentColor;
}

.product-video-detail__label {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-video-detail__controls {
  position: absolute;
  left: clamp(12px, 1.8vw, 24px);
  right: clamp(12px, 1.8vw, 24px);
  bottom: clamp(12px, 1.8vw, 24px);
  z-index: 4;
  display: grid;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease;
}

.product-video-detail__stage.is-controls-visible .product-video-detail__controls,
.product-video-detail__stage.has-video-started:not(.is-playing) .product-video-detail__controls {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.product-video-detail__progress-row {
  display: flex;
  width: 100%;
}

.product-video-detail__control-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
  transform: translateY(2px);
}

.product-video-detail__control-group {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.product-video-detail__control-group--secondary {
  flex: 0 1 auto;
  justify-content: flex-end;
}

.product-video-detail__control {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(245, 245, 247, 0.14);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  transition: background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.product-video-detail__control:hover {
  background: rgba(245, 245, 247, 0.24);
}

.product-video-detail__control svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.product-video-detail__volume-wave,
.product-video-detail__volume-muted {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.product-video-detail__volume-muted {
  display: none;
}

.product-video-detail__stage.is-muted .product-video-detail__volume-wave {
  display: none;
}

.product-video-detail__stage.is-muted .product-video-detail__volume-muted {
  display: block;
}

.product-video-detail__control--play {
  background: rgba(245, 245, 247, 0.14);
  color: #fff;
}

.product-video-detail__stage.is-playing .product-video-detail__icon-play,
.product-video-detail__icon-pause {
  display: none;
}

.product-video-detail__stage.is-playing .product-video-detail__icon-pause {
  display: block;
}

.product-video-detail__time {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.product-video-detail__time-separator {
  margin: 0 4px;
  color: rgba(255, 255, 255, 0.58);
}

.product-video-detail__range {
  --range-fill: 0%;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--product-ref-red) 0 var(--range-fill), rgba(255, 255, 255, 0.26) var(--range-fill) 100%);
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.product-video-detail__range::-webkit-slider-thumb {
  width: 15px;
  height: 15px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  appearance: none;
  -webkit-appearance: none;
}

.product-video-detail__range::-moz-range-track {
  height: 5px;
  border-radius: 999px;
  background: transparent;
}

.product-video-detail__range::-moz-range-thumb {
  width: 13px;
  height: 13px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.product-video-detail__range--seek {
  width: 100%;
  flex: 1 1 auto;
  min-width: 0;
}

.product-video-detail__volume {
  flex: 0 1 132px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 96px;
  color: rgba(255, 255, 255, 0.82);
}

.product-video-detail__control--volume {
  flex: 0 0 36px;
}

.product-video-detail__range--volume {
  width: 100%;
}

.product-video-detail__icon-fullscreen-exit {
  display: none;
}

.product-video-detail__stage.is-fullscreen .product-video-detail__icon-fullscreen-enter {
  display: none;
}

.product-video-detail__stage.is-fullscreen .product-video-detail__icon-fullscreen-exit {
  display: block;
}

.product-video-detail__stage:fullscreen,
.product-video-detail__stage:-webkit-full-screen {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.product-video-detail__stage:fullscreen .product-video-detail__media,
.product-video-detail__stage:-webkit-full-screen .product-video-detail__media {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-video-detail__tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, 180px);
  justify-content: center;
  align-items: start;
  gap: 14px;
  margin-top: 20px;
}

.product-video-detail__tab {
  display: grid;
  width: 180px;
  gap: 10px;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--product-ref-muted);
  text-align: left;
  cursor: pointer;
  transition: color 0.22s ease, border-color 0.22s ease;
}

.product-video-detail__tab:hover,
.product-video-detail__tab.is-active {
  color: var(--product-ref-text);
  border-color: var(--product-ref-red);
}

.product-video-detail__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--product-ref-radius);
  background: #050505;
}

.product-video-detail__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72);
  transition: filter 0.22s ease;
}

.product-video-detail__tab:hover img,
.product-video-detail__tab.is-active img {
  filter: brightness(0.92);
}

.product-video-detail__tab-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding-bottom: 12px;
}

.product-video-detail__tab-copy strong {
  overflow-wrap: anywhere;
  font-size: 14px;
  line-height: 1.2;
}

.product-video-detail__tab-copy small {
  color: var(--product-ref-dim);
  overflow-wrap: anywhere;
  font-size: 12px;
  line-height: 1.45;
}

.product-related {
  background: #fff;
  color: #111;
  margin-bottom: 60px;
  padding: 72px 20px 0;
}

.product-detail-page--no-video .product-docs-detail {
  padding-bottom: 44px;
}

.product-detail-page--no-video .product-related {
  padding-top: 44px;
}

.product-related__inner {
  width: 100%;
  max-width: var(--site-shell-width, 1280px);
  margin: 0 auto;
}

.product-related__carousel {
  display: block;
  background: transparent;
}

.product-related__viewport {
  min-width: 0;
  overflow: hidden;
  background: transparent;
  touch-action: pan-y;
}

.product-related__track {
  --related-gap: 18px;
  display: flex;
  gap: var(--related-gap);
  align-items: flex-start;
  transform: translate3d(0, 0, 0);
  transition: transform 1.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.product-related__dots {
  display: flex;
  justify-content: center;
  gap: 14px;
  min-height: 14px;
  margin-top: 28px;
}

.product-related__dot {
  width: 14px;
  height: 14px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.24);
  cursor: pointer;
  transition: background-color 0.28s ease, transform 0.28s ease;
}

.product-related__dot.is-active {
  background: var(--product-ref-red);
  transform: scale(1.18);
}

@media (hover: hover) and (pointer: fine) {
  .product-related__dot:hover {
    background: var(--product-ref-red);
    transform: scale(1.18);
  }
}

.product-related__card {
  position: relative;
  display: block;
  flex: 0 0 calc((100% - var(--related-gap) * 3) / 4);
  align-self: start;
  min-width: 0;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  color: inherit;
  text-decoration: none;
  box-shadow: none;
}

.product-related__card:hover {
  background: transparent;
}

.product-related__card::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 18px;
  border-radius: 999px;
  background: var(--product-ref-red);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: opacity 0.24s ease, transform 0.28s ease;
}

.product-related__card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.product-related__image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--product-ref-radius);
  background: rgba(255, 255, 255, 0.05);
}

.product-related__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform-origin: center center;
  transition: transform 0.3s linear;
}

.product-related__card:hover .product-related__image img {
  transform: scale(1.02);
}

.product-related__content {
  width: 100%;
  box-sizing: border-box;
  padding: 16px 2px 0;
  text-align: left;
  transform-origin: center center;
}

.product-related__card:hover .product-related__content {
  transform: none;
}

.product-related__content h3 {
  display: inline;
  margin: 0;
  color: #111;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.32;
}

.product-related__content span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  margin-left: 9px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--product-ref-red);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  vertical-align: 2px;
}

.product-related__content p {
  margin: 11px 0 0;
  color: #4b4b4b;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
}

@media (max-width: 1680px) {
  .product-reference__grid {
    grid-template-columns: minmax(0, 37.5fr) minmax(0, 39.5fr) minmax(0, 23fr);
    gap: clamp(20px, 2vw, 32px);
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .product-reference__grid {
    grid-template-columns: minmax(0, 1fr) minmax(285px, 0.42fr);
  }

  .product-reference__gallery {
    grid-column: 1;
    grid-row: 1;
  }

  .product-reference__summary {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .product-reference__lead {
    max-width: none;
  }

  .product-reference__buy {
    grid-column: 2;
    grid-row: 1;
    grid-template-columns: 1fr;
  }

  .product-reference__trial-actions > .product-reference__read {
    font-size: 13px;
    font-weight: 800;
  }
}

@media (max-width: 767px) {
  .product-reference {
    padding-left: 12px;
    padding-right: 12px;
  }

  .product-reference__inner {
    width: 100%;
  }

  .product-video-detail {
    scroll-margin-top: 44px;
  }

  .product-reference__grid,
  .product-reference__buy {
    grid-template-columns: 1fr;
  }

  .product-reference__summary,
  .product-reference__buy {
    grid-column: auto;
    grid-row: auto;
  }

  .product-reference__summary h2 {
    font-size: 26px;
  }

  .product-reference__image-button {
    cursor: default;
  }

  .product-reference__lead {
    font-size: 16px;
  }

  .product-story {
    padding-top: 58px;
    padding-bottom: 70px;
  }

  .product-story p {
    margin-top: 24px;
  }

  .product-specs-detail {
    padding-top: 58px;
    padding-bottom: 70px;
  }

  .product-video-detail {
    padding-top: 58px;
    padding-bottom: 70px;
  }

  .product-detail-page--no-video .product-docs-detail {
    padding-bottom: 36px;
  }

  .product-related {
    padding-top: 58px;
  }

  .product-detail-page--no-video .product-related {
    padding-top: 36px;
  }

}

@media (min-width: 561px) and (max-width: 1024px) {
  .product-related__card {
    flex-basis: calc((100% - var(--related-gap) * 2) / 3);
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-gallery-slide {
    animation: none;
  }
}

@media (max-width: 560px) {
  .product-reference__inner {
    padding-top: 24px;
  }

  .product-reference__zoom-trigger {
    display: inline-flex;
  }

  .product-video-detail {
    scroll-margin-top: 40px;
  }

  .product-reference__image {
    border-radius: var(--product-ref-radius);
  }

  .product-reference__thumbs {
    --product-thumb-gap: 8px;
    overflow: hidden;
  }

  .product-reference__cart,
  .product-reference__service {
    padding: 24px 18px;
    border-radius: var(--product-ref-radius);
  }

  .product-reference__cart-row {
    margin-top: 30px;
  }

  .product-reference__countdown p {
    margin-left: 0;
  }

  .product-reference__service {
    grid-template-columns: 22px minmax(0, 1fr);
  }

  .product-story {
    padding-left: 12px;
    padding-right: 12px;
  }

  .product-story p {
    font-size: 15px;
  }

  .product-specs-detail {
    padding: 50px 12px 62px;
  }

  .product-docs-detail {
    padding: 50px 12px 62px;
  }

  .product-video-detail {
    padding: 50px 12px 62px;
  }

  .product-related {
    margin-bottom: 30px;
    padding: 50px 12px 0;
  }

  .product-video-detail__play {
    width: 58px;
    height: 58px;
  }

  .product-video-detail__play svg {
    width: 24px;
    height: 24px;
  }

  .product-video-detail__controls {
    left: 8px;
    right: 8px;
    bottom: 8px;
    gap: 7px;
  }

  .product-video-detail__control {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .product-video-detail__control svg {
    width: 15px;
    height: 15px;
  }

  .product-video-detail__control-row {
    gap: 8px;
    transform: none;
  }

  .product-video-detail__volume {
    flex: 0 1 clamp(86px, 26vw, 112px);
    min-width: 76px;
    gap: 5px;
  }

  .product-video-detail__control--volume {
    flex-basis: 30px;
  }

  .product-video-detail__time {
    font-size: 10px;
  }

  .product-video-detail__tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    justify-content: stretch;
    overflow: visible;
    padding-bottom: 0;
  }

  .product-video-detail__tab {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    width: 100%;
    gap: 8px;
    overflow: visible;
    padding: 0;
    border: 0;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    background: transparent;
    text-align: left;
  }

  .product-video-detail__tab:hover {
    color: var(--product-ref-text);
  }

  .product-video-detail__tab.is-active {
    color: var(--product-ref-text);
    border-bottom-color: var(--product-ref-red);
  }

  .product-video-detail__thumb {
    border-radius: var(--product-ref-radius);
  }

  .product-video-detail__tab-copy {
    min-width: 0;
    gap: 5px;
    padding-bottom: 10px;
  }

  .product-video-detail__tab-copy strong {
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .product-video-detail__tab-copy small {
    display: block;
    overflow-wrap: anywhere;
  }

  .product-related__track {
    --related-gap: 12px;
  }

  .product-related__dots {
    gap: 10px;
    margin-top: 20px;
  }

  .product-related__dot {
    width: 11px;
    height: 11px;
  }

  .product-related__card {
    flex-basis: calc((100% - var(--related-gap)) / 2);
  }

  .product-related__content {
    padding: 13px 0 0;
  }

  .product-related__content h3 {
    font-size: 14px;
    line-height: 1.2;
  }

  .product-related__content span {
    min-height: 18px;
    margin-left: 5px;
    padding: 0 6px;
    font-size: 10px;
    letter-spacing: 0.02em;
    vertical-align: 1px;
  }

  .product-related__content p {
    margin-top: 9px;
    font-size: 12px;
    line-height: 1.52;
  }

  .product-specs-detail__grid {
    grid-template-columns: 1fr;
  }

  .product-docs-detail__list {
    grid-template-columns: 1fr;
  }

  .product-specs-detail__grid article {
    grid-template-columns: minmax(96px, 0.42fr) minmax(0, 1fr);
    column-gap: 14px;
    row-gap: 0;
    padding: 14px 0;
  }

  .product-specs-detail__grid h3 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.18;
  }

  .product-specs-detail__value {
    gap: 0.2em;
    line-height: 1.35;
  }

  .product-specs-detail__grid p {
    font-size: 15px;
    line-height: 1.35;
  }

  .product-docs-detail__download,
  .product-docs-detail__row h3 {
    font-size: 16px;
  }

  .product-docs-detail__actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .product-docs-detail__copy p {
    font-size: 14px;
  }
}

@media (max-width: 320px) {
  .product-related {
    margin-bottom: 0;
  }
}
