.tea-review-slider {
  max-width: 600px;
  margin: auto;
  position: relative;
  font-family: 'Georgia', serif;
  background: #F1F0F0;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid #9DB34A;
}

.review-card {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: fade 0.8s ease;
}

.review-card.active {
  display: flex;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.review-header img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #9DB34A;
  box-shadow: 0 0 10px rgba(157, 179, 74, 0.5);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.review-header img:hover {
  transform: scale(1.05);
}

.review-header h4 {
  margin: 0;
  color: #27360B;
  font-size: 1.1rem;
  font-family: 'Arial', sans-serif;
}

.review-text {
  font-size: 1.2rem;
  color: #030303;
  font-style: italic;
  line-height: 1.8;
  margin-top: 0.5rem;
}

.starsreview {
  display: flex;
  gap: 3px;
  margin-top: 0.2rem;
}

.starsreview i {
  color: #FFD700;
  font-style: normal;
  font-size: 1rem;
}

.review-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.review-nav button {
  background: #9DB34A;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  font-size: 1.4rem;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.review-nav button:hover {
  background: #7A963B;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 600px) {
  .tea-review-slider {
    padding: 1.5rem;
  }

  .review-text {
    font-size: 1rem;
  }

  .review-header img {
    width: 60px;
    height: 60px;
  }
}

/* Lightbox Overlay Fixes */
.lightbox-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.lightbox-overlay img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 10px;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.lightbox-overlay.active {
  display: flex;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}