/* Maquette Fiche produit Export Compta 2026 */

:root {
	--brand-orange: #e98030;
	--brand-orange-light: #f5a623;
	--brand-orange-soft: #fff4eb;
	--bg-page: #f8f8f8;
	--bg-dark: #111;
	--border: #e8e8e8;
	--text: #000;
	--text-muted: #666;
	--link: #e98030;
	--success: #1a7f4b;
	--radius: 16px;
	--radius-sm: 10px;
	--max: 1280px;
	--font: 'Muli', sans-serif;
	--font-display: 'Montserrat', sans-serif;
	--ease-out: cubic-bezier(0.22, 1, 0.36, 1);
	--header-offset: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
	.reveal { opacity: 1 !important; transform: none !important; }
}

body {
	margin: 0;
	font-family: var(--font);
	font-size: 17px;
	line-height: 1.6;
	color: var(--text);
	background: var(--bg-page);
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }

.mock-banner {
	margin: 0;
	padding: 10px 16px;
	background: #111;
	color: #fff;
	font-size: 13px;
	text-align: center;
}
.mock-banner code { background: rgba(255,255,255,.12); padding: 2px 6px; border-radius: 4px; }
.mock-banner a { color: var(--brand-orange-light); }

.wrapper { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 200;
	background: rgba(255,255,255,.92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border);
}
.site-header__inner {
	max-width: var(--max);
	margin: 0 auto;
	padding: 14px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.logo {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.05rem;
	color: var(--text);
	text-decoration: none;
}
.logo span { color: var(--brand-orange); }
.nav { display: flex; flex-wrap: wrap; gap: 8px 16px; align-items: center; font-size: 14px; font-weight: 600; }
.nav a { color: var(--text); text-decoration: none; }
.nav a:hover { color: var(--brand-orange); text-decoration: none; }
.nav-cart { display: inline-flex; align-items: center; gap: 6px; }
.nav-cart__count {
	background: var(--brand-orange);
	color: #fff;
	font-size: 11px;
	min-width: 20px;
	height: 20px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 28px;
	background: var(--brand-orange);
	color: #fff !important;
	border: 2px solid var(--brand-orange);
	border-radius: var(--radius-sm);
	font-family: var(--font-display);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	text-decoration: none !important;
	cursor: pointer;
	transition: background .25s, color .25s, transform .25s var(--ease-out);
}
.btn:hover { background: #fff; color: var(--brand-orange) !important; transform: translateY(-1px); text-decoration: none !important; }
.btn--block { width: 100%; }
.btn--outline { background: transparent; color: var(--brand-orange) !important; }
.btn--outline:hover { background: var(--brand-orange); color: #fff !important; }
.btn--sm { padding: 10px 18px; font-size: 12px; }
.btn--lg { padding: 16px 32px; font-size: 15px; }

.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section--soft { background: var(--brand-orange-soft); }
.section-title {
	font-family: var(--font-display);
	font-size: clamp(1.35rem, 3vw, 1.75rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	margin: 0 0 32px;
	line-height: 1.2;
}
.section-title--center { text-align: center; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }

.breadcrumb {
	font-size: 14px;
	color: var(--text-muted);
	margin-bottom: 24px;
}
.breadcrumb a { color: var(--text-muted); }

/* Product hero */
.product-hero { padding: 32px 0 48px; }
.product-hero__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	align-items: start;
}
@media (min-width: 1024px) {
	.product-hero__grid { grid-template-columns: 1.05fr .95fr; gap: 48px; }
}

.gallery__main {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}
.gallery__main img { object-fit: contain; width: 100%; height: 100%; }
.gallery__thumbs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	margin-top: 12px;
}
.gallery__thumb {
	border: 2px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 0;
	background: #fff;
	cursor: pointer;
	overflow: hidden;
	aspect-ratio: 1;
	transition: border-color .2s;
}
.gallery__thumb.is-active, .gallery__thumb:hover { border-color: var(--brand-orange); }
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.buy-box {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px;
	box-shadow: 0 16px 48px rgba(0,0,0,.06);
}
@media (min-width: 1024px) {
	.buy-box { position: sticky; top: calc(var(--header-offset) + 16px); }
}
.buy-box__eyebrow {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--brand-orange);
	margin: 0 0 8px;
}
.buy-box__title {
	font-family: var(--font-display);
	font-size: clamp(1.35rem, 2.5vw, 1.65rem);
	font-weight: 800;
	line-height: 1.15;
	text-transform: uppercase;
	letter-spacing: -.02em;
	margin: 0 0 12px;
}
.buy-box__rating {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 12px;
	font-size: 14px;
	margin-bottom: 16px;
}
.buy-box__stars { color: var(--brand-orange); font-weight: 700; }
.buy-box__reviews { color: var(--text-muted); }
.buy-box__price-from {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: var(--text-muted);
	text-transform: none;
	margin-bottom: 2px;
}
.buy-box__price {
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 800;
	margin: 0 0 20px;
}
.buy-box__field { margin-bottom: 16px; }
.buy-box__field label {
	display: block;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 6px;
}
.buy-box__field select,
.buy-box__field input {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	font: inherit;
	background: #fff;
}
.buy-box__trust {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--border);
	font-size: 12px;
	color: var(--text-muted);
}
.buy-box__trust strong { display: block; color: var(--text); font-size: 13px; }

.trust-strip {
	background: #fff;
	border-block: 1px solid var(--border);
	padding: 20px 0;
}
.trust-strip__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}
@media (min-width: 768px) { .trust-strip__grid { grid-template-columns: repeat(4, 1fr); } }
.trust-strip__item strong { display: block; font-family: var(--font-display); font-size: 14px; }
.trust-strip__item span { font-size: 13px; color: var(--text-muted); }

/* Pitch */
.pitch {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	align-items: center;
}
@media (min-width: 900px) { .pitch { grid-template-columns: 1fr 1fr; } }
.pitch__lead {
	font-family: var(--font-display);
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 16px;
}
.pitch__stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}
.pitch-stat {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 16px;
	text-align: center;
}
.pitch-stat strong {
	display: block;
	font-family: var(--font-display);
	font-size: 1.5rem;
	color: var(--brand-orange);
}
.pitch-stat span { font-size: 13px; color: var(--text-muted); }

/* Bento features */
.bento {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}
@media (min-width: 768px) { .bento { grid-template-columns: repeat(3, 1fr); } }
.bento-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px 24px;
	height: 100%;
}
.bento-card--wide { grid-column: 1 / -1; }
@media (min-width: 768px) {
	.bento-card--wide { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
}
.bento-card__icon { font-size: 2rem; margin-bottom: 12px; }
.bento-card h3 {
	font-family: var(--font-display);
	font-size: 1.05rem;
	font-weight: 700;
	margin: 0 0 10px;
	text-transform: uppercase;
}
.bento-card ul { margin: 0; padding-left: 18px; color: var(--text-muted); font-size: 15px; }
.bento-card li + li { margin-top: 6px; }

/* Steps */
.steps {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	counter-reset: step;
}
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 24px;
	position: relative;
}
.step::before {
	counter-increment: step;
	content: counter(step);
	position: absolute;
	top: -12px;
	left: 20px;
	width: 32px;
	height: 32px;
	background: var(--brand-orange);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 14px;
}
.step h3 { font-family: var(--font-display); font-size: 1rem; margin: 8px 0 8px; text-transform: uppercase; }
.step p { margin: 0; font-size: 15px; color: var(--text-muted); }

/* Tabs / captures */
.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 24px;
}
.tabs [role="tab"] {
	padding: 10px 18px;
	border: 1px solid var(--border);
	border-radius: 999px;
	background: #fff;
	font: inherit;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	transition: border-color .2s, background .2s;
}
.tabs [role="tab"].is-active {
	background: var(--brand-orange);
	border-color: var(--brand-orange);
	color: #fff;
}
.capture-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}
@media (min-width: 768px) { .capture-grid { grid-template-columns: 1fr 1fr; } }
.capture-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
}
.capture-card figcaption {
	padding: 12px 16px;
	font-size: 14px;
	font-weight: 600;
	border-top: 1px solid var(--border);
}

/* Highlight version */
.version-highlight {
	background: linear-gradient(135deg, #111, #333);
	color: #fff;
	border-radius: var(--radius);
	padding: 32px;
}
.version-highlight h2 { color: #fff; margin-top: 0; }
.version-highlight ul { margin: 0; padding-left: 18px; color: rgba(255,255,255,.85); }
.version-highlight li + li { margin-top: 8px; }
.version-badge {
	display: inline-block;
	background: var(--brand-orange);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 999px;
	margin-bottom: 12px;
}

/* Checklist */
.check-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}
@media (min-width: 768px) { .check-grid { grid-template-columns: 1fr 1fr; } }
.check-item {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 14px 16px;
	font-size: 15px;
}
.check-item::before { content: '✓'; color: var(--success); font-weight: 800; flex-shrink: 0; }

/* Demo + specs */
.info-split {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}
@media (min-width: 900px) { .info-split { grid-template-columns: 1fr 1fr; } }
.info-box {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 24px;
}
.info-box h3 { font-family: var(--font-display); font-size: 1rem; text-transform: uppercase; margin: 0 0 12px; }
.info-box dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 8px 16px; font-size: 14px; }
.info-box dt { font-weight: 700; color: var(--text-muted); }
.info-box dd { margin: 0; }
.demo-creds {
	background: var(--brand-orange-soft);
	border-radius: var(--radius-sm);
	padding: 16px;
	font-size: 14px;
	margin-top: 12px;
}
.demo-creds code { background: rgba(0,0,0,.06); padding: 2px 6px; border-radius: 4px; font-size: 13px; }

/* Reviews */
.reviews-head {
	text-align: center;
	margin-bottom: 32px;
}
.reviews-score {
	font-family: var(--font-display);
	font-size: 3rem;
	font-weight: 800;
	color: var(--brand-orange);
	line-height: 1;
}
.reviews-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
.review-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 20px;
}
.review-card__stars { color: var(--brand-orange); font-weight: 700; font-size: 14px; }
.review-card__author { font-weight: 700; font-size: 14px; margin: 8px 0 4px; }
.review-card__text { margin: 0; font-size: 15px; color: var(--text-muted); font-style: italic; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-list details {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	margin-bottom: 10px;
	overflow: hidden;
}
.faq-list summary {
	padding: 16px 20px;
	font-weight: 700;
	cursor: pointer;
	list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details[open] summary { border-bottom: 1px solid var(--border); }
.faq-list details div { padding: 16px 20px; color: var(--text-muted); font-size: 15px; }
.faq-list details p { margin: 0; }

/* Related products */
.product-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}
@media (min-width: 768px) { .product-row { grid-template-columns: repeat(3, 1fr); } }
.product-mini {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: transform .25s var(--ease-out), box-shadow .25s;
}
.product-mini:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(233,128,48,.12); text-decoration: none; }
.product-mini__media {
	aspect-ratio: 4/3;
	background: var(--brand-orange-soft);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
}
.product-mini__body { padding: 16px; }
.product-mini__title { font-family: var(--font-display); font-size: 14px; font-weight: 700; margin: 0 0 8px; line-height: 1.3; }
.product-mini__price { font-weight: 800; color: var(--brand-orange); font-size: 15px; }

/* CTA band */
.cta-band {
	background: var(--bg-dark);
	color: #fff;
	text-align: center;
	padding: 64px 24px;
}
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.35rem, 3vw, 1.75rem); margin: 0 0 12px; text-transform: uppercase; }
.cta-band p { color: rgba(255,255,255,.75); max-width: 520px; margin: 0 auto 24px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* Mobile sticky buy */
.mobile-buy {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 150;
	background: #fff;
	border-top: 1px solid var(--border);
	padding: 12px 16px;
	display: flex;
	align-items: center;
	gap: 12px;
	box-shadow: 0 -8px 32px rgba(0,0,0,.08);
}
@media (min-width: 1024px) { .mobile-buy { display: none; } }
.mobile-buy__price { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; white-space: nowrap; }
.mobile-buy .btn { flex: 1; padding: 12px 16px; }

.site-footer {
	text-align: center;
	padding: 48px 24px;
	font-size: 14px;
	color: var(--text-muted);
	border-top: 1px solid var(--border);
}

@media (max-width: 1023px) {
	body { padding-bottom: 72px; }
}
