/* Cookie consent banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--c-ink, #1a1a18);
  color: #fafaf8;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 9999;
  border-top: 0.5px solid #444;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 300;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
#cookie-banner.visible { transform: translateY(0); }
#cookie-banner p { margin: 0; flex: 1; color: #c8c7c0; }
#cookie-banner a { color: #fafaf8; text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 9px 20px;
  cursor: pointer;
  border: 0.5px solid #555;
  background: none;
  color: #fafaf8;
  white-space: nowrap;
  transition: background 0.2s;
}
.cookie-btn:hover { background: rgba(255,255,255,0.08); }
.cookie-btn.accept {
  background: #fafaf8;
  color: #1a1a18;
  border-color: #fafaf8;
}
.cookie-btn.accept:hover { background: #e8e8e4; }
@media (max-width: 600px) {
  #cookie-banner { flex-direction: column; align-items: flex-start; padding: 20px 24px; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}
