.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  max-width: 640px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.cookie-banner p {
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-actions button {
  font-family: "Overpass", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 9px 16px;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid var(--border);
}

.cookie-decline {
  background: transparent;
  color: var(--text-dim);
}

.cookie-decline:hover {
  border-color: var(--text-dim);
  color: var(--text);
}

.cookie-accept {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
}

.cookie-accept:hover {
  background: #ffe27a;
}

@media (max-width: 560px) {
  .cookie-banner { flex-direction: column; align-items: stretch; }
  .cookie-actions { justify-content: flex-end; }
}
