/* REVIEWS CAROUSEL STYLES (RESPONSIVE: 3-SLIDES DESKTOP, 1-SLIDE MOBILE, RTL) */
.reviews-container { 
   width: 90%; 
   margin: 24px auto; 
   direction: rtl;
}

.reviews-carousel { 
   position: relative; 
   width: 100%;
   overflow: hidden;
}

/* Tighten track spacing so the JS math never rubber-bands mid-drag */
.reviews-track { 
   display: flex;
   gap: 0;
   transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
   will-change: transform;
   /* =============================================
      ** RTL-SAFE SLIDING **
      The JS uses translateX(%) math that assumes an LTR track.
      Keep the container RTL, but force the moving track to LTR.
      ============================================= */
   direction: ltr;
   user-select: none;
   -webkit-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
   cursor: grab;
}

.reviews-track:active {
   cursor: grabbing;
}

/* Desktop: 3 slides visible */
/* Slides keep their spacing from internal padding rather than flex gap */
.review-slide { 
   flex: 0 0 33.333%;
   min-width: 33.333%;
   padding: 0 12px;
   box-sizing: border-box;
}

/* Navigation buttons for carousel */
.reviews-nav-buttons {
   display: flex;
   justify-content: center;
   gap: 15px;
   margin-top: 25px;
   direction: ltr;
}

.reviews-nav-btn {
   background: var(--accent-color);
   color: #1a1a1a;
   border: none;
   padding: 14px 20px;
   border-radius: 10px;
   cursor: pointer;
   font-size: 20px;
   font-weight: 700;
   transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
   min-width: 55px;
   box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.reviews-nav-btn:hover {
   background: #c39d2b;
   transform: scale(1.08);
   box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.reviews-nav-btn:active {
   transform: scale(0.98);
}

.review-card { 
   background: #fff; 
   border-radius: 16px; 
   padding: 35px;
   box-shadow: 0 8px 25px rgba(0,0,0,0.06);
   height: 100%;
   display: flex;
   flex-direction: column;
   text-align: center;
   direction: ltr;
   transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
   border: 1px solid rgba(212, 175, 55, 0.1);
}

.review-card:hover {
   transform: translateY(-10px) scale(1.02);
   box-shadow: 0 15px 40px rgba(0,0,0,0.12), 0 0 0 1px rgba(212, 175, 55, 0.2);
   border-color: rgba(212, 175, 55, 0.3);
}

.review-image-wrapper { 
   margin-bottom: 20px; 
   overflow: hidden;
   border-radius: 8px;
   max-width: 100%;
   height: 180px;
   display: flex;
   align-items: center;
   justify-content: center;
}

.review-image { 
   width: 100%; 
   height: 100%;
   display: block;
   object-fit: cover;
   border-radius: 8px;
}

.review-placeholder {
   background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(26, 26, 26, 0.85));
   color: #ffffff;
   font-weight: 800;
   font-size: 28px;
   letter-spacing: 2px;
   display: flex;
   align-items: center;
   justify-content: center;
   text-transform: uppercase;
}

.review-title { 
   font-size: 18px; 
   font-weight: 600; 
   color: #333;
   margin: 12px 0 10px 0;
   line-height: 1.4;
}

.review-stars { 
   display: flex;
   justify-content: center;
   gap: 6px;
   margin: 12px 0 16px 0;
}

.star { 
   font-size: 20px; 
   color: var(--accent-color);
}

.review-text { 
   font-size: 14px;
   line-height: 1.6;
   color: #666;
   margin: 0;
   text-align: center;
   flex-grow: 1;
}

.review-author {
   margin-top: 14px;
   font-weight: 700;
   color: #333;
}

/* Navigation Dots */
.reviews-dots {
   display: flex;
   justify-content: center;
   gap: 10px;
   margin-top: 30px;
   direction: ltr;
   flex-wrap: wrap;
   padding: 10px;
   overflow: visible;
}

.review-dot {
   width: 10px;
   height: 10px;
   border-radius: 50%;
   background: #ddd;
   cursor: pointer;
   transition: all 0.3s ease;
   border: 2px solid transparent;
   flex-shrink: 0;
}

.review-dot:hover {
   background: #bbb;
   transform: scale(1.15);
}

.review-dot.active {
   background: var(--accent-color);
   transform: scale(1.25);
   box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

@media (max-width: 1024px) {
   .review-slide { 
      flex: 0 0 50%;
      min-width: 50%;
   }
}

@media (max-width: 768px) {
   .reviews-container { width: 95%; }

   .review-slide { 
      flex: 0 0 100%;
      min-width: 100%;
      padding: 0 4px;
   }
  
   .reviews-nav-btn {
      padding: 10px 14px;
      font-size: 16px;
      min-width: 45px;
   }

   .review-card { 
      padding: 20px;
   }
  
   .review-image-wrapper {
      height: 150px;
   }
  
   .review-title { 
      font-size: 16px; 
   }
  
   .star { 
      font-size: 18px; 
   }
  
   .review-text { 
      font-size: 13px; 
   }
}
/* =============================
   REVIEWS CAROUSEL STYLES
   ============================= */

/* ...styles will be moved here... */
