/* ===================== OPINIE — carousel with arrows + dots ===================== */
.bc-testimonials-section { background: var(--bc-white) !important; padding: clamp(40px, 5vw, 70px) 0 !important; }
.bc-testimonials-section .bc-section-heading {
  font-size: clamp(20px, 1.8vw, 26px) !important; color: var(--bc-dark-light) !important;
}
.bc-testimonials-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.bc-testimonials-wrapper {
  display: flex; align-items: center; gap: clamp(12px, 1.2vw, 18px);
  margin-top: clamp(20px, 2.5vw, 36px); position: relative;
}
.bc-carousel-arrow {
  flex-shrink: 0; width: clamp(40px, 4vw, 56px); height: clamp(40px, 4vw, 56px);
  border-radius: 50%; border: 1px solid var(--bc-brown);
  background: transparent; cursor: pointer; padding: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.bc-carousel-arrow:hover { background: var(--bc-brown); }
.bc-carousel-arrow:hover svg { stroke: var(--bc-cream); }
.bc-carousel-arrow svg { width: 20px; height: 20px; stroke: var(--bc-brown); fill: none; stroke-width: 2; }
.bc-carousel-arrow img { width: 60%; height: 60%; object-fit: contain; }
.bc-testimonials-cards {
  display: flex; gap: clamp(12px, 1.2vw, 18px); flex: 1;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.bc-testimonials-cards::-webkit-scrollbar { display: none; }
.bc-testimonial-card {
  background: var(--bc-cream); border-radius: 16px;
  padding: clamp(18px, 1.8vw, 26px); flex: 0 0 calc(50% - 9px);
  scroll-snap-align: start;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: clamp(240px, 22vw, 320px); text-align: left;
}
.bc-testimonial-stars { margin-bottom: 10px; }
.bc-testimonial-stars img { height: clamp(14px, 1.1vw, 16px); }
.bc-testimonial-text {
  font-family: var(--font-b) !important; font-style: italic;
  font-size: 16px !important; line-height: 140% !important;
  color: var(--bc-dark) !important; flex: 1; margin-bottom: 14px;
}
.bc-testimonial-author {
  display: flex; align-items: center; gap: clamp(10px, 1vw, 14px);
}
.bc-testimonial-author > img {
  width: clamp(36px, 3.2vw, 48px); height: clamp(36px, 3.2vw, 48px);
  border-radius: 50%; object-fit: cover;
}
.bc-testimonial-author strong {
  font-family: var(--font-b); font-weight: 700;
  font-size: clamp(11px, 0.95vw, 14px); color: var(--bc-dark);
}
.bc-testimonial-author span {
  font-family: var(--font-b); font-size: clamp(11px, 0.95vw, 14px); color: var(--bc-dark);
}
/* Dots */
.bc-carousel-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 20px;
}
.bc-carousel-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--bc-cream); border: 1px solid var(--bc-brown);
  cursor: pointer; transition: background 0.3s;
}
.bc-carousel-dot.active { background: var(--bc-brown); }

@media (max-width: 991px) {
  .bc-testimonial-card { flex: 0 0 85%; }
  .bc-carousel-arrow { display: none; }
}
@media (max-width: 767px) {
  .bc-testimonial-card { flex: 0 0 90%; }
}

/* === FIX: Center sections globally === */
.bc-testimonials-section .brxe-container,
.bc-testimonials-container {
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}
/* Fix: section headings and subtitles force center */
.bc-testimonials-section .bc-section-heading {
  width: 100%; text-align: center !important;
}

/* ===================== TESTIMONIALS SECTION ===================== */
.bc-testimonials-section {
  background: var(--bc-white) !important;
  padding: clamp(40px, 6vw, 90px) 0 !important;
}
.bc-testimonials-inner {
  max-width: 1200px !important;
  width: 90% !important;
  margin: 0 auto;
  text-align: center;
}
.bc-testimonials-carousel {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: clamp(20px, 3vw, 40px);
}
.bc-testimonials-track-wrapper {
  overflow: hidden;
  flex: 1;
  margin: 0 clamp(40px, 5vw, 60px);
}
.bc-testimonials-track {
  display: flex;
  transition: transform 0.4s ease;
  gap: 24px;
}
.bc-testimonial-card {
  flex: 0 0 calc(50% - 12px);
  background: #F7F4EF;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 350px;
  text-align: left;
}
.bc-testimonial-stars {
  color: #B0947E;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.bc-testimonial-stars .star-empty {
  color: transparent;
  -webkit-text-stroke: 1px #B0947E;
}
.bc-testimonial-text {
  font-family: var(--font-b);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #393029;
  flex: 1;
  margin-bottom: 20px;
}
.bc-testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.bc-testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.bc-testimonial-name {
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 16px;
  color: #393029;
  display: block;
}
.bc-testimonial-source {
  font-family: var(--font-b);
  font-weight: 400;
  font-size: 14px;
  color: #393029;
  display: block;
}
.bc-testimonial-arrow {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 2px solid #B0947E;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}
.bc-testimonial-arrow:hover {
  background: rgba(176, 148, 126, 0.1);
}
.bc-testimonial-arrow svg {
  width: 24px;
  height: 24px;
  stroke: #B0947E;
  stroke-width: 2;
  fill: none;
}
.bc-testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(20px, 3vw, 40px);
}
.bc-testimonials-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #F7F4EF;
  border: 1px solid #B0947E;
  cursor: pointer;
  transition: background 0.3s;
}
.bc-testimonials-dot.active {
  background: #B0947E;
}
@media (max-width: 991px) {
  .bc-testimonial-card { flex: 0 0 calc(70% - 12px); }
  .bc-testimonial-arrow { width: 50px; height: 50px; }
  .bc-testimonials-track-wrapper { margin: 0 clamp(20px, 3vw, 40px); }
}
@media (max-width: 767px) {
  .bc-testimonial-card { flex: 0 0 calc(100% - 12px); min-height: 280px; }
  .bc-testimonial-arrow { width: 40px; height: 40px; }
  .bc-testimonials-track-wrapper { margin: 0 15px; }
  .bc-testimonial-text { font-size: 14px; }
}
@media (max-width: 478px) {
  .bc-testimonial-arrow { display: none; }
  .bc-testimonials-track-wrapper { margin: 0; }
}
