.consent-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 9999;
  display: grid;
  gap: 16px;
  max-width: 560px;
  margin-left: auto;
  padding: 18px;
  border: 1px solid rgba(16, 24, 40, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.18);
  color: #111827;
}

.consent-banner__copy {
  display: grid;
  gap: 8px;
}

.consent-banner__copy strong {
  font-size: 1rem;
}

.consent-banner__copy p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
}

.consent-banner__copy a {
  color: #425fd6;
  text-decoration: none;
}

.consent-banner__copy a:hover {
  text-decoration: underline;
}

.consent-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.consent-btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.consent-btn--primary {
  background: #6f8cf7;
  color: #ffffff;
}

.consent-btn--ghost {
  background: #eef2ff;
  color: #243b8f;
}

.consent-manage {
  appearance: none;
  border: 1px solid rgba(16, 24, 40, 0.12);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
  color: #111827;
  font: inherit;
  font-size: 0.9rem;
  line-height: 1.2;
  cursor: pointer;
}

.consent-footer {
  padding: 0 20px 24px;
}

.consent-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 640px) {
  .consent-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 16px;
    border-radius: 18px;
  }

  .consent-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .consent-btn {
    width: 100%;
    text-align: center;
  }

  .consent-footer {
    padding: 0 12px 16px;
  }

  .consent-footer__inner {
    justify-content: flex-start;
  }
}
