:root {
  --nv-ink: #111111;
  --nv-cream: #F7F7F5;
  --nv-bronze: #333333;
  --nv-taupe: #5E5E5E;
  --nv-taupe-2: #8A8A8A;
  --nv-taupe-3: #9A9A9A;
  --nv-taupe-4: #B4B4B4;
  --nv-beige: #EDEDED;
  --nv-panel: #FFFFFF;
  --nv-body: #2E2E2E;
  --nv-line: rgba(17, 17, 17, 0.12);
  --nv-line-strong: rgba(17, 17, 17, 0.22);
  --nv-cream-soft: rgba(247, 247, 245, 0.72);
  --nv-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --nv-sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  --nv-maxw: 1600px;
}

body {
  background: var(--nv-cream);
  color: var(--nv-ink);
  font-family: var(--nv-sans);
  -webkit-font-smoothing: antialiased;
}
/* Divi ajoute padding-top:80px (barre fixe) alors que notre header est sticky → gap parasite en haut */
#page-container { padding-top: 0 !important; margin-top: 0 !important; }
body ::selection { background: var(--nv-ink); color: var(--nv-cream); }
.nv a { color: var(--nv-bronze); text-decoration: none; }
.nv a:hover { color: var(--nv-ink); }

.nv, .nv * { box-sizing: border-box; }
.nv img { max-width: 100%; display: block; }

.nv-wrap { max-width: var(--nv-maxw); margin: 0 auto; }
.nv-section { padding: clamp(48px, 7vw, 96px) 6vw; max-width: var(--nv-maxw); margin: 0 auto; }
.nv-section--flush-top { padding-top: 0; }
.nv-dark { background: var(--nv-ink); color: var(--nv-cream); }
.nv-panel { background: var(--nv-panel); }

.nv-eyebrow {
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--nv-taupe); margin: 0 0 14px; /* --nv-taupe #5E5E5E = 4.8:1 sur crème (AA) */
}
.nv-dark .nv-eyebrow { color: var(--nv-taupe-3); }

.nv-h1, .nv-h2, .nv-h3 { font-family: var(--nv-serif); font-weight: 300; margin: 0; line-height: 1.02; color: inherit; }
.nv-h1 { font-size: clamp(46px, 6.4vw, 104px); line-height: 0.98; letter-spacing: -0.01em; }
.nv-h2 { font-size: clamp(30px, 4vw, 52px); line-height: 1; }
.nv-h3 { font-size: clamp(26px, 3.4vw, 42px); }
.nv-italic { font-style: italic; color: var(--nv-bronze); }
.nv-lead { font-size: 15px; line-height: 1.75; color: var(--nv-taupe); font-weight: 300; }
.nv-dark .nv-lead { color: var(--nv-cream-soft); }

.nv-btn {
  display: inline-block; background: var(--nv-ink); color: var(--nv-cream);
  border: none; cursor: pointer; padding: 17px 34px;
  font-family: var(--nv-sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  text-align: center; text-indent: 0.2em; /* compense l'espace de letter-spacing après le dernier caractère → texte réellement centré */
  transition: opacity 0.25s ease;
}
.nv-btn:hover { opacity: 0.85; color: var(--nv-cream); }
.nv-btn--ghost { background: transparent; color: var(--nv-ink); border: 1px solid rgba(17, 17, 17, 0.4); }
.nv-btn--ghost:hover { background: var(--nv-ink); color: var(--nv-cream); opacity: 1; }
.nv-btn--cream { background: var(--nv-cream); color: var(--nv-ink); }
.nv-btn--cream:hover { color: var(--nv-ink); }

/* Header chrome */
.nv-announce {
  background: var(--nv-ink); color: var(--nv-cream); text-align: center;
  padding: 9px 20px; font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 300;
}
.nv-utilbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 6vw; border-bottom: 1px solid rgba(17, 17, 17, 0.1); background: var(--nv-cream);
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--nv-taupe);
}
.nv-utilbar a, .nv-utilbar span { color: var(--nv-taupe); cursor: pointer; }
.nv-utilbar__right { display: flex; align-items: center; gap: 22px; }
.nv-lang { display: inline-flex; align-items: center; gap: 6px; }
.nv-lang a { color: var(--nv-taupe-4); }
.nv-lang a.is-active { color: var(--nv-ink); font-weight: 500; }
.nv-lang .sep { opacity: 0.4; }

.nv-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(247, 247, 245, 0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}
.nv-header__inner {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px;
  padding: 18px 6vw; max-width: var(--nv-maxw); margin: 0 auto;
}
.nv-nav { display: flex; align-items: center; gap: 26px; justify-self: start; }
.nv-nav a {
  font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--nv-taupe);
  padding-bottom: 2px; border-bottom: 1px solid transparent; transition: color 0.2s ease;
}
.nv-nav a:hover, .nv-nav .current-menu-item > a { color: var(--nv-ink); border-bottom-color: var(--nv-ink); }
.nv-nav .nv-menu { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nv-nav .nv-menu li { margin: 0; }
.nv-mobile nav .nv-menu { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.nv-wordmark { display: flex; align-items: center; gap: 15px; justify-self: center; cursor: pointer; color: var(--nv-ink); }
.nv-wordmark__mark { display: flex; align-items: center; }
.nv-emblem { display: block; }
.nv-wordmark__text { display: flex; flex-direction: column; text-align: left; }
.nv-wordmark__name { font-size: 23px; letter-spacing: 0.42em; font-weight: 500; text-indent: 0.42em; color: var(--nv-ink); line-height: 1; }
.nv-wordmark__sub { font-size: 7.5px; letter-spacing: 0.42em; text-transform: uppercase; color: var(--nv-taupe-2); margin-top: 5px; text-indent: 0.42em; }
.nv-icons { display: flex; align-items: center; gap: 20px; justify-self: end; }
.nv-icons a, .nv-icons button { background: none; border: none; padding: 0; cursor: pointer; display: flex; color: var(--nv-ink); }
.nv-cart { position: relative; }
.nv-cart-count {
  position: absolute; top: -7px; right: -9px; background: var(--nv-ink); color: var(--nv-cream);
  font-size: 9px; min-width: 15px; height: 15px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center; padding: 0 3px;
}
.nv-cart-count[hidden] { display: none; }
.nv-burger { display: none; flex-direction: column; justify-content: center; gap: 6px; width: 26px; height: 26px; padding: 0; background: none; border: 0; cursor: pointer; }
.nv-burger span { height: 1.5px; width: 100%; background: var(--nv-ink); border-radius: 2px; transition: background 0.25s ease, transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1); }
.nv-burger:hover span { background: var(--nv-bronze); }
.nv-burger:hover span:first-child { transform: translateY(1px); }
.nv-burger:hover span:last-child { transform: translateY(-1px); }

.nv-mobile { position: fixed; inset: 0; z-index: 90; background: var(--nv-cream); padding: 26px; display: none; animation: nv-fade 0.3s ease; }
.nv-mobile.is-open { display: block; }
.nv-mobile__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 44px; }
.nv-mobile__brand { display: flex; align-items: center; gap: 10px; color: var(--nv-ink); }
.nv-mobile__close { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; margin: -8px -8px 0 0; padding: 0; background: none; border: 0; font-size: 24px; font-weight: 300; line-height: 1; color: var(--nv-ink); cursor: pointer; transition: color 0.25s ease, transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1); }
.nv-mobile__close:hover { color: var(--nv-bronze); transform: rotate(90deg); }
.nv-mobile nav { display: flex; flex-direction: column; }
.nv-mobile nav a { display: block; font-family: var(--nv-serif); font-size: 34px; padding: 5px 0; line-height: 1.08; color: var(--nv-ink); }
.nv-mobile nav .nv-menu + a { margin-top: 14px; padding-top: 26px; border-top: 1px solid var(--nv-line); }

/* Hero */
.nv-hero { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: calc(100vh - 150px); max-width: var(--nv-maxw); margin: 0 auto; }
.nv-hero__text { display: flex; flex-direction: column; justify-content: center; padding: 0 6vw; }
.nv-hero__img { position: relative; min-height: 440px; background: var(--nv-beige); overflow: hidden; }
.nv-hero__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.nv-hero__tag { position: absolute; bottom: 22px; left: 22px; z-index: 3; background: rgba(247, 247, 245, 0.92); padding: 12px 16px; }
.nv-hero__tag small { font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--nv-taupe-2); display: block; }
.nv-hero__tag strong { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 400; }
.nv-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }

/* Category tiles */
.nv-cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 940px; margin: 0 auto; }
.nv-cat-grid br, .nv-cat-grid > :not(.nv-cat) { display: none; } /* Divi injecte des <br> entre les tuiles → cassaient la grille en 1 colonne */
.nv-cat { position: relative; cursor: pointer; display: block; }
.nv-cat__media { position: relative; width: 100%; aspect-ratio: 4/5; overflow: hidden; background: var(--nv-beige); }
.nv-cat__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(0.92) contrast(1.04); transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.6s ease; }
.nv-cat:hover .nv-cat__media img { filter: saturate(1) contrast(1.02); }
.nv-cat:hover .nv-cat__media img, .nv-cat:focus-visible .nv-cat__media img { transform: scale(1.06); }
/* Dégradé riche : lisibilité garantie du label même sur image claire (ex. Sacs) */
.nv-cat__media::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(17, 17, 17, 0.72) 0%, rgba(17, 17, 17, 0.18) 42%, rgba(17, 17, 17, 0) 68%); transition: background 0.5s ease; }
.nv-cat:hover .nv-cat__media::after { background: linear-gradient(to top, rgba(17, 17, 17, 0.82) 0%, rgba(17, 17, 17, 0.3) 50%, rgba(17, 17, 17, 0.06) 80%); }
/* Cadre filet éditorial qui s'affirme au survol */
.nv-cat__media::before { content: ""; position: absolute; inset: 10px; z-index: 2; border: 1px solid rgba(247, 247, 245, 0); transition: border-color 0.5s ease, inset 0.5s ease; pointer-events: none; }
.nv-cat:hover .nv-cat__media::before, .nv-cat:focus-visible .nv-cat__media::before { border-color: rgba(247, 247, 245, 0.38); inset: 14px; }
.nv-cat__label { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px; z-index: 3; transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); }
.nv-cat:hover .nv-cat__label { transform: translateY(-4px); }
.nv-cat__label b { color: var(--nv-panel); font-family: var(--nv-serif); font-size: 30px; line-height: 1; font-weight: 400; display: block; text-shadow: 0 1px 20px rgba(17, 17, 17, 0.25); }
.nv-cat__label small { color: rgba(247, 247, 245, 0.9); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; margin-top: 11px; display: inline-flex; align-items: center; gap: 7px; position: relative; }
.nv-cat__label small::after { content: "\2192"; font-size: 12px; transform: translateX(-4px); opacity: 0; transition: transform 0.45s ease, opacity 0.45s ease; }
.nv-cat:hover .nv-cat__label small::after { transform: translateX(0); opacity: 1; }
.nv-cat__label small::before { content: ""; position: absolute; left: 0; bottom: -5px; height: 1px; width: 0; background: rgba(247, 247, 245, 0.9); transition: width 0.5s ease; }
.nv-cat:hover .nv-cat__label small::before { width: 20px; }

/* Product card */
.nv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px 30px; }
.nv-card { font-family: var(--nv-sans); display: flex; flex-direction: column; gap: 11px; }
.nv-card__info { display: flex; flex-direction: column; gap: 3px; color: inherit; }
.nv-card__brand, .nv-card__title { display: block; }
.nv-card__media { position: relative; width: 100%; aspect-ratio: 3/4; overflow: hidden; background: var(--nv-beige); }
.nv-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1); }
.nv-card:hover .nv-card__media img { transform: scale(1.045); }
.nv-card__badge { position: absolute; top: 0; left: 0; z-index: 3; background: var(--nv-ink); color: var(--nv-cream); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; padding: 7px 12px; font-weight: 500; }
.nv-card__add {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; border: none; cursor: pointer;
  background: var(--nv-ink); color: var(--nv-cream); font-family: var(--nv-sans);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; padding: 15px 10px;
  transform: translateY(101%); opacity: 0;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s ease;
}
.nv-card:hover .nv-card__add { transform: translateY(0); opacity: 1; }
.nv-card__brand { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--nv-ink); font-weight: 700; }
.nv-card__title { font-size: 13px; color: var(--nv-taupe); line-height: 1.35; }
.nv-card__price { display: flex; align-items: baseline; gap: 10px; margin-top: 2px; }
.nv-card__price ins { text-decoration: none; font-size: 14px; color: var(--nv-ink); letter-spacing: 0.02em; }
.nv-card__price del { font-size: 12px; color: #A0A0A0; }
.nv-card__meta { display: flex; align-items: center; gap: 8px; margin-top: 2px; font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--nv-taupe-2); }
.nv-card__meta .dot { width: 3px; height: 3px; border-radius: 50%; background: #C4C4C4; }

/* Section header row */
.nv-sechead { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 44px; }
.nv-viewall { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; border-bottom: 1px solid var(--nv-ink); padding-bottom: 4px; color: var(--nv-ink); }

/* Auth promise band */
.nv-auth-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; }
.nv-auth-step { border-top: 1px solid rgba(247, 247, 245, 0.2); padding-top: 26px; }
.nv-auth-step .n { font-family: var(--nv-serif); font-size: 40px; color: var(--nv-bronze); line-height: 1; margin-bottom: 20px; }
.nv-auth-step .t { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 12px; }
.nv-auth-step .d { font-size: 14px; line-height: 1.7; color: rgba(247, 247, 245, 0.68); font-weight: 300; }

/* Marquee */
.nv-marquee { padding: 44px 0; border-bottom: 1px solid var(--nv-line); overflow: hidden; }
.nv-marquee__track { display: flex; width: max-content; animation: nv-marquee 42s linear infinite; }
.nv-marquee__group { display: flex; gap: 64px; padding-right: 64px; }
.nv-marquee span { font-family: var(--nv-serif); font-size: 30px; color: var(--nv-taupe-2); white-space: nowrap; letter-spacing: 0.04em; }

/* Sell split */
.nv-split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; max-width: var(--nv-maxw); margin: clamp(56px, 8vw, 100px) auto 0; }
.nv-split__img { position: relative; min-height: 420px; background: var(--nv-beige); overflow: hidden; }
.nv-split__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.nv-split__text { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 6vw, 88px); }

/* Footer */
.nv-footer { background: var(--nv-ink); color: var(--nv-cream); padding: clamp(56px, 7vw, 96px) 6vw 0; }
.nv-footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; max-width: var(--nv-maxw); margin: 0 auto; }
.nv-footer__brand { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; color: var(--nv-cream); }
.nv-footer__name { font-size: 20px; letter-spacing: 0.4em; font-weight: 500; text-indent: 0.4em; margin-bottom: 16px; }
.nv-footer__brand .nv-footer__name { margin-bottom: 0; }
.nv-footer p { font-size: 13px; line-height: 1.7; color: rgba(247, 247, 245, 0.6); font-weight: 300; }
.nv-footer h4 { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--nv-taupe-3); margin: 0 0 6px; font-weight: 400; }
.nv-footer__col { display: flex; flex-direction: column; gap: 13px; }
.nv-footer__col a, .nv-footer__col span.link { font-size: 13px; color: rgba(247, 247, 245, 0.72); }
.nv-footer__col a:hover { color: var(--nv-cream); }
.nv-footer__social { display: flex; gap: 14px; margin-top: 24px; }
.nv-footer__social a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: 1px solid rgba(247, 247, 245, 0.24); border-radius: 50%; color: rgba(247, 247, 245, 0.8); transition: color .25s ease, border-color .25s ease, background-color .25s ease; }
.nv-footer__social a svg { width: 17px; height: 17px; }
.nv-footer__social a:hover { color: var(--nv-ink); background: var(--nv-cream); border-color: var(--nv-cream); }
.nv-news { display: flex; border: 1px solid rgba(247, 247, 245, 0.28); }
.nv-news input { flex: 1; background: transparent; border: none; color: var(--nv-cream); padding: 13px 14px; font-size: 13px; }
.nv-news button { background: var(--nv-cream); color: var(--nv-ink); border: none; cursor: pointer; padding: 0 18px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }
.nv-footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; padding: 26px 0; margin-top: clamp(40px, 6vw, 72px); border-top: 1px solid rgba(247, 247, 245, 0.16); font-size: 11px; letter-spacing: 0.1em; color: rgba(247, 247, 245, 0.5); max-width: var(--nv-maxw); margin-left: auto; margin-right: auto; }
.nv-footer__bottom .legal { display: flex; gap: 20px; text-transform: uppercase; letter-spacing: 0.14em; }

@keyframes nv-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes nv-fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* Tablet */
@media (max-width: 1119px) {
  .nv-grid { grid-template-columns: repeat(3, 1fr); }
  .nv-footer__top { grid-template-columns: 1fr 1fr; }
}

/* Mobile */
@media (max-width: 819px) {
  .nv-header__inner { grid-template-columns: auto 1fr auto; gap: 10px; padding: 14px 5vw; }
  .nv-nav { display: none; }
  .nv-burger { display: flex; }
  .nv-utilbar { display: none; }
  .nv-hero { grid-template-columns: 1fr; min-height: auto; }
  .nv-hero__text { padding: 40px 6vw 0; order: 2; }
  .nv-hero__img { order: 1; }
  .nv-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: none; }
  .nv-grid { grid-template-columns: repeat(2, 1fr); gap: 18px 14px; }
  .nv-auth-grid { grid-template-columns: 1fr; gap: 34px; }
  .nv-split { grid-template-columns: 1fr; }
  .nv-footer__top { grid-template-columns: 1fr; }
  /* Header mobile : logo compact centré, tagline masquée, icônes resserrées (fini l'entassement/overflow) */
  /* Logo mobile : emblème (roue des vents) + nom, tagline masquée */
  .nv-wordmark { gap: 8px; min-width: 0; justify-self: center; }
  .nv-wordmark .nv-emblem { width: 24px; height: 24px; flex: 0 0 auto; }
  .nv-wordmark__text { min-width: 0; }
  .nv-wordmark__name { font-size: 15px; letter-spacing: 0.26em; text-indent: 0.26em; white-space: nowrap; }
  .nv-wordmark__sub { display: none; }
  .nv-icons { gap: 15px; }
  .nv-icons svg { width: 18px; height: 18px; }
}
@media (max-width: 400px) {
  .nv-wordmark { gap: 7px; }
  .nv-wordmark__name { font-size: 13.5px; letter-spacing: 0.22em; text-indent: 0.22em; }
  .nv-icons { gap: 12px; }
}

/* PLP */
.nv-plp { padding: clamp(48px, 7vw, 96px) 6vw; max-width: var(--nv-maxw); margin: 0 auto; }
.nv-plp__head { border-bottom: 1px solid var(--nv-line-strong); padding-bottom: 26px; margin-bottom: 34px; }
.nv-plp__layout { display: grid; grid-template-columns: 210px 1fr; gap: 54px; align-items: start; }
.nv-filters { display: flex; flex-direction: column; gap: 34px; }
.nv-filter__title { display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%; background: none; border: 0; border-bottom: 1px solid var(--nv-line-strong); padding: 0 0 12px; margin-bottom: 18px; font-family: var(--nv-sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--nv-ink); text-align: left; cursor: default; }
.nv-filter__chev { display: none; width: 7px; height: 7px; border-right: 1.5px solid var(--nv-taupe-2); border-bottom: 1.5px solid var(--nv-taupe-2); transform: rotate(45deg); transition: transform 0.3s ease; margin-bottom: 3px; flex: 0 0 auto; }
.nv-filter__title[aria-expanded="true"] .nv-filter__chev { transform: rotate(-135deg); }
.nv-filter__body { overflow: hidden; }
@media (max-width: 1119px) {
  .nv-filters, .nv-facets { gap: 0; }
  .nv-filter__title { cursor: pointer; margin-bottom: 0; padding: 16px 0; }
  .nv-filter__chev { display: block; }
  html.js .nv-filter__body { max-height: 640px; opacity: 1; transition: max-height 0.4s ease, opacity 0.3s ease; }
  html.js .nv-filter__title[aria-expanded="false"] + .nv-filter__body { max-height: 0; opacity: 0; }
  html.js .nv-filter__title[aria-expanded="true"] + .nv-filter__body { padding-bottom: 20px; }
}
.nv-filter__list { display: flex; flex-direction: column; gap: 11px; list-style: none; margin: 0; padding: 0; }
.nv-filter__list a { font-size: 13px; color: var(--nv-taupe); letter-spacing: 0.02em; }
.nv-filter__list a.is-active { color: var(--nv-ink); font-weight: 500; }
.nv-filter__list a .count { color: var(--nv-taupe-4); font-size: 11px; margin-left: 8px; }
.nv-filter__check { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--nv-taupe); }
.nv-filter__box { width: 13px; height: 13px; border: 1px solid var(--nv-taupe-2); display: inline-block; flex-shrink: 0; }
.nv-filter__check.is-active .nv-filter__box { background: var(--nv-ink); border-color: var(--nv-ink); }
.nv-price-form { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--nv-taupe); }
.nv-price-form input { width: 100%; min-width: 0; border: 1px solid var(--nv-line-strong); background: transparent; padding: 9px 10px; font-size: 13px; color: var(--nv-ink); }
.nv-price-form button { background: none; border: none; cursor: pointer; color: var(--nv-bronze); font-size: 16px; padding: 0 4px; }
.nv-facets { display: flex; flex-direction: column; gap: 34px; }
.nv-facet__list { display: flex; flex-direction: column; gap: 10px; list-style: none; margin: 0; padding: 0; }
.nv-facet__opt { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--nv-taupe); cursor: pointer; letter-spacing: 0.02em; }
.nv-facet__opt input { width: 14px; height: 14px; accent-color: var(--nv-ink); cursor: pointer; flex: 0 0 auto; }
.nv-facet__opt .nv-facet__name { flex: 1 1 auto; }
.nv-facet__opt .count { color: var(--nv-taupe-4); font-size: 11px; }
.nv-facet__opt:hover { color: var(--nv-ink); }
.nv-filters__clear { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--nv-bronze); border-bottom: 1px solid currentColor; align-self: flex-start; }
.nv-sortbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; flex-wrap: wrap; gap: 12px; }
.nv-count { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--nv-taupe-2); }
.nv-sort { display: flex; align-items: center; gap: 10px; }
.nv-sort label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--nv-taupe-2); }
.nv-sort select { border: 1px solid var(--nv-line-strong); background: transparent; padding: 9px 14px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--nv-ink); cursor: pointer; }
.nv-pagination { margin-top: 48px; display: flex; justify-content: center; gap: 8px; }
.nv-pagination a, .nv-pagination span { padding: 8px 14px; border: 1px solid var(--nv-line); font-size: 13px; color: var(--nv-taupe); }
.nv-pagination .current { background: var(--nv-ink); color: var(--nv-cream); border-color: var(--nv-ink); }

/* PDP */
.nv-pdp { padding: clamp(48px, 7vw, 96px) 6vw; max-width: var(--nv-maxw); margin: 0 auto; }
.nv-pdp__back { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--nv-taupe-2); margin-bottom: 34px; display: inline-block; }
.nv-pdp__layout { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: start; }
.nv-pdp__gallery { position: sticky; top: 120px; }
.nv-pdp__gallery .woocommerce-product-gallery { position: relative; margin: 0; display: grid; grid-template-columns: 74px 1fr; gap: 16px; align-items: start; }
.nv-pdp__gallery .woocommerce-product-gallery__wrapper, .nv-pdp__gallery .flex-viewport, .nv-pdp__gallery .woocommerce-product-gallery__image:first-child { grid-column: 2; grid-row: 1; margin: 0; }
.nv-pdp__gallery .flex-control-thumbs {
  grid-column: 1; grid-row: 1; display: flex; flex-direction: column; gap: 12px; margin: 0; padding: 0 4px 0 0; list-style: none;
  max-height: calc(100vh - 160px); overflow-y: auto; scrollbar-width: thin; scrollbar-color: var(--nv-line-strong) transparent;
}
.nv-pdp__gallery .flex-control-thumbs::-webkit-scrollbar { width: 4px; }
.nv-pdp__gallery .flex-control-thumbs::-webkit-scrollbar-thumb { background: var(--nv-line-strong); }
.nv-pdp__gallery .flex-control-thumbs::-webkit-scrollbar-track { background: transparent; }
.nv-pdp__gallery .flex-control-thumbs li { width: 74px; flex-shrink: 0; }
.nv-pdp__gallery .flex-control-thumbs img { width: 100%; aspect-ratio: 3/4; object-fit: cover; cursor: pointer; opacity: 0.5; transition: opacity 0.25s ease; }
.nv-pdp__gallery .flex-control-thumbs img.flex-active, .nv-pdp__gallery .flex-control-thumbs img:hover { opacity: 1; }
.nv-pdp__gallery .flex-control-thumbs img.flex-active { outline: 1px solid var(--nv-bronze); outline-offset: -1px; }
.nv-pdp__gallery .woocommerce-product-gallery__image img { aspect-ratio: 3/4; object-fit: cover; background: var(--nv-beige); display: block; }
.nv-pdp__gallery .woocommerce-product-gallery__trigger { position: absolute; top: 14px; right: 14px; z-index: 6; }
.nv-pdp__badge { position: absolute; top: 16px; left: 106px; z-index: 5; background: rgba(247, 247, 245, 0.94); font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; padding: 7px 11px; }
.nv-pdp__brand { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--nv-taupe-2); margin-bottom: 12px; }
.nv-pdp__title { font-family: var(--nv-serif); font-weight: 300; font-size: clamp(30px, 3.6vw, 48px); margin: 0; line-height: 1.05; }
.nv-pdp__price { display: flex; align-items: baseline; gap: 14px; margin-top: 20px; }
.nv-pdp__price ins { text-decoration: none; font-size: 22px; color: var(--nv-ink); }
.nv-pdp__price del { font-size: 15px; color: #A0A0A0; }
.nv-pdp__discount { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--nv-bronze); }
.nv-pdp__desc { font-size: 14px; line-height: 1.75; color: var(--nv-taupe); font-weight: 300; margin: 26px 0; }
.nv-pdp__specs { display: flex; flex-direction: column; border-top: 1px solid var(--nv-line-strong); margin-bottom: 28px; }
.nv-pdp__spec { display: flex; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid rgba(17, 17, 17, 0.1); font-size: 13px; }
.nv-pdp__spec:last-child { border-bottom: none; }
.nv-pdp__spec .k { color: var(--nv-taupe-2); letter-spacing: 0.12em; text-transform: uppercase; font-size: 11px; }
.nv-pdp__actions { display: flex; gap: 12px; margin-bottom: 22px; }
.nv-pdp__actions .nv-btn { flex: 1; text-align: center; padding: 19px; }
.nv-pdp__wish { width: 58px; border: 1px solid var(--nv-line-strong); background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.nv-seal { display: flex; gap: 14px; align-items: flex-start; background: var(--nv-panel); border: 1px solid rgba(51, 51, 51, 0.3); padding: 18px 20px; margin-bottom: 30px; }
.nv-seal svg { flex-shrink: 0; margin-top: 1px; }
.nv-seal__t { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 5px; }
.nv-seal__d { font-size: 13px; line-height: 1.6; color: var(--nv-taupe); font-weight: 300; }
.nv-acc { border-top: 1px solid var(--nv-line-strong); }
.nv-acc__item { border-bottom: 1px solid var(--nv-line-strong); }
.nv-acc__head { display: flex; justify-content: space-between; align-items: center; padding: 17px 0; cursor: pointer; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; }
.nv-acc__sign { font-size: 18px; color: var(--nv-taupe-2); line-height: 1; }
.nv-acc__body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.nv-acc__item.is-open .nv-acc__body { max-height: 320px; }
.nv-acc__body-inner { padding-bottom: 18px; font-size: 13px; line-height: 1.7; color: var(--nv-taupe); font-weight: 300; }
.nv-related { margin-top: clamp(64px, 9vw, 110px); }
.nv-related > h2 { text-align: center; margin: 0 0 40px; }

/* Cart / Checkout (WooCommerce restyle) */
.nv-steps { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin: 0 0 44px; padding-bottom: 26px; border-bottom: 1px solid var(--nv-line-strong); }
.nv-steps__item { display: flex; align-items: center; gap: 9px; }
.nv-steps__n { width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; border: 1px solid rgba(17, 17, 17, 0.3); color: var(--nv-taupe-2); }
.nv-steps__item.is-active .nv-steps__n, .nv-steps__item.is-done .nv-steps__n { background: var(--nv-ink); color: var(--nv-cream); border-color: var(--nv-ink); }
.nv-steps__label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--nv-taupe-2); }
.nv-steps__item.is-active .nv-steps__label { color: var(--nv-ink); font-weight: 500; }
.nv-steps__sep { color: #C4C4C4; }
.woocommerce-cart .woocommerce, .woocommerce-checkout .woocommerce, .woocommerce-account .woocommerce { max-width: var(--nv-maxw); margin: 0 auto; padding: clamp(40px, 6vw, 80px) 6vw; font-family: var(--nv-sans); }
.woocommerce .button, .woocommerce button.button, .woocommerce input.button, .woocommerce a.button, .woocommerce #respond input#submit, .woocommerce button.button.alt, .woocommerce input.button.alt {
  background: var(--nv-ink); color: var(--nv-cream); border: none; border-radius: 0;
  padding: 15px 30px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 400; text-align: center; text-indent: 0.2em; transition: opacity 0.25s ease;
}
.woocommerce .button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover, .woocommerce a.button:hover, .woocommerce #respond input#submit:hover, .woocommerce button.button.alt:hover { background: var(--nv-ink); color: var(--nv-cream); opacity: 0.85; }
.woocommerce table.shop_table { border: none; border-radius: 0; }
.woocommerce table.shop_table th { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--nv-taupe-2); border-top: none; }
.woocommerce table.shop_table td { border-top: 1px solid var(--nv-line); }
.woocommerce .cart_totals h2, .woocommerce-checkout h3, .woocommerce-column__title { font-family: var(--nv-serif); font-weight: 300; }
.woocommerce .quantity input.qty { border: 1px solid var(--nv-line-strong); background: transparent; }
.woocommerce-checkout #payment { background: var(--nv-panel); border-radius: 0; }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce form .form-row select, .select2-container .select2-selection { border: 1px solid var(--nv-line-strong); border-radius: 0; background: transparent; padding: 12px 14px; }
.woocommerce-message, .woocommerce-info, .woocommerce-error,
.woocommerce .woocommerce-info, .woocommerce-page .woocommerce-info,
.woocommerce .woocommerce-message, .woocommerce-page .woocommerce-message {
  background: var(--nv-panel) !important; color: var(--nv-body) !important;
  border-top: 3px solid var(--nv-bronze) !important; border-radius: 0 !important;
}
.woocommerce-info a, .woocommerce-message a, .woocommerce-error a { color: var(--nv-bronze) !important; }
.woocommerce-info::before, .woocommerce-message::before, .woocommerce-error::before { color: var(--nv-bronze) !important; }
.woocommerce .cart-collaterals .cart_totals, .woocommerce-checkout #order_review { background: var(--nv-panel); padding: 28px; }

/* Phase-2 responsive */
@media (max-width: 1119px) {
  .nv-plp__layout { grid-template-columns: 1fr; gap: 34px; }
}
@media (max-width: 819px) {
  .nv-pdp__layout { grid-template-columns: 1fr; gap: 30px; }
  .nv-pdp__gallery { position: static; }
}

/* WooCommerce Blocks (cart / checkout) */
.woocommerce .wp-block-woocommerce-cart, .woocommerce .wp-block-woocommerce-checkout, body.woocommerce-cart .entry-content, body.woocommerce-checkout .entry-content { font-family: var(--nv-sans); }
.wc-block-components-button:not(.is-link), a.wc-block-cart__submit-button, .wc-block-cart__submit-button, .wp-block-button__link {
  background: var(--nv-ink); color: var(--nv-cream); border: none; border-radius: 0;
  font-family: var(--nv-sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 400; padding: 16px 24px;
  box-shadow: none;
}
.wc-block-components-button:not(.is-link):hover { background: var(--nv-ink); opacity: 0.85; }
.wc-block-components-button:not(.is-link) .wc-block-components-button__text { color: var(--nv-cream); }
.wc-block-components-title, .wc-block-cart__totals-title, .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-title { font-family: var(--nv-serif); font-weight: 300; text-transform: uppercase; letter-spacing: 0.12em; }
.wc-block-components-totals-item__value, .wc-block-components-product-price { color: var(--nv-ink); }
.wc-block-cart-items__row, .wc-block-components-totals-item, .wc-block-cart__totals-title { border-color: var(--nv-line) !important; }
.wc-block-components-text-input input, .wc-block-components-text-input textarea { border-radius: 0 !important; border: 1px solid var(--nv-line-strong) !important; }
.is-large.wc-block-cart .wc-block-cart-items { border: none; }

/* Vendre / La Maison */
.nv-how { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; max-width: 1200px; margin: 0 auto; }
.nv-how__item { text-align: center; }
.nv-how__n { font-family: var(--nv-serif); font-size: 60px; color: var(--nv-bronze); line-height: 1; margin-bottom: 18px; }
.nv-how__t { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 14px; }
.nv-how__d { font-size: 14px; line-height: 1.7; color: var(--nv-taupe); font-weight: 300; max-width: 300px; margin: 0 auto; }
.nv-perks-grid { max-width: 1340px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 4vw, 60px); align-items: center; }
.nv-perk { display: flex; gap: 16px; align-items: baseline; padding: 16px 0; border-top: 1px solid var(--nv-line); }
.nv-perk__k { font-family: var(--nv-serif); font-size: 22px; color: var(--nv-bronze); flex-shrink: 0; }
.nv-perk__v { font-size: 14px; line-height: 1.6; color: var(--nv-body); font-weight: 300; }
.nv-stats { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.nv-stat { text-align: center; }
.nv-stat__k { font-family: var(--nv-serif); font-weight: 300; font-size: clamp(44px, 6vw, 80px); line-height: 1; }
.nv-stat__v { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--nv-taupe-3); margin-top: 14px; }
.nv-story { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 64px; align-items: start; }
.nv-story__body { display: flex; flex-direction: column; gap: 20px; font-size: 15px; line-height: 1.85; color: var(--nv-body); font-weight: 300; }
.nv-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; max-width: 1200px; margin: 0 auto; }
.nv-value { text-align: center; padding: 0 10px; }
.nv-value__t { font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 16px; }
.nv-value__d { font-size: 14px; line-height: 1.75; color: var(--nv-taupe); font-weight: 300; max-width: 300px; margin: 0 auto; }
.nv-img-band { max-width: 1200px; margin: 0 auto; position: relative; height: clamp(340px, 46vw, 620px); background: var(--nv-beige); overflow: hidden; }
.nv-img-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 819px) {
  .nv-how, .nv-values, .nv-stats, .nv-perks-grid, .nv-story { grid-template-columns: 1fr; gap: 34px; }
}

/* Full-width page template + custom cart */
.nv-page__title { font-size: clamp(36px, 5vw, 64px); margin: 0 0 34px; }
.nv-cart { display: grid; grid-template-columns: 1.6fr 1fr; gap: 56px; align-items: start; }
.nv-cart__items { display: flex; flex-direction: column; }
.nv-cart__row { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--nv-line); position: relative; }
.nv-cart__row:first-child { border-top: 1px solid var(--nv-line); }
.nv-cart__thumb { width: 96px; height: 128px; flex-shrink: 0; background: var(--nv-beige); overflow: hidden; }
.nv-cart__thumb img { width: 100%; height: 100%; object-fit: cover; }
.nv-cart__info { flex: 1; display: flex; flex-direction: column; }
.nv-cart__brand { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; }
.nv-cart__title { font-size: 14px; color: var(--nv-taupe); margin-top: 5px; }
.nv-cart__title a { color: var(--nv-taupe); }
.nv-cart__cond { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--nv-taupe-2); margin-top: 6px; }
.nv-cart__bottom { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 12px; }
.nv-qty { display: flex; align-items: center; border: 1px solid var(--nv-line-strong); }
.nv-qty__btn { background: none; border: none; cursor: pointer; padding: 6px 13px; font-size: 14px; color: var(--nv-ink); line-height: 1; }
.nv-qty__input { width: 38px; text-align: center; border: none; background: transparent; font-size: 13px; -moz-appearance: textfield; padding: 6px 0; }
.nv-qty__input::-webkit-outer-spin-button, .nv-qty__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.nv-cart__linetotal { font-size: 15px; }
.nv-cart__remove { position: absolute; top: 22px; right: 0; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--nv-taupe-2); }
.nv-cart__remove:hover { color: var(--nv-ink); }
.nv-cart__actions { padding-top: 20px; }
.nv-summary { background: var(--nv-panel); padding: 32px; }
.nv-summary__title { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--nv-line-strong); }
.nv-summary__row { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 14px; color: var(--nv-taupe); }
.nv-summary__row span:last-child { color: var(--nv-ink); }
.nv-summary__total { display: flex; justify-content: space-between; font-size: 16px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--nv-line-strong); }
.nv-summary__cta { display: block; text-align: center; width: 100%; margin-top: 28px; padding: 18px; }
.nv-summary__secure { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 18px; font-size: 11px; color: var(--nv-taupe-2); letter-spacing: 0.06em; }
.nv-cart__collaterals .cart_totals { background: none; padding: 0; }
@media (max-width: 900px) {
  .nv-cart { grid-template-columns: 1fr; gap: 36px; }
}

/* CTA colours — force both background AND colour in every state, with
   !important, so neither the generic `.nv a` colour nor Divi/WooCommerce
   button-hover backgrounds (which flip to a light fill and hide the text)
   can break the buttons. */
.nv .nv-btn, .nv a.nv-btn { background: var(--nv-ink) !important; color: var(--nv-cream) !important; opacity: 1 !important; transition: background-color 0.3s ease, color 0.3s ease; }
.nv .nv-btn:hover, .nv a.nv-btn:hover { background: var(--nv-bronze) !important; color: var(--nv-cream) !important; opacity: 1 !important; }
.nv .nv-btn--ghost, .nv a.nv-btn--ghost { background: transparent !important; color: var(--nv-ink) !important; }
.nv .nv-btn--ghost:hover, .nv a.nv-btn--ghost:hover { background: var(--nv-ink) !important; color: var(--nv-cream) !important; opacity: 1 !important; }
.nv .nv-btn--cream, .nv a.nv-btn--cream { background: var(--nv-cream) !important; color: var(--nv-ink) !important; }
.nv .nv-btn--cream:hover, .nv a.nv-btn--cream:hover { background: var(--nv-bronze) !important; color: var(--nv-cream) !important; opacity: 1 !important; }
.nv .nv-card__add, .nv .nv-card__add:hover { background: var(--nv-ink) !important; color: var(--nv-cream) !important; opacity: 1 !important; }
.nv a.nv-viewall, .nv a.nv-viewall:hover { color: var(--nv-ink); }
.nv a.nv-pdp__back { color: var(--nv-taupe-2); }
.nv a.nv-pdp__back:hover { color: var(--nv-ink); }
.nv a.nv-cart__remove { color: var(--nv-taupe-2); }
.nv a.nv-cart__remove:hover { color: var(--nv-ink); }

.woocommerce .button, .woocommerce button.button, .woocommerce input.button, .woocommerce a.button, .woocommerce #place_order, .woocommerce button[name="apply_coupon"] { background: var(--nv-ink) !important; color: var(--nv-cream) !important; border-radius: 0 !important; }
.woocommerce .button, .woocommerce button.button, .woocommerce input.button, .woocommerce a.button, .woocommerce #place_order, .woocommerce button[name="apply_coupon"] { padding: 15px 30px !important; border: 0 solid transparent !important; }
.woocommerce .button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover, .woocommerce a.button:hover, .woocommerce #place_order:hover, .woocommerce button[name="apply_coupon"]:hover { background: var(--nv-bronze) !important; color: var(--nv-cream) !important; opacity: 1 !important; padding: 15px 30px !important; border: 0 solid transparent !important; }
.woocommerce .wc-block-components-button:not(.is-link) { background: var(--nv-ink) !important; color: var(--nv-cream) !important; }
.woocommerce .wc-block-components-button:not(.is-link):hover { background: var(--nv-bronze) !important; color: var(--nv-cream) !important; opacity: 1 !important; }

/* PDP enrichie (v2) */
@media (min-width: 820px) { .nv-pdp__layout { grid-template-columns: 1.15fr 1fr; } } /* desktop only : ne doit PAS écraser le 1fr mobile (sinon image écrasée) */
.nv-pdp__breadcrumb { margin-bottom: 30px; font-size: 11px; letter-spacing: 0.06em; }
.nv-pdp__breadcrumb .woocommerce-breadcrumb { color: var(--nv-taupe-2); text-transform: uppercase; letter-spacing: 0.14em; font-size: 11px; }
.nv-pdp__breadcrumb a { color: var(--nv-taupe-2); }
.nv-pdp__breadcrumb a:hover { color: var(--nv-ink); }
.nv-pdp__head { margin-bottom: 18px; }
.nv-pdp__brand { color: var(--nv-bronze); letter-spacing: 0.2em; text-transform: uppercase; font-size: 12px; margin: 0 0 12px; }
.nv-pdp__unique { font-style: italic; color: var(--nv-bronze); font-family: var(--nv-serif); font-size: 20px; margin: 10px 0 0; }
.nv-pdp__price { display: flex; flex-direction: column; gap: 4px; margin: 0 0 8px; }
.nv-pdp__price .woocommerce-Price-amount { font-size: 24px; color: var(--nv-ink); }
.nv-pdp__price del .woocommerce-Price-amount, .nv-pdp__price del { color: #A0A0A0; }
.nv-pdp__price del .woocommerce-Price-amount { font-size: 16px; }
.nv-pdp__price ins { text-decoration: none; }
.nv-pdp__price-note { font-size: 12px; color: var(--nv-taupe-2); letter-spacing: 0.02em; }
.nv-pdp__proof { font-size: 13px; color: var(--nv-bronze); border-top: 1px solid var(--nv-line); padding-top: 16px; margin: 8px 0 22px; letter-spacing: 0.02em; }
.nv-pdp__size { margin-bottom: 24px; }
.nv-pdp__size-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.nv-pdp__size-head > span { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--nv-taupe-2); }
.nv-pdp__guide-link { background: none; border: none; padding: 0; cursor: pointer; color: var(--nv-ink); font-size: 12px; text-decoration: underline; text-underline-offset: 3px; font-family: var(--nv-sans); }
.nv-pdp__guide-link:hover { color: var(--nv-bronze); }
.nv-pdp__size-pill { display: inline-flex; align-items: center; justify-content: center; min-width: 52px; height: 46px; padding: 0 16px; border: 1px solid var(--nv-ink); font-size: 13px; letter-spacing: 0.04em; }
.nv-pdp__size-pill.is-active { background: var(--nv-panel); }
.nv-pdp__size-hint { font-size: 12px; color: var(--nv-taupe-2); margin: 10px 0 0; }
.nv-pdp__cta-note { font-size: 12px; color: var(--nv-taupe-2); margin: 12px 0 0; }
.nv-pdp__reassurance { border: 1px solid var(--nv-line); background: var(--nv-panel); padding: 18px 20px; display: flex; flex-direction: column; gap: 12px; margin: 26px 0; }
.nv-pdp__reassurance-line { display: flex; gap: 12px; align-items: flex-start; font-size: 13px; line-height: 1.5; color: var(--nv-body); margin: 0; }
.nv-pdp__reassurance-line strong { font-weight: 500; }
.nv-ico { width: 18px; height: 18px; flex: 0 0 18px; margin-top: 1px; }
.nv-pdp__chapo { font-size: 14px; line-height: 1.75; color: var(--nv-taupe); font-weight: 300; margin: 0 0 24px; }
.nv-pdp__specs { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; border-top: 1px solid var(--nv-line); }
.nv-pdp__specs li { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(17, 17, 17, 0.08); font-size: 13px; }
.nv-pdp__specs li span { color: var(--nv-taupe-2); letter-spacing: 0.12em; text-transform: uppercase; font-size: 11px; }
.nv-pdp__payment { display: flex; align-items: center; gap: 10px; font-size: 11px; color: var(--nv-taupe-2); letter-spacing: 0.04em; }
.nv-pdp__band { max-width: 900px; margin: clamp(48px, 7vw, 90px) auto 0; }
.nv-pdp__band .nv-seal { margin-bottom: 40px; }
.nv-size-guide { border: none; padding: 0; max-width: 480px; width: 90%; background: var(--nv-cream); color: var(--nv-ink); font-family: var(--nv-sans); }
.nv-size-guide::backdrop { background: rgba(17, 17, 17, 0.45); }
.nv-size-guide__head { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 1px solid var(--nv-line); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; }
.nv-size-guide__close { background: none; border: none; font-size: 24px; line-height: 1; cursor: pointer; color: var(--nv-ink); }
.nv-size-guide__table { width: 100%; border-collapse: collapse; margin: 8px 0; }
.nv-size-guide__table th, .nv-size-guide__table td { padding: 12px 24px; text-align: left; font-size: 13px; border-bottom: 1px solid var(--nv-line); }
.nv-size-guide__table th { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--nv-taupe-2); }
.nv-size-guide__note { padding: 12px 24px 24px; font-size: 12px; color: var(--nv-taupe-2); margin: 0; }

/* Native add-to-cart / variations form */
.nv-pdp__form { margin-bottom: 8px; }
.nv-pdp__form .variations { width: 100%; margin: 0 0 16px; border-collapse: collapse; }
.nv-pdp__form .variations tr { display: block; margin-bottom: 16px; }
/* Libellé masqué visuellement (le placeholder du menu porte déjà "Choisir une taille/couleur")
   mais gardé pour les lecteurs d'écran (association <label for>). */
.nv-pdp__form .variations .label { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.nv-pdp__guide-row { display: flex; justify-content: flex-end; margin-bottom: 10px; }
.nv-pdp__form .variations td.value { display: block; padding: 0; }
.nv-pdp__form select, .nv-pdp__form .variations select {
  width: 100%; border: 1px solid var(--nv-ink); background-color: transparent; color: var(--nv-ink);
  padding: 14px 40px 14px 16px; font-family: var(--nv-sans); font-size: 14px; border-radius: 0;
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23111111' stroke-width='1.3' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.nv-pdp__form .reset_variations { display: inline-block; margin-top: 8px; font-size: 12px; color: var(--nv-taupe-2); }
.nv-pdp__form .woocommerce-variation-price { margin: 6px 0 14px; }
.nv-pdp__form .woocommerce-variation-price .price { font-size: 20px; color: var(--nv-ink); }
.nv-pdp__form .woocommerce-variation-availability { font-size: 13px; color: var(--nv-bronze); margin-bottom: 10px; }
.nv-pdp__form .woocommerce-variation-add-to-cart, .nv-pdp__form form.cart { display: flex; gap: 12px; align-items: stretch; flex-wrap: wrap; }
.nv-pdp__form .quantity { display: flex; align-items: center; border: 1px solid var(--nv-line-strong); }
.nv-pdp__form .quantity input.qty { width: 54px; border: none; background: transparent; text-align: center; padding: 0; height: 48px; -moz-appearance: textfield; }
.nv-pdp__form .quantity input.qty::-webkit-outer-spin-button, .nv-pdp__form .quantity input.qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.nv-pdp__form .single_add_to_cart_button { flex: 1; min-width: 200px; }
.nv-pdp__wish { width: 58px; flex: 0 0 58px; border: 1px solid var(--nv-line-strong); background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.nv-pdp__wish:hover { border-color: var(--nv-ink); }
.nv-pdp__form .woocommerce-variation-add-to-cart-disabled .single_add_to_cart_button { opacity: 0.4; pointer-events: none; }
@media (max-width: 819px) {
  .nv-pdp__layout { grid-template-columns: 1fr; gap: 28px; }
  .nv-pdp__gallery { position: static; }
  .nv-pdp__gallery .woocommerce-product-gallery { grid-template-columns: 1fr; }
  .nv-pdp__gallery .woocommerce-product-gallery__wrapper, .nv-pdp__gallery .flex-viewport, .nv-pdp__gallery .woocommerce-product-gallery__image:first-child { grid-column: 1; grid-row: 1; }
  .nv-pdp__gallery .flex-control-thumbs { grid-column: 1; grid-row: 2; flex-direction: row; overflow-x: auto; margin-top: 12px; }
  .nv-pdp__gallery .flex-control-thumbs li { width: 64px; flex: 0 0 64px; }
  .nv-pdp__badge { top: 14px; left: 14px; }
  /* CTA pleine largeur sur sa propre ligne (qty + wishlist au-dessus) */
  .nv-pdp__form .single_add_to_cart_button { flex: 1 1 100%; min-width: 0; order: 3; }
  .nv-pdp__title { font-size: clamp(28px, 8vw, 36px); }
}

/* Remove Divi's button hover-arrow glyph (renders as a stray "5" in the Jost font)
   on WooCommerce buttons — coupon, place order, cart, etc. */
.woocommerce .button::before, .woocommerce .button::after,
.woocommerce button.button::before, .woocommerce button.button::after,
.woocommerce input.button::before, .woocommerce input.button::after,
.woocommerce a.button::before, .woocommerce a.button::after,
.woocommerce #place_order::before, .woocommerce #place_order::after,
.woocommerce button[name="apply_coupon"]::before, .woocommerce button[name="apply_coupon"]::after,
.woocommerce .wc-block-components-button::before, .woocommerce .wc-block-components-button::after {
  content: none !important;
  display: none !important;
}
.woocommerce .button, .woocommerce button.button, .woocommerce input.button, .woocommerce a.button, .woocommerce #place_order {
  font-family: var(--nv-sans) !important;
}

/* --- Accessibilité : lien d'évitement + focus clavier + mouvement réduit --- */
.nv-skip {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -120%);
  z-index: 200; background: var(--nv-ink); color: var(--nv-cream);
  padding: 12px 20px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  transition: transform 0.2s ease;
}
.nv-skip:focus { transform: translate(-50%, 0); color: var(--nv-cream); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
textarea:focus-visible, [tabindex]:focus-visible, .nv-burger:focus-visible {
  outline: 2px solid var(--nv-bronze); outline-offset: 2px; border-radius: 1px;
}
.nv-dark a:focus-visible, .nv-footer a:focus-visible, .nv-announce a:focus-visible {
  outline-color: var(--nv-cream);
}
/* --- Motion design : apparitions au scroll + micro-interactions --- */
.nv-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.85s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1); }
.nv-reveal.is-in { opacity: 1; transform: none; }
.nv-reveal[data-nv-i="1"] { transition-delay: 0.07s; }
.nv-reveal[data-nv-i="2"] { transition-delay: 0.14s; }
.nv-reveal[data-nv-i="3"] { transition-delay: 0.21s; }
.nv-reveal[data-nv-i="4"] { transition-delay: 0.28s; }
/* Hero : léger settle (zoom lent) à l'arrivée */
.nv-hero__img img { animation: nv-settle 1.7s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
@keyframes nv-settle { from { transform: scale(1.07); } to { transform: scale(1); } }
/* Boutons : micro-lift tactile au survol */
.nv-btn { transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease; }
.nv-btn:hover { transform: translateY(-1px); }
.nv-btn:active { transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .nv-reveal { opacity: 1 !important; transform: none !important; }
  .nv-btn:hover { transform: none; }
}

/* --- Jauge "livraison offerte dès 300 €" (panier) --- */
.nv-freeship { margin: 0 0 22px; }
.nv-freeship__msg { font-size: 12.5px; letter-spacing: 0.02em; color: var(--nv-taupe); margin-bottom: 10px; }
.nv-freeship__msg strong { color: var(--nv-ink); font-weight: 600; }
.nv-freeship__track { height: 3px; background: var(--nv-line-strong); position: relative; overflow: hidden; }
.nv-freeship__bar { position: absolute; inset: 0 auto 0 0; background: var(--nv-bronze); width: 0; transition: width 0.4s ease; }
.nv-freeship.is-unlocked .nv-freeship__bar { background: var(--nv-ink); }

/* --- Cross-sell panier "Complétez votre tenue" --- */
.nv-crosssell { margin-top: clamp(40px, 6vw, 72px); }
.nv-crosssell .nv-h3 { margin-bottom: 26px; }
.nv-crosssell .nv-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 819px) { .nv-crosssell .nv-grid { grid-template-columns: repeat(2, 1fr); } }

/* --- Avis clients (reviews) --- */
.star-rating { color: var(--nv-bronze); }
.nv-pdp__rating { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; color: var(--nv-taupe); font-size: 12px; }
.nv-card__rating { display: block; margin: 3px 0 1px; }
.nv-card__rating .star-rating { font-size: 11px; }
.nv-reviews { max-width: var(--nv-maxw); margin: clamp(48px, 6vw, 80px) auto 0; padding: 0 6vw; }
.nv-reviews .woocommerce-Reviews-title { font-family: var(--nv-serif); font-weight: 300; font-size: clamp(26px, 3.4vw, 42px); line-height: 1.05; margin: 0 0 26px; color: var(--nv-ink); }
.nv-reviews .commentlist { list-style: none; margin: 0 0 40px; padding: 0; display: flex; flex-direction: column; gap: 24px; }
.nv-reviews .commentlist li { border-bottom: 1px solid var(--nv-line); padding-bottom: 20px; }
.nv-reviews .commentlist .meta { font-size: 12px; color: var(--nv-taupe-2); letter-spacing: 0.04em; margin-bottom: 6px; }
.nv-reviews .description { font-size: 14px; line-height: 1.7; color: var(--nv-taupe); }
.nv-reviews .comment-form { display: flex; flex-direction: column; gap: 14px; max-width: 640px; }
.nv-reviews .comment-form-rating label { display: block; margin-bottom: 4px; }
.nv-reviews p.stars a { color: var(--nv-bronze); }
.nv-reviews .comment-form input[type="text"], .nv-reviews .comment-form input[type="email"], .nv-reviews .comment-form textarea {
  border: 1px solid var(--nv-line-strong); background: transparent; padding: 12px 14px;
  font-family: var(--nv-sans); font-size: 14px; color: var(--nv-ink); width: 100%;
}
.nv-reviews .comment-form label { font-size: 12px; letter-spacing: 0.04em; color: var(--nv-taupe); }
.nv-reviews #submit {
  align-self: flex-start; background: var(--nv-ink); color: var(--nv-cream); border: 0;
  padding: 14px 30px; font-family: var(--nv-sans); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; cursor: pointer;
}
.nv-reviews #submit:hover { background: var(--nv-bronze); }

/* --- Cart drawer (mini-panier slide-out) --- */
.nv-drawer-overlay { position: fixed; inset: 0; background: rgba(17, 17, 17, 0.4); z-index: 95; animation: nv-fade 0.25s ease; }
.nv-drawer {
  position: fixed; top: 0; right: 0; z-index: 100; height: 100%; width: min(420px, 92vw);
  background: var(--nv-cream); display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(17, 17, 17, 0.12);
}
.nv-drawer.is-open { transform: translateX(0); }
.nv-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 22px 26px; border-bottom: 1px solid var(--nv-line); }
.nv-drawer__title { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--nv-ink); }
.nv-drawer__close { background: none; border: none; font-size: 24px; line-height: 1; cursor: pointer; color: var(--nv-ink); }
.nv-drawer__body { display: flex; flex-direction: column; flex: 1 1 auto; overflow: hidden; }
.nv-drawer__items { flex: 1 1 auto; overflow-y: auto; padding: 8px 26px; }
.nv-drawer__row { display: grid; grid-template-columns: 60px 1fr auto; gap: 14px; align-items: start; padding: 18px 0; border-bottom: 1px solid var(--nv-line); }
.nv-drawer__thumb img { width: 60px; height: 74px; object-fit: cover; background: var(--nv-panel); }
.nv-drawer__info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.nv-drawer__brand { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--nv-taupe-2); }
.nv-drawer__name { font-size: 13px; color: var(--nv-ink); }
.nv-drawer__q { font-size: 12px; color: var(--nv-taupe); margin-top: 2px; }
.nv-drawer__remove { color: var(--nv-taupe-4); font-size: 16px; line-height: 1; text-decoration: none; }
.nv-drawer__remove:hover { color: var(--nv-ink); }
.nv-drawer .nv-freeship { padding: 16px 26px 4px; margin: 0; }
.nv-drawer__foot { padding: 18px 26px 24px; border-top: 1px solid var(--nv-line); background: var(--nv-cream); }
.nv-drawer__subtotal { display: flex; justify-content: space-between; align-items: baseline; font-size: 13px; letter-spacing: 0.04em; margin-bottom: 16px; }
.nv-drawer__subtotal span:last-child { font-size: 16px; }
.nv-drawer__checkout { display: block; text-align: center; width: 100%; }
.nv-drawer__view { display: block; text-align: center; margin-top: 12px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--nv-taupe); }
.nv-drawer__view:hover { color: var(--nv-ink); }
.nv-drawer__empty { padding: 60px 26px; text-align: center; display: flex; flex-direction: column; gap: 20px; align-items: center; }
.nv-drawer__empty p { font-size: 14px; color: var(--nv-taupe); }

/* --- Wishlist (Ma sélection) --- */
.nv-wish { color: var(--nv-ink); background: transparent; border: none; padding: 0; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: color 0.2s ease; }
.nv-wish svg { fill: none; stroke: currentColor; stroke-width: 1.4; }
.nv-wish:hover { color: var(--nv-bronze); }
.nv-wish.is-active { color: var(--nv-bronze); }
.nv-wish.is-active svg { fill: var(--nv-bronze); stroke: var(--nv-bronze); }
.nv-card__media { position: relative; }
.nv-card__wish { position: absolute; top: 12px; right: 12px; z-index: 3; width: 34px; height: 34px; border-radius: 50%; background: rgba(247, 247, 245, 0.92); box-shadow: 0 1px 6px rgba(17, 17, 17, 0.08); }
.nv-card__wish svg { width: 15px; height: 15px; }
.nv-wishlink { position: relative; }
.nv-wish-count { position: absolute; top: -7px; right: -9px; background: var(--nv-ink); color: var(--nv-cream); font-size: 9px; min-width: 15px; height: 15px; border-radius: 9px; display: flex; align-items: center; justify-content: center; padding: 0 3px; }
.nv-wish-count[hidden] { display: none; }
.nv-grid--account { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 819px) { .nv-grid--account { grid-template-columns: repeat(2, 1fr); } }

/* --- Panier AJAX --- */
html.js .nv-cart__actions { display: none; } /* MAJ auto en AJAX, bouton inutile (fallback no-JS) */
.nv-cart__row.is-loading { opacity: 0.45; pointer-events: none; transition: opacity 0.15s ease; }

/* --- Alerte retour en stock --- */
.nv-pdp__oos { font-size: 13px; color: var(--nv-bronze); letter-spacing: 0.02em; margin: 0 0 14px; }
.nv-notify-form { display: flex; gap: 10px; margin-bottom: 10px; }
.nv-notify-form input[type="email"] { flex: 1 1 auto; min-width: 0; border: 1px solid var(--nv-line-strong); background: transparent; padding: 14px; font-family: var(--nv-sans); font-size: 14px; color: var(--nv-ink); }
.nv-notify-form .nv-btn { flex: 0 0 auto; }
.nv-notify-msg { font-size: 12.5px; color: var(--nv-taupe); margin: 0 0 10px; }
.nv-notify-msg:empty { margin: 0; }
.nv-notify-msg.is-error { color: #9c3b2c; }

/* --- Confirmation double opt-in (retour en stock) --- */
.nv-pdp__confirm { font-size: 13px; color: var(--nv-bronze); border-left: 2px solid var(--nv-bronze); padding: 8px 14px; margin: 0 0 16px; background: rgba(0, 0, 0, 0.02); }
.nv-pdp__confirm.is-error { color: #9c3b2c; border-left-color: #9c3b2c; }

/* --- Région d'annonce lecteurs d'écran (aria-live) --- */
.nv-sr-live { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* ============================================================
   PASSE POLISH — audit multi-zones (2026-07-14)
   ============================================================ */

/* HERO : neutraliser le <br> qui doublait le gap entre les deux CTA */
.nv-hero__cta br { display: none; }

/* CATÉGORIES : caler le titre de section sur la grille 2×2 (cap ≈940 centré) */
.nv-section:has(> .nv-cat-grid) { max-width: calc(940px + 12vw); }

/* PANIER/CHECKOUT/COMPTE : supprimer la double gouttière (.nv-section + .woocommerce) */
.nv-page .woocommerce { padding: 0; }

/* PANIER : réserver la gouttière du lien "Retirer" (évite le chevauchement si la marque est vide) + regrouper qté/prix */
.nv-cart__brand, .nv-cart__title { padding-right: 64px; }
.nv-cart__brand { min-height: 1em; }
.nv-cart__bottom { justify-content: flex-start; gap: 28px; }

/* CARTE PRODUIT : CTA visible au tactile + focus clavier, libellé centré, contraste AA, alignement des prix */
.nv-card__add { text-align: center; }
@media (hover: none) { .nv-card .nv-card__add { transform: translateY(0); } }
.nv-card:focus-within .nv-card__add { transform: translateY(0); }
.nv-card__meta { color: var(--nv-taupe); }
.nv-card__price del { color: var(--nv-taupe-2); }
.nv-card__title { min-height: 2.7em; }
.nv-card__add--oos { background: var(--nv-taupe-2) !important; }

/* FOOTER : lockup resserré, barre du bas lisible (AA) */
.nv-footer__brand .nv-footer__name { text-indent: 0; }
.nv-footer__bottom { color: rgba(247, 247, 245, 0.66); }
.nv-footer__bottom .legal a { color: rgba(247, 247, 245, 0.72); }
.nv-footer__bottom .legal a:hover { color: var(--nv-cream); }

/* TIROIR PANIER : cible tactile 44px de la croix */
.nv-drawer__close { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; margin: -10px -12px -10px 0; }

/* PAGINATION : battre le CSS WooCommerce (violet → encre/crème) */
.nv-pagination nav.woocommerce-pagination ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; border: 0; margin: 0; padding: 0; }
.nv-pagination nav.woocommerce-pagination ul li { border: 0; float: none; overflow: visible; margin: 0; }
.nv-pagination nav.woocommerce-pagination ul li a, .nv-pagination nav.woocommerce-pagination ul li span { padding: 9px 15px; border: 1px solid var(--nv-line); border-radius: 0; color: var(--nv-taupe); font-size: 12px; letter-spacing: 0.06em; }
.nv-pagination nav.woocommerce-pagination ul li span.current, .nv-pagination nav.woocommerce-pagination ul li a:hover { background: var(--nv-ink); color: var(--nv-cream); border-color: var(--nv-ink); }

/* MON COMPTE : navigation habillée à la DA */
.woocommerce-account .woocommerce-MyAccount-navigation ul { list-style: none; margin: 0 0 8px; padding: 0; }
.woocommerce-account .woocommerce-MyAccount-navigation li { border-bottom: 1px solid var(--nv-line); }
.woocommerce-account .woocommerce-MyAccount-navigation li a { display: block; padding: 14px 0; font-family: var(--nv-sans); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--nv-taupe-2); }
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a, .woocommerce-account .woocommerce-MyAccount-navigation li a:hover { color: var(--nv-ink); }

/* CHECKOUT : 2 colonnes desktop + paiement détaché + astérisque bronze + select pays aligné */
@media (min-width: 981px) {
  .woocommerce-checkout #customer_details { float: left; width: 56%; }
  .woocommerce-checkout #order_review_heading, .woocommerce-checkout #order_review { float: right; width: 40%; margin-top: 0; }
  .woocommerce-checkout form.checkout::after { content: ""; display: block; clear: both; }
}
.woocommerce-checkout #payment { background: transparent; border-top: 1px solid var(--nv-line-strong); margin-top: 24px; padding-top: 24px; }
.woocommerce-checkout #payment .payment_box { background: var(--nv-cream); }
.woocommerce-checkout #payment .payment_box::before { border-bottom-color: var(--nv-cream) !important; }
.woocommerce form .form-row .required, .woocommerce abbr.required { color: var(--nv-bronze); border: 0; text-decoration: none; }
.select2-container--default .select2-selection--single { height: 46px; padding: 0; border: 1px solid var(--nv-line-strong); border-radius: 0; background: transparent; }
.select2-container--default .select2-selection--single .select2-selection__rendered { line-height: 44px; padding-left: 14px; color: var(--nv-ink); }
.select2-container--default .select2-selection--single .select2-selection__arrow { height: 44px; right: 8px; }

/* ÉTAPES checkout en mobile : garder les pastilles, masquer séparateurs + labels inactifs */
@media (max-width: 600px) {
  .nv-steps { gap: 12px; }
  .nv-steps__sep { display: none; }
  .nv-steps__item:not(.is-active) .nv-steps__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
}

/* RELATED PDP (desktop) : centrer les cartes quand la rangée n'est pas pleine */
@media (min-width: 1120px) {
  .nv-related .nv-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 264px)); justify-content: center; }
}

/* PDP band : bloc engagement/accordéons CENTRÉ (préférence user) */
.nv-pdp__band { max-width: 900px; margin-left: auto; margin-right: auto; }

/* 404 / états vides */
.nv-404 { padding: clamp(72px, 12vw, 160px) 6vw; max-width: 640px; margin: 0 auto; text-align: center; }
.nv-404 .nv-btn { margin-top: 32px; }
.nv-empty { text-align: center; padding: 64px 0; max-width: 520px; margin: 0 auto; }
.nv-empty .nv-btn { margin-top: 24px; }

/* FOOTER + PANIER — mobile */
@media (max-width: 819px) {
  .nv-footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .nv-footer__bottom .legal { flex-wrap: wrap; gap: 8px 16px; }
  .nv-qty__btn { padding: 12px 16px; }
  .nv-qty__input { padding: 12px 0; width: 44px; }
}

/* RECHERCHE : panneau plein-largeur révélé par la loupe */
.nv-search-toggle { background: none; border: 0; padding: 0; cursor: pointer; display: flex; color: var(--nv-ink); }
.nv-search-panel { position: fixed; top: 0; left: 0; right: 0; z-index: 130; background: var(--nv-cream); border-bottom: 1px solid var(--nv-line-strong); box-shadow: 0 16px 44px rgba(17, 17, 17, 0.12); animation: nv-search-in 0.35s cubic-bezier(0.2, 0.8, 0.2, 1); }
.nv-search-panel[hidden] { display: none; }
@keyframes nv-search-in { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.nv-search-form { display: flex; align-items: center; gap: 16px; max-width: var(--nv-maxw); margin: 0 auto; padding: 24px 6vw; }
.nv-search-form__ico { color: var(--nv-taupe-2); flex: 0 0 auto; }
.nv-search-input { flex: 1 1 auto; min-width: 0; border: 0; background: transparent; font-family: var(--nv-serif); font-weight: 300; font-size: clamp(20px, 3.2vw, 32px); color: var(--nv-ink); padding: 6px 0; }
.nv-search-input:focus { outline: none; }
.nv-search-input::placeholder { color: var(--nv-taupe-2); opacity: 1; }
.nv-search-close { background: none; border: 0; cursor: pointer; color: var(--nv-ink); font-size: 28px; line-height: 1; flex: 0 0 auto; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; transition: color 0.25s ease, transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1); }
.nv-search-close:hover { color: var(--nv-bronze); transform: rotate(90deg); }
@media (prefers-reduced-motion: reduce) { .nv-search-panel { animation: none; } .nv-search-close:hover { transform: none; } }

/* PDP : CTA « Ajouter au panier » moins imposant (spécificité (0,3,1) pour battre .woocommerce button.button (0,2,1) ; hauteur fixée en flex) */
.nv-pdp .nv-pdp__form button.single_add_to_cart_button,
.nv-pdp .nv-pdp__form button.single_add_to_cart_button:hover {
  padding: 0 28px !important; min-height: 46px !important; height: 46px !important; line-height: 1.2 !important;
  font-size: 11px !important; display: inline-flex !important; align-items: center !important; justify-content: center !important;
}
/* PDP desktop : resserrer + centrer le duo galerie/détail (évite l'info qui flotte à l'extrême droite sur grand écran) */
@media (min-width: 820px) {
  .nv-pdp__layout { max-width: 1180px; margin: 0 auto; gap: 56px; align-items: start; }
  .nv-pdp__detail { max-width: 480px; }
}

/* PDP : stepper quantité soigné (− [1] +), remplace le double-cadre de l'input WooCommerce */
.nv-pdp__form .quantity { display: inline-flex; align-items: center; height: 46px; border: 1px solid var(--nv-line-strong); background: transparent; width: auto; overflow: hidden; }
.nv-pdp__form .quantity:focus-within { outline: 1px solid var(--nv-bronze); outline-offset: 1px; }
.nv-pdp__form .quantity .nv-qty__btn { width: 42px; height: 44px; padding: 0; margin: 0; background: none; border: 0; cursor: pointer; font-size: 17px; line-height: 1; color: var(--nv-taupe); display: inline-flex; align-items: center; justify-content: center; transition: color 0.2s ease, background 0.2s ease; -webkit-appearance: none; appearance: none; }
.nv-pdp__form .quantity .nv-qty__btn:hover { color: var(--nv-ink); background: rgba(17, 17, 17, 0.05); }
.nv-pdp__form .quantity input.qty { width: 44px; height: 44px; border: 0; border-left: 1px solid var(--nv-line); border-right: 1px solid var(--nv-line); background: transparent; text-align: center; font-family: var(--nv-sans); font-size: 14px; color: var(--nv-ink); padding: 0; -moz-appearance: textfield; }
.nv-pdp__form .quantity input.qty:focus { outline: none; }
.nv-pdp__form .quantity input.qty::-webkit-outer-spin-button, .nv-pdp__form .quantity input.qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.nv-pdp__form .nv-pdp__wish { height: 46px; }

/* PDP : encart « commander via Snapchat » (raccord DA — encart chaud + CTA ink) */
.nv-pdp__snap { margin: 24px 0; padding: 18px 20px; border: 1px solid rgba(51, 51, 51, 0.22); background: rgba(51, 51, 51, 0.05); }
.nv-pdp__snap-note { display: flex; gap: 12px; align-items: flex-start; margin: 0 0 16px; font-size: 13px; line-height: 1.55; color: var(--nv-body); }
.nv-pdp__snap-note .nv-ico { flex: 0 0 18px; margin-top: 1px; }
.nv-pdp__snap-cta { display: flex; gap: 12px; }
.nv-pdp__snap-cta .nv-btn { flex: 1 1 50%; min-width: 0; }
.nv-btn--snap, .nv-btn--wa { display: flex; align-items: center; justify-content: center; gap: 9px; text-indent: 0; }
.nv-btn--snap .nv-snap-ghost, .nv-btn--wa .nv-wa-ico { width: 18px; height: 18px; flex: 0 0 auto; }
@media (max-width: 819px) { .nv-pdp__snap-cta { flex-direction: column; } }
.nv-drawer__ship, .nv-summary__ship { font-size: 11.5px; letter-spacing: 0.06em; color: var(--nv-taupe); text-align: center; margin: 0 0 18px; }

/* Home : module vidéo UGC TikTok — cadre « téléphone » + texte éditorial */
.nv-ugc__grid { display: grid; grid-template-columns: minmax(240px, 320px) 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.nv-ugc__phone { position: relative; margin: 0 auto; width: 100%; max-width: 300px; aspect-ratio: 9 / 16; border-radius: 28px; border: 1px solid var(--nv-line-strong); background: var(--nv-ink); overflow: hidden; box-shadow: 0 30px 60px -20px rgba(17, 17, 17, 0.25); }
.nv-ugc__video { width: 100%; height: 100%; object-fit: cover; display: block; }
.nv-ugc__copy { max-width: 480px; }
.nv-ugc__copy .nv-eyebrow { margin-bottom: 14px; }
.nv-ugc__copy .nv-h2 { margin-bottom: 20px; }
.nv-ugc__copy .nv-lead { margin: 0 0 28px; }
@media (max-width: 819px) {
  .nv-ugc__grid { grid-template-columns: 1fr; text-align: center; }
  .nv-ugc__copy { max-width: none; margin: 0 auto; }
  .nv-ugc__phone { max-width: 260px; }
}
