.reviews-carousel-container {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 60px 0;
  position: relative;
}

.reviews-carousel-container::before,
.reviews-carousel-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 10;
  pointer-events: none;
}

.reviews-carousel-container::before {
  left: 0;
  background: linear-gradient(90deg, rgba(26, 26, 26, 0.8) 0%, transparent 100%);
}

.reviews-carousel-container::after {
  right: 0;
  background: linear-gradient(270deg, rgba(26, 26, 26, 0.8) 0%, transparent 100%);
}

.reviews-track {
  display: flex;
  gap: 30px;
  padding: 0 20px;
  will-change: transform;
  cursor: grab;
  user-select: none;
}

.reviews-track.dragging {
  cursor: grabbing;
}

.review-card {
  flex: 0 0 auto;
  width: 400px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
  border-color: rgba(255, 0, 0, 0.3);
}

.review-header {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  color: white;
  flex-shrink: 0;
}

.review-info {
  flex: 1;
}

.reviewer-name {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
  color: white;
}

.rating {
  display: flex;
  gap: 4px;
  margin-bottom: 4px;
}

.star {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.3);
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

.star.filled {
  color: #ffd700;
  text-shadow: 0 0 4px rgba(255, 215, 0, 0.5);
}

.review-date {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.review-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 15px;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .review-card {
    width: 280px;
    padding: 20px;
  }
  
  .reviews-carousel-container {
    padding: 40px 0;
  }
  
  /* Schatten komplett entfernen auf Mobile */
  .reviews-carousel-container::before,
  .reviews-carousel-container::after {
    display: none;
  }
  
  .review-text {
    font-size: 14px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .reviewer-name {
    font-size: 16px;
  }
  
  .review-avatar {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}
