#cc-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1A2B23;
  color: #e0ede6;
  z-index: 9000;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
}
.cc-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.cc-text { flex: 1; min-width: 200px; }
.cc-text strong { display: block; font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 0.25rem; }
.cc-text p { font-size: 0.78rem; color: rgba(255,255,255,0.65); margin: 0; }
.cc-link { background: none; border: none; color: #F0A040; text-decoration: underline; cursor: pointer; font-size: inherit; padding: 0; }
.cc-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center; }
.cc-btn {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
  border: none;
}
.cc-btn--primary { background: #2E7D56; color: #fff; }
.cc-btn--primary:hover { background: #1A5C3A; }
.cc-btn--outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.cc-btn--outline:hover { border-color: #fff; }
.cc-btn--ghost { background: transparent; color: rgba(255,255,255,0.6); }
.cc-btn--ghost:hover { color: #fff; }

#cc-panel {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.cc-category { background: rgba(255,255,255,0.05); border-radius: 6px; padding: 0.75rem; }
.cc-category__label { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; margin-bottom: 0.35rem; }
.cc-category__name { font-size: 0.82rem; font-weight: 600; color: #fff; }
.cc-category__desc { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin: 0; line-height: 1.5; }
.cc-panel-actions { display: flex; align-items: flex-end; }
.cc-panel-actions .cc-btn { align-self: flex-end; }

@media (max-width: 600px) {
  .cc-inner { flex-direction: column; align-items: flex-start; }
  .cc-actions { width: 100%; }
  .cc-btn { flex: 1; text-align: center; }
}
