.privacy-consent {
  margin: 10px 0 0;
  padding: 0;
}

.privacy-consent__label {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.privacy-consent__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.privacy-consent__box {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1.5px solid #cbd5e1;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.privacy-consent__box svg {
  width: 11px;
  height: 11px;
  fill: #ffffff;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.privacy-consent__input:checked + .privacy-consent__box {
  border-color: #111827;
  background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.2);
}

.privacy-consent__input:checked + .privacy-consent__box svg {
  opacity: 1;
  transform: scale(1);
}

.privacy-consent__copy {
  color: #4b5563;
  font-size: 12px;
  line-height: 1.5;
  text-align: left;
}

.privacy-consent__copy a {
  color: #111827;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.privacy-consent__error {
  display: none;
  margin: 8px 0 0 28px;
  color: #b91c1c;
  font-size: 12px;
  line-height: 1.45;
}

.privacy-consent.is-invalid {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(220, 38, 38, 0.06);
}

.privacy-consent.is-invalid .privacy-consent__box {
  border-color: #dc2626;
  box-shadow: 0 10px 20px rgba(220, 38, 38, 0.12);
}
