.product-img-container {
    position: relative;
    margin: 0 auto;
    max-width: 1200px; 
}

.product-img-slider-container {
    overflow: hidden;
}

.product-image-block-container {
    display: flex;
    flex-wrap: nowrap; 
    transition: transform 0.5s ease; /* Smooth sliding transition */
}

.product-image-block {
    border-radius: 20px;
    height:auto;
    background-size: cover;
    background-position: center;
    position: relative;
    flex: 0 0 32%;
    box-sizing: border-box;
    margin: 0 0.7%; 
}

.product-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 2;
    font-size: 24px;
}

.product-img-prev {
    left: 10px;
}

.product-img-next {
    right: 10px;
}

@media (max-width: 992px) {
    .product-image-block { 
        flex-basis: 49%;
    }
}

@media (max-width: 600px) {
    .product-image-block {
        flex-basis: 100%; 
        margin: 0; 
    }
}