/* Cookie banner (bottom bar) */
.cc-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 9999;
  background: #0b1220; color: #fff; border-top: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 -10px 30px rgba(0,0,0,.25);
  font-size: 14px;
}
.cc-inner {
  max-width: 1200px; margin: 0 auto; padding: 12px 16px;
  display: flex; gap: 12px; align-items: center; justify-content: space-between; flex-wrap: wrap;
}
.cc-text { opacity: .9; line-height: 1.4; }
.cc-actions { display: flex; gap: 8px; align-items: center; }
.cc-btn {
  appearance: none; border: 0; border-radius: 8px; padding: 8px 12px; font-weight: 700; cursor: pointer;
}
.cc-accept { background: #10b981; color: #04110a; }
.cc-reject { background: #374151; color: #fff; }
.cc-link { color: #93c5fd; text-decoration: underline; }
@media (max-width: 600px){ .cc-text{flex: 1 1 100%} .cc-actions{width:100%;justify-content:flex-end} }
