/* cookie-consent.css */
.cc-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 9999;
  background: #0f0f0f; color: #fff; padding: 16px 20px; box-shadow: 0 -4px 20px rgba(0,0,0,.2);
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
}
.cc-banner .cc-text { flex: 1; min-width: 260px; font-size: 14px; line-height: 1.5; }
.cc-banner .cc-actions { display: flex; gap: 10px; }
.cc-btn { border: 0; padding: 10px 14px; border-radius: 6px; cursor: pointer; font-size: 14px; }
.cc-btn.primary { background: #b08a2e; color: #fff; }
.cc-btn.secondary { background: #fff; color: #333; }
.cc-link { color: #ffd972; text-decoration: underline; }
@media (prefers-color-scheme: light) {
  .cc-banner { background: #111; color: #fff; }
}
