
  @media (max-width: 479px) {
    .hide-mobile-finsweet { display: none !important; }
  }
  
  
  
  /* === Slider Container === */
.restaurants-line {
  display: flex;
  gap: 2rem;
  padding-inline: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  cursor: grab;
}

.restaurants-line.is-dragging {
  cursor: grabbing;
}

.restaurants-line.is-dragging,
.restaurants-line.is-dragging * {
  user-select: none;
}

.restaurants-line img {
  -webkit-user-drag: none;
  user-select: none;
}

.restaurants-line > * {
  flex: 0 0 auto;
}

/* Optional Scrollbar */
.restaurants-line::-webkit-scrollbar {
  height: 6px;
}

.restaurants-line::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.2);
  border-radius: 999px;
}

  
  
