/* Smart-Tekk Product Slider — Glass/Frost + Blue/Orange Accent */

.stps-wrap{
  --stps-blue: #005a99;
  --stps-orange: #ff7c36;
  --stps-glass: rgba(255,255,255,0.58);
  --stps-shadow: 0 10px 30px rgba(0,0,0,0.08);
  position: relative;
  width: 100%;
  margin: 10px 0 26px;
}

.stps-head{ display:flex; align-items:center; justify-content:space-between; margin: 0 0 10px; }
.stps-title{ margin: 0; font-size: 18px; font-weight: 800; letter-spacing: .2px; color: rgba(0,0,0,0.80); }

.stps-track{
  display: flex !important;
  gap: 14px;
  overflow-x: auto;
  padding: 12px 52px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;

  background: rgba(255,255,255,0.14);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(10px);
}

.stps-track::-webkit-scrollbar{ height: 10px; }
.stps-track::-webkit-scrollbar-thumb{
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0,90,153,.35), rgba(255,124,54,.35));
}
.stps-track::-webkit-scrollbar-track{
  background: rgba(255,255,255,0.20);
  border-radius: 999px;
}

.stps-item{
  flex: 0 0 auto;
  scroll-snap-align: start;
  text-decoration: none !important;
  color: inherit;
  width: 230px;
  outline: none;
}

.stps-card{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--stps-glass);
  border: 1px solid rgba(255,255,255,0.40);
  box-shadow: var(--stps-shadow);
  backdrop-filter: blur(12px);
  transition: transform .18s ease, box-shadow .18s ease;
}

.stps-card::before{
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0,90,153,.55), rgba(255,124,54,.50));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: .9;
}

.stps-item:hover .stps-card{
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.12);
}

.stps-imgbox{
  background: rgba(255,255,255,0.35);
  border-bottom: 1px solid rgba(255,255,255,0.35);
}
.stps-img{
  width: 100%;
  height: 185px;
  object-fit: contain;
  display:block;
  padding: 12px;
}

.stps-meta{ padding: 10px 12px 12px; }

.stps-text{
  font-size: 12px;
  line-height: 1.25;
  font-weight: 700;
  opacity: 0.88;
  text-align: center;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 30px;
}

.stps-price{
  margin-top: 6px;
  font-size: 12px;
  text-align: center;
  opacity: 0.95;
  color: rgba(0,0,0,0.80);
}
.stps-price ins{ text-decoration: none; font-weight: 800; color: rgba(0,0,0,0.86); }
.stps-price del{ opacity: .55; margin-right: 6px; }
.stps-item.is-sale .stps-price ins{ color: var(--stps-orange); }

.stps-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.62);
  backdrop-filter: blur(10px);
  cursor: pointer;
  z-index: 5;
  font-size: 24px;
  line-height: 1;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.10);
  transition: transform .12s ease, opacity .12s ease;
}
.stps-nav:hover{ transform: translateY(-50%) scale(1.03); }
.stps-prev{ left: 8px; }
.stps-next{ right: 8px; }
.stps-nav[disabled]{ opacity: 0.35; cursor: default; }

@media (max-width: 900px){
  .stps-item{ width: 195px; }
  .stps-img{ height: 165px; }
}
@media (max-width: 600px){
  .stps-track{ padding: 12px 44px; }
  .stps-item{ width: 165px; }
  .stps-img{ height: 145px; }
  .stps-title{ font-size: 16px; }
}
