/** Shopify CDN: Minification failed

Line 47:21 Unexpected "{"
Line 47:30 Expected ":"
Line 47:37 Unexpected "{"

**/


.testimonial-header {
  text-align: center;
  margin-bottom: 40px;
}

.testimonial-main-title {
  font-size: 45px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
}

.testimonial-overall-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.stars-gold {
  color: #facc15;
  font-size: 18px;
  letter-spacing: 2px;
}

.rating-subtext {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

/* Swiper Slider Styling */
.testimonial-slider-wrapper {
  position: relative;
}

.testimonial-swiper-{{ section.id }} {
  padding-bottom: 10px;
}

.testimonial-card {
  background-color: #FDFBF4;
  border-radius: 24px;
  padding: 36px 30px 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%; /* Added */
  box-sizing: border-box;
}

.swiper-slide {
  height: auto !important;
  display: flex !important; /* Added */
}

.card-stars {
  color: #facc15;
  font-size: 16px;
  margin-bottom: 20px;
}

.card-heading {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

/* 3. Quote content area ko expandable banane ke liye (Flex grow) */
.card-quote {
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
  font-style: italic;
  margin: 0 0 24px 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1; /* Added: Yeh content area ko push karega taaki footer hamesha bottom par align rahe */
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 20px;
  gap: 12px;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.author-avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #e5e7eb;
}

.author-details {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}

.author-subtitle {
  font-size: 11px;
  text-transform: uppercase;
  color: #9ca3af;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.badge-tag {
  background-color: #f3e8ff;
  color: #a855f7;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

/* Custom Swiper Buttons */
.testimonial-navigation {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.nav-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  color: #111827;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  user-select: none;
}

.nav-arrow:hover {
  background-color: #111827;
  color: #ffffff;
  border-color: #111827;
}

.nav-arrow.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .testimonial-main-title {
    font-size: 28px;
  }
  .card-quote {
        -webkit-line-clamp: 5;
  }
}