/* ==============================
   Cookie Consent Banner
============================== */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 800px;
  width: calc(100% - 40px);
  background: var(--card);
  border: 1px solid rgba(148,163,184,.25);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 9999;
  animation: slideUp .4s ease;
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  flex: 1;
}

.cookie-banner .actions {
  display: flex;
  gap: 10px;
}

.cookie-banner .btn {
  font-size: 13px;
  padding: 6px 14px;
}

@keyframes slideUp {
  from { transform: translate(-50%, 100%); opacity: 0; }
  to { transform: translate(-50%, 0); opacity: 1; }
}
