.consent-banner {
  position: fixed;
  z-index: 10000;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  color: #f8f5ef;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.28);
}

.consent-banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  max-width: 1160px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
}

.consent-banner p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.consent-banner__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 0.65rem;
}

.consent-banner button {
  min-height: 42px;
  padding: 0.65rem 1rem;
  color: inherit;
  font: inherit;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  cursor: pointer;
}

.consent-banner__reject { background: transparent; }
.consent-banner__accept { color: #1a1a1a !important; background: #f0d7a4; border-color: #f0d7a4 !important; }

@media (max-width: 680px) {
  .consent-banner__content { align-items: stretch; flex-direction: column; }
  .consent-banner__actions { display: grid; grid-template-columns: 1fr 1fr; }
}
