.privacy-modal {
  position: fixed;
  z-index: 9999;
  bottom: 24px;
  right: 24px;
  width: 360px;
  max-width: calc(100% - 32px);
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  padding: 18px 18px 16px;
  text-align: left;
}

.privacy-modal[hidden] {
  display: none !important;
}

.privacy-modal__title {
  font-family: Roboto, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: #111;
  margin: 0 0 10px 0;
}

.privacy-modal__body {
  font-family: Roboto, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(17, 17, 17, 0.85);
  margin: 0 0 14px 0;
}

.privacy-modal__body a {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  font-family: inherit;
  color: inherit;
  text-decoration: underline;
}

.privacy-modal__cta {
  width: 100%;
  border: none;
  background: #111;
  color: #fff;
  border-radius: 999px;
  padding: 12px 16px;
  font-family: Roboto, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}

.privacy-modal__cta:active {
  transform: translateY(1px);
}

@media (max-width: 640px) {
  .privacy-modal {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 16px;
    width: calc(100% - 32px);
  }
}

