.product-comments-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border, #ebebeb);
}

.product-comments-heading h2 {
  margin-bottom: 0.35rem;
}

.product-comments-sub {
  margin: 0 0 1rem;
}

.product-comments {
  background: var(--bg-subtle, #f7f7f8);
  border: 1px solid var(--border, #ebebeb);
  border-radius: var(--radius-md, 12px);
  padding: 1rem;
}

.pc-loading,
.pc-empty,
.pc-error {
  color: var(--muted, #8c8c8c);
  margin: 0 0 1rem;
}

.pc-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.pc-item {
  background: var(--card, #fff);
  border: 1px solid var(--border, #ebebeb);
  border-radius: var(--radius-sm, 8px);
  padding: 0.75rem 0.85rem;
}

.pc-item--reply {
  margin-left: 1rem;
  border-left: 3px solid var(--accent, #fa8919);
}

.pc-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.65rem;
  margin-bottom: 0.35rem;
}

.pc-author {
  font-size: 0.95rem;
}

.pc-time {
  font-size: 0.8rem;
  color: var(--muted, #8c8c8c);
}

.pc-body {
  font-size: 0.95rem;
  line-height: 1.5;
  white-space: pre-wrap;
  word-break: break-word;
}

.pc-reply-btn {
  margin-top: 0.45rem;
  border: none;
  background: none;
  color: var(--accent, #fa8919);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.pc-reply-btn:hover {
  text-decoration: underline;
}

.pc-replies {
  margin-top: 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pc-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  background: var(--card, #fff);
  border: 1px solid var(--border, #ebebeb);
  border-radius: var(--radius-sm, 8px);
  padding: 0.85rem;
}

.pc-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.9rem;
}

.pc-field span {
  color: var(--muted, #8c8c8c);
  font-size: 0.85rem;
}

.pc-field input,
.pc-field textarea {
  width: 100%;
  border: 1px solid var(--border-strong, #d9d9d9);
  border-radius: var(--radius-sm, 8px);
  padding: 0.5rem 0.65rem;
  font: inherit;
  background: var(--input-bg, #fff);
}

.pc-field textarea {
  resize: vertical;
  min-height: 5rem;
}

.pc-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.pc-form-error {
  color: #c0392b;
  font-size: 0.85rem;
}

.pc-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.card .product-comments-section {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--border, #ebebeb);
}

.card .product-comments-section h2 {
  font-size: 1rem;
  margin: 0 0 0.35rem;
}

.card .product-comments {
  padding: 0.65rem;
}
