/* ============================================================
   NikahDate — Système de design Piste 1 « Sobre & lumineux »
   ============================================================ */

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  --nk-rose:        #C25A72;
  --nk-rose-hover:  #A8475F;
  --nk-rose-light:  #E68AA0;
  --nk-rose-bg:     #FBF1EF;
  --nk-rose-pale:   #FDF5F3;
  --nk-rose-border: #F0D9D5;
  --nk-ink:         #241B35;
  --nk-ink-2:       #2a2238;
  --nk-plum:        #5A4A55;
  --nk-teal:        #2E7D74;
  --nk-teal-bg:     #E7F1EF;
  --nk-teal-border: #d4e8e3;
  --nk-gray:        #6b6280;
  --nk-gray-mid:    #9a92a0;
  --nk-gray-light:  #a99ba1;
  --nk-border:      #F0E7E4;
  --nk-border-2:    #ECE1DE;
  --nk-bg:          #FBF8F6;
  --nk-bg-page:     #F8F5F3;

  --nk-font-serif: 'Spectral', Georgia, serif;
  --nk-font-sans:  'Hanken Grotesk', system-ui, -apple-system, sans-serif;

  --nk-radius-sm:  8px;
  --nk-radius-md:  12px;
  --nk-radius-lg:  16px;
  --nk-radius-xl:  20px;
  --nk-radius-pill: 999px;
}

/* ── Reset global ─────────────────────────────────────────────── */
.nk-page *,
.nk-page *::before,
.nk-page *::after {
  box-sizing: border-box;
}

.nk-page {
  font-family: var(--nk-font-sans);
  color: var(--nk-ink-2);
  background: var(--nk-bg-page);
}

/* ── Header ──────────────────────────────────────────────────── */
.nk-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--nk-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  height: 68px;
}

.nk-header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nk-header-logo-text {
  line-height: 1;
}

.nk-header-logo-name {
  font-family: var(--nk-font-serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1;
}

.nk-header-logo-name .rose { color: var(--nk-rose); }
.nk-header-logo-name .plum { color: var(--nk-plum); }

.nk-header-logo-tagline {
  font-family: var(--nk-font-sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b3a9af;
  margin-top: 4px;
}

.nk-header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--nk-plum);
}

.nk-header-nav a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}

.nk-header-nav a:hover,
.nk-header-nav a.active {
  color: var(--nk-rose);
  font-weight: 600;
}

.nk-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nk-header-icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--nk-rose-bg);
  color: var(--nk-rose);
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.15s;
}

.nk-header-icon-btn:hover { background: #f4e4e1; color: var(--nk-rose); }

.nk-header-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 50%;
  background: var(--nk-rose);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.nk-header-monogram {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 5px;
  border: 1px solid var(--nk-border-2);
  border-radius: var(--nk-radius-pill);
  text-decoration: none;
  color: var(--nk-ink-2);
  font-weight: 600;
  font-size: 14px;
  transition: background 0.15s;
}

.nk-header-monogram:hover { background: var(--nk-rose-bg); color: var(--nk-ink-2); }

.nk-avatar-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(140deg, #E7DEEF, #CFC0E0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--nk-font-serif);
  font-weight: 600;
  font-size: 13px;
  color: #6A5687;
  flex-shrink: 0;
}

.nk-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 11px;
  font-family: var(--nk-font-sans);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.nk-btn-primary {
  background: var(--nk-rose);
  color: #fff;
}

.nk-btn-primary:hover { background: var(--nk-rose-hover); color: #fff; }

.nk-btn-outline {
  background: #fff;
  color: var(--nk-rose);
  border: 1px solid var(--nk-border-2);
}

.nk-btn-outline:hover { background: var(--nk-rose-bg); color: var(--nk-rose); }

.nk-btn-ghost {
  background: transparent;
  color: var(--nk-gray);
  border: 1px solid var(--nk-border);
}
.nk-btn-ghost:hover { background: var(--nk-bg); color: var(--nk-ink); }

/* ── Hero / Landing ──────────────────────────────────────────── */
.nk-hero {
  position: relative;
  padding: 84px 40px 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background-image: url('/img/hero-bg.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.nk-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.18) 60%, rgba(255,255,255,.55) 100%);
}

.nk-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.nk-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: var(--nk-rose-bg);
  color: var(--nk-rose);
  border-radius: var(--nk-radius-pill);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.nk-hero h1 {
  font-family: var(--nk-font-serif);
  font-weight: 600;
  font-size: clamp(38px, 6vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--nk-ink);
  margin: 0 0 20px;
  max-width: 720px;
}

.nk-hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--nk-gray);
  max-width: 560px;
  margin: 0 0 36px;
}

/* ── Texte rotatif hero ──────────────────────────────────────── */
.nk-hero-rotate {
  display: inline-block;
  position: relative;
  min-width: 1px;
}
.nk-hero-rotate-word {
  display: inline-block;
  color: var(--nk-rose);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease;
  position: absolute;
  left: 50%;
  translate: -50% 0;
  white-space: nowrap;
  pointer-events: none;
}
.nk-hero-rotate-word.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  left: auto;
  translate: none;
  pointer-events: auto;
}

/* ── Filtre de recherche ──────────────────────────────────────── */
.nk-search-bar {
  display: flex;
  align-items: stretch;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--nk-border-2);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 12px 30px -18px rgba(194,90,114,.45);
  margin-bottom: 28px;
  width: 100%;
  max-width: 660px;
}

.nk-search-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4px 16px;
  text-align: left;
  border-right: 1px solid var(--nk-border);
  min-width: 130px;
}

.nk-search-field:last-of-type { border-right: none; }

.nk-search-field label {
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nk-gray-light);
  margin: 0 0 2px;
}

.nk-search-field select {
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--nk-font-sans);
  font-weight: 600;
  font-size: 15px;
  color: var(--nk-ink-2);
  cursor: pointer;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
}

.nk-hero-trust {
  display: flex;
  gap: 28px;
  color: var(--nk-gray-mid);
  font-size: 14px;
  font-weight: 500;
  flex-wrap: wrap;
  justify-content: center;
}

.nk-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nk-trust-item svg { flex-shrink: 0; }

/* ── Bandeau titre page intérieure ──────────────────────────── */
.nk-page-band {
  padding: 40px 44px 30px;
  background: var(--nk-rose-bg);
  border-bottom: 1px solid #F4E4E0;
  text-align: center;
}

.nk-page-band h1 {
  font-family: var(--nk-font-serif);
  font-weight: 600;
  font-size: 36px;
  letter-spacing: -0.01em;
  color: var(--nk-ink);
  margin: 0 0 6px;
}

.nk-page-band-breadcrumb {
  font-size: 14px;
  font-weight: 500;
  color: var(--nk-gray-light);
}

.nk-page-band-breadcrumb a {
  color: var(--nk-rose);
  text-decoration: none;
}

/* ── Filtre inline (page recherche) ──────────────────────────── */
.nk-filter-bar {
  display: flex;
  gap: 14px;
  align-items: flex-end;
  background: #fff;
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 14px 40px -24px rgba(194,90,114,.5);
  max-width: 900px;
  margin: 0 auto;
}

.nk-filter-field {
  flex: 1;
}

.nk-filter-field label {
  display: block;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--nk-gray-light);
  margin-bottom: 7px;
}

.nk-filter-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border: 1px solid var(--nk-border-2);
  border-radius: 10px;
  font-family: var(--nk-font-sans);
  font-weight: 600;
  font-size: 15px;
  color: var(--nk-ink-2);
  background: #fff;
  cursor: pointer;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

/* ── Grille de profils ───────────────────────────────────────── */
.nk-profiles-wrap {
  padding: 30px 44px 48px;
}

@media (max-width: 768px) {
  .nk-profiles-wrap { padding: 20px 16px 40px; }
}

.nk-profiles-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.nk-profiles-count {
  font-size: 15px;
  font-weight: 500;
  color: var(--nk-gray);
}

.nk-profiles-count strong {
  color: var(--nk-ink-2);
  font-weight: 700;
}

/* ── Filtres rapides (chips) ─────────────────────────────────── */
.nk-quick-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 18px 0 14px;
  border-bottom: 1px solid var(--nk-border);
  margin-bottom: 18px;
}

.nk-quick-filters-chips {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  flex: 1;
}

.nk-filter-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--nk-gray);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-right: 2px;
}

.nk-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 13px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--nk-border);
  background: #fff;
  color: var(--nk-ink);
  transition: background .15s, border-color .15s, color .15s;
  user-select: none;
  white-space: nowrap;
}

.nk-filter-chip input[type="checkbox"],
.nk-filter-chip input[type="radio"] {
  display: none;
}

.nk-filter-chip:hover {
  border-color: var(--nk-rose);
  color: var(--nk-rose);
}

.nk-filter-chip.active {
  background: var(--nk-rose);
  border-color: var(--nk-rose);
  color: #fff;
}

.nk-filter-chip-clear {
  font-size: 12px;
  color: var(--nk-gray);
  text-decoration: underline;
  white-space: nowrap;
  margin-left: 2px;
}
.nk-filter-chip-clear:hover { color: var(--nk-rose); }

.nk-quick-filters-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}

.nk-filter-select-sm {
  padding: 6px 28px 6px 10px;
  border-radius: 8px;
  border: 1.5px solid var(--nk-border);
  background: #fff url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239CA3AF' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 10px center;
  background-size: 11px;
  appearance: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--nk-ink);
  cursor: pointer;
  outline: none;
}
.nk-filter-select-sm:focus {
  border-color: var(--nk-rose);
}

@media (max-width: 768px) {
  .nk-quick-filters { flex-direction: column; align-items: flex-start; }
  .nk-quick-filters-sort { margin-left: 0; }
}

.nk-profiles-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 18px;
}

.nk-profiles-grid--home {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1200px) {
  .nk-profiles-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .nk-profiles-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ── Carte de profil ──────────────────────────────────────────── */
.nk-profile-card {
  border: 1px solid var(--nk-border);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: box-shadow 0.2s, transform 0.2s;
  color: inherit;
}

.nk-profile-card:hover {
  box-shadow: 0 18px 40px -22px rgba(194,90,114,.55);
  transform: translateY(-3px);
  color: inherit;
  text-decoration: none;
}

.nk-profile-card-media {
  position: relative;
  aspect-ratio: 1 / 1.04;
  overflow: hidden;
  background: var(--nk-border);
}

.nk-profile-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nk-profile-card-monogram {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--nk-font-serif);
  font-weight: 600;
  font-size: 44px;
}

.nk-profile-card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
}

.nk-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: var(--nk-radius-pill);
  font-weight: 600;
  font-size: 11px;
  font-family: var(--nk-font-sans);
  line-height: 1;
}

.nk-badge-verified {
  background: rgba(231,241,239,.95);
  color: var(--nk-teal);
}

.nk-badge-private {
  background: rgba(255,255,255,.92);
  color: var(--nk-gray-light);
}

.nk-badge-online {
  background: var(--nk-rose-bg);
  color: var(--nk-rose);
}

.nk-profile-card-body {
  padding: 16px 18px 18px;
}

.nk-profile-card-name {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  font-family: var(--nk-font-serif);
  font-weight: 600;
  font-size: 18px;
  color: var(--nk-ink);
}

.nk-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--nk-teal);
  flex-shrink: 0;
}

.nk-profile-card-city {
  font-weight: 600;
  font-size: 14px;
  color: var(--nk-rose);
  margin-bottom: 3px;
}

.nk-profile-card-ago {
  font-size: 13px;
  font-weight: 500;
  color: var(--nk-gray-light);
}

/* ── Page profil détail ──────────────────────────────────────── */
.nk-profile-page {
  padding: 30px 44px 48px;
  background: var(--nk-bg);
}

.nk-profile-breadcrumb {
  font-size: 14px;
  font-weight: 500;
  color: var(--nk-gray-light);
  margin-bottom: 18px;
}

.nk-profile-breadcrumb a {
  color: var(--nk-rose);
  text-decoration: none;
}

/* Carte entête profil */
.nk-profile-header-card {
  background: #fff;
  border: 1px solid var(--nk-border);
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 24px;
}

.nk-profile-cover {
  height: 180px;
  background: radial-gradient(140% 160% at 70% 0%, #F7CFD7 0%, #E89DAE 45%, #C783A0 100%);
  position: relative;
}

.nk-profile-cover-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.06) 0 18px, transparent 18px 36px);
}

.nk-profile-header-inner {
  padding: 0 36px 28px;
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-top: -64px;
  position: relative;
}

.nk-profile-avatar-lg {
  width: 140px;
  height: 140px;
  border-radius: 20px;
  border: 5px solid #fff;
  box-shadow: 0 10px 30px -12px rgba(0,0,0,.25);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--nk-font-serif);
  font-weight: 600;
  font-size: 52px;
}

.nk-profile-avatar-lg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nk-profile-header-info {
  flex: 1;
  padding-bottom: 8px;
}

.nk-profile-header-name-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.nk-profile-name {
  font-family: var(--nk-font-serif);
  font-weight: 600;
  font-size: 30px;
  color: var(--nk-ink);
  margin: 0;
}

.nk-profile-sub {
  font-weight: 600;
  font-size: 15px;
  color: var(--nk-rose);
  margin-bottom: 4px;
}

.nk-profile-meta {
  font-size: 14px;
  font-weight: 500;
  color: var(--nk-gray-light);
}

.nk-profile-header-actions {
  display: flex;
  gap: 12px;
  padding-bottom: 8px;
  align-items: flex-end;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* Tabs profil */
.nk-profile-tabs {
  display: flex;
  gap: 4px;
  padding: 0 36px;
  border-top: 1px solid var(--nk-border);
}

.nk-profile-tab {
  padding: 16px 18px;
  font-weight: 600;
  font-size: 15px;
  color: var(--nk-gray-light);
  cursor: pointer;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.15s;
}

.nk-profile-tab.active {
  color: var(--nk-rose);
  border-bottom-color: var(--nk-rose);
}

.nk-profile-tab:hover { color: var(--nk-rose); text-decoration: none; }

/* Grille 2 colonnes profil */
.nk-profile-body {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
  align-items: start;
}

@media (max-width: 900px) {
  .nk-profile-body { grid-template-columns: 1fr; }
}

.nk-card {
  background: #fff;
  border: 1px solid var(--nk-border);
  border-radius: 20px;
  padding: 28px 26px;
}

.nk-card-title {
  font-family: var(--nk-font-serif);
  font-weight: 600;
  font-size: 19px;
  color: var(--nk-ink);
  margin: 0 0 20px;
}

/* Table info profil */
.nk-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nk-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--nk-border);
}

.nk-info-row:last-child { border-bottom: none; }

.nk-info-key {
  font-size: 14px;
  font-weight: 500;
  color: var(--nk-gray-mid);
}

.nk-info-val {
  font-size: 14px;
  font-weight: 600;
  color: var(--nk-ink-2);
  text-align: right;
}

.nk-info-val.nd { color: var(--nk-gray-light); font-weight: 400; font-style: italic; }

/* Tableau correspondance */
.nk-match-table {
  width: 100%;
  border-collapse: collapse;
}

.nk-match-table thead tr th {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nk-gray-light);
  padding: 0 4px 12px;
  border-bottom: 1px solid var(--nk-border);
}

.nk-match-table tbody tr td {
  padding: 14px 4px;
  border-bottom: 1px solid var(--nk-border);
  font-size: 14px;
  font-weight: 600;
  color: var(--nk-ink-2);
}

.nk-match-table tbody tr td:first-child {
  font-weight: 500;
  color: var(--nk-gray);
}

.nk-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  vertical-align: middle;
}

.nk-dot-ok  { background: var(--nk-teal); }
.nk-dot-nok { background: #E0A8B4; }

/* Section correspondance */
.nk-compat-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--nk-teal-bg);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--nk-teal);
}

/* Bouton action icône */
.nk-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--nk-border-2);
  cursor: pointer;
  transition: background 0.15s;
  color: var(--nk-rose);
  font-size: 20px;
  text-decoration: none;
}

.nk-icon-btn:hover { background: var(--nk-rose-bg); }

/* Description / À propos texte */
.nk-about-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--nk-gray);
  margin: 0;
}

/* Contact request buttons */
.nk-profile-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.nk-action-pending {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--nk-rose-bg);
  color: var(--nk-rose);
  border: 1px solid var(--nk-rose-border);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--nk-font-sans);
  cursor: default;
}

.nk-action-success {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--nk-teal-bg);
  color: var(--nk-teal);
  border: 1px solid var(--nk-teal-border);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--nk-font-sans);
  cursor: pointer;
  text-decoration: none;
}

.nk-action-success:hover { background: #d3eae6; color: var(--nk-teal); }

.nk-action-danger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #fff;
  color: #c0392b;
  border: 1px solid #f5c6cb;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--nk-font-sans);
  cursor: pointer;
}

.nk-action-danger:hover { background: #fde0e0; }

.nk-action-muted {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #f5f5f5;
  color: var(--nk-gray-light);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: default;
}

/* ── Messagerie ──────────────────────────────────────────────── */
.nd-split-wrap {
  display: grid;
  grid-template-columns: 320px 1fr;
  height: calc(100vh - 68px); /* valeur CSS par défaut — le JS recalcule selon les barres au-dessus */
  background: var(--nk-bg);
  overflow: hidden;
}

/* Bannière d'alerte WebSocket indisponible */
.nd-ws-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: #fff3cd;
  color: #7d5a00;
  border-bottom: 1px solid #ffc107;
  font-size: 13px;
  line-height: 1.45;
  flex-shrink: 0;
}
.nd-ws-alert i {
  font-size: 18px;
  flex-shrink: 0;
  color: #e6a817;
}
.nd-ws-alert-retry {
  margin-left: auto;
  font-size: 12px;
  color: #7d5a00;
  text-decoration: underline;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  background: none;
  border: none;
  padding: 0;
}

.nd-split-sidebar {
  border-right: 1px solid var(--nk-border);
  display: flex;
  flex-direction: column;
  background: #fff;
  overflow: hidden;
}

.nd-split-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 14px;
  border-bottom: 1px solid var(--nk-border);
}

.nd-split-sidebar-header h5 {
  font-family: var(--nk-font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--nk-ink);
  margin: 0;
}

.nd-split-empty-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 48px 24px;
  color: var(--nk-gray-mid);
}

.nd-split-empty-sidebar i { font-size: 32px; }

.nd-conv-list { flex: 1; overflow-y: auto; }

.nd-conv-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 20px;
  cursor: pointer;
  border-left: 3px solid transparent;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}

.nd-conv-item:hover { background: #fdf5f3; color: inherit; text-decoration: none; }
.nd-conv-item--active { background: var(--nk-rose-bg); border-left-color: var(--nk-rose); }
.nd-conv-item--active:hover { background: var(--nk-rose-bg); }

.nd-conv-avatar {
  position: relative;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
}

.nd-conv-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nd-conv-badge {
  position: absolute;
  bottom: -1px;
  right: -1px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 50%;
  background: var(--nk-rose);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.nd-conv-body { flex: 1; min-width: 0; }

.nd-conv-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3px;
}

.nd-conv-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--nk-ink);
  font-family: var(--nk-font-serif);
}

.nd-conv-time {
  font-size: 12px;
  font-weight: 500;
  color: var(--nk-gray-light);
  flex-shrink: 0;
}

.nd-conv-preview {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nd-conv-preview-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--nk-gray-mid);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nd-conv-item--unread .nd-conv-preview-text { color: var(--nk-ink-2); font-weight: 600; }
.nd-conv-sent-icon { color: var(--nk-teal); font-size: 12px; }

/* Chat panel */
.nd-split-chat {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.nd-chat-window {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.nd-chat-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--nk-border);
  background: #fff;
  flex-shrink: 0;
}

.nd-chat-topbar-avatar-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.nd-chat-topbar-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nd-chat-topbar-info { display: flex; flex-direction: column; }

.nd-chat-topbar-name {
  font-family: var(--nk-font-serif);
  font-weight: 600;
  font-size: 17px;
  color: var(--nk-ink);
}

.nd-chat-topbar-status {
  font-size: 12px;
  font-weight: 500;
}

.nd-status--ok  { color: var(--nk-teal); }
.nd-status--err { color: #e74c3c; }

.nd-chat-topbar-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--nk-border-2);
  border-radius: 10px;
  font-weight: 600;
  font-size: 13px;
  color: var(--nk-rose);
  text-decoration: none;
  margin-left: auto;
}

.nd-chat-topbar-profile:hover { background: var(--nk-rose-bg); color: var(--nk-rose); }

.nd-chat-topbar-block {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid var(--nk-border-2);
  background: #fff;
  color: var(--nk-gray);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  font-family: var(--nk-font-sans);
}

.nd-chat-topbar-block:hover { border-color: #f5c6cb; color: #c0392b; background: #fff5f5; }
.nd-chat-topbar-block--active { color: #c0392b; border-color: #f5c6cb; background: #fff5f5; }
.nd-chat-topbar-block-label { display: inline; }

.nd-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  background: #FCF8F6;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nd-msg {
  display: block;
  width: 100%;
  max-width: none;
  margin-bottom: 6px;
  overflow: hidden;
}
.nd-msg--mine   { text-align: right; }
.nd-msg--theirs { text-align: left; }

.nd-msg-bubble {
  display: inline-block;
  text-align: left;
  vertical-align: bottom;
  max-width: 70%;
  min-width: 56px;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  overflow-wrap: break-word;
  word-break: normal;
  white-space: normal;
}

.nd-msg--mine .nd-msg-bubble {
  background: var(--nk-rose);
  color: #fff;
  border-radius: 16px 16px 4px 16px;
}

.nd-msg--theirs .nd-msg-bubble {
  background: #fff;
  color: var(--nk-ink-2);
  border-radius: 16px 16px 16px 4px;
  border: 1px solid var(--nk-border);
}

.nd-msg-meta {
  display: block;
  font-size: 11px;
  margin-top: 3px;
  padding: 0 2px;
}
.nd-msg--mine   .nd-msg-meta { text-align: right; color: var(--nk-gray-mid);   }
.nd-msg--theirs .nd-msg-meta { text-align: left;  color: var(--nk-gray-light); }

.nd-msg-read { color: var(--nk-teal) !important; }

.nd-chat-input-area {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  padding: 16px 24px;
  border-top: 1px solid var(--nk-border);
  background: #fff;
  flex-shrink: 0;
}

.nd-chat-input-area--blocked { opacity: 0.6; }

.nd-chat-input {
  flex: 1;
  padding: 12px 18px;
  background: var(--nk-rose-bg);
  border: none;
  border-radius: 14px;
  font-family: var(--nk-font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--nk-ink-2);
  resize: none;
  outline: none;
  max-height: 120px;
  min-height: 48px;
}

.nd-chat-input::placeholder { color: var(--nk-gray-light); }

.nd-chat-send {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--nk-rose);
  border: none;
  border-radius: 14px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s;
}

.nd-chat-send:hover { background: var(--nk-rose-hover); }
.nd-chat-send:disabled { background: var(--nk-gray-light); cursor: default; }

.nd-chat-blocked-notice {
  padding: 14px 24px;
  background: #fff5f5;
  color: #c0392b;
  font-size: 14px;
  font-weight: 500;
  border-top: 1px solid #f5c6cb;
  text-align: center;
}

.nd-chat-blocked-notice a { color: var(--nk-rose); font-weight: 600; }

/* ── Footer ──────────────────────────────────────────────────── */
.nk-footer {
  background: var(--nk-ink);
  color: rgba(255,255,255,.6);
  padding: 40px 44px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.nk-footer a { color: rgba(255,255,255,.6); text-decoration: none; }
.nk-footer a:hover { color: #fff; }

/* ── Utilitaires ─────────────────────────────────────────────── */
.nk-serif { font-family: var(--nk-font-serif); }
.nk-text-rose { color: var(--nk-rose); }
.nk-text-teal { color: var(--nk-teal); }
.nk-text-ink  { color: var(--nk-ink); }
.nk-text-muted { color: var(--nk-gray-mid); }

/* scrollbar élégante */
.nk-scroll::-webkit-scrollbar { width: 6px; height: 6px; }
.nk-scroll::-webkit-scrollbar-thumb { background: #E4D3D0; border-radius: 6px; }
.nk-scroll::-webkit-scrollbar-track { background: transparent; }

/* Mobile nav toggle */
@media (max-width: 768px) {
  .nk-header { padding: 0 16px; }
  .nk-header-nav { display: none; }
  .nk-header-logo-tagline { display: none; }
  .nk-hero { padding: 56px 20px 48px; }
  .nk-search-bar { flex-direction: column; max-width: 100%; }
  .nk-search-field { border-right: none; border-bottom: 1px solid var(--nk-border); }
  .nk-filter-bar { flex-direction: column; }
  .nk-profiles-wrap { padding: 20px 16px; }
  .nk-profile-page { padding: 20px 16px; }
  .nk-profile-header-inner { flex-wrap: wrap; margin-top: -40px; }
  .nk-profile-avatar-lg { width: 100px; height: 100px; }
  .nd-split-wrap { grid-template-columns: 1fr; }
  .nd-split-sidebar { height: 220px; }
  .nk-page-band { padding: 28px 20px; }
  .nk-page-band h1 { font-size: 26px; }
}

/* ═══════════════════════════════════════════════════════════════
   MON COMPTE — Layout sidebar + panel
═══════════════════════════════════════════════════════════════ */

/* ── Layout 2 colonnes ──────────────────────────────────────── */
.nk-account-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  max-width: 1060px;
  margin: 32px auto 0;
  padding: 0 20px;
  align-items: start;
}

/* ── Sidebar ────────────────────────────────────────────────── */
.nk-account-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 82px;
}

/* Carte avatar */
.nk-account-avatar-card {
  background: #fff;
  border: 1px solid var(--nk-border);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
}
.nk-account-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--nk-font-serif);
  font-size: 28px;
  font-weight: 700;
  overflow: hidden;
}
.nk-account-name {
  font-family: var(--nk-font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--nk-ink);
  margin-bottom: 4px;
}
.nk-account-meta {
  font-size: 13px;
  color: var(--nk-gray-mid);
  margin-bottom: 10px;
}

/* Stats */
.nk-account-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--nk-border);
  border: 1px solid var(--nk-border);
  border-radius: 12px;
  overflow: hidden;
}
.nk-account-stat {
  background: #fff;
  padding: 14px 8px;
  text-align: center;
}
.nk-account-stat-value {
  font-family: var(--nk-font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--nk-ink);
  line-height: 1;
}
.nk-account-stat-label {
  font-size: 11px;
  color: var(--nk-gray-mid);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Navigation sidebar */
.nk-account-nav {
  background: #fff;
  border: 1px solid var(--nk-border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.nk-account-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  font-size: 14px;
  color: var(--nk-gray);
  text-decoration: none;
  border-bottom: 1px solid var(--nk-border);
  transition: background .15s, color .15s;
}
.nk-account-nav-item:last-child { border-bottom: none; }
.nk-account-nav-item i { font-size: 16px; color: var(--nk-gray-mid); flex-shrink: 0; }
.nk-account-nav-item:hover { background: var(--nk-rose-pale); color: var(--nk-rose); }
.nk-account-nav-item:hover i { color: var(--nk-rose); }
.nk-account-nav-item.active { background: var(--nk-rose-pale); color: var(--nk-rose); font-weight: 600; }
.nk-account-nav-item.active i { color: var(--nk-rose); }
.nk-account-nav-alert { color: #b45309; }
.nk-account-nav-alert i { color: #d97706; }
.nk-account-nav-badge {
  margin-left: auto;
  background: var(--nk-rose);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 99px;
}

/* ── Panneau principal ──────────────────────────────────────── */
.nk-account-panel {
  min-width: 0;
}

/* ── nk-card ────────────────────────────────────────────────── */
.nk-card {
  background: #fff;
  border: 1px solid var(--nk-border);
  border-radius: 16px;
  overflow: hidden;
}
.nk-card-header {
  padding: 18px 24px;
  border-bottom: 1px solid var(--nk-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.nk-card-title {
  font-family: var(--nk-font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--nk-ink);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nk-card-body {
  padding: 24px;
}

/* ── Formulaires ────────────────────────────────────────────── */
.nk-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.nk-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nk-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--nk-ink);
  letter-spacing: .01em;
}
.nk-input,
.nk-select {
  border: 1.5px solid var(--nk-border);
  border-radius: 10px;
  padding: 10px 14px;
  font-family: var(--nk-font-sans);
  font-size: 14px;
  color: var(--nk-ink);
  background: #fff;
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
}
.nk-input:focus,
.nk-select:focus {
  outline: none;
  border-color: var(--nk-rose);
  box-shadow: 0 0 0 3px rgba(194,90,114,.1);
}
textarea.nk-input { resize: vertical; min-height: 100px; }
.nk-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5' stroke='%23888' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

/* Toggle label (checkbox/radio inline) */
.nk-toggle-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}
.nk-toggle-wrap input { accent-color: var(--nk-rose); cursor: pointer; }
.nk-toggle-label { font-size: 14px; color: var(--nk-ink); }
.nk-toggle-label a { color: var(--nk-rose); font-weight: 600; }
.nk-toggle-label a:hover { text-decoration: underline; }

/* ── Paramètres — ligne avec switch ─────────────────────────── */
.nk-settings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Toggle switch CSS */
.nk-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  cursor: pointer;
}
.nk-switch input { opacity: 0; width: 0; height: 0; }
.nk-switch-slider {
  position: absolute;
  inset: 0;
  background: var(--nk-border);
  border-radius: 99px;
  transition: background .2s;
}
.nk-switch-slider::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform .2s;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.nk-switch input:checked + .nk-switch-slider { background: var(--nk-teal); }
.nk-switch input:checked + .nk-switch-slider::before { transform: translateX(20px); }

/* ── Alertes ────────────────────────────────────────────────── */
.nk-alert {
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  line-height: 1.5;
}
.nk-alert-warning { background: #FFF8E6; color: #92400E; border: 1px solid #F6D860; }
.nk-alert-info    { background: #EEF5FF; color: #1D4ED8; border: 1px solid #BFDBFE; }

/* ── Tableau ────────────────────────────────────────────────── */
.nk-table { font-size: 13px; }
.nk-table th { font-size: 12px; font-weight: 600; color: var(--nk-gray-mid); text-transform: uppercase; letter-spacing: .05em; background: var(--nk-rose-pale) !important; }
.nk-table td, .nk-table th { padding: 10px 14px !important; vertical-align: middle; }

/* ── Photos ─────────────────────────────────────────────────── */
.nk-photos-upload-zone {
  border: 2px dashed var(--nk-border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  background: var(--nk-rose-pale);
}
.nk-photos-upload-slot {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.nk-photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.nk-photo-item {
  border: 1px solid var(--nk-border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.nk-photo-item--cover {
  border-color: var(--nk-rose);
  box-shadow: 0 0 0 2px rgba(194,90,114,.18);
}
.nk-photo-thumb {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--nk-border);
}
.nk-photo-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.nk-photo-cover-badge {
  position: absolute;
  bottom: 8px; left: 8px;
  background: var(--nk-rose);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nk-photo-actions {
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* ── Bloc champs obligatoires ───────────────────────────────── */
.nk-required-block {
  background: #fff;
  border: 1.5px solid #F6D9DC;
  border-radius: 14px;
  padding: 18px 20px;
}
.nk-required-block--ok {
  border-color: var(--nk-teal-border);
  background: var(--nk-teal-bg);
  padding: 14px 20px;
}
.nk-required-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
}
.nk-required-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--nk-ink);
  display: block;
  margin-bottom: 2px;
}
.nk-required-count {
  font-size: 12px;
  color: var(--nk-gray-mid);
}
.nk-required-pct {
  font-family: var(--nk-font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--nk-rose);
  white-space: nowrap;
}
.nk-required-bar-wrap {
  height: 6px;
  background: var(--nk-border);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 14px;
}
.nk-required-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--nk-rose), var(--nk-rose-hover));
  border-radius: 99px;
  transition: width .4s ease;
}
.nk-required-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.nk-required-field {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px 5px 8px;
  border-radius: 99px;
  font-size: 13px;
  text-decoration: none;
  background: #FFF0F2;
  color: var(--nk-rose);
  border: 1px solid #F6D9DC;
  transition: background .15s;
}
.nk-required-field:hover {
  background: var(--nk-rose-pale);
  color: var(--nk-rose);
  text-decoration: none;
}
.nk-required-field.done {
  background: var(--nk-teal-bg);
  color: var(--nk-teal);
  border-color: var(--nk-teal-border);
}
.nk-required-note {
  font-size: 12px;
  color: var(--nk-gray-mid);
  margin: 0;
}

/* ── Mobile Mon compte ──────────────────────────────────────── */
@media (max-width: 860px) {
  .nk-account-wrap {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
  .nk-account-sidebar { position: static; }
  .nk-account-nav { flex-direction: row; flex-wrap: wrap; }
  .nk-account-nav-item { border-bottom: none; border-right: 1px solid var(--nk-border); flex: 1 1 140px; justify-content: center; }
  .nk-account-nav-item:last-child { border-right: none; }
  .nk-form-grid { grid-template-columns: 1fr; }
}

/* ── Modal demande de contact ────────────────────────────────── */
#modal-contact-request .modal-dialog {
  max-width: 520px;
}

/* On retire .modal-content du HTML → on fournit nous-mêmes le fond */
.nk-contact-modal {
  background: #fff;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.18);
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  pointer-events: auto; /* Bootstrap met pointer-events:none sur .modal-dialog, .modal-content le remet — on le fait nous-mêmes */
}

.nk-contact-modal-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 20px 18px;
  border-bottom: 1px solid var(--nk-border);
  flex-shrink: 0;
}

.nk-contact-modal-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--nk-rose-bg);
  color: var(--nk-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nk-contact-modal-hd {
  flex: 1;
  min-width: 0;
}

.nk-contact-modal-title {
  font-family: var(--nk-font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--nk-ink);
  margin: 0 0 2px;
  line-height: 1.3;
}

.nk-contact-modal-sub {
  font-size: 13px;
  color: var(--nk-gray);
  margin: 0;
  line-height: 1.4;
}

.nk-contact-modal-close {
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--nk-gray-mid);
  line-height: 1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .15s, color .15s;
}
.nk-contact-modal-close:hover {
  background: var(--nk-rose-bg);
  color: var(--nk-rose);
}

.nk-contact-modal-body {
  flex: 1 1 auto;
  min-height: 0;
  padding: 20px 22px 8px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.nk-contact-modal-body::-webkit-scrollbar { width: 5px; }
.nk-contact-modal-body::-webkit-scrollbar-track { background: var(--nk-border); border-radius: 3px; }
.nk-contact-modal-body::-webkit-scrollbar-thumb { background: var(--nk-gray-mid); border-radius: 3px; }

.nk-contact-modal-intro {
  font-size: 13.5px;
  color: var(--nk-gray);
  line-height: 1.65;
  margin: 0 0 20px;
  padding: 12px 15px;
  background: var(--nk-rose-pale);
  border-radius: var(--nk-radius-sm);
  border-left: 3px solid var(--nk-rose);
}

.nk-contact-section-title {
  font-family: var(--nk-font-serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--nk-ink);
  margin: 0 0 3px;
  line-height: 1.4;
}

.nk-contact-section-sub {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--nk-gray);
  margin: 0 0 10px;
  line-height: 1.45;
}

.nk-contact-section-text {
  font-size: 13px;
  color: var(--nk-gray);
  line-height: 1.65;
  margin: 0 0 12px;
}

.nk-contact-rules {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.nk-contact-rule {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--nk-ink);
  line-height: 1.55;
}

.nk-contact-rule-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--nk-teal-bg);
  color: var(--nk-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.nk-contact-rule-icon--warn {
  background: #fff8e6;
  color: #b45309;
}

.nk-contact-divider {
  border: none;
  border-top: 1px solid var(--nk-border);
  margin: 16px 0 14px;
}

.nk-contact-disclaimer {
  font-size: 12px;
  color: var(--nk-gray-mid);
  line-height: 1.6;
  margin: 14px 0 16px;
  padding: 11px 13px;
  background: var(--nk-bg);
  border-radius: var(--nk-radius-sm);
  border: 1px solid var(--nk-border);
}

.nk-contact-acknowledge {
  padding: 13px 22px;
  border-top: 1px solid var(--nk-border);
  background: var(--nk-teal-bg);
  flex-shrink: 0;
}

.nk-contact-acknowledge-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--nk-ink);
  line-height: 1.5;
  margin: 0;
  user-select: none;
}

.nk-contact-acknowledge-label.is-locked {
  opacity: 0.45;
  cursor: default;
}

.nk-contact-acknowledge-check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--nk-teal);
  cursor: pointer;
}

.nk-contact-acknowledge-check:disabled {
  cursor: default;
}

.nk-contact-scroll-hint {
  font-size: 11.5px;
  color: var(--nk-gray);
  margin: 5px 0 0 26px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nk-contact-modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 14px 22px 18px;
  border-top: 1px solid var(--nk-border);
  background: var(--nk-bg);
  flex-shrink: 0;
}

.nk-btn-primary:disabled,
.nk-btn-primary[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── Pages d'authentification (login, inscription, reset) ───── */
.nk-auth-body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-family: var(--nk-font-sans);
  font-size: 15px;
  color: var(--nk-ink);
  background: #fff;
}

.nk-auth-body *,
.nk-auth-body *::before,
.nk-auth-body *::after {
  box-sizing: border-box;
}

.nk-auth-wrap {
  display: flex;
  min-height: 100vh;
}

/* ── Panneau de marque (gauche) ─────────────────────────────── */
.nk-auth-brand {
  flex: 0 0 420px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
  overflow: hidden;
  background: var(--nk-rose-pale);
}

.nk-auth-brand::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/img/hero-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

.nk-auth-brand::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
    rgba(253,245,243,.65) 0%,
    rgba(242,216,220,.70) 100%
  );
}

.nk-auth-brand-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.nk-auth-logo-link {
  display: inline-block;
  margin-bottom: 40px;
}

.nk-auth-logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.nk-auth-brand-title {
  font-family: var(--nk-font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--nk-ink);
  line-height: 1.35;
  margin: 0 0 14px;
}

.nk-auth-brand-title em {
  font-style: italic;
  color: var(--nk-rose);
}

.nk-auth-brand-sub {
  font-size: 14px;
  color: var(--nk-plum);
  line-height: 1.75;
  max-width: 290px;
  margin: 0 auto 32px;
}

.nk-auth-brand-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.nk-auth-brand-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--nk-ink);
  font-weight: 500;
}

.nk-auth-brand-feat svg {
  flex-shrink: 0;
  color: var(--nk-teal);
}

/* ── Panneau formulaire (droite) ────────────────────────────── */
.nk-auth-form-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 40px;
  background: #fff;
}

.nk-auth-card {
  width: 100%;
  max-width: 420px;
}

.nk-auth-title {
  font-family: var(--nk-font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--nk-ink);
  margin: 0 0 6px;
}

.nk-auth-sub {
  font-size: 14px;
  color: var(--nk-gray);
  margin: 0 0 30px;
}

/* Flash messages */
.nk-auth-card .message {
  padding: 12px 16px;
  border-radius: var(--nk-radius-sm);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}
.nk-auth-card .message.error   { background: #fdf2f2; color: #9b2c2c; border: 1px solid #fed7d7; }
.nk-auth-card .message.success { background: var(--nk-teal-bg); color: var(--nk-teal); border: 1px solid var(--nk-teal-border); }
.nk-auth-card .message.warning { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }

.nk-auth-form .nk-form-group {
  margin-bottom: 20px;
}

.nk-auth-label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 6px;
}

.nk-auth-forgot-link {
  font-size: 12.5px;
  color: var(--nk-rose);
  text-decoration: none;
}
.nk-auth-forgot-link:hover { text-decoration: underline; }

/* Champ mot de passe avec bouton œil */
.nk-input-wrap {
  position: relative;
}

.nk-input-wrap .nk-input {
  padding-right: 44px;
}

.nk-input-eye {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--nk-gray-mid);
  display: flex;
  align-items: center;
  line-height: 1;
}
.nk-input-eye:hover { color: var(--nk-rose); }

.nk-auth-submit {
  width: 100%;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  font-size: 15px;
  margin-top: 6px;
}

.nk-auth-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.nk-auth-alt {
  text-align: center;
  margin-top: 28px;
  font-size: 14px;
  color: var(--nk-gray);
}

.nk-auth-alt a {
  color: var(--nk-rose);
  font-weight: 600;
  text-decoration: none;
}
.nk-auth-alt a:hover { text-decoration: underline; }

.nk-auth-footer {
  margin-top: 40px;
  font-size: 12px;
  color: var(--nk-gray-mid);
  text-align: center;
}
.nk-auth-footer a { color: var(--nk-gray-mid); }

/* ── Responsive auth ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .nk-auth-brand {
    flex: 0 0 300px;
    padding: 40px 32px;
  }
  .nk-auth-brand-title { font-size: 22px; }
  .nk-auth-brand-features { display: none; }
}

@media (max-width: 640px) {
  .nk-auth-wrap { flex-direction: column; }
  .nk-auth-brand {
    flex: 0 0 auto;
    padding: 32px 24px 28px;
    min-height: unset;
  }
  .nk-auth-brand-sub { display: none; }
  .nk-auth-brand-title { font-size: 20px; margin-bottom: 0; }
  .nk-auth-form-wrap { padding: 36px 20px; }
  .nk-auth-card { max-width: 100%; }
}

/* ── Reset mot de passe — règles & erreurs ───────────────────── */
.nk-auth-field-error {
  margin-top: 6px;
  font-size: 13px;
  color: #c0392b;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nk-pass-rules {
  background: var(--nk-rose-pale);
  border: 1px solid var(--nk-rose-border);
  border-radius: var(--nk-radius-sm);
  padding: 14px 16px;
  margin-bottom: 20px;
}

.nk-pass-rules-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--nk-gray);
  margin: 0 0 10px;
}

.nk-pass-rules ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nk-pass-rule {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--nk-gray);
}

.nk-pass-rule::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--nk-border-2);
  flex-shrink: 0;
  background: #fff;
  transition: background .2s, border-color .2s;
}

.nk-pass-rule.valid {
  color: var(--nk-teal);
}

.nk-pass-rule.valid::before {
  background: var(--nk-teal);
  border-color: var(--nk-teal);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.nk-pass-rule.invalid::before {
  border-color: var(--nk-rose-border);
}

/* ── Séparateur de section avec titre centré (formulaires auth) ─ */
.nk-auth-section-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0 20px;
}
.nk-auth-section-divider::before,
.nk-auth-section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--nk-border);
}
.nk-auth-section-divider span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--nk-gray-mid);
  white-space: nowrap;
}

/* ── Bandeau d'information (formulaires auth) ────────────────── */
.nk-auth-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--nk-teal-bg);
  border: 1px solid var(--nk-teal-border);
  border-radius: var(--nk-radius-sm);
  padding: 12px 14px;
  font-size: 13px;
  color: var(--nk-teal);
  line-height: 1.5;
  margin-bottom: 20px;
}
.nk-auth-notice i { margin-top: 2px; flex-shrink: 0; }

/* ── Ligne à deux colonnes (âge / genre) ──────────────────────── */
.nk-row-2 {
  display: flex;
  gap: 12px;
}
.nk-row-2 .nk-form-group { flex: 1; margin-bottom: 0; }

/* ── Page À propos ────────────────────────────────────────── */

/* Hero */
.nk-about-hero {
  position: relative;
  background: linear-gradient(135deg, #C25A72 0%, #8B3A50 100%);
  background-image: url('/img/hero-bg.png'), linear-gradient(135deg, #C25A72 0%, #8B3A50 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  text-align: center;
  padding: 80px 24px 88px;
}
.nk-about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.22) 0%, rgba(0,0,0,.38) 100%);
  pointer-events: none;
}
.nk-about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.nk-about-hero-logo {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .92;
}
.nk-about-hero-title {
  font-family: var(--nk-font-serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
.nk-about-hero-title em {
  font-style: italic;
  color: #ffd8e2;
}
.nk-about-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.88);
  line-height: 1.65;
  margin: 0;
  max-width: 580px;
}

/* Container commun */
.nk-about-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Badge de section */
.nk-about-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--nk-rose);
  background: var(--nk-rose-bg);
  border: 1px solid var(--nk-rose-border);
  border-radius: var(--nk-radius-pill);
  padding: 4px 14px;
}

/* Titre de section */
.nk-about-h2 {
  font-family: var(--nk-font-serif);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--nk-ink);
  margin: 10px 0 0;
  line-height: 1.25;
}
.nk-about-h2 em {
  font-style: italic;
  color: var(--nk-rose);
}

/* Sous-titre de section */
.nk-about-section-sub {
  font-size: 16px;
  color: var(--nk-gray);
  margin: 10px 0 0;
  line-height: 1.6;
}

/* En-tête de section centré */
.nk-about-section-header {
  text-align: center;
  margin-bottom: 52px;
}

/* Section générique */
.nk-about-section {
  padding: 80px 0;
  background: #fff;
}
.nk-about-section--tinted {
  background: var(--nk-bg-page);
}

/* ── Mission (2 colonnes) */
.nk-about-mission {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.nk-about-mission-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.nk-about-mission-text p {
  font-size: 16px;
  color: var(--nk-gray);
  line-height: 1.7;
  margin: 0;
}
.nk-about-mission-aside {
  display: flex;
  justify-content: center;
}
.nk-about-quote {
  background: var(--nk-rose-pale);
  border: 1px solid var(--nk-rose-border);
  border-left: 4px solid var(--nk-rose);
  border-radius: var(--nk-radius-lg);
  padding: 32px 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.nk-about-quote-icon {
  color: var(--nk-rose);
  opacity: .6;
}
.nk-about-quote blockquote {
  font-family: var(--nk-font-serif);
  font-size: 17px;
  font-style: italic;
  color: var(--nk-ink);
  line-height: 1.65;
  margin: 0;
}
.nk-about-quote cite {
  font-size: 12.5px;
  font-style: normal;
  font-weight: 600;
  color: var(--nk-rose);
  letter-spacing: .04em;
}

/* ── Valeurs (3 cartes) */
.nk-about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.nk-about-value-card {
  background: #fff;
  border: 1px solid var(--nk-border);
  border-radius: var(--nk-radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow .2s, transform .2s;
}
.nk-about-value-card:hover {
  box-shadow: 0 8px 32px rgba(194,90,114,.1);
  transform: translateY(-3px);
}
.nk-about-value-card h3 {
  font-family: var(--nk-font-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--nk-ink);
  margin: 0;
}
.nk-about-value-card p {
  font-size: 14.5px;
  color: var(--nk-gray);
  line-height: 1.65;
  margin: 0;
}
.nk-about-value-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nk-about-value-icon--rose {
  background: var(--nk-rose-bg);
  color: var(--nk-rose);
}
.nk-about-value-icon--teal {
  background: var(--nk-teal-bg);
  color: var(--nk-teal);
}

/* ── Étapes (comment ça marche) */
.nk-about-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: start;
}
.nk-about-step {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.nk-about-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--nk-rose);
  color: #fff;
  font-family: var(--nk-font-serif);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nk-about-step-body h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--nk-ink);
  margin: 0 0 6px;
}
.nk-about-step-body p {
  font-size: 14px;
  color: var(--nk-gray);
  line-height: 1.6;
  margin: 0;
}
.nk-about-step-arrow {
  color: var(--nk-rose-light);
  padding-top: 12px;
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
}

/* ── Stats bar */
.nk-about-stats-bar {
  background: var(--nk-ink);
  padding: 52px 0;
}
.nk-about-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.nk-about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 56px;
  text-align: center;
}
.nk-about-stat-num {
  font-family: var(--nk-font-serif);
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.nk-about-stat-label {
  font-size: 13.5px;
  color: rgba(255,255,255,.6);
  max-width: 220px;
  line-height: 1.45;
}
.nk-about-stat-sep {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

/* ── CTA final */
.nk-about-cta {
  background: var(--nk-rose-bg);
  border-top: 1px solid var(--nk-rose-border);
  padding: 80px 0;
  text-align: center;
}
.nk-about-cta-title {
  font-family: var(--nk-font-serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--nk-ink);
  margin: 0 0 12px;
}
.nk-about-cta-sub {
  font-size: 16px;
  color: var(--nk-gray);
  margin: 0 0 36px;
}
.nk-about-cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.nk-btn-lg {
  padding: 15px 32px;
  font-size: 16px;
}

/* ── Responsive about */
@media (max-width: 900px) {
  .nk-about-mission {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .nk-about-values {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .nk-about-steps {
    grid-template-columns: 1fr;
  }
  .nk-about-step-arrow {
    transform: rotate(90deg);
    padding: 0 0 0 12px;
  }
  .nk-about-stat {
    padding: 24px 32px;
  }
  .nk-about-stat-sep {
    width: 80%;
    height: 1px;
  }
}
@media (max-width: 640px) {
  .nk-about-hero { padding: 56px 20px 64px; }
  .nk-about-section { padding: 56px 0; }
  .nk-about-stats-bar { padding: 40px 0; }
  .nk-about-cta { padding: 56px 0; }
}

/* ── Bouton danger ──────────────────────────────────────────────── */
.nk-btn-danger {
  background: #fff3f3;
  color: #c0392b;
  border: 1px solid #f5c6cb;
}
.nk-btn-danger:hover {
  background: #fde0e0;
  color: #a93226;
}

/* ── En-tête interne (pages secondaires) ────────────────────────── */
.nk-inner-hero {
  background: linear-gradient(135deg, var(--nk-rose) 0%, var(--nk-rose-hover) 100%);
  padding: 44px 28px 40px;
  text-align: center;
}

.nk-inner-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.nk-inner-hero-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 4px;
}

.nk-inner-hero-title {
  font-family: var(--nk-font-serif);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.nk-inner-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  list-style: none;
  padding: 0;
  margin: 0;
}

.nk-inner-hero-breadcrumb a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
}

.nk-inner-hero-breadcrumb a:hover { color: #fff; }
.nk-inner-hero-breadcrumb .sep { opacity: .5; }

/* ── Notifications ──────────────────────────────────────────────── */
.nk-notif-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 36px 24px 60px;
}

.nk-notif-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.nk-notif-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nk-notif-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--nk-radius-md);
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--nk-border);
  border-left: 4px solid var(--nk-rose);
  transition: box-shadow .18s, transform .18s;
}

.nk-notif-item:hover {
  box-shadow: 0 4px 18px rgba(194,90,114,.12);
  transform: translateY(-1px);
  color: inherit;
  text-decoration: none;
}

.nk-notif-item--unread {
  background: var(--nk-rose-pale);
}

.nk-notif-item--read {
  background: #fff;
}

.nk-notif-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.nk-notif-icon--rose {
  background: rgba(194,90,114,.1);
  color: var(--nk-rose);
}

.nk-notif-icon--teal {
  background: var(--nk-teal-bg);
  color: var(--nk-teal);
}

.nk-notif-body {
  flex: 1;
  min-width: 0;
}

.nk-notif-title {
  font-size: 14.5px;
  color: var(--nk-ink);
  line-height: 1.4;
  margin-bottom: 3px;
  font-weight: 400;
}

.nk-notif-title--bold {
  font-weight: 600;
}

.nk-notif-message {
  font-size: 13px;
  color: var(--nk-gray);
  margin-bottom: 4px;
  line-height: 1.45;
}

.nk-notif-time {
  font-size: 12px;
  color: var(--nk-gray-mid);
}

.nk-notif-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--nk-rose);
  flex-shrink: 0;
  margin-top: 6px;
}

.nk-notif-empty {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border: 1px solid var(--nk-border);
  border-radius: var(--nk-radius-lg);
}

.nk-notif-empty-icon {
  font-size: 56px;
  color: var(--nk-rose-border);
  display: block;
  margin-bottom: 18px;
}

.nk-notif-empty-title {
  font-family: var(--nk-font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--nk-rose);
  margin: 0 0 10px;
}

.nk-notif-empty-text {
  font-size: 14.5px;
  color: var(--nk-gray-mid);
  max-width: 380px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .nk-inner-hero { padding: 36px 20px 32px; }
  .nk-notif-wrap { padding: 28px 16px 48px; }
  .nk-notif-item { padding: 14px; gap: 12px; }
}
