/* cookie-consent.css v2 */
#cookieBanner { position:fixed; bottom:24px; right:24px; z-index:99999; width:300px; max-width:calc(100vw - 32px); pointer-events:none; opacity:0; transform:translateY(16px); transition:opacity .4s ease,transform .4s ease; }
#cookieBanner.cc-visible { opacity:1; transform:translateY(0); pointer-events:auto; }
.cc-card { background:#1a1a1a; border-radius:16px; padding:16px; box-shadow:0 12px 48px rgba(0,0,0,.6); border:1px solid rgba(255,255,255,.08); }
.cc-top { display:flex; align-items:flex-start; gap:10px; margin-bottom:12px; }
.cc-icon { width:36px; height:36px; background:rgba(232,98,10,.18); border-radius:9px; display:flex; align-items:center; justify-content:center; color:#E8620A; flex-shrink:0; }
.cc-body { flex:1; }
.cc-title { font-family:var(--display,'DM Sans',sans-serif); font-size:13px; font-weight:800; color:#fff; margin:0 0 5px; }
.cc-desc { font-family:var(--display,'DM Sans',sans-serif); font-size:10px; color:rgba(255,255,255,.6); line-height:1.55; margin:0; }
.cc-link { color:#E8620A; text-decoration:none; font-weight:600; }
.cc-link:hover { text-decoration:underline; }
.cc-manage-panel { margin-bottom:12px; display:flex; flex-direction:column; gap:8px; }
.cc-toggle-row { display:flex; align-items:center; justify-content:space-between; gap:10px; padding:9px 11px; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.08); border-radius:10px; }
.cc-toggle-info { flex:1; }
.cc-toggle-info strong { display:block; font-family:var(--display,'DM Sans',sans-serif); font-size:11px; font-weight:700; color:#fff; margin-bottom:1px; }
.cc-toggle-info span { font-family:var(--display,'DM Sans',sans-serif); font-size:9px; color:rgba(255,255,255,.4); line-height:1.4; }
.cc-switch { position:relative; width:36px; height:20px; flex-shrink:0; cursor:pointer; display:block; }
.cc-switch input { opacity:0; width:0; height:0; position:absolute; }
.cc-switch span { position:absolute; inset:0; background:rgba(255,255,255,.15); border-radius:100px; transition:background .25s; }
.cc-switch span::before { content:''; position:absolute; width:14px; height:14px; left:3px; top:3px; background:#fff; border-radius:50%; transition:transform .25s; }
.cc-switch input:checked + span { background:#E8620A; }
.cc-switch input:checked + span::before { transform:translateX(16px); }
.cc-switch--on span { background:#E8620A; }
.cc-switch--on span::before { transform:translateX(16px); }
.cc-actions { display:flex; gap:6px; align-items:center; }
.cc-btn { font-family:var(--display,'DM Sans',sans-serif); font-size:8px; font-weight:800; letter-spacing:.5px; text-transform:uppercase; padding:8px 4px; border-radius:100px; border:none; cursor:pointer; transition:all .2s; flex:1; text-align:center; white-space:nowrap; min-width:0; overflow:hidden; text-overflow:ellipsis; }
.cc-btn--primary { background:#E8620A; color:#fff; }
.cc-btn--primary:hover { background:#ff7a1a; }
.cc-btn--ghost { background:transparent; color:rgba(255,255,255,.7); border:1.5px solid rgba(255,255,255,.2); }
.cc-btn--ghost:hover { border-color:rgba(255,255,255,.5); color:#fff; }
.cc-btn--outline { background:transparent; color:#E8620A; border:1.5px solid #E8620A; }
.cc-btn--outline:hover { background:rgba(232,98,10,.1); }
@media(max-width:480px){ #cookieBanner{bottom:16px;right:16px;left:16px;width:auto;} }
