.scroll-container-wrapper {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    position: relative;
}

.scroll-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    white-space: nowrap;
    width: 100%;
    padding: 10px 0;
    
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.scroll-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.scroll-product-card {
    flex: 0 0 auto;
    width: 250px;
    margin: 0 7px;
    text-decoration: none;
    color: black;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    
    background: white;
}



.scroll-product-card img {
    width: 100%;
    border-radius: 8px;
    
}
.scroll-container::-webkit-scrollbar {
            height: 8px;
        }
.scr-container {
    width: 80%;
    margin: 0 auto; /* Center the container */
    border: 1px solid #ddd; /* Light gray border */
    border-radius: 8px; /* Optional: Rounded corners */
    padding: 15px; /* Add some spacing inside */
    background-color: #fff; /* Optional: Background color */
}
.scroll-btn {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    padding: 0 4px;
    cursor: pointer;
    font-size: 24px;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background, 0.3s ease-in-out;
}

.scroll-btn:hover {
    background: rgba(255, 255, 255, 1);
}

.scroll-btn-left {
    left: -70px;
}

.scroll-btn-right {
    right: -70px;
}

/* Hide scroll buttons on small screens */
@media (max-width: 767.98px) {
    .scroll-container-wrapper {
        flex-direction: column;
        justify-content: center;
        padding: 0 0;
        align-items: stretch;
        width: 75%;
    }
    .scr-container{
        
        width: 90%;
    }
    .scroll-product-card{        
        width: 95%;
    }
    .scroll-btn-left {
        left: -46px;
    }
    
    .scroll-btn-right {
        right: -46px;
    }
  
}

@media (min-width: 992px) {
    .ml-lg-65 {
      margin-left: 65px;
    }
  }