#gallery {
    display: flex;
    flex-direction: column;
    padding: 100px 0px;
    gap: 50px;
  }

  #galleryHeader {
    text-align: center;
    font-family: 'Heebo', sans-serif;
    font-weight: 700;
    font-size: clamp(24px, 3vw, 30px);
  }
  
  #galleryWrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
  }

  .gallery-track {
    display: flex;
    gap: 20px;
    padding: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* פיירפוקס */
    -ms-overflow-style: none; /* IE */
  }
  .gallery-track::-webkit-scrollbar {
    display: none; /* כרום/ספארי */
  }

  .gallery-item {
    min-width: 300px;
    height: 400px;
    background: #f4f4f4;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
    flex-shrink: 0;
    background-image: linear-gradient(to top, rgb(225, 225, 225), rgb(249, 249, 249));
  }

  .gallery-title {
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: 'Heebo', sans-serif;
    font-weight: 400;
  }

  .images {
    display: flex;
    gap: 10px;
    justify-content: center;
  }

  .images img {
    width: 130px;
    height: auto;
    border-radius: 5px;
    object-fit: cover;
  }

  .arrow-gallery {
    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;
  }