.categorySection {
    min-width: 80px;
    height: 80px;
    margin: 5px;
    padding: 5px;
}

.categorySection img {
    border-radius: 50%;
    width: 90%;
    height: 90%;
    object-fit: cover;
}

.categorySection .title {
    font-size: 1rem;
}

/* new */
.category-row {
    overflow-x: auto;
    /* Enables horizontal scrolling */
    white-space: nowrap;
    /* Prevents items from wrapping */
    display: flex;
    /* Flexbox ensures items align horizontally */
    padding-bottom: 15px;
    /* Space for touch scroll */
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling for touch devices */
}

/* Hide scrollbar for WebKit browsers (Chrome, Safari) */
.category-row::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for Firefox */
.category-row {
    scrollbar-width: none;
    /* Completely hides the scrollbar */
}

/* Adjustments for each item */
.categorySection {
    flex: 0 0 auto;
    /* Prevent items from shrinking */
    text-align: center;
    margin-right: 1rem;
    /* Adds spacing between items */
}

.category_image {
    max-width: 80px;
    /* Limit image size */
    height: auto;
    border-radius: 5px;
    /* Optional: rounded corners */
}

.title {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    color: var(--bs-primary);
    /* Optional: text color */
}
.product_name{
    /* //enable when modal code done */
    /* text-decoration: underline; */
    color: var(--bs-primary);
}