.consent-banner{
  position:fixed;
  left:24px;
  right:24px;
  bottom:24px;
  z-index:1000;
  max-width:980px;
  margin:0 auto;
  background:#ffffff;
  color:#16181d;
  border:1px solid #e7e8ee;
  border-radius:14px;
  box-shadow:0 24px 70px -28px rgba(20,20,43,.35);
  padding:22px;
  display:none;
  gap:22px;
  align-items:center;
}
.consent-banner.is-visible{display:flex;}
.consent-copy{flex:1;min-width:0;}
.consent-copy strong{
  display:block;
  font-size:1rem;
  margin-bottom:6px;
}
.consent-copy p{
  color:#6b7280;
  font-size:.94rem;
  line-height:1.55;
  margin:0;
}
.consent-copy a{
  color:#4f46e5;
  font-weight:600;
  text-decoration:none;
}
.consent-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.consent-button{
  border:1px solid #e7e8ee;
  border-radius:10px;
  padding:11px 16px;
  font:inherit;
  font-size:.94rem;
  font-weight:700;
  cursor:pointer;
  background:#fff;
  color:#16181d;
}
.consent-button.primary{
  border-color:#4f46e5;
  background:linear-gradient(135deg,#4f46e5 0%,#7c3aed 100%);
  color:#fff;
  box-shadow:0 8px 24px -12px rgba(79,70,229,.65);
}
.consent-button:hover{border-color:#4f46e5;}
.footer-consent-button{
  appearance:none;
  border:0;
  background:none;
  padding:0;
  margin:0;
  color:#4f46e5;
  font:inherit;
  font-weight:600;
  cursor:pointer;
}
.footer-consent-button:hover{text-decoration:underline;}
@media(max-width:700px){
  .consent-banner{
    left:14px;
    right:14px;
    bottom:14px;
    flex-direction:column;
    align-items:stretch;
  }
  .consent-actions{justify-content:stretch;}
  .consent-button{flex:1;}
}
