/* ===== Force Frontier — comment form (single posts only) ===== */
.single-post #respond {
  max-width: 720px;
  margin: 2.5rem auto;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* Heading: rename to "Join The Discussion" + red underline */
.single-post #respond #reply-title {
  font-size: 0;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 0 0 4px;
  padding-bottom: 10px;
  position: relative;
}
.single-post #respond #reply-title::before {
  content: "Join The Discussion";
  font-size: 20px;
}
.single-post #respond #reply-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  background: #c54747;
}
.single-post #respond #reply-title small { font-size: 13px; margin-left: 10px; }
.single-post #respond #reply-title small a { color: #c54747; }

/* Helper text */
.single-post #respond .comment-notes {
  font-size: 13px;
  color: #777;
  margin-bottom: 14px;
}

/* Inputs + comment box */
.single-post #respond textarea,
.single-post #respond input[type="text"],
.single-post #respond input[type="email"],
.single-post #respond input[type="url"] {
  width: 100%;
  box-sizing: border-box;
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 11px 12px;
  font-size: 14px;
  color: #1a1a1a;
  font-family: inherit;
  margin-top: 4px;
  transition: border-color 0.15s ease;
}
.single-post #respond textarea:focus,
.single-post #respond input:focus {
  outline: none;
  border-color: #c54747;
}
.single-post #respond textarea { min-height: 0; height: 90px; }

/* Labels */
.single-post #respond label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #444;
}

/* Hide extra fields */
.single-post #respond .comment-form-url,
.single-post #respond .comment-form-cookies-consent,
.single-post #respond .comment-subscription-form {
  display: none;
}

/* Layout: Name + Email side by side */
.single-post #respond #commentform {
  display: flex;
  flex-wrap: wrap;
  gap: 0 14px;
}
.single-post #respond .comment-notes,
.single-post #respond .comment-form-comment,
.single-post #respond .form-submit {
  flex: 0 0 100%;
  margin-bottom: 14px;
}
.single-post #respond .comment-form-author,
.single-post #respond .comment-form-email {
  flex: 1 1 calc(50% - 7px);
  margin-bottom: 14px;
}

/* Submit button */
.single-post #respond #submit {
  background: #c54747;
  color: #ffffff;
  border: none;
  border-radius: 3px;
  padding: 12px 26px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease;
}
.single-post #respond #submit:hover { background: #a83a3a; }
.single-post #respond .comment-form-comment { margin-bottom: 4px; }
/* ===== Force Frontier — product reviews (Option 3) ===== */
#reviews {
  max-width: 720px;
  margin: 2rem auto;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* "Reviews" heading + red underline */
#reviews .woocommerce-Reviews-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a1a1a;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 18px;
}
#reviews .woocommerce-Reviews-title::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 40px; height: 3px; background: #c54747;
}

/* Rating summary block (from the PHP snippet) */
.ff-review-summary {
  display: flex; gap: 24px; align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  border-bottom: 3px solid #c54747;
  margin-bottom: 22px;
}
.ff-rs-score { text-align: center; flex-shrink: 0; }
.ff-rs-num { display: block; font-size: 40px; font-weight: 700; color: #1a1a1a; line-height: 1; }
.ff-rs-stars { display: block; color: #c54747; font-size: 14px; letter-spacing: 2px; margin-top: 2px; }
.ff-rs-count { display: block; font-size: 11px; color: #999; margin-top: 3px; }
.ff-rs-bars { flex: 1; min-width: 0; }
.ff-rs-row { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.ff-rs-label { font-size: 11px; color: #666; width: 26px; flex-shrink: 0; }
.ff-rs-track { flex: 1; height: 7px; background: #eee; border-radius: 4px; overflow: hidden; }
.ff-rs-fill { display: block; height: 100%; background: #c54747; }
.ff-rs-n { font-size: 10px; color: #999; width: 20px; text-align: right; flex-shrink: 0; }

/* Existing reviews list */
#reviews ol.commentlist { list-style: none; margin: 0; padding: 0; }
#reviews ol.commentlist li.review { border-bottom: 1px solid #eee; padding: 16px 0; margin: 0; }
#reviews .comment_container { display: flex; gap: 12px; }
#reviews .commentlist img.avatar {
  width: 38px; height: 38px; border-radius: 50%;
  margin: 0; padding: 0; border: none; position: static; float: none;
}
#reviews .comment-text { margin: 0; border: none; padding: 0; }
#reviews .comment-text .meta { font-size: 13px; font-weight: 700; color: #1a1a1a; margin-bottom: 2px; }
#reviews .comment-text .woocommerce-review__published-date { font-weight: 400; color: #999; font-size: 11px; }
#reviews .comment-text .description { font-size: 13px; color: #555; line-height: 1.55; margin-top: 5px; }
#reviews .comment-text .description p { margin: 0; }

/* Star colors (display) */
#reviews .star-rating::before { color: #ddd; }
#reviews .star-rating span::before { color: #c54747; }

/* Write a review form */
#reviews #review_form_wrapper { margin-top: 24px; }
#reviews #respond #reply-title {
  font-size: 14px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: #1a1a1a; position: relative; padding-bottom: 10px; margin-bottom: 16px;
}
#reviews #respond #reply-title::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 40px; height: 3px; background: #c54747;
}
#reviews #respond label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase;
  color: #444; display: block; margin-bottom: 4px;
}
#reviews #respond textarea,
#reviews #respond input[type="text"],
#reviews #respond input[type="email"] {
  width: 100%; box-sizing: border-box;
  background: #fafafa; border: 1px solid #ddd; border-radius: 3px;
  padding: 11px 12px; font-size: 14px; color: #1a1a1a; font-family: inherit;
}
#reviews #respond textarea:focus,
#reviews #respond input:focus { outline: none; border-color: #c54747; }
#reviews #respond textarea { min-height: 90px; }

/* Rating star selector */
#reviews #respond .stars a { color: #ccc; }
#reviews #respond .stars a:hover,
#reviews #respond .stars a.active,
#reviews #respond .stars.selected a.active { color: #c54747; }

/* Name + Email side by side */
#reviews #respond form.comment-form { display: flex; flex-wrap: wrap; gap: 0 14px; }
#reviews #respond .comment-notes,
#reviews #respond .comment-form-rating,
#reviews #respond .comment-form-comment,
#reviews #respond .comment-form-cookies-consent,
#reviews #respond .form-submit { flex: 0 0 100%; margin-bottom: 14px; }
#reviews #respond .comment-form-author,
#reviews #respond .comment-form-email { flex: 1 1 calc(50% - 7px); margin-bottom: 14px; }

/* Submit button */
#reviews #respond #submit {
  background: #c54747 !important; color: #fff !important;
  border: none !important; border-radius: 3px !important;
  padding: 12px 28px !important; font-size: 13px !important; font-weight: 700 !important;
  letter-spacing: 0.1em !important; text-transform: uppercase !important; cursor: pointer;
}
#reviews #respond #submit:hover { background: #a83a3a !important; }
/* ===== Reviews form — spacing polish + remove save-info ===== */

/* Remove the "save my name, email..." checkbox */
#reviews #respond .comment-form-cookies-consent { display: none !important; }

/* "Be the first to review" heading — underline in normal flow */
#reviews #respond #reply-title {
  position: static !important;
  padding-bottom: 0 !important;
  margin-bottom: 22px !important;
}
#reviews #respond #reply-title::after {
  content: "";
  display: block;
  position: static !important;
  width: 40px;
  height: 3px;
  background: #c54747;
  margin: 10px 0 0 !important;
}

/* Kill the big gap under the star rating */
#reviews #respond .comment-form-rating { margin-bottom: 18px !important; }
#reviews #respond .comment-form-rating label { margin-bottom: 8px; }
#reviews #respond p.stars { margin: 0 !important; line-height: 1; }

/* Even spacing under the review box */
#reviews #respond .comment-form-comment { margin-bottom: 18px !important; }
/* ===== Unify both review headings ===== */
#reviews .woocommerce-Reviews-title,
#reviews #respond #reply-title {
  position: static !important;
  padding-bottom: 0 !important;
  margin-bottom: 18px !important;
}
#reviews .woocommerce-Reviews-title::after,
#reviews #respond #reply-title::after {
  content: "";
  display: block;
  position: static !important;
  width: 40px;
  height: 3px;
  background: #c54747;
  margin: 7px 0 0 !important;
}
/* More space under the "Be the first" underline */
#reviews #respond #reply-title { margin-bottom: 26px !important; }

/* A touch more air between heading text and its line */
#reviews .woocommerce-Reviews-title::after,
#reviews #respond #reply-title::after { margin-top: 9px !important; }

/* Push the notes line down and give the whole intro breathing room */
#reviews #respond .comment-notes { margin: 0 0 22px !important; }
body.single-product #reviews #review_form #respond .comment-notes {
  margin-top: 24px !important;
  padding-top: 4px !important;
}
/* Rating selector — fill stars up to the selected one (left-to-right markup) */

/* All stars default gray, empty */
#reviews #respond p.stars a {
  color: #ccc !important;
}

/* Selected stars (WooCommerce adds .active to each chosen star) go red */
#reviews #respond p.stars a.active {
  color: #c54747 !important;
}

/* Live hover preview: fill the hovered star and every earlier one */
#reviews #respond p.stars:hover a {
  color: #c54747 !important;
}
#reviews #respond p.stars a:hover ~ a {
  color: #ccc !important;
}
/* ===== Blog comments — dark section, correct selectors ===== */

/* Fix: undo the accidental white box on the heading */
.single-post h3#comments {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  max-width: 720px;
  margin: 2.5rem auto 18px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.4;
}

/* Comment list — remove numbering */
.single-post ol.commentlist {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 720px;
}
.single-post ol.commentlist li.comment {
  list-style: none;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 20px 0;
  margin: 0;
}
.single-post ol.commentlist > li.comment:last-child { border-bottom: none; }

.single-post ol.commentlist article.comment-body {
  background: none;
  border: none;
  padding: 0;
}

/* Name + avatar */
.sing
/* Brighten comment text + tighten name row */
.single-post ol.commentlist .comment-content { color: #e4e4e8; }
.single-post ol.commentlist .comment-author.vcard { font-size: 15px; }
.single-post ol.commentlist .comment-author img.avatar { width: 36px; height: 36px; }
.single-post ol.commentlist .comment-author .says { display: none; }
/* Force brighter comment text over theme defaults */
.single-post ol.commentlist .comment-content,
.single-post ol.commentlist .comment-content p {
  color: #e8e8ec !important;
}
.single-post ol.commentlist .comment-author.vcard,
.single-post ol.commentlist .comment-author .fn {
  color: #ffffff !important;
}

/* Hide the avatar/Gravatar next to the name */
.single-post ol.commentlist .comment-author img.avatar {
  display: none !important;
}
.single-post ol.commentlist .comment-author.vcard {
  gap: 0;
}