.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #ccc;
  padding: 1rem;
  font-size: .95rem;
  display: none;
  flex-direction: column;
  gap: .5rem;
  z-index: 9999;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.05);
}

.cookie-banner p {
  margin: 0;
  color: var(--fg);
  text-align: center;
}

.cookie-banner a {
  color: var(--brand);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.cookie-actions button {
  background: var(--brand);
  color: #fff;
  border: none;
  padding: .5rem 1rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: .25rem;
}

.cookie-custom {
  background: none;
  border: none;
  color: var(--brand);
  text-decoration: underline;
  font-weight: 600;
  cursor: pointer;
}
