.ms-auto {
  display: flex;
  align-items: center;
}

.carousel-img {
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
}

.carousel-img {
  height: 450px; /* Set your desired height */
  -o-object-fit: cover;
     object-fit: cover; /* Ensures the image covers the space without distortion */
}

/* card css in index page */
.card-img-container {
  position: relative;
}

.price-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: #ffc107;
  /* Golden color */
  color: #000;
  font-weight: bold;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.ms-auto {
  display: flex;
  align-items: center;
}

/* Wrapper to manage layout structure */
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}