/* عمومی */
#comments {
  max-width: 700px;
  margin: 40px auto;
  color: #333;
  background: #fff;
}
.comments-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 12px;
}

/* لیست دیدگاه‌ها */
.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.comment-item {
  margin-bottom: 20px;
}
.comment-card {
  display: flex;
  align-items: flex-start;
  padding: 15px;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  background: #fafafa;
  transition: background 0.3s;
}
.comment-card:hover {
  background: #f9f9f9;
}
.comment-avatar img {
  border-radius: 50% !important;
  width: 48px;
  height: 48px;
  margin-left: 15px;
}
.comment-content {
  flex: 1;
}
.comment-meta {
  font-size: 13px;
  color: #777;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}
.comment-author {
  font-weight: 500;
  color: #222;
}
.comment-text {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 10px;
}
.comment-reply a {
  font-size: 13px;
  color: #E33461;
  text-decoration: none;
}
.comment-reply a:hover {
  text-decoration: underline;
}
.comment-form-wrapper input,
.comment-form-wrapper textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px;
  font-size: 14px;
  color: #fff;
  margin-bottom: 15px;
}
.comment-form-wrapper input:focus,
.comment-form-wrapper textarea:focus {
  border-color: #E33461;
  box-shadow: 0 0 0 2px rgba(0,102,204,0.1);
  outline: none;
}
.btn-submit {
  background: #E33461;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-submit:hover {
  background: #E33461;
}
#wp-comment-cookies-consent {
    width: auto;
}
.comment-list * {
    list-style: none !important;
}