/* FTPK Cookie Banner — sticky bottom black bar */
:root{
  --ftpk-cb-bg:#000; --ftpk-cb-fg:#fff;
  --ftpk-cb-btn-bg:#fff; --ftpk-cb-btn-fg:#000;
  --ftpk-cb-z:999998;
}
.ftpk-cb{ position:fixed; left:0; right:0; bottom:0; background:var(--ftpk-cb-bg); color:var(--ftpk-cb-fg); z-index:var(--ftpk-cb-z); padding:12px 16px; box-shadow:0 -6px 16px rgba(0,0,0,.3); }
.ftpk-cb__inner{ max-width:1200px; margin:0 auto; display:flex; align-items:center; gap:16px; }
.ftpk-cb__text{ flex:1 1 auto; font-size:14px; line-height:1.5; }
.ftpk-cb__btn{ flex:0 0 auto; appearance:none; border:none; padding:10px 14px; border-radius:999px; background:var(--ftpk-cb-btn-bg); color:var(--ftpk-cb-btn-fg); font-weight:600; cursor:pointer; }
@media (max-width:640px){ .ftpk-cb__inner{ flex-direction:column; align-items:stretch; gap:10px; } .ftpk-cb__btn{ width:100%; } }
