/* ───── KARAFT newsletter popup (Prestige Allure clone) ─────
   Dark dismissible card, bottom-right, slides up after a delay. */

.kf-np {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  max-width: 360px;
  width: calc(100% - 48px);
}

.kf-np__card {
  position: relative;
  background: var(--color-primary);
  color: #fff;
  padding: 36px 32px 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.kf-np.is-open .kf-np__card {
  opacity: 1;
  transform: translateY(0);
}

.kf-np__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: color 0.2s ease;
}
.kf-np__close:hover { color: #fff; }
.kf-np__close .icon { width: 16px; height: 16px; }

.kf-np__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: var(--track-heading);
  text-transform: uppercase;
  line-height: 1.25;
  margin: 0 0 12px;
  max-width: 22ch;
}
.kf-np__text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 20px;
}
.kf-np__form { display: flex; flex-direction: column; gap: 10px; }
.kf-np__input {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-family: var(--font-body);
  font-size: 14px;
  color: #fff;
}
.kf-np__input::placeholder { color: rgba(255, 255, 255, 0.5); }
.kf-np__input:focus { outline: none; border-color: #fff; }
.kf-np__btn { width: 100%; }

@media (max-width: 600px) {
  .kf-np { bottom: 16px; right: 16px; left: 16px; width: auto; max-width: none; }
  .kf-np__card { padding: 32px 24px 28px; }
}
