.privacy-consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  max-width: 980px;
  margin: 0 auto;
  padding: 16px;
  color: #f8fafc;
  background: rgba(8, 12, 10, 0.96);
  border: 1px solid rgba(82, 211, 166, 0.35);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
}

.privacy-consent-copy {
  display: grid;
  gap: 6px;
  max-width: 660px;
}

.privacy-consent-copy p {
  margin: 0;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.45;
}

.privacy-consent-copy label {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #e2e8f0;
  font-size: 0.95rem;
}

.privacy-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.privacy-consent-actions button {
  min-height: 42px;
  padding: 10px 14px;
  color: #f8fafc;
  background: transparent;
  border: 1px solid rgba(248, 250, 252, 0.35);
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.privacy-consent-actions button[data-privacy-action="accept"],
.privacy-consent-actions button[data-privacy-action="save"] {
  color: #06130e;
  background: #52d3a6;
  border-color: #52d3a6;
}

@media (max-width: 720px) {
  .privacy-consent-banner {
    display: grid;
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .privacy-consent-actions {
    justify-content: stretch;
  }

  .privacy-consent-actions button {
    flex: 1 1 100%;
  }
}
