/* =========================================================================
   NDPC Boutique — feuille de style principale
   Palette : vert profond / or / crème — ambiance cosmétique naturelle
   ========================================================================= */

:root {
	--ndpc-green-950: #0d2b1e;
	--ndpc-green-900: #123b2a;
	--ndpc-green-800: #174a34;
	--ndpc-green-700: #1b5e42;
	--ndpc-green-600: #237a54;
	--ndpc-green-100: #dcefe4;
	--ndpc-gold: #c9a227;
	--ndpc-gold-light: #e4c65b;
	--ndpc-gold-pale: #f7edd2;
	--ndpc-cream: #faf5ec;
	--ndpc-cream-dark: #f1e8d6;
	--ndpc-ink: #26221b;
	--ndpc-muted: #6f6757;
	--ndpc-line: #e8e0cf;
	--ndpc-red: #c43d2f;
	--ndpc-red-pale: #fdeeea;
	--ndpc-wa: #1fae56;
	--ndpc-wa-dark: #178a43;
	--ndpc-white: #ffffff;

	--ndpc-radius: 16px;
	--ndpc-radius-sm: 10px;
	--ndpc-shadow: 0 10px 30px rgba(18, 59, 42, .1);
	--ndpc-shadow-lg: 0 22px 60px rgba(18, 59, 42, .16);
	--ndpc-font-head: "Playfair Display", Georgia, serif;
	--ndpc-font-body: "Jost", "Segoe UI", system-ui, sans-serif;
}

/* ---------------------------------- Base --------------------------------- */

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--ndpc-font-body);
	font-size: 17px;
	line-height: 1.65;
	color: var(--ndpc-ink);
	background: var(--ndpc-cream);
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
	font-family: var(--ndpc-font-head);
	line-height: 1.2;
	color: var(--ndpc-green-950);
	margin: 0 0 .5em;
	overflow-wrap: break-word;
}

p { margin: 0 0 1em; }

a { color: var(--ndpc-green-700); text-decoration: none; }
a:hover { color: var(--ndpc-green-600); text-decoration: underline; }

ul { padding-left: 1.2em; }

input, select, textarea, button { font-family: inherit; font-size: 1rem; }

.skip-link {
	position: absolute;
	left: -9999px;
	background: var(--ndpc-green-900);
	color: #fff;
	padding: 10px 18px;
	z-index: 1000;
	border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

.ndpc-ic { vertical-align: -0.22em; flex: none; }

/* ------------------------------- Structure ------------------------------- */

.ndpc-container {
	width: min(1200px, 92vw);
	margin: 0 auto;
}

.ndpc-main { min-height: 55vh; }

.ndpc-section { padding: 56px 0 30px; }

.ndpc-section-head { text-align: center; max-width: 640px; margin: 0 auto 38px; }

.ndpc-kicker {
	font-size: .8rem;
	letter-spacing: .22em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--ndpc-gold);
	margin: 0 0 8px;
}

.ndpc-section-title { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: .25em; }

.ndpc-section-desc { color: var(--ndpc-muted); margin: 0; }

.ndpc-section-cta { text-align: center; margin-top: 34px; }

/* -------------------------------- Boutons -------------------------------- */

.ndpc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 13px 26px;
	border-radius: 999px;
	font-weight: 600;
	font-size: .98rem;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
	text-decoration: none !important;
	line-height: 1.2;
}

.ndpc-btn:hover { transform: translateY(-2px); box-shadow: var(--ndpc-shadow); }
.ndpc-btn:active { transform: translateY(0); }

.ndpc-btn--solid { background: var(--ndpc-green-800); color: var(--ndpc-white); }
.ndpc-btn--solid:hover { background: var(--ndpc-green-700); color: var(--ndpc-white); }

.ndpc-btn--outline {
	background: transparent;
	color: var(--ndpc-green-800);
	border-color: var(--ndpc-green-800);
}
.ndpc-btn--outline:hover { background: var(--ndpc-green-800); color: var(--ndpc-white); }

.ndpc-btn--ghost {
	background: var(--ndpc-green-100);
	color: var(--ndpc-green-900);
	padding: 9px 18px;
	font-size: .88rem;
}
.ndpc-btn--ghost:hover { background: var(--ndpc-green-900); color: #fff; }

.ndpc-btn--wa { background: var(--ndpc-wa); color: #fff; }
.ndpc-btn--wa:hover { background: var(--ndpc-wa-dark); color: #fff; }

.ndpc-btn--sm { padding: 9px 16px; font-size: .84rem; }
.ndpc-btn--lg { padding: 16px 32px; font-size: 1.05rem; }

/* -------------------------------- Header --------------------------------- */

.ndpc-header {
	position: sticky;
	top: 0;
	z-index: 500;
	background: rgba(250, 245, 236, .96);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--ndpc-line);
}

.ndpc-header__inner {
	width: min(1280px, 94vw);
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 26px;
	padding: 12px 0;
}

.ndpc-header__brand { display: flex; align-items: center; gap: 12px; }

.custom-logo { max-height: 58px; width: auto; }

.ndpc-logo-text { display: flex; flex-direction: column; line-height: 1.15; text-decoration: none !important; }
.ndpc-logo-text__name {
	font-family: var(--ndpc-font-head);
	font-weight: 700;
	font-size: 1.5rem;
	color: var(--ndpc-green-900);
	letter-spacing: .02em;
}
.ndpc-logo-text__tag { font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; color: var(--ndpc-gold); }

.ndpc-burger {
	display: none;
	background: none;
	border: 0;
	padding: 8px;
	color: var(--ndpc-green-900);
	cursor: pointer;
}

.ndpc-nav { flex: 1; }

.ndpc-menu { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }

.ndpc-menu > li { position: relative; }

.ndpc-menu > li > a {
	display: block;
	padding: 10px 16px;
	font-weight: 500;
	color: var(--ndpc-green-950);
	border-radius: 999px;
	text-decoration: none !important;
	transition: background .15s ease;
}

.ndpc-menu > li > a:hover { background: var(--ndpc-green-100); text-decoration: none; }

/* Sous-menu (gammes) */
.ndpc-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: #fff;
	border-radius: var(--ndpc-radius-sm);
	box-shadow: var(--ndpc-shadow-lg);
	padding: 8px;
	margin: 0;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all .2s ease;
	z-index: 600;
}

.ndpc-menu li:hover > .sub-menu,
.ndpc-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(4px); }

.ndpc-menu .sub-menu a {
	display: block;
	padding: 9px 14px;
	border-radius: 8px;
	color: var(--ndpc-ink);
	text-decoration: none !important;
}
.ndpc-menu .sub-menu a:hover { background: var(--ndpc-green-100); color: var(--ndpc-green-900); }

.ndpc-header__tools { display: flex; align-items: center; gap: 14px; }

.ndpc-search { display: flex; align-items: center; }
.ndpc-search input {
	width: 190px;
	padding: 10px 14px;
	border: 1px solid var(--ndpc-line);
	border-radius: 999px 0 0 999px;
	background: #fff;
	outline: none;
	transition: width .2s ease, border-color .2s ease;
}
.ndpc-search input:focus { border-color: var(--ndpc-green-600); width: 230px; }
.ndpc-search button {
	padding: 10px 14px;
	border: 1px solid var(--ndpc-line);
	border-left: 0;
	border-radius: 0 999px 999px 0;
	background: var(--ndpc-green-900);
	color: #fff;
	cursor: pointer;
}

.ndpc-cart-link {
	position: relative;
	display: inline-flex;
	padding: 10px;
	border-radius: 50%;
	color: var(--ndpc-green-900);
	background: var(--ndpc-green-100);
}
.ndpc-cart-link:hover { background: var(--ndpc-green-900); color: #fff; text-decoration: none; }

.ndpc-cart-count {
	position: absolute;
	top: -5px;
	right: -5px;
	background: var(--ndpc-gold);
	color: var(--ndpc-green-950);
	font-size: .68rem;
	font-weight: 700;
	min-width: 19px;
	height: 19px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 5px;
}

.ndpc-header__wa span { display: inline; }

/* --------------------------------- Héro ---------------------------------- */

.ndpc-hero { position: relative; overflow: hidden; background: var(--ndpc-green-950); }

.ndpc-hero__slider { position: relative; }

.ndpc-hero__slide {
	position: relative;
	min-height: min(78vh, 640px);
	display: none;
	align-items: center;
	background-size: cover;
	background-position: center;
}
.ndpc-hero__slide.is-active { display: flex; animation: ndpcFade .7s ease; }

@keyframes ndpcFade { from { opacity: .3; } to { opacity: 1; } }

.ndpc-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.ndpc-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(13, 43, 30, .82) 0%, rgba(13, 43, 30, .45) 46%, rgba(13, 43, 30, .05) 100%);
}

.ndpc-hero__content {
	position: relative;
	z-index: 2;
	width: min(1200px, 92vw);
	margin: 0 auto;
	color: #fff;
	max-width: 620px;
	padding: 70px 0;
}

.ndpc-hero__kicker {
	display: inline-block;
	font-size: .78rem;
	letter-spacing: .26em;
	text-transform: uppercase;
	color: var(--ndpc-gold-light);
	border: 1px solid rgba(228, 198, 91, .5);
	border-radius: 999px;
	padding: 7px 16px;
	margin-bottom: 18px;
}

.ndpc-hero__title {
	color: #fff;
	font-size: clamp(2rem, 4.6vw, 3.3rem);
	margin-bottom: 26px;
	text-shadow: 0 3px 24px rgba(0, 0, 0, .35);
}

.ndpc-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.ndpc-hero__dots {
	position: absolute;
	bottom: 84px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 3;
}
.ndpc-hero__dots button {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	border: 0;
	background: rgba(255, 255, 255, .45);
	cursor: pointer;
	transition: all .2s ease;
	padding: 0;
}
.ndpc-hero__dots button.is-active { background: var(--ndpc-gold-light); transform: scale(1.25); }

.ndpc-hero__arrows { position: absolute; inset: 0; display: flex; justify-content: space-between; align-items: center; padding: 0 18px; z-index: 3; pointer-events: none; }
.ndpc-hero__arrow {
	pointer-events: auto;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 0;
	background: rgba(255, 255, 255, .18);
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(4px);
	transition: background .2s ease;
}
.ndpc-hero__arrow:hover { background: rgba(255, 255, 255, .38); }
.ndpc-hero__arrow[data-dir="prev"] svg { transform: rotate(90deg); }
.ndpc-hero__arrow[data-dir="next"] svg { transform: rotate(-90deg); }

.ndpc-hero__intro { position: relative; z-index: 2; background: var(--ndpc-green-900); }
.ndpc-hero__intro p {
	width: min(1200px, 92vw);
	margin: 0 auto;
	padding: 14px 0;
	text-align: center;
	color: var(--ndpc-gold-pale);
	font-size: .95rem;
	letter-spacing: .04em;
}

/* ------------------------------- Confiance -------------------------------- */

.ndpc-confiance { background: var(--ndpc-white); border-bottom: 1px solid var(--ndpc-line); }

.ndpc-confiance__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 22px;
	padding: 26px 0;
}

.ndpc-confiance__item { display: flex; gap: 14px; align-items: flex-start; }

.ndpc-confiance__ic {
	flex: none;
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: var(--ndpc-gold-pale);
	color: var(--ndpc-green-800);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.ndpc-confiance__item h3 { font-size: 1rem; margin-bottom: 3px; font-family: var(--ndpc-font-body); font-weight: 600; }
.ndpc-confiance__item p { margin: 0; font-size: .86rem; color: var(--ndpc-muted); line-height: 1.5; }

/* --------------------------------- Gammes --------------------------------- */

.ndpc-gammes__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 26px;
}

.ndpc-gamme-card {
	position: relative;
	border-radius: var(--ndpc-radius);
	overflow: hidden;
	background: var(--ndpc-white);
	box-shadow: var(--ndpc-shadow);
	text-decoration: none !important;
	transition: transform .25s ease, box-shadow .25s ease;
}

.ndpc-gamme-card:hover { transform: translateY(-6px); box-shadow: var(--ndpc-shadow-lg); }

.ndpc-gamme-card__media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.ndpc-gamme-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ndpc-gamme-card:hover .ndpc-gamme-card__media img { transform: scale(1.06); }

.ndpc-gamme-card__fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--ndpc-green-800), var(--ndpc-gold));
	color: #fff;
	font-family: var(--ndpc-font-head);
	font-size: 3rem;
}

.ndpc-gamme-card__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(13, 43, 30, .55)); }

.ndpc-gamme-card__body { padding: 18px 20px 20px; }

.ndpc-gamme-card__name { font-size: 1.3rem; margin-bottom: 4px; }
.ndpc-gamme-card__tagline { color: var(--ndpc-muted); font-size: .92rem; margin-bottom: 10px; }

.ndpc-gamme-card__count {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: .82rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--ndpc-green-700);
	margin: 0;
}

.ndpc-gamme-card__go {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--ndpc-gold-pale);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--ndpc-green-900);
	transition: background .2s ease;
}
.ndpc-gamme-card:hover .ndpc-gamme-card__go { background: var(--ndpc-gold); }

/* ------------------------------ Cartes produits ---------------------------- */

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

.ndpc-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }

.ndpc-card {
	position: relative;
	background: var(--ndpc-white);
	border-radius: var(--ndpc-radius);
	overflow: hidden;
	box-shadow: 0 4px 18px rgba(18, 59, 42, .08);
	transition: transform .22s ease, box-shadow .22s ease;
	display: flex;
	flex-direction: column;
}

.ndpc-card:hover { transform: translateY(-5px); box-shadow: var(--ndpc-shadow-lg); }

.ndpc-card__media {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: var(--ndpc-cream-dark);
}

.ndpc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.ndpc-card:hover .ndpc-card__media img { transform: scale(1.05); }

.ndpc-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-family: var(--ndpc-font-head);
	font-size: 1.4rem;
	color: var(--ndpc-green-700);
	letter-spacing: .1em;
}

.ndpc-card__badges {
	position: absolute;
	top: 12px;
	left: 12px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	align-items: flex-start;
}

.ndpc-badge {
	display: inline-block;
	padding: 5px 12px;
	border-radius: 999px;
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
}
.ndpc-badge--promo { background: var(--ndpc-red); color: #fff; }
.ndpc-badge--new { background: var(--ndpc-gold); color: var(--ndpc-green-950); }
.ndpc-badge--out { background: #555; color: #fff; }
.ndpc-badge--lg { font-size: .82rem; padding: 7px 15px; }

.ndpc-card__body { padding: 18px; display: flex;
	flex-direction: column; gap: 7px; flex: 1; }

.ndpc-card__title { font-size: 1.08rem; margin: 0; line-height: 1.35; }
.ndpc-card__title a { color: var(--ndpc-green-950); text-decoration: none; }
.ndpc-card__title a:hover { color: var(--ndpc-green-700); }

.ndpc-card__format { color: var(--ndpc-muted); font-size: .85rem; margin: 0; }

.ndpc-card__period {
	margin: 0;
	font-size: .8rem;
	font-weight: 600;
	color: var(--ndpc-red);
	letter-spacing: .02em;
}

.ndpc-price { font-weight: 600; color: var(--ndpc-green-900); font-size: 1.06rem; }
.ndpc-price del { color: var(--ndpc-muted); font-weight: 400; margin-right: 7px; }
.ndpc-price ins { text-decoration: none; color: var(--ndpc-red); }
.ndpc-price--confirm { font-size: .88rem; color: var(--ndpc-gold); font-style: italic; font-weight: 500; }

.ndpc-card__actions { display: flex; gap: 9px; margin-top: auto; padding-top: 9px; flex-wrap: wrap; }
.ndpc-card__actions .ndpc-btn { flex: 1 1 auto; }

/* ------------------------------ Boutique / filtres ------------------------- */

.ndpc-pagehead {
	background:
		linear-gradient(120deg, var(--ndpc-green-950), var(--ndpc-green-800));
	color: #fff;
	padding: 44px 0 40px;
	position: relative;
	overflow: hidden;
}

.ndpc-pagehead__bg, .ndpc-pagehead__shade { position: absolute; inset: 0; }
.ndpc-pagehead__bg { background-size: cover; background-position: center; }
.ndpc-pagehead__shade { background: linear-gradient(100deg, rgba(13, 43, 30, .92), rgba(13, 43, 30, .6)); }

.ndpc-pagehead .ndpc-container { position: relative; z-index: 2; }

.ndpc-pagehead__title { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 6px 0 8px; }
.ndpc-pagehead__desc { color: var(--ndpc-gold-pale); max-width: 640px; margin: 0; }

.ndpc-bc { font-size: .82rem; color: rgba(255, 255, 255, .75); }
.ndpc-bc a { color: rgba(255, 255, 255, .85); }
.ndpc-bc a:hover { color: var(--ndpc-gold-light); }
.ndpc-bc__sep { opacity: .5; margin: 0 6px; }

.ndpc-shop { display: grid; grid-template-columns: 250px 1fr; gap: 34px; padding: 40px 0 60px; align-items: start; }

.ndpc-shop__filters {
	background: var(--ndpc-white);
	border-radius: var(--ndpc-radius);
	padding: 22px;
	box-shadow: var(--ndpc-shadow);
	position: sticky;
	top: 92px;
}

.ndpc-shop__filters-title {
	font-family: var(--ndpc-font-body);
	font-size: .8rem;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--ndpc-muted);
	margin-bottom: 14px;
}

.ndpc-filter-list { display: flex; flex-direction: column; gap: 4px; }
.ndpc-filter-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 13px;
	border-radius: 9px;
	color: var(--ndpc-ink);
	text-decoration: none !important;
	font-weight: 500;
	transition: background .15s ease;
}
.ndpc-filter-list a:hover { background: var(--ndpc-green-100); }
.ndpc-filter-list a.is-active { background: var(--ndpc-green-900); color: #fff; }

.ndpc-filter-list__count {
	font-size: .74rem;
	background: var(--ndpc-gold-pale);
	color: var(--ndpc-green-900);
	padding: 2px 9px;
	border-radius: 999px;
	font-weight: 700;
}
.ndpc-filter-list a.is-active .ndpc-filter-list__count { background: var(--ndpc-gold); }

.ndpc-shop__sort {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 22px;
	font-size: .9rem;
	color: var(--ndpc-muted);
}

.ndpc-shop__sort select {
	padding: 9px 14px;
	border-radius: 9px;
	border: 1px solid var(--ndpc-line);
	background: #fff;
	cursor: pointer;
}

.ndpc-empty {
	text-align: center;
	padding: 50px 20px;
	background: var(--ndpc-white);
	border-radius: var(--ndpc-radius);
	box-shadow: var(--ndpc-shadow);
}
.ndpc-empty__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 18px; }

.ndpc-404 h1 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }

/* ------------------------------ Fiche produit ------------------------------ */

.ndpc-product {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
	gap: 46px;
	padding: 34px 0 10px;
}

.ndpc-product__mainimg {
	position: relative;
	border-radius: var(--ndpc-radius);
	overflow: hidden;
	background: var(--ndpc-white);
	box-shadow: var(--ndpc-shadow);
}

.ndpc-product__mainimg img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }

.ndpc-product__nophoto {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
	font-family: var(--ndpc-font-head);
	font-size: 2rem;
	color: var(--ndpc-green-700);
	background: var(--ndpc-cream-dark);
}

.ndpc-product__badges { position: absolute; top: 14px; left: 14px; display: flex; flex-direction: column; gap: 7px; }

.ndpc-product__thumbs { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.ndpc-product__thumbs button {
	padding: 0;
	border: 2px solid transparent;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	background: none;
	width: 84px;
	height: 84px;
}
.ndpc-product__thumbs button img { width: 100%; height: 100%; object-fit: cover; }
.ndpc-product__thumbs button.is-active { border-color: var(--ndpc-gold); }

.ndpc-product__gammes { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 6px; }
.ndpc-product__gammes a {
	font-size: .74rem;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	background: var(--ndpc-gold-pale);
	color: var(--ndpc-green-900);
	padding: 5px 13px;
	border-radius: 999px;
	text-decoration: none !important;
}
.ndpc-product__gammes a:hover { background: var(--ndpc-gold); }

.ndpc-product__title { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 4px; }

.ndpc-product__format { color: var(--ndpc-muted); margin-bottom: 8px; }

.ndpc-product__stock { font-size: .88rem; font-weight: 600; margin-bottom: 14px; }
.ndpc-product__stock--en_stock { color: var(--ndpc-green-600); }
.ndpc-product__stock--sur_commande { color: #b07d10; }
.ndpc-product__stock--rupture { color: var(--ndpc-red); }

.ndpc-product__price { margin-bottom: 20px; }
.ndpc-product__price .ndpc-price { font-size: 1.5rem; }

.ndpc-promo-period {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 10px 0 0;
	padding: 8px 14px;
	background: var(--ndpc-red-pale);
	border-left: 3px solid var(--ndpc-red);
	border-radius: 8px;
	font-size: .88rem;
	font-weight: 600;
	color: var(--ndpc-red);
}
.ndpc-promo-period em { font-style: normal; opacity: .85; font-weight: 700; }

.ndpc-product__actions { display: flex; flex-direction: column; gap: 12px; max-width: 420px; }

.ndpc-product__cart-note { font-size: .9rem; color: var(--ndpc-green-700); font-weight: 600; background: var(--ndpc-green-100); border-radius: 9px; padding: 10px 14px; }

.ndpc-product__delivery {
	display: flex;
	gap: 13px;
	margin-top: 24px;
	padding: 17px 19px;
	background: var(--ndpc-white);
	border-left: 4px solid var(--ndpc-gold);
	border-radius: var(--ndpc-radius-sm);
	box-shadow: var(--ndpc-shadow);
	max-width: 520px;
}
.ndpc-product__delivery svg { color: var(--ndpc-green-700); margin-top: 3px; }
.ndpc-product__delivery p { margin: 4px 0 0; font-size: .9rem; color: var(--ndpc-muted); }

.ndpc-product__details {
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	gap: 28px;
	margin: 26px 0 10px;
}

.ndpc-product__desc,
.ndpc-product__tips {
	background: var(--ndpc-white);
	border-radius: var(--ndpc-radius);
	padding: 28px 30px;
	box-shadow: var(--ndpc-shadow);
}
.ndpc-product__tips h2 { display: flex; align-items: center; gap: 9px; color: var(--ndpc-green-800); }

.ndpc-related { padding-top: 20px; }

/* --------------------------------- Panier ---------------------------------- */

.ndpc-cart { max-width: 900px; margin: 0 auto; }

.ndpc-cart-line {
	display: grid;
	grid-template-columns: 86px 1fr auto auto;
	gap: 18px;
	align-items: center;
	background: var(--ndpc-white);
	border-radius: var(--ndpc-radius-sm);
	padding: 14px 16px;
	margin-bottom: 12px;
	box-shadow: 0 3px 12px rgba(18, 59, 42, .07);
}

.ndpc-cart-line__img {
	width: 86px;
	height: 86px;
	border-radius: 10px;
	object-fit: cover;
	background: var(--ndpc-cream-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--ndpc-green-700);
	font-family: var(--ndpc-font-head);
	overflow: hidden;
}

.ndpc-cart-line__title { font-weight: 600; color: var(--ndpc-green-950); margin: 0 0 3px; }
.ndpc-cart-line__link { font-size: 1.02rem; color: inherit; }
.ndpc-cart-line__unit { font-size: .85rem; color: var(--ndpc-muted); margin: 0; }

.ndpc-qty { display: inline-flex; align-items: center; border: 1px solid var(--ndpc-line); border-radius: 999px; overflow: hidden; background: #fff; }
.ndpc-qty button {
	width: 36px;
	height: 36px;
	border: 0;
	background: none;
	font-size: 1.15rem;
	cursor: pointer;
	color: var(--ndpc-green-900);
	line-height: 1;
}
.ndpc-qty button:hover { background: var(--ndpc-green-100); }
.ndpc-qty input {
	width: 44px;
	height: 36px;
	border: 0;
	text-align: center;
	font-weight: 600;
	-moz-appearance: textfield;
	appearance: textfield;
}
.ndpc-qty input::-webkit-outer-spin-button,
.ndpc-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.ndpc-cart-line__total { font-weight: 700; color: var(--ndpc-green-900); white-space: nowrap; }

.ndpc-cart-line__remove {
	background: none;
	border: 0;
	color: var(--ndpc-red);
	cursor: pointer;
	font-size: .8rem;
	text-decoration: underline;
	padding: 0;
}

.ndpc-cart-summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: var(--ndpc-green-900);
	color: #fff;
	border-radius: var(--ndpc-radius-sm);
	padding: 18px 24px;
	margin: 20px 0 26px;
	font-size: 1.1rem;
}
.ndpc-cart-summary strong { font-size: 1.3rem; color: var(--ndpc-gold-light); }

.ndpc-cart-form {
	background: var(--ndpc-white);
	border-radius: var(--ndpc-radius);
	padding: 26px 28px;
	box-shadow: var(--ndpc-shadow);
}
.ndpc-cart-form h2 { font-size: 1.3rem; }

.ndpc-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
.ndpc-form-grid .ndpc-field--full { grid-column: 1 / -1; }

.ndpc-form-grid label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 5px; }
.ndpc-form-grid input,
.ndpc-form-grid textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--ndpc-line);
	border-radius: 9px;
	background: var(--ndpc-cream);
	outline: none;
	transition: border-color .15s ease;
}
.ndpc-form-grid input:focus,
.ndpc-form-grid textarea:focus { border-color: var(--ndpc-green-600); background: #fff; }

.ndpc-cart-submit { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.ndpc-cart-note-txt { font-size: .84rem; color: var(--ndpc-muted); text-align: center; max-width: 520px; }

/* -------------------------------- Contact ---------------------------------- */

.ndpc-contact__cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }

.ndpc-contact__card {
	background: var(--ndpc-white);
	border-radius: var(--ndpc-radius);
	padding: 30px 26px;
	box-shadow: var(--ndpc-shadow);
	text-decoration: none !important;
	color: inherit;
	display: flex;
	flex-direction: column;
	gap: 8px;
	transition: transform .2s ease, box-shadow .2s ease;
}
.ndpc-contact__card:hover { transform: translateY(-5px); box-shadow: var(--ndpc-shadow-lg); color: inherit; }

.ndpc-contact__card--wa { background: var(--ndpc-green-900); color: #fff; }
.ndpc-contact__card--wa h2, .ndpc-contact__card--wa strong { color: #fff; }
.ndpc-contact__card--wa p { color: rgba(255, 255, 255, .8); }
.ndpc-contact__card--wa .ndpc-contact__ic { background: rgba(255, 255, 255, .12); color: #7ee2a5; }

.ndpc-contact__ic {
	width: 60px;
	height: 60px;
	border-radius: 16px;
	background: var(--ndpc-gold-pale);
	color: var(--ndpc-green-800);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 8px;
}

.ndpc-contact__card h2 { font-size: 1.25rem; margin: 0; }
.ndpc-contact__card p { margin: 0; font-size: .9rem; color: var(--ndpc-muted); }
.ndpc-contact__card strong { font-size: 1.05rem; color: var(--ndpc-green-900); }

.ndpc-contact__cta { margin-top: 10px; color: var(--ndpc-gold); font-weight: 600; font-size: .9rem; }

.ndpc-contact__address {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 26px;
	margin-top: 30px;
	background: var(--ndpc-white);
	border-radius: var(--ndpc-radius);
	padding: 28px 32px;
	box-shadow: var(--ndpc-shadow);
	flex-wrap: wrap;
}
.ndpc-contact__address h2 { display: flex; align-items: center; gap: 10px; font-size: 1.3rem; }

/* -------------------------------- À propos --------------------------------- */

.ndpc-about__intro { max-width: 780px; margin: 0 auto 44px; font-size: 1.05rem; }
.ndpc-about__intro h2 { margin-top: 1.4em; }

.ndpc-about__strengths { margin-bottom: 44px; }
.ndpc-about__strengths > h2 { text-align: center; }

.ndpc-about__strengths-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }

.ndpc-about__strength {
	background: var(--ndpc-white);
	border-radius: var(--ndpc-radius);
	padding: 28px 26px;
	box-shadow: var(--ndpc-shadow);
}

.ndpc-about__strength-ic {
	width: 56px;
	height: 56px;
	border-radius: 15px;
	background: var(--ndpc-green-100);
	color: var(--ndpc-green-800);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
}
.ndpc-about__strength h3 { font-size: 1.15rem; }
.ndpc-about__strength p { color: var(--ndpc-muted); font-size: .93rem; margin: 0; }

.ndpc-about__b2b {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 26px;
	background: linear-gradient(120deg, var(--ndpc-green-950), var(--ndpc-green-800));
	border-radius: var(--ndpc-radius);
	padding: 34px 38px;
	color: #fff;
	flex-wrap: wrap;
}
.ndpc-about__b2b h2 { color: #fff; }
.ndpc-about__b2b p { color: var(--ndpc-gold-pale); max-width: 560px; margin: 0; }

/* Bloc à propos + B2B (accueil) */
.ndpc-home-about__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: start; }

.ndpc-home-about__text .ndpc-section-head { text-align: left; margin: 0 0 18px; }
.ndpc-home-about__text p { color: var(--ndpc-muted); }

.ndpc-home-about__b2b {
	background: var(--ndpc-white);
	border-radius: var(--ndpc-radius);
	padding: 30px 30px;
	box-shadow: var(--ndpc-shadow);
	border-top: 4px solid var(--ndpc-gold);
}
.ndpc-home-about__b2b h3 { display: flex; align-items: center; gap: 9px; font-size: 1.2rem; color: var(--ndpc-green-800); }
.ndpc-home-about__b2b ul { list-style: none; margin: 16px 0 20px; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.ndpc-home-about__b2b li { display: flex; gap: 9px; align-items: center; color: var(--ndpc-muted); }
.ndpc-home-about__b2b li svg { color: var(--ndpc-gold); }

/* -------------------------------- Recherche -------------------------------- */

.ndpc-searchform { display: flex; gap: 10px; max-width: 480px; margin: 18px auto 0; }
.ndpc-searchform__input {
	flex: 1;
	padding: 12px 18px;
	border: 1px solid var(--ndpc-line);
	border-radius: 999px;
	background: #fff;
	outline: none;
}

/* ------------------------------- Pagination -------------------------------- */

.ndpc-pagination { margin-top: 38px; text-align: center; }
.ndpc-pagination .page-numbers {
	display: inline-block;
	padding: 9px 15px;
	margin: 0 3px;
	border-radius: 9px;
	background: var(--ndpc-white);
	color: var(--ndpc-green-900);
	text-decoration: none !important;
	font-weight: 600;
	box-shadow: 0 2px 8px rgba(18, 59, 42, .08);
}
.ndpc-pagination .page-numbers.current { background: var(--ndpc-green-900); color: #fff; }
.ndpc-pagination .page-numbers:hover:not(.current) { background: var(--ndpc-green-100); }

/* --------------------------------- Footer ---------------------------------- */

.ndpc-footer { background: var(--ndpc-green-950); color: #cfe0d6; margin-top: 60px; }

.ndpc-footer__inner {
	width: min(1200px, 92vw);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.3fr .8fr .7fr 1.1fr;
	gap: 36px;
	padding: 56px 0 36px;
}

.ndpc-footer h3 {
	color: var(--ndpc-gold-light);
	font-family: var(--ndpc-font-body);
	font-size: .82rem;
	letter-spacing: .2em;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.ndpc-footer__logo { font-family: var(--ndpc-font-head); font-size: 1.7rem; color: #fff; margin: 0 0 12px; }
.ndpc-footer .custom-logo { max-height: 72px; width: auto; margin-bottom: 12px; }
.ndpc-footer__about { font-size: .92rem; line-height: 1.7; }

.ndpc-footer__fb { display: inline-flex; align-items: center; gap: 9px; color: var(--ndpc-gold-light); font-weight: 600; margin-top: 8px; }
.ndpc-footer__fb:hover { color: #fff; }

.ndpc-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.ndpc-footer ul a { color: #cfe0d6; text-decoration: none; }
.ndpc-footer ul a:hover { color: var(--ndpc-gold-light); }

.ndpc-footer__contact { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; font-size: .92rem; }
.ndpc-footer__contact li { display: flex; gap: 10px; align-items: flex-start; }
.ndpc-footer__contact svg { color: var(--ndpc-gold); margin-top: 3px; }
.ndpc-footer__contact a { color: #cfe0d6; }
.ndpc-footer__contact a:hover { color: var(--ndpc-gold-light); }
.ndpc-footer__bp { opacity: .8; }

.ndpc-footer__bar {
	border-top: 1px solid rgba(255, 255, 255, .12);
}
.ndpc-footer__bar > div,
.ndpc-footer__bar p {
	width: min(1200px, 92vw);
	margin: 0 auto;
}
.ndpc-footer__bar p { display: inline-block; }
.ndpc-footer__bar {
	display: block;
	padding: 16px 0;
	font-size: .82rem;
	text-align: center;
}
.ndpc-footer__bar p { padding: 3px 10px; }
.ndpc-footer__pay { color: var(--ndpc-gold-light); }

/* ------------------------------ WhatsApp flottant --------------------------- */

.ndpc-float-wa {
	position: fixed;
	right: 22px;
	bottom: 22px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--ndpc-wa);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 26px rgba(31, 174, 86, .45);
	z-index: 800;
	transition: transform .2s ease;
	animation: ndpcPulse 2.6s infinite;
}
.ndpc-float-wa:hover { transform: scale(1.09); color: #fff; }

@keyframes ndpcPulse {
	0%, 100% { box-shadow: 0 10px 26px rgba(31, 174, 86, .45), 0 0 0 0 rgba(31, 174, 86, .35); }
	55% { box-shadow: 0 10px 26px rgba(31, 174, 86, .45), 0 0 0 16px rgba(31, 174, 86, 0); }
}

/* Contenu éditorial générique */
.ndpc-prose { max-width: 800px; }
.ndpc-prose .alignwide, .ndpc-prose .alignfull { width: auto; }

/* ------------------------------- Responsive -------------------------------- */

@media (max-width: 1024px) {
	.ndpc-grid { grid-template-columns: repeat(3, 1fr); }
	.ndpc-product__details { grid-template-columns: 1fr; }
	.ndpc-footer__inner { grid-template-columns: 1fr 1fr; }
	.ndpc-home-about__grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
	.ndpc-burger { display: inline-flex; }

	.ndpc-nav {
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		width: min(320px, 85vw);
		background: var(--ndpc-green-950);
		transform: translateX(-105%);
		transition: transform .3s ease;
		z-index: 900;
		padding: 84px 20px 30px;
		overflow-y: auto;
	}

	.ndpc-nav.is-open { transform: translateX(0); box-shadow: var(--ndpc-shadow-lg); }

	.ndpc-menu { flex-direction: column; gap: 2px; }
	.ndpc-menu > li > a { color: #fff; font-size: 1.05rem; }
	.ndpc-menu > li > a:hover { background: rgba(255, 255, 255, .1); }

	.ndpc-menu .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		background: rgba(255, 255, 255, .06);
		min-width: 0;
		margin: 4px 0 6px 10px;
	}
	.ndpc-menu .sub-menu a { color: rgba(255, 255, 255, .75); }

	.ndpc-nav-overlay {
		position: fixed;
		inset: 0;
		background: rgba(13, 43, 30, .55);
		z-index: 850;
		opacity: 0;
		visibility: hidden;
		transition: opacity .3s ease;
	}
	.ndpc-nav-overlay.is-open { opacity: 1; visibility: visible; }

	.ndpc-shop { grid-template-columns: 1fr; }
	.ndpc-shop__filters { position: static; }

	.ndpc-product { grid-template-columns: 1fr; gap: 26px; }

	.ndpc-header__wa span { display: none; }
	.ndpc-header__wa { padding: 10px 13px; }

	.ndpc-search input { width: 130px; }
	.ndpc-search input:focus { width: 160px; }
}

@media (max-width: 640px) {
	.ndpc-grid, .ndpc-grid--cols-3 { grid-template-columns: repeat(2, 1fr); gap: 14px; }
	.ndpc-section { padding: 40px 0 22px; }
	.ndpc-hero__slide { min-height: 76vw; }
	.ndpc-hero__content { padding: 46px 0; }
	.ndpc-hero__dots { bottom: 70px; }
	.ndpc-confiance__grid { grid-template-columns: 1fr; padding: 20px 0; }
	.ndpc-cart-line { grid-template-columns: 64px 1fr; }
	.ndpc-cart-line__img { width: 64px; height: 64px; }
	.ndpc-cart-line .ndpc-qty, .ndpc-cart-line__total { grid-column: 2; justify-self: start; }
	.ndpc-form-grid { grid-template-columns: 1fr; }
	.ndpc-footer__inner { grid-template-columns: 1fr; gap: 28px; padding: 40px 0 26px; }
	.ndpc-header__inner { gap: 10px; }
	.ndpc-float-wa { right: 14px; bottom: 14px; width: 54px; height: 54px; }
	.ndpc-contact__address { padding: 22px; }
}

@media (max-width: 380px) {
	.ndpc-grid, .ndpc-grid--cols-3 { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
	html { scroll-behavior: auto; }
	.ndpc-float-wa { animation: none; }
}
