#pvx-consent-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 9999;
  display: none; opacity: 0; transform: translateY(10px);
  background: rgba(20, 20, 20, 0.98); color: #fff;
  padding: 14px; box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  transition: opacity .25s ease, transform .25s ease;
  font-size: 14px;
}
#pvx-consent-banner.show {
  display: block; opacity: 1; transform: translateY(0);
}
#pvx-consent-body { max-width: 880px; margin: 0 auto; display: grid; gap: 10px; }
#pvx-consent-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.pvx-btn { border: none; padding: 8px 14px; border-radius: 8px; cursor: pointer; }
.pvx-primary { background: #4f7cff; color: #fff; }
.pvx-ghost   { background: transparent; color: #fff; border: 1px solid #666; }
.pvx-link    { background: transparent; color: #9fc1ff; text-decoration: underline; }
#pvx-consent-close { position: absolute; right: 8px; top: 8px; background: transparent; border: none; color: #ccc; font-size: 18px; cursor: pointer; }
@media (min-width: 680px) {
  #pvx-consent-body { grid-template-columns: 1fr auto; align-items: center; }
}
