:root{
    --wpccl-bg:#1f2937;
    --wpccl-text:#f9fafb;
    --wpccl-accent:#10b981;
    --wpccl-muted:#9ca3af;
}
#wpccl-banner.wpccl-hidden, #wpccl-modal.wpccl-hidden{ display:none; }
#wpccl-banner{
    position:fixed; left:0; right:0; bottom:0; z-index:99999;
    background:var(--wpccl-bg); color:var(--wpccl-text);
    padding:16px;
    box-shadow:0 -6px 20px rgba(0,0,0,.25);
    font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
}
.wpccl-banner-inner{ max-width:1100px; margin:0 auto; display:flex; gap:16px; align-items:center; }
.wpccl-banner-text{ flex:1; }
.wpccl-title{ font-weight:700; margin-bottom:6px; }
.wpccl-msg{ color:var(--wpccl-muted); }
.wpccl-banner-actions{ display:flex; gap:8px; }
.wpccl-btn{
    border:none; cursor:pointer; padding:10px 14px; border-radius:8px; font-weight:600;
}
.wpccl-accept{ background:var(--wpccl-accent); color:#06281a; }
.wpccl-reject{ background:#374151; color:#fff; }
.wpccl-prefs{ background:#111827; color:#fff; }

/* Modal */
#wpccl-modal{ position:fixed; inset:0; z-index:100000; font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif; }
.wpccl-modal-backdrop{ position:absolute; inset:0; background:rgba(0,0,0,.5); }
.wpccl-modal-dialog{
    position:relative; background:#fff; color:#111; width:95%; max-width:720px;
    margin:10vh auto 0; border-radius:12px; overflow:hidden; box-shadow:0 10px 40px rgba(0,0,0,.35);
}
.wpccl-modal-header{ padding:14px 16px; font-weight:700; background:#f3f4f6; display:flex; align-items:center; justify-content:space-between; }
.wpccl-close{ background:transparent; border:none; font-size:22px; cursor:pointer; }
.wpccl-modal-body{ padding:16px; max-height:55vh; overflow:auto; }
.wpccl-cat{ padding:12px; border:1px solid #e5e7eb; border-radius:10px; margin-bottom:10px; }
.wpccl-cat-label{ margin-left:8px; font-weight:600; }
.wpccl-cat-desc{ color:#4b5563; margin-top:6px; }
.wpccl-modal-footer{ padding:14px 16px; background:#f9fafb; display:flex; justify-content:flex-end; gap:8px; }
.wpccl-manage-btn{ padding:8px 12px; border-radius:8px; border:1px solid #d1d5db; background:#fff; cursor:pointer; }
