/* Store Testimonials (Modern UI) */

.testimonial-card{
  border: 1px solid #eee;
  border-radius: 6px; /* ✅ minimal rounding */
  background: #fff;
  padding: 16px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(17,24,39,.05);
  transition: transform .18s ease, box-shadow .18s ease;
}

.testimonial-card:hover{
  transform: scale(1.02);
  box-shadow: 0 18px 36px rgba(17,24,39,.08);
}

/* ✅ Quote icon watermark */
.testimonial-card:before{
  content: "\f6b0"; /* bootstrap icon: quote */
  font-family: "bootstrap-icons";
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 52px;
  color: rgba(17,24,39,.06);
  pointer-events: none;
}

html[dir="ltr"] .testimonial-card:before{
  left: 14px;
  right: auto;
}

.testimonial-head{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

/* ✅ Fixed avatar size */
.testimonial-avatar{
  width: 64px;
  height: 64px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  position: relative;
}

.testimonial-avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ✅ icon size fixed */
.testimonial-avatar i{
  font-size: 28px;
  color: rgba(17,24,39,.55);
}

.testimonial-meta{
  min-width: 0;
}

.testimonial-name{
  font-weight: 900;
  font-size: 15px;
  line-height: 1.2;
  margin: 0;
  color: var(--text);
}

/* ✅ golden stars */
.testimonial-stars{
  display: inline-flex;
  gap: 2px;
  margin-top: 6px;
  color: #f59e0b;
  font-size: 14px;
}

/* ✅ Body text */
.testimonial-body{
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
  min-height: 74px;
  padding-inline-end: 10px;
}

/* ✅ small divider for elegance */
.testimonial-divider{
  height: 1px;
  background: rgba(17,24,39,.06);
  margin-top: 12px;
}
