.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--green-900);
  color: rgba(255,255,255,0.92);
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 18px rgba(0,0,0,0.2);
}
.cookie-banner p { margin: 0; font-size: 0.88rem; max-width: 60ch; color: rgba(255,255,255,0.85); }
.cookie-banner .actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner .btn-sm {
  padding: 9px 16px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid rgba(255,255,255,0.5);
  background: transparent;
  color: var(--white);
}
.cookie-banner .btn-sm.primary { background: var(--flag-600); border-color: var(--flag-600); }

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,35,27,0.5);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cookie-modal {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  max-width: 480px;
  width: 100%;
}
.cookie-modal h3 { margin-top: 0; }
.cookie-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(20,35,27,0.1);
}
.cookie-row .label { font-weight: 700; font-size: 0.92rem; }
.cookie-row .desc { font-size: 0.82rem; color: rgba(20,35,27,0.65); margin-top: 4px; }
.cookie-row input[type="checkbox"] { width: 20px; height: 20px; flex-shrink: 0; margin-top: 3px; }
.cookie-modal .modal-actions { display: flex; gap: 10px; margin-top: 20px; }

.footer-cookie-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}
.footer-cookie-btn:hover { color: var(--white); }
