/* NajlepszeKonta.pl — minimalistyczny komunikat prywatności/cookies */
.nk-cookie-notice[hidden]{display:none!important}
.nk-cookie-notice{
  position:fixed;
  left:50%;
  bottom:14px;
  transform:translateX(-50%) translateY(7px);
  z-index:1300;
  width:min(1160px,calc(100vw - 48px));
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:10px 11px 10px 16px;
  border:1px solid #dfe7f0;
  border-radius:14px;
  background:rgba(255,255,255,.985);
  color:#24344d;
  box-shadow:0 8px 24px rgba(8,27,56,.075);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  opacity:0;
  transition:opacity .18s ease,transform .18s ease,bottom .18s ease;
}
.nk-cookie-notice.is-visible{opacity:1;transform:translateX(-50%) translateY(0)}
.nk-cookie-notice__text{
  margin:0;
  flex:1 1 auto;
  min-width:0;
  color:#65748a;
  font-size:13.5px;
  line-height:1.42;
}
.nk-cookie-notice__text a{
  color:#15913a;
  font-weight:750;
  text-decoration:none;
  text-underline-offset:2px;
}
.nk-cookie-notice__text a:hover{text-decoration:underline}
.nk-cookie-notice__actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  flex:0 0 auto;
}
.nk-cookie-notice__ok{
  min-height:36px;
  padding:0 16px;
  border:1px solid #bde8c9;
  border-radius:10px;
  background:#eefbf2;
  color:#168b39;
  font:inherit;
  font-size:13.5px;
  font-weight:850;
  cursor:pointer;
  white-space:nowrap;
  box-shadow:none;
  transition:background .15s ease,border-color .15s ease,transform .15s ease;
}
.nk-cookie-notice__ok:hover{
  background:#e3f8e9;
  border-color:#9edeb1;
  transform:translateY(-1px);
}
.nk-cookie-notice__ok:focus-visible,
.nk-cookie-notice__text a:focus-visible{
  outline:3px solid rgba(18,99,241,.24);
  outline-offset:2px;
}
body.nk-compare-bar-visible .nk-cookie-notice{bottom:92px}

@media(max-width:980px){
  .nk-cookie-notice{
    width:calc(100vw - 28px);
    gap:14px;
    padding:10px 10px 10px 14px;
  }
  .nk-cookie-notice__text{font-size:13px}
  .nk-cookie-notice__ok{min-height:35px;padding:0 14px;font-size:13px}
}

@media(max-width:680px){
  .nk-cookie-notice{
    width:calc(100vw - 20px);
    left:10px;
    right:10px;
    bottom:10px;
    transform:translateY(7px);
    align-items:flex-end;
    gap:10px;
    padding:11px 11px 10px 13px;
    border-radius:13px;
  }
  .nk-cookie-notice.is-visible{transform:translateY(0)}
  .nk-cookie-notice__text{font-size:12.25px;line-height:1.4}
  .nk-cookie-notice__ok{min-height:34px;padding:0 12px;font-size:12.5px;border-radius:9px}
  body.nk-compare-bar-visible .nk-cookie-notice{bottom:110px}
}

@media(max-width:430px){
  .nk-cookie-notice{align-items:stretch;flex-direction:column;gap:8px}
  .nk-cookie-notice__actions{justify-content:flex-end}
}

@media(prefers-reduced-motion:reduce){
  .nk-cookie-notice{transition:none}
  .nk-cookie-notice__ok{transition:none}
}
