.section-container {
    max-width: 100%;
    margin: auto;
    padding: 20px;
    display: flex;
    align-items: center; /* Align the scroll icon vertically */
}

.product-list-container {
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden;
    white-space: nowrap;
    scrollbar-width: thin;
    scrollbar-color: #333 #ccc;
    cursor: pointer;
}

.product-list {
    display: flex;
    flex-direction: row;
}

.product-card {
    position: relative;
    flex: 0 0 auto;
    width: 350px;
    margin: 15px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 20px 20px 0 0;
    transition-duration: 0.8s;
    overflow: hidden;
}
.product-card img {
    transition-duration: 0.8s;
    overflow: hidden;
}

.product-card img:hover {
    transform: scale(1.1);
}

.new-badge {
    position: absolute;
    top: 5px;
    left: 5px;
    background-color: #ff5733;
    color: white;
    padding: 5px;
    border-radius: 3px;
    font-size: 0.8em;
}

.product-card img {
    width: 100%;
    height: auto;
}

/* Style scrollbar for Chrome, Safari, and Opera */
/* .product-list-container::-webkit-scrollbar {
    width: 5px;
    height: 5px;
} */

/* .product-list-container::-webkit-scrollbar-thumb {
    background: #333;
} */

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

/* .product-list-container::-webkit-scrollbar-track {
    background: #ccc;
} */

.scroll-icon {
    font-size: 2em;
    cursor: pointer;
    /*margin-left: 20px; /* Spacing between the container and the arrow */
}

@media screen and (max-width: 600px) {
    .product-card {
        width: 90%;
        margin: 10px;
    }
}
