/* ============================================
   OLIVE OIL LANDING - DESIGN SYSTEM
   Aesthetic: Luxury Mediterranean Terroir
============================================ */

/* ============================================
   DESIGN TOKENS
============================================ */

:root {
	/* === PRIMARY PALETTE === */
	--olive-deep: #2D4A1C;
	--olive-rich: #3D5A27;
	--olive-medium: #557A35;
	--olive-light: #8AAD65;
	--olive-pale: #C5D9A4;
	
	/* === GOLD ACCENTS === */
	--gold-dark: #8B6914;
	--gold-primary: #C9A962;
	--gold-light: #E4D4A5;
	--gold-pale: #F5EED8;
	
	/* === EARTH TONES === */
	--earth-dark: #3D2B1F;
	--earth-medium: #5C4033;
	--earth-warm: #8B7355;
	--terracotta: #A67B5B;
	
	/* === NEUTRALS === */
	--cream-dark: #F5F0E6;
	--cream-primary: #FAF6F0;
	--cream-light: #FDFBF7;
	--white-natural: #FEFEFE;
	
	/* === TEXT === */
	--text-primary: #2A2318;
	--text-secondary: #5C5346;
	--text-muted: #8A8277;
	--text-light: #FAF6F0;
	
	/* === FUNCTIONAL === */
	--success: #4A7C23;
	--whatsapp: #25D366;
	--paypal: #003087;
	
	/* === STRIPE ACCENTS === */
	--stripe-primary: #635BFF;
	--stripe-dark: #4A42CC;
	--stripe-light: #87BBFD;
	--stripe-pale: #E3E7FF;
	
	/* === EFFECTS === */
	--shadow-soft: 0 4px 20px rgba(45, 74, 28, 0.08);
	--shadow-medium: 0 8px 40px rgba(45, 74, 28, 0.12);
	--shadow-strong: 0 16px 60px rgba(45, 74, 28, 0.16);
	--shadow-gold: 0 8px 32px rgba(201, 169, 98, 0.25);
	
	/* === TRANSITIONS === */
	--transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	
	/* === SPACING === */
	--space-xs: 0.5rem;
	--space-sm: 1rem;
	--space-md: 1.5rem;
	--space-lg: 2rem;
	--space-xl: 3rem;
	--space-2xl: 5rem;
	--space-3xl: 8rem;
	
	/* === RADIUS === */
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 16px;
	--radius-xl: 24px;
	--radius-full: 9999px;
}

/* ============================================
   RESET & BASE
============================================ */

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

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

body {
	font-family: 'Outfit', sans-serif;
	font-weight: 400;
	line-height: 1.7;
	color: var(--text-primary);
	background: var(--cream-primary);
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
	transition: var(--transition-fast);
}

/* ============================================
   TYPOGRAPHY
============================================ */

h1, h2, h3, h4, h5, h6 {
	font-family: 'Cormorant Garamond', serif;
	font-weight: 600;
	line-height: 1.2;
	color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 3vw, 2rem); }
h4 { font-size: clamp(1.125rem, 2vw, 1.5rem); }

p {
	font-size: 1rem;
	color: var(--text-secondary);
	max-width: 65ch;
}

/* ============================================
   UTILITIES
============================================ */

.container {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 var(--space-md);
}

.section-padding {
	padding: var(--space-2xl) 0;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold-primary); }
.text-olive { color: var(--olive-rich); }

/* ============================================
   DECORATIVE ELEMENTS
============================================ */

.section-label {
	font-family: 'Outfit', sans-serif;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--olive-medium);
	display: flex;
	align-items: center;
	gap: var(--space-sm);
	margin-bottom: var(--space-sm);
}

.section-label::before,
.section-label::after {
	content: '';
	width: 20px;
	height: 1px;
	background: var(--gold-primary);
}

/* ============================================
   BUTTONS & PAYMENT CTAs
============================================ */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-xs);
	padding: 0.875rem 1.5rem;
	font-family: 'Outfit', sans-serif;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	border: none;
	border-radius: var(--radius-md);
	cursor: pointer;
	transition: var(--transition-smooth);
	min-height: 48px;
	text-decoration: none;
	white-space: nowrap;
}

/* Button variants */

.btn--primary {
	background: linear-gradient(135deg, var(--olive-rich), var(--olive-deep));
	color: var(--text-light);
	box-shadow: var(--shadow-medium);
}

.btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-strong);
}

.btn--gold {
	background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
	color: var(--white-natural);
	box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 40px rgba(201, 169, 98, 0.35);
}

.btn--whatsapp {
	background: linear-gradient(135deg, #25D366, #128C7E);
	color: white;
}

.btn--whatsapp:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn--paypal {
	background: linear-gradient(135deg, #0070BA, #003087);
	color: white;
}

.btn--paypal:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 32px rgba(0, 112, 186, 0.45);
}

/* Stripe button (checkout) */
.btn--stripe {
	background: linear-gradient(135deg, var(--stripe-primary), var(--stripe-light));
	color: white;
	box-shadow: 0 8px 24px rgba(99, 91, 255, 0.35);
}

.btn--stripe:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 40px rgba(99, 91, 255, 0.45);
}

/* Outline button */
.btn--outline {
	background: transparent;
	color: var(--olive-rich);
	border: 2px solid var(--olive-rich);
}

.btn--outline:hover {
	background: var(--olive-rich);
	color: var(--text-light);
}

/* Icon inside buttons */
.btn svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

/* ============================================
   HEADER
============================================ */

.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: var(--space-sm) 0;
	background: rgba(45, 74, 28, 0.95);
	backdrop-filter: blur(20px);
}

/* Header scrolled state */
.header--scrolled {
	background: rgba(250, 246, 240, 0.98);
	box-shadow: var(--shadow-soft);
}

.header--scrolled .header__nav-link {
	color: var(--text-secondary);
}

.header--scrolled .header__nav-link:hover {
	color: var(--olive-rich);
}

.header--scrolled .header__logo-text {
	color: var(--olive-deep);
}

.header--scrolled .header__menu-toggle span {
	background: var(--olive-deep);
}

.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-md);
}

.header__logo {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
	flex-shrink: 0;
}

.header__logo-img {
	width: 48px;
	height: 48px;
	object-fit: contain;
}

.header__logo-text {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.5rem;
	font-weight: 600;
	letter-spacing: 0.25rem;
	color: var(--cream-light);
}

.header__logo-text span {
	color: var(--gold-primary);
}

.header__nav {
	display: flex;
	align-items: center;
	gap: var(--space-lg);
}

.header__nav-list {
	display: flex;
	align-items: center;
	gap: var(--space-lg);
	list-style: none;
}

.header__nav-link {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--cream-light);
	position: relative;
}

.header__nav-link::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gold-primary);
	transition: var(--transition-fast);
}

.header__nav-link:hover::after {
	width: 100%;
}

.header__cta {
	padding: 0.625rem 1.25rem;
	font-size: 0.8125rem;
}

/* Burger menu button */
.header__menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: var(--space-xs);
	z-index: 1001;
}

.header__menu-toggle span {
	width: 24px;
	height: 2px;
	background: var(--cream-light);
	transition: var(--transition-fast);
	display: block;
}

/* ============================================
   MOBILE MENU
============================================ */

.mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
	justify-content: center;
	align-items: center;
	padding: 90px 24px 40px;
	overflow: hidden;

	/* Fond : image olive floutée + voile crème */
	background:
		linear-gradient(160deg, rgba(255,255,255,0.82), rgba(245,239,224,0.90)),
		url('https://olivamor.com/assets/img/recolte-des-olives-en-famille-a-la-main.webp');
	background-size: cover;
	background-position: center;
	backdrop-filter: blur(4px);

	/* pour le ripple */
	--ripple-x: 50%;
	--ripple-y: 50%;

	animation: menuFade 0.25s ease-out;
}

.mobile-menu.active {
	display: flex;
}

/* Conteneur interne */
.mobile-menu-inner {
	width: 100%;
	max-width: 420px;
	text-align: center;
}

/* Branding dans le menu mobile */
.mobile-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.25rem;
	text-transform: uppercase;
	color: #2A2318;
	margin-bottom: 40px;
	text-align: center;
	display: block;
	text-decoration: none;
	opacity: 0;
	animation: mobileTitleFade 0.35s ease-out forwards;
}

/* Bouton fermeture */
.mobile-close {
	position: absolute;
	top: 24px;
	right: 24px;
	background: none;
	border: none;
	font-size: 2rem;
	font-weight: 300;
	color: #2A2318;
	cursor: pointer;
	transition: 0.2s;
}

.mobile-close:hover {
	color: #557A35;
	transform: scale(1.03);
}

/* Navigation */
.mobile-nav {
	display: flex;
	flex-direction: column;
	gap: 26px;
	margin-bottom: 40px;
}

.mobile-link {
	position: relative;
	font-size: 1.35rem;
	font-weight: 500;
	color: #2A2318;
	transition: 0.25s ease;
	padding: 6px 0;
	opacity: 0;
	transform: translateY(6px);
}

/* Entrée animée des liens */
.mobile-menu.active .mobile-link {
	opacity: 1;
	transform: translateY(0);
}

/* Soulignement doré au hover */
.mobile-link::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -8px;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #bfa86a, #d6c28b, #bfa86a);
	border-radius: 2px;
	transition: 0.3s ease;
	opacity: 0;
}

.mobile-link:hover {
	color: #557A35;
	letter-spacing: 0.5px;
}

.mobile-link:hover::after {
	width: 40px;
	opacity: 0.8;
}

/* CTA mobile */
.mobile-cta {
	display: inline-block;
	margin-top: 10px;
	padding: 15px 28px;
	border-radius: 14px;
	background: linear-gradient(135deg, #c9a962, #b18c45);
	color: #fff;
	font-size: 1.15rem;
	font-weight: 600;
	text-decoration: none;
	transition: 0.2s;
	box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.mobile-cta:hover {
	opacity: 0.95;
	transform: translateY(-2px);
}

/* Effet ripple sur le fond */
.mobile-menu::before {
	content: "";
	position: absolute;
	left: var(--ripple-x);
	top: var(--ripple-y);
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(201,169,98,0.45) 0%, rgba(201,169,98,0.0) 70%);
	transform: translate(-50%, -50%) scale(0);
	opacity: 0;
	pointer-events: none;
}

.mobile-menu.ripple-active::before {
	animation: rippleWave 0.6s ease-out forwards;
}

/* Mobile menu - petit écran */
@media (max-width: 480px) {
	.mobile-menu {
		padding: 80px 18px 32px;
	}

	.mobile-title {
		font-size: 1.5rem;
		font-weight: 600;
		letter-spacing: 0.25rem;
		margin-bottom: 32px;
	}
}

/* ============================================
   HERO SECTION
============================================ */

.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--cream-dark);
	padding-top: 70px;
}

.hero__background {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.7);
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(45, 74, 28, 0.8) 0%,
		rgba(61, 90, 39, 0.6) 50%,
		rgba(201, 169, 98, 0.3) 100%
	);
}

.hero__pattern {
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5C30 5 35 15 35 25C35 35 30 45 30 55M25 25C25 25 30 20 35 25C40 30 35 35 30 35C25 35 20 30 25 25' stroke='%23C9A962' stroke-width='0.5' fill='none' opacity='0.15'/%3E%3C/svg%3E");
	opacity: 0.5;
}

.hero__content {
	position: relative;
	z-index: 2;
	max-width: 700px;
	padding: var(--space-xl) 0;
}

.hero__badge {
	display: inline-flex;
	align-items: center;
	gap: var(--space-xs);
	padding: 0.5rem 1rem;
	background: rgba(201, 169, 98, 0.2);
	border: 1px solid rgba(201, 169, 98, 0.4);
	border-radius: var(--radius-full);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gold-light);
	margin-bottom: var(--space-md);
	backdrop-filter: blur(8px);
	animation: fadeInUp 0.8s ease-out;
}

.hero__title {
	font-size: clamp(2rem, 7vw, 4.5rem);
	font-weight: 500;
	color: var(--cream-light);
	margin-bottom: var(--space-md);
	line-height: 1.1;
	animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.hero__title em {
	font-style: italic;
	color: var(--gold-light);
}

.hero__subtitle {
	font-size: clamp(0.9375rem, 2.5vw, 1.25rem);
	color: rgba(250, 246, 240, 0.9);
	margin-bottom: var(--space-lg);
	max-width: 500px;
	line-height: 1.7;
	animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero__cta-group {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm);
	animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.hero__scroll {
	position: absolute;
	bottom: var(--space-lg);
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-xs);
	color: var(--cream-light);
	font-size: 0.6875rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	animation: bounce 2s infinite;
}

.hero__scroll-line {
	width: 1px;
	height: 40px;
	background: linear-gradient(to bottom, var(--gold-primary), transparent);
}

/* ============================================
   HERITAGE SECTION
============================================ */

.heritage {
	position: relative;
	background: var(--cream-primary);
	overflow: hidden;
}

.heritage__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-xl);
	align-items: center;
}

.heritage__images {
	position: relative;
	height: 500px;
}

.heritage__image {
	position: absolute;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-strong);
}

.heritage__image--main {
	width: 75%;
	height: 75%;
	top: 0;
	left: 0;
	z-index: 2;
}

.heritage__image--secondary {
	width: 55%;
	height: 50%;
	bottom: 0;
	right: 0;
	z-index: 3;
	border: 5px solid var(--cream-primary);
}

.heritage__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.heritage__decoration {
	position: absolute;
	width: 150px;
	height: 150px;
	border: 2px solid var(--gold-light);
	border-radius: var(--radius-lg);
	top: 10%;
	right: 15%;
	z-index: 1;
	opacity: 0.4;
}

.heritage__content {
	padding: var(--space-lg) 0;
}

.heritage__title {
	margin-bottom: var(--space-md);
}

.heritage__title span {
	display: block;
	color: var(--gold-primary);
	font-style: italic;
}

.heritage__text {
	margin-bottom: var(--space-md);
	font-size: 0.9375rem;
}

.heritage__features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-sm);
	margin-top: var(--space-lg);
}

.heritage__feature {
	display: flex;
	align-items: flex-start;
	gap: var(--space-sm);
	padding: var(--space-sm);
	background: var(--cream-dark);
	border-radius: var(--radius-md);
	border-left: 3px solid var(--gold-primary);
}

.heritage__feature-icon {
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	background: linear-gradient(135deg, var(--olive-light), var(--olive-medium));
	border-radius: var(--radius-full);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
}

.heritage__feature-icon svg {
	width: 18px;
	height: 18px;
}

.heritage__feature-text h4 {
	font-family: 'Outfit', sans-serif;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 0.125rem;
}

.heritage__feature-text p {
	font-size: 0.75rem;
	color: var(--text-muted);
	margin: 0;
}

/* ============================================
   QUALITY SECTION
============================================ */

.quality {
	position: relative;
	background: linear-gradient(135deg, var(--olive-deep), var(--olive-rich));
	color: var(--text-light);
	overflow: hidden;
}

.quality::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' stroke='%23C9A962' stroke-width='0.5' fill='none' opacity='0.1'/%3E%3C/svg%3E");
	opacity: 0.3;
}

.quality__header {
	text-align: center;
	margin-bottom: var(--space-xl);
	position: relative;
	z-index: 1;
}

.quality__header .section-label {
	color: var(--gold-light);
	justify-content: center;
}

.quality__header h2 {
	color: var(--cream-light);
}

.quality__header p {
	color: rgba(250, 246, 240, 0.8);
	max-width: 550px;
	margin: var(--space-sm) auto 0;
	font-size: 0.9375rem;
}

.quality__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-md);
	position: relative;
	z-index: 1;
}

.quality__card {
	background: rgba(250, 246, 240, 0.08);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(201, 169, 98, 0.2);
	border-radius: var(--radius-lg);
	padding: var(--space-lg);
	text-align: center;
	transition: var(--transition-smooth);
}

.quality__card:hover {
	transform: translateY(-5px);
	background: rgba(250, 246, 240, 0.12);
	border-color: rgba(201, 169, 98, 0.4);
}

.quality__card-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto var(--space-sm);
	background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
	border-radius: var(--radius-full);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	box-shadow: var(--shadow-gold);
}

.quality__card-icon svg {
	width: 28px;
	height: 28px;
}

.quality__card h3 {
	color: var(--cream-light);
	font-size: 1.125rem;
	margin-bottom: var(--space-xs);
}

.quality__card p {
	color: rgba(250, 246, 240, 0.75);
	font-size: 0.8125rem;
	margin: 0;
	line-height: 1.6;
}

/* ============================================
   PRICING SECTION
============================================ */

.pricing {
	position: relative;
	background: var(--cream-dark);
}

.pricing__header {
	text-align: center;
	margin-bottom: var(--space-xl);
}

.pricing__header .section-label {
	justify-content: center;
}

.pricing__header p {
	max-width: 600px;
	margin: var(--space-sm) auto 0;
	font-size: 0.9375rem;
}

.pricing__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-md);
	margin-bottom: var(--space-xl);
}

.pricing__card {
	background: var(--white-natural);
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-medium);
	position: relative;
	transition: var(--transition-smooth);
	display: flex;
	flex-direction: column;
}

.pricing__card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-strong);
}

/* Carte mise en avant */
.pricing__card--featured {
	border: 3px solid var(--gold-primary);
	transform: scale(1.02);
}

.pricing__card--featured:hover {
	transform: scale(1.02) translateY(-5px);
}

.pricing__card-badge {
	position: absolute;
	top: var(--space-sm);
	right: var(--space-sm);
	background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
	color: white;
	padding: 0.35rem 0.7rem;
	border-radius: var(--radius-full);
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	z-index: 2;
}

.pricing__card-header {
	background: linear-gradient(135deg, var(--olive-rich), var(--olive-deep));
	padding: var(--space-lg) var(--space-md);
	text-align: center;
	color: var(--text-light);
}

.pricing__card--featured .pricing__card-header {
	background: linear-gradient(135deg, var(--gold-dark), #6B5210);
}

.pricing__card-volume {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--cream-light);
	line-height: 1;
	margin-bottom: var(--space-xs);
}

.pricing__card-volume span {
	font-size: 1rem;
	font-weight: 500;
}

.pricing__card-header p {
	color: rgba(250, 246, 240, 0.85);
	font-size: 0.8125rem;
	margin: 0;
}

.pricing__card-body {
	padding: var(--space-lg) var(--space-md);
	flex: 1;
	display: flex;
	flex-direction: column;
}

.pricing__price {
	text-align: center;
	padding-bottom: var(--space-md);
	border-bottom: 1px solid var(--cream-dark);
	margin-bottom: var(--space-md);
}

.pricing__price-per-liter {
	font-size: 0.8125rem;
	color: var(--text-muted);
	margin-bottom: var(--space-xs);
}

.pricing__price-amount {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2.75rem;
	font-weight: 700;
	color: var(--olive-rich);
	line-height: 1;
}

.pricing__card--featured .pricing__price-amount {
	color: var(--gold-dark);
}

.pricing__price-amount span {
	font-size: 1.25rem;
	font-weight: 500;
	vertical-align: super;
}

.pricing__price-unit {
	font-size: 0.8125rem;
	color: var(--text-muted);
	margin-top: var(--space-xs);
}

.pricing__selling-point {
	background: var(--cream-dark);
	padding: var(--space-xs) var(--space-sm);
	border-radius: var(--radius-md);
	text-align: center;
	margin-bottom: var(--space-md);
	font-size: 0.8125rem;
	color: var(--text-secondary);
}

.pricing__card--featured .pricing__selling-point {
	background: var(--gold-pale);
	color: var(--gold-dark);
	font-weight: 600;
}

.pricing__features {
	list-style: none;
	margin-bottom: var(--space-md);
	flex: 1;
}

.pricing__features li {
	display: flex;
	align-items: flex-start;
	gap: var(--space-xs);
	padding: 0.25rem 0;
	color: var(--text-secondary);
	font-size: 0.8125rem;
}

.pricing__features svg {
	width: 16px;
	height: 16px;
	color: var(--success);
	flex-shrink: 0;
	margin-top: 2px;
}

.pricing__cta {
	margin-top: auto;
}

.pricing__cta .btn {
	width: 100%;
}

/* Bloc livraison */
.pricing__shipping {
	background: var(--white-natural);
	border-radius: var(--radius-lg);
	padding: var(--space-lg);
	box-shadow: var(--shadow-soft);
	border: 1px solid var(--cream-dark);
}

.pricing__shipping-header {
	display: flex;
	align-items: center;
	gap: var(--space-md);
	margin-bottom: var(--space-md);
}

.pricing__shipping-icon {
	width: 44px;
	height: 44px;
	background: linear-gradient(135deg, var(--olive-light), var(--olive-medium));
	border-radius: var(--radius-full);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	flex-shrink: 0;
}

.pricing__shipping-icon svg {
	width: 22px;
	height: 22px;
}

.pricing__shipping-title h3 {
	font-family: 'Outfit', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.125rem;
}

.pricing__shipping-title p {
	font-size: 0.8125rem;
	color: var(--text-muted);
	margin: 0;
}

.pricing__shipping-details {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-sm);
}

.pricing__shipping-item {
	background: var(--cream-dark);
	padding: var(--space-md);
	border-radius: var(--radius-md);
	text-align: center;
}

.pricing__shipping-item strong {
	display: block;
	font-size: 1.125rem;
	color: var(--olive-rich);
	margin-bottom: var(--space-xs);
}

.pricing__shipping-item span {
	font-size: 0.75rem;
	color: var(--text-muted);
}

.pricing__shipping-note {
	margin-top: var(--space-md);
	padding: var(--space-sm);
	background: var(--gold-pale);
	border-radius: var(--radius-md);
	font-size: 0.8125rem;
	color: var(--text-secondary);
	text-align: center;
}

/* ============================================
   REVIEWS SECTION (résumé des avis)
============================================ */

.reviews-section {
	padding-top: var(--space-lg);
	padding-bottom: var(--space-md);
}

.reviews-summary {
	background: transparent;
	border: none;
	padding: 0;
	margin-bottom: 1.5rem;
}

/* Ligne d’infos avis */
.reviews-inline {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 8px;
	text-align: center;
	font-size: 1rem;
	color: #3d331f;
}

.reviews-inline .stars {
	color: gold;
}

.reviews-inline .sep {
	color: #c9b89a;
}

/* Mobile : avis plus compacts */
@media (max-width: 768px) {
	.reviews-inline {
		font-size: 0.875rem;
		line-height: 1.4;
		gap: 4px;
		padding: 0.5rem 0;
	}
}

/* Patch styles pour la ligne d’avis (prend le dessus) */
.reviews-inline .label {
	font-weight: 600;
	color: var(--text-primary);
	font-size: 0.9375rem;
}

.reviews-inline .sep {
	color: var(--text-muted);
	opacity: 0.5;
	font-weight: 300;
}

.reviews-inline .score {
	font-weight: 700;
	color: var(--olive-rich);
	font-size: 1.125rem;
}

.reviews-inline .stars {
	font-size: 1.125rem;
	letter-spacing: 0.125rem;
}

.reviews-inline .count {
	color: var(--text-secondary);
	font-size: 0.9375rem;
}

.reviews-inline .count strong {
	color: var(--text-primary);
	font-weight: 600;
}

/* ============================================
   TESTIMONIALS SECTION
============================================ */

.testimonials {
	position: relative;
	background: var(--cream-primary);
}

.testimonials__header {
	text-align: center;
	margin-bottom: var(--space-xl);
}

.testimonials__header .section-label {
	justify-content: center;
}

.testimonials__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-md);
}

.testimonial-card {
	background: var(--white-natural);
	border-radius: var(--radius-lg);
	padding: var(--space-lg);
	box-shadow: var(--shadow-soft);
	border: 1px solid var(--cream-dark);
	position: relative;
	transition: var(--transition-smooth);
}

.testimonial-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-medium);
}

.testimonial-card__quote {
	position: absolute;
	top: var(--space-sm);
	right: var(--space-sm);
	width: 32px;
	height: 32px;
	background: var(--gold-pale);
	border-radius: var(--radius-full);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold-primary);
}

.testimonial-card__quote svg {
	width: 16px;
	height: 16px;
}

.testimonial-card__stars {
	display: flex;
	gap: 3px;
	margin-bottom: var(--space-sm);
	color: var(--gold-primary);
}

.testimonial-card__stars svg {
	width: 16px;
	height: 16px;
}

.testimonial-card__text {
	font-style: italic;
	font-size: 0.875rem;
	line-height: 1.7;
	margin-bottom: var(--space-md);
	color: var(--text-secondary);
}

.testimonial-card__author {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
}

.testimonial-card__avatar {
	width: 44px;
	height: 44px;
	border-radius: var(--radius-full);
	background: linear-gradient(135deg, var(--olive-light), var(--olive-medium));
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-family: 'Cormorant Garamond', serif;
	font-size: 1rem;
	font-weight: 600;
	flex-shrink: 0;
}

.testimonial-card__name {
	font-weight: 600;
	color: var(--text-primary);
	font-size: 0.875rem;
}

.testimonial-card__location {
	font-size: 0.75rem;
	color: var(--text-muted);
}

/* ============================================
   ORDER SECTION (paiement / commande)
============================================ */

.order {
	position: relative;
	background: linear-gradient(135deg, var(--earth-dark), var(--earth-medium));
	color: var(--text-light);
	overflow: hidden;
}

.order::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 10C40 10 50 25 50 40C50 55 40 70 40 70M30 40C30 30 40 25 50 40C60 55 50 60 40 60C30 60 20 55 30 40' stroke='%23C9A962' stroke-width='0.5' fill='none' opacity='0.1'/%3E%3C/svg%3E");
}

.order__header {
	text-align: center;
	margin-bottom: var(--space-xl);
	position: relative;
	z-index: 1;
}

.order__header .section-label {
	color: var(--gold-light);
	justify-content: center;
}

.order__header h2 {
	color: var(--cream-light);
}

.order__header p {
	color: rgba(250, 246, 240, 0.8);
	max-width: 500px;
	margin: var(--space-sm) auto 0;
	font-size: 0.9375rem;
}

/* Grille des méthodes de commande / paiement */
.order__methods {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-md);
	position: relative;
	z-index: 1;
}

.order__method {
	background: rgba(250, 246, 240, 0.08);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(201, 169, 98, 0.2);
	border-radius: var(--radius-lg);
	padding: var(--space-lg);
	text-align: center;
	transition: var(--transition-smooth);
}

.order__method:hover {
	background: rgba(250, 246, 240, 0.12);
	border-color: rgba(201, 169, 98, 0.4);
}

/* Icônes de moyens de paiement */
.order__method-icon {
	width: 56px;
	height: 56px;
	margin: 0 auto var(--space-sm);
	border-radius: var(--radius-lg);
	display: flex;
	align-items: center;
	justify-content: center;
}

.order__method-icon--whatsapp {
	background: linear-gradient(135deg, #25D366, #128C7E);
}

.order__method-icon--paypal {
	background: linear-gradient(135deg, #0070BA, #003087);
}

.order__method-icon--paypal img,
.order__method-icon-img {
	width: 28px;
	height: 28px;
	display: block;
	object-fit: contain;
}

/* Stripe method icon */
.order__method-icon--stripe {
	background: linear-gradient(135deg, var(--stripe-primary), var(--stripe-dark));
}

.order__method-icon--bank {
	background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
}

.order__method-icon svg {
	width: 28px;
	height: 28px;
	color: white;
}

.order__method h3 {
	color: var(--cream-light);
	font-size: 1.125rem;
	margin-bottom: var(--space-xs);
}

.order__method p {
	color: rgba(250, 246, 240, 0.7);
	font-size: 0.8125rem;
	margin-bottom: var(--space-md);
}

/* Détails bancaires */
.order__bank-details {
	background: rgba(0, 0, 0, 0.2);
	border-radius: var(--radius-md);
	padding: var(--space-sm);
	margin-top: var(--space-sm);
	text-align: left;
	font-size: 0.75rem;
}

.order__bank-details p {
	margin: 0.25rem 0;
	color: rgba(250, 246, 240, 0.8);
	font-size: 0.75rem;
}

.order__bank-details strong {
	color: var(--gold-light);
}

/* ============================================
   FAQ SECTION
============================================ */

.faq {
	position: relative;
	background: var(--cream-primary);
}

.faq__header {
	text-align: center;
	margin-bottom: var(--space-xl);
}

.faq__header .section-label {
	justify-content: center;
}

.faq__grid {
	max-width: 800px;
	margin: 0 auto;
}

.faq__item {
	background: var(--white-natural);
	border-radius: var(--radius-md);
	margin-bottom: var(--space-xs);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
	border: 1px solid var(--cream-dark);
}

.faq__question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-sm);
	padding: var(--space-md);
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-family: 'Outfit', sans-serif;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--text-primary);
	transition: var(--transition-fast);
}

.faq__question:hover {
	color: var(--olive-rich);
}

.faq__question-icon {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	background: var(--cream-dark);
	border-radius: var(--radius-full);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition-smooth);
}

.faq__question-icon svg {
	width: 14px;
	height: 14px;
}

.faq__item.active .faq__question-icon {
	background: var(--olive-rich);
	color: white;
	transform: rotate(180deg);
}

.faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease-out;
}

.faq__item.active .faq__answer {
	max-height: 300px;
}

.faq__answer-content {
	padding: 0 var(--space-md) var(--space-md);
	color: var(--text-secondary);
	line-height: 1.7;
	font-size: 0.875rem;
}

/* ============================================
   FOOTER
============================================ */

.footer {
	background: var(--olive-deep);
	color: var(--text-light);
	padding: var(--space-xl) 0 var(--space-md);
}

.footer__grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: var(--space-xl);
	margin-bottom: var(--space-lg);
	padding-bottom: var(--space-lg);
	border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

.footer__brand h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.5rem;
	color: var(--cream-light);
	margin-bottom: var(--space-sm);
}

.footer__brand h3 span {
	color: var(--gold-light);
}

.footer__brand p {
	color: rgba(250, 246, 240, 0.7);
	max-width: 280px;
	margin-bottom: var(--space-md);
	font-size: 0.875rem;
	line-height: 1.6;
}

.footer__social {
	display: flex;
	gap: var(--space-xs);
}

.footer__social a {
	width: 36px;
	height: 36px;
	background: rgba(201, 169, 98, 0.2);
	border-radius: var(--radius-full);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold-light);
	transition: var(--transition-fast);
}

.footer__social a:hover {
	background: var(--gold-primary);
	color: white;
}

.footer__social svg {
	width: 16px;
	height: 16px;
}

.footer__column {
	text-align: left;
}

.footer__column h4 {
	font-family: 'Outfit', sans-serif;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--cream-light);
	margin-bottom: var(--space-sm);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.footer__column ul {
	list-style: none;
}

.footer__column li {
	margin-bottom: var(--space-xs);
}

.footer__column a {
	color: rgba(250, 246, 240, 0.7);
	font-size: 0.875rem;
}

.footer__column a:hover {
	color: var(--gold-light);
}

.footer__contact-item {
	display: flex;
	align-items: center;
	gap: var(--space-xs);
	margin-bottom: var(--space-xs);
	color: rgba(250, 246, 240, 0.7);
	font-size: 0.8125rem;
}

.footer__contact-item svg {
	width: 16px;
	height: 16px;
	color: var(--gold-light);
	flex-shrink: 0;
}

.footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: var(--space-sm);
}

.footer__copyright {
	color: rgba(250, 246, 240, 0.5);
	font-size: 0.75rem;
}

.footer__legal {
	display: flex;
	gap: var(--space-md);
}

.footer__legal a {
	color: rgba(250, 246, 240, 0.5);
	font-size: 0.75rem;
}

.footer__legal a:hover {
	color: var(--gold-light);
}

.footer__signature {
	display: inline-block;
	margin-top: 4px;
	color: rgba(250, 246, 240, 0.6);
	font-size: 0.75rem;
}

.footer__signature a {
	color: var(--gold-light);
	font-weight: 600;
}

.footer__signature a:hover {
	color: var(--gold-primary);
}

/* ============================================
   ANIMATIONS & ACCESSIBILITY
============================================ */

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
	40% { transform: translateX(-50%) translateY(-8px); }
	60% { transform: translateX(-50%) translateY(-4px); }
}

@keyframes menuFade {
	from { opacity: 0; transform: translateY(-12px); }
	to   { opacity: 1; transform: translateY(0); }
}

@keyframes mobileTitleFade {
	from { opacity: 0; transform: translateY(-6px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* Animation scroll */
.animate-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ============================================
   FALLBACKS (compatibilité anciens navigateurs)
============================================ */

/* Fallback pour backdrop-filter */
@supports not (backdrop-filter: blur(20px)) {
	.hero__overlay,
	.quality__card,
	.order__method {
		background: rgba(45, 74, 28, 0.95);
	}
	
	.header {
		background: rgba(45, 74, 28, 0.98);
	}
}

/* Fallback pour color-mix() */
@supports not (color: color-mix(in oklab, red, blue)) {
	:root {
		--ow-border-accent: rgba(16, 185, 129, 0.18);
		--ow-glass-bg: rgba(17, 24, 39, 0.85);
		--ow-glass-border: rgba(16, 185, 129, 0.15);
	}
}

/* Préférence utilisateur : réduire les animations */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	html {
		scroll-behavior: auto;
	}

	.animate-on-scroll {
		opacity: 1;
		transform: none;
	}
}

/* ============================================
   RESPONSIVE - TABLET (≤ 1024px)
============================================ */

@media (max-width: 1024px) {
	.heritage__grid {
		grid-template-columns: 1fr;
		gap: var(--space-lg);
	}

	.heritage__images {
		height: 350px;
		order: -1;
	}

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

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

	.pricing__card--featured {
		grid-column: span 2;
		max-width: 400px;
		margin: 0 auto;
	}

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

	.testimonials__grid .testimonial-card:last-child {
		grid-column: span 2;
		max-width: 400px;
		margin: 0 auto;
	}

	.order__methods {
		grid-template-columns: 1fr;
		max-width: 400px;
		margin: 0 auto;
	}

	.footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: var(--space-lg);
	}
}

/* ============================================
   RESPONSIVE - MOBILE (≤ 768px)
============================================ */

@media (max-width: 768px) {
	.section-padding {
		padding: var(--space-xl) 0;
	}

	.container {
		padding: 0 var(--space-sm);
	}

	/* Header Mobile */
	.header__nav-list,
	.header__cta {
		display: none;
	}

	.header__menu-toggle {
		display: flex;
	}

	.header__logo-text {
		font-size: 1.125rem;
		font-weight: 600;
	}

	.header__logo-img {
		width: 38px;
		height: 38px;
	}

	/* Hero Mobile */
	.hero {
		min-height: auto;
		padding: 100px 0 var(--space-xl);
	}

	.hero__content {
		padding: var(--space-lg) 0;
	}

	.hero__badge {
		font-size: 0.5625rem;
		padding: 0.4rem 0.75rem;
	}

	.hero__title {
		font-size: 2rem;
	}

	.hero__subtitle {
		font-size: 0.9375rem;
	}

	.hero__cta-group {
		flex-direction: column;
	}

	.hero__cta-group .btn {
		width: 100%;
	}

	.hero__scroll {
		display: none;
	}

	/* Heritage Mobile */
	.heritage__images {
		height: 280px;
	}

	.heritage__image--main {
		width: 70%;
		height: 70%;
	}

	.heritage__image--secondary {
		width: 50%;
		height: 45%;
	}

	.heritage__features {
		grid-template-columns: 1fr;
	}

	/* Quality Mobile */
		.quality__grid {
			grid-template-columns: 1fr;
		}
	
		/* Pricing Mobile */
		.pricing__grid {
			grid-template-columns: 1fr;
		}
	
		.pricing__card--featured {
			grid-column: auto;
			max-width: 100%;
			width: 100%;
			transform: none;
			margin: 0; /* supprime le centrage spécifique tablette */
		}
	
		.pricing__card--featured:hover {
			transform: translateY(-5px);
		}
	
		.pricing__card-volume {
			font-size: 2rem;
		}
	
		.pricing__price-amount {
			font-size: 2.25rem;
		}
	
		/* Testimonials Mobile */
		.testimonials__grid {
			grid-template-columns: 1fr;
		}
	
		.testimonials__grid .testimonial-card:last-child {
			grid-column: auto;
			max-width: none;
		}
	
		/* Order Mobile */
		.order__methods {
			max-width: none;
		}
	
		/* Footer Mobile */
		.footer__grid {
			grid-template-columns: 1fr;
			gap: var(--space-lg);
			text-align: left;
		}
	
		.footer__brand {
			text-align: left;
		}
	
		.footer__brand p {
			max-width: none;
		}
	
		.footer__column {
			text-align: left;
		}
	
		.footer__social {
			justify-content: flex-start;
		}
	
		.footer__bottom {
			flex-direction: column;
			align-items: flex-start;
			gap: var(--space-sm);
		}
	
		.footer__legal {
			flex-wrap: wrap;
			gap: var(--space-sm);
		}
	}
	
	/* ============================================
	   RESPONSIVE - SMALL MOBILE (≤ 400px)
	============================================ */
	@media (max-width: 400px) {
		.hero__title {
			font-size: 1.75rem;
		}
	
		.heritage__images {
			height: 220px;
		}
	
		.pricing__card-body {
			padding: var(--space-md) var(--space-sm);
		}
	}