.testimonial-slider{
  overflow: hidden;
  max-width: 1000px;
  margin: auto;
  position: relative;
}

.testimonial-track{
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.testimonial-card{
  flex: 0 0 calc(33.333% - 14px); /* Show 3 cards */
  background: var(--card);
  padding: 22px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid rgba(198,162,90,0.12);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

.testimonial-top{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.avatar{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.quote{
  color: var(--muted);
  font-style: italic;
  line-height: 1.6;
}

/* Controls */
.slider-controls{
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.slider-controls button{
  width: 45px;
  height: 45px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: 0.3s;
}

.slider-controls button:hover{
  opacity: 0.9;
  transform: scale(1.05);
}

/* Tablet */
@media (max-width: 768px){
  .testimonial-card{
    flex: 0 0 calc(50% - 10px); /* 2 cards */
  }
}

/* Mobile */
@media (max-width: 576px){
  .testimonial-card{
    flex: 0 0 100%; /* 1 card */
  }
}