#recommendations {
  padding: 40px 20px;
  text-align: center;
  position: relative;
  background-image: linear-gradient(to top, white ,rgb(255, 247, 219) );
}

#recommendations h2 {
  font-family: 'Assistant', sans-serif;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
}

.reviews-wrapper {
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE */
}

.reviews-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.reviews-scroll {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  box-sizing: border-box;
  padding-right: 20px;
  margin-right: -20px;
}

.review {
  flex: 0 0 300px;
  border-radius: 10px;
  padding: 20px;
  text-align: right;
  box-sizing: border-box;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
  background-image: linear-gradient(to right, rgb(255, 245, 200), rgb(255, 238, 183));
}

@media (max-width: 1300px) {
    .review {
         flex: 0 0 250px;
     }
   }

.review h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #333;
  font-family: 'Assistant', sans-serif;
  font-weight: 700;
}

.review p {
  font-size: 16px;
  color: #555;
  line-height: 1.4;
  font-family: 'Assistant', sans-serif;
  font-weight: 400;
}

/* חיצים */
.arrow-reco {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  background: rgba(255,255,255,0.8);
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  z-index: 10;
  user-select: none;
  display: none;
}

.arrow-left { left: 10px; }
.arrow-right { right: 10px; }

/* הצגת חיצים במסכים צרים */
@media (max-width: 1024px) {
  .arrow-reco { display: block; }
}

@media (max-width: 1024px) {
  .reviews-scroll {
    justify-content: flex-start;
    margin: 0;
    padding-right: 20px;
    margin-right: -20px;
  }
}