/* ============================================================
   nps.css — Net Promoter Score (0–10) interaction styles
   ============================================================ */

.nps-wrap {
  width: 100%; display: flex; flex-direction: column;
  gap: 12px; align-items: center; user-select: none;
}

.nps-btns {
  display: flex; flex-wrap: wrap; gap: 6px; justify-content: center;
  width: 100%;
}

.nps-btn {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.7);
  font-size: 16px; font-weight: 700;
  cursor: pointer; padding: 0; outline: none;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.13s ease, border-color 0.13s ease,
              color 0.13s ease, transform 0.13s ease, box-shadow 0.13s ease;
}
.nps-btn:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.9);
  transform: scale(1.06);
}
.nps-btn:active { transform: scale(0.97); }
.nps-btn.selected {
  background: #00c9b1; border-color: #00c9b1;
  color: #fff; font-weight: 800;
  transform: scale(1.1);
  box-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

.nps-anchors {
  display: flex; justify-content: space-between;
  width: 100%; max-width: 560px;
  font-size: 12px; color: rgba(255,255,255,0.6);
}
.nps-anchor:last-child { text-align: right; }

@media (max-width: 600px) {
  .nps-btn { width: 38px; height: 38px; font-size: 14px; border-radius: 8px; }
  .nps-anchors { font-size: 11px; }
}
