  /* TEXT STYLE */
  .divider-text{
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);

  font-size: 28px;
  font-weight: 600;
  letter-spacing: 2px;

  color: #000000; /* change if needed */
  pointer-events: none;
  }


.divider-text h6{
  font-size:14px;
  letter-spacing:1px;
  white-space:nowrap;   /* 🔥 force single line */
  overflow:hidden;
  text-overflow:ellipsis;
}
          /** Feature Icon product-right */

          /* ICON STRIP */
  .feature-icons{
  display:flex;
  justify-content:space-between;
  gap:15px;
  margin:20px 0;
  flex-wrap:wrap;
  }

  .f-icon{
  flex:1;
  min-width:100px;
  text-align:center;
  padding:12px;
  border-radius:10px;
  background:#f8f8f8;
  transition:.3s;
  }

  .f-icon i{
  font-size:18px;
  margin-bottom:5px;
  display:block;
  color:#000;
  }

  .f-icon span{
  font-size:12px;
  color:#555;
  }

  .f-icon:hover{
  background:#000;
  color:#fff;
  }

  .f-icon:hover i,
  .f-icon:hover span{
  color:#fff;
  }

  /* DIVIDER */
  .divider{
  height:1px;
  background:#eee;
  margin:15px 0;
  }

  /* BUTTON STACK */
  .cta-stack{
  display:flex;
  flex-direction:column;
  gap:12px;
  }

  .big-btn{
  padding:14px;
  text-align:center;
  border-radius:8px;
  font-size:15px;
  font-weight:500;
  transition:.3s;
  }

  /* Tesla feel button */
  .btn-solid.big-btn{
  background:#000;
  color:#fff;
  }

  .btn-solid.big-btn:hover{
  background:#222;
  }

  .btn-outline-dark.big-btn{
  border:2px solid #000;
  }

  .btn-outline-dark.big-btn:hover{
  background:#000;
  color:#fff;
  }


          /**Full screen */
  .fullscreen{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.9);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
  }

  .fullscreen img{
  max-width:90%;
  max-height:90%;
  border-radius:10px;
  }

  .close-full{
  position:absolute;
  top:20px;
  right:30px;
  font-size:40px;
  color:#fff;
  cursor:pointer;
  }

  .full-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  font-size:40px;
  color:#fff;
  cursor:pointer;
  padding:10px;
  }

  .full-arrow.left{ left:30px; }
  .full-arrow.right{ right:30px; }



          /* lens */
  .zoom-lens{
  position:absolute;
  border:2px solid #000;
  width:120px;
  height:120px;
  display:none;
  pointer-events:none;
  background:rgba(255,255,255,0.2);
  z-index: 50; /* increase */
  }

  /* zoom window */
  .zoom-result{
  position:absolute;
  right:-520px;
  top:0;
  width:500px;
  height:500px;
  border-radius:12px;
  background-repeat:no-repeat;

  display:none;
  box-shadow:0 10px 30px rgba(0,0,0,0.2);
  background-color:#fff;
  z-index:60;
  }


  .product-hero .container{
  max-width: 1300px;   /* increase overall width */
  }
  /*Button animation */
  .btn-group{
  display:flex;
  gap:15px;
  margin-top:20px;
  flex-wrap:wrap;
  }

  .btn-outline-dark{
  border:2px solid #000;
  padding:10px 18px;
  border-radius:6px;
  text-decoration:none;
  color:#000;
  transition:.3s;
  }

  .btn-outline-dark:hover{
  background:#000;
  color:#fff;
  }

  /* animation */
  .fade-item{
  opacity:0;
  transform: translateY(-20px);
transition: all 1s cubic-bezier(.19,1,.22,1);
  }

  .fade-item.show{
  opacity:1;
  transform: translateY(0);
  margin-bottom: -10px;
  }

  /*thumbnail css */
  .thumbs{
  display:flex;
  gap:10px;
  margin-top:15px;
  justify-content:center;
  }

  .thumbs img{
  width:70px;
  height:60px;
  object-fit:cover;
  cursor:pointer;
  opacity:.6;
  border:2px solid transparent;
  border-radius:6px;
  transition:.3s;
  }

  .thumbs img.active{
  opacity:1;
  border:2px solid #000;
  }




  .product-hero{
  padding:30px 0;
  background:#fff;
  }

  .product-flex{
  display:flex;
  gap:50px;
  align-items: stretch;
  flex-wrap:wrap;
  }

  /* LEFT */
  .product-left{
      position: relative;
      z-index: 5;
  flex: 1.5;   /* bigger */
  min-width: 400px;
  }

  .slider-box{
  position:relative;
  overflow:visible; /* IMPORTANT */
  border-radius:12px;
  height:auto;
  aspect-ratio: 4 / 3;
  cursor:zoom-in;
  }

  .slider-viewport{
  overflow:hidden;
  width:100%;
  }

  .slider-track{
  display:flex;
  width:100%; /* add this */
  transition: transform .5s ease;
  gap:0; /* ensure no spacing */
  }

  .slide{
  min-width:100%;
  width:100%; /* 🔥 ADD THIS */
  height:auto;
  flex-shrink:0; /* VERY IMPORTANT */

      display:flex;
      align-items:center;
      justify-content:center;
  }


  .slide img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position: center; /* 🔥 important */
  transition: transform .2s ease;
  transform-origin: center;
  cursor: zoom-in;
  }

  /* arrows */
  .p-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:#000;
  color:#fff;
  border:none;
  width:40px;
  height:40px;
  border-radius:50%;
  cursor:pointer;
  z-index:2;
  }

  .p-arrow.left{ left:10px; }
  .p-arrow.right{ right:10px; }

  /* RIGHT */
  .product-right{
  flex: 1;     /* smaller */
  min-width: 300px;
  display:flex;
  flex-direction:column;
  gap:16px;
  position: relative;
  z-index: 1;

  /* CARD STYLE 🔥 */
  background: #fff;
  padding: 30px;
  border-radius: 16px;

  /* soft shadow */
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);

  /* subtle border (premium feel) */
  border: 1px solid rgba(0,0,0,0.05);

  /* smooth hover */
  transition: all .3s ease;
  }

  .product-right:hover{
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  }


  /* delays */
  .delay-1{ transition-delay: .2s; }
  .delay-2{ transition-delay: .4s; }
  .delay-3{ transition-delay: .6s; }
  .delay-4{ transition-delay: .8s; }
  .delay-5{ transition-delay: 1s; }
  .delay-6{ transition-delay: 1.2s; }

  .product-right h2{
  font-size:32px;
  margin-bottom:5px;
  }

  .product-right .sub{
  font-size:16px;
  color:#888;
  margin-bottom:10px;
  }

  .product-right .desc{
  font-size:14px;
  line-height:1.7;
  color:#555;

  }
      

  /* MOBILE CSS*/

  @media(max-width:992px){

.product-flex{
  flex-direction:column;
  gap:30px;
}

.product-left,
.product-right{
  min-width:100%;
  flex:unset;
}

.product-right{
  padding:20px;
}

}

@media(max-width:768px){

.slider-box{
  aspect-ratio: 1 / 1;
}

}

@media(max-width:768px){

.zoom-lens,
.zoom-result{
  display:none !important;
}

}



@media(max-width:768px){

.feature-icons{
  justify-content:center;
}

.f-icon{
  flex:0 0 45%;
}

}

/*SPEC TABLE*/

@media(max-width:768px){

.spec-table .row{
  flex-direction:column;
  align-items:flex-start;
  gap:4px;
  padding:12px;
}

.spec-table b{
  font-size:14px;
}

}

/*Fix TABS*/
@media(max-width:768px){

.flagship-tabs{
  overflow-x:auto;
  white-space:nowrap;
  gap:10px;
  padding-bottom:10px;
}

.f-tab{
  flex:0 0 auto;
  font-size:13px;
  padding:8px 14px;
}

}

/*Fix GRID SYSTEMS*/

@media(max-width:768px){

.spec-grid{
  grid-template-columns:1fr;
}

.soft-grid{
  grid-template-columns:1fr;
}

.feature-grid{
  grid-template-columns:1fr;
}

}


/*Fix BUTTON STACK*/


@media(max-width:768px){

.cta-stack a{
  width:100%;
}

}

@media(max-width:768px){

.product-left,
.product-right{
  min-width:100% !important;
}

}

/* mobile tweak */
@media(max-width:768px){
  .divider-text h6{
    font-size:11px;
    letter-spacing:0.5px;
    padding:0 10px;
    margin-top:-10px;
  }
}