@charset "UTF-8";@media all {/* Thème SNBP Clémentine — feuille de style unique.
   Toutes les valeurs proviennent des maquettes 1a. */

:root {
	--brand: #EE7D00;
	--brand-dark: #C96700;
	--brand-tint: #FDF1E3;
	--ink: #33322f;
	--ink-2: #67625a;
	--ink-3: #8a857c;
	--faint: #a49e93;
	--dark: #26241f;
	--dark-deep: #211f1c;
	--on-dark: #cfc9bf;
	--on-dark-2: #b8b2a8;
	--on-dark-soft: #e8e3da;
	--on-dark-warm: #f0ebe2;
	--surface: #ffffff;
	--surface-2: #faf7f2;
	--surface-3: #f4efe8;
	--surface-cream: #f6f2ec;
	--line: rgba(0,0,0,.09);
	--line-2: rgba(0,0,0,.14);
	--line-3: rgba(0,0,0,.2);
	--line-dark: rgba(255,255,255,.1);
	--font-display: 'Bricolage Grotesque', ui-serif, Georgia, serif;
	--font-body: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
	--font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	--gutter: max(5vw, calc((100vw - 1400px) / 2));
	--content-max: 1400px;
	/* Padding interne pour les sections cappées à 1400px : ne dépend pas
	   du viewport au-delà de 2rem — sinon sur wide vw, gutter grandit et
	   mange la largeur du contenu déjà limité. */
	--pad-x: clamp(1.25rem, 4vw, 2.5rem);
}

* { box-sizing: border-box; }
html, body { margin: 0; overflow-x: hidden; }
body {
	background: var(--surface-2); /* Beige chaud par défaut sur toutes les pages */
	color: var(--ink);
	font-family: var(--font-body); font-size: 15px; line-height: 1.6;
}
body.home { background: var(--surface); } /* Accueil : body blanc */
main { display: block; }

/* ============================================
   CONTAINER — capage global des sections à 1400px
   Les bandes visuellement pleine largeur (utility, header, breadcrumb,
   footer) restent full-width par leur padding var(--gutter). Toutes
   les autres sections de contenu se centrent dans 1400px.
   ============================================ */
.snbp-hero, .snbp-cats, .snbp-nouveautes, .snbp-savoir, .snbp-trust, .snbp-trouver,
.snbp-cat-landing__head, .snbp-cat-landing__grid-wrap,
.snbp-societe-hero, .snbp-societe-intro, .snbp-savoirs, .snbp-secteurs, .snbp-cta-orange,
.snbp-contact-intro, .snbp-contact-panel,
.snbp-fiche-head, .snbp-fiche-vtable-wrap,
.snbp-gammes-enfants, .snbp-gamme-produits, .snbp-gamme-hero,
.snbp-archive-head, .snbp-archive-body,
.snbp-panier__state {
	max-width: var(--content-max);
	margin-inline: auto;
}

/* Section savoir-faire : fond sombre qui doit rester pleine largeur */
.snbp-savoir {
	background: var(--dark);
	box-shadow: 0 0 0 100vmax var(--dark);
	clip-path: inset(0 -100vmax);
	position: relative; z-index: 0;
}
img { max-width: 100%; height: auto; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }
button, input, select, textarea { font-family: inherit; }

/* ============================================
   TYPOGRAPHIE GLOBALE — s'applique à toute page WordPress éditée
   (mentions légales, pages libres, post-content). Les blocs spécifiques
   surchargent avec leurs classes .snbp-hero__title, .snbp-h2, etc.
   ============================================ */
h1, h2, h3, h4, h5, h6,
.wp-block-heading {
	font-family: var(--font-display);
	font-weight: 400;
	color: var(--ink);
	line-height: 1.15;
	letter-spacing: -0.01em;
	margin: 0 0 0.75em;
}
h1, h1.wp-block-heading, .wp-block-post-title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: clamp(30px, 4vw, 46px);
	line-height: 1.06; letter-spacing: -0.02em;
	color: var(--ink);
	margin: 0 0 1rem;
}
h2, h2.wp-block-heading { font-size: clamp(24px, 3vw, 34px); }
h3, h3.wp-block-heading { font-size: clamp(20px, 2.2vw, 26px); font-weight: 500; }
h4, h4.wp-block-heading { font-size: 20px; font-weight: 600; }
h5, h5.wp-block-heading { font-size: 17px; font-weight: 600; }
h6, h6.wp-block-heading {
	font-family: var(--font-mono);
	font-size: 11px; font-weight: 700;
	text-transform: uppercase; letter-spacing: 0.14em;
	color: var(--brand);
}
h1 + *, h2 + *, h3 + * { margin-top: 0; }

/* Paragraphes de post_content — texte lisible par défaut.
   :where() donne 0,0,0 de spécificité pour ne jamais écraser les
   classes des blocs custom (snbp-societe-hero__desc etc.). */
:where(.wp-block-post-content) p,
:where(.wp-block-post-content) li {
	font-family: var(--font-body);
	font-size: 16px; line-height: 1.75;
	color: var(--ink-2);
	margin: 0 0 1rem;
}
:where(.wp-block-post-content) strong { color: var(--ink); }
:where(.wp-block-post-content) ul,
:where(.wp-block-post-content) ol { padding-left: 1.25rem; margin: 0 0 1rem; }

/* ============================================
   PRIMITIVES
   ============================================ */
.snbp-eyebrow {
	font-family: var(--font-mono);
	font-weight: 700; font-size: 11px;
	text-transform: uppercase; letter-spacing: 0.14em;
	color: var(--brand);
	margin-bottom: 12px;
}
.snbp-h2 {
	font-family: var(--font-display);
	font-weight: 400; font-size: 34px; line-height: 1.15;
	letter-spacing: -0.01em; color: var(--ink);
	margin: 0;
}
.snbp-link { font-family: var(--font-body); font-weight: 600; font-size: 14px; color: var(--brand); text-decoration: none; }
.snbp-link:hover { color: var(--brand-dark); }

.snbp-btn {
	display: inline-flex; align-items: center; justify-content: center;
	height: 50px; padding: 0 28px;
	font-family: var(--font-body); font-weight: 700; font-size: 14px;
	border-radius: 999px; text-decoration: none;
	transition: background .2s ease, color .2s ease, border-color .2s ease;
	cursor: pointer;
}
.snbp-btn--primary { background: var(--brand); color: #fff; border: 1px solid var(--brand); }
.snbp-btn--primary:hover { background: var(--brand-dark); color: #fff; border-color: var(--brand-dark); }
.snbp-btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-3); }
.snbp-btn--ghost:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.snbp-btn--ghost-brand { background: transparent; color: var(--brand); border: 1px solid var(--brand); }
.snbp-btn--ghost-brand:hover { background: var(--brand); color: #fff; }

/* ============================================
   UTILITY BAR + HEADER + FOOTER
   ============================================ */
.snbp-utility {
	display: flex; align-items: center; gap: 20px;
	padding: 9px var(--gutter);
	background: var(--ink); color: var(--on-dark-soft);
	font-family: var(--font-body); font-weight: 500; font-size: 12px;
}
.snbp-utility__msg { flex: 1; }
.snbp-utility__lang, .snbp-utility__fb { color: var(--on-dark-2); text-decoration: none; }
.snbp-utility__fb:hover { color: var(--brand); }

.snbp-header {
	display: flex; align-items: center; gap: 40px;
	padding: 16px var(--gutter);
	border-bottom: 1px solid var(--line);
	background: #fff;
	position: sticky; top: 0; z-index: 50;
	flex-wrap: nowrap;
}

/* Bouton burger — visible < 900px seulement */
.snbp-header__burger {
	display: none;
	width: 40px; height: 40px;
	background: none; border: none; padding: 0;
	align-items: center; justify-content: center;
	cursor: pointer;
	margin-left: auto;
	color: var(--ink);
}
.snbp-header__burger-icon,
.snbp-header__burger-icon::before,
.snbp-header__burger-icon::after {
	content: ''; display: block;
	width: 22px; height: 2px;
	background: currentColor;
	position: relative;
	transition: transform .2s ease, opacity .2s ease, top .2s ease;
}
.snbp-header__burger-icon::before { position: absolute; left: 0; top: -7px; }
.snbp-header__burger-icon::after  { position: absolute; left: 0; top: 7px; }
.snbp-header.is-open .snbp-header__burger-icon { background: transparent; }
.snbp-header.is-open .snbp-header__burger-icon::before { top: 0; transform: rotate(45deg); }
.snbp-header.is-open .snbp-header__burger-icon::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 900px) {
	.snbp-header.snbp-header { flex-wrap: wrap; gap: 12px; padding: 12px var(--gutter); }
	.snbp-header .snbp-header__logo img { height: 36px; }
	.snbp-header .snbp-header__burger { display: inline-flex; }
	/* Le nav bascule dans le dropdown burger — search et compteur restent en flow */
	.snbp-header .snbp-header__nav {
		display: none;
		width: 100%; flex-basis: 100%;
		order: 3;
	}
	.snbp-header.is-open .snbp-header__nav {
		display: flex; flex-direction: column; align-items: stretch;
		gap: 0;
		margin: 8px -1rem -12px;
		padding: 4px 1rem 0;
		border-top: 1px solid var(--line);
	}
	.snbp-header.is-open .snbp-header__nav a {
		padding: 14px 4px;
		border-bottom: 1px solid var(--line);
		justify-content: space-between;
	}
	.snbp-header.is-open .snbp-header__nav a:last-child { border-bottom: none; }
	/* Sous 560px, la recherche prend trop de place — on la rétrograde dans le dropdown */
}
@media (max-width: 560px) {
	.snbp-header .snbp-header__search {
		display: none;
	}
	.snbp-header.is-open .snbp-header__search {
		display: flex;
		width: 100%; flex: 1 1 100%;
		order: 4;
		margin-top: 8px;
	}
}
.snbp-header__logo { display: block; }
.snbp-header__logo img { height: 44px; width: auto; display: block; }
.snbp-header__nav {
	display: flex; gap: 28px;
	font-family: var(--font-body); font-weight: 600; font-size: 14px;
}
.snbp-header__nav a {
	color: #4a4741; text-decoration: none;
	display: inline-flex; align-items: center; gap: 5px;
	transition: color .15s ease;
}
.snbp-header__nav a:hover,
.snbp-header__nav a[aria-current="page"] { color: var(--brand); }
.snbp-header__actions { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.snbp-header__cart { display: inline-flex; }
.snbp-header__search {
	display: flex; align-items: center; gap: 9px;
	width: 210px; height: 40px;
	border: 1px solid var(--line-2); border-radius: 999px;
	padding: 0 15px; color: var(--faint);
	background: #fff;
	margin: 0;
}
.snbp-header__search input {
	border: none; outline: none; background: transparent;
	font: 400 13px var(--font-body); color: var(--ink);
	flex: 1; min-width: 0;
}
.snbp-compteur {
	display: inline-flex; align-items: center; gap: 8px;
	height: 40px; padding: 0 16px;
	background: var(--brand); color: #fff;
	border-radius: 999px;
	font-family: var(--font-body); font-weight: 700; font-size: 13px;
	text-decoration: none; line-height: 1;
	transition: background .2s ease;
}
.snbp-compteur:hover { background: var(--brand-dark); color: #fff; }
.snbp-compteur.is-empty { background: #fff; color: var(--brand); border: 1px solid var(--brand); }
.snbp-compteur__sep { opacity: .75; }

.snbp-breadcrumb {
	padding: 14px var(--gutter);
	background: #fff;
	border-bottom: 1px solid rgba(0,0,0,.06);
	font-family: var(--font-body); font-weight: 500; font-size: 13px;
	color: var(--ink-3);
}
.snbp-breadcrumb a { color: var(--ink-3); text-decoration: none; }
.snbp-breadcrumb a:hover { color: var(--brand); }
.snbp-breadcrumb__sep { margin: 0 8px; color: #cfc9bf; }
.snbp-breadcrumb__current { color: var(--ink); font-weight: 600; }

.snbp-footer {
	background: var(--dark); color: var(--on-dark);
	padding: 7vh var(--gutter) 3vh;
}
.snbp-footer__cols {
	display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
	padding-bottom: 44px;
	border-bottom: 1px solid var(--line-dark);
}
.snbp-footer__logobox {
	background: #fff; border-radius: 8px; padding: 10px 14px;
	width: fit-content; margin-bottom: 18px;
}
.snbp-footer__logobox img { height: 40px; width: auto; display: block; }
.snbp-footer__brand p {
	font-family: var(--font-body); font-weight: 400; font-size: 13.5px; line-height: 1.7;
	color: var(--faint); max-width: 280px; margin: 0;
}
.snbp-footer__title {
	font-family: var(--font-body); font-weight: 700; font-size: 13px;
	color: #fff; margin-bottom: 16px;
}
.snbp-footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.snbp-footer__col li a,
.snbp-footer__col p a {
	font-family: var(--font-body); font-weight: 400; font-size: 13.5px;
	color: var(--on-dark); text-decoration: none;
}
.snbp-footer__col li a:hover { color: var(--brand); }
.snbp-footer__col p { font-family: var(--font-body); font-weight: 400; font-size: 13.5px; line-height: 1.8; color: var(--on-dark); margin: 0; }
.snbp-footer__fb { color: var(--brand) !important; font-weight: 600 !important; }
.snbp-footer__bar {
	padding-top: 22px;
	display: flex; justify-content: space-between;
	font-family: var(--font-body); font-weight: 400; font-size: 12px;
	color: var(--ink-3);
}
.snbp-footer-compact {
	background: var(--dark); color: var(--on-dark);
	padding: 34px var(--gutter);
	display: flex; justify-content: space-between; align-items: center;
	font-family: var(--font-body); font-weight: 400; font-size: 13px;
}
.snbp-footer-compact__cta { color: var(--brand); font-weight: 700; text-decoration: none; }

/* ============================================
   ACCUEIL — HERO
   ============================================ */
.snbp-hero {
	display: grid; grid-template-columns: 1fr 1fr;
	align-items: stretch;
}
.snbp-hero__text {
	padding: 9vh clamp(1.5rem, 5vw, 4rem);
	display: flex; flex-direction: column; justify-content: center;
}
.snbp-hero__eyebrow {
	font-family: var(--font-mono);
	font-weight: 700; font-size: 11px;
	letter-spacing: 0.16em; text-transform: uppercase;
	color: var(--brand);
	margin-bottom: 22px;
}
.snbp-hero__title {
	font-family: var(--font-display);
	font-weight: 300; font-size: clamp(40px, 4.4vw, 60px);
	line-height: 1.06; letter-spacing: -0.02em;
	color: var(--ink);
	margin: 0 0 24px;
}
.snbp-hero__title em { font-style: italic; font-weight: 500; color: var(--brand); }
.snbp-hero__desc {
	font-family: var(--font-body); font-weight: 400; font-size: 16px; line-height: 1.7;
	color: var(--ink-2); max-width: 420px;
	margin: 0 0 34px;
}
.snbp-hero__ctas { display: flex; gap: 13px; flex-wrap: wrap; }
.snbp-hero__stats { display: flex; gap: 28px; margin-top: 44px; align-items: center; }
.snbp-hero__stat-v { font-family: var(--font-display); font-weight: 600; font-size: 24px; color: var(--ink); }
.snbp-hero__stat-l { font-family: var(--font-body); font-weight: 500; font-size: 12.5px; color: var(--ink-3); }
.snbp-hero__stat-sep { width: 1px; align-self: stretch; background: rgba(0,0,0,.1); }
.snbp-hero__image { min-height: 560px; background-position: center; background-size: cover; background-color: var(--surface-3); }
@media (max-width: 900px) {
	.snbp-hero { grid-template-columns: 1fr; }
	.snbp-hero__text { padding: 24px clamp(1.25rem, 5vw, 2rem) 40px; }
	.snbp-hero__title { font-size: clamp(30px, 8vw, 40px); margin-bottom: 16px; }
	.snbp-hero__desc { margin-bottom: 22px; }
	.snbp-hero__stats { margin-top: 26px; gap: 18px; }
	.snbp-hero__image { min-height: 320px; }
}

/* ============================================
   ACCUEIL — CATÉGORIES
   ============================================ */
.snbp-cats { padding: 9vh var(--pad-x) 4vh; }
.snbp-cats__head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 32px; }
.snbp-cats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.snbp-cat { display: flex; flex-direction: column; gap: 14px; text-decoration: none; color: inherit; }
.snbp-cat__img { aspect-ratio: 1; border-radius: 12px; overflow: hidden; background: #eee; }
.snbp-cat__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.snbp-cat:hover .snbp-cat__img img { transform: scale(1.05); }
.snbp-cat__foot { display: flex; align-items: center; justify-content: space-between; }
.snbp-cat__name { font-family: var(--font-body); font-weight: 600; font-size: 16px; color: var(--ink); }
.snbp-cat__arrow { color: var(--brand); font-size: 18px; }
.snbp-cat__rule { height: 2px; width: 30px; background: var(--brand); }
@media (max-width: 900px) { .snbp-cats__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .snbp-cats__grid { grid-template-columns: 1fr; } }

/* ============================================
   ACCUEIL — NOUVEAUTÉS + PRODUIT CARDS (partagé)
   ============================================ */
.snbp-nouveautes { padding: 5vh var(--pad-x); }
.snbp-nouveautes__head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 28px; }
.snbp-nouveautes__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 900px) { .snbp-nouveautes__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .snbp-nouveautes__grid { grid-template-columns: 1fr; } }

.snbp-pcard {
	border: 1px solid var(--line); border-radius: 12px;
	overflow: hidden; background: #fff;
	text-decoration: none; color: inherit;
	display: flex; flex-direction: column;
	transition: box-shadow .25s ease, transform .25s ease;
}
.snbp-pcard:hover { box-shadow: 0 18px 40px -22px rgba(0,0,0,.4); transform: translateY(-3px); }
.snbp-pcard__img {
	display: block; aspect-ratio: 1; background: var(--surface-cream); overflow: hidden; position: relative;
}
.snbp-pcard__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.snbp-pcard:hover .snbp-pcard__img img { transform: scale(1.04); }
.snbp-pcard__body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.snbp-pcard__cat {
	font-family: var(--font-body); font-weight: 500; font-size: 11px;
	text-transform: uppercase; letter-spacing: 0.06em; color: var(--faint);
	margin-bottom: -2px;
}
.snbp-pcard__title {
	font-family: var(--font-body); font-weight: 600; font-size: 15px;
	color: var(--ink); text-decoration: none;
}
.snbp-pcard__title:hover { color: var(--brand); }
.snbp-pcard__sub { font-size: 12.5px; color: var(--faint); font-weight: 500; }

.snbp-badge-var {
	position: absolute; top: 12px; left: 12px;
	background: var(--brand); color: #fff;
	font-family: var(--font-body); font-weight: 700; font-size: 11px;
	padding: 4px 10px; border-radius: 999px;
}
.snbp-badge-var--single { background: var(--ink-3); }

.snbp-add-devis {
	display: inline-flex; align-items: center; justify-content: center;
	height: 38px; padding: 0 20px;
	border-radius: 999px;
	font-family: var(--font-body); font-weight: 700; font-size: 12.5px;
	text-decoration: none; border: 1px solid var(--brand);
	background: transparent; color: var(--brand);
	cursor: pointer;
	transition: background .2s ease, color .2s ease;
}
.snbp-add-devis:hover { background: var(--brand); color: #fff; }
.snbp-add-devis--filled { background: var(--brand); color: #fff; }
.snbp-add-devis--filled:hover { background: var(--brand-dark); color: #fff; }

/* ============================================
   ACCUEIL — SAVOIR-FAIRE (split sombre)
   ============================================ */
.snbp-savoir {
	display: grid; grid-template-columns: 1fr 1fr;
	background: var(--dark); color: var(--on-dark-warm);
	margin-top: 5vh;
}
.snbp-savoir__img { min-height: 440px; background-position: center; background-size: cover; }
.snbp-savoir__text { padding: 8vh clamp(1.5rem, 5vw, 4rem); display: flex; flex-direction: column; justify-content: center; }
.snbp-savoir__metals { display: flex; gap: 10px; margin-bottom: 20px; }
.snbp-metal-ball { width: 18px; height: 18px; border-radius: 50%; display: block; }
.snbp-metal-ball--silver { background: linear-gradient(135deg, #e8e8e8, #a8a8a8); }
.snbp-metal-ball--gold   { background: linear-gradient(135deg, #F6A21E, var(--brand)); }
.snbp-metal-ball--bronze { background: linear-gradient(135deg, #E0B878, #B07C34); }
.snbp-savoir .snbp-h2--on-dark, .snbp-savoir .snbp-h2 { color: var(--on-dark-warm); }
.snbp-savoir__desc {
	font-family: var(--font-body); font-weight: 400; font-size: 15.5px; line-height: 1.7;
	color: var(--on-dark); max-width: 440px;
	margin: 18px 0 28px;
}
.snbp-savoir__text .snbp-btn { align-self: flex-start; }
@media (max-width: 900px) { .snbp-savoir { grid-template-columns: 1fr; } .snbp-savoir__img { min-height: 260px; } }

/* ============================================
   ACCUEIL — TRUST STRIP
   ============================================ */
.snbp-trust {
	display: grid; grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.snbp-trust__cell {
	padding: 44px 40px; display: flex; gap: 18px; align-items: center;
	border-right: 1px solid var(--line);
	color: var(--brand);
}
.snbp-trust__cell--last { border-right: none; }
.snbp-trust__cell > svg { flex: none; color: var(--brand); }
.snbp-trust__title { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--ink); }
.snbp-trust__sub { font-family: var(--font-body); font-weight: 400; font-size: 13px; color: var(--ink-3); margin-top: 3px; }
@media (max-width: 900px) { .snbp-trust { grid-template-columns: 1fr; } .snbp-trust__cell { border-right: none; border-bottom: 1px solid var(--line); } .snbp-trust__cell--last { border-bottom: none; } }

/* ============================================
   ACCUEIL — NOUS TROUVER
   ============================================ */
.snbp-trouver { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.snbp-trouver__text { padding: 9vh clamp(1.5rem, 5vw, 4rem); display: flex; flex-direction: column; justify-content: center; }
.snbp-trouver__text .snbp-btn { align-self: flex-start; }
.snbp-trouver__addr {
	font-family: var(--font-body); font-weight: 400; font-size: 16px; line-height: 1.8;
	color: var(--ink-2); margin: 22px 0 28px;
}
.snbp-trouver__map {
	display: block;
	min-height: 400px; background: #e7e2d9; position: relative; overflow: hidden;
	text-decoration: none;
}
.snbp-trouver__map img {
	width: 100%; height: 100%; min-height: 400px;
	object-fit: cover; display: block;
	transition: transform .6s ease;
}
.snbp-trouver__map:hover img { transform: scale(1.35); }
.snbp-trouver__badge {
	position: absolute; left: 20px; bottom: 20px;
	background: #fff; border-radius: 8px;
	padding: 12px 16px;
	box-shadow: 0 6px 18px -8px rgba(0,0,0,.4);
	font-family: var(--font-body); font-weight: 600; font-size: 13px;
	color: var(--ink);
}
@media (max-width: 900px) { .snbp-trouver { grid-template-columns: 1fr; } .snbp-trouver__map { min-height: 260px; } }

/* ============================================
   PAGE SOCIÉTÉ
   ============================================ */
.snbp-societe-hero {
	position: relative; overflow: hidden;
	background: var(--dark); color: var(--on-dark-warm);
}
.snbp-societe-hero__bg {
	position: absolute; inset: 0;
	background: var(--societe-hero-bg, none) center/cover;
	opacity: .85;
}
.snbp-societe-hero__grad {
	position: absolute; inset: 0;
	background: linear-gradient(90deg, rgba(38,36,31,.9) 22%, rgba(38,36,31,.05));
}
.snbp-societe-hero__inner {
	position: relative;
	padding: 10vh var(--pad-x);
	max-width: 660px;
	font-family: var(--font-body);
}
.snbp-societe-hero__inner .snbp-eyebrow { color: var(--brand); margin: 16px 0; }
.snbp-societe-hero__title {
	font-family: var(--font-display);
	font-weight: 400; font-size: 48px; line-height: 1.05;
	letter-spacing: -0.02em; margin: 0 0 18px;
	color: var(--on-dark-warm);
}
.snbp-societe-hero__desc {
	font-family: var(--font-body); font-weight: 600; font-size: 17px; line-height: 1.7;
	color: #ffffff; max-width: 500px; margin: 0;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.snbp-societe-intro {
	display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px;
	padding: 9vh var(--pad-x) 0; align-items: center;
}
.snbp-societe-intro__text p {
	font-family: var(--font-body); font-weight: 400; font-size: 16px; line-height: 1.8;
	color: var(--ink-2); margin: 0 0 16px;
}
.snbp-societe-intro__text p:last-child { margin-bottom: 0; }
.snbp-societe-intro__text h2 { margin-bottom: 20px; }
.snbp-societe-intro__img {
	border-radius: 16px; overflow: hidden;
	aspect-ratio: 4 / 3;
	border: 1px solid var(--line);
}
.snbp-societe-intro__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 720px) { .snbp-societe-intro { grid-template-columns: 1fr; padding-top: 5vh; } }

.snbp-societe-stats-wrap {
	max-width: var(--content-max);
	margin-inline: auto;
	padding: 6vh var(--pad-x) 9vh;
}
.snbp-societe-stats-wrap .snbp-stats { max-width: none; }

/* Bandeau photo pleine largeur — full-bleed via box-shadow trick */
.snbp-societe-band {
	position: relative;
	height: 52vh; min-height: 360px;
	overflow: hidden;
	max-width: var(--content-max);
	margin-inline: auto;
}
.snbp-societe-band img {
	width: 100%; height: 100%; object-fit: cover; display: block;
}
.snbp-societe-band__grad {
	position: absolute; inset: 0;
	background: linear-gradient(0deg, rgba(38,36,31,.55), rgba(38,36,31,.1));
}
.snbp-societe-band__caption {
	position: absolute; left: 5vw; bottom: 6vh; max-width: 520px;
	color: #fff;
	font-family: var(--font-body);
}
.snbp-societe-band__caption .snbp-eyebrow { color: var(--brand); margin-bottom: 12px; }
.snbp-societe-band__title {
	font-family: var(--font-display); font-weight: 400; font-size: 30px;
	line-height: 1.2; letter-spacing: -0.01em; color: #fff;
}

.snbp-stats {
	display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
	background: var(--line);
	border: 1px solid var(--line); border-radius: 14px;
	overflow: hidden;
}
.snbp-stats__cell { background: #fff; padding: 26px 22px; }
.snbp-stats__v { font-family: var(--font-display); font-weight: 400; font-size: 34px; color: var(--brand); }
.snbp-stats__l { font-family: var(--font-body); font-weight: 600; font-size: 13px; color: var(--ink-2); margin-top: 4px; }

.snbp-savoirs {
	background: #fff;
	border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
	padding: 9vh var(--pad-x);
}
.snbp-savoirs .snbp-eyebrow { margin-bottom: 12px; }
.snbp-savoirs__grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
	margin-top: 40px;
}
.snbp-savoirs__icon {
	width: 52px; height: 52px;
	border-radius: 12px;
	background: var(--brand-tint);
	color: var(--brand);
	display: flex; align-items: center; justify-content: center;
	margin-bottom: 16px;
}
.snbp-savoirs__title {
	font-family: var(--font-display); font-weight: 600; font-size: 19px;
	color: var(--ink); margin-bottom: 8px;
}
.snbp-savoirs__desc {
	font-family: var(--font-body); font-weight: 400; font-size: 14.5px; line-height: 1.7;
	color: var(--ink-2); margin: 0;
}
@media (max-width: 720px) { .snbp-savoirs__grid { grid-template-columns: 1fr; } }

.snbp-secteurs { padding: 9vh var(--pad-x); }
.snbp-secteurs__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.snbp-secteurs__cell { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 24px; }
.snbp-secteurs__name { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--ink); margin-bottom: 6px; }
.snbp-secteurs__rule { height: 3px; width: 30px; background: var(--brand); }
@media (max-width: 720px) { .snbp-secteurs__grid { grid-template-columns: 1fr 1fr; } }

.snbp-cta-orange {
	margin: 30px var(--gutter) 9vh;
	background: var(--brand); border-radius: 20px;
	padding: 56px;
	display: flex; align-items: center; gap: 30px; flex-wrap: wrap;
}
.snbp-cta-orange__text { flex: 1; min-width: 280px; }
.snbp-cta-orange__text h2 {
	font-family: var(--font-display); font-weight: 400; font-size: 32px; line-height: 1.15;
	letter-spacing: -0.01em;
	color: #fff; margin: 0 0 10px;
}
.snbp-cta-orange__text p {
	font-family: var(--font-body); font-weight: 400; font-size: 16px; line-height: 1.6;
	color: rgba(255,255,255,.92); margin: 0;
}
.snbp-cta-orange__btn {
	display: inline-flex; align-items: center;
	height: 54px; padding: 0 32px;
	background: #fff; color: var(--ink);
	border-radius: 999px;
	font-family: var(--font-body); font-weight: 700; font-size: 15px;
	text-decoration: none;
	transition: background .2s ease;
}
.snbp-cta-orange__btn:hover { background: var(--surface-2); color: var(--ink); }

/* ============================================
   PAGE CONTACT
   ============================================ */
.snbp-contact-intro {
	max-width: 1120px; margin: 0 auto;
	padding: 44px var(--pad-x) 30px;
}
.snbp-contact-intro__title {
	font-family: var(--font-display); font-weight: 400; font-size: 42px;
	letter-spacing: -0.02em; color: var(--ink); margin: 0 0 12px;
}
.snbp-contact-intro__desc {
	font-family: var(--font-body); font-weight: 400; font-size: 16px; line-height: 1.7;
	color: var(--ink-2); max-width: 560px; margin: 0;
}

.snbp-contact-panel {
	max-width: 1120px; margin: 0 auto;
	padding: 0 var(--pad-x) 70px;
	display: grid; grid-template-columns: 1fr 380px; gap: 34px;
	align-items: start;
}
@media (max-width: 900px) { .snbp-contact-panel { grid-template-columns: 1fr; } }

.snbp-contact-form {
	background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 28px;
}
.snbp-contact-form form > * + * { margin-top: 14px; }
.snbp-contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.snbp-contact-form label > span { display: block; font-family: var(--font-body); font-weight: 600; font-size: 12px; color: var(--ink-2); margin-bottom: 6px; }
.snbp-contact-form label { display: block; }
.snbp-contact-form input,
.snbp-contact-form select,
.snbp-contact-form textarea {
	width: 100%;
	border: 1px solid rgba(0,0,0,.16); border-radius: 9px;
	padding: 0 13px;
	font: 400 14px var(--font-body); color: var(--ink);
	background: #fff;
	transition: border-color .15s ease;
}
.snbp-contact-form input,
.snbp-contact-form select { height: 44px; }
.snbp-contact-form textarea { min-height: 110px; padding: 11px 13px; resize: vertical; }
.snbp-contact-form input:focus,
.snbp-contact-form select:focus,
.snbp-contact-form textarea:focus { outline: none; border-color: var(--brand); }
.snbp-contact-form__honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; pointer-events: none !important; }
.snbp-contact-form__consent { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; }
.snbp-contact-form__consent input { position: absolute; opacity: 0; pointer-events: none; }
.snbp-contact-form__consent-box {
	width: 20px; height: 20px; border-radius: 5px;
	border: 2px solid #c7c0b4; background: #fff;
	flex: none; display: inline-flex; align-items: center; justify-content: center;
	margin-top: 1px;
	transition: background .15s ease, border-color .15s ease;
}
.snbp-contact-form__consent input:checked + .snbp-contact-form__consent-box {
	background: var(--brand); border-color: var(--brand);
}
.snbp-contact-form__consent input:checked + .snbp-contact-form__consent-box::after {
	content: ''; width: 6px; height: 10px;
	border: solid #fff; border-width: 0 2px 2px 0;
	transform: rotate(45deg) translate(-1px, -1px);
}
.snbp-contact-form__consent-label { font-size: 12px; line-height: 1.5; color: var(--ink-3); }
.snbp-contact-form__submit {
	width: 100%; height: 52px;
	background: var(--brand); color: #fff; border: none; border-radius: 999px;
	font-family: var(--font-body); font-weight: 700; font-size: 15px;
	cursor: pointer;
	transition: background .2s ease, opacity .2s ease;
}
.snbp-contact-form__submit:disabled { opacity: .5; cursor: not-allowed; }
.snbp-contact-form__submit:not(:disabled):hover { background: var(--brand-dark); }
.snbp-contact-form__error { background: #fdecec; border: 1px solid #f3c3c3; color: #a1332f; padding: 12px 16px; border-radius: 10px; font-size: 13px; font-weight: 600; }
.snbp-contact-form__success { background: #eaf6ec; border: 1px solid #bfe3c6; color: #2e7d43; padding: 13px 16px; border-radius: 10px; font-size: 13.5px; font-weight: 600; display: flex; align-items: center; gap: 9px; }

/* ============================================
   Contact Form 7 — override du rendu par défaut
   pour matcher la maquette
   ============================================ */
.snbp-contact-form--cf7 { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 28px; }
.snbp-contact-form--cf7 .wpcf7 { margin: 0; padding: 0; }
.snbp-contact-form--cf7 form > p { margin: 0; }
.snbp-contact-form--cf7 .snbp-cf7-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.snbp-contact-form--cf7 .snbp-cf7-full { display: block; margin-bottom: 14px; }
.snbp-contact-form--cf7 label { display: block; font-family: var(--font-body); font-weight: 600; font-size: 12px; color: var(--ink-2); margin-bottom: 6px; }
.snbp-contact-form--cf7 .wpcf7-form-control-wrap { display: block; margin-top: 4px; }
.snbp-contact-form--cf7 input[type="text"],
.snbp-contact-form--cf7 input[type="email"],
.snbp-contact-form--cf7 input[type="tel"],
.snbp-contact-form--cf7 select,
.snbp-contact-form--cf7 textarea {
	width: 100%;
	border: 1px solid rgba(0,0,0,.16); border-radius: 9px;
	padding: 0 13px;
	font: 400 14px var(--font-body); color: var(--ink);
	background: #fff;
	transition: border-color .15s ease;
}
.snbp-contact-form--cf7 input[type="text"],
.snbp-contact-form--cf7 input[type="email"],
.snbp-contact-form--cf7 input[type="tel"],
.snbp-contact-form--cf7 select { height: 44px; }
.snbp-contact-form--cf7 textarea { min-height: 110px; padding: 11px 13px; resize: vertical; }
.snbp-contact-form--cf7 input:focus,
.snbp-contact-form--cf7 select:focus,
.snbp-contact-form--cf7 textarea:focus { outline: none; border-color: var(--brand); }

/* Consentement RGPD */
.snbp-contact-form--cf7 .snbp-cf7-consent {
	display: flex; align-items: flex-start; gap: 10px;
	margin: 8px 0 14px;
	font-family: var(--font-body); font-weight: 400; font-size: 12px; line-height: 1.5;
	color: var(--ink-3);
	cursor: pointer;
}
.snbp-contact-form--cf7 .snbp-cf7-consent .wpcf7-list-item { margin: 0; display: contents; }
.snbp-contact-form--cf7 .snbp-cf7-consent .wpcf7-list-item-label { flex: 1; }
.snbp-contact-form--cf7 .snbp-cf7-consent input[type="checkbox"] {
	flex: none; margin-top: 2px;
	width: 20px; height: 20px; border-radius: 5px;
	accent-color: var(--brand);
	cursor: pointer;
}

/* Bouton submit */
.snbp-contact-form--cf7 .wpcf7-submit {
	width: 100%; height: 52px;
	background: var(--brand); color: #fff; border: none; border-radius: 999px;
	font-family: var(--font-body); font-weight: 700; font-size: 15px;
	cursor: pointer;
	transition: background .2s ease, opacity .2s ease;
}
.snbp-contact-form--cf7 .wpcf7-submit:hover { background: var(--brand-dark); }
.snbp-contact-form--cf7 .wpcf7-submit:disabled { opacity: .5; cursor: not-allowed; }
.snbp-contact-form--cf7 .wpcf7-spinner { margin: 0 0 0 12px; vertical-align: middle; }

/* Messages de retour CF7 */
.snbp-contact-form--cf7 .wpcf7 form.sent .wpcf7-response-output,
.snbp-contact-form--cf7 .wpcf7 form.mail_sent .wpcf7-response-output {
	background: #eaf6ec; border: 1px solid #bfe3c6; color: #2e7d43;
	padding: 13px 16px; border-radius: 10px; font-size: 13.5px; font-weight: 600;
	margin: 14px 0 0;
}
.snbp-contact-form--cf7 .wpcf7 form.invalid .wpcf7-response-output,
.snbp-contact-form--cf7 .wpcf7 form.failed .wpcf7-response-output,
.snbp-contact-form--cf7 .wpcf7 form.aborted .wpcf7-response-output,
.snbp-contact-form--cf7 .wpcf7 form.spam .wpcf7-response-output {
	background: #fdecec; border: 1px solid #f3c3c3; color: #a1332f;
	padding: 12px 16px; border-radius: 10px; font-size: 13px; font-weight: 600;
	margin: 14px 0 0;
}
.snbp-contact-form--cf7 .wpcf7-not-valid-tip {
	color: #a1332f; font-size: 12px; font-weight: 600; margin-top: 4px;
}
.snbp-contact-form--cf7 .wpcf7-not-valid { border-color: #d9534f !important; }

/* Badge reCAPTCHA v3 - laisser Google gerer son emplacement en bas a droite */
.grecaptcha-badge { z-index: 100 !important; }
@media (max-width: 600px) { .snbp-contact-form--cf7 .snbp-cf7-row { grid-template-columns: 1fr; } }

.snbp-contact-panel__side { display: flex; flex-direction: column; gap: 20px; }
.snbp-contact-card {
	background: var(--dark); color: var(--on-dark-warm);
	border-radius: 16px; padding: 26px;
	font-family: var(--font-body);
}
.snbp-contact-card__logo {
	background: #fff; border-radius: 8px;
	padding: 9px 13px; width: fit-content; margin-bottom: 20px;
}
.snbp-contact-card__logo img { height: 38px; width: auto; display: block; }
.snbp-contact-card__lines { display: flex; flex-direction: column; gap: 16px; }
.snbp-contact-line {
	display: flex; gap: 13px;
	font-family: var(--font-body); font-size: 14.5px; line-height: 1.6;
	color: var(--on-dark-warm);
}
.snbp-contact-line svg { color: var(--brand); flex: none; margin-top: 2px; }
.snbp-contact-line a { color: #fff; text-decoration: none; font-weight: 600; }
.snbp-contact-line a:hover { color: var(--brand); }

.snbp-mapcard {
	display: block; text-decoration: none;
	border-radius: 16px; overflow: hidden;
	border: 1px solid var(--line);
	height: 240px; background: #e7e2d9; position: relative;
}
.snbp-mapcard img {
	width: 100%; height: 100%; object-fit: cover; display: block;
	transition: transform .6s ease;
}
.snbp-mapcard:hover img { transform: scale(2.4); }
.snbp-mapcard__badge {
	position: absolute; left: 16px; bottom: 16px;
	background: #fff; border-radius: 8px;
	padding: 10px 14px;
	box-shadow: 0 6px 18px -8px rgba(0,0,0,.4);
	font-family: var(--font-body); font-weight: 600; font-size: 13px;
	color: var(--ink);
}

/* ============================================
   FICHE PRODUIT — EN-TÊTE
   ============================================ */
.snbp-fiche-head {
	display: grid; grid-template-columns: minmax(340px, 44%) 1fr;
	gap: 48px; padding: 32px var(--pad-x) 40px; align-items: start;
}
.snbp-fiche-head__gallery { position: sticky; top: 88px; }
.snbp-fiche-head__main {
	aspect-ratio: 1; border-radius: 14px;
	background: var(--surface-3);
	background-position: center; background-size: cover;
	border: 1px solid rgba(0,0,0,.06);
}
.snbp-fiche-head__info .snbp-eyebrow { color: var(--brand); letter-spacing: 0.14em; margin-bottom: 12px; }
.snbp-fiche-head__title {
	font-family: var(--font-display); font-weight: 400; font-size: 40px;
	line-height: 1.1; letter-spacing: -0.02em;
	color: var(--ink); margin: 0 0 8px;
}
.snbp-fiche-head__meta {
	font-family: var(--font-body); font-weight: 500; font-size: 14px;
	color: var(--ink-3); margin-bottom: 22px;
}
.snbp-fiche-head__meta strong { color: var(--ink-2); font-weight: 700; }
.snbp-fiche-head__count { color: var(--brand) !important; }
.snbp-fiche-head__desc {
	font-family: var(--font-body); font-weight: 400; font-size: 15.5px; line-height: 1.7;
	color: var(--ink-2); max-width: 560px; margin: 0 0 26px;
}
.snbp-fiche-tech {
	display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
	background: var(--line);
	border: 1px solid var(--line); border-radius: 12px;
	overflow: hidden; margin-bottom: 28px;
}
.snbp-fiche-tech__cell { background: #fff; padding: 16px 18px; }
.snbp-fiche-tech__l {
	font-family: var(--font-body); font-weight: 600; font-size: 11px;
	text-transform: uppercase; letter-spacing: 0.06em; color: var(--faint); margin-bottom: 5px;
}
.snbp-fiche-tech__v { font-family: var(--font-body); font-weight: 600; font-size: 15px; color: var(--ink); }
.snbp-fiche-head__notice {
	display: flex; align-items: center; gap: 12px;
	padding: 14px 18px; background: var(--surface-3);
	border-radius: 12px;
	font-family: var(--font-body); font-weight: 500; font-size: 14px;
	color: var(--ink-2);
}
.snbp-fiche-head__notice svg { color: var(--brand); flex: none; }
.snbp-fiche-head__notice strong { color: var(--ink); }
.snbp-fiche-head__hint { font-family: var(--font-body); font-weight: 400; font-size: 13px; line-height: 1.6; color: var(--faint); margin: 14px 2px 0; }
@media (max-width: 900px) { .snbp-fiche-head { grid-template-columns: 1fr; } .snbp-fiche-head__gallery { position: static; } }

/* Tableau compact des variantes (< 5) rendu inline dans la fiche-head */
.snbp-vtable-compact {
	border: 1px solid rgba(0,0,0,.12);
	border-radius: 14px;
	overflow: hidden;
	background: #fff;
	font-family: var(--font-body);
}
.snbp-vtable-compact__head {
	display: grid; grid-template-columns: 1.1fr 1.4fr 1.1fr;
	padding: 12px 20px;
	background: var(--ink); color: #fff;
	font-weight: 700; font-size: 11.5px;
	text-transform: uppercase; letter-spacing: .05em;
}
.snbp-vtable-compact__row {
	display: grid; grid-template-columns: 1.1fr 1.4fr 1.1fr;
	align-items: center;
	padding: 16px 20px;
	background: #fff;
	border-top: 1px solid rgba(0,0,0,.06);
	cursor: pointer;
	transition: background .15s ease;
}
.snbp-vtable-compact__row:hover { background: #fbf5ec; }
.snbp-vtable-compact__row.is-selected { background: #fdf6ee; }
.snbp-vtable-compact__row.is-anchor { background: #fef7e8; box-shadow: inset 3px 0 0 var(--brand); }
.snbp-vtable-compact__row input { position: absolute; opacity: 0; pointer-events: none; }
.snbp-vtable-compact__ref {
	display: flex; align-items: center; gap: 12px;
	font-family: var(--font-mono); font-weight: 600; font-size: 15px; color: var(--ink);
}
.snbp-vtable-compact__ref code { font-family: inherit; color: inherit; background: none; padding: 0; }
.snbp-vtable-compact__dim { font-weight: 500; font-size: 15px; color: var(--ink); }
.snbp-vtable-compact__kilo { font-weight: 500; font-size: 15px; color: var(--ink-2); }
.snbp-vtable-compact__box {
	width: 22px; height: 22px; border-radius: 6px;
	border: 2px solid #c7c0b4; background: #fff;
	display: inline-flex; align-items: center; justify-content: center;
	flex: none;
	transition: background .15s ease, border-color .15s ease;
}
.snbp-vtable-compact__row input:checked ~ .snbp-vtable-compact__ref .snbp-vtable-compact__box,
.snbp-vtable-compact__row.is-selected .snbp-vtable-compact__box,
.snbp-vtable-compact__toggle-all input:checked + .snbp-vtable-compact__box {
	background: var(--brand); border-color: var(--brand);
}
.snbp-vtable-compact__row.is-selected .snbp-vtable-compact__box::after,
.snbp-vtable-compact__toggle-all input:checked + .snbp-vtable-compact__box::after {
	content: ''; width: 7px; height: 12px;
	border: solid #fff; border-width: 0 2px 2px 0;
	transform: rotate(45deg) translate(-1px, -1px);
}
.snbp-vtable-compact__bar {
	display: flex; align-items: center; gap: 16px;
	padding: 18px 20px;
	border-top: 1px solid rgba(0,0,0,.08);
	background: var(--surface-2);
}
.snbp-vtable-compact__toggle-all,
.snbp-vtable-compact__hint {
	display: flex; align-items: center; gap: 10px;
	font-weight: 600; font-size: 14px; color: var(--ink);
	cursor: pointer;
}
.snbp-vtable-compact__hint { cursor: default; }
.snbp-vtable-compact__cta {
	margin-left: auto;
	display: inline-flex; align-items: center; gap: 9px;
	height: 48px; padding: 0 26px;
	background: var(--brand); color: #fff;
	border: none; border-radius: 999px;
	font-family: inherit; font-weight: 700; font-size: 14px;
	cursor: pointer;
	transition: background .2s ease, opacity .2s ease;
}
.snbp-vtable-compact__cta:disabled { opacity: .5; cursor: not-allowed; }
.snbp-vtable-compact__cta:not(:disabled):hover { background: var(--brand-dark); }
@media (max-width: 600px) {
	.snbp-vtable-compact__head,
	.snbp-vtable-compact__row { grid-template-columns: 1fr 1fr; gap: 8px 12px; }
	.snbp-vtable-compact__kilo { grid-column: 1 / -1; font-size: 13px; }
	.snbp-vtable-compact__bar { flex-wrap: wrap; }
	.snbp-vtable-compact__cta { width: 100%; margin-left: 0; justify-content: center; }
}

.snbp-fiche-vtable-wrap { padding: 0 var(--pad-x) 140px; }

/* ============================================
   ARCHIVE CATALOGUE — LANDING FAMILLES
   ============================================ */
.snbp-cat-landing__head { padding: 40px var(--pad-x) 6px; }
.snbp-cat-landing__title {
	font-family: var(--font-display); font-weight: 400; font-size: 42px;
	line-height: 1.1; letter-spacing: -0.02em;
	color: var(--ink); margin: 0 0 12px;
}
.snbp-cat-landing__desc {
	font-family: var(--font-body); font-weight: 400; font-size: 16px; line-height: 1.7;
	color: var(--ink-2); max-width: 600px; margin: 0;
}
.snbp-cat-landing__grid-wrap { padding: 30px var(--pad-x) 80px; }
.snbp-cat-landing__grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
	max-width: 960px; /* -25% par rapport à la grille pleine largeur */
}
@media (max-width: 900px) { .snbp-cat-landing__grid { grid-template-columns: repeat(2, 1fr); max-width: none; } }
@media (max-width: 600px) { .snbp-cat-landing__grid { grid-template-columns: 1fr; } }

.snbp-famcard {
	position: relative;
	aspect-ratio: 3 / 4;
	border-radius: 16px;
	overflow: hidden;
	text-decoration: none;
	background: #ddd;
	display: block;
	transition: box-shadow .25s ease, transform .25s ease;
}
.snbp-famcard:hover { box-shadow: 0 22px 48px -26px rgba(0,0,0,.5); transform: translateY(-4px); }
.snbp-famcard img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform .6s ease;
}
.snbp-famcard:hover img { transform: scale(1.06); }
.snbp-famcard__grad {
	position: absolute; inset: 0;
	background: linear-gradient(0deg, rgba(20,18,15,.82), transparent 55%);
	pointer-events: none;
}
.snbp-famcard__body {
	position: absolute; left: 22px; right: 22px; bottom: 20px;
	color: #fff;
}
.snbp-famcard__name {
	font-family: var(--font-display); font-weight: 400; font-size: 26px;
	color: #fff; margin-bottom: 4px;
}
.snbp-famcard__sub {
	font-family: var(--font-body); font-weight: 500; font-size: 13px;
	color: var(--on-dark-soft);
}

.snbp-famcard--custom {
	background: var(--dark);
	display: flex; flex-direction: column; justify-content: center;
	padding: 28px;
}
.snbp-famcard--custom:hover { transform: translateY(-4px); box-shadow: 0 22px 48px -26px rgba(238,125,0,.4); }
.snbp-famcard--custom img { display: none; }
.snbp-famcard--custom .snbp-eyebrow { color: var(--brand); margin-bottom: 14px; }
.snbp-famcard-custom__title {
	font-family: var(--font-display); font-weight: 400; font-size: 24px; line-height: 1.2;
	color: #fff; margin-bottom: 12px;
}
.snbp-famcard-custom__desc {
	font-family: var(--font-body); font-weight: 400; font-size: 13.5px; line-height: 1.6;
	color: var(--on-dark); margin: 0 0 18px;
}
.snbp-famcard-custom__cta {
	color: var(--brand); font-family: var(--font-body); font-weight: 700; font-size: 14px;
}

.snbp-gamme-produits { padding: 26px var(--gutter) 80px; }
.snbp-gamme-produits__head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 20px; }
.snbp-gamme-produits__count { font-family: var(--font-body); font-weight: 600; font-size: 15px; color: var(--ink-3); }
.snbp-gamme-produits__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .snbp-gamme-produits__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .snbp-gamme-produits__grid { grid-template-columns: 1fr; } }

/* ============================================
   TOAST GLOBAL (utilisé par le panier)
   ============================================ */
.snbp-toast {
	position: fixed; bottom: 24px; left: 50%;
	transform: translateX(-50%) translateY(20px);
	background: var(--ink); color: #fff;
	padding: 12px 20px; border-radius: 999px;
	font-family: var(--font-body); font-weight: 600; font-size: 14px;
	box-shadow: 0 12px 30px -10px rgba(0,0,0,.4);
	opacity: 0; pointer-events: none;
	transition: opacity .2s ease, transform .25s ease;
	z-index: 9999;
}
.snbp-toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }
}
