/* CAROUSEL TÉMOIGNAGES HORIZONTAL AUTO-SCROLL */

.testimonials {
  overflow: hidden !important;
  position: relative;
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.testimonials-container {
  position: relative;
  width: 100%;
  overflow: hidden !important;
  margin-top: 40px;
  display: block !important;
}

.testimonials-track {
  display: flex !important;
  gap: 30px;
  animation: scroll-left 60s linear infinite;
  width: fit-content;
  flex-wrap: nowrap !important;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* CARD TÉMOIGNAGE */
.testimonial-card {
  flex: 0 0 400px;
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.testimonial-stars {
  color: #f4c430;
  font-size: 24px;
  margin-bottom: 16px;
  letter-spacing: 4px;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  color: #2d3748;
  font-size: 16px;
}

.testimonial-role {
  color: #718096;
  font-size: 14px;
  margin-top: 4px;
}

.testimonial-tags {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.testimonial-tag {
  background: #e6f7ff;
  color: #0066cc;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonial-tag.drainage {
  background: #f0f9ff;
  color: #0284c7;
}

.testimonial-tag.sportif {
  background: #fef3c7;
  color: #d97706;
}

.testimonial-tag.grossesse {
  background: #fce7f3;
  color: #be185d;
}

.testimonial-tag.nourrisson {
  background: #f0fdf4;
  color: #16a34a;
}

/* GRADIENTS LATÉRAUX */
.testimonials-container::before,
.testimonials-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.testimonials-container::before {
  left: 0;
  background: linear-gradient(to right, #f8f9fa, transparent);
}

.testimonials-container::after {
  right: 0;
  background: linear-gradient(to left, #f8f9fa, transparent);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 320px;
    padding: 24px;
    min-height: 240px;
  }

  .testimonials-track {
    gap: 20px;
  }

  .testimonial-card p {
    font-size: 14px;
  }
}
