#recommendations {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 100px 10px;
  font-family: 'Heebo', sans-serif;
}

#recommendations h2 {
  font-weight: 200;
  font-size: clamp(26px, 3vw, 40px);
}

.slider-container {
  width: 100%;
  max-width: 700px;
  height: 400px;
  overflow-x: hidden;      /* מאפשר גלילה אופקית */
  overflow-y: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  background: #fff;
  position: relative;
  box-sizing: border-box;
}

.slider {
  display: flex;
  flex-direction: row;    /* סליידים בשורה רגילה */
  width: 100%;    /* מאפשר שהסליידים יהיו אחד אחרי השני */
  height: 100%;
  scroll-snap-type: x mandatory; /* חווית גלילה חלקה */
}

.slide {
  flex: 0 0 100%;  
  width: 100%;      /* כל סלייד תופס את רוחב ההורה */
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;     /* מרכז אלמנטים אופקית */
  justify-content: center; /* מרכז אלמנטים אנכית */
  box-sizing: border-box;
  scroll-snap-align: start; /* למרכז את הסלייד בגלילה */
  direction: rtl;
  text-align: center;
}

.slide img {
  width: 60%;
  max-width: 100px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.slide h3 {
  margin: 10px 0;
  text-align: center;
  font-weight: 200;
}

.slide p {
  text-align: center;
  color: #555;
  font-weight: 100;
  font-size: clamp(14px, 3vw, 16px);
}