.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10050;
  padding: 12px 20px;
  background: var(--surface, #fff);
  border-top: 1px solid var(--border, #e4e4de);
  box-shadow: 0 -4px 20px rgba(11, 20, 36, 0.08);
  font-family: var(--font-sans, system-ui, sans-serif);
}
.cookie-banner[hidden] {
  display: none !important;
}
.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  max-width: var(--maxw, 1200px);
  margin: 0 auto;
}
.cookie-banner__copy {
  flex: 1;
  min-width: min(100%, 280px);
}
.cookie-banner__title {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink, #0b1424);
}
.cookie-banner__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-secondary, #525252);
}
.cookie-banner__text a {
  color: var(--accent, #0066ff);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__actions {
  display: flex;
  flex-shrink: 0;
  gap: 8px;
}
.cookie-banner__actions .btn {
  height: 36px;
  padding: 0 16px;
  font-size: 13px;
  white-space: nowrap;
}
.cookie-manage-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-muted, #737373);
  text-decoration: underline;
  text-underline-offset: 2px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}
.cookie-manage-link:hover {
  color: var(--accent, #0066ff);
}
@media (max-width: 640px) {
  .cookie-banner {
    padding: 12px 16px;
  }
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner__copy {
    min-width: 0;
  }
  .cookie-banner__actions {
    width: 100%;
  }
  .cookie-banner__actions .btn {
    flex: 1;
    justify-content: center;
  }
}
