/* ClaretsPT NextGTI - Product Carousel */
.claretspt-nextgti-product-carousel{
  position: relative;
  width: 100%;
}

.claretspt-nextgti-viewport{
  overflow: hidden;
  width: 100%;
}

.claretspt-nextgti-track{
  display: flex;
  will-change: transform;
  transform: translate3d(0,0,0);
  transition: transform 280ms ease;
  touch-action: pan-y;
}

.claretspt-nextgti-slide{
  box-sizing: border-box;
}

.claretspt-nextgti-product-card{
  display: block;
  text-decoration: none;
}

.claretspt-nextgti-product-image{
  width: 300px;
  height: 300px;
  max-width: 100%;
  margin: 0 auto 14px;
  border: 1px solid rgba(0,0,0,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.claretspt-nextgti-product-image img{
  width: 100%;
  height: 100%;
  object-fit: contain; /* no crop */
  object-position: center;
}

.claretspt-nextgti-product-meta{
  display: grid;
  gap: 6px;
}

.claretspt-nextgti-line{
  line-height: 1.25;
}

.claretspt-nextgti-line-producer{
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  min-height: 1.25em;
}

.claretspt-nextgti-line-title{
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  min-height: 1.25em;
}

.claretspt-nextgti-line-price{
  font-size: 13px;
  min-height: 1.25em; /* keep spacing even if blank */
}

.claretspt-nextgti-nav{
  color: rgba(0,0,0,.75);
  position: absolute;
  top: 140px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0,0,0,.18);
  background: #fff;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  user-select: none;
}

.claretspt-nextgti-nav span{
  font-size: 24px;
  line-height: 1;
}

.claretspt-nextgti-prev{ left: -14px; }
.claretspt-nextgti-next{ right: -14px; }

@media (max-width: 767px){
  .claretspt-nextgti-prev{ left: 4px; }
  .claretspt-nextgti-next{ right: 4px; }
  .claretspt-nextgti-nav{
  color: rgba(0,0,0,.75); top: 120px; }
}


.claretspt-nextgti-product-card:hover .claretspt-nextgti-product-image img{
  transform: scale(1.04);
}

/* Hover zoom-in (configurável) */
.claretspt-nextgti-product-image img{
  transition: transform var(--claretspt-zoom-duration, 220ms) ease;
}

.claretspt-nextgti-product-carousel:not(.claretspt-nextgti-zoom-off) .claretspt-nextgti-product-card:hover .claretspt-nextgti-product-image img{
  transform: scale(var(--claretspt-zoom-scale, 1.04));
}

/* Dots / paginação */
.claretspt-nextgti-dots{
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 14px;
}

.claretspt-nextgti-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.35);
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.claretspt-nextgti-dot[aria-selected="true"]{
  background: rgba(0,0,0,.65);
  border-color: rgba(0,0,0,.65);
}

/* Ensure dots are clickable above other elements */
.claretspt-nextgti-dots{
  position: relative;
  z-index: 3;
}
.claretspt-nextgti-dot{
  pointer-events: auto;
}
