/* Consent Manager CSS (minimal) */ 
.cm-banner, .cm-modal-backdrop { position: fixed; left: 0; right: 0; z-index: 9999; font-family: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial; }
.cm-banner { bottom: 0; background: rgba(15,23,42,.96); color: #e5e7eb; border-top: 1px solid rgba(255,255,255,.06); box-shadow: 0 -10px 30px rgba(0,0,0,.25); padding: 16px; }
.cm-container { max-width: 1120px; margin: 0 auto; display: flex; gap: 16px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.cm-actions { display: flex; gap: 8px; }
.cm-btn { border-radius: 999px; padding: 10px 14px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06); color: #e5e7eb; cursor: pointer; }
.cm-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 16px rgba(0,0,0,.25); }
.cm-btn-primary { background: linear-gradient(135deg,#22c55e,#7c3aed); border-color: transparent; color: white; }
.cm-link { color: #a5b4fc; text-decoration: underline; cursor: pointer; }
.cm-modal-backdrop { top: 0; bottom: 0; background: rgba(0,0,0,.5); display: none; align-items: center; justify-content: center; }
.cm-modal { width: min(680px, 92vw); background: rgba(15,23,42,.98); color: #e5e7eb; border-radius: 18px; padding: 20px; border: 1px solid rgba(255,255,255,.08); }
.cm-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed rgba(255,255,255,.08); }
.cm-row:last-child { border-bottom: 0; }
.cm-toggle { position: relative; width: 46px; height: 26px; background: rgba(255,255,255,.15); border-radius: 999px; cursor: pointer; flex: 0 0 auto; }
.cm-toggle[data-on="true"] { background: #22c55e; }
.cm-toggle::after { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; background: white; border-radius: 999px; transition: transform .2s; }
.cm-toggle[data-on="true"]::after { transform: translateX(20px); }
.cm-small { color: #a1a1aa; font-size: 12px; }