/* =========================================================
   TESTIMONIAL SLIDER - FINAL MODERN UI
========================================================= */

.wsm-testimonial-slider-module .wsm-testimonials{
  background:#f9fafb;
  padding:100px 0;
  overflow:hidden;
}

.wsm-module-testimonial-slider{
  padding:0 !important;
}

.wsm-testimonial-slider-module .wsm-container{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

/* ================= TITLE ================= */

.wsm-section-title{
  font-size:42px;
  font-weight:800;
  text-align:center;
  color:#111;
  margin-bottom:15px;
}

/* ================= DESCRIPTION ================= */

.wsm-section-description{
  text-align:center;
  max-width:700px;
  margin:0 auto 60px;
  font-size:18px;
  color:#666;
}

/* ================= SLIDER ================= */

.wsm-slider-wrapper{
  position:relative;
}

.wsm-slider-track{
  display:flex;
  gap:var(--wsm-slider-gap, 30px);
  overflow-x:auto;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  -ms-overflow-style:none;
}

.wsm-slider-track::-webkit-scrollbar{
  display:none;
}

/* Touch scroll snap (mobile) */
@media (max-width:768px){
  .wsm-slider-track{
    scroll-snap-type:x mandatory;
  }
  .wsm-slide-item{
    scroll-snap-align:start;
  }
}

/* ================= SLIDES ================= */

.wsm-slide-item{
  flex:0 0 calc(33.333% - 20px);
  max-width:calc(33.333% - 20px);
}

/* Tablet */
@media(max-width:992px){
  .wsm-slide-item{
    flex:0 0 calc(50% - 15px);
    max-width:calc(50% - 15px);
  }
}

/* Mobile */
@media(max-width:768px){
  .wsm-slide-item{
    flex:0 0 100%;
    max-width:100%;
  }
}

/* ================= CARD ================= */

.wsm-card-box{
  background:#fff;
  border-radius:20px;
  padding:30px;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
  transition:.3s;
  height:100%;

  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.wsm-card-box:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

/* ================= RATING ================= */

.wsm-testimonial-rating{
  display:flex;
  align-items:center;
  margin-bottom:20px;
}

.wsm-testimonial-rating span{
  font-size:18px;
  margin-right:3px;
}

.wsm-testimonial-rating .is-filled{
  color:#f59e0b;
}
.wsm-testimonial-rating .star svg{
  width:18px;
  height:18px;
}

.wsm-testimonial-rating .filled svg{
  fill:#f59e0b;
}

.wsm-testimonial-rating .empty svg{
  fill:#e5e7eb;
}
.wsm-testimonial-rating .is-empty{
  color:#e5e7eb;
}

/* ================= QUOTE ================= */

.wsm-slide-quote{
  font-size:16px;
  line-height:1.7;
  color:#111;
  margin-bottom:20px;
  position:relative;
  padding-left:22px;
}

.wsm-slide-quote::before{
  content:"“";
  position:absolute;
  left:0;
  top:-5px;
  font-size:30px;
  color:#e5e7eb;
}

/* ================= AUTHOR ================= */

.wsm-testimonial-author{
  margin-top:10px;
}

.wsm-testimonial-author strong{
  display:block;
  font-size:16px;
  font-weight: 600;
  color:#111;
}

.wsm-testimonial-author span{
  display:block;
  font-size:14px;
  color:#777;
}

/* ================= BUTTON ================= */

.wsm-slide-button{
  display:inline-block;
  margin-top:15px;
  padding:10px 18px;
  background:#111;
  color:#fff;
  border-radius:6px;
  text-decoration:none;
  font-size:14px;
}

.wsm-slide-button:hover{
  opacity:.9;
}

/* ================= ARROWS ================= */

.wsm-slider-nav{
  position:absolute;
  top:50%;
  left:0;
  width:100%;
  transform:translateY(-50%);
  pointer-events:none;
}

.wsm-slider-btn{
  position:absolute;
  width:44px;
  height:44px;
  border:none;
  border-radius:50%;
  background:#111;
  color:#fff;
  font-size:20px;
  cursor:pointer;
  pointer-events:auto;
  transition:.3s;
}

.wsm-slider-btn:hover{
  background:#000;
  transform:scale(1.1);
}

.wsm-slider-btn[data-dir="-1"]{
  left:10px;
}

.wsm-slider-btn[data-dir="1"]{
  right:10px;
}

/* ================= DOTS ================= */

.wsm-slider-dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:30px;
}

.wsm-slider-dot{
  width:8px;
  height:8px;
  border-radius:20px;
  background:#ccc;
  border:none;
  transition:.3s;
}

.wsm-slider-dot.active{
  width:26px;
  background:#111;
}

/* ================= MOBILE FIX ================= */

@media(max-width:768px){

  .wsm-slider-btn{
    display:none;
  }

  .wsm-testimonials{
    padding:70px 0;
  }

  .wsm-section-title{
    font-size:28px;
  }

  .wsm-section-description{
    font-size:15px;
  }
}