#cookieBanner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #111;
  color: #fff;
  padding: 14px 14px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  display: none;
  z-index: 9999;
  max-width: 980px;
  margin: 0 auto;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
#cookieBanner p { margin: 0 0 10px; color: #ddd; font-size: 14px; line-height: 1.35; }
#cookieBanner .row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; justify-content: space-between; }
#cookieBanner .btns { display:flex; gap:10px; flex-wrap:wrap; }
.cc-btn { border: 0; border-radius: 12px; padding: 10px 12px; cursor: pointer; font-weight: 600; }
.cc-primary { background:#fff; color:#111; }
.cc-secondary { background:#2a2a2a; color:#fff; }
.cc-link { background:transparent; color:#fff; text-decoration: underline; padding: 10px 8px; }
#cookieModal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: none;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
#cookieModal .box {
  width: min(720px, 100%);
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
#cookieModal .item { display:flex; justify-content:space-between; gap:14px; padding: 12px 0; border-top: 1px solid #eee; }
#cookieModal .item:first-of-type { border-top: 0; }
#cookieModal .muted { color:#666; font-size: 13px; line-height: 1.35; }
#cookieModal .actions { display: flex; gap: 10px; justify-content:flex-end; margin-top: 14px; flex-wrap: wrap; }
