/* ===== Cookie banner ===== */
.cookie-banner{
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 860px;
  margin: 0 auto;
  z-index: 9999;
  border-radius: 14px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.85);
  color: #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.light .cookie-banner{
  background: #ffffff;
  color: #111827;
  border-color: #d1d5db;
}

.cookie-banner p{
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

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

.cookie-actions button{
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  font-weight: 700;
}

.cookie-accept{
  background: #16a34a;
  color: #fff;
}

.cookie-decline{
  background: rgba(255,255,255,0.08);
  color: inherit;
  border: 1px solid rgba(255,255,255,0.18);
}

body.light .cookie-decline{
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.15);
}
