#cc-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 99999;
  width: 340px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.08);
  font-family: 'Rubik', sans-serif;
  transform: translateY(calc(100% + 32px));
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
}
#cc-banner.cc-visible { transform: translateY(0); opacity: 1; }
#cc-banner.cc-hide    { transform: translateY(calc(100% + 32px)); opacity: 0; transition: transform 0.3s ease, opacity 0.25s ease; }

.cc-inner { padding: 22px 22px 18px; }

.cc-text { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.cc-icon { flex-shrink: 0; color: #3B82F6; margin-top: 1px; }
.cc-copy {}
.cc-title { display: block; font-size: 14px; font-weight: 600; color: #111827; margin-bottom: 6px; }
.cc-body  { font-size: 12px; color: #6B7280; margin: 0; line-height: 1.6; }

.cc-actions { display: flex; flex-direction: row; gap: 8px; }
.cc-btn {
  font-family: 'Rubik', sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-align: center;
  line-height: 1;
  width: 100%;
}
.cc-accept { background: #3B82F6; color: #fff; border: 1px solid transparent; }
.cc-accept:hover { background: #2B6CD6; }
.cc-reject { background: transparent; color: #9CA3AF; border: 1px solid #E5E7EB; }
.cc-reject:hover { color: #374151; border-color: #9CA3AF; }
.cc-link { color: #3B82F6; text-decoration: underline; text-underline-offset: 2px; }
.cc-link:hover { color: #2B6CD6; }

@media (max-width: 400px) {
  #cc-banner { left: 16px; right: 16px; width: auto; bottom: 16px; }
}
