.cookie-bar{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  padding: .75rem 1rem;
  background: rgba(20,20,20,.95);
  color: #fff;
  font-size: 14px;
  display: flex;
  gap: .75rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -6px 18px rgba(0,0,0,.25);
}
.cookie-bar .cb-text{ line-height: 1.35; }
.cookie-bar .cb-actions{ display:flex; gap:.5rem; flex:0 0 auto; }
.cookie-bar button{
  border: 0;
  padding: .5rem .75rem;
  border-radius: .5rem;
  cursor: pointer;
}
.cookie-bar button.cb-decline{ background: rgba(255,255,255,.15); color:#fff; }
.cookie-bar button.cb-accept{ background:#fff; color:#111; }
