/* /feedback — full-page maroon (matches mobile menu #4A0F1C + gold #E0B981) */

.feedback-page {
  min-height: calc(100vh - 0px);
  position: relative;
  background: #4a0f1c;
  color: #f5f0e8;
}

.feedback-page__panel {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 80px);
  padding: 48px 24px 64px;
  box-sizing: border-box;
}

.feedback-page__panel.is-active {
  display: flex;
}

.feedback-page__panel--form {
  background: #4a0f1c;
  color: #f5f0e8;
  align-items: stretch;
  justify-content: flex-start;
  padding: 150px 16px 56px;
}

.feedback-page__form-wrap {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.feedback-page__form-card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.feedback-page__panel--form .feedback-form__intro-title {
  color: #FFEDD3;
  margin: 0 0 12px;
  line-height: 1.3;
}

.feedback-page__panel--form .feedback-form__intro-text {
  color: #FFEDD3 !important;
  margin: 0 0 18px;
}

.feedback-page__panel--form .feedback-field,
.feedback-page__panel--form .feedback-rating-row {
  background: #ffffff00;
  padding: 16px 0;
  margin-bottom: 0;
}

.feedback-page__panel--form .feedback-rating-row {
  border-bottom: 1px dashed rgba(224, 185, 129, 0.35);
}

.feedback-page__panel--form .feedback-form-actions {
  margin-top: 10px;
}

.feedback-page__back {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  font-size: 0.95rem;
  color: rgba(224, 185, 129, 0.95);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.feedback-page__back:hover {
  color: #e0b981;
  opacity: 1;
}

.feedback-page__inner {
  max-width: 520px;
  width: 100%;
  margin-top: 80px;
  text-align: center;
}

@media (max-width: 576px) {
  .feedback-page__inner {
    margin-top: 50px;
  }
}

.feedback-page__title {
  font-family: 'seasons', 'Seasons', Georgia, serif;
  font-size: clamp(1.6rem, 4.5vw, 2rem);
  font-weight: 400;
  color: #f3f3f3;
  line-height: 1.3;
  margin: 0 0 40px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

/* Stars on maroon */
.feedback-page__stars.feedback-stars {
  justify-content: center;
  gap: 12px;
}

.feedback-page__stars .feedback-stars__btn {
  color: #BD945A;
}

.feedback-page__stars .feedback-stars__btn:hover {
  color: rgba(224, 185, 129, 0.75);
}

.feedback-page__stars .feedback-stars__btn.is-selected {
  color: #e0b981;
}

.feedback-page__stars.feedback-stars--lg .feedback-stars__btn svg {
  width: 40px;
  height: 40px;
}

@media (max-width: 576px) {
  .feedback-page__panel {
    min-height: calc(100vh - 70px);
    padding-top: 56px;
  }

  .feedback-page__back {
    top: 16px;
    left: 16px;
  }

  .feedback-page__panel--form {
    padding: 120px 24px calc(65px + env(safe-area-inset-bottom));
    min-height: 100dvh;
  }

  .feedback-page__panel--form .feedback-field,
  .feedback-page__panel--form .feedback-rating-row {
    padding: 14px 4px;
  }
}
