.unique-carousel {
  width: 100%; /* Responsive width */
  max-width: 600px; /* Max width for larger screens */
  height: 300px;
  max-height: 400px;
  overflow: hidden;
  position: relative;
  margin-bottom: 25px;
  border-radius: 25px;
}

.unique-carousel-inner {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
}

.unique-carousel-item {
  min-width: 100%;
  box-sizing: border-box;
  height: 100%;
}

.unique-carousel-item .carousel-image-panel {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 400px;
  min-height: 250px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(220, 220, 220, 0.15);
  overflow: hidden;
  border-radius: 20px;
}

.unique-carousel-item .carousel-image-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--carousel-bg, none);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: blur(22px) saturate(1.05);
  transform: scale(1);
  opacity: 0.85;
  z-index: 0;
}

.unique-carousel-item .carousel-image-panel img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

img {
  margin-top: unset;
}

.unique-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 24px;
  display: flex;
  align-items: center;
}

.unique-arrow:hover {
  background-color: rgba(255, 255, 255, 0.7) !important;
}

.unique-arrow-left {
  left: 10px;
}

.unique-arrow-right {
  right: 10px;
}

@media (max-width: 600px) {
  .unique-arrow {
    font-size: 18px; /* Smaller font size for mobile */
    padding: 8px;
  }
}

@media (min-width: 601px) {
  .unique-arrow {
    font-size: 24px; /* Larger font size for desktop */
    padding: 10px;
  }
}

.unique-carousel.review-carousel {
  height: auto;
  min-height: 200px;
}

.unique-carousel.review-carousel .unique-carousel-item {
  height: auto;
  min-height: 200px;
}

.review {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 100%;
}

.review-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.stars {
  text-align: center;
  font-size: 1.2em;
  padding-bottom: 8px;
}

.profile-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review p {
  margin: 0;
  text-align: center;
}

img {
  min-width: unset; /* Override any other width settings */
}
