.pb-lgpd-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 99998;
}
.pb-lgpd-overlay.is-open{
  opacity: 1;
  pointer-events: auto;
}

.pb-lgpd-banner{
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 99999;
  display: none;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.pb-lgpd-banner.is-open{ display:block; }

.pb-lgpd-inner{
  background: #111;
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.pb-lgpd-title{ display:block; font-size: 14px; margin-bottom: 6px; }
.pb-lgpd-desc{ margin:0; font-size: 13px; line-height: 1.35; opacity: .9; max-width: 780px; }
.pb-lgpd-link{
  background: transparent;
  border: none;
  color: #fff;
  text-decoration: underline;
  padding: 0;
  margin-top: 8px;
  font-size: 12px;
  cursor: pointer;
  opacity: .85;
}
.pb-lgpd-link:hover{ opacity: 1; }

.pb-lgpd-actions{ display:flex; gap:10px; flex-shrink:0; }
.pb-lgpd-btn{
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.18);
}
.pb-lgpd-btn-ghost{
  background: transparent;
  color: #fff;
}
.pb-lgpd-btn-ghost:hover{ background: rgba(255,255,255,.08); }
.pb-lgpd-btn-primary{
  background: #fff;
  color: #111;
  border-color: #fff;
}
.pb-lgpd-btn-primary:hover{ opacity: .92; }

.pb-lgpd-details{ margin-top: 10px; }
.pb-lgpd-details-inner{
  background: #0b0b0b;
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.pb-lgpd-details-head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.pb-lgpd-x{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.18);
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}
.pb-lgpd-x:hover{ background: rgba(255,255,255,.08); }

.pb-lgpd-list{
  margin: 10px 0 10px 18px;
  padding: 0;
  font-size: 13px;
  opacity: .92;
}
.pb-lgpd-small{
  margin: 8px 0 0 0;
  font-size: 12px;
  opacity: .85;
}
.pb-lgpd-policy{ color: #fff; text-decoration: underline; }
.pb-lgpd-actions-details{ margin-top: 12px; }

@media (max-width: 720px){
  .pb-lgpd-inner{ flex-direction: column; align-items: stretch; }
  .pb-lgpd-actions{ justify-content: flex-end; }
}
