.productOuter {
  position: relative;
}

/* Remove default Swiper arrows */
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

/* Arrow styling */
/*.product-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  z-index: 10;
  background-size: 50% auto;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
*/



/* Prev Arrow */
.swiper-button-prev.product-nav {
  background-image: url('../images/right-arrow.png');
  transform: translateY(-50%) rotate(180deg);
  left: 10px;
}

/* Next Arrow */
.swiper-button-next.product-nav {
  background-image: url('../images/right-arrow.png');
  right: 10px;
}

/* Product card styles */
.product-card {
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  color: #fff;
}

.product-card.yellow { background-color: #ffcc00; }
.product-card.brown { background-color: #8b4513; }
.product-card.blue { background-color: #007acc; }
.product-card.orange { background-color: #ff6600; }

.product-footer {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.arrow-circle img {
  width: 20px;
}

.align-items-center {
    align-items: center !important;
}

.benefit-section .row{
  display: flex;
}
@media(max-width:500px){
   .benefit-section .row{
  display: block;
}
}


.benefit-text{
  margin: 0 0 40px;
}


/*

.swiper-button-next.product-nav {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 40px;
  height: 40px;
  background: none;
  border-radius: 50%;
 
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  cursor: pointer;
}

.swiper-button-next.product-nav, .swiper-button-prev.product-nav{
	  top: 58%;
}
.swiper-button-prev.product-nav::after, .swiper-button-next.product-nav::after {
 
    color: #fff;
}


*/

.swiper-button-prev.product-nav {
   left: 10px;  /* adjust for spacing */ background-repeat:no-repeat; background-position: 7px 11px;
}

.swiper-button-next.product-nav {
  right: 10px;   background-repeat:no-repeat; background-position: 7px 11px;
}

/* Optional: Customize default Swiper arrow icons */
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px;
  color: #000;
}



@media (max-width: 768px) {
  .swiper-button-prev.product-nav,
  .swiper-button-next.product-nav {
    display: none; /* hide on mobile if needed */
  }
}



