.swiper {
    width: 100%;
   /* height: 100%;*/
   overflow: visible;
  }
.swiper-wrapper
{
  height: auto;
}
  .swiper-slide {
    font-size: 18px;
    /*background: #fff;*/
    justify-content: center;
    align-items: center;
    /*border: 1px solid #ccc;*/
    height: 100%;
  }
  .swiper-slide img {
    display: block;
    width: 100%;
    margin: 0 auto;
  }
.product-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distribute content to use available space */
    flex-grow: 1; /* Ensure the product details fill up the space between the top content and the button */
   
}
.swiper-button-next, .swiper-button-prev
{
  color: #fff;
  font-size: 25px !important;
  background-color: #ff548f;
  border-radius: 100%;
  width: 50px;
  height: 50px;
}
.swiper-button-next:after, .swiper-button-prev:after
{
  font-size: 15px !important;
}
/**/
.swiper-button-prev,
.swiper-button-next {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-prev {
  left: 10px;
}

.swiper-button-next {
  right: 10px;
}

.text-end {
    text-align: right !important;
    right: -80px;
    position: relative;
    top: 20px;
}

