/* ── Cookie Consent Banner ─────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #dce6f0;
  box-shadow: 0 -4px 16px rgba(13, 31, 78, 0.12);
  z-index: 9999;
  display: none;
}
.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.cookie-banner-text {
  flex: 1;
  font-size: 0.875rem;
  color: #0d1f4e;
  line-height: 1.55;
}
.cookie-banner-text a {
  color: #00aaff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 150ms ease;
  font-family: inherit;
}
.cookie-btn-accept {
  background: #0d1f4e;
  color: #ffffff;
  border: none;
}
.cookie-btn-accept:hover { background: #162d6a; }
.cookie-btn-reject {
  background: #ffffff;
  color: #0d1f4e;
  border: 1px solid #0d1f4e;
}
.cookie-btn-reject:hover { background: #f7f9fc; }

@media (max-width: 640px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .cookie-banner-buttons { flex-direction: column; }
  .cookie-btn { width: 100%; text-align: center; }
}
