.carousel-item img {
    border-top-left-radius: 12px;
  border-top-right-radius: 12px;
    height: 300px; /* Or any height you prefer */
    object-fit: cover;
  }
  .product-round{
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }

  
  .new-product-heading {
  color: white;
  text-align: center;
  padding: 12px 24px;
  border-radius: 8px;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 1.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background 1s ease, transform 1s ease;
  display: inline-block;
}





.circle-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgb(255, 255, 255);
  color: #3bc7ff;
  font-size: 1.5rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.circle-more-btn::after {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 10%, transparent 70%);
  top: -50%;
  left: -50%;
  transform: scale(0);
  transition: transform 0.4s ease;
}

.circle-more-btn:hover::after {
  transform: scale(1);
}

.circle-more-btn:hover {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #a85238, #4CAF50);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}


@media (max-width: 576px) {
  .carousel-item img {
    height: 180px;
  }
}