/* CK — Cookie consent banner */

.CK-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2147483500;
  background: #1a2236;
  color: #f0f2f5;
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
  padding: 0;
  transform: translateY(0);
  opacity: 1;
  transition: transform .35s ease, opacity .35s ease;
}

.CK-banner--hidden {
  transform: translateY(100%);
  opacity: 0;
}

.CK-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 24px;
}

.CK-text {
  flex: 1 1 0%;
  font-size: 14px;
  line-height: 1.5;
}

.CK-text p {
  margin: 0;
}

.CK-link {
  color: #7eb8ff;
  text-decoration: underline;
  white-space: nowrap;
}
.CK-link:hover {
  color: #b0d4ff;
}

.CK-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.CK-btn {
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s, transform .1s;
  white-space: nowrap;
}
.CK-btn:active {
  transform: scale(.97);
}

.CK-btn--accept {
  background: #2563eb;
  color: #fff;
}
.CK-btn--accept:hover {
  background: #1d4ed8;
}

.CK-btn--refuse {
  background: rgba(255,255,255,.12);
  color: #d0d5e0;
  border: 1px solid rgba(255,255,255,.18);
}
.CK-btn--refuse:hover {
  background: rgba(255,255,255,.18);
  color: #fff;
}

/* Mobile : empiler texte + boutons */
@media (max-width: 600px) {
  .CK-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px 16px;
  }
  .CK-actions {
    justify-content: stretch;
  }
  .CK-btn {
    flex: 1;
    text-align: center;
  }
}
