.consent-banner {
  position: fixed;
  inset: auto 0 0;
  z-index: 10000;
  padding: 18px 24px;
  background: #1a2332;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 -8px 30px rgba(0,0,0,.18);
  font-family: 'Inter', sans-serif;
}

.consent-banner__inner {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.consent-banner__copy { max-width: 720px; }
.consent-banner__title { margin: 0 0 5px; font-size: 16px; font-weight: 700; }
.consent-banner__text { margin: 0; color: rgba(255,255,255,.82); font-size: 14px; line-height: 1.55; }
.consent-banner__text a { color: #f0d27a; text-decoration: underline; }
.consent-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }

.consent-button {
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font: 600 14px/1 'Inter', sans-serif;
  cursor: pointer;
}

.consent-button--accept { background: #d9b657; border-color: #d9b657; color: #151b24; }
.consent-button:hover { filter: brightness(1.08); }
.consent-button:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }

.consent-settings {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 9998;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: #1a2332;
  color: #fff;
  font: 600 11px/1.2 'Inter', sans-serif;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,.2);
}

@media (max-width: 700px) {
  .consent-banner { padding: 18px 16px; }
  .consent-banner__inner { align-items: stretch; flex-direction: column; gap: 14px; }
  .consent-banner__actions { width: 100%; }
  .consent-button { flex: 1; padding-inline: 10px; }
}
