.privacy-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  max-width: 340px;
  z-index: 9999;
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.4;
  display: none;
}

.privacy-popup__label a {
  color: #1bb170;
  text-decoration: underline;
}

.privacy-popup__close {
  position: absolute;
  top: 6px;
  right: 10px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.privacy-popup__content {
  position: relative;
  padding-right: 24px;
}

/* === Галочка === */
.privacy-popup__label input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #1bb170;
  border-radius: 4px;
  background-color: #1bb170;
  position: relative;
  cursor: default;
  flex-shrink: 0;
}

.privacy-popup__label input[type="checkbox"]::after {
  content: "✔";
  color: #fff;
  font-size: 13px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
}

.privacy-popup__label input[disabled] {
  cursor: default;
  opacity: 1;
}