/* ==========================================================================
   EverSharp — main.css
   Structure et composants, desktop first. Le calque responsive est dans
   mobile.css (chargé après). Aucun style inline dans le HTML : toute règle
   modifiée ici s'applique aux deux langues.

   Contraste (audit WCAG AA, décidé en design, cf. consignes §7) :
     --ev-red      #E4002B  surfaces, gros titres, texte blanc dessus (4,85:1)
     --ev-red-ink  #C00020  texte rouge de petite taille sur blanc (6,4:1)
                            et sur crème (5,7:1). #E4002B en 13px sur crème
                            tombait à 4,3:1 — sous le seuil.
   ========================================================================== */

:root {
	--ev-red: #E4002B;
	--ev-red-ink: #C00020;
	--ev-red-dark: #B8001F;
	--ev-ink: #1A1A1A;
	--ev-ink-2: #2E2E2E;
	--ev-muted: #5F5F5F;
	--ev-line: #E8E4DE;
	--ev-cream: #F5F1EB;
	--ev-slate: #333F48;
	--ev-white: #FFFFFF;
	--ev-header-h: 88px;
	--ev-pad-x: clamp(20px, 5vw, 56px);
	--ev-wrap: 1400px;
}

/* --- reset minimal ------------------------------------------------------- */

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

html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }
@supports (overflow: clip) { html, body { overflow-x: clip; } }

body.ev-body {
	margin: 0;
	font-family: var(--ev-sans);
	color: var(--ev-ink);
	background: var(--ev-white);
	-webkit-font-smoothing: antialiased;
	text-wrap: pretty;
}

img, video, svg { max-width: 100%; }
img { height: auto; }

a { color: var(--ev-red-ink); }
a:hover { color: var(--ev-red-dark); }

h1, h2, h3, p, ol, ul, blockquote, figure { margin: 0; padding: 0; }
ol, ul { list-style: none; }

/* Zone tactile et focus : ne jamais les supprimer (consignes §3.3). */
.ev-btn, .ev-burger, .ev-lang, .ev-faq-q, .ev-navlink, .ev-buybar {
	min-height: 44px;
}
:focus-visible {
	outline: 3px solid var(--ev-red);
	outline-offset: 3px;
	border-radius: 6px;
}

.ev-sr, .ev-skip {
	position: absolute;
	width: 1px; height: 1px;
	margin: -1px; padding: 0;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
}
.ev-skip:focus {
	position: fixed; top: 10px; left: 10px;
	width: auto; height: auto;
	clip-path: none;
	z-index: 500;
	padding: 12px 18px;
	background: #fff; color: var(--ev-ink);
	border-radius: 10px; font-weight: 800;
}

section[id] { scroll-margin-top: calc(var(--ev-header-h) + 4px); }

/* --- animations ---------------------------------------------------------- */

@keyframes ev-drift { 0%, 100% { transform: translateY(0) rotate(-6deg); } 50% { transform: translateY(-12px) rotate(-4deg); } }
@keyframes ev-shine { 0% { transform: translateX(-120%) skewX(-18deg); } 55%, 100% { transform: translateX(220%) skewX(-18deg); } }
@keyframes ev-arrow { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(6px); } }

[data-reveal] {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .6s ease, transform .75s cubic-bezier(.2, .7, .2, 1);
	will-change: opacity, transform;
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* Filet de sécurité CSS : si le JS ne charge pas du tout, rien ne reste
   invisible (cause de la section blanche sur iPhone, consignes §3.2). */
html.no-js [data-reveal] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	[data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
	.ev-macaron, .ev-shine::after, .ev-arrow { animation: none !important; }
}

.ev-arrow { display: inline-block; animation: ev-arrow 1.6s ease-in-out infinite; }
.ev-lift { transition: transform .35s ease, box-shadow .35s ease; }
.ev-lift:hover { transform: translateY(-6px); }
.ev-shine { position: relative; overflow: hidden; }
.ev-shine::after {
	content: "";
	position: absolute; top: 0; left: 0;
	height: 100%; width: 60%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .35), transparent);
	transform: translateX(-120%) skewX(-18deg);
	animation: ev-shine 3.4s ease-in-out infinite;
	pointer-events: none;
}

/* --- boutons ------------------------------------------------------------- */

.ev-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 26px;
	border: 0;
	border-radius: 999px;
	font: inherit;
	font-weight: 800;
	font-size: 15px;
	line-height: 1.1;
	text-decoration: none;
	cursor: pointer;
}
.ev-btn--lg { padding: 18px 36px; font-size: 17px; }
.ev-btn--red { background: var(--ev-red); color: #fff; box-shadow: 0 14px 34px -14px rgba(228, 0, 43, .7); }
.ev-btn--red:hover { background: var(--ev-red-dark); color: #fff; }
.ev-btn--dark { background: var(--ev-ink); color: #fff; }
.ev-btn--dark:hover { background: #000; color: #fff; }
.ev-btn--white { background: #fff; color: var(--ev-red-ink); box-shadow: 0 20px 50px -14px rgba(0, 0, 0, .35); }
.ev-btn--white:hover { color: var(--ev-red-dark); }
.ev-btn--outline { background: transparent; border: 1.5px solid var(--ev-ink); color: var(--ev-ink); }
.ev-btn--outline:hover { background: var(--ev-ink); color: #fff; }
.ev-btn--glass {
	background: rgba(255, 255, 255, .16);
	border: 1.5px solid rgba(255, 255, 255, .55);
	color: #fff;
	backdrop-filter: blur(8px);
	font-weight: 700;
}
.ev-btn--glass:hover { background: rgba(255, 255, 255, .28); color: #fff; }
.ev-play {
	display: inline-flex; align-items: center; justify-content: center;
	width: 26px; height: 26px;
	border-radius: 50%;
	background: #fff; color: var(--ev-ink);
	font-size: 11px;
}

/* --- barre de progression + header -------------------------------------- */

.ev-progress { position: fixed; inset: 0 0 auto; height: 3px; z-index: 150; }
.ev-progress-bar { display: block; height: 100%; width: 0; background: var(--ev-red); }

.ev-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 120;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	/* Le padding latéral vit ICI, pas seulement en mobile : l'export livrait
	   header et footer collés aux bords sur toutes les tailles (§4). */
	padding: 14px max(var(--ev-pad-x), calc((100% - var(--ev-wrap)) / 2));
	background: transparent;
	border-bottom: 1px solid transparent;
	transition: background .3s, backdrop-filter .3s, border-color .3s;
}
.ev-header.is-solid {
	background: rgba(255, 255, 255, .93);
	backdrop-filter: blur(14px);
	border-bottom-color: var(--ev-line);
}

.ev-header-brand { display: flex; align-items: center; gap: 16px; text-decoration: none; }
.ev-logo-tefal { height: 56px; width: auto; display: block; }
.ev-header-rule { width: 1px; height: 44px; background: rgba(255, 255, 255, .35); }
.ev-header.is-solid .ev-header-rule { background: var(--ev-line); }
.ev-logo-es { height: 36px; width: auto; display: block; }
.ev-logo-es--dark { display: none; }
.ev-header.is-solid .ev-logo-es--dark { display: block; }
.ev-header.is-solid .ev-logo-es--light { display: none; }

.ev-header-nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.ev-navlink {
	display: inline-flex; align-items: center;
	flex: 0 0 auto;              /* ne jamais laisser les liens de nav se comprimer (§4) */
	white-space: nowrap;
	font-size: 14px; font-weight: 600;
	color: #fff; opacity: .78;
	text-decoration: none;
	transition: opacity .2s;
}
.ev-navlink:hover { opacity: 1; color: #fff; }
.ev-header.is-solid .ev-navlink { color: var(--ev-ink); }
.ev-header.is-solid .ev-navlink:hover { color: var(--ev-ink); }

.ev-header-end { display: flex; align-items: center; gap: clamp(10px, 1.4vw, 18px); }
.ev-lang {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 44px;
	padding: 8px 12px;
	border: 1px solid rgba(255, 255, 255, .45);
	border-radius: 999px;
	font-size: 12px; font-weight: 800; letter-spacing: .04em;
	color: #fff; text-decoration: none;
}
.ev-lang:hover { background: rgba(255, 255, 255, .18); color: #fff; }
.ev-header.is-solid .ev-lang { border-color: var(--ev-line); color: var(--ev-ink); }
.ev-header.is-solid .ev-lang:hover { background: var(--ev-cream); color: var(--ev-ink); }
.ev-nav-cta { padding: 11px 20px; font-size: 14px; white-space: nowrap; }

.ev-burger {
	display: none;
	flex-direction: column; justify-content: center; gap: 5px;
	width: 44px; height: 44px; padding: 0;
	border: 1px solid rgba(255, 255, 255, .45);
	border-radius: 10px;
	background: transparent;
	cursor: pointer;
}
.ev-burger span { display: block; width: 20px; height: 2px; margin: 0 auto; background: #fff; }
.ev-header.is-solid .ev-burger { border-color: var(--ev-line); }
.ev-header.is-solid .ev-burger span { background: var(--ev-ink); }

/* --- drawer -------------------------------------------------------------- */

.ev-scrim { position: fixed; inset: 0; z-index: 129; background: rgba(0, 0, 0, .5); backdrop-filter: blur(3px); }
.ev-drawer {
	position: fixed; top: 0; right: 0; bottom: 0;
	z-index: 130;
	width: min(84vw, 340px);
	display: flex; flex-direction: column;
	padding: 22px;
	background: #fff;
	box-shadow: -20px 0 60px -20px rgba(0, 0, 0, .5);
	overflow-y: auto;
}
.ev-drawer[hidden], .ev-scrim[hidden] { display: none; }
.ev-drawer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.ev-drawer-close {
	width: 44px; height: 44px;
	border: 1px solid var(--ev-line); border-radius: 10px;
	background: transparent; color: var(--ev-ink);
	font-size: 24px; line-height: 1; cursor: pointer;
}
.ev-drawer-nav { display: flex; flex-direction: column; }
.ev-drawer-nav a {
	display: flex; align-items: center;
	min-height: 48px;
	padding: 10px 4px;
	border-bottom: 1px solid var(--ev-line);
	font-family: var(--ev-cond);
	font-weight: 800; font-size: 24px; text-transform: uppercase;
	color: var(--ev-ink); text-decoration: none;
}
.ev-drawer-cta { margin-top: 24px; }
.ev-drawer-lang {
	margin-top: 16px;
	align-self: flex-start;
	padding: 10px 16px;
	border: 1px solid var(--ev-line); border-radius: 999px;
	font-size: 13px; font-weight: 800;
	color: var(--ev-ink); text-decoration: none;
}

/* --- hero ---------------------------------------------------------------- */

.ev-hero {
	position: relative;
	display: flex; align-items: flex-end;
	min-height: calc(100vh - var(--ev-header-h));
	overflow: hidden;
	color: #fff;
	background: #000;
}
@supports (height: 100svh) {
	.ev-hero { min-height: calc(100svh - var(--ev-header-h)); }
}
.ev-hero-video {
	position: absolute; inset: 0; z-index: 0;
	width: 100%; height: 100%;
	object-fit: cover;
}
.ev-hero-veil {
	position: absolute; inset: 0; z-index: 1;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, 0) 55%),
		linear-gradient(180deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .15) 32%, rgba(0, 0, 0, .15) 55%, rgba(0, 0, 0, .72) 100%);
}
.ev-hero-inner {
	position: relative; z-index: 2;
	width: 100%;
	max-width: var(--ev-wrap);
	margin: 0 auto;
	padding: calc(var(--ev-header-h) + 44px) var(--ev-pad-x) clamp(56px, 9vh, 130px);
}
.ev-hero-badge {
	display: inline-flex; align-items: center; gap: 10px;
	margin-bottom: 24px;
	padding: 8px 16px;
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 999px;
	background: rgba(255, 255, 255, .16);
	backdrop-filter: blur(8px);
	font-size: 13px; font-weight: 700; letter-spacing: .03em;
}
.ev-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ev-red); box-shadow: 0 0 10px var(--ev-red); }
.ev-hero-logo {
	display: block;
	height: clamp(72px, 9.4vw, 132px);
	width: auto;
	margin-bottom: clamp(16px, 2.4vw, 28px);
	filter: drop-shadow(0 4px 20px rgba(0, 0, 0, .35));
}
.ev-hero-frame {
	position: relative;
	display: block;
	width: fit-content;
	padding: clamp(24px, 4vw, 52px) clamp(28px, 5vw, 64px);
}
.ev-tmark { position: absolute; width: clamp(34px, 4.4vw, 60px); height: auto; pointer-events: none; }
.ev-tmark--tl { top: 0; left: 0; }
.ev-tmark--br { bottom: 0; right: 0; }
.ev-hero-title {
	margin: 0;
	font-family: var(--ev-cond);
	font-weight: 900;
	font-size: clamp(34px, 4.6vw, 70px);
	line-height: .98;
	letter-spacing: -.02em;
	text-transform: uppercase;
	text-shadow: 0 6px 40px rgba(0, 0, 0, .4);
}
.ev-hero-title span { display: block; color: #fff; }
.ev-hero-title span.is-accent { color: var(--ev-red); }
.ev-hero-sub {
	max-width: 56ch;
	margin: 26px 0 32px;
	font-size: clamp(16px, 1.6vw, 22px);
	line-height: 1.55;
	color: rgba(255, 255, 255, .94);
	text-shadow: 0 2px 20px rgba(0, 0, 0, .4);
}
.ev-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.ev-hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 40px; }
.ev-trust-item { display: flex; flex-direction: column; line-height: 1.1; }
.ev-trust-item--row { flex-direction: row; align-items: center; gap: 10px; }
.ev-trust-item strong { font-family: var(--ev-cond); font-weight: 900; font-size: 26px; }
.ev-trust-item span { font-size: 12px; font-weight: 600; color: rgba(255, 255, 255, .85); }
.ev-trust-rule { width: 1px; height: 32px; background: rgba(255, 255, 255, .22); }
.ev-trust-steel { gap: 8px; font-size: 12px; font-weight: 700; }
.ev-trust-steel svg { flex: none; border-radius: 1px; box-shadow: 0 0 0 1px rgba(255, 255, 255, .25); }
.ev-stars { color: var(--ev-red); letter-spacing: 1px; }
.ev-hero .ev-stars { filter: drop-shadow(0 0 6px rgba(228, 0, 43, .8)); font-size: 18px; }

.ev-macaron { animation: ev-drift 6s ease-in-out infinite; }
.ev-macaron--hero {
	position: absolute; z-index: 3;
	right: var(--ev-pad-x); bottom: clamp(24px, 5vh, 56px);
	width: clamp(150px, 16vw, 234px); height: auto;
	filter: drop-shadow(0 12px 28px rgba(0, 0, 0, .35));
}
.ev-macaron--float {
	position: absolute; left: -30px; bottom: -30px;
	width: 200px; height: auto;
	filter: drop-shadow(0 12px 28px rgba(0, 0, 0, .25));
}

/* --- ossature de section ------------------------------------------------- */

.ev-section { padding: clamp(80px, 12vh, 160px) var(--ev-pad-x); position: relative; }
.ev-section--white { background: var(--ev-white); }
.ev-section--cream { background: var(--ev-cream); }
.ev-section--slate { background: var(--ev-slate); color: #fff; }

.ev-wrap { max-width: var(--ev-wrap); margin: 0 auto; }
.ev-wrap--narrow { max-width: 760px; }
.ev-wrap--faq { max-width: 920px; }
.ev-center { text-align: center; }
.ev-head { margin-bottom: clamp(44px, 7vh, 80px); }
.ev-center .ev-lead, .ev-center .ev-sub, .ev-center .ev-note { margin-left: auto; margin-right: auto; }

.ev-kicker {
	margin-bottom: 18px;
	font-size: 13px; font-weight: 800; letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--ev-red-ink);
}
.ev-section--slate .ev-kicker { color: #FF6B80; }
.ev-kicker--xl {
	font-family: var(--ev-cond);
	font-size: clamp(26px, 3.4vw, 44px);
	font-weight: 900;
	letter-spacing: .08em;
	line-height: 1;
	margin-bottom: 20px;
}

.ev-h2 {
	margin: 0 0 20px;
	font-family: var(--ev-cond);
	font-weight: 900;
	font-size: clamp(38px, 6vw, 84px);
	line-height: .98;
	letter-spacing: -.02em;
	text-transform: uppercase;
	text-wrap: balance;
}
.ev-h2--stack { margin-bottom: 26px; }
.ev-h2-pre, .ev-h2-post { display: block; font-weight: 600; text-transform: none; color: var(--ev-ink-2); }
.ev-h2-pre { font-size: clamp(24px, 3vw, 36px); margin-bottom: 10px; }
.ev-h2-post { font-size: clamp(17px, 2vw, 24px); margin-top: 10px; }
.ev-h2-big { display: block; font-size: clamp(40px, 6.2vw, 86px); }
.ev-h2-it { color: var(--ev-red); font-style: italic; }

.ev-lead {
	max-width: 56ch;
	font-size: clamp(16px, 1.5vw, 20px);
	line-height: 1.6;
	color: var(--ev-ink-2);
}
.ev-lead--on-dark { color: rgba(255, 255, 255, .8); max-width: 52ch; }
.ev-sub { max-width: 52ch; font-size: 16px; line-height: 1.55; color: var(--ev-muted); }
.ev-note { margin-top: 14px; font-size: 12px; line-height: 1.5; color: var(--ev-muted); max-width: 64ch; }
.ev-note--pre { white-space: pre-line; margin-top: 26px; }
.ev-lead + .ev-btn, .ev-h2 + .ev-lead { margin-top: 0; }
.ev-lead ~ .ev-btn { margin-top: 28px; }

/* --- grilles ------------------------------------------------------------- */

.ev-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 76px); }
.ev-grid-2--wide { grid-template-columns: 1.15fr .85fr; }
.ev-grid-2--rev { grid-template-columns: 1fr 1.15fr; }
.ev-grid-2--center { align-items: center; }
.ev-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ev-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

/* Enfants de grille : min-width:0 pour empêcher les débordements.
   NE PAS élargir cette règle à tous les enfants flex : sur Coffee Crush cela
   a fait se chevaucher le menu NL (§4). */
.ev-grid-2 > *, .ev-grid-3 > *, .ev-grid-4 > * { min-width: 0; }

/* --- lame 2 -------------------------------------------------------------- */

.ev-fond { overflow: visible; }
.ev-fond .ev-wrap { position: relative; z-index: 2; }
.ev-fond-product {
	position: absolute; z-index: 1;
	right: clamp(-30px, 2vw, 60px);
	top: clamp(-260px, -22vw, -140px);
	width: clamp(420px, 52vw, 840px); height: auto;
	pointer-events: none;
	filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .35));
}

/* --- visuels ------------------------------------------------------------- */

.ev-media-wrap { position: relative; }
.ev-media { border-radius: 22px; overflow: hidden; box-shadow: 0 40px 90px -40px rgba(0, 0, 0, .35); }
.ev-media img { display: block; width: 100%; }
.ev-media--wide img { aspect-ratio: 16 / 9; object-fit: cover; }

.ev-video-frame {
	position: relative;
	border-radius: 22px;
	overflow: hidden;
	background: #1F1F1F;
	aspect-ratio: 16 / 9;
}
.ev-video-frame video { display: block; width: 100%; height: 100%; object-fit: cover; }

/* --- étapes technologie -------------------------------------------------- */

.ev-steps { display: flex; flex-direction: column; gap: 14px; }
.ev-step {
	display: flex; gap: 22px; align-items: flex-start;
	padding: 24px 26px;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 16px;
	background: rgba(255, 255, 255, .05);
}
.ev-step-num { flex: none; font-family: var(--ev-cond); font-weight: 900; font-size: 38px; line-height: 1; color: #FF4B63; }
.ev-step-body { display: block; }
.ev-step-body strong { display: block; margin-bottom: 8px; font-size: 20px; font-weight: 800; }
.ev-step-body span { display: block; font-size: 15px; line-height: 1.6; color: rgba(255, 255, 255, .8); }

/* --- USP ----------------------------------------------------------------- */

.ev-usp-head { margin-bottom: clamp(40px, 6vh, 72px); }
.ev-usp {
	display: flex; flex-direction: column;
	min-height: 250px;
	padding: 30px 26px;
	border: 1px solid var(--ev-line);
	border-radius: 20px;
	background: var(--ev-cream);
}
.ev-usp-num { margin-bottom: 22px; font-family: var(--ev-cond); font-weight: 900; font-size: 44px; line-height: .9; color: var(--ev-red); }
.ev-usp-title { margin-bottom: 10px; font-size: 20px; font-weight: 800; line-height: 1.2; }
.ev-usp-text { font-size: 15px; line-height: 1.55; color: var(--ev-muted); }

/* --- couteaux / carte des repères --------------------------------------- */

.ev-knives { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.ev-knives li { display: flex; align-items: flex-start; gap: 14px; }
.ev-knife-n {
	flex: none;
	display: flex; align-items: center; justify-content: center;
	width: 28px; height: 28px;
	border-radius: 50%;
	background: var(--ev-red); color: #fff;
	font-family: var(--ev-cond); font-weight: 900; font-size: 15px; line-height: 1;
}
.ev-knife-txt { line-height: 1.35; }
.ev-knife-txt strong { font-weight: 800; }
.ev-knife-txt span { display: block; font-size: 14px; color: var(--ev-muted); }

.ev-knifemap { position: relative; }
.ev-knife-mark {
	position: absolute;
	transform: translate(-50%, -50%);
	display: flex; align-items: center; justify-content: center;
	width: 30px; height: 30px;
	border: 2px solid #fff; border-radius: 50%;
	background: var(--ev-red); color: #fff;
	font-family: var(--ev-cond); font-weight: 900; font-size: 16px; line-height: 1;
	box-shadow: 0 3px 10px rgba(0, 0, 0, .3);
}

/* --- cartes génériques (Loïc) ------------------------------------------- */

.ev-head-split {
	display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
	gap: 28px;
	margin-bottom: clamp(36px, 5vh, 64px);
}
.ev-head-split > div { max-width: 60ch; }
.ev-card {
	display: flex; flex-direction: column;
	border: 1px solid var(--ev-line);
	border-radius: 20px;
	overflow: hidden;
	background: var(--ev-cream);
}
.ev-card-img { display: block; width: 100%; object-fit: cover; }
.ev-card-img--square { aspect-ratio: 1 / 1; }
.ev-card-body { padding: 24px 26px 28px; }
.ev-card-title {
	margin-bottom: 10px;
	font-family: var(--ev-cond); font-weight: 800; font-size: 24px;
	text-transform: uppercase; letter-spacing: -.01em;
}
.ev-card-text { font-size: 15px; line-height: 1.6; color: var(--ev-muted); }

/* --- bandeau rouge ------------------------------------------------------- */

.ev-band { background: var(--ev-red); color: #fff; padding: 40px var(--ev-pad-x); }
.ev-band-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.ev-band-txt {
	font-family: var(--ev-cond); font-weight: 900;
	font-size: clamp(22px, 3vw, 38px); line-height: 1;
	text-transform: uppercase;
}

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

.ev-grid-prod { align-items: stretch; }
.ev-prod {
	position: relative;
	display: flex; flex-direction: column;
	border: 1px solid var(--ev-line);
	border-radius: 22px;
	overflow: hidden;
	background: var(--ev-cream);
}
.ev-prod.is-featured { border-color: rgba(228, 0, 43, .35); box-shadow: 0 30px 70px -40px rgba(228, 0, 43, .45); }
.ev-prod-tag {
	position: absolute; top: 18px; left: 18px; z-index: 2;
	display: inline-flex; align-items: center; gap: 6px;
	padding: 6px 14px;
	border-radius: 999px;
	background: var(--ev-red); color: #fff;
	font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}
.ev-prod-media {
	display: flex; align-items: center; justify-content: center;
	aspect-ratio: 1 / 1;
	padding: 20px;
	border-bottom: 1px solid var(--ev-line);
	background: var(--ev-white);
}
.ev-prod-media img { max-width: 100%; max-height: 100%; width: auto; object-fit: contain; }
.ev-prod-body { display: flex; flex-direction: column; flex: 1; padding: 24px 26px 28px; }
.ev-prod-ref { margin-bottom: 8px; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--ev-muted); }
.ev-prod-name {
	margin-bottom: 10px;
	font-family: var(--ev-cond); font-weight: 800; font-size: 24px; line-height: 1.1;
	text-transform: uppercase; letter-spacing: -.01em;
}
.ev-prod-rating { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 12px; font-size: 13px; color: var(--ev-muted); }
.ev-prod-rating a { color: var(--ev-muted); text-decoration: underline; text-underline-offset: 2px; }
.ev-prod-rating a:hover { color: var(--ev-ink); }
.ev-prod-pitch { flex: 1; margin-bottom: 20px; font-size: 15px; line-height: 1.55; color: var(--ev-muted); }
.ev-prod-price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px; margin-bottom: 20px; }
.ev-prod-price strong { font-family: var(--ev-cond); font-weight: 900; font-size: 34px; line-height: 1; }
.ev-prod-price del { font-size: 15px; color: var(--ev-muted); }
.ev-prod-note { flex: 1 0 100%; font-size: 12px; color: var(--ev-muted); }
.ev-prod-cta { width: 100%; }

/* --- avis ---------------------------------------------------------------- */

.ev-authbox {
	display: flex; align-items: center; gap: 18px;
	max-width: 660px; margin: 22px auto 0;
	padding: 16px 22px;
	border: 1px solid var(--ev-line); border-radius: 16px;
	background: #fff;
	text-align: left;
}
.ev-authbox img { flex: none; width: 60px; height: 60px; border-radius: 10px; }
.ev-authbox p { font-size: 14px; line-height: 1.55; color: var(--ev-ink-2); }

.ev-review {
	display: flex; flex-direction: column;
	padding: 26px;
	border: 1px solid var(--ev-line); border-radius: 20px;
	background: #fff;
}
.ev-review-stars { margin-bottom: 16px; font-size: 16px; letter-spacing: 2px; }
.ev-review-text { margin-bottom: 18px; font-size: 16px; line-height: 1.6; }
.ev-review-prod {
	display: flex; align-items: center; gap: 8px;
	margin-bottom: 16px;
	padding: 10px 12px;
	border: 1px solid var(--ev-line); border-radius: 12px;
	background: var(--ev-cream);
	color: var(--ev-ink); text-decoration: none;
}
.ev-review-prod > span:first-child { flex: 1; min-width: 0; font-size: 13px; font-weight: 800; line-height: 1.25; }
.ev-review-score { flex: none; font-size: 12px; color: var(--ev-muted); white-space: nowrap; }
.ev-review-score span { color: var(--ev-red-ink); }
.ev-review-meta {
	display: flex; align-items: center; justify-content: space-between; gap: 10px;
	margin-top: auto; padding-top: 16px;
	border-top: 1px solid var(--ev-line);
	font-size: 14px;
}
.ev-review-meta strong { font-weight: 800; }
.ev-review-meta span { font-size: 12px; color: var(--ev-muted); }
.ev-avis-foot { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: clamp(28px, 4vh, 44px); }

/* --- how-to -------------------------------------------------------------- */

.ev-howto {
	display: flex; flex-direction: column;
	border: 1px solid var(--ev-line); border-radius: 20px;
	overflow: hidden;
	background: var(--ev-cream);
	color: inherit; text-decoration: none;
}
.ev-howto-thumb { position: relative; display: block; padding-top: 56.25%; background: #000; }
.ev-howto-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ev-howto-play {
	position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
	display: flex; align-items: center; justify-content: center;
	width: 72px; height: 72px;
	border-radius: 50%;
	background: var(--ev-red); color: #fff;
	font-size: 26px;
	box-shadow: 0 12px 30px -6px rgba(0, 0, 0, .5);
	transition: transform .3s ease;
}
.ev-howto:hover .ev-howto-play { transform: translate(-50%, -50%) scale(1.08); }
.ev-howto-body { display: flex; align-items: center; gap: 16px; padding: 20px 24px; }
.ev-howto-num { font-family: var(--ev-cond); font-weight: 900; font-size: 26px; line-height: 1; color: var(--ev-red-ink); }
.ev-howto-title { font-size: 17px; font-weight: 800; text-transform: uppercase; }

/* --- FAQ (details/summary : fonctionne sans JS) ------------------------- */

.ev-faq { display: flex; flex-direction: column; gap: 12px; }
.ev-faq-item { border: 1px solid var(--ev-line); border-radius: 16px; background: #fff; overflow: hidden; }
.ev-faq-q {
	display: flex; align-items: center; justify-content: space-between; gap: 18px;
	padding: 22px 26px;
	font-weight: 800; font-size: clamp(16px, 1.6vw, 19px); line-height: 1.35;
	cursor: pointer;
	list-style: none;
}
.ev-faq-q::-webkit-details-marker { display: none; }
.ev-faq-sign { flex: none; position: relative; width: 20px; height: 20px; }
.ev-faq-sign::before, .ev-faq-sign::after {
	content: ""; position: absolute; top: 50%; left: 0;
	width: 20px; height: 2.5px; margin-top: -1.25px;
	background: var(--ev-red);
	transition: transform .25s ease;
}
.ev-faq-sign::after { transform: rotate(90deg); }
.ev-faq-item[open] .ev-faq-sign::after { transform: rotate(0); }
.ev-faq-a { padding: 0 26px 22px; }
.ev-faq-a p { font-size: 16px; line-height: 1.65; color: var(--ev-ink-2); }

/* --- CTA final ----------------------------------------------------------- */

.ev-final {
	position: relative;
	padding: clamp(88px, 15vh, 200px) var(--ev-pad-x);
	background: var(--ev-red); color: #fff;
	text-align: center;
	overflow: hidden;
}
.ev-final-ring { position: absolute; border: 2px solid rgba(255, 255, 255, .15); border-radius: 50%; pointer-events: none; }
.ev-final-ring--a { top: -40px; right: -40px; width: 340px; height: 340px; }
.ev-final-ring--b { bottom: -80px; left: -60px; width: 260px; height: 260px; }
.ev-final-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.ev-final-logo { display: block; height: 84px; width: auto; margin: 0 auto 26px; filter: drop-shadow(0 4px 14px rgba(0, 0, 0, .15)); }
.ev-final-title {
	margin-bottom: 20px;
	font-family: var(--ev-cond); font-weight: 900;
	font-size: clamp(40px, 7vw, 104px); line-height: .94; letter-spacing: -.02em;
	text-transform: uppercase; text-wrap: balance;
}
.ev-final-sub {
	margin-bottom: 36px;
	font-family: var(--ev-cond); font-weight: 600;
	font-size: clamp(20px, 2.6vw, 32px);
	text-transform: uppercase;
}
.ev-final-note { margin-top: 22px; font-size: 13px; }

/* --- footer -------------------------------------------------------------- */

.ev-footer {
	display: flex; flex-direction: column; gap: 20px;
	/* padding latéral explicite, cf. §4 */
	padding: 34px var(--ev-pad-x);
	background: var(--ev-ink); color: #fff;
}
.ev-footer-top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.ev-footer-brand { display: flex; align-items: center; gap: 14px; }
.ev-footer-t {
	display: flex; align-items: center; justify-content: center;
	width: 34px; height: 34px;
	border-radius: 6px;
	background: var(--ev-red); color: #fff;
	font-family: var(--ev-cond); font-weight: 900; font-size: 22px;
}
.ev-footer-copy { font-size: 12px; color: rgba(255, 255, 255, .7); }
.ev-footer-legal { display: flex; flex-wrap: wrap; gap: 10px 26px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .14); }
.ev-footer-legal a { font-size: 13px; font-weight: 600; color: rgba(255, 255, 255, .78); text-decoration: none; }
.ev-footer-legal a:hover { color: #fff; text-decoration: underline; }

/* --- barre d'achat mobile ----------------------------------------------- */
/* Masquée par défaut ; mobile.css l'affiche sous 620px quand le JS a posé
   .is-visible. Les deux doivent être vrais : jamais de barre en desktop. */

.ev-buybar { display: none; }
