.w3f-domain-reviews {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 800px;
  margin: 0 auto;
  padding: 0px 0px 50px 0px;
  font-family: "Poppins", sans-serif;
  color: #111;
}
.w3f-domain-review-item {
  background-color: #fff;
  border: 1.5px solid #eee;
  border-radius: 12px;
  padding: 1.8rem 2rem;
  box-shadow: 0 3px 8px rgb(0 0 0 / 0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.w3f-domain-review-item:hover {
  border-color: #ff6a00;
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.1);
}
.w3f-review-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.w3f-review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 100% !important;
  border: 3px solid #ff6a00 !important;
  object-fit: cover;
}
.w3f-review-author {
  font-weight: 600;
  font-size: 1.2rem;
  margin: 0 0 0.3rem 0;
  line-height: 1.3;
}
.w3f-review-meta-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.w3f-review-content {
  font-size: 1rem;
  color: #333;
  margin: 1rem 0;
  line-height: 1.6;
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
}
.w3f-review-content-title {
  font-size: 1rem;
  color: #000;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.w3f-review-date {
  font-size: 0.8rem;
  color: #666;
  font-style: normal;
  text-align: right;
}
.w3f-star-rating {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
.w3f-star {
  width: 18px;
  height: 18px;
  fill: #ddd;
}
.w3f-star.filled {
  fill: #ff6a00;
}
.w3f-pagination-wrapper {
  clear: both;
  margin-top: 2rem;
  padding: 1rem 0;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.w3f-pagination {
  text-align: center;
}
.w3f-pagination ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.w3f-pagination li {
  display: inline-block;
}
.w3f-pagination a,
.w3f-pagination span {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #444;
  text-decoration: none;
  border: 1px solid #eee;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.w3f-pagination a:hover {
  border-color: #ff6a00;
  color: #ff6a00;
}
.w3f-pagination .current {
  background: #ff6a00;
  color: #fff;
  border-color: #ff6a00;
}
/* Header layout: avatar/rating on left, amount on right */
.w3f-review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.w3f-review-header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Amount block styling */
.w3f-review-amount {
  text-align: right;
  font-family: "Poppins", sans-serif;
}

.w3f-amount-label {
  display: block;
  font-size: 0.75rem;
  color: #666;
  margin-bottom: -0.3rem;
}

.w3f-amount-value {
  font-weight: 700;
  font-size: 0.9rem;
  color: #ff6a00;
}

/* Empty state */
.w3f-no-reviews {
  max-width: 800px;
  margin: 50px auto;
  padding: 2rem 2.5rem;
  background: #fff;
  border: 1.5px solid #eee;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgb(0 0 0 / 0.05);
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: #333;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.w3f-no-reviews:hover {
  border-color: #ff6a00;
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.1);
}
.w3f-no-reviews h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.w3f-no-reviews p {
  font-size: 1rem;
  color: #666;
}
