/* Ürün yorumları widget — temalar .mt-pr-root ile özelleştirebilir */
.mt-pr-root {
  --mt-pr-border: #e8e8e8;
  --mt-pr-muted: #6b7280;
  --mt-pr-accent: #f59e0b;
  font-size: 14px;
  line-height: 1.5;
}
.mt-pr-root * {
  box-sizing: border-box;
}
.mt-pr-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--mt-pr-border);
}
.mt-pr-summary strong {
  font-size: 20px;
}
.mt-pr-muted {
  color: var(--mt-pr-muted);
  font-size: 14px;
}
.mt-pr-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}
.mt-pr-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--mt-pr-border);
}
.mt-pr-item:last-child {
  border-bottom: none;
}
.mt-pr-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  margin-bottom: 0.35rem;
  font-weight: 600;
}
.mt-pr-stars {
  color: var(--mt-pr-accent);
  letter-spacing: 0.05em;
}
.mt-pr-text {
  margin: 0;
  word-break: break-word;
}
.mt-pr-form-title {
  font-size: 17px;
  font-weight: 600;
  margin: 1rem 0 0.5rem;
}
.mt-pr-form .mt-pr-row {
  margin-bottom: 0.75rem;
}
.mt-pr-form label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 500;
}
.mt-pr-form input[type="text"],
.mt-pr-form textarea,
.mt-pr-form select {
  width: 100%;
  max-width: 100%;
  padding: 0.45rem 0.6rem;
  border: 1px solid var(--mt-pr-border);
  border-radius: 4px;
  font: inherit;
}
.mt-pr-form textarea {
  min-height: 100px;
  resize: vertical;
}
.mt-pr-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  background: #111827;
  color: #fff;
  font: inherit;
  cursor: pointer;
}
.mt-pr-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.mt-pr-msg {
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
  font-size: 14px;
}
.mt-pr-msg.mt-pr-ok {
  background: #ecfdf5;
  color: #065f46;
}
.mt-pr-msg.mt-pr-err {
  background: #fef2f2;
  color: #991b1b;
}
.mt-pr-msg.mt-pr-info {
  background: #f3f4f6;
  color: var(--mt-pr-muted);
}
