﻿:root {
  --color-blue: #087dff;
  --pagination-blue: #087dff;
  --color-cyan: #31d8ff;
  --color-ink: #11151c;
  --color-muted: #737b87;
  --color-page: #f4f4f8;
  --color-surface: #ffffff;
  --color-table-head: #3f4f59;
  --header-height: 4.7rem;
  --page-x: clamp(1.5rem, 8.4vw, 10rem);
  --product-content-width: 87.6875rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 20rem;
  scroll-behavior: smooth;
  background: #000;
}

body {
  min-width: 20rem;
  min-height: 100%;
  margin: 0;
  color: var(--color-ink);
  font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
  background: var(--color-page);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input {
  font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.product-explorer {
  overflow: hidden;
  background: #000;
}

.product-canvas-shell {
  width: 100%;
  /* min-height: min(41.71875vw, 50.0625rem); */
  background: #000;
}

.product-canvas {
  position: relative;
  width: min(100%, 120rem);
  aspect-ratio: 1920 / 801;
  margin-inline: auto;
  overflow: hidden;
  background: #000;
  isolation: isolate;
}

.scene-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 420ms var(--ease-out), transform 760ms var(--ease-out);
}

.scene-image.is-ready {
  opacity: 1;
}

.scene-image.is-changing {
  opacity: 0.25;
  transform: scale(1.008);
}

.hotspot-label {
  top: calc(var(--label-y) - 1px);
  width: max-content;
  min-width: 0;
  padding: 0;
  font-size: 0.55rem;
  line-height: 1;
  background-color: transparent;
  box-shadow: none;
}

.hotspot-label:hover,
.hotspot-label:focus-visible,
.hotspot-label.is-active {
  transform: none;
}

.hotspot-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hotspot-line {
  fill: none;
  stroke: rgba(223, 242, 255, 0.78);
  stroke-width: 1.4;
  stroke-dasharray: 5 5;
  vector-effect: non-scaling-stroke;
  transition: stroke 240ms ease, opacity 240ms ease;
}

.hotspot-line.is-active {
  stroke: #36dbff;
  opacity: 1;
}

.hotspot-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hotspot-point,
.hotspot-label {
  position: absolute;
  border: 0;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
}

.hotspot-point {
  left: var(--x);
  top: var(--y);
  z-index: 3;
  display: block;
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  box-shadow: none;
  transform: translate(-50%, -50%);
  transform-origin: center;
}

.hotspot-point::before {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: 50%;
  background: rgba(215, 255, 0, 1);
  box-shadow: 0 0 1rem 0.75em rgba(224, 255, 0, 0.25);
  animation: product-hotspot-pulse 1.8s ease-out infinite;
}

.hotspot-point::after {
  pointer-events: none;
}

.hotspot-point:hover,
.hotspot-point:focus-visible,
.hotspot-point.is-active {
  outline: none;
}

.hotspot-point:hover::after,
.hotspot-point:focus-visible::after,
.hotspot-point.is-active::after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  box-shadow:
    0 0 1.5px 6px rgba(224, 255, 0, 0.25),
    0 0 1.5px 12px rgba(224, 255, 0, 0.25);
  content: "";
  transform: translate(-50%, -50%);
}

.hotspot-label {
  left: var(--label-x);
  top: var(--label-y);
  min-width: 9rem;
  padding: 0.2rem 0;
  color: #fff;
  font-size: clamp(0.68rem, 0.94vw, 1.125rem);
  font-weight: 500;
  line-height: 1.15;
  text-align: left;
  text-shadow: 0 0 0.5rem rgba(0, 76, 151, 0.9);
  transition: color 220ms ease, text-shadow 220ms ease, transform 220ms var(--ease-out);
}

.hotspot-label:hover,
.hotspot-label:focus-visible,
.hotspot-label.is-active {
  color: #55ddff;
  outline: none;
  text-shadow: 0 0 0.75rem rgba(0, 188, 255, 0.85);
  transform: translateX(0.24rem);
}

.scene-thumbnails {
  position: absolute;
  top: calc(178 / 801 * 100%);
  right: calc(260 / 1920 * 100%);
  z-index: 3;
  display: grid;
  width: calc(284 / 1920 * 100%);
  gap: clamp(0.35rem, 0.625vw, 0.75rem);
}

.scene-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 284 / 149;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 123, 255, 0.6);
  border-radius: 0.5rem;
  background: #03152a;
  cursor: pointer;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 240ms var(--ease-out);
}

.scene-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms var(--ease-out), filter 260ms ease;
}

.scene-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 6, 18, 0.16);
  transition: background 220ms ease;
}

.scene-thumb:hover,
.scene-thumb:focus-visible,
.scene-thumb.is-active {
  border-color: #32d6ff;
  box-shadow: 0 0 0.9rem rgba(0, 142, 255, 0.46);
  outline: none;
}

.scene-thumb:hover img,
.scene-thumb:focus-visible img {
  transform: scale(1.025);
}

.scene-thumb.is-active::after {
  background: rgba(0, 109, 255, 0.08);
}

.vehicle-switch {
  position: absolute;
  bottom: calc(64 / 801 * 100%);
  left: 50%;
  z-index: 4;
  display: flex;
  gap: clamp(0.6rem, 1.2vw, 1.5rem);
  transform: translateX(-50%);
}

.vehicle-switch button {
  min-width: clamp(7.2rem, 9.1vw, 10.9rem);
  min-height: clamp(2rem, 2.4vw, 2.875rem);
  padding: 0.45rem 1rem;
  border: 1px solid rgba(141, 204, 255, 0.72);
  border-radius: 999rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.68rem, 0.82vw, 0.98rem);
  font-weight: 500;
  background: rgba(2, 16, 40, 0.46);
  cursor: pointer;
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.vehicle-switch button:hover,
.vehicle-switch button:focus-visible {
  border-color: #8dccff;
  color: #fff;
  background: rgba(4, 28, 62, 0.62);
  outline: none;
}

.vehicle-switch button.is-active {
  border: 0;
  color: #fff;
  background: linear-gradient(90deg, #1634f4 18%, #3375f6 82%);
  box-shadow: none;
}

.vehicle-switch button.is-active:hover,
.vehicle-switch button.is-active:focus-visible {
  border: 0;
  background: linear-gradient(90deg, #1634f4 18%, #3375f6 82%);
  outline: none;
}

.product-center {
  min-height: 67.3125rem;
  padding: 3.6875rem 1.25rem 4.375rem;
  background: var(--color-page);
}

.product-center-inner {
  --product-identity-gap: 1.65rem;
  display: grid;
  grid-template-columns: 20.5625rem minmax(0, 1fr);
  gap: 2rem;
  width: min(var(--product-content-width), 100%);
  margin-inline: auto;
}

.product-filter-panel {
  align-self: start;
  overflow: hidden;
  border-radius: 0.35rem;
  background: #fff;
  padding-bottom: 20px;
}

.product-filter-panel h1,
.product-table-head {
  min-height: 3.8125rem;
  margin: 0;
  border-radius: 0.35rem;
  color: #fff;
  background: var(--color-table-head);
}

.product-filter-panel h1 {
  display: flex;
  align-items: center;
  padding: 0 2.4rem;
  font-size: 1.5rem;
  font-weight: normal;
}

.product-search {
  position: relative;
  height: 3.4375rem;
  margin: 1.05rem 1rem 0;
}

.product-search input {
  width: 100%;
  height: 100%;
  padding: 0 3.2rem 0 1.45rem;
  border: 1px solid #d8dce2;
  border-radius: 999rem;
  color: #242a33;
  font-size: 20px;
  background: #fff;
  outline: none;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.product-search input::placeholder {
  color: #70757d;
  opacity: 1;
}

.product-search input:focus {
  border-color: #168cf7;
  box-shadow: 0 0 0 3px rgba(22, 140, 247, 0.14);
}

.product-search button {
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 1.8rem;
  height: 1.8rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
}

.product-search button::before {
  content: "";
  position: absolute;
  top: 0.26rem;
  left: 0.23rem;
  width: 0.78rem;
  height: 0.78rem;
  border: 2px solid #a1a7af;
  border-radius: 50%;
}

.product-search button::after {
  content: "";
  position: absolute;
  top: 1.13rem;
  left: 1.1rem;
  width: 0.58rem;
  height: 2px;
  background: #a1a7af;
  transform: rotate(45deg);
  transform-origin: left center;
}

.filter-group {
  margin-top: 1.35rem;
}

.filter-group-toggle {
  position: relative;
  display: flex;
  width: calc(100% - 2rem);
  min-height: 3.8125rem;
  align-items: center;
  margin-inline: 1rem;
  padding: 0 1.45rem;
  border: 0;
  border-radius: 0.3rem 0.3rem 0 0;
  color: #242a33;
  font-size: 22px;
  font-weight: 500;
  text-align: left;
  background: #f2f2f5;
  cursor: pointer;
}

.filter-group-toggle::after {
  content: "";
  position: absolute;
  right: 1.4rem;
  width: 0.6rem;
  height: 0.6rem;
  border-right: 2px solid #bbc0c8;
  border-bottom: 2px solid #bbc0c8;
  transform: translateY(0.18rem) rotate(225deg);
  transition: transform 240ms var(--ease-out);
}

.filter-group.is-open .filter-group-toggle::after {
  transform: translateY(-0.18rem) rotate(45deg);
}

.filter-options {
  position: relative;
  display: none;
  padding-block: 0.8rem;
  background: inherit;
}

.filter-group.is-open .filter-options {
  display: grid;
}

.filter-options::before {
  content: "";
  position: absolute;
  top: 1.55rem;
  bottom: 1.55rem;
  left: 3.55rem;
  width: 2px;
  background: #e0e2e6;
}

.filter-option {
  position: relative;
  z-index: 1;
  min-height: 3.4375rem;
  margin: 0 1rem 0 4.45rem;
  padding: 0.65rem 0.8rem;
  border: 0;
  color: #252a31;
  font-size: 20px;
  line-height: 1.35;
  text-align: left;
  background: transparent;
  cursor: pointer;
  transition: color 200ms ease, background 200ms ease;
}

.filter-option:hover,
.filter-option:focus-visible,
.filter-option.is-active {
  color: #252a31;
  background: #f2f2f5;
  outline: none;
}

.filter-group+.filter-group {
  margin-top: 1rem;
}

@keyframes product-hotspot-pulse {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  60% {
    transform: scale(1.5);
    opacity: 0.75;
  }

  100% {
    transform: scale(0.8);
    opacity: 1;
  }
}

.product-table-head,
.product-row {
  display: grid;
  grid-template-columns: 1.75fr 0.95fr 0.85fr 1.3fr 0.42fr;
  align-items: center;
}

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

.product-table-head {
  padding: 0 2rem;
  font-size: 20px;
}

.product-table-head span {
  text-align: center;
}

.product-sort-button {
  display: inline-flex;
  min-height: 44px;
  padding: 0 4px;
  border: 0;
  align-items: center;
  justify-content: center;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  word-break: keep-all;
}

.product-sort-button:hover,
.product-sort-button.is-active {
  color: #d9efff;
}

.product-sort-button:focus-visible {
  border-radius: 4px;
  outline: 2px solid rgba(255, 255, 255, 0.82);
  outline-offset: 2px;
}

.sort-icon {
  width: 18px;
  height: 18px;
  margin-left: 5px;
  flex: 0 0 auto;
  fill: none;
  stroke: rgba(255, 255, 255, 0.48);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.sort-icon path {
  transition: stroke 160ms ease, opacity 160ms ease;
}

.product-sort-button.is-active:not(.is-descending) .sort-icon-up,
.product-sort-button.is-descending .sort-icon-down {
  stroke: #69dcff;
  opacity: 1;
}

.product-sort-button.is-active:not(.is-descending) .sort-icon-down,
.product-sort-button.is-descending .sort-icon-up {
  stroke: rgba(255, 255, 255, 0.2);
  opacity: 0.65;
}

/*.product-table-head span:first-child {
  padding-left: calc(4.625rem + var(--product-identity-gap));
  text-align: left;
}*/

.product-status {
  display: flex;
  min-height: 6.0625rem;
  align-items: center;
  justify-content: center;
  margin: 0.9rem 0 0;
  color: #67707c;
  background: #fff;
}

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

.product-list {
  display: grid;
  gap: 0.875rem;
  margin-top: 0.9rem;
}

.product-pagination .pages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.15rem;
  margin-top: 5.425rem;
  color: #77849a;
  font-size: 1rem;
}

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

.product-pagination button {
  position: relative;
  padding: 0.45rem 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  transition: color 220ms ease;
}

.product-pagination button:hover,
.product-pagination button:focus-visible,
.product-pagination button.is-current {
  color: var(--pagination-blue);
}

.product-pagination button:focus-visible {
  border-radius: 0.15rem;
  outline: 2px solid rgba(8, 125, 255, 0.35);
  outline-offset: 0.2rem;
}

.product-pagination button.is-current::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0.16rem;
  background: var(--pagination-blue);
  content: "";
}

.product-pagination button:disabled {
  opacity: 0.42;
  cursor: default;
}

.product-pagination button:disabled:hover {
  color: inherit;
}

.product-pagination-ellipsis {
  padding: 0.45rem 0;
}

.product-row {
  position: relative;
  min-height: 6.0625rem;
  padding: 0 2rem;
  border: 0;
  border-radius: 0.14rem;
  color: #4f5660;
  background: #fff;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease, transform 240ms var(--ease-out);
}

.product-row::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.56rem;
  border-radius: 0.14rem 0 0 0.14rem;
  background: #0b91fa;
  opacity: 0;
  transition: opacity 220ms ease;
}

.product-row:hover,
.product-row:focus-visible {
  color: #252b34;
  background: #fbfdff;
  outline: 2px solid rgba(11, 145, 250, 0.25);
  outline-offset: -2px;
  /* transform: translateY(-0.08rem); */
}

.product-row:hover::before,
.product-row:focus-visible::before {
  opacity: 1;
}

.product-identity {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: var(--product-identity-gap);
}

.product-identity img {
  width: 4.625rem;
  height: 4rem;
  object-fit: contain;
}

.product-identity strong {
  display: block;
  overflow: hidden;
  font-size: 1rem;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-name {
  position: relative;
  min-width: 0;
  flex: 1;
}

.product-name-tooltip {
  position: absolute;
  bottom: calc(100% + 0.7rem);
  left: 0;
  z-index: 30;
  width: max-content;
  max-width: min(30rem, calc(100vw - 2rem));
  padding: 0.55rem 0.75rem;
  border-radius: 0.28rem;
  color: #fff;
  background: #435360;
  box-shadow: 0 0.2rem 0.65rem rgba(28, 40, 50, 0.16);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.45;
  opacity: 0;
  overflow-wrap: anywhere;
  pointer-events: none;
  text-align: left;
  transform: translateY(0.2rem);
  transition: opacity 160ms ease, transform 160ms var(--ease-out), visibility 160ms ease;
  visibility: hidden;
  white-space: normal;
}

.product-name-tooltip::after {
  position: absolute;
  top: 100%;
  left: 1rem;
  border: 0.35rem solid transparent;
  border-top-color: #435360;
  content: "";
}

.product-name.has-tooltip:hover .product-name-tooltip,
.product-row:focus-visible .product-name-tooltip {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.product-row-field {
  font-size: 20px;
  text-align: center;
}

.product-pl {
  position: relative;
  display: grid;
  width: 2.125rem;
  /*height: 3.125rem;*/
  align-content: center;
  justify-self: center;
  gap: 0.2rem;
  padding: 0.2rem;
  border: 1px solid #e9e9ec;
}

.product-pl::before,
.product-pl::after {
  position: absolute;
  left: 50%;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 160ms ease, transform 160ms var(--ease-out);
}

.product-pl::before {
  content: "";
  bottom: calc(100% + 0.25rem);
  border: 0.38rem solid transparent;
  border-top-color: #435360;
  transform: translate(-50%, 0.2rem);
}

.product-pl::after {
  content: attr(data-pl);
  bottom: calc(100% + 0.95rem);
  min-width: max-content;
  padding: 0.55rem 0.8rem;
  border-radius: 0.28rem;
  color: #fff;
  background: #435360;
  font-size: 0.95rem;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 0.2rem 0.65rem rgba(28, 40, 50, 0.16);
  transform: translate(-50%, 0.2rem);
}

.product-pl:hover::before,
.product-pl:hover::after,
.product-row:focus-visible .product-pl::before,
.product-row:focus-visible .product-pl::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.product-pl i {
  display: block;
  width: 100%;
  height: 0.54rem;
  background: #d9dce1;
}

/* 可以预定：上面两格灰色，底部一格红色 */
.product-pl[data-pl="可以预定"] i:nth-child(3) {
  background: #c32634;
}

/* 预生产：顶部一格灰色，下面两格蓝色 */
.product-pl[data-pl="预生产"] i:nth-child(2),
.product-pl[data-pl="预生产"] i:nth-child(3) {
  background: #138df5;
}

/* 量产中：三格蓝色 */
.product-pl[data-pl="量产中"] i {
  background: #138df5;
}

/* 已停产：三格红色 */
.product-pl[data-pl="已停产"] i {
  background: #c32634;
}

@media (min-width: 1921px) {
  .product-explorer {
    box-shadow: inset calc((100vw - 120rem) / 2) 0 #000, inset calc((120rem - 100vw) / 2) 0 #000;
  }
}

@media (max-width: 1280px) {
  .product-center-inner {
    --product-identity-gap: 1rem;
    grid-template-columns: 18rem minmax(0, 1fr);
  }

  .product-filter-panel h1,
  .filter-group-toggle {
    padding-inline: 1.6rem;
  }

  .product-table-head,
  .product-row {
    padding-inline: 1.4rem;
  }

  .product-identity {
    gap: 1rem;
  }
}

@media (max-width: 980px) {
  .product-canvas-shell {
    min-height: auto;
  }

  .product-canvas {
    --scene-stage-height: 25rem;
    width: 100%;
    min-height: 41.1875rem;
    aspect-ratio: auto;
  }

  .scene-image,
  .hotspot-lines,
  .hotspot-layer {
    top: 0;
    right: auto;
    bottom: auto;
    left: 50%;
    width: calc(var(--scene-stage-height) * 1920 / 801);
    max-width: none;
    height: var(--scene-stage-height);
    transform: translateX(-50%);
  }

  .scene-image {
    object-fit: fill;
  }

  .scene-image.is-changing {
    transform: translateX(-50%) scale(1.008);
  }

  .hotspot-label {
    top: calc(var(--label-y) - 1px);
    width: max-content;
    min-width: 0;
    padding: 0;
    font-size: 0.55rem;
    line-height: 1;
    background-color: transparent;
    box-shadow: none;
  }

  .hotspot-label:hover,
  .hotspot-label:focus-visible,
  .hotspot-label.is-active {
    transform: none;
  }

  .scene-thumbnails {
    top: 25.35rem;
    right: 1.25rem;
    left: 1.25rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: auto;
    gap: 0.7rem;
  }

  .vehicle-switch {
    top: 36.5rem;
    right: 1.25rem;
    bottom: auto;
    left: 1.25rem;
    justify-content: center;
    transform: none;
  }

  .vehicle-switch button {
    flex: 1;
    max-width: 13rem;
  }

  .product-center {
    min-height: auto;
    padding-top: 2.5rem;
  }

  .product-center-inner {
    grid-template-columns: 1fr;
  }

  .product-results {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .product-canvas {
    min-height: 0;
    padding: clamp(19rem, 50vw, 25rem) 0 1.5rem;
  }

  .product-scene {
    position: absolute;
    inset: 0 0 auto;
    width: 100%;
    height: clamp(19rem, 50vw, 25rem);
  }

  .scene-image,
  .hotspot-lines,
  .hotspot-layer {
    top: 50%;
    right: auto;
    bottom: auto;
    left: 50%;
    width: 130%;
    height: auto;
    aspect-ratio: 1920 / 801;
    transform: translate(-50%, -50%);
  }

  .scene-image.is-changing {
    transform: translate(-50%, -50%) scale(1.008);
  }

  .hotspot-label {
    font-size: 1.3vw;
  }

  .scene-thumbnails {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    margin: 0.75rem 1.25rem 0;
  }

  .hotspot-point {
    width: 1.25rem;
    height: 1.25rem;
  }

  .hotspot-point::before {
    inset: auto;
    top: 50%;
    left: 50%;
    width: 0.45rem;
    height: 0.45rem;
    transform: translate(-50%, -50%);
  }

  .vehicle-switch {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    gap: 0.5rem;
    margin: 1.75rem 1.25rem 0;
  }

  .vehicle-switch button {
    min-width: 0;
    padding-inline: 0.5rem;
  }

  .product-table-head,
  .product-row {
    grid-template-columns:
      minmax(5rem, 1.55fr) minmax(2.2rem, 0.68fr) minmax(2.5rem, 0.72fr) minmax(4rem, 1.1fr) minmax(1.5rem, 0.36fr);
    width: 100%;
    min-width: 0;
    padding-inline: clamp(0.35rem, 1.75vw, 0.65rem);
  }

  .product-center {
    padding-inline: 0.9rem;
  }

  .product-filter-panel h1 {
    font-size: 1.3rem;
  }

  .product-results {
    overflow-x: visible;
    padding-bottom: 0;
  }

  .product-table-head {
    font-size: clamp(0.52rem, 2.2vw, 0.68rem);
  }

  .product-table-head span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /*.product-table-head span:first-child {
    padding-left: 0;
    text-align: center;
  }*/

  .product-row {
    min-height: 5rem;
  }

  .product-identity {
    gap: clamp(0.2rem, 1vw, 0.4rem);
  }

  .product-identity img {
    width: clamp(2.1rem, 7vw, 2.6rem);
    height: clamp(2rem, 6.5vw, 2.4rem);
    flex: 0 0 auto;
  }

  .product-identity strong,
  .product-row-field {
    font-size: clamp(0.52rem, 2.2vw, 0.7rem);
  }

  .product-row-field {
    min-width: 0;
    padding-inline: 0.1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .product-pl {
    width: 1.35rem;
    height: 2.15rem;
    gap: 0.12rem;
  }

  .product-pl::after {
    right: 0;
    left: auto;
    transform: translateY(0.2rem);
  }

  .product-pl:hover::after,
  .product-row:focus-visible .product-pl::after {
    transform: translateY(0);
  }

  .product-pl i {
    height: 0.38rem;
  }

  .product-footer {
    min-height: 27rem;
    background-position: 64% center;
  }

  .product-footer-inner {
    min-height: 27rem;
    padding-top: 4.5rem;
  }

  .product-footer-logo {
    width: 10rem;
  }

  .product-footer-contact {
    gap: 0.8rem;
  }

  .product-footer-contact a {
    font-size: 0.78rem;
  }

  .product-footer-record {
    bottom: 1.4rem;
  }

  .sort-icon {
    width: 10px;
    height: 12px;
    margin-left: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}


