@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

.melitos-reviews,
.melitos-reviews *{
  box-sizing:border-box;
  font-family:'Poppins',sans-serif !important;
}

.melitos-reviews{
  width:100%;
  padding:70px 18px;
  background:#fdfcf9; /* Lighter background often used by Trustpilot */
}

.melitos-reviews-wrap{
  max-width:1200px;
  margin:0 auto;
}

.melitos-reviews-head{
  text-align:center;
  max-width:680px;
  margin:0 auto 40px;
}

.melitos-reviews-head span{
  display:inline-block;
  background:#00b67a; /* Trustpilot Green */
  color:#fff;
  padding:8px 16px;
  border-radius:50px;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:1px;
  margin-bottom:14px;
}

.melitos-reviews-head h2{
  margin:0 0 12px;
  color:#1c1c1c;
  font-size:44px;
  line-height:1.1;
  font-weight:900;
}

.melitos-reviews-head p{
  margin:0;
  color:#4a4a4a;
  font-size:16px;
  line-height:1.7;
}

.melitos-review-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
  gap:24px;
}

.melitos-review-card.tp-style-card{
  background:#fff;
  border-radius:8px;
  padding:24px;
  box-shadow:0 2px 8px rgba(0,0,0,0.08);
  border:1px solid #e1e1e1;
  display:flex;
  flex-direction:column;
}

.tp-stars-wrap{
  display:flex;
  gap:4px;
  margin-bottom:12px;
}

.tp-stars-wrap .tp-star{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:24px;
  height:24px;
  background-color:#dcdce6; /* Empty star bg */
  color:#fff;
  font-size:16px;
}

.tp-stars-wrap .tp-star.filled{
  background-color:#00b67a; /* Trustpilot Green filled */
}

.tp-stars-wrap.tp-large .tp-star{
  width:32px;
  height:32px;
  font-size:22px;
}

.melitos-review-card h3{
  margin:0 0 8px;
  color:#1c1c1c;
  font-size:18px;
  font-weight:700;
  line-height:1.3;
}

.tp-excerpt{
  margin:0 0 20px;
  color:#4a4a4a;
  font-size:14px;
  line-height:1.6;
  flex-grow:1;
}

.melitos-reviewer strong{
  display:block;
  color:#1c1c1c;
  font-size:14px;
  font-weight:700;
}

.melitos-reviewer small{
  color:#6b6b80;
  font-size:12px;
}

.melitos-trustbar.tp-theme{
  margin-top:40px;
  background:#fff;
  border:1px solid #e1e1e1;
  color:#1c1c1c;
  border-radius:8px;
  padding:24px 32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  box-shadow:0 2px 8px rgba(0,0,0,0.05);
}

.tp-score-block{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.tp-score-block strong{
  font-size:24px;
  font-weight:800;
}

.tp-score-block small{
  color:#4a4a4a;
  font-size:14px;
  font-weight:500;
}

.melitos-trustbar-btn{
  background:transparent;
  color:#1c1c1c;
  border:2px solid #1c1c1c;
  text-decoration:none;
  padding:12px 24px;
  border-radius:32px;
  font-size:14px;
  font-weight:700;
  white-space:nowrap;
  transition:all 0.2s ease;
}

.melitos-trustbar-btn:hover{
  background:#1c1c1c;
  color:#fff;
}

.tp-no-reviews{
  grid-column: 1 / -1;
  text-align:center;
  padding:40px;
  background:#fff;
  border-radius:8px;
  border:1px dashed #ccc;
  color:#666;
}

@media(max-width:900px){
  .melitos-review-grid{
    grid-template-columns:1fr;
  }
  .melitos-reviews-head h2{
    font-size:32px;
  }
  .melitos-trustbar.tp-theme{
    flex-direction:column;
    align-items:flex-start;
  }
}
