/* ========================================
   Product Page Styles
   Apple-inspired, using Amodo design system
   ======================================== */

/* Hero Section */
.product-hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 4rem;
  background: transparent;
}

@media (min-width: 992px) {
  .product-hero {
    padding: 8rem 0 6rem;
  }
}

.product-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-content {
  max-width: 680px;
  margin-bottom: 3rem;
}

.hero-eyebrow {
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondColor);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.hero-title-light {
  font-weight: 300;
  color: var(--para);
}

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--para);
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
}

.hero-image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(121, 188, 186, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.hero-image {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 1.5rem;
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Product Buttons */
.product-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8125rem;
  letter-spacing: 0.03em;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.product-buy-cta {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.product-buy-price {
  margin: 0;
  padding: 0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--dark);
}

@media (max-width: 991px) {
  .product-buy-cta {
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: nowrap;
  }

  .product-buy-cta .product-buy-price {
    order: -1;
  }
}

.product-btn-primary {
  background: var(--dark);
  color: #fff;
}

.product-btn-primary:hover {
  background: var(--secondColor);
  color: #fff;
  transform: translateY(-1px);
}

.product-btn-primary svg path {
  stroke: #fff;
}

.product-btn-secondary {
  background: transparent;
  color: var(--dark);
  border: 1px solid rgba(62, 78, 77, 0.2);
}

.product-btn-secondary:hover {
  border-color: var(--secondColor);
  color: var(--secondColor);
  transform: translateY(-1px);
}

/* Features Grid */
.product-features {
  background: transparent;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (min-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.feature-item {
  padding: 2rem;
  border-radius: 1rem;
  background: rgba(252, 249, 237, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
}

.feature-item:hover {
  background: rgba(252, 249, 237, 0.8);
  border-color: rgba(121, 188, 186, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.product-showcase-page .feature-item {
  transition: none;
}

.product-showcase-page .feature-item:hover {
  background: rgba(252, 249, 237, 0.5);
  border-color: rgba(0, 0, 0, 0.04);
  box-shadow: none;
  transform: none;
}

.product-showcase-page .feature-item {
  padding: 1.5rem;
}

.product-showcase-page .feature-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.625rem;
}

.product-showcase-page .feature-item .feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35em;
  height: 1.35em;
  margin-bottom: 0;
  flex-shrink: 0;
  transform: translateY(-0.06em);
}

.product-showcase-page .feature-item .feature-icon svg {
  display: block;
  width: 1.15em;
  height: 1.15em;
}

.product-showcase-page .feature-title {
  margin-bottom: 0;
  font-size: 1.125rem;
  line-height: 1.35;
}

.feature-number {
  font-size: 0.75rem;
  color: var(--secondColor);
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--para);
  margin-bottom: 0;
}

/* Showcase Image */
.product-showcase {
  padding: 2rem 0;
}

@media (min-width: 992px) {
  .product-showcase {
    padding: 4rem 0;
  }
}

.showcase-wrapper {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 21 / 9;
}

.showcase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Deep Dive */
.product-deep-dive {
  background: transparent;
}

.deep-dive-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.deep-dive-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.deep-dive-header p {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--para);
}

.deep-dive-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 5rem;
}

@media (min-width: 768px) {
  .deep-dive-row {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.deep-dive-row:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .deep-dive-row-reverse .deep-dive-text {
    order: 2;
  }
  .deep-dive-row-reverse .deep-dive-image {
    order: 1;
  }
}

.deep-dive-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--firstColor);
  margin-bottom: 0.75rem;
}

.deep-dive-text h3 {
  font-size: 1.75rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  color: var(--dark);
}

.deep-dive-text p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--para);
}

.deep-dive-image .imgbox {
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: rgba(62, 78, 77, 0.05);
}

.deep-dive-image .imgbox img {
  transition: transform 0.6s ease;
}

.deep-dive-row:hover .deep-dive-image .imgbox img {
  transform: scale(1.03);
}

/* Specs Section */
.product-specs {
  background: transparent;
}

.specs-header {
  margin-bottom: 3rem;
}

.specs-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
  color: var(--dark);
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  .specs-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .specs-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.spec-group {
  padding: 1.5rem 1.5rem 1.5rem 0;
  border-top: 2px solid var(--secondColor);
}

@media (min-width: 768px) {
  .spec-group {
    padding: 1.5rem;
  }
}

.spec-group-title {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondColor);
  margin-bottom: 1.5rem;
  padding-bottom: 0;
  border-bottom: none;
}

.spec-list {
  margin: 0;
  padding: 0;
}

.spec-row {
  display: flex;
  flex-direction: column;
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(62, 78, 77, 0.1);
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-row dt {
  font-size: 0.8125rem;
  color: var(--para);
  font-weight: 400;
  margin-bottom: 0.125rem;
}

.spec-row dd {
  font-size: 1rem;
  color: var(--dark);
  margin: 0;
  font-weight: 500;
}

/* Gallery Strip */
.product-gallery {
  padding: 3rem 0;
}

@media (min-width: 992px) {
  .product-gallery {
    padding: 5rem 0;
  }
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .gallery-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: rgba(62, 78, 77, 0.05);
}

.gallery-item img {
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* CTA Section */
.product-cta {
  background: transparent;
}

.cta-box {
  background: linear-gradient(135deg, rgba(121, 188, 186, 0.08) 0%, rgba(252, 249, 237, 0.5) 100%);
  border: 1px solid rgba(121, 188, 186, 0.15);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
}

@media (min-width: 992px) {
  .cta-box {
    padding: 4rem 3.5rem;
  }
}

.cta-box h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  color: var(--dark);
}

.cta-box p {
  color: var(--para);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Scrollbar for product page */
.product-page {
  scroll-behavior: smooth;
}

/* Entrance animations - only for hero content */
@media (prefers-reduced-motion: no-preference) {
  .hero-content {
    animation: fadeInUp 0.8s ease forwards;
  }

  .hero-image-wrapper {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
  }

  .feature-item {
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease, border-color 0.4s ease;
  }
}

.hero-intro {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--para);
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.hero-offers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
  max-width: 920px;
  margin: 0 auto 3rem;
}

@media (min-width: 768px) {
  .hero-offers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.hero-offer-card {
  padding: 2rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(62, 78, 77, 0.12);
  background: rgba(252, 249, 237, 0.72);
  text-align: left;
}

.hero-offer-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondColor);
  margin-bottom: 0.75rem;
}

.hero-offer-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.hero-offer-desc,
.hero-offer-price {
  color: var(--para);
  margin-bottom: 1rem;
}

.hero-offer-price {
  font-weight: 600;
  color: var(--dark);
}

.hero-highlight-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
  max-width: 960px;
  margin: 3rem auto 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

@media (min-width: 768px) {
  .hero-highlight-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.hero-highlight-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.hero-highlight-desc {
  margin: 0;
  color: var(--para);
  line-height: 1.6;
}

.product-code,
.product-adapters,
.product-stories,
.product-purchase {
  background: transparent;
}

.code-demo-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 992px) {
  .code-demo-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.code-demo-copy h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.code-demo-copy p {
  color: var(--para);
  line-height: 1.7;
  margin-bottom: 0;
}

.code-demo-terminal {
  padding: 1.5rem;
  border-radius: 1rem;
  background: #1f2423;
  color: #f4f1e8;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.code-demo-command {
  margin-bottom: 1rem;
  color: #9fd6d4;
}

.code-demo-lines {
  list-style: none;
  margin: 0;
  padding: 0;
}

.code-demo-lines li {
  padding: 0.35rem 0;
  color: rgba(244, 241, 232, 0.82);
}

.adapters-header,
.purchase-copy {
  max-width: 720px;
}

.adapters-header {
  margin-bottom: 2.5rem;
}

.adapters-header h2,
.purchase-copy h2 {
  margin-bottom: 1rem;
}

.adapters-header p,
.purchase-copy p {
  color: var(--para);
  line-height: 1.7;
}

.purchase-note {
  margin-top: 1rem;
  margin-bottom: 0;
}

.purchase-copy > .product-buy-cta,
.purchase-copy > .product-btn {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.adapters-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 992px) {
  .adapters-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.adapter-card {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(62, 78, 77, 0.12);
  background: rgba(252, 249, 237, 0.72);
}

.adapter-card-image {
  aspect-ratio: 4 / 3;
  background: rgba(62, 78, 77, 0.05);
}

.adapter-card-body {
  padding: 1.75rem;
}

.adapter-card-body h3 {
  margin-bottom: 0.75rem;
}

.adapter-card-body p,
.adapter-card-body li {
  color: var(--para);
  line-height: 1.6;
}

.adapter-card-body ul {
  padding-left: 1.1rem;
  margin: 1rem 0;
}

.adapter-card-price {
  font-weight: 600;
  color: var(--dark);
}

.story-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 4rem;
}

.story-row:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .story-row {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .story-row-reverse .story-copy {
    order: 2;
  }

  .story-row-reverse .story-image {
    order: 1;
  }
}

.story-copy h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.story-copy p {
  color: var(--para);
  line-height: 1.7;
  margin-bottom: 0;
}

.story-image .imgbox {
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: rgba(62, 78, 77, 0.05);
}

.purchase-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(121, 188, 186, 0.15);
  background: linear-gradient(135deg, rgba(121, 188, 186, 0.08) 0%, rgba(252, 249, 237, 0.5) 100%);
}

@media (min-width: 992px) {
  .purchase-box {
    grid-template-columns: 1.1fr 0.9fr;
    padding: 3rem;
  }
}

.purchase-image {
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: rgba(62, 78, 77, 0.05);
}

.product-showcase-page .product-hero .container {
  max-width: 1120px;
}

.product-showcase-page .pd-hero-splash {
  position: relative;
  overflow: visible;
  z-index: 0;
}

.product-showcase-page .pd-hero-splash.section-gap {
  /* Space below breadcrumbs comes from .breadcrumb-menu margin-bottom (matches container pt-4). */
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
}

/* Bleed-to-top splash treatment — mirrors /eit-test composition. When the
   product has a heroSplashImage, the body gets `product-splash-hero`. The
   splash photo then fills the body-inner panel from its very top edge,
   with the existing cream-textured nav pill sitting on top of the bleed
   (kept intact — unlike /eit-test, which goes pill-less), and the
   per-page breadcrumb hidden (matches /eit-test, which has no breadcrumb
   on its hero either). */
.product-splash-hero .body-inner {
  /* Let the body-inner panel's rounded corners clip the bleeding photo —
     same trick as /eit-test. `clip` (vs `hidden`) doesn't create a new
     scroll container, so any sticky descendants still behave correctly. */
  overflow: clip;
}

.product-splash-hero .header {
  /* Keep the nav (with its original cream-textured pill backdrop) clickable
     and visually intact above the upward-bleeding hero photo. */
  position: relative;
  z-index: 10;
}

.product-splash-hero .pd-hero-splash + section,
.product-splash-hero .breadcrumb-menu,
.product-splash-hero > .body-inner > .container.pt-4:has(.breadcrumb-menu) {
  /* No breadcrumb on splash pages — matches /eit-test composition. */
  display: none;
}

@media (min-width: 992px) {
  /* Extend the backdrop image alone upward so the photo bleeds to the very
     top of the body-inner panel while the hero TEXT column stays anchored
     below the nav. Negative `top` pulls the picture under the (now
     transparent) header; the height bump keeps the bottom edge where it
     was relative to the text. Chained body classes beat the later
     `.product-showcase-page .pd-hero-splash-backdrop { ... height: ... }`
     rule on specificity. Object-position shifts the source image up so
     the device sits in the upper-middle of the bleed, visible above the
     nav pill — otherwise the upper portion is empty tabletop and the
     bleed reads as plain cream against the page background. */
  .product-showcase-page.product-splash-hero .pd-hero-splash-backdrop {
    top: -125px;
    height: clamp(640px, 80vh, 820px);
  }
  .product-showcase-page.product-splash-hero .pd-hero-splash-photo {
    object-position: 35% 35%;
  }
}

@media (max-width: 991.98px) {
  .product-showcase-page.product-splash-hero .pd-hero-splash-backdrop {
    top: -105px;
  }
}

.product-showcase-page .pd-hero-splash-backdrop {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: auto;
  /* Shorter band = splash photo takes less space on the page */
  height: 54%;
  overflow: hidden;
  pointer-events: none;
}

.product-showcase-page .pd-hero-splash-photo {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 20%;
  display: block;
  /* Hold full opacity through the device (which sits roughly 30–88% of
     the source height) so the "amodo EIT Hardware" labeled face stays
     readable. Just soften the bottom edge into the page. */
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 78%,
    rgba(0, 0, 0, 0.85) 88%,
    rgba(0, 0, 0, 0.45) 95%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 78%,
    rgba(0, 0, 0, 0.85) 88%,
    rgba(0, 0, 0, 0.45) 95%,
    transparent 100%
  );
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.product-showcase-page .pd-hero-splash-container {
  position: relative;
  z-index: 1;
}

.product-showcase-page .pd-hero-splash-grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: auto;
  align-items: start;
}

@media (min-width: 992px) {
  .product-showcase-page .pd-hero-splash-grid {
    grid-template-columns: minmax(0, 62%) minmax(280px, 38%);
  }
}

.product-showcase-page .pd-hero-splash-spacer {
  display: none;
}

@media (min-width: 992px) {
  .product-showcase-page .pd-hero-splash-spacer {
    display: block;
  }
}

.product-showcase-page .pd-hero-actions {
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.product-showcase-page .pd-hero-specs-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.25rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--para);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.product-showcase-page .pd-hero-specs-link:hover {
  color: var(--dark);
}

.product-showcase-page .pd-hero-splash .pd-hero-content {
  padding: clamp(1.4rem, 3.5vw, 2.8rem) 0 0;
  max-width: 36rem;
}

.product-showcase-page .pd-hero-splash .product-features-splash {
  position: relative;
  z-index: 1;
  padding-top: clamp(3.25rem, 6.5vw, 4.75rem);
  background: transparent;
}

@media (min-width: 992px) {
  .product-showcase-page .pd-hero-splash-container {
    display: flex;
    flex-direction: column;
  }

  .product-showcase-page .pd-hero-splash-grid {
    order: 1;
  }

  .product-showcase-page .pd-hero-splash .product-features-splash {
    order: 2;
  }

  .product-showcase-page .product-showcase-videos--in-splash {
    order: 3;
  }
}

.product-showcase-page .pd-hero-desc {
  margin-bottom: 1rem;
}

.product-showcase-page .pd-hero-splash .pd-hero-desc {
  max-width: none;
}

.product-showcase-page .pd-hero-tagline {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
}

.product-showcase-page .product-showcase-videos--in-splash {
  margin-top: 1.75rem;
}

@media (min-width: 768px) {
  .product-showcase-page .product-showcase-videos--in-splash {
    margin-top: 3rem;
  }
}

@media (min-width: 992px) {
  .product-showcase-page .product-showcase-videos--in-splash {
    margin-top: 6.25rem;
  }

  /* Splash backdrop fills the hero band edge-to-edge. The source image is
     a pre-extended canvas (tabletop photographically stretched around the
     device) so object-fit:cover with object-position:35% center sits the
     device in the left third and lets the tabletop extend across the
     remaining width — mirrors the /eit-test hero composition. Height is
     tuned to the hero text column so the backdrop ends cleanly above the
     feature-cards band instead of bleeding underneath them. */
  .product-showcase-page .pd-hero-splash-backdrop {
    height: clamp(440px, 56vh, 600px);
  }

  .product-showcase-page .pd-hero-splash-photo {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: none;
    object-fit: cover;
    object-position: 35% center;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

@media (max-width: 991px) {
  .product-showcase-page .pd-hero-splash-backdrop {
    position: absolute;
    bottom: auto;
    height: 23.4%;
    overflow: hidden;
  }

  .product-showcase-page .pd-hero-splash-photo {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: none;
    object-position: 20% 0%;
  }

  .product-showcase-page .pd-hero-splash-grid {
    min-height: auto;
    align-items: start;
  }

  .product-showcase-page .pd-hero-splash .pd-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.4rem 0 0;
  }

  .product-showcase-page .pd-hero-splash .pd-hero-category {
    order: 1;
  }

  .product-showcase-page .pd-hero-splash .pd-hero-title {
    order: 2;
    margin-bottom: clamp(10.65rem, 41.4vh, 18.4rem);
  }

  .product-showcase-page .pd-hero-splash .pd-hero-tagline {
    order: 3;
    margin-bottom: 0.5rem;
  }

  .product-showcase-page .pd-hero-splash .pd-hero-desc {
    order: 4;
    margin-top: 0;
    margin-bottom: 1rem;
  }

  .product-showcase-page .pd-hero-splash .pd-hero-actions {
    order: 5;
    margin-bottom: 0;
  }

  .product-showcase-page .pd-hero-splash .product-features-splash {
    padding-top: 2rem;
  }

  .product-showcase-page .product-showcase-videos--in-splash {
    padding-bottom: 0.75rem;
  }
}

.features-grid-six {
  grid-template-columns: 1fr;
}

.feature-item .feature-icon {
  display: block;
  width: 28px;
  height: 28px;
  margin-bottom: 1.25rem;
  color: var(--secondColor);
}

@media (min-width: 768px) {
  .features-grid-six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .features-grid-six {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.gallery-strip-stack {
  grid-template-columns: 1fr;
}

.product-showcase-video-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}

.product-showcase-video-media {
  width: 100%;
  aspect-ratio: 720 / 793;
  overflow: hidden;
  border-radius: 12px;
  background: transparent;
}

.product-showcase-video-player {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border: none;
  background: transparent;
}

.product-showcase-video-caption {
  text-align: center;
  font-size: 0.95rem;
  color: #666;
  margin: 0.75rem 0 0;
}

.product-intro-featured {
  background: transparent;
}

.product-intro-featured-shell {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  background-image: url(../media/images/bodybg.jpg);
  background-repeat: repeat;
  background-color: rgba(252, 249, 237, 0.55);
}

.product-intro-featured-inner {
  max-width: 1240px;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.25rem, 4vw, 3rem);
}

.product-intro-featured-inner p {
  margin: 0 0 1.25rem;
  font-size: clamp(1.0625rem, 1.35vw, 1.1875rem);
  line-height: 1.8;
  color: var(--para);
}

.product-intro-featured-inner p:last-child {
  margin-bottom: 0;
}

.product-prose {
  background: transparent;
}

.product-prose-copy {
  max-width: 760px;
  margin: 0 auto;
}

.product-prose-copy h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.product-prose-copy p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--para);
  margin-bottom: 1.25rem;
}

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

.product-figure {
  margin: 2rem 0;
}

.product-figure img {
  width: 100%;
  border-radius: 1rem;
  background: transparent;
}

.product-figure figcaption {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--para);
  text-align: center;
}

.product-disclaimer {
  background: transparent;
}

.product-showcase-page .product-showcase-videos.section-gap {
  padding-bottom: 1.5rem;
}

.product-showcase-page .product-showcase-videos.section-gap + .product-intro-featured.section-gap,
.product-showcase-page .pd-hero-splash.section-gap + .product-intro-featured.section-gap {
  padding-top: 1.5rem;
}

.product-showcase-page .product-intro-featured.section-gap:has(+ .product-prose.section-gap) {
  padding-bottom: 1.5rem;
}

.product-showcase-page .product-intro-featured.section-gap + .product-prose.section-gap {
  padding-top: 1.5rem;
}

.product-prose.section-gap:has(+ .product-device-overview.section-gap) {
  padding-bottom: 1.25rem;
}

.product-prose.section-gap + .product-device-overview.section-gap {
  padding-top: 1.25rem;
}

.product-device-overview.section-gap:has(+ .product-disclaimer.section-gap) {
  padding-bottom: 1rem;
}

.product-device-overview.section-gap + .product-disclaimer.section-gap {
  padding-top: 1rem;
}

.product-disclaimer.section-gap:has(+ .product-purchase.section-gap) {
  padding-bottom: 1.25rem;
}

.product-disclaimer.section-gap + .product-purchase.section-gap {
  padding-top: 1.25rem;
}

@media (min-width: 768px) {
  .product-showcase-page .product-showcase-videos.section-gap {
    padding-bottom: 2.25rem;
  }

  .product-showcase-page .product-showcase-videos.section-gap + .product-intro-featured.section-gap,
  .product-showcase-page .pd-hero-splash.section-gap + .product-intro-featured.section-gap {
    padding-top: 2.25rem;
  }

  .product-showcase-page .product-intro-featured.section-gap:has(+ .product-prose.section-gap) {
    padding-bottom: 2.25rem;
  }

  .product-showcase-page .product-intro-featured.section-gap + .product-prose.section-gap {
    padding-top: 2.25rem;
  }

  .product-prose.section-gap:has(+ .product-device-overview.section-gap) {
    padding-bottom: 1.75rem;
  }

  .product-prose.section-gap + .product-device-overview.section-gap {
    padding-top: 1.75rem;
  }

  .product-device-overview.section-gap:has(+ .product-disclaimer.section-gap) {
    padding-bottom: 1.5rem;
  }

  .product-device-overview.section-gap + .product-disclaimer.section-gap {
    padding-top: 1.5rem;
  }

  .product-disclaimer.section-gap:has(+ .product-purchase.section-gap) {
    padding-bottom: 2rem;
  }

  .product-disclaimer.section-gap + .product-purchase.section-gap {
    padding-top: 2rem;
  }
}

@media (min-width: 992px) {
  .product-showcase-page .product-showcase-videos.section-gap {
    padding-bottom: 4rem;
  }

  .product-showcase-page .product-showcase-videos.section-gap + .product-intro-featured.section-gap,
  .product-showcase-page .pd-hero-splash.section-gap + .product-intro-featured.section-gap {
    padding-top: 4rem;
  }

  .product-showcase-page .product-intro-featured.section-gap:has(+ .product-prose.section-gap) {
    padding-bottom: 4rem;
  }

  .product-showcase-page .product-intro-featured.section-gap + .product-prose.section-gap {
    padding-top: 4rem;
  }

  .product-prose.section-gap:has(+ .product-device-overview.section-gap) {
    padding-bottom: 2.5rem;
  }

  .product-prose.section-gap + .product-device-overview.section-gap {
    padding-top: 2.5rem;
  }

  .product-device-overview.section-gap:has(+ .product-disclaimer.section-gap) {
    padding-bottom: 2rem;
  }

  .product-device-overview.section-gap + .product-disclaimer.section-gap {
    padding-top: 2rem;
  }

  .product-disclaimer.section-gap:has(+ .product-purchase.section-gap) {
    padding-bottom: 8rem;
  }

  .product-disclaimer.section-gap + .product-purchase.section-gap {
    padding-top: 2.5rem;
  }
}

.product-disclaimer-box {
  max-width: 760px;
  margin: 0 auto;
  padding: 0.25rem 0;
}

.product-disclaimer-title {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--para);
  margin-bottom: 0.75rem;
}

.product-disclaimer-box p:last-child {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--para);
  font-style: italic;
}

.product-device-overview {
  background: transparent;
}

.product-specs-table-wrap {
  overflow-x: auto;
  border-radius: 0.75rem;
}

.product-specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  border: 1px solid rgba(62, 78, 77, 0.16);
  background: rgba(252, 249, 237, 0.45);
}

.product-specs-table th,
.product-specs-table td {
  border: 1px solid rgba(62, 78, 77, 0.12);
  padding: 0.75rem 1rem;
  vertical-align: top;
  text-align: left;
}

.product-specs-table th.product-specs-category {
  background: rgba(62, 78, 77, 0.14);
  border: 1px solid rgba(62, 78, 77, 0.18);
  padding: 0.9rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--dark) 88%, white);
}

.product-specs-table tbody th[scope="row"] {
  width: 34%;
  color: color-mix(in srgb, var(--dark) 88%, white);
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  background: rgba(252, 249, 237, 0.7);
}

.product-specs-table tbody td.product-specs-detail {
  color: var(--dark);
  font-weight: 500;
  line-height: 1.6;
}

.product-specs-table tbody td.product-specs-detail strong {
  font-weight: 700;
}
