.feedback-shell { max-width: 820px; }
.feedback-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.feedback-head h1 { margin: 0 0 0.35rem; }
.feedback-compose {
  margin-bottom: 1.25rem;
  text-align: left;
}
.feedback-compose h3 {
  font-family: var(--font-display);
  margin: 0 0 0.35rem;
}
.star-picker {
  display: flex;
  gap: 0.25rem;
}
.star-picker button {
  border: 0;
  background: transparent;
  font-size: 1.45rem;
  line-height: 1;
  color: #cbd5e1;
  cursor: pointer;
  padding: 0.1rem;
}
.star-picker button.on { color: #f59e0b; }
.feedback-compose textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #f8fafc;
  color: var(--text);
  padding: 0.85rem 0.95rem;
  resize: vertical;
  outline: none;
  font: inherit;
}
.feedback-compose textarea:focus {
  border-color: rgba(225, 29, 72, 0.45);
  background: #fff;
}

.feedback-list {
  display: grid;
  gap: 0.85rem;
}
.fb-card {
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
.fb-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.45rem;
}
.fb-user {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}
.fb-avatar {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  background: linear-gradient(135deg, #fb7185, #db2777);
  flex-shrink: 0;
}
.fb-avatar-wrap {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  position: relative;
}
.fb-avatar-img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  border: 1px solid var(--line);
  background: #f1f5f9;
}
.feedback-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}
.feedback-more-wrap .btn {
  min-width: 200px;
}
.fb-name {
  font-weight: 700;
  font-size: 0.95rem;
}
.fb-time {
  color: var(--muted);
  font-size: 0.8rem;
}
.fb-stars {
  color: #f59e0b;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
  white-space: nowrap;
  display: inline-flex;
  gap: 1px;
}
.fb-stars .star { color: #cbd5e1; }
.fb-stars .star.on { color: #f59e0b; }
.fb-stars .star.half {
  background: linear-gradient(90deg, #f59e0b 50%, #cbd5e1 50%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.fb-text {
  margin: 0.35rem 0 0;
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.55;
  white-space: pre-line;
}
