/* Wrapper: Tüm içerik */
.reviews-wrapper {
  width: 100%;
  margin: 20px 0;
}

/* Yorum kartlarını içeren container */
.reviews-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

/* Her kart için: İkili kolon (desktop) */
.review-item {
  width: calc(50% - 10px) !important;
  box-sizing: border-box;
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0px 30px 80px rgba(0, 0, 0, 0.04);
}

/* Mobilde tek kolon */
@media (max-width: 768px) {
  .review-item {
    width: 100% !important;
  }
}

.review-rating {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.review-rating img {
  margin-right: 5px;
}
.review-rating span {
  font-weight: bold;
  margin-left: 5px;
  color: #ff9800;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 10px;
}
.user-name {
  font-weight: bold;
  font-size: 1.1em;
  color: #333;
}

.review-text {
  font-size: 1em;
  line-height: 1.5;
  margin-bottom: 10px;
  color: #333;
}

.review-date {
  font-size: 0.9em;
  color: #777;
  margin-top: 10px;
}

/* Load More butonu container’ı */
.load-more-container {
  display: flex;
  justify-content: center;
  width: 100%;
	gap:20px;
}

button.mrusta-load-more,button.mrusta-show-less {
  cursor: pointer;
  width: 302px;
  height: 48px;
  background-color: white;
  padding: 0 32px;
  border-radius: 12px;
  border: 1.5px #061C3D solid;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 48px;
	gap:12px;
  text-transform: capitalize;
}

button.mrusta-load-more:hover,button.mrusta-show-less:hover {
  background-color: #061C3D;
  color: #FFF;
}

button.mrusta-load-more:hover svg path {
  stroke: #FFF;
}

/* Özet stili */
.review-summary {
    display: table;
    align-items: center;
    justify-content: space-between;
    border-radius: 24px;
background: #FFF;
box-shadow: 0px 20px 60px 0px rgba(167, 174, 174, 0.08);
    padding: 20px;
    max-width: 400px;
    margin: 0 auto 20px;
}
.review-stars {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.review-score {
  font-weight: bold;
  margin-left: 10px;
  font-size: 1.2em;
}
.review-count {
  margin-top: 10px;
	text-align:center;
  color: var(--Gray-700, #42526B);

font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 26px; /* 144.444% */
text-decoration-line: underline;
text-decoration-style: solid;
text-decoration-skip-ink: none;
text-decoration-thickness: auto;
text-underline-offset: auto;
text-underline-position: from-font;
}


/* Kapsayıcı container */
.category-overview {

  margin-bottom: 20px;
}

/* Başlık (Elektrikçi Kategorisinin Kullanıcı Değerlendirmeleri) */
.category-heading {
  color: var(--Gray-800, #243752);
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: -0.72px;
  margin: 0 0 16px 0; 
}


.rating-wrapper {
  display: flex;
  align-items: center;
  gap: 12px; 
}

/* Yıldızları içeren container */
.review-stars {
  display: flex;
  gap: 4px; 
}

/* Her bir yıldızın kapsayıcısı */
.star-icon {
  display: flex;
  width: 24px;
  height: 24px;
  justify-content: center;
  align-items: center;
}

/* Ortalama puan: "4,75/5" */
.average-score {
  color: var(--Gray-700, #42526B);
  font-family: 'Lexend', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px; /* 144.444% */
}

/* "(18 inceleme)" metni */
.review-count {
  color: var(--Gray-700, #42526B);
  font-family: 'Lexend', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px;
  text-decoration-line: underline;
 
}
