/* =========================================================================
   Kavira — feuille de style unique.
   Valeurs relevées au navigateur sur kavira.fr (getComputedStyle), pas déduites du CSS source.
   ========================================================================= */

:root {
	/* Couleurs */
	--orange: #dc7d46;          /* accent principal */
	--orange-fonce: #c96a34;
	--violet: #6d388b;          /* accent secondaire */
	--texte: #121212;
	--texte-doux: #5c5c5c;
	--beige: #f4eeea;           /* fond de section */
	--ligne: #e6e6e6;
	--rouge: #c52025;
	--rouge-fond: #fff8f8;
	--rouge-bord: #ffc5c8;
	--vert-trust: #00b67a;
	--etoile: #dc7d46;

	/* Structure */
	--wrap: 1400px;
	--gutter: 15px;
	--font: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--radius-media: 12px;
	--radius-btn: 8px;
	--radius-carte: 10px;
}
@media (min-width: 990px) { :root { --gutter: 50px; } }

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0; font-family: var(--font); font-size: 15px; line-height: 1.8;
	letter-spacing: .06em; color: rgba(18, 18, 18, .9); background: #fff;
	overflow-x: hidden;   /* aucun débordement horizontal */
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
h1, h2, h3 { margin: 0 0 .5em; line-height: 1.15; font-weight: 500; }
p { margin: 0 0 1em; }
s { color: var(--texte-doux); }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 900px; }
.center { text-align: center; }
.is-hidden { display: none; }
.visually-hidden {
	position: absolute; width: 1px; height: 1px; overflow: hidden;
	clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

.h2 {
	font-size: clamp(26px, 3vw, 39px); line-height: 1.2; text-align: center;
	font-weight: 500; letter-spacing: .02em; margin-bottom: .9em; color: var(--texte);
}
.h2--left { text-align: left; }
.h2--accent strong, .h2 strong { color: var(--orange); font-weight: 600; }

.stars { color: var(--etoile); letter-spacing: .08em; }
.stars--sm { font-size: 13px; }
.stars--trust { color: var(--vert-trust); }

.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .5em;
	background: var(--orange); color: #fff; font-weight: 700; font-size: 19px;
	text-decoration: none; padding: 13px 30px; border: 0; border-radius: var(--radius-btn);
	transition: background .15s ease, opacity .15s ease;
}
.btn:hover { background: var(--orange-fonce); }
.btn:disabled { opacity: .6; cursor: default; }
.btn--buy { width: 100%; min-height: 49px; letter-spacing: .05em; }
.btn--buy.is-loading { opacity: .7; }
.btn--outline { background: none; color: var(--orange); border: 1.5px solid var(--orange); font-size: 15px; }
.btn--outline:hover { background: rgba(220, 125, 70, .07); }

/* ------------------------------------------------------- Bandeau défilant */

.ticker {
	background: var(--orange); color: #fff; overflow: hidden;
	padding: 9px 0; font-size: 13px; letter-spacing: .04em;
}
.ticker__track {
	display: flex; gap: 60px; width: max-content;
	animation: ticker 38s linear infinite;
}
.ticker__track p { margin: 0; white-space: nowrap; }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; } }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ----------------------------------------------------------------- En-tête */

.header { background: #fff; border-bottom: 1px solid var(--ligne); position: sticky; top: 0; z-index: 60; }
.header__in { display: flex; align-items: center; gap: 16px; min-height: 64px; position: relative; }
@media (min-width: 990px) { .header__in { min-height: 106px; } }
.header__logo { display: block; text-decoration: none; }
.header__logo img { width: 130px; }
@media (min-width: 990px) {
	.header__logo { position: absolute; left: 50%; transform: translateX(-50%); }
	.header__logo img { width: 200px; }
}
.header__nav { display: none; }
@media (min-width: 990px) { .header__nav { display: flex; gap: 26px; font-size: 11px; letter-spacing: .1em; } }
.header__nav a { text-decoration: none; }
.header__nav a:hover { color: var(--orange); }
.header__icons { display: flex; align-items: center; gap: 18px; margin-left: auto; }
.header__icons a { display: flex; color: var(--texte); }
.burger { background: none; border: 0; padding: 8px 0; display: grid; gap: 5px; }
@media (min-width: 990px) { .burger { display: none; } }
.burger span { display: block; width: 22px; height: 1.5px; background: var(--texte); border-radius: 4px; }

.mobile-nav[hidden] { display: none; }
.mobile-nav {
	position: absolute; left: 0; right: 0; top: 100%; z-index: 70; background: #fff;
	border-bottom: 1px solid var(--ligne); padding-bottom: 10px;
}
.mobile-nav__in { display: grid; }
.mobile-nav a { text-decoration: none; padding: 13px 0; border-top: 1px solid var(--ligne); font-size: 15px; }

/* -------------------------------------------------------- Fiche : galerie */

.product { padding: 16px 0 24px; }
@media (min-width: 990px) { .product { padding: 36px 0; } }
.product__grid { display: grid; gap: 24px; }
@media (min-width: 990px) {
	.product__grid {
		grid-template-columns: minmax(0, 55%) minmax(0, 1fr);
		gap: 48px; align-items: start;
	}
}
.product__grid > * { min-width: 0; }

.gallery__stage {
	position: relative; aspect-ratio: 1; border-radius: var(--radius-media);
	overflow: hidden; background: var(--beige);
}
.gallery__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .2s; }
.gallery__img.is-active { opacity: 1; }
.gallery__thumbs {
	display: flex; gap: 8px; margin-top: 10px; overflow-x: auto;
	scrollbar-width: none; scroll-behavior: smooth;
}
.gallery__thumbs::-webkit-scrollbar { display: none; }
.gallery__thumb {
	flex: 0 0 19%; border: 1px solid var(--ligne); background: none; padding: 0;
	border-radius: 8px; overflow: hidden; transition: border-color .15s;
}
@media (max-width: 749px) { .gallery__thumb { flex-basis: 22%; } }
.gallery__thumb.is-active { border-color: var(--orange); border-width: 2px; }

/* ----------------------------------------------------------- Fiche : achat */

.buy__rating { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--texte-doux); margin-bottom: .6em; }
.buy__title {
	font-size: 26px; font-weight: 500; line-height: 1.15; letter-spacing: .035em;
	color: #111; margin: 0 0 12px;
}
.buy__title strong { font-weight: 650; }
@media (min-width: 750px) { .buy__title { font-size: 34px; } }

.buy__badge {
	display: inline-flex; background: var(--orange); color: #fff; font-size: 10px; font-weight: 600;
	letter-spacing: .04em; text-transform: uppercase; padding: 5px 10px; border-radius: 8px;
	box-shadow: 0 3px 8px rgba(220, 125, 70, .15); margin: 0 0 12px;
}
.buy__price { font-size: 20px; font-weight: 700; color: var(--orange); letter-spacing: .065em; margin-bottom: .7em; }

.buy__bullets { list-style: none; margin: 0 0 15px; padding: 0; display: grid; gap: 6px; font-size: 14px; }
.buy__bullets li { display: flex; align-items: flex-start; gap: 10px; }
.icon-check { color: var(--orange); flex: 0 0 18px; margin-top: 4px; }

.buy__stock {
	display: flex; align-items: center; justify-content: center; gap: 15px;
	background: var(--rouge-fond); border: 1px solid var(--rouge-bord); border-radius: 25px;
	color: var(--rouge); font-size: 13px; line-height: 1.25; padding: 8px 12px; margin-bottom: 14px;
	text-align: center;
}
@media (min-width: 750px) { .buy__stock { font-size: 15px; gap: 22px; padding: 9px 20px; border-radius: 30px; } }
.buy__stock strong { font-weight: 700; letter-spacing: .02em; }
.buy__stock-dot {
	width: 10px; height: 10px; flex: 0 0 10px; border-radius: 50%;
	background: #f0444b; box-shadow: 0 0 0 3px #ffe4e5;
}

/* ------------------------------------------------------ Paliers de quantité */

.paliers__title { font-size: 15px; font-weight: 700; text-align: center; margin-bottom: 12px; }
.paliers { display: grid; gap: 10px; margin-bottom: 16px; }

.palier {
	position: relative; display: flex; align-items: center; gap: 12px;
	border: 2px solid rgba(204, 203, 203, .48); border-radius: var(--radius-carte);
	background: #fff; padding: 14px 14px; cursor: pointer; transition: border-color .15s, background .15s;
}
.palier:hover { border-color: rgba(220, 125, 70, .5); }
.palier.is-active { border-color: var(--orange); background: rgba(220, 125, 70, .12); }
.palier input { position: absolute; opacity: 0; pointer-events: none; }

.palier__check {
	flex: 0 0 20px; width: 20px; height: 20px; border-radius: 50%;
	border: 2px solid var(--ligne); background: #fff; display: grid; place-items: center;
}
.palier.is-active .palier__check { border-color: var(--orange); }
.palier.is-active .palier__check::after {
	content: ''; width: 10px; height: 10px; border-radius: 50%; background: var(--orange);
}

.palier__body { flex: 1; display: grid; gap: 2px; min-width: 0; }
.palier__head { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.palier__titre { font-size: 15px; font-weight: 700; line-height: 1.25; }
.palier__tag {
	font-size: 11px; color: #020202; background: rgba(255, 61, 61, .17);
	border-radius: 4px; padding: 1px 7px; white-space: nowrap;
}
.palier__sous { font-size: 14px; color: #777; line-height: 1.3; }
.palier__cadeau { font-size: 13px; color: var(--orange); font-weight: 600; margin-top: 3px; }

.palier__prix { text-align: right; display: grid; gap: 1px; white-space: nowrap; }
.palier__prix-actuel { font-size: 15px; font-weight: 700; color: #070707; }
.palier__prix-barre { font-size: 13px; font-weight: 400; color: #1a1a1b; opacity: .55; }

.palier__badge {
	position: absolute; top: -10px; right: 12px; background: var(--orange); color: #fff;
	font-size: 11px; font-weight: 600; letter-spacing: .02em; padding: 2px 10px; border-radius: 999px;
}

.buy__err { color: var(--rouge); font-size: 14px; margin-bottom: .6em; }

.buy__reassurance {
	display: flex; justify-content: center; gap: 18px; flex-wrap: wrap;
	margin: 14px 0 0; font-size: 14px; font-weight: 500; color: var(--orange);
}

/* ------------------------------------------------------- Badges de paiement */

.paiements { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px; list-style: none; margin: 15px 0 0; padding: 0; }
.paiements__item { display: flex; }
.paiements__svg { width: 38px; height: 24px; display: block; border-radius: 4px; }

/* --------------------------------------------- Mini-carrousel d'avis (achat) */

.minirev { margin-top: 20px; position: relative; }
.minirev__track {
	display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory;
	scrollbar-width: none; scroll-behavior: smooth;
}
.minirev__track::-webkit-scrollbar { display: none; }
.minirev__item {
	flex: 0 0 100%; scroll-snap-align: center; margin: 0; display: flex; gap: 12px;
	background: var(--beige); border-radius: 40px; padding: 14px 18px; align-items: center;
}
.minirev__avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex: 0 0 56px; }
.minirev__item blockquote { margin: 0 0 4px; font-size: 14px; line-height: 1.45; }
.minirev__item figcaption { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--texte-doux); }
.minirev__nav { display: flex; justify-content: center; gap: 10px; margin-top: 10px; }
.minirev__nav button, .resultats__nav button, .satisfaits__nav button {
	width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--ligne);
	background: #fff; font-size: 18px; line-height: 1; color: var(--texte);
}
.minirev__nav button:disabled, .resultats__nav button:disabled, .satisfaits__nav button:disabled { opacity: .3; cursor: default; }

/* ------------------------------------------------------------ Accordéons */

.accordions { padding: 18px 0 27px; }
@media (min-width: 750px) { .accordions { padding: 24px 0 36px; } }
.acc { border-bottom: 1px solid var(--ligne); }
.acc summary {
	padding: 16px 4px; font-weight: 500; cursor: pointer; list-style: none;
	display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: 16px;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after {
	content: ''; flex: 0 0 10px; width: 10px; height: 6px; margin-left: auto;
	background: currentColor; transition: transform .25s;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.acc[open] summary::after { transform: rotate(180deg); }
.acc__body { padding: 0 4px 18px; font-size: 15px; }
.acc--faq { border-color: var(--orange); }
.acc--faq[open] { border-color: #d5aeea; }
.acc--faq[open] summary { color: #000; }
.prose ul, .prose ol { padding-left: 1.4em; margin: 0 0 1.2em; }
.prose li { margin-bottom: .4em; }
.page h2 { font-size: clamp(18px, 2vw, 22px); margin: 1.6em 0 .5em; }
.page h2:first-of-type { margin-top: .8em; }
.page blockquote {
	margin: 1.2em 0; padding: 16px 20px; background: var(--beige);
	border-radius: var(--radius-carte); font-size: 14px;
}
.prose p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------- Résultats */

.resultats { padding: 27px 0; }
@media (min-width: 750px) { .resultats { padding: 36px 0; } }
.resultats__track {
	display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory;
	scrollbar-width: none; scroll-behavior: smooth;
}
.resultats__track::-webkit-scrollbar { display: none; }
.resultats__item { flex: 0 0 calc(50% - 6px); scroll-snap-align: start; margin: 0; }
@media (min-width: 768px) { .resultats__item { flex-basis: calc(25% - 21px); } .resultats__track { gap: 28px; } }
.resultats__item img { border-radius: 4px; width: 100%; }
.resultats__nav { display: flex; justify-content: center; gap: 10px; margin-top: 16px; }

/* ------------------------------------------------------- Clients satisfaits */

.satisfaits { padding: 27px 0; }
@media (min-width: 750px) { .satisfaits { padding: 36px 0; } }
.satisfaits__note { text-align: center; font-size: 14px; display: flex; justify-content: center; align-items: center; gap: 8px; margin-bottom: 1.4em; }
@media (min-width: 750px) { .satisfaits__note { font-size: 18px; } }
.satisfaits__note strong { font-size: 1.25em; }
.satisfaits__track {
	display: flex; gap: 15px; overflow-x: auto; scroll-snap-type: x mandatory;
	scrollbar-width: none; scroll-behavior: smooth;
}
.satisfaits__track::-webkit-scrollbar { display: none; }
.satisfaits__item {
	flex: 0 0 100%; scroll-snap-align: center; margin: 0; text-align: center;
	background: var(--beige); border-radius: 16px; padding: 24px 20px;
	display: grid; gap: 12px; justify-items: center;
}
@media (min-width: 750px) { .satisfaits__item { flex-basis: calc(33.333% - 16px); } .satisfaits__track { gap: 24px; } }
.satisfaits__item blockquote { margin: 0; font-size: 14px; line-height: 1.6; }
.satisfaits__item figcaption { display: grid; justify-items: center; gap: 6px; font-size: 13px; }
.satisfaits__item figcaption img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.satisfaits__nav { display: flex; justify-content: center; gap: 10px; margin-top: 16px; }

/* ------------------------------------------------------- Image + texte */

.imgtxt { padding: 0 0 16px; }
@media (min-width: 750px) { .imgtxt { padding: 36px 0; } }
.imgtxt--beige { background: var(--beige); padding-top: 24px; }
.imgtxt__grid { display: grid; gap: 20px; align-items: center; }
@media (min-width: 750px) { .imgtxt__grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
.imgtxt__media img { border-radius: var(--radius-media); width: 100%; }
@media (min-width: 750px) {
	.imgtxt--droite .imgtxt__media { order: 2; }
	.imgtxt--droite .imgtxt__text  { order: 1; }
}
.imgtxt__text .h2 { margin-bottom: .6em; }
.imgtxt__text .prose { font-size: 14px; }

/* ------------------------------------------------------------------ Avis */

.reviews { padding: 27px 0; }
@media (min-width: 750px) { .reviews { padding: 36px 0; } }
.reviews__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px 20px; margin-bottom: 18px; }
.reviews__head .h2 { margin: 0; }
.reviews__score { display: flex; align-items: center; gap: 8px; margin: 0; font-size: 15px; }
.reviews__score strong { font-size: 24px; font-weight: 700; }
.reviews__score small { color: var(--texte-doux); }

.reviews__bars { display: grid; gap: 5px; max-width: 420px; margin-bottom: 24px; }
.reviews__bar { display: grid; grid-template-columns: 40px 1fr 44px; align-items: center; gap: 10px; font-size: 12px; }
.reviews__bar-rail { height: 8px; background: var(--ligne); border-radius: 999px; overflow: hidden; }
.reviews__bar-fill { display: block; height: 100%; background: var(--orange); }
.reviews__bar-pct { text-align: right; color: var(--texte-doux); }

.reviews__list { display: grid; gap: 16px; }
@media (min-width: 750px) { .reviews__list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .reviews__list { grid-template-columns: repeat(3, 1fr); } }
.review { border: 1px solid var(--ligne); border-radius: var(--radius-carte); padding: 16px; }
.review__who { display: flex; align-items: center; gap: 8px; font-size: 14px; margin-bottom: .3em; }
.review__avatar {
	width: 30px; height: 30px; flex: 0 0 30px; border-radius: 50%; background: var(--beige);
	display: grid; place-items: center; font-weight: 700; color: var(--orange);
}
.review__verified { font-size: 11px; color: var(--vert-trust); }
.review__title { margin: .2em 0; }
.review__text { margin: 0; font-size: 14px; line-height: 1.6; }

/* ------------------------------------------------------------------- FAQ */

.faq { padding: 27px 0 36px; }
@media (min-width: 750px) { .faq { padding: 36px 0 48px; } }

/* ------------------------------------------------------------- Pied de page */

.footer { background: var(--orange); color: #fff; padding: 24px 0 15px; margin-top: 0; position: relative; }
/* L'espace se prend AVANT la vague, jamais entre la vague et le pied de page. */
.footer__vagues { margin-top: 40px; }
@media (min-width: 750px) { .footer { padding: 32px 0 20px; } }
.footer__vagues { display: block; width: 100%; height: 40px; margin-bottom: -1px; color: var(--orange); }
.footer a { color: #fff; }
.footer__in { display: grid; gap: 24px; }
@media (min-width: 750px) { .footer__in { grid-template-columns: 1.2fr 1fr 1fr; gap: 32px; } }
.footer__logo img { width: 200px; }
.footer__col h2 { font-size: 16px; font-weight: 500; margin-bottom: .8em; }
@media (min-width: 990px) { .footer__col h2 { font-size: 18px; } }
.footer__links { display: grid; gap: 8px; font-size: 14px; list-style: none; margin: 0; padding: 0; }
.footer__links a { text-decoration: none; }
.footer__links a:hover { text-decoration: underline; }
.footer__news { display: flex; gap: 0; margin-top: 12px; max-width: 320px; }
.footer__news input {
	flex: 1; min-width: 0; padding: 11px 14px; border: 1px solid rgba(255, 255, 255, .6);
	border-right: 0; border-radius: 6px 0 0 6px; background: transparent; color: #fff; font-size: 14px;
}
.footer__news input::placeholder { color: rgba(255, 255, 255, .75); }
.footer__news button {
	border: 1px solid rgba(255, 255, 255, .6); border-left: 0; border-radius: 0 6px 6px 0;
	background: transparent; color: #fff; padding: 0 14px;
}
.footer__paiements { margin-top: 24px; }
.footer__legal { text-align: center; font-size: 12px; margin: 20px 0 0; opacity: .9; }

/* ------------------------------------------------------------------ Merci */

.merci { padding-top: 40px; padding-bottom: 40px; }
.merci__recap { border: 1px solid var(--ligne); border-radius: var(--radius-carte); padding: 16px; margin: 20px 0; }
.merci__recap p { display: flex; justify-content: space-between; margin: 0 0 .5em; }
.merci__total { border-top: 1px solid var(--ligne); padding-top: .6em; }

/* ------------------------------------------------------------------ Pages */

.page { padding-top: 32px; padding-bottom: 48px; }   /* jamais en raccourci : .wrap pose le padding latéral */
.page h1 { font-size: clamp(24px, 3vw, 34px); margin-bottom: .8em; }

/* ------------------------------------------------------- Formulaires de service */

.contact-form { max-width: 520px; margin-top: 1.5em; }
.contact-form .co-field { margin-bottom: 14px; }
.contact-form label { display: block; font-size: 13px; color: var(--texte-doux); margin-bottom: 4px; }
.contact-form input, .contact-form textarea {
	width: 100%; padding: 12px 14px; font-size: 15px; font-family: inherit;
	border: 1px solid var(--ligne); border-radius: 8px; background: #fff; color: var(--texte);
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--orange); outline-offset: -2px; }
.contact-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact__ok { background: #f0fdf4; border: 1px solid #bbf7d0; color: #15803d; padding: 14px; border-radius: 8px; }
.contact__err { background: var(--rouge-fond); border: 1px solid var(--rouge-bord); color: var(--rouge); padding: 12px; border-radius: 8px; }

/* ------------------------------------------------------------------ Accueil */

.hero { background: var(--beige); }
.hero__lien { display: block; }
.hero img { width: 100%; height: auto; }

.gamme { padding: 32px 0 48px; }
@media (min-width: 750px) { .gamme { padding: 48px 0 64px; } }
.gamme__grille { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .gamme__grille { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.gamme__carte {
	display: block; text-decoration: none; text-align: center;
	border: 1px solid var(--ligne); border-radius: var(--radius-media);
	padding: 12px 12px 16px; transition: border-color .15s, transform .15s;
}
.gamme__carte:hover { border-color: var(--orange); transform: translateY(-2px); }
.gamme__media { background: var(--beige); border-radius: 8px; overflow: hidden; margin-bottom: 10px; }
.gamme__media img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.gamme__nom { font-size: 14px; font-weight: 600; margin: 0 0 .2em; line-height: 1.3; }
.gamme__prix { font-size: 15px; font-weight: 700; color: var(--orange); margin: 0; }
.gamme__bientot { font-size: 11px; color: var(--texte-doux); margin: .3em 0 0; }
.gamme__cta { margin-top: 28px; }
