.slider-image {
  width: 100%; /* Set the width to 100% */
  height: 200px; /* Fixed height for all images */
  object-fit: fill; /* Ensure the image covers the entire container */
  border: 1px solid #ddd; /* Optional: Add a border */
  margin-bottom: 20px; /* Gap between each image */
}

/* Add text truncation for product names */
.product-name {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  min-height: 2.8em; /* 2 lines * 1.4 line-height */
}

/* Or target the specific element */
.mx-100.text-black.font-osRegular {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  min-height: 2.8em;
}

/* Adjust container for better spacing */
.image-container {
  min-height: 380px; /* Reduce min-height slightly */
}

/* Ensure the product grid body handles text properly */
.product-grid-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.d-flex.flex-column.flex-nowrap.h-100.px-2 {
  flex-grow: 1;
}

.image-container {
  padding: 10px; /* Padding around each image */
  border: 1px solid #ddd; /* Optional: Add a border */
  text-align: center; /* Center-align content */
}

.image-text {
  margin-top: 10px;
  font-size: 14px;
}

.slick-prev:before,
.slick-next:before {
  color: black;
}
.image-container {
  position: relative;
  border-radius: 6px;
  border: 1px solid #ff9933;
  padding: 10px;
  box-sizing: border-box;
  margin: 10px;
  transition: transform 0.3s ease;
  width: 95% !important;
  /* Use fixed height instead of min-height for consistency */
  height: 400px; /* Fixed height for all containers */
  display: flex;
  flex-direction: column;
}


/* .image-container:hover {
  transform: scale(1.05); 
} */

.slider-image {
  width: 100%;
  height: 280px; 
  object-fit: cover; 
  margin-bottom: 10px;
}

.image-text {
  text-align: center;
  margin-top: 5px;
}

.heart-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.7em;
  color: white;
  cursor: pointer;
  background-color: #ff9933;
  border-radius: 50%;
  padding: 5px;
}

.shadow-lg {
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%) !important;
}
/* .slick-prev:hover, .slick-next:hover {
  color: #000;
} */
