/* ==========================================================================
   Новое Летово — лендинг акции
   Стили вынесены из прототипа Claude Design и разобраны на классы.
   Адаптив (планшет <=1024px, мобильный <=640px) сохранён из прототипа.
   ========================================================================== */

/* ===== БАЗА ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--nl-font);
  background: #fff;
  color: #1A1817;
  -webkit-font-smoothing: antialiased;
}

input, textarea { font-family: inherit; }
::selection { background: #AD6738; color: #fff; }

@keyframes nlpulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.06); } }
@keyframes nlblink { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

/* ===== ПЕРЕМЕННЫЕ ===== */
:root {
  --nl-accent: #AD6738;
  --nl-accent-light: #E9B591;
  --nl-dark: #1A1817;
  --nl-darker: #141210;
  --nl-cream: #FAF7F2;
  --nl-border: #EDE7DF;
  --nl-border-input: #E2DCD3;
  --nl-muted: #8E877D;
  --nl-muted-light: #A39C92;
  --nl-max-width: 1300px;

  /* Значения по умолчанию для редактируемых из админки параметров.
     Блок :root от ThemeSettings (если заполнен) переопределяет их в <head>. */
  --nl-font: 'Golos Text', system-ui, sans-serif;
  --nl-h1: 78px;
  --nl-h2: 44px;
  --nl-h2fix: 40px;
  --nl-hsub: 24px;
  --nl-text-muted: 16px;
  --nl-gap-hero: 22px;
  --nl-gap-adv: 90px;
  --nl-gap-filter: 70px;
  --nl-gap-call: 90px;
}

/* ===== ОБЁРТКА ===== */
.nl-page {
  background: #fff;
  width: var(--nl-max-width);
  max-width: 100%;
  margin: 0 auto;
  overflow: clip;
}

.nl-section {
  max-width: var(--nl-max-width);
  margin: 0 auto;
  padding: 0 10px;
}

.nl-section--hero { margin-top: 14px; }
.nl-section--flats { margin-top: var(--nl-gap-hero); }
.nl-section--adv { margin-top: var(--nl-gap-adv); }
.nl-section--filter { margin-top: var(--nl-gap-filter); }
.nl-section--call { margin-top: var(--nl-gap-call); }

/* ===== ШАПКА ===== */
.nl-header-wrap {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #ECE7E0;
}

.nl-header {
  max-width: var(--nl-max-width);
  margin: 0 auto;
  padding: 0 10px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.nl-logo { display: flex; flex-direction: column; line-height: 1; flex-shrink: 0; }
.nl-logo__name { font-weight: 800; font-size: 18px; letter-spacing: .02em; }
.nl-logo__tagline {
  font-weight: 500; font-size: 9px; letter-spacing: .30em;
  color: var(--nl-accent); margin-top: 4px;
}

.nl-header__right { margin-left: auto; display: flex; align-items: center; gap: 22px; }
.nl-hd-contact { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.2; }
.nl-hd-contact__phone {
  font-weight: 700; font-size: 15px; color: var(--nl-dark);
  text-decoration: none; white-space: nowrap;
}
.nl-hd-contact__hours { font-size: 10.5px; color: var(--nl-muted-light); }
/* Ссылка "Заказать звонок" — только для мобильного, на десктопе скрыта */
.nl-hd-contact__call-link { display: none; }

/* ===== КНОПКИ ===== */
.nl-btn {
  display: inline-block;
  text-decoration: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  text-align: center;
}

.nl-btn--accent { background: var(--nl-accent); color: #fff; }
.nl-btn--dark { background: var(--nl-dark); color: #fff; }
.nl-btn--outline { border: 1px solid rgba(255, 255, 255, .28); color: #fff; background: transparent; }

.nl-btn--sm { font-weight: 600; font-size: 13px; padding: 13px 22px; border-radius: 30px; }
.nl-btn--md { font-weight: 600; font-size: 14px; padding: 16px 30px; border-radius: 32px; white-space: nowrap; }
.nl-btn--lg { font-weight: 700; font-size: 17px; padding: 19px 42px; border-radius: 38px; }
.nl-btn--hero { box-shadow: 0 14px 34px rgba(173, 103, 56, .5); }

.nl-link-underline {
  color: #fff; text-decoration: none; font-weight: 600; font-size: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, .4); padding-bottom: 3px;
}

/* ===== ГЕРОЙ / ПРОМО-БЛОК ===== */
.nl-hero {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 660px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 52px 56px;
  background-size: cover;
  background-position: center;
  width: 100%;
}

.nl-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.nl-hero__content { max-width: 660px; }

.nl-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(173, 103, 56, .9);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  padding: 9px 16px;
  border-radius: 30px;
}

.nl-badge__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #fff; animation: nlblink 1.4s infinite;
}

.nl-h1 {
  color: #fff; font-weight: 800; font-size: var(--nl-h1); line-height: .92;
  letter-spacing: -.02em; margin-top: 22px;
}

.nl-hsub {
  color: rgba(255, 255, 255, .9); font-weight: 500; font-size: var(--nl-hsub);
  margin-top: 20px; line-height: 1.25;
}
.nl-hsub b { color: #fff; }

.nl-hero__actions {
  display: flex; align-items: center; gap: 18px;
  margin-top: 36px; flex-wrap: wrap;
}

.nl-herocard {
  flex-shrink: 0;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 20px;
  padding: 28px 30px;
  width: 261px;
  text-align: center;
}

.nl-herocard__label { color: rgba(255, 255, 255, .8); font-size: 12px; letter-spacing: .06em; font-weight: 600; }
.nl-herocard__value {
  color: #fff; font-weight: 900; font-size: 60px; line-height: 1;
  margin-top: 8px; animation: nlpulse 2.6s ease-in-out infinite;
}
.nl-herocard__unit { font-size: 26px; }
.nl-herocard__note { color: rgba(255, 255, 255, .78); font-size: 13px; margin-top: 8px; line-height: 1.35; }

/* Плашки-статистика внизу героя */
.nl-stats { display: flex; gap: 34px; color: #fff; flex-wrap: wrap; }
.nl-stats__value { font-weight: 800; font-size: 26px; }
.nl-stats__label { font-size: 12px; color: rgba(255, 255, 255, .7); }
.nl-stats__divider { width: 1px; background: rgba(255, 255, 255, .22); }

/* ===== БЛОК ИПОТЕКИ ===== */
.nl-mortgage {
  background: var(--nl-dark);
  border-radius: 24px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 54px;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.nl-decor {
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(173, 103, 56, .35), transparent 70%);
}
.nl-decor--mortgage { top: -82px; left: 1075px; }
.nl-decor--call { left: -70px; top: 225px; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(173, 103, 56, .28), transparent 70%); }

.nl-badge--muted {
  background: rgba(173, 103, 56, .18);
  color: var(--nl-accent-light);
}

.nl-h2 {
  color: #fff; font-weight: 800; font-size: var(--nl-h2); line-height: 1.04;
  letter-spacing: -.01em; margin-top: 20px; text-wrap: pretty;
}

.nl-text-muted {
  color: rgba(255, 255, 255, .66); font-size: var(--nl-text-muted); line-height: 1.6;
  margin-top: 18px; max-width: 460px; text-wrap: pretty;
}

.nl-mortgage__actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

.nl-payblock { position: relative; display: flex; gap: 16px; }

.nl-paycard {
  flex: 1;
  border-radius: 18px;
  padding: 26px 24px;
}
.nl-paycard--now {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
}
.nl-paycard--after {
  background: rgba(173, 103, 56, .14);
  border: 1px solid rgba(173, 103, 56, .4);
}

.nl-paycard__label { font-size: 12px; font-weight: 600; letter-spacing: .04em; }
.nl-paycard--now .nl-paycard__label { color: rgba(255, 255, 255, .55); }
.nl-paycard--after .nl-paycard__label { color: var(--nl-accent-light); }

.nl-paycard__value {
  color: #fff; font-weight: 900; font-size: 32px;
  letter-spacing: -.01em; margin-top: 14px; line-height: 1;
}
.nl-paycard__note { color: rgba(255, 255, 255, .5); font-size: 13px; margin-top: 6px; }

.nl-tag {
  margin-top: 18px; display: inline-block;
  font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 20px;
}
.nl-tag--good { background: rgba(76, 175, 110, .16); color: #7FD69B; }
.nl-tag--bad { background: rgba(255, 255, 255, .1); color: rgba(255, 255, 255, .7); }

/* ===== ПРЕИМУЩЕСТВА ===== */
.nl-adv-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 34px; flex-wrap: wrap; gap: 16px; width: 100%;
}

.nl-h2fix { font-weight: 800; font-size: var(--nl-h2fix); letter-spacing: -.01em; }
.nl-subfix { color: var(--nl-muted); font-size: 15px; max-width: 380px; text-wrap: pretty; text-align: right; }

.nl-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.nl-advcard { border-radius: 18px; padding: 20px; }
.nl-advcard--light { background: var(--nl-cream); border: 1px solid var(--nl-border); }
.nl-advcard--dark { background: var(--nl-accent); border: none; }

.nl-advcard__img {
  height: 150px; border-radius: 14px;
  background-size: cover; background-position: center; margin-bottom: 18px;
}
.nl-advcard__title { font-weight: 700; font-size: 18px; line-height: 1.2; }
.nl-advcard--light .nl-advcard__title { color: var(--nl-dark); }
.nl-advcard--dark .nl-advcard__title { color: #fff; }

.nl-advcard__text { font-size: 13.5px; line-height: 1.55; margin-top: 9px; }
.nl-advcard--light .nl-advcard__text { color: var(--nl-muted); }
.nl-advcard--dark .nl-advcard__text { color: rgba(255, 255, 255, .72); }

/* ===== ФИЛЬТР КВАРТИР ===== */
.nl-filter {
  background: var(--nl-cream);
  border: 1px solid var(--nl-border);
  border-radius: 18px;
  padding: 26px 30px;
  display: flex;
  align-items: flex-end;
  gap: 34px;
  flex-wrap: wrap;
  width: 100%;
  justify-content: flex-start;
}

.nl-filter__group--rooms { flex: 0 0 auto; }
.nl-filter__group--range { flex: 1 1 200px; min-width: 190px; }

.nl-filter__label {
  font-size: 11px; font-weight: 600; letter-spacing: .06em;
  color: var(--nl-muted-light); margin-bottom: 12px;
}

.nl-filter__label-row {
  display: flex; justify-content: space-between;
  font-size: 11px; font-weight: 600; letter-spacing: .06em;
  color: var(--nl-muted-light); margin-bottom: 14px;
}
.nl-filter__label-value { color: #6B655C; }

.nl-pills { display: flex; gap: 8px; }

.nl-pill {
  background: #fff;
  color: #3C3833;
  border: 1px solid var(--nl-border-input);
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  padding: 11px 17px;
  border-radius: 12px;
  cursor: pointer;
  min-width: 46px;
  transition: background .15s, color .15s, border-color .15s;
}
.nl-pill:hover { border-color: var(--nl-accent); }
.nl-pill.is-active {
  background: var(--nl-accent);
  color: #fff;
  border-color: var(--nl-accent);
}

.nl-range {
  accent-color: var(--nl-accent);
  width: 100%;
  height: 3px;
  cursor: pointer;
}

/* Счётчик обновляется — лёгкая индикация загрузки */
.nl-filter__submit.is-loading { opacity: .6; pointer-events: none; }

/* ===== ФОРМА ЗАЯВКИ ===== */
.nl-callform {
  background: var(--nl-dark);
  border-radius: 24px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.nl-callform__stats { display: flex; gap: 26px; margin-top: 34px; }
.nl-callform__stat-value { color: #fff; font-weight: 800; font-size: 30px; }
.nl-callform__stat-label { color: rgba(255, 255, 255, .5); font-size: 13px; }

.nl-formcard { position: relative; background: #fff; border-radius: 20px; padding: 34px; }
.nl-formcard__title { font-weight: 700; font-size: 20px; margin-bottom: 20px; }
.nl-formcard__fields { display: flex; flex-direction: column; gap: 12px; }

.nl-input {
  border: 1px solid var(--nl-border-input);
  border-radius: 12px;
  padding: 15px 16px;
  font-size: 15px;
  outline: none;
  width: 100%;
}
.nl-input:focus { border-color: var(--nl-accent); }

.nl-formcard__submit {
  width: 100%;
  margin-top: 16px;
  background: var(--nl-accent);
  color: #fff;
  border: none;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  padding: 17px;
  border-radius: 36px;
  cursor: pointer;
}

.nl-formcard__legal {
  font-size: 11.5px; color: var(--nl-muted-light);
  line-height: 1.5; margin-top: 14px; text-wrap: pretty;
}

.nl-formcard__success { text-align: center; padding: 40px 10px; }
.nl-formcard__success-icon {
  width: 66px; height: 66px; border-radius: 50%; background: #F1E7DD;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.nl-formcard__success-title { font-weight: 700; font-size: 22px; }
.nl-formcard__success-text { color: var(--nl-muted); font-size: 15px; margin-top: 10px; }

/* ===== ПОДВАЛ ===== */
.nl-footer {
  background: var(--nl-darker);
  margin-top: 90px;
  color: #fff;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.nl-footer-grid {
  max-width: var(--nl-max-width);
  margin: 0 auto;
  padding: 56px 50px 34px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: start;
}

.nl-legal {
  font-size: 12.5px; line-height: 1.6; color: rgba(255, 255, 255, .42);
  margin-top: 20px; max-width: 340px; text-wrap: pretty;
}

.nl-footer__phone {
  font-weight: 700; font-size: 22px; color: #fff;
  text-decoration: none; white-space: nowrap;
}
.nl-footer__note { font-size: 13px; color: rgba(255, 255, 255, .5); margin-top: 8px; }
.nl-footer__address { font-size: 13px; color: rgba(255, 255, 255, .5); margin-top: 14px; }

.nl-footer-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  padding: 26px;
}
.nl-footer-card__title { font-weight: 700; font-size: 17px; }
.nl-footer-card__text { font-size: 13.5px; color: rgba(255, 255, 255, .5); margin-top: 8px; line-height: 1.5; }
.nl-footer-card__btn {
  display: block; text-align: center; margin-top: 18px;
  background: var(--nl-accent); color: #fff; text-decoration: none;
  font-weight: 600; font-size: 14px; padding: 14px; border-radius: 30px;
}

.nl-footer-bottom {
  max-width: var(--nl-max-width);
  margin: 0 auto;
  padding: 22px 50px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: rgba(255, 255, 255, .36);
  flex-wrap: wrap;
  gap: 10px;
}

/* ==========================================================================
   АДАПТИВ — перенесён из прототипа без изменений по значениям.
   Убраны !important там, где они были нужны только для перебивания
   inline-стилей: теперь стили в классах, конфликта нет.
   ========================================================================== */

/* ===== ПЛАНШЕТ (<=1024px) ===== */
@media (max-width: 1024px) {
  /* дефолтные размеры для планшета; ThemeSettings переопределит их в <head> */
  :root { --nl-h1: 56px; --nl-hsub: 21px; --nl-h2fix: 34px; --nl-h2: 36px; }
  .nl-hero { min-height: 0; padding: 44px 40px; }
  .nl-h1 { font-size: var(--nl-h1); }
  .nl-hsub { font-size: var(--nl-hsub); }
  .nl-mortgage { height: auto; padding: 44px 40px; }
  .nl-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .nl-h2fix { font-size: var(--nl-h2fix); }
  .nl-subfix { text-align: left; }
  .nl-callform { padding: 48px; }
  .nl-footer-grid { grid-template-columns: 1fr 1fr; }
  .nl-decor { display: none; }
  .nl-h2 { font-size: var(--nl-h2); }
  /* Фильтр на планшете переносится в две строки — не даём ползункам
     схлопнуться в узкие полоски */
  .nl-filter__group--range { flex: 1 1 260px; }
  /* (4) На планшете карточки платежей ставим друг под друга — в ряд
     текст внутри переносится и выглядит неопрятно */
  .nl-payblock { flex-direction: column; }
  /* (5) Плашка "условия меняются с 1 октября" — в одну строку, без переноса */
  .nl-badge--muted { white-space: nowrap; }
}

/* ===== МОБИЛЬНЫЙ (<=640px) ===== */
@media (max-width: 640px) {
  /* дефолтные размеры для мобильного; ThemeSettings переопределит их в <head> */
  :root { --nl-h1: 40px; --nl-hsub: 17px; --nl-h2: 28px; }
  .nl-header { flex-wrap: nowrap; height: auto; padding: 12px 16px; gap: 12px; align-items: center; }
  /* Телефон и ссылка "Заказать звонок" — справа, выровнены по правому краю */
  .nl-header__right { margin-left: auto; }
  .nl-hd-contact { align-items: flex-end; gap: 2px; }
  .nl-hd-contact__phone { font-size: 16px; }
  /* Убираем время работы и кнопку "Перезвоните мне" на мобильном */
  .nl-hd-contact__hours { display: none; }
  .nl-hd-contact__btn { display: none; }
  /* Показываем ссылку "Заказать звонок" под телефоном */
  .nl-hd-contact__call-link {
    display: inline;
    color: var(--nl-accent);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
  }
  .nl-hero { padding: 26px 20px; }
  .nl-hero-top { flex-direction: column; gap: 22px; }
  .nl-h1 { font-size: var(--nl-h1); }
  .nl-hsub { font-size: var(--nl-hsub); }
  .nl-herocard { width: 100%; height: auto; text-align: left; }
  .nl-mortgage { grid-template-columns: 1fr; padding: 28px 22px; gap: 32px; }
  .nl-payblock { flex-direction: column; }
  /* (2) Блок статистики в герое на мобильном:
     - отступ 20px сверху от карточки выгоды
     - каждый пункт (значение над подписью) — в столбец
     - разделители скрыты */
  .nl-stats { margin-top: 20px; gap: 14px; flex-direction: column; }
  .nl-stats__divider { display: none; }
  .nl-grid-4 { grid-template-columns: 1fr; }
  .nl-filter { flex-direction: column; align-items: stretch; gap: 18px; }
  /* В колоночном флексе flex-grow растягивал группы по высоте на весь
     экран — на мобильном рост отключаем, элементы занимают свою высоту. */
  .nl-filter__group--rooms,
  .nl-filter__group--range { flex: 0 0 auto; min-width: 0; }
  .nl-pills { flex-wrap: wrap; }
  .nl-filter__label, .nl-filter__label-row { margin-bottom: 8px; }
  .nl-callform { grid-template-columns: 1fr; padding: 28px 22px; gap: 32px; }
  .nl-footer-grid { grid-template-columns: 1fr; padding: 44px 20px 30px; gap: 34px; }
  .nl-footer-bottom { flex-direction: column; gap: 8px; }
  .nl-h2 { font-size: var(--nl-h2); }
  .nl-btn--md, .nl-filter__submit { width: 100%; text-align: center; }
}

/* ==========================================================================
   ПОП-АП ОБРАТНОГО ЗВОНКА
   ========================================================================== */
.nl-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(20, 18, 16, .6);
  backdrop-filter: blur(4px);
}
.nl-modal.is-open { display: flex; }

.nl-modal__dialog {
  background: #fff;
  border-radius: 22px;
  padding: 36px;
  width: 100%;
  max-width: 440px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
}

.nl-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: none;
  background: var(--nl-cream);
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  color: var(--nl-muted);
  line-height: 1;
}
.nl-modal__close:hover { background: var(--nl-border); }

.nl-modal__title { font-weight: 700; font-size: 22px; margin-bottom: 8px; }
.nl-modal__subtitle { color: var(--nl-muted); font-size: 14px; margin-bottom: 22px; line-height: 1.4; }

.nl-modal__fields { display: flex; flex-direction: column; gap: 12px; }

.nl-modal__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--nl-muted);
}
.nl-modal__consent input {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--nl-accent);
  cursor: pointer;
}
.nl-modal__consent a { color: var(--nl-accent); }

.nl-modal__submit {
  width: 100%;
  margin-top: 20px;
  background: var(--nl-accent);
  color: #fff;
  border: none;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  padding: 17px;
  border-radius: 36px;
  cursor: pointer;
  transition: opacity .15s;
}
.nl-modal__submit:disabled { opacity: .45; cursor: not-allowed; }

.nl-modal__error {
  color: #C0392B;
  font-size: 13px;
  margin-top: 12px;
  display: none;
}
.nl-modal__error.is-visible { display: block; }

.nl-modal__success { text-align: center; padding: 20px 10px; }
.nl-modal__success-icon {
  width: 64px; height: 64px; border-radius: 50%; background: #E8F5E9;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 30px;
}
.nl-modal__success-title { font-weight: 700; font-size: 20px; }
.nl-modal__success-text { color: var(--nl-muted); font-size: 14px; margin-top: 8px; }

/* ==========================================================================
   ПЛАШКА COOKIE (первое посещение)
   ========================================================================== */
.nl-cookie {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 150;
  max-width: 420px;
  background: var(--nl-darker);
  color: #fff;
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
  display: none;
}
.nl-cookie.is-visible { display: block; }

.nl-cookie__text {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 16px;
}
.nl-cookie__text a {
  color: var(--nl-accent-light);
  text-decoration: underline;
}

.nl-cookie__accept {
  background: var(--nl-accent);
  color: #fff;
  border: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  padding: 11px 30px;
  border-radius: 26px;
  cursor: pointer;
}
.nl-cookie__accept:hover { background: #9a5a30; }

@media (max-width: 640px) {
  .nl-cookie {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
    padding: 18px 20px;
  }
}
