.featured-products-container button.prev_arrow,
.featured-products-container button.next_arrow {
  display: block !important;
  position: absolute;
  top: -46px;
  right: 30px;
  z-index: 99;
  border: 0;
  background: inherit;
  font-size: 15px;
  color: #6b6b6a;
}

.featured-products-container button:hover {
  color: #a8741a;
}

.featured-products-container button.next_arrow {
  right: 13px;
}

.product-card {
  background-color: #f6f5f5;
  border: 1px solid #ddd;
  /* border-radius: 10px; */
  overflow: hidden;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  margin: 0 10px; 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: #000;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.product-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.product-card .card-body {
  padding: 15px;
  border-top: 1px solid #e7e6e6;
}

.product-card .card-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.product-card .card-text {
  font-size: 1rem;
  font-weight: bold;
  color: #333;
}

.add-to-cart {
  display: inline-block;
  width: 100%;
  text-align: center;
  background-color: #010f1e;
  outline: none;
  border: none;
  color: white;
  padding: 5px 0;
  border-radius: 5px;
}

.add-to-cart:hover {
  background-color: #232528;
}

/* Styling for Prev and Next buttons */

.slider-featured-products .slick-prev,
.slider-featured-products .slick-next {
  background-color: #010f1e;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  position: absolute;
  top: 0;
  /* transform: translateY(-50%); */
}

.slick-prev {
  right: 20px;
}

.slick-next {
  right: 0;
}


@media (width <= 500px)  {


    .product-card {
        margin: 0 5px; 
    }
    
    .product-card img {
        height: 150px;
    }
    
    .product-card .card-body {
        padding: 10px;
    }
    
    .product-card .card-title {
        font-size: 1rem;
    }
    
    .product-card .card-text {
        font-size: 0.9rem;
    }
    
}

.slick-track {
  margin-left: 0;
}