/* (c) 2026 Sentys Inc. All rights reserved. */









.product-hero {
  position: relative;
  height: min(50vh, 470px);
  min-height: 300px;
  overflow: hidden;
}




.product-hero__image,
.product-hero .hero-cycle__img { object-position: 20% center; }

.product-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 1.4s ease-out forwards;
}

.product-hero__gradient {
  position: absolute;
  inset: 0;
  z-index: 1;




  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.05) 30%,
    rgba(0,0,0,0.35) 60%,
    rgba(0,0,0,0.5) 80%,
    #f7f7f4 100%
  );
}
body.hero-head-v2 .product-hero__gradient {
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.35) 0%,
      rgba(0,0,0,0.05) 30%,
      rgba(0,0,0,0.35) 60%,
      rgba(0,0,0,0.5) 80%,
      #f7f7f4 100%
    ),
    linear-gradient(
      90deg,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.22) 40%,
      rgba(0,0,0,0) 66%
    );
}

.product-hero__title {
  position: absolute;
  bottom: 80px;
  left: 48px;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 7vw, 6rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.9;
  max-width: 16ch;
  text-wrap: balance;
  letter-spacing: -0.02em;
}

.product-hero__badge {
  position: absolute;
  bottom: 48px;
  right: 48px;
  z-index: 2;
  height: 56px;
  opacity: 0.8;
  filter: none;
}









.product-intro {
  position: relative;
  z-index: 2;
  margin-top: -64px;
  padding: 0 4vw 32px;
  text-align: center;
  max-width: 100%;
  background: transparent;
}




.product-intro > * {
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.product-intro__inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}



.product-intro__text {
  font-family: var(--font-heading);
  font-style: normal;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 400;
  line-height: 1.65;
  color: #2a2a28;
  letter-spacing: 0.005em;
}


.product-feature {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 4vw;
}


.product-feature__image {
  grid-column: 1 / 15;
  grid-row: 1;
  z-index: 1;
  overflow: hidden;
  background: #ffffff;
  border-radius: 2px;



  align-self: stretch;
  position: relative;
  min-height: 100%;
}

.product-feature__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  mix-blend-mode: normal;
  transition: transform 0.6s ease;
}

.product-feature:hover .product-feature__image img {
  transform: scale(1.02);
}

.product-feature__text {
  grid-column: 13 / 25;
  grid-row: 1;
  z-index: 2;
  background: linear-gradient(to right, rgba(255,255,255,0.55), rgba(255,255,255,1) 18%);
  padding: 32px 36px 32px 40px;
  align-self: center;
  box-shadow: -8px 4px 40px rgba(0,0,0,0.10);
  border-radius: 4px;
}


.product-feature--alt .product-feature__image {
  grid-column: 11 / 25;
}

.product-feature--alt .product-feature__text {
  grid-column: 1 / 13;
  padding: 32px 40px 32px 36px;
  background: linear-gradient(to left, rgba(255,255,255,0.55), rgba(255,255,255,1) 18%);
  box-shadow: 8px 4px 40px rgba(0,0,0,0.10);
  border-radius: 4px;
}

.product-feature__text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0.75rem;
  padding-bottom: 0.6rem;
  border-bottom: 3px solid #B0D237;
  display: inline-block;
  line-height: 1.1;
}

.product-feature__text p {
  margin-bottom: 1em;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.85;
  color: #333;
}

.product-feature__text p:last-child {
  margin-bottom: 0;
}


.product-data {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 4vw 40px;
}

.product-data__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 48px;
}

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

.product-data__item {
  display: flex;
  flex-direction: column;
}

.product-data__item img {
  width: 100%;

  object-fit: cover;
  margin-bottom: 20px;
  background: #f0f0f0;
}

.product-data__item h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 12px;
}

.product-data__item p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.65;
  color: #333;
  margin-bottom: 0.75em;
}

.product-data__item p:last-child {
  margin-bottom: 0;
}

.product-data__item table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  line-height: 1.5;
}

.product-data__item th {
  font-weight: 600;
  text-align: left;
  padding: 6px 12px 6px 0;
  border-bottom: 1px solid #ddd;
  font-size: 0.78rem;
}

.product-data__item td {
  padding: 5px 12px 5px 0;
  border-bottom: 1px solid #f0f0f0;
  font-weight: 300;
  vertical-align: top;
  font-size: 0.78rem;
}

.product-data__item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-data__item li {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.55;
  color: #333;
  padding: 4px 0;
  border-bottom: 1px solid #f5f5f5;
}

.product-data__item li:last-child {
  border-bottom: none;
}

.product-data__item li strong {
  font-weight: 600;
  color: var(--black);
}


.product-cta {
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 4vw 60px;
}




body.hero-head-v2 .product-cta {
  max-width: 1200px;
  padding-left: 24px;
  padding-right: 24px;
}


.product-specs {
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 4vw;
  border-top: 1px solid var(--gray-light);
}

.product-specs__title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 32px;
}


@media (max-width: 900px) {
  .product-hero {
  height: 65vh; min-height: 400px; }
  .product-hero__title { bottom: 48px; left: 24px; }
  .product-hero__badge { bottom: 32px; right: 24px; height: 32px; }

  .product-feature {
    display: flex;
    flex-direction: column;
    padding: 12px 16px;
    gap: 0;
  }

  .product-feature__image {
    aspect-ratio: 16 / 9;
    margin-bottom: -32px;
    position: relative;
    z-index: 1;
  }

  .product-feature__text {
    position: relative;
    z-index: 2;
    margin: 0 16px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  }

  .product-feature--alt { flex-direction: column; }
  .product-feature--alt .product-feature__text {
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  }

  .product-data { padding: 60px 24px 40px; }
  .product-data__grid { grid-template-columns: 1fr; gap: 40px; }

  .product-cta { padding: 24px 24px 60px; }
}


.product-specs__table {
  width: 100%;
  border-collapse: collapse;
}

.product-specs__row {
  border-bottom: 1px solid var(--gray-light);
}

.product-specs__row:last-child {
  border-bottom: none;
}

.product-specs__label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black);
  padding: 14px 16px 14px 0;
  width: 40%;
  vertical-align: top;
}

.product-specs__value {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: #333;
  padding: 14px 0;
}


.product-downloads {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-downloads__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--black);
  padding: 12px 20px;
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  transition: border-color 0.2s ease, background 0.2s ease;
  width: fit-content;
}

.product-downloads__item:hover {
  border-color: var(--green);
  background: rgba(175, 209, 57, 0.05);
}

@media (max-width: 900px) {
  .product-specs__label { width: 45%; font-size: 0.85rem; }
  .product-specs__value { font-size: 0.85rem; }
}


.product-hero__content {
  position: absolute;
  bottom: 38px;
  left: 48px;
  z-index: 2;
}


body.hero-head-v2 .product-hero__content { bottom: 64px; }

.product-hero__content .product-hero__title {
  position: static;
}





body.hero-head-v2 .product-hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 10px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}
body.hero-head-v2 .product-hero__eyebrow span { opacity: 0.55; padding: 0 3px; }



body.hero-head-v2 .product-hero__content .hero-subtitle {
  display: block;
  max-width: 62ch;
  margin-top: 14px;
}



body.hero-head-v2 .nav-stack + .product-feature,
body.hero-head-v2 .family-jumpbar + .product-feature,
body.hero-head-v2 .nav-stack + .product-data,
body.hero-head-v2 .nav-stack + .product-specs-table { padding-top: 40px; }

@media (max-width: 900px) {
  .product-hero__content { bottom: 48px; left: 24px; }
  body.hero-head-v2 .product-hero__content { bottom: 56px; }
}




.product-downloads--cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}

.product-download-card {
  display: flex;
  flex-direction: column;
  width: 180px;
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: var(--black);
}

.product-download-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.product-download-card__thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 210 / 297;
  object-fit: cover;
  background: #f5f5f5;
  border-bottom: 1px solid var(--gray-light);
}

.product-download-card__title {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 12px 14px 4px;
  line-height: 1.3;
}

.product-download-card__action {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: #666;
  padding: 0 14px 12px;
}

@media (max-width: 900px) {
  .product-downloads--cards {
    gap: 16px;
  }
  .product-download-card {
    width: 140px;
  }
}



.product-feature__image::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 60px rgba(0,0,0,0.15);
  pointer-events: none;
  border-radius: 2px;
}

.product-feature__image {
  position: relative;
}


a.ref-line {
  display: block;
  text-decoration: none;
  color: #666;
  padding: 4px 8px;
  margin: 0 -8px;
  border-radius: 4px;
  transition: background 0.15s ease, color 0.15s ease;
  cursor: pointer;
}

a.ref-line:hover {
  background: rgba(0,0,0,0.04);
  color: #333;
}

a.ref-line em {
  color: inherit;
}


.feature-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}
.feature-link:hover {
  color: #8bad00;
}
.product-feature__text h2 .feature-link::after {
  content: " →";
  font-size: 0.7em;
  opacity: 0;
  transition: opacity 0.2s ease;
  color: #8bad00;
}
.product-feature:hover .feature-link::after {
  opacity: 1;
}


.product-feature .feature-extended { display: none; }


.cell-brochure {
  padding: 24px 0;
  border-top: 1px solid #eee;
  margin-top: 32px;
}
.cell-brochure__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: #1a1a1a;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s;
}
.cell-brochure__link:hover {
  background: #333;
}
.cell-brochure__icon {
  flex-shrink: 0;
}



.product-feature__image img[src*="ms2-63c1"] {
  object-fit: contain;
}


.product-hero__badge-link {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 5;
  display: inline-block;
  line-height: 0;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.product-hero__badge-link:hover {
  transform: scale(1.05);
  opacity: 0.95;
}
.product-hero__badge-link .product-hero__badge {
  position: static;
}


.product-quotes__cite-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.product-quotes__cite-link:hover {
  color: #000;
  border-bottom-color: #B0D237;
}


@media (max-width: 768px) {
  .product-feature__text table { display: block; overflow-x: auto; max-width: 100%; }




  .product-feature__text { min-width: 0; align-self: stretch; }
}

.product-specs-table {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 24px;
}
.product-specs-table__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 2rem;
  text-transform: uppercase;
}
.product-specs-table__body {


  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.product-specs-table__body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.product-specs-table__body th,
.product-specs-table__body td {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 0.75rem 1rem;
  text-align: left;
  vertical-align: top;
}
.product-specs-table__body th {
  background: #f5f5f4;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: #555;
}
.product-specs-table__body tr:hover td {
  background: rgba(0,0,0,0.02);
}
.product-specs-table__body td:first-child {
  font-weight: 500;
}


.product-specs-table__body table:has(th:nth-child(3)) { min-width: 640px; }

.product-specs-table__body table:not(:has(th:nth-child(3))) td:first-child { width: 36%; }
@media (max-width: 768px) {
  .product-specs-table__body th,
  .product-specs-table__body td { padding: 0.5rem 0.5rem; font-size: 0.88rem; }
  .product-specs-table__body table:not(:has(th:nth-child(3))) td:first-child { width: 45%; }
}




.product-specs-table__body > p {
  margin: 0.9rem 0 0;
  padding: 0 1rem;
  max-width: 78ch;
  font-size: 0.8rem;
  line-height: 1.6;
  color: #6d6d66;
}
@media (max-width: 768px) {
  .product-specs-table__body > p { padding: 0 0.5rem; font-size: 0.76rem; }
}



.product-feature--noimg .product-feature__text,
.product-feature--noimg.product-feature--alt .product-feature__text {
  grid-column: 5 / 21;
  background: #fff;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.10);
  padding: 32px 40px;
}






.compare-similar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 40px 56px;
}
.compare-similar__title {
  font-family: var(--font-heading);
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 0 20px;
}


.compare-similar__tablewrap { overflow-x: auto; }
.compare-similar__table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
  min-width: 760px;
  font-size: 13px;
  line-height: 1.5;
}
.compare-similar__table th,
.compare-similar__table td {
  text-align: left;
  vertical-align: top;
  padding: 10px 14px;
  border-bottom: 1px solid var(--gray-light);
}
.compare-similar__table thead th.compare-similar__prop { width: 150px; }
.compare-similar__colhead {
  padding: 0 6px 12px !important;
  vertical-align: bottom;
}
.compare-similar__card {
  display: block;
  background: var(--gray-bg);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none;
  color: var(--black);
}
a.compare-similar__card:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}







.compare-similar__cardimg {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 210px;
  overflow: hidden;
  background: #fff;
}



.compare-similar__cardimg img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  padding: 10px;
  box-sizing: border-box;
  display: block;
}
.compare-similar__cardname {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 12px 4px;
  white-space: normal;
}
a.compare-similar__card .compare-similar__cardname { padding-bottom: 12px; }
.compare-similar__badge {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
  padding: 0 12px 12px;
}
.compare-similar__prop {
  font-weight: 600;
  color: rgba(0, 0, 0, 0.65);
}
.compare-similar__col--current { background: rgba(175, 209, 57, 0.10); }
.compare-similar__row--bestfor td {
  font-weight: 500;
  border-bottom: 2px solid var(--green);
}
.compare-similar__na { color: rgba(0, 0, 0, 0.25); }

@media (max-width: 720px) {
  .compare-similar { padding: 16px 20px 40px; }
}


.product-hero.product-hero--slim { height: 210px; min-height: 0; }
.product-hero--slim .product-hero__title { font-size: clamp(1.6rem, 3vw, 2.6rem); }
.product-hero--slim .product-hero__content { bottom: 26px; }









body.hero-head-v2 .product-hero {
  position: relative;
  height: auto;
  min-height: min(50vh, 470px);
  display: flex;
  align-items: flex-end;
}
body.hero-head-v2 .product-hero__image,
body.hero-head-v2 .product-hero__video,
body.hero-head-v2 .product-hero .hero-cycle__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}




body.hero-head-v2 .product-hero__content {
  position: static;
  width: 100%;
  padding: 104px 48px 60px;
  bottom: auto;
  left: auto;
}
body.hero-head-v2 .product-hero--slim { min-height: 210px; }
body.hero-head-v2 .product-hero--slim .product-hero__content { padding: 84px 48px 26px; }
@media (max-width: 900px) {
  body.hero-head-v2 .product-hero__content { padding: 88px 24px 44px; }
}
