.review-carousel {
  width: 90%;
  margin: 20px auto;
}

.review-item {
  text-align: center;
  padding: 20px;
  border: 1px solid #ddd;
  margin: 10px;
  display: flex;
  flex-direction: column;
}

.review-carousel-container .review-item .product-image {
  max-width: 150px;
  height: auto;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.review-item h3 {
  margin-bottom: 5px;
}

.review-carousel-container .review-item .rc-star-rating {
  /* Namespace the star-rating class */
  color: #ff9800;
  margin-bottom: 10px;
}

.review-item .review-content {
  margin-bottom: 10px;
  cursor: pointer;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-item .reviewer-name {
  font-style: italic;
  margin-top: auto;
}

.slick-dots li button:before {
  font-size: 12px;
}

.slick-prev:before,
.slick-next:before {
  color: black;
}

@media (max-width: 768px) {
  .review-item {
    margin: 0;
  }
}

.review-lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.review-lightbox-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  position: relative;
  z-index: 10000;
}

.review-lightbox-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.review-lightbox-close:hover,
.review-lightbox-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}