/* Nelydo 세컨하우스 데모 보호 레이어 */
.orobi-demo-watermark {
  position: fixed;
  inset: -20vh -20vw;
  z-index: 2147483000;
  pointer-events: none;
  opacity: 0.048;
  transform: rotate(-24deg);
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 64px;
  align-content: center;
  color: #15201c;
  font-size: clamp(13px, 1.2vw, 19px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  user-select: none;
}
.orobi-demo-watermark span { display: block; white-space: nowrap; }
.feedback-dock {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 2147483200;
  width: min(420px, calc(100vw - 32px));
  border: 1px solid #dfe7e2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(21, 32, 28, .18);
  color: #15201c;
  overflow: hidden;
}
.feedback-dock-toggle {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 0;
  background: #15735d;
  color: #fff;
  padding: 10px 12px;
  font-weight: 800;
}
.feedback-dock-toggle b {
  min-width: 46px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
}
.feedback-popup-body {
  max-height: min(72vh, 680px);
  overflow: auto;
  padding: 14px;
}
.feedback-popup-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.feedback-popup-head h2 { margin: 3px 0 0; font-size: 19px; }
.feedback-popup-grid, .feedback-list, .feedback-form { display: grid; gap: 10px; }
.feedback-row, .feedback-form {
  border: 1px solid #dfe7e2;
  border-radius: 8px;
  padding: 10px;
  background: #fbfcf9;
}
.feedback-row strong { display: block; margin-bottom: 4px; }
.feedback-row span, .feedback-row p { color: #68736f; font-size: 13px; line-height: 1.45; }
.feedback-form label { display: grid; gap: 6px; color: #68736f; font-size: 13px; }
.feedback-form input, .feedback-form select {
  width: 100%;
  border: 1px solid #dfe7e2;
  border-radius: 8px;
  padding: 9px 10px;
}
.feedback-form button, .feedback-popup-head button {
  min-height: 36px;
  border: 1px solid #dfe7e2;
  border-radius: 8px;
  background: #fff;
  color: #15201c;
  padding: 7px 10px;
}
.feedback-form button { background: #15735d; color: #fff; border-color: #15735d; }
.feedback-dock:not(.is-open) { width: min(240px, calc(100vw - 24px)); }
.feedback-dock:not(.is-open) .feedback-dock-toggle { border-radius: 8px; }
.feedback-dock:not(.is-open) .feedback-popup-body { display: none; }
@media (max-width: 720px) {
  .orobi-demo-watermark {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 42px;
    opacity: 0.04;
    font-size: 12px;
  }
  .feedback-dock {
    right: 10px;
    bottom: 10px;
    width: calc(100vw - 20px);
  }
  .feedback-popup-body { max-height: 68vh; padding: 12px; }
  .feedback-popup-head { display: grid; }
}
@media print {
  body::before {
    content: "Nelydo 검토용 데모 · 세컨하우스 쉼터 · 재배포 금지";
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    display: grid;
    place-items: center;
    font-size: 32px;
    font-weight: 900;
    opacity: 0.12;
    transform: rotate(-24deg);
    pointer-events: none;
  }
}
