.consent-banner {
  position: fixed;
  z-index: 100000;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  max-width: 720px;
  margin: 0 auto;
  padding: 16px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #f5f7ee;
  background: #173029;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0,0,0,.24);
  font-family: Arial, sans-serif;
}
.consent-copy { display: grid; gap: 4px; }
.consent-copy strong { font-size: 16px; }
.consent-copy p { margin: 0; color: #dbe5dd; font-size: 14px; line-height: 1.45; }
.consent-actions { display: flex; flex: 0 0 auto; gap: 8px; }
.consent-actions button {
  min-height: 44px;
  padding: 0 16px;
  color: inherit;
  background: transparent;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 6px;
  font: 700 14px/1 Arial, sans-serif;
  cursor: pointer;
}
.consent-actions .consent-accept { color: #173029; background: #d4ad2e; border-color: #d4ad2e; }
.consent-actions button:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
@media (max-width: 560px) {
  .consent-banner { align-items: stretch; flex-direction: column; }
  .consent-actions > * { flex: 1; }
}

