.hj-feedback {
  max-width: 980px;
  margin: 38px auto 20px;
  padding: 24px;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid #d4af37;
  border-radius: 6px;
  color: #f5f5f0;
}

.hj-feedback-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.hj-feedback-sub {
  color: rgba(245, 245, 240, 0.68);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.hj-feedback-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.hj-feedback-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #0f0f0f;
  border-radius: 4px;
  padding: 10px 12px;
  cursor: pointer;
}

.hj-feedback-opt input {
  accent-color: #c0392b;
}

.hj-feedback-note {
  width: 100%;
  min-height: 72px;
  resize: vertical;
  margin-bottom: 10px;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  color: #f5f5f0;
  padding: 10px 12px;
  font-family: "Lato", sans-serif;
}

.hj-feedback-email {
  width: 100%;
  margin-bottom: 10px;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  color: #f5f5f0;
  padding: 10px 12px;
  font-family: "Lato", sans-serif;
}

.hj-feedback-submit {
  background: #c0392b;
  border: none;
  color: #fff;
  border-radius: 4px;
  padding: 10px 14px;
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hj-feedback-submit[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

.hj-feedback-status {
  margin-top: 8px;
  min-height: 20px;
  font-size: 0.86rem;
  color: rgba(245, 245, 240, 0.72);
}

.hj-feedback-bars {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.hj-fb-bar-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
}

.hj-fb-label {
  font-size: 0.88rem;
  color: #ddd;
}

.hj-fb-value {
  font-size: 0.82rem;
  color: #aaa;
}

.hj-fb-track {
  grid-column: 1 / -1;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #252525;
  overflow: hidden;
}

.hj-fb-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #c0392b, #d4af37);
  transition: width 0.5s ease;
}

@media (max-width: 700px) {
  .hj-feedback {
    margin: 30px 14px 16px;
    padding: 18px;
  }
  .hj-feedback-options {
    grid-template-columns: 1fr;
  }
}
