/* nk-consent.css — банер згоди на cookie (д102): нижня панель, не блокує сайт */
.nk-consent { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1200; background: #fff; border-top: 1px solid #E5E7EB; box-shadow: 0 -8px 24px rgba(0, 0, 0, .08); font-size: 14px; line-height: 1.45; color: #111; }
.nk-consent[hidden] { display: none; }
.nk-consent__inner { max-width: 1140px; margin: 0 auto; padding: 16px 20px; }
.nk-consent__main { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.nk-consent__text { flex: 1 1 420px; }
.nk-consent__text p { margin: 4px 0 0; color: #374151; }
.nk-consent__text a { color: #111; text-decoration: underline; }
.nk-consent__title { font-size: 15px; }
.nk-consent__actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.nk-consent__btn { font-family: inherit; font-size: 14px; font-weight: 600; line-height: 20px; padding: 10px 18px; border-radius: 8px; border: 1px solid #111; cursor: pointer; background: #fff; color: #111; }
.nk-consent__btn--primary { background: #111; color: #fff; }
.nk-consent__btn--primary:hover { background: #000; }
.nk-consent__btn--secondary:hover { background: #F3F4F6; }
.nk-consent__btn--link { border-color: transparent; background: transparent; text-decoration: underline; font-weight: 500; padding-left: 6px; padding-right: 6px; }
.nk-consent__btn:focus-visible { outline: 2px solid #111; outline-offset: 2px; }
.nk-consent__panel { border-top: 1px solid #E5E7EB; margin-top: 14px; padding-top: 14px; }
.nk-consent__panel[hidden] { display: none; }
.nk-consent__gpc { margin: 0 0 12px; padding: 8px 12px; background: #F3F4F6; border-radius: 8px; color: #374151; }
.nk-consent__cats { list-style: none; margin: 0 0 14px; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px 24px; }
.nk-consent__cat p { margin: 4px 0 0; color: #6B7280; font-size: 13px; }
.nk-consent__cat-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 0; cursor: pointer; }
.nk-consent__cat-name { font-weight: 600; }
.nk-consent__always { font-size: 12px; color: #6B7280; }
.nk-consent__switch { appearance: none; -webkit-appearance: none; width: 40px; height: 22px; border-radius: 11px; background: #D1D5DB; position: relative; cursor: pointer; margin: 0; transition: background .2s; }
.nk-consent__switch:before { content: ""; position: absolute; top: 2px; left: 2px; width: 18px; height: 18px; border-radius: 50%; background: #fff; transition: transform .2s; }
.nk-consent__switch:checked { background: #111; }
.nk-consent__switch:checked:before { transform: translateX(18px); }
.nk-consent__switch:focus-visible { outline: 2px solid #111; outline-offset: 2px; }
@media (max-width: 767px) {
  .nk-consent__inner { padding: 14px 16px; }
  .nk-consent__actions { width: 100%; }
  .nk-consent__actions .nk-consent__btn { flex: 1 1 auto; text-align: center; }
  body.nk-consent-open { padding-bottom: 0; }
}
@media (prefers-reduced-motion: reduce) { .nk-consent__switch, .nk-consent__switch:before { transition: none; } }
