/* ===================================================
   ROSE EVENTS — Testimonials Widget
   =================================================== */
.testimonials-section { padding: 6rem 0; background: linear-gradient(to bottom, var(--secondary), var(--white)); overflow: hidden; }
.testimonials-slider { position: relative; max-width: 72rem; margin: 0 auto; }
.testimonials-track-wrapper { overflow: hidden; padding: 2rem 0; }
.testimonials-track { display: flex; transition: transform 600ms ease; }
.testimonial-card { flex: 0 0 100%; padding: 0 1rem; }
@media (min-width: 768px) { .testimonial-card { flex: 0 0 50%; } }
@media (min-width: 1024px) { .testimonial-card { flex: 0 0 33.333%; } }
.testimonial-card-inner { background: var(--white); border-radius: 16px; padding: 2rem; box-shadow: 0 8px 30px rgba(0,0,0,0.05); border: 1px solid rgba(155,44,79,0.08); transition: all 500ms; height: 100%; display: flex; flex-direction: column; }
.testimonial-card-inner:hover { box-shadow: 0 12px 48px rgba(0,0,0,0.06); transform: translateY(-4px); }
.testimonial-quote { color: var(--accent); opacity: 0.3; margin-bottom: 1rem; }
.testimonial-quote svg { width: 2rem; height: 2rem; }
.testimonial-text { font-family: "cam"; text-align: justify; font-size: 1.3rem; color: var(--text-medium); line-height: 1.7; font-style: italic; flex: 1; margin-bottom: 1.5rem; }
.testimonial-stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.testimonial-stars svg { width: 16px; height: 16px; fill: #D4AF37; color: #D4AF37; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; padding-top: 1rem; border-top: 1px solid var(--gray-100); }
.testimonial-avatar { width: 3rem; height: 3rem; border-radius: 50%; overflow: hidden; border: 2px solid rgba(155,44,79,0.2); flex-shrink: 0; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-family: var(--font-serif); font-size: 1rem; color: var(--text-dark); font-weight: 600; }
.testimonial-role { font-size: 0.75rem; color: var(--gray-500); letter-spacing: 0.5px; }
/* Slider controls */
.testimonial-controls { display: flex; justify-content: center; gap: 1rem; margin-top: 2rem; }
.testimonial-btn { width: 3rem; height: 3rem; border-radius: 50%; border: 1px solid rgba(155,44,79,0.3); background: var(--white); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 300ms; color: var(--accent); }
.testimonial-btn:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }
.testimonial-btn svg { width: 20px; height: 20px; }