/* ================================= */
/*     FULL WIDTH TESTIMONIAL CSS    */
/* ================================= */

/* كسر الكونتينر */
.custom-testimonial-wrapper{
  width:100vw;
  max-width:100vw;
  margin-right:calc(-50vw + 50%);
  padding:0;
}

/* السكشن */
.testimonial-sec{
  padding:100px 20px;
  background:#f5f3f0;
  text-align:center;
  overflow:hidden;
  font-family:Arial,sans-serif;
  direction:rtl;
}

.testimonial-container{
  max-width:900px;
  margin:0 auto;
  position:relative;
  min-height:380px;
}

.testimonial-slide{
  position:absolute;
  width:100%;
  opacity:0;
  animation:fade 12s infinite;
}

.testimonial-slide:nth-child(1){animation-delay:0s;}
.testimonial-slide:nth-child(2){animation-delay:4s;}
.testimonial-slide:nth-child(3){animation-delay:8s;}

@keyframes fade{
  0%{opacity:0;transform:translateX(50px);}
  8%{opacity:1;transform:translateX(0);}
  30%{opacity:1;transform:translateX(0);}
  38%{opacity:0;transform:translateX(-50px);}
  100%{opacity:0;transform:translateX(-50px);}
}

.testimonial-quote{
  font-size:80px;
  color:#d4a574;
  line-height:1;
  margin-bottom:40px;
  font-family:Georgia,serif;
}

.testimonial-text{
  font-size:20px;
  font-weight:400;
  color:#333;
  line-height:1.9;
  margin-bottom:45px;
  max-width:800px;
  margin-left:auto;
  margin-right:auto;
}

.testimonial-author{
  margin-top:25px;
}

.testimonial-name{
  font-size:22px;
  font-weight:700;
  color:#1a1a1a;
  margin-bottom:5px;
}

.testimonial-position{
  font-size:15px;
  color:#666;
  margin-bottom:20px;
}

.testimonial-dots{
  display:flex;
  justify-content:center;
  gap:12px;
  margin-top:30px;
}

.dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#ccc;
  transition:all 0.3s ease;
}

.dot.active{
  width:30px;
  border-radius:5px;
  background:#d4a574;
}

/* Responsive */
@media(max-width:768px){
  .testimonial-sec{padding:80px 25px;}
  .testimonial-container{min-height:350px;}
  .testimonial-quote{font-size:70px;margin-bottom:35px;}
  .testimonial-text{font-size:18px;line-height:1.8;margin-bottom:40px;}
}

@media(max-width:600px){
  .testimonial-sec{padding:70px 20px;}
  .testimonial-container{min-height:320px;}
  .testimonial-quote{font-size:60px;margin-bottom:30px;}
  .testimonial-text{font-size:17px;}
}

@media(max-width:480px){
  .testimonial-sec{padding:60px 18px;}
  .testimonial-quote{font-size:55px;margin-bottom:28px;}
  .testimonial-text{font-size:16px;}
}

/* اخفاء من صفحة المنتج */
body[class*="product"] .custom-testimonial-wrapper{
  display:none !important;
}