.cookie-consent{
  position:fixed;
  left:16px;
  right:16px;
  bottom:16px;
  z-index:1200;
  display:none;
  justify-content:center;
  pointer-events:none;
}

.cookie-consent.is-visible{
  display:flex;
}

.cookie-consent__panel{
  width:min(980px, 100%);
  display:grid;
  grid-template-columns:minmax(0, 1fr) auto;
  gap:18px;
  align-items:center;
  padding:16px;
  border:1px solid rgba(18,18,30,.12);
  border-radius:18px;
  background:rgba(255,255,255,.97);
  box-shadow:0 18px 50px rgba(22,24,35,.18);
  pointer-events:auto;
  backdrop-filter:blur(14px);
}

.cookie-consent__text{
  display:grid;
  gap:6px;
}

.cookie-consent__title{
  margin:0;
  color:#171525;
  font-size:15px;
  line-height:1.25;
  font-weight:900;
}

.cookie-consent__copy{
  margin:0;
  color:#4b465c;
  font-size:13px;
  line-height:1.55;
}

.cookie-consent__link{
  color:#6d28d9;
  font-weight:800;
  text-decoration:none;
}

.cookie-consent__link:hover{
  text-decoration:underline;
}

.cookie-consent__actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:10px;
}

.cookie-consent__button{
  min-height:42px;
  padding:0 14px;
  border-radius:12px;
  border:1px solid rgba(109,40,217,.18);
  font:inherit;
  font-size:13px;
  line-height:1;
  font-weight:900;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.cookie-consent__button:hover{
  transform:translateY(-1px);
}

.cookie-consent__button--secondary{
  background:#fff;
  color:#4c1d95;
}

.cookie-consent__button--primary{
  border-color:#6d28d9;
  background:#6d28d9;
  color:#fff;
  box-shadow:0 10px 24px rgba(109,40,217,.22);
}

@media (max-width: 720px){
  .cookie-consent{
    left:10px;
    right:10px;
    bottom:10px;
  }

  .cookie-consent__panel{
    grid-template-columns:1fr;
    gap:14px;
    padding:14px;
    border-radius:16px;
  }

  .cookie-consent__actions{
    display:grid;
    grid-template-columns:1fr;
  }

  .cookie-consent__button{
    width:100%;
  }
}
