﻿.horizontal-scroll {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 1rem;
    padding: 1rem 0;
    -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
    scroll-behavior: smooth;
}

  /*  .horizontal-scroll::-webkit-scrollbar {
        height: 6px;
    }*/

.scroll-item {
    flex: 0 0 auto;
    display: flex; 
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 128px; /* adjust if needed */
}

    .scroll-item img {
        width: 120px;
        height: 140px;
        object-fit: cover;
        border-radius: 10px;
    }

.item-name {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    word-wrap: break-word;
    color:black;
}
