:root {
	/* Dark base */
	--e-bg:        #1a1a1a;
	--e-bg-soft:   #242424;
	--e-bg-deep:   #0f0f0f;
	--e-bg-card:   #1f1f1f;
	--e-text:      #e5e5e5;
	--e-text-mute: #9ca3af;
	--e-border:    #333333;
	--e-border-strong: #4b5563;

	/* Rich accent palette : 3 hues for visual variety while keeping
	   the editorial sophistication. Amber stays primary, teal is the
	   "data / tech" accent, plum/magenta is the "cultural / human" one. */
	--e-accent:        #f59e0b;	/* amber primary */
	--e-accent-dark:   #d97706;
	--e-accent-light:  #fbbf24;
	--e-accent-teal:   #14b8a6;	/* teal secondary */
	--e-accent-teal-dark: #0d9488;
	--e-accent-plum:   #d946ef;	/* fuchsia tertiary */
	--e-accent-plum-dark: #c026d3;
	--e-link:          #fbbf24;

	/* Gradients : signature visual identity */
	--e-grad-hero:     linear-gradient(135deg, #1a1a1a 0%, #1f1f1f 40%, #242424 100%);
	--e-grad-amber:    linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
	--e-grad-teal:     linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
	--e-grad-plum:     linear-gradient(135deg, #d946ef 0%, #c026d3 100%);
	--e-grad-sunset:   linear-gradient(135deg, #f59e0b 0%, #d946ef 100%);	/* amber → fuchsia */
	--e-grad-aurora:   linear-gradient(135deg, #14b8a6 0%, #d946ef 100%);	/* teal → fuchsia */
	--e-grad-section:  linear-gradient(180deg, #1a1a1a 0%, #242424 100%);
	--e-grad-card:     linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%);
	--e-grad-glow:     radial-gradient(circle at 30% 20%, rgba(245, 158, 11, 0.15) 0%, transparent 50%), radial-gradient(circle at 70% 60%, rgba(20, 184, 166, 0.10) 0%, transparent 50%);

	--e-radius:    10px;
	--e-radius-lg: 16px;
	--e-shadow:    0 2px 12px rgba(0, 0, 0, 0.4);
	--e-shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.6);
	--e-shadow-glow: 0 0 32px rgba(245, 158, 11, 0.15);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--e-text);
	background: var(--e-bg);
	font-weight: 400;
}

a {
	color: var(--e-link);
	text-decoration: none;
	transition: color .2s ease;
}

a:hover {
	color: var(--e-accent-light);
	text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Playfair Display', Georgia, serif;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 1rem;
	color: #ffffff;
	letter-spacing: -.01em;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; margin-top: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.375rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; text-transform: uppercase; letter-spacing: .05em; opacity: .8; }

p {
	margin-bottom: 1.5rem;
}

strong { font-weight: 600; }
em { font-style: italic; }

/* Header *************************************/
.e-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(26, 26, 26, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--e-border);
	padding: 1rem 0;
}

.e-header-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
}

.e-brand {
	font-family: 'Playfair Display', serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	flex-shrink: 0;
}

/* Navigation *****************************/
.e-nav-links {
	display: flex;
	gap: 2rem;
	align-items: center;
	flex: 1;
	justify-content: flex-end;
}

.e-nav-links a {
	font-size: .95rem;
	color: var(--e-text);
	font-weight: 500;
	position: relative;
	transition: color .3s ease;
}

.e-nav-links a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--e-accent);
	transition: width .3s ease;
}

.e-nav-links a:hover::after {
	width: 100%;
}

.e-btn {
	display: inline-block;
	padding: 0.85rem 1.75rem;
	background: var(--e-grad-amber);
	color: var(--e-bg);
	font-weight: 600;
	border-radius: var(--e-radius);
	transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
	border: none;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(245, 158, 11, 0.25);
}

.e-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
	text-decoration: none;
	color: var(--e-bg);
	filter: brightness(1.08);
}

.e-btn-ghost {
	background: transparent;
	color: var(--e-text);
	border: 1px solid var(--e-border-strong);
	box-shadow: none;
}

.e-btn-ghost:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: var(--e-accent);
	color: var(--e-accent);
	box-shadow: none;
}

.e-btn-teal {
	background: var(--e-grad-teal);
	box-shadow: 0 4px 14px rgba(20, 184, 166, 0.25);
}

.e-btn-teal:hover {
	box-shadow: 0 8px 24px rgba(20, 184, 166, 0.4);
}

/* Mobile nav toggle */
.e-nav-toggle {
	display: none;
	background: none;
	border: none;
	color: var(--e-text);
	font-size: 1.5rem;
	cursor: pointer;
}

.is-open .e-nav-links {
	display: flex !important;
}

/* Hero **************************************/
.e-hero {
	position: relative;
	min-height: 85vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4rem 2rem;
	background: var(--e-grad-hero), var(--e-grad-glow);
	overflow: hidden;
}

.e-hero::before {
	content: '';
	position: absolute;
	top: -30%;
	right: -15%;
	width: 720px;
	height: 720px;
	background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, transparent 60%);
	border-radius: 50%;
	z-index: 1;
	animation: e-pulse 8s ease-in-out infinite;
}

.e-hero::after {
	content: '';
	position: absolute;
	bottom: -20%;
	left: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(217, 70, 239, 0.10) 0%, transparent 65%);
	border-radius: 50%;
	z-index: 1;
	animation: e-pulse 10s ease-in-out infinite 2s;
}

@keyframes e-pulse {
	0%, 100% { opacity: 0.6; transform: scale(1); }
	50%      { opacity: 1; transform: scale(1.05); }
}

/* Hero image variant : when the template ships a background image slot,
   the image sits behind the text with a dark overlay for legibility. */
.e-hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.35;
	z-index: 0;
}

.e-hero-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(26,26,26,0.5) 0%, rgba(26,26,26,0.85) 100%);
}

.e-hero-inner {
	position: relative;
	z-index: 2;
	text-align: left;
	max-width: 700px;
}

.e-hero h1 {
	font-size: 4rem;
	margin-bottom: 1.5rem;
	line-height: 1.1;
}

.e-hero p {
	font-size: 1.25rem;
	color: var(--e-text-mute);
	margin-bottom: 2.5rem;
	line-height: 1.7;
}

.e-hero-cta {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.e-hero-cta .e-btn {
	font-size: 1rem;
	padding: 1rem 2rem;
}

/* Container ******************************/
.e-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 2rem;
}

.e-section {
	padding: 6rem 2rem;
}

.e-section-light {
	background: var(--e-grad-section), var(--e-grad-glow);
	position: relative;
}

.e-section-accent {
	background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(217, 70, 239, 0.04) 100%);
	border-top: 1px solid rgba(245, 158, 11, 0.15);
	border-bottom: 1px solid rgba(217, 70, 239, 0.10);
}

.e-section-teal {
	background: linear-gradient(135deg, rgba(20, 184, 166, 0.08) 0%, rgba(245, 158, 11, 0.04) 100%);
	border-top: 1px solid rgba(20, 184, 166, 0.15);
}

/* Section header titles get a subtle gradient accent on the eyebrow */
.e-section-eyebrow {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	background: var(--e-grad-sunset);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	margin-bottom: 1rem;
}

.e-section-head {
	margin-bottom: 4rem;
	max-width: 800px;
}

.e-section-head h2 {
	margin-top: 0;
	margin-bottom: 1rem;
}

.e-section-head p {
	font-size: 1.125rem;
	color: var(--e-text-mute);
}

/* Grid **************************************/
.e-grid {
	display: grid;
	gap: 3rem;
	margin-bottom: 3rem;
}

.e-grid-2 {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.e-grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.e-grid-asym {
	grid-template-columns: 1fr;
	gap: 4rem;
}

/* Card **************************************/
.e-card {
	background: var(--e-grad-card);
	border: 1px solid var(--e-border);
	border-radius: var(--e-radius-lg);
	padding: 2rem;
	transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
	position: relative;
	overflow: hidden;
}

.e-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: var(--e-grad-sunset);
	opacity: 0;
	transition: opacity .3s ease;
}

.e-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--e-shadow-lg), var(--e-shadow-glow);
	border-color: var(--e-accent);
}

.e-card:hover::before {
	opacity: 1;
}

/* Card variants : the second / third service card get teal & plum highlights
   to break the monochrome feel. Toggle via .e-card--teal / .e-card--plum. */
.e-card--teal::before { background: var(--e-grad-teal); }
.e-card--teal:hover { border-color: var(--e-accent-teal); box-shadow: var(--e-shadow-lg), 0 0 32px rgba(20, 184, 166, 0.15); }
.e-card--plum::before { background: var(--e-grad-plum); }
.e-card--plum:hover { border-color: var(--e-accent-plum); box-shadow: var(--e-shadow-lg), 0 0 32px rgba(217, 70, 239, 0.15); }

/* Card icon area : circular badge with the variant's gradient */
.e-card-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: #ffffff;
	margin-bottom: 1.25rem;
	background: var(--e-grad-amber);
	box-shadow: 0 4px 14px rgba(245, 158, 11, 0.25);
}

.e-card--teal .e-card-icon { background: var(--e-grad-teal); box-shadow: 0 4px 14px rgba(20, 184, 166, 0.25); }
.e-card--plum .e-card-icon { background: var(--e-grad-plum); box-shadow: 0 4px 14px rgba(217, 70, 239, 0.25); }

/* Optional image inside cards (when the slot provides one) */
.e-card-image {
	width: 100%;
	height: 160px;
	border-radius: var(--e-radius);
	object-fit: cover;
	margin-bottom: 1.25rem;
	border: 1px solid var(--e-border);
}

.e-card-title {
	font-family: 'Playfair Display', serif;
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #ffffff;
}

.e-card-text {
	color: var(--e-text-mute);
	line-height: 1.7;
}

/* Product showcase (asymmetric) **/
.e-asym-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	margin-bottom: 4rem;
}

.e-asym-row.reverse {
	direction: rtl;
}

.e-asym-row > * {
	direction: ltr;
}

.e-asym-img {
	position: relative;
	overflow: hidden;
	border-radius: var(--e-radius);
	aspect-ratio: 4/3;
	background: linear-gradient(135deg, #242424 0%, #1a1a1a 100%);
}

.e-asym-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--e-radius);
}

.e-asym-content h3 {
	margin-top: 0;
	margin-bottom: 1.5rem;
}

.e-asym-content p {
	color: var(--e-text-mute);
	margin-bottom: 1.5rem;
	line-height: 1.8;
}

/* Catalog / Products **********************/
.e-catalog {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 2.5rem;
}

.e-product {
	background: var(--e-bg-soft);
	border: 1px solid var(--e-border);
	border-radius: var(--e-radius);
	overflow: hidden;
	transition: transform .3s ease, box-shadow .3s ease;
	display: flex;
	flex-direction: column;
}

.e-product:hover {
	transform: translateY(-6px);
	box-shadow: var(--e-shadow-lg);
}

.e-product-image {
	aspect-ratio: 4/3;
	background: linear-gradient(135deg, #333333 0%, #242424 100%);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.e-product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.e-product-body {
	padding: 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.e-product-badge {
	display: inline-block;
	background: var(--e-grad-amber);
	color: var(--e-bg);
	font-size: .7rem;
	font-weight: 800;
	padding: 0.4rem 0.85rem;
	border-radius: 999px;
	text-transform: uppercase;
	letter-spacing: .08em;
	margin-bottom: 1rem;
	width: fit-content;
	box-shadow: 0 2px 8px rgba(245, 158, 11, 0.25);
}

.e-product-badge--teal { background: var(--e-grad-teal); box-shadow: 0 2px 8px rgba(20, 184, 166, 0.25); }
.e-product-badge--plum { background: var(--e-grad-plum); box-shadow: 0 2px 8px rgba(217, 70, 239, 0.25); }

.e-product-title {
	font-family: 'Playfair Display', serif;
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
	color: #ffffff;
	line-height: 1.3;
}

.e-product-text {
	color: var(--e-text-mute);
	font-size: .95rem;
	margin-bottom: 1.5rem;
	flex: 1;
	line-height: 1.6;
}

.e-product-cta {
	align-self: flex-start;
	padding: 0.625rem 1.25rem;
	background: transparent;
	border: 1px solid var(--e-accent);
	color: var(--e-accent);
	font-weight: 600;
	border-radius: 3px;
	cursor: pointer;
	transition: background .2s, color .2s;
	font-size: .9rem;
}

.e-product-cta:hover {
	background: var(--e-accent);
	color: var(--e-bg);
	text-decoration: none;
}

/* Blog / Articles ************************/
.e-blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
	gap: 3rem;
	margin-bottom: 3rem;
}

.e-article-card {
	background: var(--e-bg-soft);
	border: 1px solid var(--e-border);
	border-radius: var(--e-radius);
	overflow: hidden;
	transition: transform .3s ease;
	display: flex;
	flex-direction: column;
}

.e-article-card:hover {
	transform: translateY(-4px);
}

.e-article-image {
	aspect-ratio: 16/9;
	background: linear-gradient(135deg, #333333 0%, #242424 100%);
	overflow: hidden;
}

.e-article-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.e-article-meta {
	padding: 1.5rem;
	font-size: .85rem;
	color: var(--e-text-mute);
	text-transform: uppercase;
	letter-spacing: .05em;
}

.e-article-title {
	padding: 0 1.5rem;
	font-family: 'Playfair Display', serif;
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #ffffff;
	line-height: 1.3;
}

.e-article-excerpt {
	padding: 0 1.5rem 1.5rem;
	color: var(--e-text-mute);
	font-size: .95rem;
	line-height: 1.7;
}

.e-article-read-more {
	padding: 1.5rem;
	color: var(--e-link);
	font-weight: 600;
	display: inline-block;
	transition: transform .2s;
}

.e-article-read-more:hover {
	transform: translateX(4px);
}

/* About / Values **************************/
.e-values-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
}

.e-value {
	text-align: left;
}

.e-value-number {
	font-family: 'Playfair Display', serif;
	font-size: 3.5rem;
	font-weight: 700;
	background: var(--e-grad-sunset);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	line-height: 1;
	margin-bottom: 0.5rem;
}

.e-value:nth-child(2) .e-value-number { background: var(--e-grad-teal); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.e-value:nth-child(3) .e-value-number { background: var(--e-grad-plum); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* Optional decorative image for a value (illustration above the number) */
.e-value-image {
	width: 100%;
	height: 140px;
	object-fit: cover;
	border-radius: var(--e-radius);
	margin-bottom: 1rem;
	border: 1px solid var(--e-border);
}

.e-value-title {
	font-family: 'Playfair Display', serif;
	font-size: 1.25rem;
	margin-bottom: 1rem;
	color: #ffffff;
}

.e-value-text {
	color: var(--e-text-mute);
	line-height: 1.7;
}

/* Contact Form ***************************/
.e-contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}

.e-contact-info h3 {
	margin-bottom: 2rem;
}

.e-contact-item {
	margin-bottom: 2.5rem;
}

.e-contact-label {
	display: block;
	font-family: 'Playfair Display', serif;
	font-size: 1.125rem;
	margin-bottom: 0.5rem;
	color: #ffffff;
}

.e-contact-text {
	color: var(--e-text-mute);
	line-height: 1.6;
}

.e-contact-form {
	background: var(--e-bg-soft);
	border: 1px solid var(--e-border);
	padding: 2rem;
	border-radius: var(--e-radius);
}

.e-form-group {
	margin-bottom: 1.5rem;
}

.e-form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: var(--e-text);
}

.e-form-input,
.e-form-textarea {
	width: 100%;
	padding: 0.75rem;
	background: var(--e-bg);
	border: 1px solid var(--e-border);
	border-radius: 4px;
	color: var(--e-text);
	font-family: inherit;
	font-size: 1rem;
	transition: border-color .2s;
}

.e-form-input:focus,
.e-form-textarea:focus {
	outline: none;
	border-color: var(--e-accent);
}

.e-form-textarea {
	resize: vertical;
	min-height: 150px;
}

.e-form input[type=checkbox], .e-form input[type=radio] {
	width: 16px; height: 16px; margin: 0 0.5rem 0 0; vertical-align: middle;
	accent-color: var(--e-accent);
}
.e-form .infrasstudio-form-consent .e-form-label {
	display: flex; align-items: flex-start; gap: 0.5rem;
	font-weight: 400; font-size: 0.875rem; color: var(--e-text-mute);
	cursor: pointer; margin: 0;
}
.e-form .infrasstudio-form-consent .e-form-label span { flex: 1; }

/* Footer ************************************/
.e-footer {
	background: var(--e-bg-soft);
	border-top: 1px solid var(--e-border);
	padding: 4rem 2rem;
	margin-top: 6rem;
}

.e-footer-inner {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3rem;
	margin-bottom: 3rem;
}

.e-footer-section h4 {
	margin-bottom: 1.5rem;
	font-size: 1rem;
}

.e-footer-section a {
	display: block;
	margin-bottom: 0.75rem;
	color: var(--e-text-mute);
	font-size: .9rem;
	transition: color .2s;
}

.e-footer-section a:hover {
	color: var(--e-accent);
}

.e-footer-social {
	display: flex;
	gap: 1rem;
}

.e-footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: var(--e-bg);
	border-radius: 50%;
	transition: background .2s, color .2s;
	margin-bottom: 0;
}

.e-footer-social a:hover {
	background: var(--e-accent);
	color: var(--e-bg);
}

.e-footer-bottom {
	border-top: 1px solid var(--e-border);
	padding-top: 2rem;
	text-align: center;
	color: var(--e-text-mute);
	font-size: .9rem;
}

/* Utility Classes **************************/
.e-muted {
	color: var(--e-text-mute);
}

.e-subtle {
	opacity: 0.7;
}

.e-divider {
	height: 1px;
	background: var(--e-border);
	margin: 3rem 0;
}

/* Responsive *****************************/
@media (max-width: 960px) {
	.e-grid-2,
	.e-grid-3 {
		grid-template-columns: 1fr;
	}

	.e-asym-row {
		grid-template-columns: 1fr;
	}

	.e-asym-row.reverse {
		direction: ltr;
	}

	.e-values-grid {
		grid-template-columns: 1fr 1fr;
	}

	.e-contact-wrapper {
		grid-template-columns: 1fr;
	}

	.e-footer-inner {
		grid-template-columns: repeat(2, 1fr);
	}

	.e-hero h1 {
		font-size: 2.5rem;
	}

	h1 { font-size: 2.5rem; }
	h2 { font-size: 2rem; }
}

@media (max-width: 640px) {
	.e-nav-toggle {
		display: block;
	}

	.e-nav-links {
		position: absolute;
		top: 60px;
		left: 0;
		right: 0;
		flex-direction: column;
		gap: 1rem;
		background: var(--e-bg-soft);
		border-bottom: 1px solid var(--e-border);
		padding: 2rem;
		display: none;
	}

	.e-header {
		padding: 1rem 0;
	}

	.e-hero {
		min-height: 70vh;
	}

	.e-hero h1 {
		font-size: 2rem;
	}

	.e-hero p {
		font-size: 1rem;
	}

	.e-hero-cta {
		flex-direction: column;
	}

	.e-section {
		padding: 3rem 1rem;
	}

	.e-catalog {
		grid-template-columns: 1fr;
	}

	.e-blog-grid {
		grid-template-columns: 1fr;
	}

	.e-values-grid {
		grid-template-columns: 1fr;
	}

	.e-footer-inner {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.e-contact-wrapper {
		gap: 2rem;
	}

	h1 { font-size: 1.75rem; }
	h2 { font-size: 1.5rem; }
	h3 { font-size: 1.25rem; }
}


/* Accent des composants InfraSStudio injectés (v18.46) : bandeau/panneau de
   consentement cookies et chips de filtres du catalogue héritent de la couleur
   signature du template via cette variable (repli bleu marine sinon). */
:root { --iss-cc-accent: #b45309; }
