.satisfaction-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.satisfaction-popup[hidden] {
  display: none;
}
.satisfaction-popup__box {
  background: #fff;
  border-radius: 12px;
  padding: 28px 32px;
  max-width: 360px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  font-family: system-ui, -apple-system, sans-serif;
}
.satisfaction-popup__close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #888;
}
.satisfaction-popup__close:hover {
  color: #333;
}
.satisfaction-popup__title {
  font-size: 16px;
  margin: 0 0 20px;
  color: #222;
}
.satisfaction-popup__choices {
  display: flex;
  justify-content: center;
  gap: 18px;
}
.satisfaction-popup__emoji {
  font-size: 36px;
  background: none;
  border: 2px solid transparent;
  border-radius: 50%;
  cursor: pointer;
  padding: 6px;
  line-height: 1;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.satisfaction-popup__emoji:hover {
  transform: scale(1.15);
  border-color: #ccc;
}
.satisfaction-popup__thanks {
  margin: 16px 0 0;
  color: #2e7d32;
  font-weight: 600;
}
