.profile-page__feedback{display:flex;align-items:center;justify-content:space-between;width:100%;min-height:60px;padding:13px 15px;border:0;color:var(--color-foreground);background:var(--color-surface-soft)}.profile-page__feedback>uni-view{display:flex;align-items:center;gap:12px}.feedback-page {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
  background: #f7f8f7;
}

.feedback-page__scroll {
  min-height: 0;
  flex: 1;
}

.feedback-page__content {
  display: grid;
  gap: 12px;
  padding: 18px var(--page-gutter) 28px;
}

.feedback-page__card {
  padding: 15px;
}

.feedback-page__section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--color-foreground);
  font-size: 15px;
}

.feedback-page__section-head span {
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 400;
}

.feedback-page__textarea {
  display: block;
  width: 100%;
  min-height: 150px;
  box-sizing: border-box;
  padding: 11px 12px;
  border: 1px solid var(--color-border);
  border-radius: 7px;
  resize: none;
  color: var(--color-foreground);
  background: #fff;
  font: inherit;
  font-size: 14px;
  line-height: 1.6;
}

.feedback-page__textarea:focus {
  outline: 0;
  border-color: var(--color-primary-strong);
  box-shadow: 0 0 0 2px var(--color-primary-soft);
}

.feedback-page__image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.feedback-page__image-item,
.feedback-page__image-add {
  position: relative;
  aspect-ratio: 1;
  border-radius: 7px;
  overflow: hidden;
}

.feedback-page__image-item {
  background: #eef1ef;
}

.feedback-page__image-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feedback-page__image-remove {
  position: absolute;
  top: 5px;
  right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(30, 36, 34, 0.72);
  font-size: 18px;
  line-height: 1;
}

.feedback-page__image-add {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px dashed #bacac4;
  color: var(--color-muted);
  background: #fbfcfb;
  font-size: 12px;
}

.feedback-page__image-add-icon {
  color: var(--color-primary-strong);
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
}

.feedback-page__submit {
  width: 100%;
  height: var(--control-height);
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--color-primary-strong);
  box-shadow: 0 6px 16px rgba(47, 116, 108, 0.2);
  font-size: 15px;
  font-weight: 700;
}

.feedback-page__submit--loading {
  opacity: 0.65;
}

.feedback-page__submit:disabled {
  cursor: not-allowed;
}
