.review-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}

.review-header {
  display: flex;
  gap: .75rem;
  margin-bottom: .5rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #198754;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-author {
  font-size: .95rem;
}

.review-date {
  display: block;
  font-size: .75rem;
  color: #777;
}

.review-rating {
  display: flex;
  gap: 2px;
  margin: .5rem 0;
}

.review-text {
  font-size: .9rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: auto;
}

.review-product {
  margin-top: .75rem;
  font-size: .85rem;
  font-weight: 600;
  color: #198754;
  text-decoration: none;
}

/*product*/
.dk-reviews {
  background: #fff;
  border-radius: 1rem;
}

.dk-review-card {
  background: #f9fafb;
  border-radius: 12px;
  padding: 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.dk-review-top {
  display: flex;
  gap: .75rem;
  align-items: center;
  margin-bottom: .5rem;
}

.dk-review-avatar img {
  border-radius: 50%;
}

.dk-review-author {
  font-size: .95rem;
  color: #2e7d32;
}

.dk-review-date {
  font-size: .75rem;
  color: #888;
}

.dk-review-rating {
  margin: .25rem 0 .5rem;
}

.dk-review-rating span {
  color: #ddd;
  font-size: .9rem;
}

.dk-review-rating .filled {
  color: #f9a825;
}

.dk-review-content {
  font-size: .9rem;
  line-height: 1.8;
  color: #333;
}

.commentSwiper .swiper-slide {
  cursor: grab;
}

.commentSwiper .swiper-slide:active {
  cursor: grabbing;
}
/*blog*/
.blog-comments .comment-card {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

.comment-avatar img {
  border-radius: 50%;
}

.comment-meta {
  display: flex;
  gap: .5rem;
  font-size: .85rem;
  color: #6c757d;
}

.comment-author {
  color: #212529;
}

.comment-text {
  margin-top: .4rem;
  line-height: 1.8;
}

.comment-reply-link {
  display: inline-block;
  margin-top: .5rem;
  font-size: .8rem;
  color: #198754;
  text-decoration: none;
}

.comment-reply-link:hover {
  text-decoration: underline;
}

.comment-pagination {
  text-align: center;
}

.comment-form-wrapper {
  border-top: 1px solid #eee;
  padding-top: 2rem;
}

