.privacy-policy {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  display: none;
  padding: 0 18px 18px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: none;
}
.privacy-policy.-show {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.privacy-policy__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
  border: 1px solid #e8ebf5;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(6, 9, 16, 0.12);
}
.privacy-policy__content {
  flex: 1;
  margin: 0;
  color: #525260;
}
.privacy-policy__content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}
.privacy-policy__content a {
  color: #485cc7;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.privacy-policy__buttons {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}
.privacy-policy__buttons button {
  min-width: 116px;
  min-height: 44px;
  padding: 12px 20px;
  border: 1px solid #485cc7;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.privacy-policy__buttons button[data-privacy-button-accept] {
  background: #485cc7;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(72, 92, 199, 0.22);
}
.privacy-policy__buttons button[data-privacy-button-accept]:hover {
  border-color: #3548ad;
  background: #3548ad;
}
.privacy-policy__buttons button[data-privacy-button-reject] {
  background: #ffffff;
  color: #485cc7;
}
.privacy-policy__buttons button[data-privacy-button-reject]:hover {
  background: #f3f5ff;
}
@media screen and (max-width: 767px) {
  .privacy-policy {
    padding: 0 12px 12px;
  }
  .privacy-policy__wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 20px;
    border-radius: 16px;
  }
  .privacy-policy__buttons {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }
  .privacy-policy__buttons button {
    width: 100%;
  }
}