/* ── COOKIE BANNER CSS ── */
#ck {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: #fff;
  border-top: 1px solid #dae3f0;
  box-shadow: 0 -4px 20px rgba(26, 95, 216, .1);
  padding: 1rem 2rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.ck-txt h4 {
  font-size: .88rem;
  font-weight: 700;
  color: #1a2640;
  margin-bottom: 3px;
}
.ck-txt p {
  font-size: .78rem;
  color: #4a6280;
  max-width: 640px;
  line-height: 1.5;
}
.ck-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.ck-ess {
  padding: 8px 16px;
  border: 1.5px solid #dae3f0;
  border-radius: 8px;
  background: #fff;
  color: #4a6280;
  font-size: .81rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all .2s;
}
.ck-ess:hover { border-color: #1a5fd8; color: #1a5fd8; }
.ck-all {
  padding: 8px 20px;
  border: none;
  border-radius: 8px;
  background: #1a5fd8;
  color: #fff;
  font-size: .81rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all .2s;
}
.ck-all:hover { background: #0d4bbf; }
