/* ============================================================
   Vorster Consulting — cookie hint banner.
   Fixed at the bottom, above page content but BELOW the a11y
   drawer (z 2600) and fab (z 2400). Centered on desktop so it
   clears the bottom-right a11y fab and the premium bottom-left
   back-to-top; raised on narrow screens where it would overlap
   those corner controls. Dark indigo card, brand-blue primary.
   ============================================================ */

.vck[hidden] { display: none !important; }
.vck {
  position: fixed; left: 0; right: 0; bottom: 24px; z-index: 1500;
  display: flex; justify-content: center;
  padding: 0 16px; pointer-events: none;
}
.vck__card {
  pointer-events: auto;
  width: 100%; max-width: 640px;
  background: #232A52; color: #fff;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  box-shadow: 0 24px 60px -20px rgba(10, 12, 28, .6);
  padding: 20px 22px;
  opacity: 0; transform: translateY(24px);
  transition: opacity .4s ease, transform .4s cubic-bezier(.22, .61, .36, 1);
}
.vck.is-visible .vck__card { opacity: 1; transform: none; }

.vck__text { margin: 0; font-size: 14.5px; line-height: 1.55; color: #E4E7F5; }
.vck__note { margin: 8px 0 0; font-size: 12.5px; line-height: 1.5; color: #9AA0C4; }
.vck__note[hidden] { display: none; }

.vck__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px; margin-top: 16px; }
.vck__btn {
  border: 0; cursor: pointer; font-family: inherit;
  font-weight: 600; font-size: 14.5px; line-height: 1;
  border-radius: 999px; padding: 11px 24px;
}
.vck__btn--primary { background: #1B3FDB; color: #fff; transition: background .2s ease; }
.vck__btn--primary:hover { background: #3D66FF; }
.vck__btn--primary:focus-visible { outline: 3px solid #3D66FF; outline-offset: 2px; }

#wrapwrap .vck__more { color: #C7CDF0; font-weight: 500; font-size: 14px; text-decoration: underline; text-underline-offset: 3px; }
#wrapwrap .vck__more:hover { color: #fff; }

/* On narrow viewports the centered card would overlap the corner
   controls (a11y fab bottom-right, premium back-to-top bottom-left):
   lift it above them. */
@media (max-width: 800px) {
  .vck { bottom: 96px; }
}

@media (prefers-reduced-motion: reduce) {
  .vck__card { transition: none; transform: none; }
}
