.mcolumn {
    padding: 0 0.71429em;
    width: 100%;
    float: left;
    position: relative;
}
.reco-carousel-wrapper {
  position: relative;
  max-width: 100%; /* adjust width as needed */
  margin: 0 2em;
  overflow: hidden;
}

/* Carousel list */
.reco-carousel {
  display: flex;
  transition: transform 0.4s ease;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* Cards */
.reco-carousel li {
  flex: 0 0 auto;
    margin-right: 2em;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 1em;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    background: #f5f5f7;
    width: 22%;
}

/* Arrows */
.reco-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  font-size: 24px;
  padding: 8px 12px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
  user-select: none;
}

.reco-arrow-left {
  left:-2em
}

.reco-arrow-right {
  right:-2em;
}

/* Pagination dots */
.reco-dots {
  text-align: center;
  margin-top: 12px;
}

.reco-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
}

.reco-dot.active {
  background-color: #0072c6;
}

/* Card elements */
.reco-carousel li img {
  max-width: 100%;
  height: auto;
  margin-bottom: 8px;
}

.reco-title {
    font-size: 13px;
    font-weight: 700;
    color: #002f6c;
    margin: 12px 0 4px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
    min-height: calc(1.35em * 2);
}

.reco-title a {
  text-decoration: none;
  color: #000;
}

.reco-sku {
  font-size: 12px;
  color: #666;
  margin-bottom: 6px;
}

.reco-rating {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.reco-rating img {
  height: 14px;
  margin-right: 4px;
}

.reco-price {
  font-size: 16px;
  font-weight: bold;
  color: #222;
  margin-bottom: 10px;
}

.reco-add-to-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 18px;
    font-size: 13px;
    font-weight: 700;
    color: #fff !important;
    background: black;
    /* border-radius: 9999px; */
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
    margin-top: auto;
    text-align: center;
}

.reco-loader {
  display: none; /* hidden by default */
  width: 48px;
  height: 48px;
  border: 4px solid #ddd;
  border-top-color: #0072ce; /* your theme color */
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 40px auto;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}



/* ---------------------------- */
/* RESPONSIVE DESIGN */
/* ---------------------------- */

/* Tablets and smaller desktops */


/* Mobile landscape & tablets (<= 768px) */
/* @media (min-width: 480px) {
  .reco-carousel {
    gap: 16px;
  }

  .reco-carousel li {
    flex: 0 0 200px;
    width: 200px;
    margin-right: 16px;
    padding: 12px;
  }

  .reco-title {
    font-size: 12px;
  }

  .reco-price {
    font-size: 14px;
  }

  .reco-arrow {
    font-size: 20px;
    padding: 6px 10px;
  }

  .reco-arrow-left {
    left: -30px;
  }

  .reco-arrow-right {
    right: -30px;
  }
} */

/* Mobile portrait (<= 514px) */
@media (max-width: 514px) {
  
  .mcolumn {
    padding: 0 0.71429em;
    width: 100%;
    float: left;
    position: relative;
  }
  
  .reco-carousel-wrapper {
        max-width: 100%;
        padding: 1em 2em;
   }

 
  .reco-carousel {
	    display: flex;
        transition: transform 0.4s ease;
        padding: 0em;
        margin: 0em;
        list-style: none;
        gap: 0em;

	}

  .reco-carousel li {
     flex: 0 0 auto;
     margin-right: 3em;
     border: 1px solid #ccc;
     border-radius: 8px;
     padding: 1em;
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
     display: flex;
     flex-direction: column;
     align-items: center;
     font-family: Arial, Helvetica, sans-serif;
     font-weight: bold;
     background: #f5f5f7;
     width: 100%;
  }

  .reco-arrow {
    /* display: none; Hide arrows on small screens */
      position: absolute;
	  top: 50%;
	  transform: translateY(-50%);
	  background: rgba(255,255,255,0.9);
	  border: none;
	  font-size: 1em;
	  padding: 8px 12px;
	  cursor: pointer;
	  z-index: 10;
	  border-radius: 50%;
	  box-shadow: 0 0 5px rgba(0,0,0,0.3);
	  user-select: none;
  }
	.reco-arrow-left {
	    left: 1em;
	}
	.reco-arrow-right {
	    right: 1em;
	}
  .reco-dots {
    margin: 15px;;
  }

  .reco-title {
    font-size: 12px;
  }

  .reco-price {
    font-size: 13px;
  }

  .reco-add-to-cart {
    font-size: 12px;
    padding: 10px;
  }
}



/* For Tablet responsive */
@media (min-width: 515px) and (max-width: 768px) {
  
  .mcolumn {
    padding: 0 0.71429em;
    width: 100%;
    float: left;
    position: relative;
  }
  
  .reco-carousel-wrapper {
        max-width: 100%;
        padding: 1em 2em;
   }

 
  .reco-carousel {
	    display: flex;
        transition: transform 0.4s ease;
        padding: 0em;
        margin: 0em;
        list-style: none;
        gap: 0em;

	}

  .reco-carousel li {
     flex: 0 0 auto;
     margin-right: 1.5em;
     border: 1px solid #ccc;
     border-radius: 8px;
     padding: 1em;
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
     display: flex;
     flex-direction: column;
     align-items: center;
     font-family: Arial, Helvetica, sans-serif;
     font-weight: bold;
     background: #f5f5f7;
     width: 50%;
  }

  .reco-arrow {
    /* display: none; Hide arrows on small screens */
      position: absolute;
	  top: 50%;
	  transform: translateY(-50%);
	  background: rgba(255,255,255,0.9);
	  border: none;
	  font-size: 1em;
	  padding: 8px 12px;
	  cursor: pointer;
	  z-index: 10;
	  border-radius: 50%;
	  box-shadow: 0 0 5px rgba(0,0,0,0.3);
	  user-select: none;
  }
	.reco-arrow-left {
	    left: 1em;
	}
	.reco-arrow-right {
	    right: 0em;
	}
  .reco-dots {
    margin: 15px;;
  }

  .reco-title {
    font-size: 12px;
  }

  .reco-price {
    font-size: 13px;
  }

  .reco-add-to-cart {
    font-size: 12px;
    padding: 10px;
  }
  
  .reco-rating {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}

.reco-rating img {
  height: 14px;
  margin-right: 0px;
}
}


/* For 1024px */

@media (min-width: 769px) and (max-width: 1279px) {
 
	.reco-arrow-left {
	    left: 0.5em;
	}
	.reco-arrow-right {
	    right: 0.5em;
	}

}




