.pom-privacy-banner, .pom-privacy-banner * { box-sizing: border-box; }
.pom-privacy-banner { position: fixed; left: 50%; bottom: max(16px, env(safe-area-inset-bottom)); z-index: 10040; width: min(960px, calc(100vw - 32px)); transform: translateX(-50%); display: none; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 15px; padding: 17px 18px; border: 1px solid #ead1dc; border-radius: 20px; background: rgba(255,250,247,.98); color: #68535f; box-shadow: 0 22px 60px rgba(62,24,53,.22); font-family: Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif; backdrop-filter: blur(16px); }
.pom-privacy-banner[data-visible="true"] { display: grid; animation: pomPrivacyIn .22s ease-out; }
.pom-privacy-lock { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: #ffe1d1; color: #542048; }
.pom-privacy-copy { margin: 0; font-size: 13px; line-height: 1.55; }
.pom-privacy-copy strong { display: block; margin-bottom: 2px; color: #542048; font-size: 15px; }
.pom-privacy-copy a { color: #542048; font-weight: 800; text-underline-offset: 3px; }
.pom-privacy-ok { min-height: 44px; padding: 0 18px; border: 0; border-radius: 999px; background: #542048; color: #fff; font: inherit; font-size: 14px; font-weight: 800; cursor: pointer; white-space: nowrap; }
.pom-privacy-ok:hover { background: #6b3b63; }
.pom-privacy-ok:focus-visible, .pom-privacy-copy a:focus-visible { outline: 3px solid #ffad86; outline-offset: 3px; }
@keyframes pomPrivacyIn { from { opacity: 0; transform: translate(-50%,12px); } to { opacity: 1; transform: translate(-50%,0); } }
@media (max-width: 640px) {
  .pom-privacy-banner { width: calc(100vw - 24px); grid-template-columns: auto minmax(0,1fr); gap: 11px; padding: 15px; border-radius: 18px; }
  .pom-privacy-lock { width: 38px; height: 38px; }
  .pom-privacy-ok { grid-column: 1 / -1; width: 100%; }
}
@media (prefers-reduced-motion: reduce) { .pom-privacy-banner[data-visible="true"] { animation: none; } }
