/* =========================================================
   Canop — main.css
   Variables, reset, typo, layout & sections (hors WooCommerce).
   ========================================================= */

:root {
	/* ─── Palette Canop — refresh « fun & pro » ─── */
	--c-bg:        #fffdf7;   /* fond principal — blanc doux et frais */
	--c-bg-soft:   #fff3d2;   /* sections alternées — jaune pâle */
	--c-cream:     #f4f1ea;   /* fond neutre clair derrière les images (sans vert) */
	--c-line:      #ece6da;   /* bordures — gris chaud neutre */

	/* ─── Couleurs vives de marque ─── */
	--c-yellow:      #ffd66b;
	--c-yellow-d:    #f0bc3c;
	--c-yellow-soft: #fff3d2;
	--c-red:         #ec5252;
	--c-red-d:       #d63d3d;
	--c-red-soft:    #fde0e0;
	--c-green:       #31efa3;
	--c-green-d:     #31efa3;
	--c-green-soft:  #d8fbee;

	/* « wood » : ancien beige → désormais l'accent rouge (rétro-compatibilité) */
	--c-wood:      #ec5252;
	--c-wood-d:    #d63d3d;

	--c-ink:       #1f1d1a;
	--c-ink-soft:  #4a463f;
	--c-mute:      #8a857c;

	/* Bleu Canop — utilisé pour CTA primaire, liens, focus, accents */
	--c-blue:      #112d63;
	--c-blue-d:    #0a1f47;
	--c-blue-l:    #2a4a85;
	--c-blue-soft: rgba(17, 45, 99, 0.08);
	--c-blue-tint: rgba(17, 45, 99, 0.16);

	--c-accent:    #ec5252;   /* erreurs formulaire → rouge */
	--c-success:   #31efa3;   /* succès → vert */
	--c-white:     #ffffff;

	--f-sans: 'DM Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	--f-serif: 'Unbounded', 'DM Sans', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;

	--radius: 14px;
	--radius-sm: 8px;
	--radius-lg: 24px;

	--shadow-sm: 0 1px 2px rgba(31,29,26,.06), 0 2px 4px rgba(31,29,26,.04);
	--shadow-md: 0 4px 12px rgba(31,29,26,.08), 0 12px 32px rgba(31,29,26,.06);
	--shadow-lg: 0 12px 32px rgba(31,29,26,.10), 0 24px 64px rgba(31,29,26,.08);

	--max-w: 1280px;
	--gutter: clamp(16px, 4vw, 40px);

	--header-h: 84px;
	--header-h-mobile: 64px;
	--promo-h: 32px;
	--safe-bottom: env(safe-area-inset-bottom, 0px);

	/* Breakpoints (à utiliser uniquement en référence — sont aussi écrits en dur) */
	--bp-tablet: 1024px;
	--bp-mobile: 768px;
	--bp-small:  480px;
}

@media (max-width: 768px) {
	:root { --header-h: var(--header-h-mobile); }
}

/* ───── Reset léger ───── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; min-width: 0; }
html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	overflow-x: clip;
}
body {
	font-family: var(--f-sans);
	color: var(--c-ink);
	background: var(--c-bg);
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: clip;
	max-width: 100vw;
	/* Rendu uniforme des glyphes quelle que soit la taille */
	font-optical-sizing: none;
}
/* Sécurité : tous les enfants directs du body ne débordent jamais */
body > * { max-width: 100%; }
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: var(--c-ink); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--c-wood-d); }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { padding: 0; list-style: none; }

/* ───── Typo ───── */
h1, h2, h3, h4 {
	font-family: var(--f-serif);
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: -0.01em;
	color: var(--c-ink);
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { color: var(--c-ink-soft); }

.eyebrow {
	font-family: var(--f-sans);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--c-wood-d);
	display: inline-block;
	margin-bottom: 12px;
}

/* ───── Layout ───── */
.container {
	width: 100%;
	max-width: var(--max-w);
	margin-inline: auto;
	padding-inline: var(--gutter);
}
.section {
	padding-block: clamp(56px, 8vw, 112px);
}
.section--soft { background: var(--c-bg-soft); }
.section--cream { background: var(--c-green); }
.section--rosy { background: var(--c-red); }
.section--dark { background: var(--c-blue); color: #fff; }
/* Sections jaune & vert (fonds clairs) → titres en bleu foncé */
.section--soft .section-head h2,
.section--cream .section-head h2,
.section--soft .section-head h3,
.section--cream .section-head h3 { color: var(--c-blue); }
/* Section rouge (fond foncé) → textes en blanc */
.section--rosy,
.section--rosy .section-head p,
.section--rosy .eyebrow { color: #fff; }
.section--rosy .section-head h2,
.section--rosy .section-head h3 { color: #fff; }
.section--rosy .section-head h2::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='14' viewBox='0 0 96 14' fill='none' stroke='%23ffd66b' stroke-width='3.4' stroke-linecap='round'%3E%3Cpath d='M3 8C12 0 20 14 31 7 42 0 50 14 61 7 72 0 82 13 93 6'/%3E%3C/svg%3E");
}
.section--dark h2, .section--dark p { color: #fff; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head p { margin-top: 12px; color: var(--c-ink-soft); }
/* Squiggle décoratif sous les titres de section — touche « fun » */
.section-head h2 { position: relative; }
.section-head h2::after {
	content: '';
	display: block;
	width: 96px;
	height: 14px;
	margin: 16px auto 0;
	background: no-repeat center / contain
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='14' viewBox='0 0 96 14' fill='none' stroke='%23ec5252' stroke-width='3.4' stroke-linecap='round'%3E%3Cpath d='M3 8C12 0 20 14 31 7 42 0 50 14 61 7 72 0 82 13 93 6'/%3E%3C/svg%3E");
}
/* Sur fond bleu foncé, squiggle en jaune pour rester visible */
.section--dark .section-head h2::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='14' viewBox='0 0 96 14' fill='none' stroke='%23ffd66b' stroke-width='3.4' stroke-linecap='round'%3E%3Cpath d='M3 8C12 0 20 14 31 7 42 0 50 14 61 7 72 0 82 13 93 6'/%3E%3C/svg%3E");
}

.canop-icon { display: inline-block; vertical-align: middle; }

/* ═════════════════════════════════════════════════════════════
   CTA PREMIUM — pill, flèche-cercle blanche à droite (style Biche)
   Toutes les variantes partagent la même mécanique : un .btn__arrow
   est ajouté à droite, qui se transforme subtilement au hover.
   ═════════════════════════════════════════════════════════════ */
.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 0 22px 0 28px;
	min-height: 52px;          /* hauteur fixe → tous les .btn alignés */
	border-radius: 999px;
	font-family: var(--f-sans);
	font-weight: 600;
	font-size: 0.95rem;
	letter-spacing: 0.005em;
	line-height: 1.2;
	transition: background .25s cubic-bezier(.4,0,.2,1), color .25s ease, transform .15s ease, box-shadow .25s ease;
	white-space: nowrap;
	cursor: pointer;
	border: 1.5px solid transparent;
	will-change: transform;
	box-sizing: border-box;
}
.btn__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px; height: 28px;
	border-radius: 50%;
	background: #fff;
	color: var(--c-blue);
	transition: transform .3s cubic-bezier(.4,0,.2,1), background .25s ease, color .25s ease;
	flex-shrink: 0;
}
.btn__arrow svg { width: 14px; height: 14px; transition: transform .3s cubic-bezier(.4,0,.2,1); }
.btn:hover .btn__arrow svg { transform: translateX(2px); }

/* ─── Variante primaire (par défaut) ─── */
.btn--primary { background: var(--c-blue); color: #fff; border-color: var(--c-blue); }
.btn--primary:hover {
	background: var(--c-blue-d);
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 8px 24px rgba(17,45,99,0.25);
}
.btn--primary .btn__arrow { background: #fff; color: var(--c-blue); }

/* ─── Variante ink (dark) ─── */
.btn--ink { background: var(--c-ink); color: #fff; border-color: var(--c-ink); }
.btn--ink:hover {
	background: var(--c-blue);
	border-color: var(--c-blue);
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 8px 24px rgba(31,29,26,0.20);
}
.btn--ink .btn__arrow { background: #fff; color: var(--c-ink); }
.btn--ink:hover .btn__arrow { color: var(--c-blue); }

/* ─── Variante wood ─── */
.btn--wood { background: var(--c-wood); color: #fff; border-color: var(--c-wood); }
.btn--wood:hover { background: var(--c-wood-d); border-color: var(--c-wood-d); color: #fff; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(236,82,82,0.30); }
.btn--wood .btn__arrow { color: var(--c-wood-d); }

/* ─── Outline (transparent + bordure) ─── */
.btn--outline {
	background: transparent;
	color: var(--c-blue);
	border-color: var(--c-blue);
}
.btn--outline:hover {
	background: var(--c-blue);
	color: #fff;
	transform: translateY(-1px);
}
.btn--outline .btn__arrow { background: var(--c-blue); color: #fff; }
.btn--outline:hover .btn__arrow { background: #fff; color: var(--c-blue); }

/* ─── Ghost (lien stylé) ─── */
.btn--ghost {
	background: transparent;
	color: var(--c-ink);
	padding: 0 16px;
	border-color: transparent;
}
.btn--ghost:hover { color: var(--c-blue); background: transparent; }
.btn--ghost .btn__arrow {
	background: transparent;
	color: currentColor;
	width: 20px; height: 20px;
}
.btn--ghost:hover .btn__arrow svg { transform: translateX(3px); }

/* ─── Tailles — hauteurs fixes pour alignement parfait ─── */
.btn--lg {
	min-height: 60px;
	padding: 0 26px 0 32px;
	font-size: 1rem;
	gap: 16px;
}
.btn--lg .btn__arrow { width: 36px; height: 36px; }
.btn--lg .btn__arrow svg { width: 16px; height: 16px; }

.btn--sm {
	min-height: 42px;
	padding: 0 18px 0 22px;
	font-size: 0.85rem;
	gap: 8px;
}
.btn--sm .btn__arrow { width: 22px; height: 22px; }
.btn--sm .btn__arrow svg { width: 11px; height: 11px; }

/* ─── Bouton plein largeur (utile sur mobile) ─── */
.btn--block { display: flex; width: 100%; justify-content: space-between; }

/* ─── État focus accessible ─── */
.btn:focus-visible {
	outline: 3px solid var(--c-blue-tint);
	outline-offset: 2px;
}

/* ─── Reduce motion ─── */
@media (prefers-reduced-motion: reduce) {
	.btn, .btn__arrow, .btn__arrow svg { transition: none; }
	.btn:hover { transform: none; }
}

/* ═════════════════════════════════════════════════════════════
   HEADER PREMIUM — sticky avec backdrop blur, shrink au scroll
   ═════════════════════════════════════════════════════════════ */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 253, 247, 0.88);
	backdrop-filter: saturate(180%) blur(14px);
	-webkit-backdrop-filter: saturate(180%) blur(14px);
	border-bottom: 1px solid var(--c-line);
	transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.site-header.is-scrolled {
	background: rgba(255, 253, 247, 0.95);
	box-shadow: 0 2px 24px rgba(31,29,26,0.06);
	border-bottom-color: transparent;
}
/* Menu mobile ouvert : on retire le backdrop-filter du header — sinon il
   « piège » le menu en position:fixed (containing block) et le menu ne s'affiche pas. */
body.is-menu-open .site-header {
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	background: var(--c-bg);
}
.site-header.is-scrolled .header-inner {
	min-height: 68px;
}
.site-header.is-scrolled .header-logo img {
	height: 38px;
}
.header-promo {
	background: var(--c-blue);
	color: #fff;
	text-align: center;
	font-size: 0.82rem;
	font-weight: 500;
	padding: 9px 16px;
	letter-spacing: 0.03em;
	line-height: 1.3;
	position: relative;
	overflow: hidden;
}
.header-promo::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
	transform: translateX(-100%);
	animation: canop-shimmer 6s ease-in-out infinite;
}
.header-promo strong { font-weight: 600; }
@keyframes canop-shimmer {
	0%, 100% { transform: translateX(-100%); }
	50%      { transform: translateX(100%); }
}
.header-inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 32px;
	min-height: var(--header-h);
	transition: min-height .25s ease;
}
.header-logo      { justify-self: start; }
.header-nav-left  { justify-self: center; }
.header-actions   { justify-self: end; display: flex; align-items: center; gap: 4px; }
.header-logo img  { height: 46px; width: auto; transition: height .25s ease; }
.header-logo a    { display: inline-block; padding: 4px 0; }
.primary-nav { display: flex; }
.primary-nav .menu-list {
	display: flex;
	gap: 28px;
	align-items: center;
	margin: 0; padding: 0;
	list-style: none;
}
.primary-nav .menu-list li { position: relative; }
.primary-nav .menu-list a {
	font-weight: 500;
	font-size: 0.93rem;
	padding: 10px 0;
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	white-space: nowrap;
}
.primary-nav .menu-list a:hover { color: var(--c-wood-d); }
.primary-nav .menu-list .current-menu-item > a::after,
.primary-nav .menu-list .current_page_item > a::after,
.primary-nav .menu-list .current-menu-ancestor > a::after {
	content: ''; position: absolute; left: 0; right: 0; bottom: 4px; height: 2px;
	background: var(--c-wood);
}

/* Indicateur caret pour les items avec sous-menu — bien visible */
/* ─── Sous-menus desktop (dropdown au survol) — uniquement ≥ 901px ─── */
@media (min-width: 901px) {
	.primary-nav .menu-list .menu-item-has-children > a::after {
		content: '';
		width: 16px; height: 16px;
		margin-left: 5px;
		flex-shrink: 0;
		background: var(--c-blue);
		border-radius: 50%;
		-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M7.41 8.59 12 13.17l4.59-4.58L18 10l-6 6-6-6z'/%3E%3C/svg%3E") no-repeat center / 11px;
		mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M7.41 8.59 12 13.17l4.59-4.58L18 10l-6 6-6-6z'/%3E%3C/svg%3E") no-repeat center / 11px;
		position: static; height: 16px;
		transition: transform .2s ease, background-color .2s ease;
	}
	.primary-nav .menu-list .menu-item-has-children:hover > a::after,
	.primary-nav .menu-list .menu-item-has-children:focus-within > a::after {
		transform: rotate(180deg);
	}
	.primary-nav .menu-list .sub-menu {
		position: absolute;
		top: 100%;
		left: 50%;
		transform: translateX(-50%) translateY(8px);
		min-width: 240px;
		background: #fff;
		border: 1px solid var(--c-line);
		border-radius: var(--radius);
		box-shadow: var(--shadow-md);
		padding: 8px;
		margin: 0;
		list-style: none;
		opacity: 0;
		visibility: hidden;
		transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
		z-index: 110;
	}
	.primary-nav .menu-list .menu-item-has-children:hover > .sub-menu,
	.primary-nav .menu-list .menu-item-has-children:focus-within > .sub-menu {
		opacity: 1;
		visibility: visible;
		transform: translateX(-50%) translateY(0);
		transition-delay: 0s;
	}
	.primary-nav .menu-list .sub-menu li { display: block; }
	.primary-nav .menu-list .sub-menu a {
		display: block;
		padding: 10px 14px;
		border-radius: var(--radius-sm);
		font-size: 0.92rem;
		white-space: nowrap;
	}
	.primary-nav .menu-list .sub-menu a:hover {
		background: var(--c-bg-soft);
		color: var(--c-ink);
	}
	.primary-nav .menu-list .sub-menu .menu-item-has-children > a::after { display: none; }
}
.header-actions .icon-btn {
	padding: 10px;
	border-radius: 50%;
	transition: background .25s ease, color .25s ease, transform .15s ease;
	position: relative;
	color: var(--c-ink);
}
.header-actions .icon-btn:hover {
	background: var(--c-blue-soft);
	color: var(--c-blue);
	transform: scale(1.05);
}
.cart-link {
	position: relative;
	padding: 10px;
	border-radius: 50%;
	display: inline-flex;
	transition: background .25s ease, color .25s ease, transform .15s ease;
	color: var(--c-ink);
}
.cart-link:hover {
	background: var(--c-blue-soft);
	color: var(--c-blue);
	transform: scale(1.05);
}
.cart-count {
	position: absolute;
	top: 2px; right: 2px;
	background: var(--c-blue);
	color: #fff;
	font-size: 0.68rem;
	font-weight: 700;
	min-width: 18px;
	height: 18px;
	border-radius: 9px;
	display: grid; place-items: center;
	padding: 0 5px;
	border: 2px solid var(--c-bg);
	box-shadow: 0 2px 6px rgba(17,45,99,0.25);
	transform-origin: center;
	transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.cart-link:has(.cart-count:not(:empty)) .cart-count[data-bounce="1"] {
	animation: canop-cart-bounce .5s cubic-bezier(.34,1.56,.64,1);
}
@keyframes canop-cart-bounce {
	0%   { transform: scale(0.6); }
	50%  { transform: scale(1.3); }
	100% { transform: scale(1); }
}

/* Mobile menu toggle */
.menu-toggle { display: none; padding: 10px; border-radius: 50%; }
.menu-toggle:hover { background: var(--c-bg-soft); }

@media (max-width: 900px) {
	/* Logo à gauche, recherche + panier + burger groupés à droite */
	.header-inner {
		display: flex;
		align-items: center;
		gap: 4px;
	}
	.header-logo     { order: 1; margin-right: auto; display: flex; align-items: center; }
	.header-logo a   { display: flex; align-items: center; padding: 0; }
	.header-logo img { display: block; }
	.header-actions  { order: 2; align-items: center; }
	.header-nav-left { order: 3; }
	.primary-nav { display: none; }
	.menu-toggle { display: inline-flex; }
	/* ─── Menu plein écran (le <nav> est déplacé dans <body> par le JS) ─── */
	.primary-nav.is-open {
		display: flex;
		flex-direction: column;
		position: fixed;
		inset: 0;
		z-index: 1000;
		background: var(--c-bg);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		animation: canop-menu-in .24s ease-out;
	}
	@keyframes canop-menu-in {
		from { opacity: 0; transform: translateY(-10px); }
		to   { opacity: 1; transform: translateY(0); }
	}
	/* Barre supérieure : titre + bouton fermer */
	.primary-nav__bar { display: none; }
	.primary-nav.is-open .primary-nav__bar {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 14px var(--gutter);
		border-bottom: 1px solid var(--c-line);
		position: sticky;
		top: 0;
		background: var(--c-bg);
		z-index: 2;
	}
	.primary-nav__title {
		font-family: var(--f-serif);
		font-size: 1.15rem;
		font-weight: 600;
		color: var(--c-ink);
	}
	.primary-nav__logo { display: inline-flex; align-items: center; }
	.primary-nav__logo img { height: 30px; width: auto; display: block; }
	.primary-nav__close {
		width: 44px; height: 44px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		border: 1px solid var(--c-line);
		border-radius: 50%;
		background: #fff;
		color: var(--c-ink);
		cursor: pointer;
		transition: background .2s ease, color .2s ease, transform .2s ease;
	}
	.primary-nav__close:hover { background: var(--c-blue); color: #fff; transform: rotate(90deg); }
	.primary-nav.is-open .menu-list {
		display: flex;
		flex-direction: column;
		gap: 0;
		width: 100%;
		padding: 8px var(--gutter) calc(32px + var(--safe-bottom));
	}
	.primary-nav.is-open .menu-list li { width: 100%; }
	.primary-nav.is-open .menu-list > li > a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 16px 2px;
		border-bottom: 1px solid var(--c-line);
		font-size: 1.08rem;
		font-weight: 500;
		color: var(--c-ink);
	}
	/* Indicateur sous-menu : + / − */
	.primary-nav.is-open .menu-list .menu-item-has-children > a::after {
		content: '+';
		font-size: 1.5rem;
		font-weight: 300;
		line-height: 1;
		color: var(--c-blue);
		background: none;
		width: auto; height: auto;
		border-radius: 0;
		-webkit-mask: none; mask: none;
		transform: none;
		transition: none;
	}
	.primary-nav.is-open .menu-list .menu-item-has-children.is-expanded > a::after { content: '\2013'; }
	/* Sous-menu en accordéon */
	.primary-nav.is-open .menu-list .sub-menu {
		position: static;
		transform: none;
		opacity: 1;
		visibility: visible;
		box-shadow: none;
		border: 0;
		background: transparent;
		min-width: 0;
		padding: 0;
		max-height: 0;
		overflow: hidden;
		transition: max-height .28s ease;
	}
	.primary-nav.is-open .menu-list .menu-item-has-children.is-expanded > .sub-menu { max-height: 480px; }
	.primary-nav.is-open .menu-list .sub-menu a {
		display: block;
		padding: 13px 2px 13px 18px;
		font-size: 0.98rem;
		color: var(--c-ink-soft);
		border-bottom: 1px solid var(--c-line);
	}
	.primary-nav.is-open .menu-list .sub-menu li:last-child a { border-bottom: 0; }
	body.is-menu-open { overflow: hidden; }
}

/* ───── Hero ───── */
.hero {
	position: relative;
	overflow: hidden;
	background: var(--c-bg);
}
.hero > .container { position: relative; z-index: 2; }

/* ─── Formes géométriques décoratives ─── */
.hero-shapes {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}
.hero-shape {
	position: absolute;
	display: block;
	filter: drop-shadow(0 10px 22px rgba(31,29,26,0.14));
	animation: hero-float 6s cubic-bezier(.45,0,.55,1) infinite;
	will-change: transform;
}
.hero-shape svg { width: 100%; height: 100%; display: block; }
/* Tailles +20 % */
.hero-shape--cluster { width: 70px; height: 70px; top: 10%;  left: 4%;   animation-delay: 0s;    }
.hero-shape--star    { width: 55px; height: 55px; top: 16%;  left: 47%;  animation-delay: -1.5s; }
.hero-shape--decagon { width: 62px; height: 62px; bottom: 12%; left: 8%; animation-delay: -3s;   }
.hero-shape--diamond { width: 48px; height: 48px; bottom: 20%; right: 3%; animation-delay: -4.5s; }
/* Flottement bien visible : dérive ample + rotation marquée + respiration d'échelle */
@keyframes hero-float {
	0%   { transform: translate3d(0, 0, 0)         rotate(0deg)    scale(1);    }
	25%  { transform: translate3d(14px, -26px, 0)  rotate(12deg)   scale(1.08); }
	50%  { transform: translate3d(0, -38px, 0)     rotate(-8deg)   scale(0.96); }
	75%  { transform: translate3d(-14px, -22px, 0) rotate(-14deg)  scale(1.05); }
	100% { transform: translate3d(0, 0, 0)         rotate(0deg)    scale(1);    }
}
@media (prefers-reduced-motion: reduce) {
	.hero-shape { animation: none; }
}
@media (max-width: 800px) {
	.hero-shape--star, .hero-shape--diamond { display: none; }
	.hero-shape--cluster { width: 44px; height: 44px; }
	.hero-shape--decagon { width: 40px; height: 40px; }
}

.hero-inner {
	display: grid;
	grid-template-columns: 0.82fr 1.18fr;  /* image plus large, met le produit en avant */
	gap: clamp(32px, 4vw, 64px);
	align-items: center;
	padding-block: clamp(36px, 4.5vw, 64px);
}
.hero-text .eyebrow { color: var(--c-wood-d); }

/* ─── Visuel produit + halo coloré doux ─── */
.hero-media-wrap { position: relative; }
.hero-media-wrap::before {
	content: '';
	position: absolute;
	z-index: 0;
	inset: -16% -14% -18% -12%;
	background:
		radial-gradient(closest-side, rgba(255,214,107,0.55), rgba(255,214,107,0) 80%);
	pointer-events: none;
}

/* ─── Titre hero : ligne principale + sous-titre ─── */
.hero-title {
	margin-bottom: 22px;
	line-height: 1.04;
}
.hero-title__main {
	display: block;
	font-size: clamp(2.6rem, 5.2vw, 4.2rem);
	font-weight: 700;
	letter-spacing: -0.015em;
	color: var(--c-blue);
}
.hero-title__sub {
	display: block;
	font-family: var(--f-serif);
	font-size: clamp(1.3rem, 2.4vw, 2rem);
	font-weight: 500;
	color: var(--c-ink);
	margin-top: 6px;
}

/* ─── Surlignage premium — marqueur propre, coins légèrement organiques ─── */
.canop-mark {
	position: relative;
	display: inline-block;
	white-space: nowrap;
	vertical-align: baseline;
	z-index: 0;
	padding-inline: 0.12em;
	color: #fff;
	line-height: 1;
}
.canop-mark::before {
	content: '';
	position: absolute;
	z-index: -1;
	left: -0.12em;
	right: -0.12em;
	top: 0.02em;
	bottom: 0.02em;
	background: var(--c-red);
	/* Coins arrondis asymétriques → effet marqueur tracé à la main, mais net */
	border-radius: 0.3em 0.5em 0.32em 0.46em / 0.55em 0.42em 0.6em 0.4em;
	transform: rotate(-1.2deg);
	box-shadow: 0 6px 18px rgba(236,82,82,0.30);
	/* Animation : le surlignage se "peint" de gauche à droite au chargement */
	clip-path: inset(0 100% 0 0);
	animation: canop-paint 0.7s cubic-bezier(.65,0,.35,1) 0.55s forwards;
}
@keyframes canop-paint {
	to { clip-path: inset(0 0 0 0); }
}
@media (prefers-reduced-motion: reduce) {
	.canop-mark::before { animation: none; clip-path: inset(0 0 0 0); }
}

.hero-tagline {
	font-size: 1.1rem;
	color: var(--c-ink-soft);
	margin-bottom: 22px;
	max-width: 480px;
	line-height: 1.6;
}

/* ─── Offre / prix dans le hero ─── */
.hero-offer { margin-bottom: 20px; }
.hero-price {
	display: flex;
	align-items: baseline;
	gap: 12px;
	flex-wrap: wrap;
}
.hero-price__now {
	font-family: var(--f-serif);
	font-size: clamp(2rem, 3.4vw, 2.6rem);
	font-weight: 700;
	color: var(--c-ink);
	background: none;
	text-decoration: none;
}
.hero-price__was {
	font-size: 1.15rem;
	color: var(--c-mute);
	text-decoration: line-through;
}
.hero-price__badge {
	background: var(--c-blue);
	color: #fff;
	font-weight: 700;
	font-size: 0.82rem;
	letter-spacing: 0.02em;
	padding: 5px 11px;
	border-radius: 999px;
	box-shadow: 0 4px 12px rgba(17,45,99,0.22);
}

.hero-ctas { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; margin-bottom: 24px; }
.hero-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--c-ink);
	transition: color .2s ease, gap .2s ease;
}
.hero-link svg { transition: transform .25s ease; }
.hero-link:hover { color: var(--c-blue); }
.hero-link:hover svg { transform: translateX(3px); }

/* ─── Ligne de réassurance sous le CTA — chips premium ─── */
.hero-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding-top: 24px;
	border-top: 1px solid var(--c-line);
	list-style: none;
}
.hero-trust li {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 14px 7px 9px;
	background: #fff;
	border: 1px solid var(--c-line);
	border-radius: 999px;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--c-ink);
	box-shadow: 0 2px 8px rgba(31,29,26,0.04);
}
.hero-trust li::before {
	content: '';
	flex-shrink: 0;
	width: 20px; height: 20px;
	border-radius: 50%;
	background:
		var(--c-blue)
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E")
		no-repeat center / 13px 13px;
}
.hero-trust li:nth-child(1)::before { background-color: var(--c-red); }
.hero-trust li:nth-child(2)::before { background-color: var(--c-yellow-d); }
.hero-trust li:nth-child(3)::before { background-color: var(--c-green-d); }
/* Desktop : chips de réassurance compacts (1 ligne si possible, sinon repli propre) */
@media (min-width: 801px) {
	.hero-trust { gap: 8px; }
	.hero-trust li {
		white-space: nowrap;
		padding: 6px 11px 6px 7px;
		font-size: 0.76rem;
		gap: 6px;
	}
	.hero-trust li::before { width: 17px; height: 17px; }
}
@media (max-width: 480px) {
	.hero-trust li { font-size: 0.78rem; padding: 6px 12px 6px 7px; }
}

/* État loading du bouton add-to-cart hero */
.btn.is-loading { color: transparent !important; pointer-events: none; position: relative; }
.btn.is-loading .btn__arrow { opacity: 0; }
.btn.is-loading::after {
	content: '';
	position: absolute;
	top: 50%; left: 50%;
	width: 20px; height: 20px;
	margin: -10px 0 0 -10px;
	border: 2.5px solid rgba(255,255,255,0.4);
	border-top-color: #fff;
	border-radius: 50%;
	animation: canop-spin .7s linear infinite;
}
@keyframes canop-spin { to { transform: rotate(360deg); } }
.hero-media {
	position: relative;
	z-index: 1;
	border-radius: var(--radius-lg);
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background: var(--c-cream);
	box-shadow: var(--shadow-lg);
}
.hero-media video {
	width: 100%; height: 100%;
	object-fit: cover;
	object-position: 62% 42%;  /* décalé pour mieux cadrer le plateau */
	opacity: 0;
	transition: opacity .5s ease;
}
.hero-media video.is-ready { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
	.hero-media video { opacity: 1; transition: none; }
}
/* Avis — côté texte, sous les CTA */
.hero-rating {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 26px;
	padding: 0;
	font-weight: 600;
	font-size: 0.92rem;
	color: var(--c-ink-soft);
}
.hero-rating .stars { color: var(--c-yellow-d); display: inline-flex; gap: 2px; }
.hero-rating .stars svg { width: 18px; height: 18px; }

@media (max-width: 800px) {
	.hero-inner { grid-template-columns: 1fr; padding-block: 48px; }
	.hero-media { aspect-ratio: 4 / 5; max-width: 480px; margin-inline: auto; }
}

/* ═════════════════════════════════════════════════════════════
   NOS ENGAGEMENTS — titre + colonnes texte + bloc note
   ═════════════════════════════════════════════════════════════ */
.canop-engagements {
	background: var(--c-bg-soft);
	border-block: 1px solid var(--c-line);
	padding-block: clamp(48px, 6vw, 80px);
}
.engagements-grid {
	display: grid;
	grid-template-columns: minmax(290px, 0.9fr) 2.3fr;
	gap: clamp(28px, 4vw, 56px);
	align-items: center;
}
.engagements-title { display: flex; flex-direction: column; gap: 18px; }
.engagements-title__line {
	width: 48px; height: 3px;
	background: var(--c-wood);
	border-radius: 2px;
}
.engagements-title h2 {
	font-family: var(--f-serif);
	font-size: clamp(1.35rem, 2.3vw, 1.9rem);
	color: var(--c-blue);
	line-height: 1.18;
	margin: 0;
	overflow-wrap: anywhere;
	hyphens: auto;
}
.engagements-cols {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.engagement-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--c-line);
	border-top: 5px solid var(--c-yellow);
	border-radius: var(--radius-lg);
	padding: 28px 26px 30px;
	box-shadow: 0 4px 16px rgba(31,29,26,0.04);
}
.engagement-card:nth-child(1) { border-top-color: var(--c-red); }
.engagement-card:nth-child(2) { border-top-color: var(--c-green); }
.engagement-card:nth-child(3) { border-top-color: var(--c-yellow); }
.engagement-card__icon {
	display: inline-flex;
	width: 56px; height: 56px;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}
.engagement-card__icon svg { width: 52px; height: 52px; }
.engagement-card h3 {
	font-family: var(--f-sans);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--c-blue);
	margin: 0 0 12px;
	line-height: 1.4;
}
.engagement-card p {
	font-size: 0.92rem;
	color: var(--c-ink-soft);
	line-height: 1.6;
	margin: 0;
}
.engagement-card p strong { color: var(--c-ink); font-weight: 700; }

/* Bloc note — carte blanche comme les autres */
.engagement-card--rating .engagement-card__icon { background: none; }
.engagement-rating {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: auto;
}
.engagement-rating__stars {
	display: inline-flex;
	gap: 2px;
	color: var(--c-yellow-d);
}
.engagement-rating__stars .star { width: 24px; height: 24px; }
.engagement-rating__stars .star--empty { color: var(--c-line); }
.engagement-rating__count {
	font-weight: 700;
	font-size: 1.15rem;
	color: var(--c-ink);
}

@media (max-width: 980px) {
	.engagements-grid { grid-template-columns: 1fr; gap: 28px; }
	.engagements-title { align-items: center; text-align: center; }
	.engagements-title__line { align-self: center; }
	.engagements-title h2 { text-align: center; }
}
@media (max-width: 760px) {
	.engagements-cols { grid-template-columns: 1fr; gap: 14px; }
}

/* ───── Product showcase (home) ───── */
.product-showcase {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 5vw, 64px);
	align-items: center;
}
.product-showcase .ps-media {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	aspect-ratio: 1;
	background: var(--c-cream);
}
.product-showcase .ps-media img { width: 100%; height: 100%; object-fit: cover; }
.product-showcase h2 { margin-bottom: 16px; }
.product-showcase .ps-price {
	display: flex; align-items: baseline; gap: 12px;
	margin-block: 24px;
}
.product-showcase .ps-price ins { background: none; font-size: 2rem; font-weight: 700; color: var(--c-ink); text-decoration: none; font-family: var(--f-serif); }
.product-showcase .ps-price del { color: var(--c-mute); font-size: 1.15rem; }
.product-showcase .ps-features { margin-block: 24px; display: grid; gap: 10px; }
.product-showcase .ps-features li {
	padding-left: 24px; position: relative; color: var(--c-ink-soft);
}
.product-showcase .ps-features li::before {
	content: '✓'; position: absolute; left: 0; color: var(--c-wood-d); font-weight: 700;
}

@media (max-width: 800px) {
	.product-showcase { grid-template-columns: 1fr; }
}

/* ───── Testimonials — carrousel auto infini ───── */
.testimonials-carousel {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin-top: 8px;
}
.testimonials-track {
	display: flex;
	gap: 24px;
	width: max-content;
	padding-block: 12px;
	animation: canop-marquee 48s linear infinite;
	will-change: transform;
}
.testimonials-carousel:hover .testimonials-track,
.testimonials-carousel:focus-within .testimonials-track {
	animation-play-state: paused;
}
@keyframes canop-marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

.testimonial {
	flex: 0 0 auto;
	width: 380px;
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--c-white);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-lg);
	padding: 32px 30px 26px;
	box-shadow: 0 10px 30px rgba(31,29,26,0.05);
	overflow: hidden;
}
/* Guillemet décoratif */
.testimonial__mark {
	position: absolute;
	top: 4px; right: 20px;
	font-family: var(--f-serif);
	font-size: 5.5rem;
	line-height: 1;
	color: var(--c-blue);
	opacity: 0.9;
	pointer-events: none;
}
/* Guillemet décoratif : une couleur de marque par carte */
.testimonial--mark-blue   .testimonial__mark { color: var(--c-blue); }
.testimonial--mark-yellow .testimonial__mark { color: var(--c-yellow-d); }
.testimonial--mark-red    .testimonial__mark { color: var(--c-red); }
.testimonial--mark-green  .testimonial__mark { color: var(--c-green-d); }
/* Étoiles : toutes jaunes */
.testimonial .stars { display: inline-flex; gap: 3px; margin-bottom: 14px; color: var(--c-yellow-d); }
.testimonial .stars svg { width: 16px; height: 16px; }
.testimonial__text {
	font-family: var(--f-serif);
	font-size: 1.05rem;
	line-height: 1.55;
	color: var(--c-ink);
	margin: 0 0 22px;
	flex: 1;
}
.testimonial__author {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-top: 18px;
	border-top: 1px solid var(--c-line);
}
.testimonial__avatar {
	flex-shrink: 0;
	width: 42px; height: 42px;
	border-radius: 50%;
	background: var(--c-blue);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--f-serif);
	font-weight: 700;
	font-size: 1.05rem;
}
.testimonial__id { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.testimonial__name {
	font-style: normal;
	font-weight: 700;
	color: var(--c-ink);
	font-size: 0.92rem;
}
.testimonial__badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 0.76rem;
	font-weight: 600;
	color: var(--c-ink-soft);
}
.testimonial__badge svg { color: var(--c-green-d); }

@media (max-width: 768px) {
	.testimonials-track { gap: 16px; animation-duration: 36s; }
	.testimonial { width: 300px; padding: 24px; }
}
@media (max-width: 480px) {
	.testimonial { width: 82vw; max-width: 320px; }
}

/* Respect du reduced-motion : on fige et on rend scrollable manuellement */
@media (prefers-reduced-motion: reduce) {
	.testimonials-track { animation: none; }
	.testimonials-carousel {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x mandatory;
	}
	.testimonial { scroll-snap-align: center; }
}

/* ───── Gallery "À vous de jouer" — carrousel auto, images uniformes ───── */
.gallery-carousel {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin-top: 8px;
	-webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
	mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}
.gallery-track {
	display: flex;
	gap: 20px;
	width: max-content;
	padding-block: 8px;
	animation: canop-marquee 55s linear infinite;
	will-change: transform;
}
.gallery-carousel:hover .gallery-track {
	animation-play-state: paused;
}
.gallery-slide {
	flex: 0 0 auto;
	width: 360px;
	aspect-ratio: 4 / 3;          /* toutes les images au même format */
	border-radius: var(--radius-lg);
	overflow: hidden;
	margin: 0;
	box-shadow: 0 6px 20px rgba(31,29,26,0.07);
}
.gallery-slide img {
	width: 100%; height: 100%;
	object-fit: cover;
}

@media (max-width: 768px) {
	.gallery-track { gap: 14px; animation-duration: 42s; }
	.gallery-slide { width: 280px; }
}
@media (max-width: 480px) {
	.gallery-slide { width: 78vw; max-width: 320px; }
}
@media (prefers-reduced-motion: reduce) {
	.gallery-track { animation: none; }
	.gallery-carousel {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x mandatory;
	}
	.gallery-slide { scroll-snap-align: center; }
}

/* ═════════════════════════════════════════════════════════════
   VOTRE COFFRET — photo annotée avec repères / flèches
   ═════════════════════════════════════════════════════════════ */
.coffret-stage {
	position: relative;
	max-width: 560px;
	margin: 40px auto;
	border-radius: var(--radius-lg);
	overflow: visible;
}
.coffret-stage > img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: var(--radius-lg);
	box-shadow: 0 24px 60px rgba(31,29,26,0.14);
}

/* ─── Repère (callout) ─── */
.coffret-callout {
	position: absolute;
	z-index: 3;
	transform: translate(-50%, -50%);
}
/* Point d'ancrage sur l'élément */
.coffret-callout__dot {
	position: absolute;
	left: 0; top: 0;
	width: 16px; height: 16px;
	margin: -8px 0 0 -8px;
	border-radius: 50%;
	background: var(--c-blue);
	box-shadow: 0 0 0 4px rgba(255,255,255,0.9), 0 4px 10px rgba(17,45,99,0.35);
}
.coffret-callout__dot::after {
	content: '';
	position: absolute;
	inset: -7px;
	border-radius: 50%;
	border: 1.5px solid var(--c-blue);
	opacity: 0.4;
}
/* Trait de liaison */
.coffret-callout__line {
	position: absolute;
	top: -1px;
	height: 2px;
	width: 88px;
	background: var(--c-blue);
}
/* Étiquette */
.coffret-callout__label {
	position: absolute;
	top: 50%;
	display: flex;
	align-items: center;
	gap: 13px;
	width: 264px;
	padding: 15px 18px;
	background: #fff;
	border-radius: var(--radius);
	box-shadow: 0 10px 30px rgba(31,29,26,0.16);
	transform: translateY(-50%);
}
.coffret-callout__shape {
	display: inline-flex;
	width: 38px; height: 38px;
	flex-shrink: 0;
}
.coffret-callout__shape svg { width: 100%; height: 100%; display: block; }
.coffret-callout__text strong {
	display: block;
	font-size: 1rem;
	font-weight: 600;
	color: var(--c-blue);
	line-height: 1.3;
}
.coffret-callout__text span {
	display: block;
	font-size: 0.85rem;
	color: var(--c-mute);
	margin-top: 3px;
	line-height: 1.4;
}
/* Sens : vers la droite */
.coffret-callout[data-dir="right"] .coffret-callout__line { left: 4px; }
.coffret-callout[data-dir="right"] .coffret-callout__label { left: 92px; }
/* Sens : vers la gauche */
.coffret-callout[data-dir="left"] .coffret-callout__line { right: 4px; }
.coffret-callout[data-dir="left"] .coffret-callout__label { right: 92px; flex-direction: row-reverse; text-align: right; }

/* Une couleur de marque par repère */
.coffret-callout:nth-of-type(1) .coffret-callout__dot,
.coffret-callout:nth-of-type(1) .coffret-callout__line { background: var(--c-red); }
.coffret-callout:nth-of-type(1) .coffret-callout__dot::after { border-color: var(--c-red); }
.coffret-callout:nth-of-type(1) .coffret-callout__num   { color: var(--c-red); }
.coffret-callout:nth-of-type(1) .coffret-callout__label { border: 2px solid var(--c-red); }

.coffret-callout:nth-of-type(2) .coffret-callout__dot,
.coffret-callout:nth-of-type(2) .coffret-callout__line { background: var(--c-yellow-d); }
.coffret-callout:nth-of-type(2) .coffret-callout__dot::after { border-color: var(--c-yellow-d); }
.coffret-callout:nth-of-type(2) .coffret-callout__num   { color: var(--c-yellow-d); }
.coffret-callout:nth-of-type(2) .coffret-callout__label { border: 2px solid var(--c-yellow-d); }

.coffret-callout:nth-of-type(3) .coffret-callout__dot,
.coffret-callout:nth-of-type(3) .coffret-callout__line { background: var(--c-green-d); }
.coffret-callout:nth-of-type(3) .coffret-callout__dot::after { border-color: var(--c-green-d); }
.coffret-callout:nth-of-type(3) .coffret-callout__num   { color: var(--c-green-d); }
.coffret-callout:nth-of-type(3) .coffret-callout__label { border: 2px solid var(--c-green-d); }

.coffret-callout:nth-of-type(4) .coffret-callout__label { border: 2px solid var(--c-blue); }

/* Liste de repli (cachée sur desktop) */
.coffret-list { display: none; }

@media (max-width: 900px) {
	/* Sur mobile : photo simple + liste lisible en dessous */
	.coffret-stage > img { box-shadow: 0 14px 36px rgba(31,29,26,0.12); }
	.coffret-callout { display: none; }
	.coffret-list {
		display: grid;
		gap: 10px;
		margin-top: 24px;
	}
	.coffret-list li {
		display: flex;
		align-items: center;
		gap: 14px;
		background: #fff;
		border: 1px solid var(--c-line);
		border-left: 4px solid var(--c-blue);
		border-radius: var(--radius);
		padding: 14px 18px;
	}
	.coffret-list li:nth-child(1) { border-left-color: var(--c-red); }
	.coffret-list li:nth-child(2) { border-left-color: var(--c-yellow-d); }
	.coffret-list li:nth-child(3) { border-left-color: var(--c-green-d); }
	.coffret-list li:nth-child(4) { border-left-color: var(--c-blue); }
	.coffret-list__shape {
		display: inline-flex;
		width: 34px; height: 34px;
		flex-shrink: 0;
	}
	.coffret-list__shape svg { width: 100%; height: 100%; display: block; }
	.coffret-list strong { display: block; font-size: 0.95rem; font-weight: 600; color: var(--c-blue); }
	.coffret-list li > span > span { display: block; font-size: 0.82rem; color: var(--c-mute); margin-top: 2px; }
}

/* ═════════════════════════════════════════════════════════════
   CONVERSION — Comment ça marche (3 étapes)
   ═════════════════════════════════════════════════════════════ */
.canop-hiw .hiw-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	position: relative;
}
/* Cartes identiques au bloc « Nos engagements » : blanc + liseré haut coloré */
.hiw-step {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 28px 26px 30px;
	background: #fff;
	border: 1px solid var(--c-line);
	border-top: 5px solid var(--c-yellow);
	border-radius: var(--radius-lg);
	box-shadow: 0 4px 16px rgba(31,29,26,0.04);
}
.hiw-step:nth-child(1) { border-top-color: var(--c-red); }
.hiw-step:nth-child(2) { border-top-color: var(--c-green); }
.hiw-step:nth-child(3) { border-top-color: var(--c-yellow); }
/* Forme géométrique */
.hiw-step__shape {
	display: inline-flex;
	width: 56px; height: 56px;
	margin-bottom: 16px;
}
.hiw-step__shape svg { width: 52px; height: 52px; }
/* Titre : sans-serif, majuscules, espacé, bleu — comme « Nos engagements » */
.hiw-step h3 {
	font-family: var(--f-sans);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--c-blue);
	margin: 0 0 12px;
	line-height: 1.4;
}
.hiw-step p {
	font-size: 0.92rem;
	color: var(--c-ink-soft);
	line-height: 1.6;
	margin: 0;
}

@media (max-width: 900px) {
	.canop-hiw .hiw-grid { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 480px) {
	.hiw-step { padding: 24px 22px; }
	.hiw-step__shape, .hiw-step__shape svg { width: 40px; height: 40px; }
}

/* ═════════════════════════════════════════════════════════════
   CONVERSION — FAQ teaser
   ═════════════════════════════════════════════════════════════ */
.faq-accordion--centered {
	max-width: 760px;
	margin: 0 auto;
}
.faq-teaser-cta {
	display: flex;
	justify-content: center;
	margin-top: 32px;
}

/* ═════════════════════════════════════════════════════════════
   BLOC CONTACT — intro à gauche + formulaire CF7 à droite
   ═════════════════════════════════════════════════════════════ */
.canop-contact-block .contact-block-grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: clamp(32px, 5vw, 72px);
	align-items: start;
}
.contact-block-intro h2 {
	font-family: var(--f-serif);
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	color: var(--c-blue);
	line-height: 1.15;
	margin-bottom: 16px;
}
.contact-block-intro p {
	color: var(--c-ink-soft);
	font-size: 1rem;
	margin-bottom: 24px;
	max-width: 380px;
}
.contact-block-intro .btn { margin-top: 4px; }

/* ─── Formulaire Contact Form 7 — style Canop ─── */
.contact-block-form .wpcf7,
.page-content .wpcf7 { max-width: 100%; }
/* Bloc formulaire entièrement rouge (sauf les champs de saisie) */
.contact-block-form .wpcf7 {
	border-radius: var(--radius-lg);
	padding: clamp(22px, 3vw, 34px);
	background: var(--c-red);
}
.contact-block-form .wpcf7 .cf7-label { color: #fff; }
.contact-block-form .wpcf7 .cf7-req   { color: #ffd66b; }
.contact-block-form .wpcf7 .cf7-opt   { color: rgba(255,255,255,0.78); }
.wpcf7 .screen-reader-response { position: absolute; clip: rect(1px,1px,1px,1px); height: 1px; width: 1px; overflow: hidden; }
.wpcf7-form { display: grid; gap: 14px; }
.wpcf7-form .cf7-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}
.wpcf7-form p,
.wpcf7-form .cf7-field,
.wpcf7-form .cf7-actions { margin: 0; padding: 0; }
.wpcf7-form .wpcf7-form-control-wrap { display: block; width: 100%; }

/* Labels au-dessus des champs */
.wpcf7-form .cf7-label {
	display: block;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--c-ink);
	margin-bottom: 6px;
	letter-spacing: 0.01em;
}
.wpcf7-form .cf7-req { color: var(--c-accent); font-weight: 700; }
.wpcf7-form .cf7-opt { color: var(--c-mute); font-weight: 400; font-size: 0.92em; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
	width: 100%;
	display: block;
	font-family: var(--f-sans);
	font-size: 0.97rem;
	color: var(--c-ink);
	background: #fff;
	border: 1.5px solid var(--c-line);
	border-radius: var(--radius);
	padding: 15px 18px;
	transition: border-color .2s ease, box-shadow .2s ease;
	-webkit-appearance: none;
	appearance: none;
}
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder { color: var(--c-mute); opacity: 1; }
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
	outline: 0;
	border-color: var(--c-blue);
	box-shadow: 0 0 0 4px var(--c-blue-soft);
}
.wpcf7-form textarea {
	min-height: 150px;
	resize: vertical;
	line-height: 1.55;
}
.wpcf7-form .wpcf7-submit {
	justify-self: start;
	min-height: 58px;
	min-width: 280px;
	padding: 0 56px 0 32px;
	background: var(--c-blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E") no-repeat right 26px center;
	color: #fff;
	border: 1.5px solid var(--c-blue);
	border-radius: 999px;
	font-family: var(--f-sans);
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: background-color .25s ease, transform .15s ease, box-shadow .25s ease;
}
.wpcf7-form .wpcf7-submit:hover {
	background-color: var(--c-blue-d);
	transform: translateY(-1px);
	box-shadow: 0 8px 24px rgba(17,45,99,0.25);
}
.wpcf7-form .wpcf7-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Spinner CF7 */
.wpcf7-form .wpcf7-spinner {
	margin: 0 0 0 12px;
	background-color: var(--c-blue);
}

/* États / messages CF7 */
.wpcf7-form .wpcf7-not-valid {
	border-color: var(--c-accent) !important;
	box-shadow: 0 0 0 4px rgba(236,82,82,0.12) !important;
}
.wpcf7-not-valid-tip {
	color: var(--c-accent);
	font-size: 0.82rem;
	margin-top: 6px;
	display: block;
}
.wpcf7-response-output {
	border: 1.5px solid var(--c-line) !important;
	border-radius: var(--radius) !important;
	padding: 14px 18px !important;
	margin: 8px 0 0 !important;
	font-size: 0.92rem;
	background: #fff;
}
.wpcf7-form.sent .wpcf7-response-output    { border-left: 4px solid var(--c-success) !important; }
.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.failed .wpcf7-response-output  { border-left: 4px solid var(--c-accent) !important; }
.wpcf7-form.spam .wpcf7-response-output    { border-left: 4px solid var(--c-accent) !important; }

@media (max-width: 900px) {
	.canop-contact-block .contact-block-grid { grid-template-columns: 1fr; gap: 28px; }
	.contact-block-intro p { max-width: 100%; }
}
@media (max-width: 540px) {
	.wpcf7-form .cf7-row { grid-template-columns: 1fr; }
	.wpcf7-form .wpcf7-submit { justify-self: stretch; width: 100%; }
}

/* ─── Page Contact — 2 colonnes : infos / formulaire ─── */
.contact-page-grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: clamp(32px, 5vw, 72px);
	align-items: center;
	padding-block: clamp(48px, 6vw, 80px);
}
.contact-page-content p {
	color: var(--c-ink-soft);
	margin-bottom: 14px;
	line-height: 1.7;
}
.contact-page-content a { color: var(--c-blue); text-decoration: underline; text-underline-offset: 3px; }
.contact-page-info .contact-block { margin-block: 28px 0; }

.contact-form-card {
	background: #fff;
	border: 1px solid var(--c-line);
	border-radius: var(--radius-lg);
	padding: clamp(28px, 4vw, 44px);
	box-shadow: 0 16px 48px rgba(31,29,26,0.07);
}
.contact-form-card h2 {
	font-family: var(--f-serif);
	font-size: clamp(1.5rem, 2.6vw, 2rem);
	margin-bottom: 8px;
}
.contact-form-card__intro {
	color: var(--c-ink-soft);
	margin-bottom: 24px;
	font-size: 0.97rem;
}

@media (max-width: 900px) {
	.contact-page-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ═════════════════════════════════════════════════════════════
   STORY — « Du jeu et beaucoup d'amour » — version éditoriale premium
   ═════════════════════════════════════════════════════════════ */
.canop-story {
	background: var(--c-yellow-soft);
	position: relative;
	overflow: hidden;
}
/* Filigrane décoratif en fond */
.canop-story::before {
	content: '';
	position: absolute;
	top: -120px; right: -120px;
	width: 380px; height: 380px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(236,82,82,0.16), transparent 70%);
	pointer-events: none;
}
.story-section {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: clamp(40px, 6vw, 96px);
	align-items: center;
	position: relative;
	z-index: 1;
}

/* ─── Média : cadre avec décalage + badge cœur ─── */
.story-media {
	position: relative;
	aspect-ratio: auto;
	box-shadow: none;
	overflow: visible;
	border-radius: 0;
}
.story-media__frame {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	aspect-ratio: 1 / 1;
	box-shadow: 0 24px 60px rgba(31,29,26,0.16);
	z-index: 2;
}
.story-media__frame img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .8s cubic-bezier(.21,.61,.35,1);
}

/* ─── Contenu ─── */
.story-content h2 {
	margin: 8px 0 24px;
	font-size: clamp(1.9rem, 3.6vw, 2.8rem);
}
.story-text { margin-bottom: 24px; }
.story-text p {
	font-size: 1.02rem;
	color: var(--c-ink-soft);
	margin-bottom: 14px;
	line-height: 1.7;
}
.story-text p:last-child { margin-bottom: 0; }
.story-lead {
	font-family: var(--f-serif);
	font-size: 1.25rem !important;
	font-weight: 500;
	color: var(--c-ink) !important;
	line-height: 1.5 !important;
}
.story-signature {
	font-family: var(--f-serif);
	font-style: italic;
	font-size: 1.05rem;
	color: var(--c-wood-d);
	margin-bottom: 28px;
	padding-left: 18px;
	border-left: 3px solid var(--c-wood);
}
.story-content .btn { margin-top: 0; }

@media (max-width: 900px) {
	.story-section { grid-template-columns: 1fr; gap: 56px; }
	.story-media { max-width: 440px; margin-inline: auto; }
	.story-media::after { inset: 16px -16px -16px 16px; }
	.story-content { text-align: center; }
	.story-signature {
		border-left: 0;
		border-top: 3px solid var(--c-wood);
		padding-left: 0;
		padding-top: 14px;
		display: inline-block;
	}
	.story-content .btn { width: 100%; max-width: 340px; }
}

/* ───── Footer ───── */
.site-footer {
	background: var(--c-ink);
	color: #d8d4cb;
	padding-block: 64px 24px;
	margin-top: 80px;
	position: relative;
}
/* Liseré tricolore en haut du footer */
.site-footer::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 6px;
	background: linear-gradient(90deg,
		var(--c-red)    0 33.34%,
		var(--c-yellow) 33.34% 66.67%,
		var(--c-green)  66.67% 100%);
}
.is-home .site-footer { margin-top: 0; }
.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	gap: 48px;
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 44px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p { color: #b5b0a6; font-size: 0.92rem; max-width: 320px; }
.footer-brand .social { margin-top: 20px; display: flex; gap: 12px; }
.footer-brand .social a { color: #b5b0a6; display: inline-flex; padding: 8px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); transition: all .2s; }
.footer-brand .social a:hover { color: #fff; border-color: #fff; }
.footer-col h4 { color: #fff; font-family: var(--f-sans); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: #d8d4cb; font-size: 0.94rem; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 28px;
	gap: 24px;
	flex-wrap: wrap;
}
.footer-bottom p { color: #8a8479; font-size: 0.82rem; margin: 0; }
.footer-pay { display: flex; gap: 10px; align-items: center; }
.footer-pay__card {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 34px;
	min-width: 52px;
	padding: 0 11px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.22);
	transition: transform .2s ease, box-shadow .2s ease;
}
.footer-pay__card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}
.footer-pay__card svg { height: 20px; width: auto; display: block; }
.footer-pay__label {
	font-size: 0.66rem;
	font-weight: 700;
	color: #1a1a1a;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

@media (max-width: 800px) {
	.footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 500px) {
	.footer-grid { grid-template-columns: 1fr; }
	.footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ───── Pages CMS ───── */
.page-hero {
	background: var(--c-bg-soft);
	padding-block: clamp(60px, 8vw, 100px);
	text-align: center;
	border-bottom: 1px solid var(--c-line);
	position: relative;
}
.page-hero--with-image {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #fff;
	border-bottom: 0;
	padding-block: clamp(100px, 12vw, 180px);
}
.page-hero--with-image .container { position: relative; z-index: 2; }
.page-hero--with-image h1 { color: #fff; }
.page-hero--with-image .eyebrow { color: rgba(255,255,255,.85); }
.page-hero--with-image .page-intro { color: rgba(255,255,255,.9); }
.page-hero__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.55));
	z-index: 1;
}
.page-hero h1 { margin-bottom: 8px; }
.page-intro {
	font-size: 1.15rem;
	max-width: 640px;
	margin: 16px auto 0;
	color: var(--c-ink-soft);
	line-height: 1.55;
}

/* ───── FAQ accordéon ACF ───── */
.faq-accordion { display: grid; gap: 12px; margin-block: 32px; }
.faq-item {
	background: #fff;
	border: 1px solid var(--c-line);
	border-left: 4px solid var(--c-yellow);
	border-radius: var(--radius);
	overflow: hidden;
	transition: box-shadow .2s ease;
}
.faq-item:nth-child(3n+1) { border-left-color: var(--c-red); }
.faq-item:nth-child(3n+2) { border-left-color: var(--c-green); }
.faq-item:nth-child(3n)   { border-left-color: var(--c-yellow); }
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary {
	list-style: none;
	cursor: pointer;
	padding: 18px 22px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	font-weight: 600;
	font-size: 1.02rem;
	color: var(--c-ink);
	user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .faq-toggle {
	font-size: 1.4rem;
	font-weight: 300;
	color: var(--c-wood-d);
	transition: transform .2s ease;
	flex-shrink: 0;
}
.faq-item[open] .faq-toggle { transform: rotate(45deg); }
.faq-item .faq-a {
	padding: 0 22px 22px;
	color: var(--c-ink-soft);
	line-height: 1.65;
}
.faq-item .faq-a p:last-child { margin-bottom: 0; }
@media (max-width: 768px) {
	.faq-item summary { padding: 14px 16px; font-size: 0.98rem; }
	.faq-item .faq-a  { padding: 0 16px 16px; font-size: 0.95rem; }
}

.contact-block {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
	margin-block: 40px;
	padding: 28px;
	background: var(--c-bg-soft);
	border-radius: var(--radius);
}
.contact-block__item h3 {
	font-family: var(--f-sans);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--c-mute);
	margin-bottom: 8px;
}
.contact-block__item a { color: var(--c-blue); text-decoration: underline; text-underline-offset: 3px; }
.contact-form-intro { font-size: 1.05rem; margin-top: 24px; }
.page-content {
	max-width: 1100px;
	margin: 0 auto;
	padding-block: clamp(48px, 6vw, 80px);
	font-size: 1.05rem;
	line-height: 1.75;
}
.page-content h2 {
	margin-top: 52px;
	margin-bottom: 18px;
	font-size: clamp(1.5rem, 2.6vw, 2rem);
}
.page-content h2:first-child { margin-top: 0; }
.page-content h3 { margin-top: 32px; margin-bottom: 12px; }
.page-content p { margin-bottom: 18px; }
.page-content > p:first-of-type {
	font-size: 1.18rem;
	line-height: 1.65;
	color: var(--c-ink);
}
.page-content ul, .page-content ol { padding-left: 26px; margin-bottom: 22px; }
.page-content ul li { list-style: disc; margin-bottom: 10px; color: var(--c-ink-soft); }
.page-content ol li { list-style: decimal; margin-bottom: 10px; color: var(--c-ink-soft); }
.page-content a { color: var(--c-blue); text-decoration: underline; text-underline-offset: 3px; }

/* Figure / image dans le contenu */
.page-content .page-figure {
	margin: 32px 0;
}
.page-content .page-figure img {
	width: 100%;
	height: auto;
	border-radius: var(--radius-lg);
	box-shadow: 0 16px 40px rgba(31,29,26,0.10);
}
.page-content .page-lead {
	font-family: var(--f-serif);
	font-size: 1.2rem;
	line-height: 1.55;
	color: var(--c-ink);
}

/* Figure simple insérée dans un article */
.page-content .article-figure { margin: 28px 0; }
.page-content .article-figure img {
	width: 100%;
	height: auto;
	border-radius: var(--radius-lg);
	box-shadow: 0 16px 40px rgba(31,29,26,0.10);
}
/* Galerie d'inspiration (2 colonnes) */
.page-content .article-gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin: 28px 0;
}
.page-content .article-gallery figure { margin: 0; }
.page-content .article-gallery img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: var(--radius);
	box-shadow: 0 10px 28px rgba(31,29,26,0.10);
}
@media (max-width: 560px) {
	.page-content .article-gallery { grid-template-columns: 1fr; }
}

/* Tableau (pouvoir des cartes…) */
.page-content .page-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	margin: 24px 0 32px;
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	overflow: hidden;
	font-size: 0.97rem;
}
.page-content .page-table thead th {
	background: var(--c-blue);
	color: #fff;
	text-align: left;
	font-family: var(--f-sans);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 13px 18px;
}
.page-content .page-table td {
	padding: 13px 18px;
	border-top: 1px solid var(--c-line);
	color: var(--c-ink-soft);
	vertical-align: top;
	line-height: 1.55;
}
.page-content .page-table tbody tr:nth-child(even) td { background: var(--c-bg-soft); }
.page-content .page-table td:first-child {
	width: 88px;
	font-family: var(--f-serif);
	color: var(--c-ink);
	white-space: nowrap;
}
@media (max-width: 600px) {
	.page-content .page-table { font-size: 0.9rem; }
	.page-content .page-table th, .page-content .page-table td { padding: 10px 12px; }
	.page-content .page-table td:first-child { width: 60px; }
}

/* La page Contact garde sa grille 2 colonnes pleine largeur */
.contact-page-grid .contact-page-content { max-width: 100%; font-size: 1rem; }

/* ─── Template « Page SEO » ─── */
.seo-page .seo-content { padding-top: clamp(40px, 5vw, 64px); padding-bottom: clamp(48px, 6vw, 80px); }
.seo-page .seo-contact { background: var(--c-bg-soft); border-top: 1px solid var(--c-line); margin-top: 0; }

@media (max-width: 768px) {
	.page-content { font-size: 1rem; }
	.page-content > p:first-of-type { font-size: 1.08rem; }
	.page-content h2 { margin-top: 38px; }
}

/* ═════════════════════════════════════════════════════════════
   PAGE RÈGLES DU TOCK — bloc PDF + accordéon + liens
   ═════════════════════════════════════════════════════════════ */
.regles-pdf {
	background: var(--c-blue);
	color: #fff;
	border-radius: var(--radius-lg);
	padding: clamp(28px, 4vw, 44px);
	text-align: center;
	margin: 32px 0 40px;
}
.regles-pdf h2 {
	color: #fff;
	font-size: clamp(1.3rem, 2.4vw, 1.7rem);
	margin: 0 0 10px;
}
.regles-pdf p {
	color: rgba(255,255,255,0.82);
	max-width: 540px;
	margin: 0 auto 24px;
	font-size: 0.97rem;
}
.regles-pdf__cta {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}
.regles-pdf__cta .btn--outline {
	color: #fff;
	border-color: rgba(255,255,255,0.5);
}
.regles-pdf__cta .btn--outline:hover {
	background: #fff;
	color: var(--c-blue);
	border-color: #fff;
}
.regles-pdf__cta .btn--outline .btn__arrow { background: #fff; color: var(--c-blue); }
.regles-pdf__cta .btn--outline:hover .btn__arrow { background: var(--c-blue); color: #fff; }
/* Bouton primaire sur fond bleu → rendu blanc bien visible */
.regles-pdf__cta .btn--primary {
	background: #fff;
	color: var(--c-blue);
	border-color: #fff;
}
.regles-pdf__cta .btn--primary:hover {
	background: var(--c-yellow);
	color: var(--c-blue);
	border-color: var(--c-yellow);
}
.regles-pdf__cta .btn--primary .btn__arrow { background: var(--c-blue); color: #fff; }

/* Accordéon des règles */
.regles-accordion { display: grid; gap: 12px; margin: 8px 0 36px; }
.regles-acc-item {
	background: #fff;
	border: 1.5px solid var(--c-line);
	border-left: 4px solid var(--c-yellow);
	border-radius: var(--radius);
	overflow: hidden;
	transition: border-color .25s ease, box-shadow .25s ease;
}
.regles-acc-item:nth-child(3n+1) { border-left-color: var(--c-red); }
.regles-acc-item:nth-child(3n+2) { border-left-color: var(--c-green); }
.regles-acc-item:nth-child(3n)   { border-left-color: var(--c-yellow); }
.regles-acc-item[open] {
	border-color: var(--c-blue-tint);
	box-shadow: 0 8px 26px rgba(31,29,26,0.07);
}
.regles-acc-item summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 22px;
	user-select: none;
}
.regles-acc-item summary::-webkit-details-marker { display: none; }
.regles-acc-item__icon {
	flex-shrink: 0;
	width: 40px; height: 40px;
	border-radius: 50%;
	background: var(--c-blue-soft);
	color: var(--c-blue);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background .25s ease, color .25s ease;
}
.regles-acc-item[open] .regles-acc-item__icon { background: var(--c-blue); color: #fff; }
.regles-acc-item__title {
	flex: 1;
	font-family: var(--f-sans);
	font-weight: 700;
	font-size: 0.86rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--c-ink);
}
.regles-acc-item__chevron {
	flex-shrink: 0;
	color: var(--c-mute);
	transition: transform .25s ease;
}
.regles-acc-item[open] .regles-acc-item__chevron { transform: rotate(180deg); }
.regles-acc-item__body {
	padding: 0 22px 22px 76px;
	color: var(--c-ink-soft);
	line-height: 1.7;
}
.regles-acc-item__body > *:first-child { margin-top: 0; }
.regles-acc-item__body p { margin-bottom: 12px; }
.regles-acc-item__body ul { padding-left: 22px; margin-bottom: 0; }
.regles-acc-item__body ul li { list-style: disc; margin-bottom: 8px; }
.regles-acc-item__body .page-table { margin: 4px 0 0; }

/* Liens vers les autres pages règles */
.regles-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 8px;
}
/* CTA des liens règles : alternance rouge / vert */
.regles-links .btn:nth-child(odd) {
	background: var(--c-red);
	border-color: var(--c-red);
	color: #fff;
}
.regles-links .btn:nth-child(odd):hover { background: var(--c-red-d); border-color: var(--c-red-d); }
.regles-links .btn:nth-child(odd) .btn__arrow { background: #fff; color: var(--c-red); }
.regles-links .btn:nth-child(even) {
	background: var(--c-green-d);
	border-color: var(--c-green-d);
	color: #fff;
}
.regles-links .btn:nth-child(even):hover { background: #15b377; border-color: #15b377; }
.regles-links .btn:nth-child(even) .btn__arrow { background: #fff; color: var(--c-green-d); }

@media (max-width: 600px) {
	.regles-acc-item summary { padding: 14px 16px; gap: 12px; }
	.regles-acc-item__icon { width: 34px; height: 34px; }
	.regles-acc-item__body { padding: 0 16px 18px 16px; }
	.regles-pdf__cta .btn { width: 100%; justify-content: space-between; }
	.regles-links .btn { width: 100%; justify-content: space-between; }
}

/* ───── 404 / Search ───── */
.error-404, .no-results { text-align: center; padding-block: 120px; }
.error-404 h1 { font-size: 5rem; color: var(--c-wood); }
.search-form { display: flex; gap: 8px; max-width: 480px; margin: 24px auto; }
.search-form input { flex: 1; padding: 14px 18px; border: 1px solid var(--c-line); border-radius: 999px; background: var(--c-white); }

/* ═════════════════════════════════════════════════════════════
   ANIMATIONS PREMIUM — reveal au scroll, stagger des enfants,
   micro-interactions, transitions douces partout.
   ═════════════════════════════════════════════════════════════ */

/* Reveal racine — fade-in + slide-up */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .85s cubic-bezier(.21,.61,.35,1), transform .85s cubic-bezier(.21,.61,.35,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Stagger : les enfants directs sont décalés de 80ms */
.reveal .reveal-child {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .7s cubic-bezier(.21,.61,.35,1), transform .7s cubic-bezier(.21,.61,.35,1);
	transition-delay: 0s;
}
.reveal.is-visible .reveal-child { opacity: 1; transform: translateY(0); }
.reveal.is-visible .reveal-child:nth-child(1) { transition-delay: 0.05s; }
.reveal.is-visible .reveal-child:nth-child(2) { transition-delay: 0.15s; }
.reveal.is-visible .reveal-child:nth-child(3) { transition-delay: 0.25s; }
.reveal.is-visible .reveal-child:nth-child(4) { transition-delay: 0.35s; }
.reveal.is-visible .reveal-child:nth-child(5) { transition-delay: 0.45s; }
.reveal.is-visible .reveal-child:nth-child(6) { transition-delay: 0.55s; }

/* Variantes de reveal */
.reveal--fade { transform: none; }
.reveal--left  { transform: translateX(-30px); }
.reveal--right { transform: translateX(30px); }
.reveal--left.is-visible, .reveal--right.is-visible { transform: translateX(0); }

/* Hero : animation d'entrée immédiate à la page (sans IntersectionObserver) */
.hero .hero-text > * {
	opacity: 0;
	transform: translateY(16px);
	animation: canop-fade-up .9s cubic-bezier(.21,.61,.35,1) forwards;
}
.hero .hero-text > *:nth-child(1) { animation-delay: 0.1s; }
.hero .hero-text > *:nth-child(2) { animation-delay: 0.2s; }
.hero .hero-text > *:nth-child(3) { animation-delay: 0.3s; }
.hero .hero-text > *:nth-child(4) { animation-delay: 0.4s; }
.hero .hero-media {
	opacity: 0;
	transform: scale(0.96) translateY(20px);
	animation: canop-zoom-in 1s cubic-bezier(.21,.61,.35,1) 0.2s forwards;
}
@keyframes canop-fade-up {
	to { opacity: 1; transform: translateY(0); }
}
@keyframes canop-zoom-in {
	to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Section headers révélés */
.section-head, .product-showcase, .story-section,
.testimonial, .gallery-grid figure, .usp-item {
	transition: transform .35s cubic-bezier(.21,.61,.35,1), box-shadow .35s ease;
}


/* Header — apparition au load + scroll state */
.site-header { transition: background .3s ease, box-shadow .3s ease, border-color .3s ease; }
.site-header.is-scrolled {
	box-shadow: 0 2px 16px rgba(31,29,26,0.06);
	border-bottom-color: transparent;
}

/* Links — souligné qui se déploie */
.page-content a:not(.btn) {
	background-image: linear-gradient(to right, var(--c-blue), var(--c-blue));
	background-position: 0 100%;
	background-repeat: no-repeat;
	background-size: 100% 1px;
	transition: background-size .3s ease, color .2s ease;
}
.page-content a:not(.btn):hover {
	background-size: 100% 2px;
	color: var(--c-blue);
}

/* Cards en général (produits, etc.) */
ul.products li.product { transition: transform .35s cubic-bezier(.21,.61,.35,1), box-shadow .35s ease, border-color .25s ease; }
ul.products li.product:hover {
	transform: translateY(-4px);
	border-color: var(--c-blue-tint);
}

@media (prefers-reduced-motion: reduce) {
	.reveal, .reveal-child, .hero .hero-text > *, .hero .hero-media,
	.usp-item, .testimonial, .gallery-grid figure, .gallery-grid img,
	.product-showcase .ps-media, .story-section .story-media,
	ul.products li.product, .site-header, .page-content a {
		opacity: 1 !important;
		transform: none !important;
		animation: none !important;
		transition: none !important;
	}
}

/* ───── Utility ───── */
.sr-only {
	position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
	clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
	position: absolute; top: -100px; left: 0;
	background: var(--c-ink); color: #fff; padding: 12px 20px;
}
.skip-link:focus { top: 0; }

/* ═════════════════════════════════════════════════════════════
   SEARCH MODAL PREMIUM
   ═════════════════════════════════════════════════════════════ */
.canop-search[hidden] { display: none; }
.canop-search {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: grid;
	grid-template-rows: auto 1fr;
	animation: canop-search-in .35s cubic-bezier(.21,.61,.35,1);
}
.canop-search__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(17,45,99,0.55);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	cursor: pointer;
}
.canop-search__panel {
	position: relative;
	background: var(--c-bg);
	margin: 0;
	padding: 80px var(--gutter) 60px;
	box-shadow: 0 24px 64px rgba(31,29,26,0.18);
	border-bottom-left-radius: var(--radius-lg);
	border-bottom-right-radius: var(--radius-lg);
	max-width: 100%;
	z-index: 2;
	animation: canop-search-panel-in .4s cubic-bezier(.21,.61,.35,1);
}
.canop-search__close {
	position: absolute;
	top: 22px; right: 22px;
	width: 44px; height: 44px;
	border-radius: 50%;
	background: var(--c-bg-soft);
	color: var(--c-ink);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background .2s ease, transform .2s ease;
}
.canop-search__close:hover { background: var(--c-blue); color: #fff; transform: rotate(90deg); }
.canop-search__inner {
	max-width: 720px;
	margin: 0 auto;
}
.canop-search__eyebrow {
	display: inline-block;
	font-family: var(--f-sans);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--c-blue);
	margin-bottom: 18px;
}
.canop-search__form {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #fff;
	border: 1.5px solid var(--c-line);
	border-radius: var(--radius);
	padding: 8px 8px 8px 22px;
	box-shadow: 0 8px 28px rgba(31,29,26,0.06);
	transition: border-color .2s ease, box-shadow .25s ease;
}
.canop-search__form:focus-within {
	border-color: var(--c-blue);
	box-shadow: 0 8px 32px rgba(17,45,99,0.18);
}
.canop-search__icon { color: var(--c-mute); flex-shrink: 0; }
.canop-search__form:focus-within .canop-search__icon { color: var(--c-blue); }
.canop-search__form input[type="search"] {
	flex: 1;
	border: 0;
	background: transparent;
	font-size: 1.25rem;
	font-family: var(--f-serif);
	color: var(--c-ink);
	padding: 16px 0;
	outline: 0;
}
.canop-search__form input::placeholder { color: var(--c-mute); }
.canop-search__submit {
	background: var(--c-blue);
	color: #fff;
	border: 0;
	border-radius: 999px;
	padding: 14px 18px 14px 24px;
	font-weight: 600;
	font-size: 0.93rem;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	transition: background .2s ease, transform .15s ease;
	white-space: nowrap;
	cursor: pointer;
}
.canop-search__submit:hover { background: var(--c-blue-d); transform: translateY(-1px); }
.canop-search__submit .btn__arrow {
	display: inline-flex; align-items: center; justify-content: center;
	width: 24px; height: 24px;
	border-radius: 50%;
	background: #fff;
	color: var(--c-blue);
}
.canop-search__suggestions { margin-top: 28px; }
.canop-search__sublabel {
	display: block;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--c-mute);
	margin-bottom: 14px;
}
.canop-search__suggestions ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0; margin: 0;
	list-style: none;
}
.canop-search__suggestions a {
	display: inline-block;
	padding: 10px 18px;
	border-radius: 999px;
	background: var(--c-bg-soft);
	color: var(--c-ink);
	font-size: 0.92rem;
	transition: background .2s ease, color .2s ease, transform .15s ease;
}
.canop-search__suggestions a:hover {
	background: var(--c-blue);
	color: #fff;
	transform: translateY(-1px);
}

@keyframes canop-search-in {
	from { opacity: 0; }
	to   { opacity: 1; }
}
@keyframes canop-search-panel-in {
	from { opacity: 0; transform: translateY(-16px); }
	to   { opacity: 1; transform: translateY(0); }
}

body.is-search-open { overflow: hidden; }

@media (max-width: 768px) {
	.canop-search__panel { padding: 72px var(--gutter) 36px; border-radius: 0; }
	.canop-search__close { top: 14px; right: 14px; }
	.canop-search__form { flex-wrap: wrap; padding: 12px; gap: 8px; }
	.canop-search__form input[type="search"] { font-size: 1.1rem; padding: 10px 4px; min-width: 0; }
	.canop-search__submit { width: 100%; justify-content: center; }
}

/* ═════════════════════════════════════════════════════════════
   COHÉRENCE GLOBALE — border-radius, ombres, images, focus
   ═════════════════════════════════════════════════════════════ */

/* Toutes les images dans le content auront un radius cohérent */
.page-content img:not(.wp-smiley):not([class*="icon"]) {
	border-radius: var(--radius);
}

/* Focus styles globaux (accessibilité) */
:focus-visible {
	outline: 3px solid var(--c-blue-tint);
	outline-offset: 2px;
	border-radius: 4px;
}

/* Toutes les transitions pour les liens */
a:not(.btn):not(.canop-icon) {
	transition: color .2s ease;
}

/* Selection */
::selection { background: var(--c-blue); color: #fff; }
::-moz-selection { background: var(--c-blue); color: #fff; }

/* Liens dans le contenu — utiliser le bleu Canop */
.page-content a:not(.btn) {
	color: var(--c-blue);
}
.contact-block__item a { color: var(--c-blue) !important; }

/* Eyebrow — couleur bleue par défaut sur fond clair, conserver wood pour le hero */
.eyebrow { color: var(--c-blue); }
.hero-text .eyebrow { color: var(--c-wood-d); }
.story-content .eyebrow { color: var(--c-wood-d); }

/* =========================================================
   RESPONSIVE — passe d'optimisation tablette/mobile (UX++)
   Breakpoints standardisés :
     • > 1024px : desktop (rules par défaut ci-dessus)
     • 1024px   : tablette landscape & laptop
     • 768px    : tablette portrait & mobile
     • 480px    : petit mobile
   ========================================================= */

/* Confort de touche & lecture sur mobile : 16px min sur inputs (anti zoom iOS) */
@media (max-width: 1024px) {
	body { font-size: 16px; }
	input, textarea, select { font-size: 16px; }
	html { -webkit-tap-highlight-color: rgba(236, 82, 82, 0.15); }
	* { -webkit-touch-callout: default; }
}

/* ───────────────── Tablette ≤ 1024px ───────────────── */
@media (max-width: 1024px) {
	:root { --max-w: 100%; }

	.section { padding-block: clamp(48px, 7vw, 88px); }

	.hero-inner {
		grid-template-columns: 1.05fr 1fr;
		gap: 40px;
		padding-block: 64px;
	}
	.hero-text h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
	.hero-text p  { font-size: 1.05rem; }

	.usp-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; padding-block: 24px; }
	.usp-item h4 { font-size: 0.9rem; }
	.usp-item p  { font-size: 0.78rem; }
	.usp-item .canop-icon { width: 32px; height: 32px; }

	.product-showcase { grid-template-columns: 1.05fr 1fr; gap: 40px; }
	.product-showcase .ps-price ins { font-size: 1.7rem; }

	.testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
	.testimonial { padding: 24px; }

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

	.footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; }
}

/* ───────────────── Mobile / Tablette portrait ≤ 768px ───────────────── */
@media (max-width: 768px) {
	:root { --gutter: 18px; }

	body { line-height: 1.6; }
	.section { padding-block: 56px; }
	.section-head { margin-bottom: 36px; }
	.section-head p { font-size: 0.97rem; }

	h1 { font-size: clamp(1.9rem, 7.5vw, 2.4rem); line-height: 1.12; }
	h2 { font-size: clamp(1.55rem, 5.5vw, 2rem); line-height: 1.2; }
	h3 { font-size: 1.2rem; }
	.eyebrow { font-size: 0.72rem; margin-bottom: 10px; }

	.btn    { min-height: 50px; font-size: 0.95rem; }
	.btn--lg { min-height: 56px; }
	.btn--sm { min-height: 40px; }

	/* ─── Header mobile ─── */
	.header-promo {
		padding: 7px 16px;
		font-size: 0.75rem;
		line-height: 1.35;
	}
	.header-inner {
		min-height: var(--header-h-mobile);
		gap: 2px;
	}
	.header-actions  { gap: 0; }
	.header-logo img { height: 36px; }
	.menu-toggle,
	.header-actions .icon-btn,
	.cart-link {
		min-width: 44px; min-height: 44px;
		display: inline-flex; align-items: center; justify-content: center;
		padding: 10px;
	}
	.cart-count { top: 2px; right: 2px; }

	/* Menu mobile : géré dans le bloc @media (max-width: 900px) ci-dessus. */

	/* ─── Hero ─── */
	.hero-inner {
		grid-template-columns: 1fr;
		gap: 28px;
		padding-block: 32px 48px;
	}
	.hero-text { text-align: center; }
	.hero-text h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
	.hero-text p  { font-size: 1rem; margin-inline: auto; }
	.hero-offer { display: none; }
	.hero-ctas { justify-content: center; gap: 10px; margin-bottom: 18px; }
	.hero-ctas .btn { flex: 1 1 auto; justify-content: center; max-width: 360px; }
	.hero-media {
		aspect-ratio: 1 / 1;
		max-width: 100%;
		border-radius: var(--radius);
		order: -1;
		margin-inline: 0;
	}
	.hero-rating {
		margin-top: 20px;
		font-size: 0.86rem;
		white-space: nowrap;
		justify-content: center;
		width: 100%;
	}

	/* ─── USP ─── */
	.usp-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 18px;
		padding-block: 22px;
	}
	.usp-item .canop-icon { width: 30px; height: 30px; }
	.usp-item h4 { font-size: 0.88rem; }
	.usp-item p  { font-size: 0.76rem; }

	/* ─── Product showcase home ─── */
	.product-showcase {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.product-showcase .ps-media { aspect-ratio: 1; max-width: 440px; margin-inline: auto; width: 100%; }
	.product-showcase > div:last-child { text-align: left; }
	.product-showcase .ps-price ins { font-size: 1.6rem; }
	.product-showcase .ps-price del { font-size: 1rem; }
	.product-showcase .btn { width: 100%; max-width: 360px; justify-content: center; }

	/* ─── Témoignages ─── */
	.testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
	.testimonial { padding: 22px; }
	.testimonial p { font-size: 0.95rem; }

	/* ─── Gallery ─── */
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
	.gallery-grid figure:nth-child(1) { aspect-ratio: 1; }

	/* ─── Story (mobile fin) ─── */
	.story-section { gap: 44px; }
	.story-media { max-width: 360px; }
	.story-lead { font-size: 1.15rem !important; }

	/* ─── Page hero (CMS) ─── */
	.page-hero { padding-block: 48px; }
	.page-hero--with-image { padding-block: 80px; }
	.page-intro { font-size: 1rem; }
	.page-content { padding-block: 40px 56px; }
	.page-content h2 { margin-top: 32px; }
	.page-content ul, .page-content ol { padding-left: 20px; }

	/* ─── Footer ─── */
	.site-footer { padding-block: 48px 20px; margin-top: 56px; }
	.is-home .site-footer { margin-top: 0; }
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 32px;
		padding-bottom: 32px;
	}
	.footer-brand { text-align: center; }
	.footer-brand img { margin-inline: auto; }
	.footer-brand p { max-width: 100%; margin-inline: auto; }
	.footer-brand .social { justify-content: center; }
	.footer-col h4 { margin-bottom: 12px; }
	.footer-bottom {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 18px;
		padding-top: 24px;
	}
	.footer-pay { flex-wrap: wrap; justify-content: center; }

	/* ─── Contact block ─── */
	.contact-block { padding: 22px; margin-block: 28px; }
}

/* ───────────────── Petit mobile ≤ 480px ───────────────── */
@media (max-width: 480px) {
	:root { --gutter: 14px; }

	.section { padding-block: 44px; }

	h1 { font-size: 1.85rem; }
	h2 { font-size: 1.5rem; }
	.eyebrow { font-size: 0.68rem; letter-spacing: 0.14em; }

	.header-promo {
		font-size: 0.7rem;
		padding: 6px 12px;
	}
	.header-logo img { height: 32px; }

	.hero-inner { padding-block: 24px 36px; }
	.hero-ctas { flex-direction: column; align-items: stretch; }
	.hero-ctas .btn { max-width: none; }
	.hero-rating { font-size: 0.8rem; }
	.hero-rating .stars svg { width: 15px; height: 15px; }

	.usp-grid { gap: 14px; padding-block: 20px; }
	.usp-item h4 { font-size: 0.84rem; }
	.usp-item p  { display: none; }

	.product-showcase .ps-features li { font-size: 0.93rem; }

	.gallery-grid { gap: 8px; }

	.footer-grid { gap: 28px; }
	.footer-col { text-align: center; }

	.testimonial { padding: 20px; }
	.testimonial p { font-size: 0.93rem; }

	/* Champ recherche pleine largeur */
	.search-form { flex-direction: column; gap: 8px; }
	.search-form .btn { width: 100%; justify-content: center; }
}

/* ───────────────── Préférences utilisateur ───────────────── */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* Pointer fin (souris) : conserver hover ; coarse (touch) : pas de hover transform */
@media (hover: none) and (pointer: coarse) {
	.btn:hover, .testimonial:hover, .gallery-grid figure:hover img,
	ul.products li.product:hover {
		transform: none !important;
		box-shadow: none !important;
	}
	.gallery-grid figure:hover img { transform: none; }
}

/* ───── Lightbox images de contenu ───── */
.canop-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(31,29,26,0.92);
	cursor: zoom-out;
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
}
.canop-lightbox.is-open { display: flex; }
.canop-lightbox img {
	max-width: 95%;
	max-height: 90vh;
	width: auto;
	border-radius: var(--radius);
	box-shadow: 0 24px 70px rgba(0,0,0,0.5);
	cursor: default;
}
.canop-lightbox__close {
	position: absolute;
	top: 18px; right: 22px;
	width: 46px; height: 46px;
	border: 0;
	border-radius: 50%;
	background: #fff;
	color: var(--c-ink);
	font-size: 1.7rem;
	line-height: 1;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform .15s ease;
}
.canop-lightbox__close:hover { transform: rotate(90deg); }
body.is-lightbox-open { overflow: hidden; }

/* ───── [canop_liens_regles] — CTA internes en fin d'article ───── */
.canop-internal-links { margin: 48px 0 8px; }
.canop-internal-links h2 {
	font-size: clamp(1.4rem, 2.6vw, 1.9rem);
	color: var(--c-blue);
	margin-bottom: 20px;
}
.canop-internal-links__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}
.canop-internal-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 16px 20px;
	background: #fff;
	border: 1px solid var(--c-line);
	border-left: 4px solid var(--c-red);
	border-radius: var(--radius);
	font-weight: 600;
	font-size: 0.97rem;
	color: var(--c-ink) !important;
	text-decoration: none !important;
	transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.canop-internal-link:nth-child(2n) { border-left-color: var(--c-green-d); }
.canop-internal-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 22px rgba(31,29,26,0.08);
}
.canop-internal-link__arrow {
	flex-shrink: 0;
	width: 34px; height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--c-blue);
	color: #fff;
	transition: transform .2s ease;
}
.canop-internal-link:hover .canop-internal-link__arrow { transform: translateX(3px); }
@media (max-width: 600px) {
	.canop-internal-links__grid { grid-template-columns: 1fr; }
}

/* ───── Page « Qui sommes-nous » — version colorée ───── */
.qsn-lead {
	font-family: var(--f-serif);
	font-size: 1.3rem;
	line-height: 1.55;
	color: var(--c-ink);
	margin-bottom: 28px;
}
.qsn-figure { margin: 36px 0; }
.qsn-figure img {
	width: 100%;
	height: auto;
	border-radius: var(--radius-lg);
	box-shadow: 0 18px 44px rgba(31,29,26,0.12);
}
.qsn-figure figcaption {
	margin-top: 10px;
	font-size: 0.86rem;
	color: var(--c-mute);
	text-align: center;
}
.qsn-section {
	padding: clamp(24px, 3.5vw, 38px);
	border-radius: var(--radius-lg);
	margin: 28px 0;
}
.qsn-section h2 { margin-top: 0; margin-bottom: 14px; color: var(--c-blue); }
.qsn-section p { margin-bottom: 14px; }
.qsn-section p:last-child { margin-bottom: 0; }
.qsn-section ul { margin: 0 0 14px; padding-left: 22px; }
.qsn-section ul li { list-style: disc; margin-bottom: 8px; color: var(--c-ink-soft); }
.qsn-section--yellow { background: var(--c-yellow-soft); }
.qsn-section--red    { background: var(--c-red-soft); }
.qsn-section--green  { background: var(--c-green-soft); }
.qsn-section--blue   { background: var(--c-blue); }
.qsn-section--blue h2 { color: #fff; }
.qsn-section--blue p  { color: rgba(255,255,255,0.92); }

/* Rangées image + texte côte à côte (alternance) */
.qsn-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(24px, 3.5vw, 52px);
	align-items: stretch;
	margin: 32px 0;
}
.qsn-row--reverse .qsn-row__media { order: 2; }
.qsn-row__media {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 18px 44px rgba(31,29,26,0.12);
	min-height: 280px;
}
.qsn-row__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.qsn-row .qsn-section {
	margin: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
@media (max-width: 760px) {
	.qsn-row { grid-template-columns: 1fr; gap: 16px; }
	.qsn-row--reverse .qsn-row__media { order: 0; }
	.qsn-row__media { min-height: 220px; }
}

/* ───── Page de résultats de recherche ───── */
.search-hero { background: var(--c-bg-soft); }
.search-hero__form {
	display: flex;
	gap: 8px;
	max-width: 540px;
	margin: 22px auto 0;
}
.search-hero__form input[type="search"] {
	flex: 1;
	min-width: 0;
	padding: 14px 18px;
	border: 1.5px solid var(--c-line);
	border-radius: 999px;
	background: #fff;
	font-size: 1rem;
}
.search-hero__form input:focus { outline: none; border-color: var(--c-blue); }
.search-hero__form button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 0 22px;
	min-height: 52px;
	background: var(--c-blue);
	color: #fff;
	border: 0;
	border-radius: 999px;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
	transition: background .2s ease;
}
.search-hero__form button:hover { background: var(--c-blue-d); }
.search-results { padding-block: clamp(40px, 6vw, 72px); }
.search-results__list { display: grid; gap: 18px; }
.search-card {
	display: flex;
	gap: 22px;
	align-items: center;
	background: #fff;
	border: 1px solid var(--c-line);
	border-left: 4px solid var(--c-blue);
	border-radius: var(--radius-lg);
	padding: 20px 24px;
	transition: transform .15s ease, box-shadow .2s ease;
}
.search-card:nth-child(4n+1) { border-left-color: var(--c-red); }
.search-card:nth-child(4n+2) { border-left-color: var(--c-yellow-d); }
.search-card:nth-child(4n+3) { border-left-color: var(--c-green-d); }
.search-card:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(31,29,26,0.08); }
.search-card__thumb {
	flex: 0 0 120px;
	width: 120px; height: 120px;
	border-radius: var(--radius);
	overflow: hidden;
}
.search-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.search-card__body { flex: 1; min-width: 0; }
.search-card__tag {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #fff;
	background: var(--c-blue);
	padding: 3px 10px;
	border-radius: 999px;
	margin-bottom: 8px;
}
.search-card__tag--product { background: var(--c-green-d); }
.search-card__tag--page    { background: var(--c-blue); }
.search-card__tag--post    { background: var(--c-red); }
.search-card__title { font-size: clamp(1.15rem, 2vw, 1.4rem); margin: 0 0 6px; }
.search-card__title a { color: var(--c-blue); }
.search-card__excerpt { color: var(--c-ink-soft); font-size: 0.95rem; margin: 0 0 10px; }
.search-card__link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-weight: 600;
	font-size: 0.92rem;
	color: var(--c-blue);
}
.search-card__link:hover { gap: 9px; }
.search-empty {
	text-align: center;
	background: #fff;
	border: 1px solid var(--c-line);
	border-radius: var(--radius-lg);
	padding: clamp(32px, 5vw, 56px);
}
.search-empty h2 { color: var(--c-blue); margin-bottom: 10px; }
.search-empty__links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }
@media (max-width: 600px) {
	.search-card { flex-direction: column; align-items: flex-start; gap: 14px; }
	.search-card__thumb { width: 100%; flex-basis: auto; height: 180px; }
	.search-hero__form { flex-direction: column; }
	.search-hero__form button { justify-content: center; }
}
