/* ═══ COOKIE CONSENT BANNER ═══ */
.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--surface-2, #111827);
  border-top: 1px solid var(--border, #1f2d3d);
  padding: 1.25rem 1.5rem;
  display: none;
  animation: consent-slide-up .35s ease-out;
}
.consent-banner.is-visible {
  display: block;
}
@keyframes consent-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.consent-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.consent-text {
  flex: 1 1 400px;
  font-size: .9rem;
  line-height: 1.55;
  color: var(--text-mid, #94a3b8);
}
.consent-text a {
  color: var(--green, #22c55e);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.consent-actions {
  display: flex;
  gap: .75rem;
  flex-shrink: 0;
}
.consent-btn {
  padding: .55rem 1.25rem;
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background .2s, color .2s;
}
.consent-btn-accept {
  background: var(--green, #22c55e);
  color: #fff;
}
.consent-btn-accept:hover {
  background: var(--green-dim, #16a34a);
}
.consent-btn-reject {
  background: transparent;
  color: var(--text-mid, #94a3b8);
  border: 1px solid var(--border, #1f2d3d);
}
.consent-btn-reject:hover {
  background: var(--surface-3, #1a2332);
  color: #fff;
}
@media (max-width: 600px) {
  .consent-inner {
    flex-direction: column;
    text-align: center;
  }
  .consent-actions {
    width: 100%;
    justify-content: center;
  }
}
