/* Rückmeldung / Bewertung */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.rueck-page .rueck-hero {
  min-height: clamp(200px, 32vh, 320px);
}

.rueck-section {
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}

.rueck-form-wrap {
  max-width: 520px;
  margin: 0 auto;
}

.rueck-form {
  background: var(--surface, #1a1814);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.75rem 1.5rem 2rem;
}

.rueck-form label.rueck-label {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(240, 232, 216, 0.92);
  margin-bottom: 0.65rem;
}

.rueck-star-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem;
  margin-bottom: 1.35rem;
}

.rueck-star-bar button {
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  padding: 0.15rem 0.25rem;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.2);
  transition: color 0.15s ease, transform 0.15s ease;
}

.rueck-star-bar button:hover,
.rueck-star-bar button:focus-visible {
  color: rgba(201, 162, 39, 0.85);
  outline: none;
}

.rueck-star-bar button.is-active {
  color: #e8c547;
}

.rueck-field {
  margin-bottom: 1.15rem;
}

.rueck-field input[type="text"],
.rueck-field input[type="email"],
.rueck-field textarea {
  width: 100%;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
  color: #f0e8d8;
}

.rueck-field textarea {
  min-height: 120px;
  resize: vertical;
}

.rueck-field input:focus,
.rueck-field textarea:focus {
  outline: 2px solid rgba(201, 162, 39, 0.45);
  outline-offset: 1px;
  border-color: rgba(201, 162, 39, 0.35);
}

/* E-Mail Feld mit Icon */
.rueck-input-icon-wrap {
  position: relative;
}
.rueck-input-icon-wrap .rueck-input-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(201, 162, 39, 0.6);
  font-size: 0.85rem;
  pointer-events: none;
}
.rueck-input-icon-wrap input {
  padding-left: 2.3rem !important;
}

/* Optional-Hinweis im Label */
.rueck-label-optional {
  font-weight: 400;
  font-size: 0.8rem;
  opacity: 0.55;
  margin-left: 0.3rem;
}

.rueck-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.rueck-msg {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.92rem;
  font-family: "Inter", sans-serif;
}

.rueck-msg--ok {
  background: rgba(46, 125, 50, 0.2);
  border: 1px solid rgba(129, 199, 132, 0.35);
  color: #c8e6c9;
}

.rueck-msg--err {
  background: rgba(183, 28, 28, 0.2);
  border: 1px solid rgba(239, 154, 154, 0.4);
  color: #ffcdd2;
}

.rueck-msg[hidden] {
  display: none !important;
}
