/* PneuGage product page — Versa brand colors, mock layout structure */

.page-product .pg-hero {
  --pg-orange: #EC7626;
  --pg-grey: #616161;
  --pg-dark: #434242;
  --pg-line: #d8d8d8;
  background: #f5f5f6;
  color: var(--pg-dark);
  padding: clamp(2.75rem, 5vw, 4.5rem) 0;
}

.page-product .pg-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
}

.page-product .pg-hero__eyebrow {
  margin: 0 0 0.65rem;
  color: var(--pg-orange);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-product .pg-hero__title {
  margin: 0 0 1rem;
  color: var(--pg-dark);
  font-size: clamp(1.75rem, 2.6vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.page-product .pg-hero__lead {
  margin: 0 0 1.5rem;
  max-width: 48ch;
  color: var(--pg-grey);
  font-size: 0.98rem;
  line-height: 1.7;
  font-weight: 400;
}

.page-product .pg-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.page-product .pg-hero__btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--pg-dark);
  background: transparent;
  color: var(--pg-dark);
  font-size: var(--fs-btn);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.page-product .pg-hero__btn-outline:hover,
.page-product .pg-hero__btn-outline:focus-visible {
  background: rgba(67, 66, 66, 0.06);
  border-color: var(--pg-orange);
  color: var(--pg-orange);
  outline: none;
}

.page-product .pg-hero__chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.page-product .pg-hero__chips li {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--pg-line);
  border-radius: 999px;
  color: var(--pg-dark);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.3;
  background: #fff;
}

.page-product .pg-hero__frame {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.page-product .pg-hero__frame img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 280px;
  max-height: 460px;
  object-fit: contain;
  object-position: center;
  margin-inline: auto;
  border-radius: 20px;
}

/* Intro copy section */
.page-product .pg-intro {
  background: #fff;
  padding-top: clamp(2.75rem, 5vw, 4rem);
  padding-bottom: clamp(2.75rem, 5vw, 4rem);
}

.page-product .pg-intro h2 {
  margin: 0 0 1.25rem;
  color: #434242;
  font-size: clamp(1.75rem, 2.6vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.page-product .pg-intro__prose {
  max-width: none;
  width: 100%;
}

.page-product .pg-intro__prose p {
  margin: 0 0 1.1rem;
  color: #616161;
  font-size: 0.98rem;
  line-height: 1.75;
  font-weight: 400;
}

.page-product .pg-intro__prose p:last-child {
  margin-bottom: 0;
}

.page-product .pg-intro__prose strong {
  color: #434242;
  font-weight: 600;
}

/* Key features grid */
.page-product .pg-features {
  background: #f5f5f6;
  padding-top: clamp(2.75rem, 5vw, 4.5rem);
  padding-bottom: clamp(2.75rem, 5vw, 4.5rem);
}

.page-product .pg-features__head {
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  width: 100%;
}

.page-product .pg-features__head h2 {
  margin: 0 0 0.55rem;
  color: #434242;
  font-size: clamp(1.75rem, 2.6vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.page-product .pg-features__head p {
  margin: 0;
  color: #616161;
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: none;
  width: 100%;
}

.page-product .pg-features__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  width: 100%;
}

.page-product .pg-feature-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  padding: 1.35rem 1.3rem 1.45rem;
  box-shadow: 0 8px 22px rgba(67, 66, 66, 0.05);
}

.page-product .pg-feature-card__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  border-radius: 10px;
  background: rgba(36, 142, 205, 0.12);
  color: #248ECD;
}

.page-product .pg-feature-card__icon svg {
  width: 22px;
  height: 22px;
}

.page-product .pg-feature-card h3 {
  margin: 0 0 0.55rem;
  color: #434242;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
}

.page-product .pg-feature-card p {
  margin: 0;
  color: #616161;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Technical specifications */
.page-product .pg-specs {
  background: #fff;
  padding-top: clamp(2.75rem, 5vw, 4.5rem);
  padding-bottom: clamp(2.75rem, 5vw, 4.5rem);
}

.page-product .pg-specs__head {
  margin-bottom: clamp(1.35rem, 2.5vw, 2rem);
  width: 100%;
}

.page-product .pg-specs__head h2 {
  margin: 0 0 0.55rem;
  color: #434242;
  font-size: clamp(1.75rem, 2.6vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.page-product .pg-specs__head p {
  margin: 0;
  color: #616161;
  font-size: 0.95rem;
  line-height: 1.6;
}

.page-product .pg-specs__scroll {
  width: 100%;
  max-height: min(420px, 55vh);
  overflow: auto;
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  background: #fff;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #c5c5c5 transparent;
}

.page-product .pg-specs__scroll::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.page-product .pg-specs__scroll::-webkit-scrollbar-track {
  background: transparent;
}

.page-product .pg-specs__scroll::-webkit-scrollbar-thumb {
  background: #c5c5c5;
  border-radius: 999px;
}

.page-product .pg-specs__scroll::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.page-product .pg-specs__scroll:focus-visible {
  outline: 2px solid #248ECD;
  outline-offset: 2px;
}

.page-product .pg-specs__table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  table-layout: fixed;
}

.page-product .pg-specs__table th,
.page-product .pg-specs__table td {
  padding: 0.95rem 1.15rem;
  text-align: left;
  vertical-align: top;
  font-size: 0.95rem;
  line-height: 1.5;
  border-bottom: 1px solid #e8e8e8;
}

.page-product .pg-specs__table tr:last-child th,
.page-product .pg-specs__table tr:last-child td {
  border-bottom: 0;
}

.page-product .pg-specs__table th {
  width: 34%;
  color: #434242;
  font-weight: 600;
  background: #eef3f7;
}

.page-product .pg-specs__table td {
  color: #616161;
  font-weight: 400;
  background: #fff;
}

.page-product .pg-specs__note {
  margin: 1rem 0 0;
  color: #888;
  font-size: 0.82rem;
  line-height: 1.55;
}

/* Where used */
.page-product .pg-uses {
  --pg-use-card-size: clamp(240px, 28vw, 320px);
  position: relative;
  overflow: hidden;
  background: #eef1f4;
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
  padding-bottom: clamp(3.75rem, 6.5vw, 6rem);
  min-height: clamp(36rem, 72vh, 46rem);
}

.page-product .pg-uses__inner {
  position: relative;
  z-index: 1;
}

.page-product .pg-uses__head {
  margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
  width: 100%;
}

.page-product .pg-uses__head h2 {
  margin: 0 0 0.55rem;
  color: #434242;
  font-size: clamp(1.75rem, 2.6vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.page-product .pg-uses__head p {
  margin: 0;
  color: #616161;
  font-size: 0.98rem;
  line-height: 1.65;
  width: 100%;
  max-width: 52rem;
}

.page-product .pg-uses__scroller {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.page-product .pg-uses__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: pg-uses-scroll 42s linear infinite;
}

.page-product .pg-uses__scroller:hover .pg-uses__track,
.page-product .pg-uses__scroller:focus-within .pg-uses__track {
  animation-play-state: paused;
}

.page-product .pg-uses__grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--pg-use-card-size);
  gap: 1.1rem;
  padding-right: 1.1rem;
}

.page-product .pg-use-card {
  position: relative;
  overflow: hidden;
  width: var(--pg-use-card-size);
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e8e8e8;
  box-shadow: 0 10px 28px rgba(67, 66, 66, 0.06);
}

.page-product .pg-use-card--photo {
  border-color: transparent;
  box-shadow: 0 14px 32px rgba(35, 48, 62, 0.18);
}

.page-product .pg-use-card__media {
  position: absolute;
  inset: 0;
  background-image: var(--pg-use-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.02);
  transition: transform 0.45s ease;
}

.page-product .pg-use-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(16, 24, 34, 0.18) 0%,
    rgba(16, 24, 34, 0.42) 42%,
    rgba(16, 24, 34, 0.88) 100%
  );
}

.page-product .pg-use-card--photo:hover .pg-use-card__media {
  transform: scale(1.06);
}

.page-product .pg-use-card__body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  align-content: end;
  height: 100%;
  padding: 1.35rem 1.3rem;
}

.page-product .pg-use-card__dot {
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: #248ECD;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(36, 142, 205, 0.22);
}

.page-product .pg-use-card p {
  margin: 0;
  color: #616161;
  font-size: 0.95rem;
  line-height: 1.55;
}

.page-product .pg-use-card strong {
  display: block;
  margin-bottom: 0.2rem;
  color: #434242;
  font-size: 1.08rem;
  font-weight: 600;
}

.page-product .pg-use-card--photo p {
  color: rgba(255, 255, 255, 0.9);
}

.page-product .pg-use-card--photo strong {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
}

@keyframes pg-uses-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-product .pg-uses__track {
    animation: none;
  }

  .page-product .pg-uses__scroller {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    mask-image: none;
    -webkit-mask-image: none;
  }
}

/* Why buy */
.page-product .pg-why {
  background: #fff;
  padding-top: clamp(2.75rem, 5vw, 4.5rem);
  padding-bottom: clamp(2.75rem, 5vw, 4.5rem);
}

.page-product .pg-why__head {
  margin-bottom: 1.15rem;
  width: 100%;
}

.page-product .pg-why__head h2 {
  margin: 0 0 0.55rem;
  color: #434242;
  font-size: clamp(1.75rem, 2.6vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.page-product .pg-why__tagline {
  margin: 0;
  color: #888;
  font-size: 0.98rem;
  line-height: 1.55;
}

.page-product .pg-why__prose {
  width: 100%;
  margin-bottom: 1.75rem;
}

.page-product .pg-why__prose p {
  margin: 0;
  color: #616161;
  font-size: 0.98rem;
  line-height: 1.75;
}

.page-product .pg-why__prose strong {
  color: #434242;
  font-weight: 600;
}

.page-product .pg-why__trust {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.65rem 1.15rem;
}

.page-product .pg-why__trust-label {
  color: #888;
  font-size: 0.92rem;
  line-height: 1.5;
}

.page-product .pg-why__brands {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.35rem;
  color: #434242;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
}

/* FAQ — product image left, accordion right */
.page-product .pg-faq {
  background: #fff;
  padding-top: clamp(2.75rem, 5vw, 4.5rem);
  padding-bottom: clamp(2.75rem, 5vw, 4.5rem);
}

.page-product .pg-faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: stretch;
}

.page-product .pg-faq__media {
  position: relative;
  min-width: 0;
}

.page-product .pg-faq__media-pin {
  position: sticky;
  top: 7.25rem;
  background: #f5f5f6;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  width: 100%;
}

.page-product .pg-faq__media-pin img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #f5f5f6;
}

.page-product .pg-faq__content {
  min-width: 0;
}

.page-product .pg-faq__head {
  margin-bottom: clamp(1.25rem, 2.5vw, 1.85rem);
  width: 100%;
}

.page-product .pg-faq__head h2 {
  margin: 0 0 0.55rem;
  color: #111;
  font-size: clamp(1.5rem, 2.2vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.page-product .pg-faq__head p {
  margin: 0;
  color: #616161;
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 42rem;
}

.page-product .pg-faq__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: 100%;
}

.page-product .pg-faq__item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #dcdcdc;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  min-width: 0;
}

.page-product .pg-faq__item:first-child {
  border-top: 1px solid #dcdcdc;
}

.page-product .pg-faq__item[open] {
  border-color: #dcdcdc;
  box-shadow: none;
}

.page-product .pg-faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 2.25rem 1.1rem 0;
  color: #222;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.4;
  position: relative;
}

.page-product .pg-faq__item summary::-webkit-details-marker {
  display: none;
}

.page-product .pg-faq__item summary::after {
  content: "";
  position: absolute;
  right: 0.15rem;
  top: 50%;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid #222;
  border-bottom: 2px solid #222;
  transform: translateY(-65%) rotate(45deg);
  background: none;
  border-radius: 0;
}

.page-product .pg-faq__item[open] summary {
  color: #222;
  padding-bottom: 0.7rem;
}

.page-product .pg-faq__item[open] summary::after {
  content: "";
  transform: translateY(-35%) rotate(-135deg);
}

.page-product .pg-faq__item summary:focus-visible {
  outline: 2px solid #248ECD;
  outline-offset: 2px;
}

.page-product .pg-faq__item p {
  margin: 0;
  padding: 0 2rem 1.15rem 0;
  color: #616161;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* CTA */
.page-product .pg-cta {
  background: linear-gradient(105deg, #616161 0%, #EC7626 100%);
  padding-top: clamp(2.5rem, 5vw, 3.75rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.page-product .pg-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
}

.page-product .pg-cta__copy {
  flex: 1 1 18rem;
  max-width: 36rem;
}

.page-product .pg-cta__copy h2 {
  margin: 0 0 0.55rem;
  color: #fff;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.page-product .pg-cta__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  line-height: 1.6;
}

.page-product .pg-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-product .pg-cta__btn-outline {
  background: transparent;
  border: 1.5px solid #fff;
  color: #fff;
}

.page-product .pg-cta__btn-outline:hover,
.page-product .pg-cta__btn-outline:focus-visible {
  background: #fff;
  color: #434242;
}

/* Related products */
.page-product .pg-related {
  background: #fff;
  padding-top: clamp(2.75rem, 5vw, 4.5rem);
  padding-bottom: clamp(2.75rem, 5vw, 4.5rem);
}

.page-product .pg-related__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: clamp(1.35rem, 2.5vw, 2rem);
}

.page-product .pg-related__head-copy {
  flex: 1 1 16rem;
  max-width: 36rem;
}

.page-product .pg-related__head h2 {
  margin: 0 0 0.45rem;
  color: #434242;
  font-size: clamp(1.75rem, 2.6vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.page-product .pg-related__head p {
  margin: 0;
  color: #616161;
  font-size: 0.98rem;
  line-height: 1.6;
}

.page-product .pg-related__all {
  color: #248ECD;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.page-product .pg-related__all:hover,
.page-product .pg-related__all:focus-visible {
  color: #EC7626;
  text-decoration: underline;
  outline: none;
}

.page-product .pg-related__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.page-product .pg-related__item {
  display: flex;
  flex-direction: column;
  min-width: 0;
  text-decoration: none;
  color: inherit;
  background: #f5f5f6;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.22s ease, background-color 0.22s ease;
}

.page-product .pg-related__item:hover,
.page-product .pg-related__item:focus-visible {
  transform: translateY(-3px);
  background: #efefef;
  outline: none;
}

.page-product .pg-related__item:focus-visible {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #248ECD;
}

.page-product .pg-related__media {
  aspect-ratio: 5 / 4;
  display: grid;
  place-items: center;
  padding: 1.1rem 1rem 0.35rem;
  background: transparent;
}

.page-product .pg-related__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.page-product .pg-related__body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.85rem 1.15rem 1.25rem;
  flex: 1;
}

.page-product .pg-related__body h3 {
  margin: 0;
  color: #434242;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.page-product .pg-related__more {
  margin-top: auto;
  color: #248ECD;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
}

.page-product .pg-related__item:hover .pg-related__more,
.page-product .pg-related__item:focus-visible .pg-related__more {
  color: #EC7626;
}

@media (max-width: 1100px) {
  .page-product .pg-related__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .page-product .pg-hero__grid {
    grid-template-columns: 1fr;
  }

  .page-product .pg-hero__visual {
    order: -1;
  }

  .page-product .pg-hero__lead {
    max-width: none;
  }

  .page-product .pg-features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-product .pg-uses {
    --pg-use-card-size: clamp(220px, 62vw, 280px);
    min-height: 0;
  }

  .page-product .pg-faq__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .page-product .pg-faq__media-pin {
    position: static;
    max-width: 28rem;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .page-product .pg-hero__actions .btn,
  .page-product .pg-hero__btn-outline,
  .page-product .pg-cta__actions .btn {
    width: 100%;
  }

  .page-product .pg-features__grid {
    grid-template-columns: 1fr;
  }

  .page-product .pg-related__grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .page-product .pg-related__item {
    display: grid;
    grid-template-columns: minmax(7rem, 38%) 1fr;
    align-items: stretch;
  }

  .page-product .pg-related__media {
    aspect-ratio: auto;
    min-height: 100%;
    padding: 0.85rem 0.5rem 0.85rem 0.85rem;
  }

  .page-product .pg-related__body {
    padding: 1rem 1rem 1rem 0.65rem;
    justify-content: center;
  }
}
