
/* .swiper-container {
    position: relative;
  } */


  



/* Ensure slides are displayed properly */
/* .swiper-slide {
display: flex;
justify-content: center;
width: auto !important; 
flex-shrink: 0;
} */

/* Optional: Adjust card width within the slide */
/* .swiper-slide .product-card { */
/* width: 100%;  */
/* } */


.product-card {
  flex: none;
  width: 100%;
  max-width: none;
  border: none;
}

.swiper-container {
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  
  .swiper-slide {
    text-align: center;
    font-size: 18px;
    /* background: #fff; */
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .swiper-button-next, .swiper-button-prev {
    color: #000;
  }
  
  @media (max-width: 991px) {
    .swiper-button-next, .swiper-button-prev {
      display: none;
    }
  }


/* Style for pagination dots */
.swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #007bff;
}
    
/* Position the pagination dots at the bottom center */
.swiper-pagination{
    position: relative;
    margin-top: 30px;
}