/* Treatment testimonials — compact "Guest comments" style */

.tt-section{
  margin-top: 22px;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.tt-head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 12px;
}

.tt-title{
  margin:0;
  font-size: 14px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(0,0,0,.70);
  display:flex;
  align-items:center;
  gap: 10px;
}

.tt-title:before{
  content:"★";
  font-size: 14px;
  line-height: 1;
  color: rgba(0,0,0,.65);
}

.tt-kicker{
  color: rgba(0,0,0,.45);
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 45%;
}

.tt-track{
  display:flex;
  gap: 14px;
  overflow-x: auto;
  padding: 0 2px 2px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge legacy */
}

/* Hide scrollbars (we still allow swipe/trackpad scrolling) */
.tt-track::-webkit-scrollbar{ display:none; }
.tt-wrap{
  position: relative;
}

.tt-dots{
  display:flex;
  gap: 8px;
  justify-content:center;
  align-items:center;
  margin-top: 10px;
}

.tt-dot{
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: 0;
  background: rgba(0,0,0,.18);
  padding: 0;
  cursor: pointer;
}

.tt-dot.is-active{
  background: rgba(0,0,0,.45);
}

.tt-card{
  scroll-snap-align: start;
  min-width: 100%;
  max-width: 100%;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  border-radius: 18px;
  padding: 18px 18px 14px;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
  position: relative;
}

.tt-card:before{
  content:"";
  position:absolute;
  left: 16px;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 999px;
  background: rgba(30, 109, 96, .85); /* subtle brand green */
}

.tt-quote{
  margin: 0 0 12px;
  padding-left: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(0,0,0,.80);
}

.tt-footer{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-left: 16px;
  border-top: 1px solid rgba(0,0,0,.06);
  padding-top: 10px;
}

.tt-name{
  color: rgba(0,0,0,.62);
  font-weight: 600;
  font-size: 13px;
}

.tt-stars{
  display:flex;
  gap: 2px;
  font-size: 14px;
  line-height: 1;
}

.tt-star.is-on{ color: rgba(0,0,0,.55); }
.tt-star.is-off{ color: rgba(0,0,0,.18); }



/* Request a testimonial */
.tt-request{
  margin-top: 14px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.10);
  background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,255,255,0.80));
  box-shadow: 0 10px 26px rgba(0,0,0,.05);
}

.tt-request__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 16px;
}

.tt-request__title{
  margin: 0 0 4px;
  font-size: 16px;
}

.tt-request__text{
  margin: 0;
  color: rgba(0,0,0,.58);
  font-size: 13px;
  line-height: 1.6;
  max-width: 72ch;
}

.tt-request__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(126,104,170,0.92);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

/* Mobile */
@media (max-width: 700px){
  .tt-head{ flex-direction: column; align-items: flex-start; }
  .tt-kicker{ max-width: 100%; }
  .tt-card{ min-width: 100%; max-width: 100%; }
  .tt-nav{ display:none; }
  .tt-request__inner{ flex-direction: column; align-items: stretch; }
  .tt-request__cta{ width: 100%; }
}