.product-swiper-container {
  width: 100%;
  padding: 2rem 0;
  position: relative; /* Make the container relative for absolute positioning of nav buttons */
}

.b-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
}

.imgBox {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.imgBox img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.product-name {
  color: #000000;
  font-weight: bold;
}

.p-button-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
}

/* Remove hover effect */
.product-swiper-container .swiper-slide img {
  opacity: 1;
  transition: none;
  filter: none;
}

.product-swiper-container .swiper-slide1 img:hover {
  opacity: 1;
  filter: none;
}

.prod-btn:hover {
  background-color: transparent;
}


/* Navigation buttons styling */
.swiper-button-next, .swiper-button-prev {
  color: #ffffff; /* Change this color to match your design */
  position: absolute;
  bottom: -200px; /* Adjust to position the buttons further down */
  z-index: 10;
  width: auto; /* Ensure buttons have no default width */
  height: auto; /* Ensure buttons have no default height */
}

.swiper-button-next {
  right: 610px; /* Adjust this value to position the button closer */
}

.swiper-button-prev {
  left: 610px; /* Adjust this value to position the button closer */
}