
.product-listing__section
{
    padding: 70px 0;
}
.product-listing__hero
{
    position: relative;
    background-image:url(../assets/product-listing-page/product-listing-banner/2.png) ;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    isolation: isolate;
}
.product-listing__hero > * {
    position: relative;
    z-index: 1;
}
.product-listing__header
{
    padding: 100px 0 100px;
    text-align: center;
}
.product-listing__header h1
{
    margin: 12px auto 20px;
    color: var(--lw-graphite);
    font-size: clamp(40px, 4.4vw, 56px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.025em;
    max-width: 80%;

}
.product-listing__header p
{
    max-width: 60%;
    margin: 0 auto;
}
.product_listing__product-card
{
padding: 30px 36px;
border-radius: 20px;
background: #dedede;
    background: linear-gradient(#e5e9ef, #f3f3f3);
    background: linear-gradient(rgb(243 248 255), rgb(243, 243, 243));
        background: linear-gradient(rgb(238 242 248), rgb(243, 243, 243));
display:grid;
grid-template-columns:1.2fr 0.8fr;
margin-bottom: 60px;
}
.product_listing__product-card:last-child
{
    margin-bottom: 0px;
}
.product_listing__product-card.product-card--reverse 
{
    grid-template-columns:0.8fr 1.2fr;
}
.product_listing__product-card.product-card--reverse .product_listing__product-description
{
order:2;
    margin-right: 0px;

    margin-left: 60px;
}

.product_listing__product-description
{
    margin-right: 60px;
}
.product_listing__product-title
{
        font-size: 42px;
    font-weight: 600;
    margin-bottom: 16px;
}
.product_listing__product-subtitle
{
    max-width: 70%;
     margin-bottom: 24px;
}
.key-feature-heading
{
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    
}
.key-feature-list
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin-bottom: 26px;
    padding-left:20px;
    gap: 10px;
}
.key-feature-list li
{
margin-bottom: 8px;
position:relative;
}
.key-feature-list li::before
{
    content:"";
    position:absolute;
    width:6px;
    min-width:6px;
    height:6px;
    border-radius:50%;
    background:#000;
    left:-15px;
    top:46%;
    transform:translateY(-50%);
}
.product-card-image{
    /* width:300px; */
    /* height:375px; */
    
}

figure{
    width:100%;
    /* aspect-ratio:4/5; */
    height: 100%;
    position:relative;
    display:grid;
    grid-template-rows:100%;
    cursor:pointer;
    border-radius:20px;
    overflow:hidden;
    filter:drop-shadow(0 20px 40px rgba(0,0,0,.15));
    filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0));
}

.figure img
{
position:relative;
z-index:2;
transfrom:translateX(-60px);
}
figure::before{
    content:"";
   
    position:absolute;
    inset:0;
    background:#ececec;
     background-image:url(../assets/product-listing-page/bg-product.png);
    z-index:-1;
    transform-origin:bottom;
    transition:.5s ease;
    background-size: cover;
}
/* .vision-hub-card figure::before
{
 background-image:url(../assets/product-listing-page/bg-product-image-vision-hub.png);
} */

figure img{
    /* grid-area:1/1; */
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    place-self:end center;
    transition:.5s ease;
    transform:translateY(90px);
}



figure:hover img{
    width:130%;
    height:100%;
    object-fit:contain;
     transform:translateY(0px);
}

figure:hover::before{
   
    /* transform:perspective(500px) rotateX(60deg); */
     transform:perspective(500px) rotateX(70deg);
}

figure:hover figcaption{
    transform:perspective(500px)
              translateY(100%)
              rotateX(-25deg);
}

/* ==========================================================================
   PRODUCT LISTING — RESPONSIVE (desktop ≥1200px unchanged)
   Breakpoints from 1199px downward. Uses shared .section-title sizes.
   ========================================================================== */

@media (max-width: 1199px) {
  .product-listing__header {
    padding: 80px 0;
  }

  .product-listing__header h1,
  .product-listing__header .section-title {
    max-width: 90%;
    font-size: clamp(36px, 4vw, 48px);
  }

  .product-listing__header p {
    max-width: 75%;
  }

  .product-listing__section {
    padding: 56px 0;
  }

  .product_listing__product-card,
  .product_listing__product-card.product-card--reverse {
    grid-template-columns: 1fr 1fr;
    padding: 28px;
    margin-bottom: 48px;
    gap: 24px;
  }

  .product_listing__product-description {
    margin-right: 24px;
  }

  .product_listing__product-card.product-card--reverse .product_listing__product-description {
    margin-left: 24px;
    margin-right: 0;
  }

  .product_listing__product-title {
    font-size: 36px;
  }

  .product_listing__product-subtitle {
    max-width: 100%;
  }

  .key-feature-list {
    gap: 8px 16px;
  }
}

@media (max-width: 991px) {
  .product-listing__hero {
    background-position: unset;
  }

  .product-listing__hero::before {
    position: absolute;
    content: "";
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(
      90deg,
      rgba(253, 253, 253, 0.453) 0%,
      rgba(248, 248, 248, 0.458) 30%,
      rgba(255, 255, 255, 0.303) 55%,
      rgba(249, 247, 247, 0) 75%
    );
  }

  .product-listing__header {
    padding: 64px 0 56px;
    text-align: left;
  }

  .product-listing__header h1,
  .product-listing__header .section-title {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    font-size: clamp(30px, 4vw, 40px);
    line-height: 1.15;
  }

  .product-listing__header p {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    font-size: 15px;
    line-height: 1.65;
  }

  .product-listing__section {
    padding: 48px 0;
  }

  .product_listing__product-card,
  .product_listing__product-card.product-card--reverse {
    grid-template-columns: 1fr;
    padding: 24px;
    margin-bottom: 32px;
    gap: 20px;
    border-radius: 16px;
  }

  .product_listing__product-description,
  .product_listing__product-card.product-card--reverse .product_listing__product-description {
    order: 1;
    margin-left: 0;
    margin-right: 0;
  }

  .product-card-image {
    order: 2;
  }

  .product_listing__product-title {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .product_listing__product-subtitle {
    max-width: none;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
  }

  .key-feature-heading {
    font-size: 18px;
  }

  .key-feature-list {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-bottom: 20px;
  }

  .product-card-image figure {
    min-height: 280px;
    aspect-ratio: 4 / 5;
    border-radius: 14px;
  }

  /* Disable desktop hover-offset so product image is visible on touch */
  .product-card-image figure img {
    transform: translateY(0);
    object-fit: contain;
    width: 100%;
  }

  .product-card-image figure::before {
    transform: none;
  }

  .product-card-image figure:hover img {
    width: 100%;
    transform: translateY(0);
  }

  .product-card-image figure:hover::before {
    transform: none;
  }

  .product_listing__product-description .hero__btn {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .product-listing__header {
    padding: 48px 0 40px;
  }

  .product-listing__header .systems__eyebrow {
    font-size: 12px;
    letter-spacing: 0.14em;
    margin-bottom: 14px;
  }

  .product-listing__header h1,
  .product-listing__header .section-title {
    font-size: 28px;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
  }

  .product-listing__header p {
    font-size: 15px;
  }

  .product-listing__section {
    padding: 40px 0;
  }

  .product_listing__product-card,
  .product_listing__product-card.product-card--reverse {
    padding: 20px;
    margin-bottom: 24px;
    gap: 16px;
    border-radius: 14px;
  }

  .product_listing__product-title {
    font-size: 28px;
  }

  .product_listing__product-subtitle {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .key-feature-heading {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .key-feature-list {
    font-size: 14px;
    padding-left: 18px;
    margin-bottom: 18px;
  }

  .key-feature-list li {
    margin-bottom: 6px;
  }

  .product-card-image figure {
    min-height: 240px;
    aspect-ratio: 3 / 4;
    border-radius: 12px;
  }
}

@media (max-width: 576px) {
  .product-listing__header {
    padding: 40px 0 32px;
  }

  .product-listing__header h1,
  .product-listing__header .section-title {
    font-size: 28px;
  }

  .product-listing__section {
    padding: 32px 0;
  }

  .product_listing__product-card,
  .product_listing__product-card.product-card--reverse {
    padding: 16px;
    margin-bottom: 20px;
    border-radius: 12px;
  }

  .product_listing__product-title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .product_listing__product-subtitle {
    font-size: 14px;
    line-height: 1.55;
  }

  .key-feature-heading {
    font-size: 15px;
  }

  .key-feature-list {
    font-size: 13px;
  }

  .product-card-image figure {
    min-height: 0px;
    aspect-ratio: 1/1;
  }

  .product_listing__product-description .hero__btn {
    height: 48px;
    font-size: 14px;
    padding: 0 20px;
  }
}

@media (max-width: 360px) {
  .product-listing__header h1,
  .product-listing__header .section-title {
    font-size: 26px;
  }

  .product_listing__product-title {
    font-size: 22px;
  }

  .product_listing__product-card,
  .product_listing__product-card.product-card--reverse {
    padding: 14px;
    margin-bottom: 16px;
  }


}
