
.main-launch {
  background: #006E96;
  overflow: hidden;
  position: relative;
  }

  .scroll-container::-webkit-scrollbar {
    display: none;
  }    


  .scroll-container {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    scroll-behavior: auto;
    scrollbar-width: none;
  }
  
  .scroll-container::-webkit-scrollbar {
    display: none;
  }
  
  .scroll-row {
    display: flex;
    gap: 2.1rem;
  }
  
  .item {
    flex: 0 0 150px;
    min-width: 150px;
    max-width: 150px;
    height: 170px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #e9f0f5;
    color: #000;
    text-align: center;
    border-radius: 2rem;
    padding: 10px;
    scroll-snap-align: start;
  }
  
  .item img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 1rem;
  margin-bottom: 0.5rem;
  }

  /* Pause animation on hover or touch */
  .scroll-wrapper:hover .scroll-container .scroll-row,
  .scroll-wrapper:active .scroll-container .scroll-row {
  animation-play-state: paused;
  }

  .title-section h2 {
  font-weight: 700;
  }

  .title-section p {
  font-size: 1.1rem;
  }

  .slider-container {
    position: relative;
    width: 90%;
    max-width: 800px;
    height: 400px;
    overflow: hidden;
  }

  .image {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
  }

  .image.meal {
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0s ease;
    z-index: 2;
  }

  .slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: #fff;
    border: 2px solid #fff;
    cursor: ew-resize;
    z-index: 3;
    transform: translateX(-2px);
  }

  .slider-handle::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -10px;
    right: -10px;
    cursor: ew-resize;
  }

  .drag-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15px;
    font-weight: 800;
    color: #000;
    background: rgba(255, 255, 255, 0.7);
    padding: 4px 10px;
    border-radius: 12px;
    pointer-events: none;
    white-space: nowrap;
    z-index: 9;
  }
