/*=================================== URUN SLIDER =============================*/

#urunlerslider{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.frame{
  width: 350px;
  height: 350px;
}

.anaresim{
  object-fit: contain;
  border: none;
  transition: transform 0.3s ease;
}

.anaresim:hover {
  transform: scale(1.02);
}

.helper {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}
.slithumbnail{
  object-fit: cover;
  max-width: 120px;
  max-height: 70px;
  cursor: pointer;
  opacity: 0.6;
  margin: 5px;
  border: 2px solid transparent;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.slithumbnail:hover{
  opacity: 1;
  border-color: #667eea;
  transform: scale(1.05);
}

.sliactive{
  opacity: 1;
  border-color: #667eea !important;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

#slide-wrapper{
  max-width: 380px;
  display: flex;
  max-height: 100px;
  align-items: center;
}

#altslider{
  max-width: 340px;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
}

#altslider::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

#altslider::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 8px rgba(0,0,0,0.3);
}
 
#altslider::-webkit-scrollbar-thumb {
  background-color: #343A40;
  outline: 1px solid slategrey;
  border-radius: 50px;
}

#altslider::-webkit-scrollbar-thumb:hover{
    background-color: #4f4f4f;
}

.arrow{
  width: 25px;
  height: 25px;
  cursor: pointer;
  transition: .3s;
}

.arrow:hover{
  opacity: .5;
  width: 30px;
  height: 30px;
}

/*=================================== BENZER SLIDER =============================*/

#benzerslider{
  flex-wrap: wrap;
}

#benzer-altslider{
  flex-wrap: nowrap;
  overflow-x: auto;
}