/* ====================================================
   realreviews.css — Resimli Gerçek Kullanıcı Yorumları
   ==================================================== */

.realreviews-section {
  padding: 90px 0 100px;
  background-color: #FFFFFF !important;
  color: #0F172A;
  position: relative;
}

.realreviews-container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── HEADER ─── */
.realreviews-badge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.realreviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 32, 86, 0.35);
  background: rgba(255, 32, 86, 0.04);
  color: #FF2056;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
}

.realreviews-title {
  text-align: center;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: #0F172A;
  margin: 0 0 12px;
}

.text-pink-highlight {
  color: #FF2056;
}

.realreviews-subtitle {
  text-align: center;
  font-size: 14.5px;
  line-height: 1.6;
  color: #64748B;
  margin: 0 0 24px;
}

/* Rating Summary Header */
.rating-summary-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 44px;
}

.rating-big-num {
  font-size: 42px;
  font-weight: 900;
  color: #0F172A;
  line-height: 1;
}

.stars-row {
  display: flex;
  gap: 4px;
}

.rating-count-label {
  font-size: 12.5px;
  color: #64748B;
  font-weight: 500;
}

/* ─── 4-CARD REVIEWS GRID ─── */
.reviews-4col-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.review-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 32, 86, 0.3);
}

.review-media-box {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.review-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.brand-tag-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.tag-black {
  background: #000000;
  color: #FFFFFF;
}

.tag-white {
  background: #FFFFFF;
  color: #000000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.review-card-body {
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.review-category {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #94A3B8;
  margin-bottom: 4px;
}

.review-brand-title {
  font-size: 16px;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 10px;
}

.review-quote-text {
  font-size: 11.5px;
  line-height: 1.5;
  color: #475569;
  margin: 0 0 16px;
  min-height: 52px;
}

.review-author-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #F1F5F9;
}

.author-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 12px;
  font-weight: 700;
  color: #0F172A;
}

.author-role {
  font-size: 10px;
  color: #64748B;
}

/* Stats Footer (ROAS, Dönüşüm, Tıklama, Harcama) */
.review-stats-footer {
  background: #F8FAFC;
  border: 1px solid #F1F5F9;
  border-radius: 10px;
  padding: 10px 8px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: auto;
  text-align: center;
}

.rstat-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.rstat-label {
  font-size: 8px;
  color: #64748B;
  font-weight: 600;
  white-space: nowrap;
}

.rstat-val {
  font-size: 12px;
  font-weight: 800;
  color: #FF2056;
}

/* ─── BOTTOM TRUSTED BRANDS STRIP ─── */
.realreviews-brands-strip {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #F1F5F9;
}

.rr-brands-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #94A3B8;
  display: block;
  margin-bottom: 18px;
}

.rr-brands-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 800;
  color: #94A3B8;
  letter-spacing: 1px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .reviews-4col-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .realreviews-title { font-size: 32px; }
  .reviews-4col-grid { grid-template-columns: 1fr; }
}
