@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}

.slidermotor {
  background: white;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 960px;
}

.slidermotor::before,
.slidermotor::after {
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  content: "";
  height: 100px;
  position: absolute;
  width: 200px;
  z-index: 2;
}

.slidermotor::before {
  left: 0;
  top: 0;
}

.slidermotor::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.slidermotor .slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
}

.slidermotor .slidemotor {
  height: 100px;
  width: 250px;
}

.btn-bg-image {
  background-image: url("images/trendyol.jpg"); /* kendi resim yolunuzu girin */
  background-size: cover;
  background-position: center;
  color: white;
  border: none;
  padding: 12px 24px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

/* Opsiyonel: Hover efekti */
.btn-bg-image:hover {
  opacity: 0.9;
}