.cc-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  z-index: 9000; max-width: 920px; margin: 0 auto;
  background: #1f1611; color: #f5ece0;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  padding: 24px 28px;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.95rem;
  transform: translateY(140%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.cc-banner.is-open { transform: translateY(0); }
.cc-banner-grid {
  display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center;
}
.cc-banner h3 {
  font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; color: #fff;
  font-family: 'Inter', sans-serif;
}
.cc-banner p { color: rgba(245,236,224,0.78); line-height: 1.55; }
.cc-banner a { color: #e58866; text-decoration: underline; }
.cc-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cc-btn {
  padding: 12px 22px; border-radius: 6px; font-family: 'Inter', sans-serif;
  font-size: 0.92rem; font-weight: 600; cursor: pointer; border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.cc-btn--accept { background: #c44d2e; color: #fff; }
.cc-btn--accept:hover { background: #a13d22; }
.cc-btn--reject { background: transparent; color: #f5ece0; border-color: rgba(255,255,255,0.18); }
.cc-btn--reject:hover { border-color: rgba(255,255,255,0.4); }
.cc-btn--settings { background: transparent; color: #f5ece0; border-color: rgba(255,255,255,0.18); }
.cc-btn--settings:hover { border-color: rgba(255,255,255,0.4); }

.cc-panel {
  position: fixed; inset: 0; z-index: 9100;
  background: rgba(0,0,0,0.6); display: none;
  align-items: center; justify-content: center; padding: 24px;
}
.cc-panel.is-open { display: flex; }
.cc-panel-card {
  background: #2b1d15; color: #f5ece0;
  border-radius: 12px; max-width: 560px; width: 100%;
  padding: 32px; border: 1px solid rgba(255,255,255,0.08);
}
.cc-panel-card h3 { color: #fff; margin-bottom: 12px; font-family: 'Inter', sans-serif; }
.cc-panel-card p { color: rgba(245,236,224,0.78); margin-bottom: 16px; }
.cc-category {
  display: grid; grid-template-columns: 1fr auto; gap: 12px;
  padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.08);
}
.cc-category strong { display: block; color: #fff; margin-bottom: 4px; }
.cc-category small { color: rgba(245,236,224,0.6); font-size: 0.84rem; }
.cc-toggle {
  width: 44px; height: 24px; border-radius: 999px;
  background: rgba(255,255,255,0.15); position: relative; cursor: pointer;
  border: 0; padding: 0; transition: background 0.2s ease;
}
.cc-toggle::before {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 18px; height: 18px; border-radius: 50%; background: #fff;
  transition: transform 0.2s ease;
}
.cc-toggle.is-on { background: #c44d2e; }
.cc-toggle.is-on::before { transform: translateX(20px); }
.cc-toggle.is-locked { opacity: 0.55; cursor: not-allowed; }
.cc-panel-actions { display: flex; gap: 10px; margin-top: 24px; justify-content: flex-end; flex-wrap: wrap; }

@media (max-width: 640px) {
  .cc-banner-grid { grid-template-columns: 1fr; }
  .cc-banner-actions { flex-wrap: wrap; }
  .cc-btn { flex: 1 1 calc(50% - 5px); }
}
