.consent-banner {
  position: fixed;
  z-index: 1000;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  max-width: 760px;
  margin: auto;
  padding: 22px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  color: #fff9f4;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 13px;
  background: #291d20;
  box-shadow: 0 24px 70px rgba(39, 27, 30, 0.32);
}

.consent-banner[hidden] { display: none; }
.consent-copy strong { display: block; margin-bottom: 6px; font-family: "Playfair Display", Georgia, serif; font-size: 1.15rem; }
.consent-copy p { margin: 0; color: #cfc2c4; font-size: 0.78rem; line-height: 1.55; }
.consent-copy a { color: #eba9b5; text-decoration: underline; }
.consent-actions { display: flex; gap: 8px; }

.consent-actions button,
.privacy-settings-button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 7px;
  color: white;
  background: transparent;
  font: 700 0.72rem "DM Sans", sans-serif;
  cursor: pointer;
}

.consent-actions .accept-all { border-color: #a63f55; background: #a63f55; }
.privacy-settings-button { min-height: auto; padding: 0; color: inherit; border: 0; background: none; font-weight: inherit; text-decoration: underline; }

@media (max-width: 680px) {
  .consent-banner { right: 12px; bottom: 12px; left: 12px; grid-template-columns: 1fr; gap: 16px; }
  .consent-actions { display: grid; grid-template-columns: 1fr 1fr; }
}
