.product-container {
    width: 100%;
    overflow-x: auto;
    padding: 20px 0;
      /* show grab hand */
}
.product-container:active {
    cursor: grabbing; 
  }
.trending-products-sroll-button-box{
    /* background-color: red; */
    position: relative;
}

.product-list {
    display: flex;
    gap: 20px;
    padding: 10px;
    cursor: grab; 
}

.productCard {
    flex: 0 0 250px;
    /* border: 1px solid #e2e2e2; */
    border-radius: 8px;
    padding: 15px;
    max-width: 240px;
    cursor: pointer;
    transition: transform 0.2s;
    /* background: rgb(137, 15, 15); */
    /* background-color: black; */
    text-decoration: none;
    color: inherit;
    /* max-height: 300px; */
    /* height: 300px; */
    
}

.productCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 200px;
    height: 250px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-code {
    color: #666;
    font-size: 14px;
}

/* For WebKit browsers (Chrome, Safari) */
.product-container::-webkit-scrollbar {
    height: 8px;
}

.product-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.product-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.product-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}


#trending-products-container{
    background-color: var(--steelblue-1);
    padding-top: 5px;
    position: relative;
}