/*
=================================================================
  LABO VAN WIDGETS - Plugin CSS
  Design System V6.4 + Inter
  Version : 1.2.0 - Atomic widgets
=================================================================
*/

/* === VARIABLES PALETTE V6.4 === */
:root {
	--lv-cream:        #FAF5EA;
	--lv-beige:        #F5EFE3;
	--lv-fir-dark:     #16433C;
	--lv-fir:          #10584D;
	--lv-coral:        #E8997B;
	--lv-sand:         #CBBBA0;
	--lv-coffee:       #3D3A33;
	--lv-gray:         #6F6A60;
	--lv-gray-light:   #B8B0A0;
	
	--lv-gradient-fir: linear-gradient(135deg, #10584D 0%, #16433C 100%);
	--lv-font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
	--lv-font-features: 'cv02', 'cv03', 'cv04', 'cv11';
}

/* ====================================================== */
/* WIDGET : LV PROMO BAR                                  */
/* ====================================================== */

.lv-promo-bar {
	display: block;
	background: var(--lv-gradient-fir);
	padding: 9px 16px;
	text-align: center;
	font-family: var(--lv-font);
	font-feature-settings: var(--lv-font-features);
	font-size: 13px;
	color: var(--lv-cream);
	font-weight: 500;
	letter-spacing: -0.1px;
	line-height: 1.4;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

a.lv-promo-bar:hover { opacity: 0.92; }

.lv-promo-bar__main { color: inherit; }

.lv-promo-bar__separator {
	color: rgba(250, 245, 234, 0.5);
	margin: 0 4px;
}

.lv-promo-bar__highlight {
	color: var(--lv-coral);
	font-weight: 600;
}

@media (max-width: 480px) {
	.lv-promo-bar {
		font-size: 11px;
		padding: 8px 12px;
	}
}

/* ====================================================== */
/* WIDGET : LV STATS ROW                                  */
/* ====================================================== */

.lv-stats-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	width: 100%;
	font-family: var(--lv-font);
	font-feature-settings: var(--lv-font-features);
	text-align: center;
}

.lv-stat {
	padding: 4px 8px;
	position: relative;
	background: transparent;
}

.lv-stat--2::before,
.lv-stat--2::after {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 50%;
	background-color: rgba(203, 187, 160, 0.6);
}

.lv-stat--2::before { left: 0; }
.lv-stat--2::after { right: 0; }

.lv-stats-row.no-separators .lv-stat--2::before,
.lv-stats-row.no-separators .lv-stat--2::after {
	display: none;
}

.lv-stat__number {
	font-size: 32px;
	color: var(--lv-fir);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -1.5px;
	display: inline-flex;
	align-items: baseline;
	gap: 3px;
}

.lv-stat__suffix {
	font-size: 16px;
	font-weight: 800;
	letter-spacing: 0;
}

.lv-stat__suffix--small {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0;
}

.lv-stat__label {
	font-size: 12px;
	color: var(--lv-gray);
	margin-top: 6px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	font-weight: 500;
}

/* ====================================================== */
/* ATOMIC WIDGET : LV EYEBROW                             */
/* ====================================================== */

.lv-eyebrow {
	font-family: var(--lv-font);
	font-feature-settings: var(--lv-font-features);
	font-size: 11px;
	color: var(--lv-fir);
	letter-spacing: 2.5px;
	text-transform: uppercase;
	font-weight: 700;
	line-height: 1.4;
	margin: 0;
}

/* ====================================================== */
/* ATOMIC WIDGET : LV TITLE                               */
/* ====================================================== */

.lv-title {
	font-family: var(--lv-font);
	font-feature-settings: var(--lv-font-features);
	font-size: 32px;
	line-height: 1.1;
	color: var(--lv-coffee);
	margin: 0;
	font-weight: 700;
	letter-spacing: -1.2px;
}

.lv-title strong {
	color: var(--lv-fir);
	font-weight: 800;
}

@media (min-width: 768px) {
	.lv-title {
		font-size: 44px;
		letter-spacing: -1.6px;
	}
}

@media (min-width: 1024px) {
	.lv-title {
		font-size: 56px;
		letter-spacing: -2px;
	}
}

/* ====================================================== */
/* ATOMIC WIDGET : LV SUBTITLE                            */
/* ====================================================== */

.lv-subtitle {
	font-family: var(--lv-font);
	font-feature-settings: var(--lv-font-features);
	font-size: 15px;
	line-height: 1.55;
	color: #5C5C5C;
	margin: 0;
	font-weight: 400;
}

@media (min-width: 768px) {
	.lv-subtitle { font-size: 17px; }
}

@media (min-width: 1024px) {
	.lv-subtitle { font-size: 18px; }
}

/* ====================================================== */
/* ATOMIC WIDGET : LV BADGE                               */
/* ====================================================== */

.lv-badge-wrap {
	display: flex;
	justify-content: flex-start;
	width: 100%;
}

.lv-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(250, 245, 234, 0.95);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-radius: 999px;
	padding: 7px 14px;
	font-family: var(--lv-font);
	font-feature-settings: var(--lv-font-features);
	font-size: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	width: fit-content;
}

.lv-badge__main {
	color: var(--lv-fir);
	font-weight: 700;
}

.lv-badge__dot {
	color: var(--lv-sand);
}

.lv-badge__secondary {
	color: var(--lv-gray);
	font-weight: 500;
}

/* ====================================================== */
/* ATOMIC WIDGET : LV CTA GROUP                           */
/* ====================================================== */

.lv-cta-group {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-start;
}

.lv-btn {
	display: inline-flex !important;
	align-items: center;
	gap: 6px;
	padding: 13px 28px;
	border-radius: 999px;
	font-family: var(--lv-font);
	font-feature-settings: var(--lv-font-features);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: -0.1px;
	transition: all 0.2s ease;
	text-decoration: none !important;
	cursor: pointer;
	border: none;
	line-height: 1;
}

.lv-btn--primary {
	background: var(--lv-gradient-fir);
	color: var(--lv-cream);
	box-shadow: 0 4px 14px rgba(16, 88, 77, 0.35);
	border: none !important;
}

.lv-btn--primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(16, 88, 77, 0.45);
	color: var(--lv-cream);
}

.lv-btn--secondary {
	background: var(--lv-cream);
	background-image: none !important;
	color: var(--lv-fir);
	border: 1.5px solid var(--lv-fir) !important;
}

.lv-btn--secondary:hover {
	background: var(--lv-fir);
	color: var(--lv-cream);
}

.lv-btn--ghost {
	background: transparent;
	color: var(--lv-fir);
	border: none !important;
	padding: 13px 18px;
}

.lv-btn--ghost:hover {
	color: var(--lv-fir-dark);
}

.lv-btn svg {
	transition: transform 0.2s ease;
	flex-shrink: 0;
}

.lv-btn:hover svg {
	transform: translateX(3px);
}

/* === FIN === */

/* ====================================================== */
/* WIDGET : LV QUOTE                                      */
/* ====================================================== */
.lv-quote {
	font-family: var(--lv-font);
	font-feature-settings: var(--lv-font-features);
	max-width: 720px;
	margin: 0 auto;
	padding: 0;
	position: relative;
}
.lv-quote__mark {
	font-size: 56px;
	color: var(--lv-coral);
	line-height: 0.4;
	font-weight: 700;
	display: inline-block;
}
.lv-quote__mark--open { vertical-align: top; }
.lv-quote__mark--close { vertical-align: bottom; }
.lv-quote__text {
	font-size: 22px;
	line-height: 1.5;
	color: var(--lv-coffee);
	font-style: italic;
	font-weight: 400;
	margin: 12px 0;
}
.lv-quote__author {
	display: block;
	font-size: 14px;
	color: var(--lv-fir);
	font-weight: 600;
	font-style: normal;
	letter-spacing: 0.5px;
	margin-top: 12px;
}

/* ====================================================== */
/* WIDGET : LV SECTION HEADER                             */
/* ====================================================== */
.lv-section-header {
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-family: var(--lv-font);
	font-feature-settings: var(--lv-font-features);
	max-width: 720px;
	margin: 0 auto;
}
.lv-section-header__eyebrow {
	font-size: 11px;
	color: var(--lv-fir);
	letter-spacing: 2.5px;
	text-transform: uppercase;
	font-weight: 700;
}
.lv-section-header__title {
	font-size: 32px;
	line-height: 1.15;
	color: var(--lv-coffee);
	margin: 0;
	font-weight: 700;
	letter-spacing: -1px;
}
.lv-section-header__title strong { color: var(--lv-fir); font-weight: 800; }
.lv-section-header__subtitle {
	font-size: 16px;
	line-height: 1.55;
	color: var(--lv-gray);
	margin: 0;
}
@media (min-width: 768px) {
	.lv-section-header__title { font-size: 40px; letter-spacing: -1.5px; }
}

/* ====================================================== */
/* WIDGET : LV LINK ARROW                                 */
/* ====================================================== */
.lv-link-arrow-wrap { display: flex; }
.lv-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--lv-fir);
	text-decoration: none;
	font-family: var(--lv-font);
	font-size: 14px;
	font-weight: 600;
	transition: all 0.2s ease;
	border-bottom: 1px solid transparent;
}
.lv-link-arrow:hover { color: var(--lv-coral); border-bottom-color: var(--lv-coral); }
.lv-link-arrow svg { transition: transform 0.2s ease; }
.lv-link-arrow:hover svg { transform: translateX(4px); }

/* ====================================================== */
/* WIDGET : LV TRUST LOGOS                                */
/* ====================================================== */
.lv-trust-logos {
	font-family: var(--lv-font);
	text-align: center;
	padding: 16px 0;
}
.lv-trust-logos__label {
	font-size: 11px;
	color: var(--lv-gray);
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 600;
	margin-bottom: 20px;
}
.lv-trust-logos__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 32px;
	align-items: center;
}
.lv-trust-logos__item {
	display: flex;
	align-items: center;
	justify-content: center;
}
.lv-trust-logos__item img {
	max-width: 100%;
	max-height: 50px;
	height: auto;
	width: auto;
	transition: opacity 0.3s ease, filter 0.3s ease;
}
.lv-trust-logos__item:hover img { opacity: 1 !important; filter: none !important; }

/* ====================================================== */
/* WIDGET : LV FORMULA CARD                               */
/* ====================================================== */
.lv-formula-card {
	font-family: var(--lv-font);
	font-feature-settings: var(--lv-font-features);
	background: var(--lv-cream);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 4px 18px rgba(0,0,0,0.05);
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lv-formula-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(16,88,77,0.15); }
.lv-formula-card__image {
	height: 200px;
	background-size: cover;
	background-position: center;
	position: relative;
}
.lv-formula-card__badge {
	position: absolute;
	top: 14px;
	right: 14px;
	background: var(--lv-coral);
	color: #fff;
	padding: 5px 12px;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}
.lv-formula-card__body { padding: 22px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.lv-formula-card__head { display: flex; align-items: center; gap: 12px; }
.lv-formula-card__icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(16, 88, 77, 0.1);
	color: var(--lv-fir);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	flex-shrink: 0;
}
.lv-formula-card__title { font-size: 20px; color: var(--lv-coffee); font-weight: 700; letter-spacing: -0.5px; }
.lv-formula-card__subtitle { font-size: 12px; color: var(--lv-gray); }
.lv-formula-card__desc { font-size: 14px; color: var(--lv-gray); line-height: 1.5; margin: 0; }
.lv-formula-card__features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.lv-formula-card__features li { font-size: 13px; color: var(--lv-coffee); padding-left: 20px; position: relative; }
.lv-formula-card__features li::before { content: '✓'; position: absolute; left: 0; color: var(--lv-fir); font-weight: 700; }
.lv-formula-card__footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid rgba(203, 187, 160, 0.3);
	padding-top: 14px;
	margin-top: auto;
}
.lv-formula-card__price-wrap { display: flex; flex-direction: column; }
.lv-formula-card__price-label { font-size: 10px; color: var(--lv-gray); text-transform: uppercase; letter-spacing: 1px; }
.lv-formula-card__price { font-size: 26px; color: var(--lv-fir); font-weight: 800; letter-spacing: -1px; }
.lv-formula-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--lv-gradient-fir);
	color: var(--lv-cream);
	padding: 10px 18px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease;
}
.lv-formula-card__cta:hover { transform: translateX(3px); color: var(--lv-cream); }

/* ====================================================== */
/* WIDGET : LV PRICING TABLE                              */
/* ====================================================== */
.lv-pricing {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 18px;
	font-family: var(--lv-font);
	font-feature-settings: var(--lv-font-features);
}
.lv-pricing__plan {
	background: var(--lv-cream);
	border: 2px solid rgba(203, 187, 160, 0.3);
	border-radius: 18px;
	padding: 28px 24px;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 14px;
	transition: transform 0.3s ease;
}
.lv-pricing__plan:hover { transform: translateY(-4px); }
.lv-pricing__plan--featured {
	border-color: var(--lv-fir);
	box-shadow: 0 10px 30px rgba(16,88,77,0.2);
	transform: scale(1.02);
}
.lv-pricing__badge {
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--lv-fir);
	color: var(--lv-cream);
	padding: 5px 14px;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}
.lv-pricing__name { font-size: 22px; font-weight: 700; color: var(--lv-coffee); letter-spacing: -0.5px; }
.lv-pricing__tagline { font-size: 13px; color: var(--lv-gray); }
.lv-pricing__price {
	font-size: 42px;
	color: var(--lv-fir);
	font-weight: 800;
	letter-spacing: -2px;
	display: flex;
	align-items: baseline;
	gap: 4px;
}
.lv-pricing__price-suffix { font-size: 14px; color: var(--lv-gray); font-weight: 500; letter-spacing: 0; }
.lv-pricing__features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.lv-pricing__features li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 14px;
	color: var(--lv-coffee);
	line-height: 1.4;
}
.lv-pricing__features svg, .lv-pricing__features li > span:first-child { color: var(--lv-fir); flex-shrink: 0; margin-top: 3px; }
.lv-pricing__cta {
	display: inline-block;
	text-align: center;
	background: var(--lv-gradient-fir);
	color: var(--lv-cream);
	padding: 12px 18px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease;
	margin-top: 8px;
}
.lv-pricing__cta:hover { transform: translateY(-1px); color: var(--lv-cream); }
.lv-pricing__plan:not(.lv-pricing__plan--featured) .lv-pricing__cta {
	background: transparent;
	color: var(--lv-fir);
	border: 1.5px solid var(--lv-fir);
}
.lv-pricing__plan:not(.lv-pricing__plan--featured) .lv-pricing__cta:hover {
	background: var(--lv-fir);
	color: var(--lv-cream);
}

/* ====================================================== */
/* WIDGET : LV OPTION ITEM                                */
/* ====================================================== */
.lv-option-item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px 20px;
	background: var(--lv-cream);
	border-radius: 14px;
	border: 1px solid rgba(203, 187, 160, 0.3);
	font-family: var(--lv-font);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.lv-option-item:hover { border-color: var(--lv-fir); box-shadow: 0 4px 12px rgba(16,88,77,0.08); }
.lv-option-item__icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(16, 88, 77, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--lv-fir);
	font-size: 16px;
	flex-shrink: 0;
}
.lv-option-item__body { flex: 1; min-width: 0; }
.lv-option-item__title { font-size: 15px; font-weight: 700; color: var(--lv-coffee); margin-bottom: 2px; }
.lv-option-item__desc { font-size: 13px; color: var(--lv-gray); line-height: 1.4; }
.lv-option-item__price-wrap { display: flex; flex-direction: column; align-items: flex-end; flex-shrink: 0; }
.lv-option-item__price-label { font-size: 10px; color: var(--lv-gray); text-transform: uppercase; letter-spacing: 1px; }
.lv-option-item__price { font-size: 20px; font-weight: 800; color: var(--lv-fir); letter-spacing: -0.5px; }

/* ====================================================== */
/* WIDGET : LV CASE STUDY                                 */
/* ====================================================== */
.lv-case-study {
	background: var(--lv-beige);
	border-radius: 18px;
	padding: 26px;
	font-family: var(--lv-font);
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.lv-case-study__header { display: flex; align-items: center; gap: 14px; }
.lv-case-study__logo { width: 48px; height: 48px; flex-shrink: 0; }
.lv-case-study__logo img { width: 100%; height: 100%; object-fit: contain; }
.lv-case-study__name { font-size: 16px; font-weight: 700; color: var(--lv-coffee); }
.lv-case-study__event { font-size: 12px; color: var(--lv-gray); text-transform: uppercase; letter-spacing: 1px; }
.lv-case-study__metric { display: flex; align-items: baseline; gap: 8px; }
.lv-case-study__metric-value { font-size: 40px; font-weight: 800; color: var(--lv-fir); letter-spacing: -1.5px; line-height: 1; }
.lv-case-study__metric-label { font-size: 13px; color: var(--lv-gray); }
.lv-case-study__desc { font-size: 14px; color: var(--lv-coffee); line-height: 1.5; margin: 0; }

/* ====================================================== */
/* WIDGET : LV STEPS                                      */
/* ====================================================== */
.lv-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 24px;
	font-family: var(--lv-font);
}
.lv-steps--vertical { grid-template-columns: 1fr; }
.lv-step { display: flex; gap: 16px; align-items: flex-start; }
.lv-steps__number {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--lv-gradient-fir);
	color: var(--lv-cream);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 700;
	flex-shrink: 0;
}
.lv-step:last-child .lv-steps__number {
	background: var(--lv-cream);
	color: var(--lv-coral);
	border: 2px solid var(--lv-coral);
}
.lv-step__content { flex: 1; }
.lv-step__title { font-size: 16px; font-weight: 700; color: var(--lv-coffee); margin-bottom: 4px; }
.lv-step__desc { font-size: 14px; color: var(--lv-gray); line-height: 1.5; margin: 0; }

/* ====================================================== */
/* WIDGET : LV DIFFERENCE CARD                            */
/* ====================================================== */
.lv-difference-card {
	display: flex;
	gap: 16px;
	padding: 22px;
	background: var(--lv-cream);
	border-radius: 16px;
	font-family: var(--lv-font);
}
.lv-difference-card__icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(16, 88, 77, 0.08);
	color: var(--lv-fir);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	flex-shrink: 0;
}
.lv-difference-card__body { flex: 1; }
.lv-difference-card__title { font-size: 17px; font-weight: 700; color: var(--lv-coffee); margin-bottom: 6px; line-height: 1.3; }
.lv-difference-card__desc { font-size: 14px; color: var(--lv-gray); line-height: 1.5; margin: 0; }

/* ====================================================== */
/* WIDGET : LV DIFFERENCE GRID                            */
/* ====================================================== */
.lv-difference-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	font-family: var(--lv-font);
}
.lv-difference-grid__card {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 26px 22px;
	background: var(--lv-cream);
	border-radius: 18px;
	transition: transform 0.3s ease;
}
.lv-difference-grid__card:hover { transform: translateY(-3px); }
.lv-difference-grid__icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: rgba(16, 88, 77, 0.08);
	color: var(--lv-fir);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
}
.lv-difference-grid__title { font-size: 18px; font-weight: 700; color: var(--lv-coffee); line-height: 1.3; }
.lv-difference-grid__desc { font-size: 14px; color: var(--lv-gray); line-height: 1.55; margin: 0; }

/* ====================================================== */
/* WIDGET : LV USE CASE GRID                              */
/* ====================================================== */
.lv-use-case-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	font-family: var(--lv-font);
}
.lv-use-case-grid__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 20px 12px;
	text-align: center;
	background: rgba(16, 88, 77, 0.04);
	border-radius: 14px;
	transition: all 0.2s ease;
}
.lv-use-case-grid__item:hover { background: rgba(16, 88, 77, 0.1); transform: translateY(-2px); }
.lv-use-case-grid__icon { font-size: 28px; color: var(--lv-fir); }
.lv-use-case-grid__name { font-size: 13px; font-weight: 600; color: var(--lv-coffee); }

/* ====================================================== */
/* WIDGET : LV TIMELINE                                   */
/* ====================================================== */
.lv-timeline {
	position: relative;
	padding-left: 30px;
	font-family: var(--lv-font);
}
.lv-timeline::before {
	content: '';
	position: absolute;
	left: 8px;
	top: 8px;
	bottom: 8px;
	width: 2px;
	background: linear-gradient(180deg, var(--lv-fir) 0%, var(--lv-coral) 100%);
}
.lv-timeline__item { position: relative; padding-bottom: 28px; }
.lv-timeline__item:last-child { padding-bottom: 0; }
.lv-timeline__dot {
	position: absolute;
	left: -28px;
	top: 4px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--lv-fir);
	border: 3px solid var(--lv-cream);
	box-shadow: 0 0 0 2px var(--lv-fir);
}
.lv-timeline__item:last-child .lv-timeline__dot { background: var(--lv-coral); box-shadow: 0 0 0 2px var(--lv-coral); }
.lv-timeline__time { font-size: 13px; font-weight: 700; color: var(--lv-fir); letter-spacing: 1px; margin-bottom: 4px; }
.lv-timeline__title { font-size: 16px; font-weight: 700; color: var(--lv-coffee); margin-bottom: 4px; }
.lv-timeline__desc { font-size: 13px; color: var(--lv-gray); line-height: 1.5; margin: 0; }

/* ====================================================== */
/* WIDGET : LV TESTIMONIAL CARD                           */
/* ====================================================== */
.lv-testimonial {
	background: var(--lv-beige);
	border-left: 4px solid var(--lv-coral);
	border-radius: 14px;
	padding: 24px 26px;
	font-family: var(--lv-font);
	font-feature-settings: var(--lv-font-features);
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.lv-testimonial__stars { display: flex; gap: 2px; }
.lv-testimonial__star { color: var(--lv-coral); }
.lv-testimonial__text { font-size: 15px; line-height: 1.6; color: var(--lv-coffee); font-style: italic; margin: 0; }
.lv-testimonial__author { display: flex; align-items: center; gap: 12px; }
.lv-testimonial__avatar {
	width: 40px; height: 40px;
	border-radius: 50%;
	background: var(--lv-fir);
	color: var(--lv-cream);
	display: flex; align-items: center; justify-content: center;
	font-size: 13px; font-weight: 700; letter-spacing: 0.5px;
}
.lv-testimonial__name { font-size: 14px; font-weight: 700; color: var(--lv-coffee); }
.lv-testimonial__context { font-size: 12px; color: var(--lv-gray); }

/* ====================================================== */
/* WIDGET : LV TESTIMONIALS GRID                          */
/* ====================================================== */
.lv-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	font-family: var(--lv-font);
}
.lv-testimonials-grid__card {
	background: var(--lv-beige);
	border-left: 3px solid var(--lv-coral);
	border-radius: 14px;
	padding: 22px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.lv-testimonials-grid__stars { display: flex; gap: 2px; color: var(--lv-coral); }
.lv-testimonials-grid__star { color: var(--lv-coral); }
.lv-testimonials-grid__text { font-size: 14px; line-height: 1.6; color: var(--lv-coffee); font-style: italic; margin: 0; }
.lv-testimonials-grid__author { display: flex; align-items: center; gap: 10px; }
.lv-testimonials-grid__avatar {
	width: 36px; height: 36px;
	border-radius: 50%;
	background: var(--lv-fir); color: var(--lv-cream);
	display: flex; align-items: center; justify-content: center;
	font-size: 12px; font-weight: 700;
}
.lv-testimonials-grid__name { font-size: 13px; font-weight: 700; color: var(--lv-coffee); }
.lv-testimonials-grid__context { font-size: 11px; color: var(--lv-gray); }

/* ====================================================== */
/* WIDGET : LV WALL TILE                                  */
/* ====================================================== */
.lv-wall-tile {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 30px 20px;
	background: rgba(250, 245, 234, 0.08);
	border: 1px solid rgba(250, 245, 234, 0.12);
	border-radius: 16px;
	color: var(--lv-cream);
	text-decoration: none;
	font-family: var(--lv-font);
	transition: all 0.3s ease;
	aspect-ratio: 1/1;
}
.lv-wall-tile:hover { transform: scale(1.02); border-color: var(--lv-coral); }
.lv-wall-tile--highlight { border-color: rgba(232,153,123,0.3); background-color: rgba(232,153,123,0.15); }
.lv-wall-tile__monogram { font-size: 42px; font-weight: 700; letter-spacing: -1px; font-style: italic; margin-bottom: 8px; }
.lv-wall-tile__name { font-size: 13px; opacity: 0.9; }
.lv-wall-tile__year { font-size: 11px; opacity: 0.6; letter-spacing: 1.5px; margin-top: 4px; }

/* ====================================================== */
/* WIDGET : LV GALLERY GRID                               */
/* ====================================================== */
.lv-gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}
.lv-gallery-grid__item {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	aspect-ratio: 1/1;
	border-radius: 10px;
	overflow: hidden;
	transition: transform 0.4s ease, box-shadow 0.3s ease;
	display: block;
}
.lv-gallery--hover-zoom-yes .lv-gallery-grid__item:hover {
	transform: scale(1.03);
	box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ====================================================== */
/* WIDGET : LV IMAGE CARD                                 */
/* ====================================================== */
.lv-image-card { margin: 0; font-family: var(--lv-font); }
.lv-image-card__media {
	width: 100%;
	background-size: cover;
	background-position: center;
	border-radius: 12px;
	display: block;
	transition: transform 0.3s ease;
}
.lv-image-card__caption {
	font-size: 13px;
	color: var(--lv-gray);
	text-align: center;
	margin-top: 10px;
	font-style: italic;
}

/* ====================================================== */
/* WIDGET : LV VIDEO BLOCK                                */
/* ====================================================== */
.lv-video-block {
	position: relative;
	aspect-ratio: 16/9;
	border-radius: 18px;
	overflow: hidden;
	font-family: var(--lv-font);
	cursor: pointer;
}
.lv-video-block__poster {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}
.lv-video-block__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.5) 100%);
}
.lv-video-block__duration {
	position: absolute;
	top: 16px;
	right: 16px;
	background: rgba(0,0,0,0.6);
	color: #fff;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
}
.lv-video-block__content {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
	text-align: center;
}
.lv-video-block__play {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--lv-cream);
	border: none;
	color: var(--lv-fir);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 6px 20px rgba(0,0,0,0.25);
	transition: transform 0.2s ease;
	margin-bottom: 14px;
}
.lv-video-block__play:hover { transform: scale(1.08); }
.lv-video-block__title { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 4px; text-shadow: 0 2px 6px rgba(0,0,0,0.4); }
.lv-video-block__subtitle { color: rgba(255,255,255,0.9); font-size: 13px; }

/* ====================================================== */
/* WIDGET : LV FAQ                                        */
/* ====================================================== */
.lv-faq { display: flex; flex-direction: column; gap: 10px; font-family: var(--lv-font); }
.lv-faq__item { background: var(--lv-cream); border-radius: 14px; overflow: hidden; transition: box-shadow 0.2s ease; }
.lv-faq__item--open { box-shadow: 0 4px 14px rgba(16,88,77,0.08); }
.lv-faq__question-wrap {
	width: 100%;
	background: none;
	border: none;
	padding: 18px 22px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	cursor: pointer;
	text-align: left;
}
.lv-faq__question { font-size: 16px; font-weight: 600; color: var(--lv-coffee); flex: 1; }
.lv-faq__icon {
	width: 28px; height: 28px;
	background: rgba(16,88,77,0.1);
	color: var(--lv-fir);
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-size: 18px; font-weight: 700;
	transition: transform 0.3s ease;
	flex-shrink: 0;
}
.lv-faq__item--open .lv-faq__icon { transform: rotate(45deg); background: var(--lv-fir); color: var(--lv-cream); }
.lv-faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
	padding: 0 22px;
	font-size: 14px;
	color: var(--lv-gray);
	line-height: 1.6;
}
.lv-faq__item--open .lv-faq__answer { max-height: 800px; padding: 0 22px 18px; }

/* ====================================================== */
/* WIDGET : LV CTA BOX                                    */
/* ====================================================== */
.lv-cta-box {
	position: relative;
	background: var(--lv-gradient-fir);
	border-radius: 24px;
	padding: 50px 32px;
	overflow: hidden;
	font-family: var(--lv-font);
	text-align: center;
}
.lv-cta-box__decor {
	position: absolute;
	border-radius: 50%;
	background: rgba(232, 153, 123, 0.15);
	pointer-events: none;
}
.lv-cta-box__decor--1 { width: 200px; height: 200px; top: -60px; right: -40px; }
.lv-cta-box__decor--2 { width: 150px; height: 150px; bottom: -50px; left: -30px; background: rgba(250, 245, 234, 0.08); }
.lv-cta-box__inner { position: relative; z-index: 1; }
.lv-cta-box__badge {
	display: inline-block;
	color: var(--lv-coral);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 14px;
}
.lv-cta-box__title { font-size: 32px; color: var(--lv-cream); font-weight: 700; letter-spacing: -1.2px; line-height: 1.2; margin: 0 0 14px; }
.lv-cta-box__title strong { color: var(--lv-coral); font-weight: 800; }
.lv-cta-box__subtitle { font-size: 15px; color: rgba(250,245,234,0.85); margin: 0 0 24px; }
.lv-cta-box__cta {
	display: inline-block;
	background: var(--lv-cream);
	color: var(--lv-fir);
	padding: 14px 30px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.2s ease;
	box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.lv-cta-box__cta:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,0,0,0.25); color: var(--lv-fir); }
.lv-cta-box__phone {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--lv-coral);
	font-size: 13px;
	margin-top: 16px;
	text-decoration: none;
}

/* ====================================================== */
/* WIDGET : LV CONTACT METHODS                            */
/* ====================================================== */
.lv-contact-methods {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	font-family: var(--lv-font);
}
.lv-contact-method {
	display: flex;
	gap: 14px;
	align-items: center;
	padding: 18px 20px;
	background: var(--lv-cream);
	border-radius: 14px;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lv-contact-method:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(16,88,77,0.1); }
.lv-contact-method__icon {
	width: 44px; height: 44px;
	border-radius: 12px;
	background: rgba(16,88,77,0.08);
	color: var(--lv-fir);
	display: flex; align-items: center; justify-content: center;
	font-size: 18px;
	flex-shrink: 0;
}
.lv-contact-method__body { flex: 1; min-width: 0; }
.lv-contact-method__label { font-size: 11px; color: var(--lv-gray); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; margin-bottom: 2px; }
.lv-contact-method__value { font-size: 15px; font-weight: 700; color: var(--lv-coffee); word-break: break-word; }
.lv-contact-method__note { font-size: 11px; color: var(--lv-coral); margin-top: 2px; font-weight: 600; }

/* ====================================================== */
/* WIDGET : LV HEADER                                     */
/* ====================================================== */
.lv-header {
	font-family: var(--lv-font);
	background: var(--lv-cream);
	padding: 18px 0;
	/* v3.0.10 : suppression de la border-bottom pour un header épuré */
}
.lv-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1280px;
	margin: 0 auto;
	padding: 16px 22px;
	gap: 24px;
}
.lv-header__logo-wrap { text-decoration: none; display: flex; flex-direction: column; gap: 2px; align-items: flex-start; }
.lv-header__logo-image { display: block; max-width: 100%; height: auto; }
.lv-header__logo { font-size: 22px; font-weight: 700; color: var(--lv-fir); letter-spacing: -0.8px; line-height: 1; }
.lv-header__tagline { font-size: 9px; color: var(--lv-gray); letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600; }
.lv-header__nav { display: flex; gap: 24px; }
.lv-header__menu-link {
	font-size: 14px;
	color: var(--lv-coffee);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s ease;
}
.lv-header__menu-link:hover { color: var(--lv-fir); }
.lv-header__cta {
	background: var(--lv-gradient-fir);
	color: var(--lv-cream);
	padding: 10px 22px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.lv-header__cta-icon {
	display: inline-flex;
	align-items: center;
	font-size: 14px;
	line-height: 1;
}
.lv-header__cta-icon svg, .lv-header__cta-icon i {
	width: 14px;
	height: 14px;
	font-size: 14px;
}
.lv-header__cta:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(16,88,77,0.3); color: var(--lv-cream); }
.lv-header__burger { display: none; background: none; border: none; flex-direction: column; gap: 4px; cursor: pointer; padding: 8px; }
.lv-header__burger span { display: block; width: 22px; height: 2px; background: var(--lv-fir); transition: all 0.3s ease; }
.lv-header__mobile-nav { display: none; }
@media (max-width: 900px) {
	.lv-header__nav, .lv-header__cta { display: none; }
	.lv-header__burger { display: flex; }
	.lv-header__mobile-nav {
		display: none;
		flex-direction: column;
		padding: 16px 22px;
		gap: 12px;
		border-top: 1px solid rgba(203,187,160,0.3);
		background: var(--lv-cream);
	}
	.lv-header__mobile-nav.is-open { display: flex; }
	.lv-header__mobile-link { font-size: 16px; color: var(--lv-coffee); text-decoration: none; padding: 8px 0; font-weight: 500; }
	.lv-header__mobile-cta {
		background: var(--lv-gradient-fir);
		color: var(--lv-cream);
		padding: 12px 22px;
		border-radius: 999px;
		font-size: 14px;
		font-weight: 600;
		text-decoration: none;
		text-align: center;
		margin-top: 8px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
	}
	.lv-header__mobile-cta svg, .lv-header__mobile-cta i {
		width: 14px;
		height: 14px;
		font-size: 14px;
	}
	.lv-header__burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
	.lv-header__burger.is-open span:nth-child(2) { opacity: 0; }
	.lv-header__burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}

/* ====================================================== */
/* WIDGET : LV BOTTOM NAV                                 */
/* ====================================================== */
.lv-bottom-nav {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	background: var(--lv-cream); /* v3.0.11 : opaque 100% pour cacher contenu derrière */
	border-top: 1px solid rgba(203,187,160,0.3);
	display: flex;
	justify-content: space-around;
	padding: 8px 4px;
	/* v3.0.11 : zone Home Indicator iPhone (en plus du padding existant) */
	padding-bottom: calc(8px + env(safe-area-inset-bottom));
	z-index: 1000;
	font-family: var(--lv-font);
	box-shadow: 0 -2px 12px rgba(0,0,0,0.04);
}
.lv-bottom-nav-mobile-only-yes .lv-bottom-nav { display: none; }
@media (max-width: 768px) {
	.lv-bottom-nav-mobile-only-yes .lv-bottom-nav { display: flex; }
}
.lv-bottom-nav__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	color: var(--lv-gray);
	text-decoration: none;
	padding: 6px 10px;
	font-size: 11px;
	font-weight: 600;
	transition: color 0.2s ease;
}
.lv-bottom-nav__item:hover { color: var(--lv-fir); }
.lv-bottom-nav__icon-wrap { position: relative; font-size: 20px; line-height: 1; }
.lv-bottom-nav__dot {
	position: absolute;
	top: -3px;
	right: -5px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--lv-coral);
	box-shadow: 0 0 0 2px var(--lv-cream);
}
.lv-bottom-nav__label { letter-spacing: 0.3px; }

/* ====================================================== */
/* WIDGET : LV LOCATION CARD                              */
/* ====================================================== */
.lv-location-card {
	display: flex;
	flex-direction: column;
	background: var(--lv-cream);
	border-radius: 18px;
	overflow: hidden;
	font-family: var(--lv-font);
	text-decoration: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lv-location-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(16,88,77,0.15); }
.lv-location-card__image { height: 180px; background-size: cover; background-position: center; }
.lv-location-card__body { padding: 22px; display: flex; flex-direction: column; gap: 8px; }
.lv-location-card__pin { color: var(--lv-coral); }
.lv-location-card__city { font-size: 22px; font-weight: 700; color: var(--lv-coffee); letter-spacing: -0.5px; }
.lv-location-card__distance { font-size: 12px; color: var(--lv-coral); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }
.lv-location-card__desc { font-size: 14px; color: var(--lv-gray); line-height: 1.5; margin: 6px 0; }
.lv-location-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--lv-fir);
	font-size: 13px;
	font-weight: 600;
	margin-top: 4px;
}

/* ====================================================== */
/* WIDGET : LV ZONE MAP                                   */
/* ====================================================== */
.lv-zone-map {
	background: var(--lv-beige);
	border-radius: 24px;
	padding: 40px 30px;
	font-family: var(--lv-font);
	text-align: center;
}
.lv-zone-map__inner { max-width: 820px; margin: 0 auto; }
.lv-zone-map__title { font-size: 28px; font-weight: 700; color: var(--lv-fir); letter-spacing: -1px; line-height: 1.2; margin: 0 0 12px; }
.lv-zone-map__subtitle { font-size: 15px; color: var(--lv-gray); line-height: 1.5; margin: 0 0 30px; }
.lv-zone-map__highlights {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 30px;
}
.lv-zone-map__highlight { display: flex; flex-direction: column; gap: 4px; }
.lv-zone-map__label { font-size: 36px; font-weight: 800; color: var(--lv-coral); letter-spacing: -1.5px; line-height: 1; }
.lv-zone-map__desc { font-size: 13px; color: var(--lv-gray); }
.lv-zone-map__cities { border-top: 1px solid rgba(203,187,160,0.4); padding-top: 24px; }
.lv-zone-map__cities-label { font-size: 11px; color: var(--lv-gray); text-transform: uppercase; letter-spacing: 2px; font-weight: 600; margin-bottom: 14px; }
.lv-zone-map__cities-list { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.lv-zone-map__city {
	display: inline-block;
	padding: 6px 14px;
	background: var(--lv-cream);
	color: var(--lv-coffee);
	font-size: 13px;
	font-weight: 600;
	border-radius: 999px;
	border: 1px solid rgba(203,187,160,0.4);
}
@media (max-width: 600px) {
	.lv-zone-map__highlights { grid-template-columns: 1fr; gap: 16px; }
}

/* === FIN === */

/* ====================================================== */
/* ATOMIC : LV STEP ITEM                                  */
/* ====================================================== */
.lv-step-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	font-family: var(--lv-font);
}
.lv-step-item__number {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--lv-gradient-fir);
	color: var(--lv-cream);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 700;
	flex-shrink: 0;
}
.lv-step-item--last .lv-step-item__number {
	background: var(--lv-cream);
	color: var(--lv-coral);
	border: 2px solid var(--lv-coral);
}
.lv-step-item__content { flex: 1; }
.lv-step-item__title { font-size: 16px; font-weight: 700; color: var(--lv-coffee); margin-bottom: 4px; }
.lv-step-item__desc { font-size: 14px; color: var(--lv-gray); line-height: 1.5; margin: 0; }

/* ====================================================== */
/* ATOMIC : LV PRICING CARD                               */
/* ====================================================== */
.lv-pricing-card {
	background: var(--lv-cream);
	border: 2px solid rgba(203, 187, 160, 0.3);
	border-radius: 18px;
	padding: 28px 24px;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 14px;
	font-family: var(--lv-font);
	font-feature-settings: var(--lv-font-features);
	transition: transform 0.3s ease;
	height: 100%;
}
.lv-pricing-card:hover { transform: translateY(-4px); }
.lv-pricing-card--featured {
	border-color: var(--lv-fir);
	box-shadow: 0 10px 30px rgba(16,88,77,0.2);
}
.lv-pricing-card__badge {
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--lv-fir);
	color: var(--lv-cream);
	padding: 5px 14px;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}
.lv-pricing-card__name { font-size: 22px; font-weight: 700; color: var(--lv-coffee); letter-spacing: -0.5px; }
.lv-pricing-card__tagline { font-size: 13px; color: var(--lv-gray); }
.lv-pricing-card__price {
	font-size: 42px;
	color: var(--lv-fir);
	font-weight: 800;
	letter-spacing: -2px;
	display: flex;
	align-items: baseline;
	gap: 4px;
}
.lv-pricing-card__price-suffix { font-size: 14px; color: var(--lv-gray); font-weight: 500; letter-spacing: 0; }
.lv-pricing-card__features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.lv-pricing-card__features li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 14px;
	color: var(--lv-coffee);
	line-height: 1.4;
}
.lv-pricing-card__features svg, .lv-pricing-card__features li > span:first-child { color: var(--lv-fir); flex-shrink: 0; margin-top: 3px; }
.lv-pricing-card__cta {
	display: block;
	text-align: center;
	background: var(--lv-gradient-fir);
	color: var(--lv-cream);
	padding: 12px 18px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease;
	margin-top: 8px;
}
.lv-pricing-card__cta:hover { transform: translateY(-1px); color: var(--lv-cream); }
.lv-pricing-card:not(.lv-pricing-card--featured) .lv-pricing-card__cta {
	background: transparent;
	color: var(--lv-fir);
	border: 1.5px solid var(--lv-fir);
}
.lv-pricing-card:not(.lv-pricing-card--featured) .lv-pricing-card__cta:hover {
	background: var(--lv-fir);
	color: var(--lv-cream);
}

/* ====================================================== */
/* ATOMIC : LV FAQ ITEM                                   */
/* ====================================================== */
.lv-faq-item {
	background: var(--lv-cream);
	border-radius: 14px;
	overflow: hidden;
	transition: box-shadow 0.2s ease;
	font-family: var(--lv-font);
}
.lv-faq-item--open { box-shadow: 0 4px 14px rgba(16,88,77,0.08); }
.lv-faq-item__question-wrap {
	width: 100%;
	background: none;
	border: none;
	padding: 18px 22px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	cursor: pointer;
	text-align: left;
	font-family: inherit;
}
.lv-faq-item__question { font-size: 16px; font-weight: 600; color: var(--lv-coffee); flex: 1; }
.lv-faq-item__icon {
	width: 28px; height: 28px;
	background: rgba(16,88,77,0.1);
	color: var(--lv-fir);
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-size: 18px; font-weight: 700;
	transition: transform 0.3s ease;
	flex-shrink: 0;
}
.lv-faq-item--open .lv-faq-item__icon { transform: rotate(45deg); background: var(--lv-fir); color: var(--lv-cream); }
.lv-faq-item__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
	padding: 0 22px;
	font-size: 14px;
	color: var(--lv-gray);
	line-height: 1.6;
}
.lv-faq-item--open .lv-faq-item__answer { max-height: 800px; padding: 0 22px 18px; }

/* ====================================================== */
/* ATOMIC : LV USE CASE ITEM                              */
/* ====================================================== */
.lv-use-case-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 20px 12px;
	text-align: center;
	background: rgba(16, 88, 77, 0.04);
	border-radius: 14px;
	transition: all 0.2s ease;
	text-decoration: none;
	font-family: var(--lv-font);
}
.lv-use-case-item:hover { background: rgba(16, 88, 77, 0.1); transform: translateY(-2px); }
.lv-use-case-item__icon { font-size: 28px; color: var(--lv-fir); }
.lv-use-case-item__name { font-size: 13px; font-weight: 600; color: var(--lv-coffee); }

/* ====================================================== */
/* ATOMIC : LV CONTACT METHOD                             */
/* ====================================================== */
.lv-contact-method-atom {
	display: flex;
	gap: 14px;
	align-items: center;
	padding: 18px 20px;
	background: var(--lv-cream);
	border-radius: 14px;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	font-family: var(--lv-font);
}
.lv-contact-method-atom:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(16,88,77,0.1); }
.lv-contact-method-atom__icon {
	width: 44px; height: 44px;
	border-radius: 12px;
	background: rgba(16,88,77,0.08);
	color: var(--lv-fir);
	display: flex; align-items: center; justify-content: center;
	font-size: 18px;
	flex-shrink: 0;
}
.lv-contact-method-atom__body { flex: 1; min-width: 0; }
.lv-contact-method-atom__label { font-size: 11px; color: var(--lv-gray); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; margin-bottom: 2px; }
.lv-contact-method-atom__value { font-size: 15px; font-weight: 700; color: var(--lv-coffee); word-break: break-word; }
.lv-contact-method-atom__note { font-size: 11px; color: var(--lv-coral); margin-top: 2px; font-weight: 600; }

/* ====================================================== */
/* ATOMIC : LV TRUST LOGO                                 */
/* ====================================================== */
.lv-trust-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
}
.lv-trust-logo img {
	max-width: 100%;
	max-height: 50px;
	height: auto;
	width: auto;
	transition: opacity 0.3s ease, filter 0.3s ease;
}
.lv-trust-logo:hover img {
	opacity: 1 !important;
	filter: none !important;
}

/* ====================================================== */
/* ATOMIC : LV TIMELINE ITEM                              */
/* ====================================================== */
.lv-timeline-item {
	position: relative;
	padding-left: 30px;
	padding-bottom: 28px;
	font-family: var(--lv-font);
}
.lv-timeline-item::before {
	content: '';
	position: absolute;
	left: 8px;
	top: 18px;
	width: 2px;
	height: calc(100% - 18px);
	background: var(--lv-fir);
}
.lv-timeline-item--last::before { display: none; }
.lv-timeline-item__dot {
	position: absolute;
	left: 2px;
	top: 4px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--lv-fir);
	border: 3px solid var(--lv-cream);
	box-shadow: 0 0 0 2px var(--lv-fir);
}
.lv-timeline-item--last .lv-timeline-item__dot {
	background: var(--lv-coral);
	box-shadow: 0 0 0 2px var(--lv-coral);
}
.lv-timeline-item__time { font-size: 13px; font-weight: 700; color: var(--lv-fir); letter-spacing: 1px; margin-bottom: 4px; }
.lv-timeline-item__title { font-size: 16px; font-weight: 700; color: var(--lv-coffee); margin-bottom: 4px; }
.lv-timeline-item__desc { font-size: 13px; color: var(--lv-gray); line-height: 1.5; margin: 0; }





/* ====================================================== */
/* LV CONCEPT CARD v2.5.0 - Architecture finale            */
/* Image arrondie au-dessus + petite icône à côté du titre */
/* Fond ÉDITABLE (pas de !important sur background)        */
/* ====================================================== */

.elementor-widget-lv_concept_card .lv-cc {
	display: flex !important;
	flex-direction: column !important;
	background-color: #FAF5EA; /* PAS de !important pour rester éditable */
	border-radius: 18px;       /* PAS de !important pour rester éditable */
	overflow: hidden !important;
	text-decoration: none !important;
	color: inherit;
	height: 100% !important;
	box-shadow: 0 4px 18px rgba(16,88,77,0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	font-family: var(--lv-font);
	font-feature-settings: var(--lv-font-features);
}
.elementor-widget-lv_concept_card .lv-cc:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 32px rgba(16,88,77,0.14);
}

/* ----- VISUEL TOP (image arrondie ou bloc couleur) ----- */
.elementor-widget-lv_concept_card .lv-cc__top {
	width: 100% !important;
	height: 240px;
	position: relative !important;
	overflow: hidden !important;
	margin: 0;
	padding: 0;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}
.elementor-widget-lv_concept_card .lv-cc__top--color {
	background: linear-gradient(135deg, #10584D 0%, #16433C 100%);
}
.elementor-widget-lv_concept_card .lv-cc__top--image {
	background-size: cover !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
}
.elementor-widget-lv_concept_card .lv-cc__top-icon {
	color: #FAF5EA;
	font-size: 48px;
	line-height: 1;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}
.elementor-widget-lv_concept_card .lv-cc__top-icon i,
.elementor-widget-lv_concept_card .lv-cc__top-icon svg {
	font-size: 48px;
	width: 48px;
	height: 48px;
	color: inherit;
}

/* ----- BADGE POPULAIRE ----- */
.elementor-widget-lv_concept_card .lv-cc__badge {
	position: absolute !important;
	top: 16px !important;
	right: 16px !important;
	background-color: #10584D;
	color: #FAF5EA;
	padding: 7px 16px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase !important;
	text-decoration: none !important;
	border-bottom: none !important;
	box-shadow: 0 4px 12px rgba(0,0,0,0.18);
	z-index: 2 !important;
}

/* ----- BODY (zone texte) ----- */
.elementor-widget-lv_concept_card .lv-cc__body {
	padding: 24px 26px;
	display: flex !important;
	flex-direction: column !important;
	gap: 16px !important;
	flex: 1 !important;
	font-family: var(--lv-font);
}

/* ----- HEADER (icône + titre + tagline) ----- */
.elementor-widget-lv_concept_card .lv-cc__header {
	display: flex !important;
	align-items: flex-start !important;
	gap: 14px !important;
}

.elementor-widget-lv_concept_card .lv-cc__title-icon-wrap {
	width: 48px !important;
	height: 48px !important;
	min-width: 48px !important;
	border-radius: 10px;
	background-color: #E8E2D2;
	color: #10584D;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-size: 20px;
	flex-shrink: 0 !important;
}
.elementor-widget-lv_concept_card .lv-cc__title-icon-wrap i,
.elementor-widget-lv_concept_card .lv-cc__title-icon-wrap svg {
	font-size: 20px;
	width: 20px !important;
	height: 20px !important;
	color: inherit;
}

.elementor-widget-lv_concept_card .lv-cc__title-block {
	display: flex !important;
	flex-direction: column !important;
	gap: 2px !important;
	flex: 1 !important;
	min-width: 0 !important;
}

.elementor-widget-lv_concept_card .lv-cc__title {
	font-family: var(--lv-font);
	font-size: 22px;
	font-weight: 700;
	color: #3D3A33;
	letter-spacing: -0.4px;
	line-height: 1.2;
	text-decoration: none !important;
	border-bottom: none !important;
	margin: 0;
}

.elementor-widget-lv_concept_card .lv-cc__tagline {
	font-family: var(--lv-font);
	font-size: 14px;
	font-style: italic !important;
	color: #10584D;
	font-weight: 500;
	text-decoration: none !important;
	border-bottom: none !important;
	margin: 0;
}

/* ----- DESCRIPTION ----- */
.elementor-widget-lv_concept_card .lv-cc__desc {
	font-family: var(--lv-font);
	font-size: 15px;
	color: #6F6A60;
	line-height: 1.55;
	margin: 0;
	text-decoration: none !important;
	border-bottom: none !important;
}

/* ----- FOOTER (prix + CTA) ----- */
.elementor-widget-lv_concept_card .lv-cc__footer {
	margin-top: auto;
	padding-top: 18px;
	border-top: 1px solid rgba(203, 187, 160, 0.4) !important;
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	gap: 12px !important;
	flex-wrap: wrap !important;
}

.elementor-widget-lv_concept_card .lv-cc__price-wrap {
	display: flex !important;
	align-items: baseline !important;
	gap: 8px !important;
}

.elementor-widget-lv_concept_card .lv-cc__price-label {
	font-family: var(--lv-font);
	font-size: 13px;
	color: #6F6A60;
	font-style: italic !important;
	text-decoration: none !important;
}

.elementor-widget-lv_concept_card .lv-cc__price {
	font-family: var(--lv-font);
	font-size: 28px;
	font-weight: 800;
	color: #10584D;
	letter-spacing: -1px;
	text-decoration: none !important;
	line-height: 1;
}

.elementor-widget-lv_concept_card .lv-cc__cta {
	display: inline-flex !important;
	align-items: center !important;
	gap: 6px !important;
	color: #10584D;
	font-family: var(--lv-font);
	font-size: 15px;
	font-weight: 600;
	text-decoration: none !important;
	border-bottom: none !important;
	transition: gap 0.2s ease !important;
}
.elementor-widget-lv_concept_card .lv-cc:hover .lv-cc__cta {
	gap: 10px !important;
}
.elementor-widget-lv_concept_card .lv-cc__cta svg {
	flex-shrink: 0 !important;
}

/* ----- Tous les liens : pas d'underline ----- */
.elementor-widget-lv_concept_card a,
.elementor-widget-lv_concept_card a:hover,
.elementor-widget-lv_concept_card a:focus,
.elementor-widget-lv_concept_card a:visited {
	text-decoration: none !important;
	border-bottom: none !important;
	box-shadow: none !important;
}

/* === FIN LV Concept Card v2.5.0 === */

/* ====================================================== */
/* LV SLIDER MOBILE - Activé par classe .lv-slider-mobile  */
/* ====================================================== */

/* ===== MOBILE : slider horizontal swipe ===== */
@media (max-width: 768px) {

	/* Conteneur des colonnes : devient un scroll horizontal */
	.lv-slider-mobile > .elementor-container,
	.lv-slider-mobile > .elementor-container > .elementor-row {
		flex-wrap: nowrap !important;
		overflow-x: auto !important;
		overflow-y: hidden !important;
		scroll-snap-type: x mandatory !important;
		-webkit-overflow-scrolling: touch !important;
		scrollbar-width: none !important; /* Firefox */
		-ms-overflow-style: none !important; /* IE/Edge */
		padding: 0 24px 4px;
		gap: 16px !important;
		scroll-padding: 0 24px;
	}

	/* Cacher la scrollbar Chrome/Safari */
	.lv-slider-mobile > .elementor-container::-webkit-scrollbar,
	.lv-slider-mobile > .elementor-container > .elementor-row::-webkit-scrollbar {
		display: none !important;
		width: 0 !important;
		height: 0 !important;
	}

	/* Colonnes : largeur fixe (85% du viewport), snap au centre */
	.lv-slider-mobile .elementor-column {
		flex: 0 0 calc(85% - 8px) !important;
		max-width: calc(85% - 8px);
		min-width: calc(85% - 8px) !important;
		scroll-snap-align: center !important;
		scroll-snap-stop: always !important;
	}

	/* Conteneur des indicateurs : en bas, centré, à 20px sous les cards */
	.lv-slider-mobile .lv-slider-indicators {
		display: flex !important;
		justify-content: center !important;
		align-items: center !important;
		gap: 8px !important;
		margin: 20px 0 0;
		padding: 0;
		width: 100% !important;
	}

	/* Indicateur : point classique (inactif) */
	.lv-slider-mobile .lv-slider-dot {
		display: block !important;
		width: 8px !important;
		height: 8px !important;
		border-radius: 999px;
		background-color: rgba(16, 88, 77, 0.25);
		border: none !important;
		padding: 0;
		margin: 0;
		cursor: pointer !important;
		transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.25s ease !important;
		box-shadow: none !important;
		outline: none !important;
		appearance: none !important;
		-webkit-appearance: none !important;
	}

	.lv-slider-mobile .lv-slider-dot:focus-visible {
		outline: 2px solid var(--lv-fir) !important;
		outline-offset: 2px !important;
	}

	/* Indicateur ACTIF : devient une barre allongée */
	.lv-slider-mobile .lv-slider-dot--active {
		width: 28px !important;
		background-color: var(--lv-fir);
	}
}

/* ===== DESKTOP/TABLETTE : indicateurs masqués ===== */
@media (min-width: 769px) {
	.lv-slider-mobile .lv-slider-indicators {
		display: none !important;
	}
}

/* === FIN LV Slider === */

/* ====================================================== */
/* ARMURE CSS HEADER - Contre les soulignements Rife      */
/* ====================================================== */

/* Reset TOUS les liens du header (desktop + mobile) */
.elementor-widget-lv_header .lv-header a,
.elementor-widget-lv_header .lv-header a:hover,
.elementor-widget-lv_header .lv-header a:focus,
.elementor-widget-lv_header .lv-header a:visited,
.elementor-widget-lv_header .lv-header a:active {
	text-decoration: none !important;
	border-bottom: none !important;
	box-shadow: none !important;
	border-bottom-width: 0 !important;
}

/* Logo wrap : pas de soulignement même sur les enfants */
.elementor-widget-lv_header .lv-header__logo-wrap,
.elementor-widget-lv_header .lv-header__logo-wrap *,
.elementor-widget-lv_header .lv-header__logo,
.elementor-widget-lv_header .lv-header__tagline {
	text-decoration: none !important;
	border-bottom: none !important;
}

/* Menu links : pas de soulignement, même au hover */
.elementor-widget-lv_header .lv-header__menu-link,
.elementor-widget-lv_header .lv-header__menu-link:hover,
.elementor-widget-lv_header .lv-header__menu-link:focus,
.elementor-widget-lv_header .lv-header__menu-link:visited {
	text-decoration: none !important;
	border-bottom: none !important;
	box-shadow: none !important;
}

/* CTA : pas de soulignement */
.elementor-widget-lv_header .lv-header__cta,
.elementor-widget-lv_header .lv-header__cta:hover,
.elementor-widget-lv_header .lv-header__cta *,
.elementor-widget-lv_header .lv-header__cta-text,
.elementor-widget-lv_header .lv-header__cta-icon {
	text-decoration: none !important;
	border-bottom: none !important;
}

/* Menu mobile : reset */
.elementor-widget-lv_header .lv-header__mobile-link,
.elementor-widget-lv_header .lv-header__mobile-link:hover,
.elementor-widget-lv_header .lv-header__mobile-cta,
.elementor-widget-lv_header .lv-header__mobile-cta:hover {
	text-decoration: none !important;
	border-bottom: none !important;
	box-shadow: none !important;
}

/* === FIN ARMURE HEADER === */

/* ====================================================== */
/* LOGO IMAGE FOOTER                                       */
/* ====================================================== */
.lv-footer__logo-image {
	display: block;
	max-width: 100%;
	height: auto;
	margin-bottom: 4px;
	/* Filtre pour fond sombre : si le logo a du noir, on l'inverse en blanc cassé */
}

/* ====================================================== */
/* ARMURE CSS FOOTER - Contre les soulignements Rife       */
/* ====================================================== */

/* Reset tous les liens du footer */
.elementor-widget-lv_footer .lv-footer a,
.elementor-widget-lv_footer .lv-footer a:hover,
.elementor-widget-lv_footer .lv-footer a:focus,
.elementor-widget-lv_footer .lv-footer a:visited,
.elementor-widget-lv_footer .lv-footer a:active {
	text-decoration: none !important;
	border-bottom: none !important;
	box-shadow: none !important;
	border-bottom-width: 0 !important;
}

/* Liste de liens dans les colonnes Services et Labo Van */
.elementor-widget-lv_footer .lv-footer__links li,
.elementor-widget-lv_footer .lv-footer__links a,
.elementor-widget-lv_footer .lv-footer__links a:hover {
	text-decoration: none !important;
	border-bottom: none !important;
	list-style: none !important;
}

/* Adresse contact : pas de soulignement */
.elementor-widget-lv_footer .lv-footer__contact,
.elementor-widget-lv_footer .lv-footer__address-line,
.elementor-widget-lv_footer .lv-footer__contact a {
	text-decoration: none !important;
	border-bottom: none !important;
}

/* Socials */
.elementor-widget-lv_footer .lv-footer__social,
.elementor-widget-lv_footer .lv-footer__social:hover,
.elementor-widget-lv_footer .lv-footer__social * {
	text-decoration: none !important;
	border-bottom: none !important;
}

/* Bas du footer (copyright + mentions légales) */
.elementor-widget-lv_footer .lv-footer__bottom a,
.elementor-widget-lv_footer .lv-footer__bottom a:hover,
.elementor-widget-lv_footer .lv-footer__bottom-right a {
	text-decoration: none !important;
	border-bottom: none !important;
}

/* Logo wrap : pas de soulignement même sur les enfants */
.elementor-widget-lv_footer .lv-footer__logo,
.elementor-widget-lv_footer .lv-footer__tagline,
.elementor-widget-lv_footer .lv-footer__logo-image {
	text-decoration: none !important;
	border-bottom: none !important;
}

/* === FIN ARMURE FOOTER === */

/* ====================================================== */
/* LV FOOTER v2.8.0 - 3 colonnes équilibrées               */
/* Brand horizontal (logo + texte) + adresse + socials     */
/* ====================================================== */

.elementor-widget-lv_footer .lv-footer {
	color: #FAF5EA;
	font-family: var(--lv-font);
	padding: 0;
}

.elementor-widget-lv_footer .lv-footer__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 56px 40px 24px;
}

.elementor-widget-lv_footer .lv-footer__cols {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 48px;
	align-items: start;
}

.elementor-widget-lv_footer .lv-footer__col {
	display: flex;
	flex-direction: column;
}

/* === COL 1 : BRAND === */
.elementor-widget-lv_footer .lv-footer__col--brand {
	gap: 20px;
}

.elementor-widget-lv_footer .lv-footer__brand-row {
	display: flex;
	align-items: center;
	gap: 20px;
}

.elementor-widget-lv_footer .lv-footer__logo-image {
	display: block;
	height: 110px;
	width: auto;
	flex-shrink: 0;
}

.elementor-widget-lv_footer .lv-footer__logo {
	font-size: 28px;
	font-weight: 700;
	color: #FAF5EA;
	letter-spacing: -1px;
}

.elementor-widget-lv_footer .lv-footer__description {
	font-size: 14px;
	line-height: 1.6;
	color: rgba(250,245,234,0.8);
	margin: 0;
}

.elementor-widget-lv_footer .lv-footer__address {
	font-size: 13px;
	color: rgba(250,245,234,0.7);
	display: flex;
	align-items: center;
	gap: 8px;
}

.elementor-widget-lv_footer .lv-footer__address-icon {
	color: #E8997B;
	font-size: 14px;
}

.elementor-widget-lv_footer .lv-footer__socials {
	display: flex;
	gap: 10px;
}

.elementor-widget-lv_footer .lv-footer__social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid rgba(250,245,234,0.25);
	border-radius: 50%;
	color: #FAF5EA;
	text-decoration: none;
	font-size: 15px;
	transition: all 0.2s ease;
}

.elementor-widget-lv_footer .lv-footer__social:hover {
	background-color: #E8997B;
	border-color: #E8997B;
	color: #FAF5EA;
}

/* === COLS 2 + 3 : LIENS === */
.elementor-widget-lv_footer .lv-footer__column-title {
	font-size: 10px;
	color: #E8997B;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 16px;
}

.elementor-widget-lv_footer .lv-footer__links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.elementor-widget-lv_footer .lv-footer__links li {
	list-style: none;
}

.elementor-widget-lv_footer .lv-footer__links a {
	color: rgba(250,245,234,0.85);
	text-decoration: none;
	font-size: 14px;
	transition: color 0.2s ease;
}

.elementor-widget-lv_footer .lv-footer__links a:hover {
	color: #E8997B;
}

/* === BAS LÉGAL === */
.elementor-widget-lv_footer .lv-footer__bottom {
	border-top: 1px solid rgba(250,245,234,0.1);
	padding-top: 24px;
	margin-top: 44px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.elementor-widget-lv_footer .lv-footer__copyright {
	font-size: 12px;
	color: rgba(250,245,234,0.65);
}

.elementor-widget-lv_footer .lv-footer__bottom-right {
	display: flex;
	gap: 18px;
}

.elementor-widget-lv_footer .lv-footer__bottom-right a {
	font-size: 12px;
	color: rgba(250,245,234,0.65);
	text-decoration: none;
	transition: color 0.2s ease;
}

.elementor-widget-lv_footer .lv-footer__bottom-right a:hover {
	color: #E8997B;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
	.elementor-widget-lv_footer .lv-footer__cols {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}
	.elementor-widget-lv_footer .lv-footer__col--brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 600px) {
	.elementor-widget-lv_footer .lv-footer__inner {
		padding: 40px 20px 20px;
	}
	.elementor-widget-lv_footer .lv-footer__cols {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.elementor-widget-lv_footer .lv-footer__brand-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}
	.elementor-widget-lv_footer .lv-footer__logo-image {
		height: 80px;
	}
	.elementor-widget-lv_footer .lv-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* === ARMURE CSS : pas de soulignements === */
.elementor-widget-lv_footer .lv-footer a,
.elementor-widget-lv_footer .lv-footer a:hover,
.elementor-widget-lv_footer .lv-footer a:focus,
.elementor-widget-lv_footer .lv-footer a:visited {
	text-decoration: none !important;
	border-bottom: none !important;
	box-shadow: none !important;
}

/* === FIN LV FOOTER v2.8.0 === */

/* ====================================================== */
/* LV VIDEO BLOCK - Mode AUTO-LOOP (v2.9.0)                */
/* ====================================================== */

.lv-video-block--autoloop {
	position: relative;
	overflow: hidden;
	background: #000;
}

.lv-video-block--autoloop .lv-video-block__media,
.lv-video-block--autoloop .lv-video-block__iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border: none;
	pointer-events: none; /* Pas d'interaction utilisateur */
}

/* L'iframe YouTube/Vimeo a besoin d'être plus large pour cacher les bordures */
.lv-video-block--autoloop .lv-video-block__iframe {
	width: 110%;
	height: 110%;
	top: -5%;
	left: -5%;
}

/* === FIN VIDEO AUTOLOOP === */

/* ====================================================== */
/* LV REVIEW INVITE v3.0.0                                 */
/* Card invitation à laisser un avis (fond vert sapin)    */
/* ====================================================== */

.elementor-widget-lv_review_invite .lv-ri {
	background: linear-gradient(135deg, #10584D 0%, #16433C 100%);
	border-radius: 14px;
	border-left: 4px solid #E8997B;
	padding: 28px 26px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	color: #FAF5EA;
	font-family: var(--lv-font);
	height: 100%;
}

.elementor-widget-lv_review_invite .lv-ri__stars {
	font-size: 16px;
	color: #E8997B;
	letter-spacing: 1px;
	line-height: 1;
}

.elementor-widget-lv_review_invite .lv-ri__eyebrow {
	font-size: 11px;
	color: #E8997B;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-weight: 700;
	margin: 0;
}

.elementor-widget-lv_review_invite .lv-ri__title {
	font-size: 22px;
	font-weight: 800;
	color: #FAF5EA;
	margin: 0;
	line-height: 1.2;
	letter-spacing: -0.4px;
}

.elementor-widget-lv_review_invite .lv-ri__desc {
	font-size: 13px;
	color: rgba(250,245,234,0.75);
	line-height: 1.55;
	margin: 0;
	font-style: italic;
}

.elementor-widget-lv_review_invite .lv-ri__cta-wrap {
	margin-top: auto;
	padding-top: 8px;
}

.elementor-widget-lv_review_invite .lv-ri__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: #E8997B;
	color: #FAF5EA;
	padding: 10px 18px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none !important;
	border-bottom: none !important;
	transition: all 0.2s ease;
}

.elementor-widget-lv_review_invite .lv-ri__cta:hover {
	background-color: #D17C58;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(232,153,123,0.3);
}

.elementor-widget-lv_review_invite .lv-ri__cta-icon {
	flex-shrink: 0;
	color: currentColor;
}

/* Armure : pas de soulignements */
.elementor-widget-lv_review_invite .lv-ri a,
.elementor-widget-lv_review_invite .lv-ri a:hover,
.elementor-widget-lv_review_invite .lv-ri a:focus,
.elementor-widget-lv_review_invite .lv-ri a:visited {
	text-decoration: none !important;
	border-bottom: none !important;
	box-shadow: none !important;
}

/* === FIN LV REVIEW INVITE === */

/* ====================================================== */
/* FIX MARGE MOBILE - CTA Box + sections                  */
/* Évite l'effet "collé aux bords" sur smartphone         */
/* ====================================================== */

@media (max-width: 768px) {
	/* CTA Box : marge externe automatique sur mobile */
	.elementor-widget-lv_cta_box {
		padding-left: 16px;
		padding-right: 16px;
	}

	.elementor-widget-lv_cta_box .lv-cta-box {
		padding: 36px 22px;
	}

	/* CTA Box dans une section pleine largeur : aussi marges */
	.elementor-section-stretched .elementor-widget-lv_cta_box {
		margin-left: 16px;
		margin-right: 16px;
	}
}

/* === FIN FIX MARGE MOBILE === */

/* ============================================================ */
/* WIDGET : LV DIFFERENCE CARD v3.2.0 (refonte complète)        */
/* ============================================================ */
.lv-diff {
	position: relative;
	background: transparent;
	border-radius: 18px;
	padding: 28px 26px;
	font-family: var(--lv-font);
	font-feature-settings: var(--lv-font-features);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}
/* Badge (haut droite) */
.lv-diff__badge {
	position: absolute;
	top: 18px;
	right: 18px;
	background: var(--lv-fir);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 7px 14px;
	border-radius: 30px;
	z-index: 2;
}
/* En-tête : icône + titre + eyebrow */
.lv-diff__header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 18px;
	padding-right: 90px; /* éviter le chevauchement du badge */
}
.lv-diff__icon {
	width: 54px;
	height: 54px;
	border-radius: 14px;
	background: #E8E0CF;
	color: var(--lv-fir);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 22px;
}
.lv-diff__icon svg { width: 24px; height: 24px; }
.lv-diff__head-text { flex: 1; min-width: 0; }
.lv-diff__title {
	font-size: 24px;
	font-weight: 800;
	color: var(--lv-coffee);
	line-height: 1.15;
	margin-bottom: 4px;
}
.lv-diff__eyebrow {
	font-size: 13px;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--lv-fir);
}
.lv-diff__subtitle {
	font-size: 15px;
	line-height: 1.55;
	color: var(--lv-gray);
	margin: 0 0 20px;
}
/* Liste d'options */
.lv-diff__options {
	list-style: none;
	margin: 0 0 22px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.lv-diff__opt {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 15px;
	line-height: 1.3;
}
.lv-diff__mark {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 1.5px solid currentColor;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.lv-diff__mark svg { width: 12px; height: 12px; }
.lv-diff__opt--included .lv-diff__mark { color: var(--lv-fir); }
.lv-diff__opt--included .lv-diff__opt-text { color: var(--lv-coffee); }
.lv-diff__opt--option .lv-diff__mark { color: var(--lv-gray-light); border-style: dashed; }
.lv-diff__opt--option .lv-diff__opt-text { color: var(--lv-gray-light); }
/* Bouton */
.lv-diff__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	text-align: center;
	font-family: var(--lv-font);
	font-size: 16px;
	font-weight: 600;
	border-radius: 40px;
	padding: 15px 26px;
	cursor: pointer;
	text-decoration: none;
	transition: transform 0.3s ease, filter 0.3s ease;
	margin-top: auto;
}
.lv-diff__btn:hover { transform: translateY(-2px); filter: brightness(1.06); }
.lv-diff__btn:hover .lv-diff__btn-arrow { transform: translateX(3px); }
.lv-diff__btn-arrow { display: inline-flex; transition: transform 0.25s ease; }
.lv-diff__btn-arrow svg { width: 16px; height: 16px; }

/* ===== MODE MISE EN ÉVIDENCE — structure uniquement, couleurs via Elementor ===== */
.lv-diff--photo {
	background-size: cover;
	background-position: center;
}
/* Le mode "light" assure juste la lisibilité par défaut sur fond foncé.
   Toutes ces couleurs sont surchargeables dans Elementor. */
.lv-diff--light .lv-diff__icon { background: rgba(251,248,242,0.15); }

@media (max-width: 600px) {
	.lv-diff { padding: 22px 20px; }
	.lv-diff__header { padding-right: 80px; }
	.lv-diff__title { font-size: 21px; }
}

/* ============================================================ */
/* WIDGET : LV PRICING CARD v3.5.0 (refonte complète)          */
/* Fond transparent par défaut · features V/O · bouton classique */
/* ============================================================ */
.lv-pc {
	position: relative;
	background: transparent;
	border: 1px solid #E8E0CF;
	border-radius: 18px;
	padding: 32px;
	font-family: var(--lv-font);
	font-feature-settings: var(--lv-font-features);
	text-align: left;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.lv-pc__badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: var(--lv-fir);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 6px 13px;
	border-radius: 30px;
}
.lv-pc__eyebrow {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #B8B0A0;
	margin-bottom: 8px;
}
.lv-pc__name {
	font-size: 32px;
	font-weight: 700;
	color: var(--lv-coffee);
	line-height: 1.1;
	letter-spacing: -0.5px;
}
.lv-pc__divider {
	height: 1px;
	background: #E8E0CF;
	margin: 18px 0;
}
.lv-pc__price {
	margin-bottom: 22px;
	display: flex;
	align-items: baseline;
	gap: 8px;
}
.lv-pc__price-main {
	font-size: 40px;
	font-weight: 700;
	color: var(--lv-fir);
	line-height: 1;
	letter-spacing: -1px;
}
.lv-pc__price-suffix {
	font-size: 16px;
	font-weight: 400;
	color: #B8B0A0;
}
/* Centrage : quand .lv-pc est centré, on recentre les éléments flex */
.lv-pc[style*="center"] .lv-pc__price { justify-content: center; }
.lv-pc[style*="center"] .lv-pc__feat { justify-content: flex-start; }
/* Features */
.lv-pc__features {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 13px;
	flex: 1;
}
.lv-pc__feat {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 16px;
	line-height: 1.3;
	text-align: left;
}
.lv-pc__mark {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 1.5px solid currentColor;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.lv-pc__mark svg { width: 12px; height: 12px; }
.lv-pc__feat--included .lv-pc__mark { color: var(--lv-fir); }
.lv-pc__feat--included .lv-pc__feat-text { color: var(--lv-coffee); }
.lv-pc__feat--option .lv-pc__mark { color: #C4BDB0; border-style: dashed; }
.lv-pc__feat--option .lv-pc__feat-text { color: #C4BDB0; }
/* Bouton classique propre */
.lv-pc__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	font-family: var(--lv-font);
	font-size: 16px;
	font-weight: 600;
	color: #FBF8F2;
	background: var(--lv-fir);
	border: none;
	border-radius: 40px;
	padding: 15px 26px;
	cursor: pointer;
	text-decoration: none;
	transition: transform 0.3s ease, filter 0.3s ease;
	margin-top: auto;
}
.lv-pc__btn:hover { transform: translateY(-2px); filter: brightness(1.08); }
.lv-pc__btn:hover .lv-pc__btn-arrow { transform: translateX(3px); }
.lv-pc__btn-arrow { display: inline-flex; transition: transform 0.25s ease; }
.lv-pc__btn-arrow svg { width: 16px; height: 16px; }

@media (max-width: 600px) {
	.lv-pc { padding: 24px 20px; }
	.lv-pc__name { font-size: 27px; }
	.lv-pc__price-main { font-size: 34px; }
}

/* ============================================================ */
/* WIDGET : LV PRICING PRO v3.7.0 (refonte esthétique)         */
/* Badge centré haut · eyebrow→titre · texte centré · transparent */
/* ============================================================ */
.lv-pp {
	background: transparent;
	border: 1px solid #E8E0CF;
	border-radius: 20px;
	padding: 38px;
	font-family: var(--lv-font);
	font-feature-settings: var(--lv-font-features);
	text-align: center;
	display: flex;
	flex-direction: column;
	height: 100%;
}
/* Badge centré en haut (pleine largeur du contenu) */
.lv-pp__badge-wrap {
	display: flex;
	justify-content: center;
	margin-bottom: 18px;
}
.lv-pp__badge {
	display: inline-block;
	background: var(--lv-fir);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 7px 16px;
	border-radius: 30px;
}
/* Eyebrow PUIS nom (bon ordre) */
.lv-pp__eyebrow {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #B8B0A0;
	margin-bottom: 8px;
}
.lv-pp__name {
	font-size: 34px;
	font-weight: 700;
	color: var(--lv-coffee);
	line-height: 1.1;
	letter-spacing: -0.5px;
	margin-bottom: 16px;
}
/* Prix */
.lv-pp__price {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 8px;
	margin-bottom: 4px;
}
.lv-pp__price-main {
	font-size: 44px;
	font-weight: 700;
	color: var(--lv-fir);
	line-height: 1;
	letter-spacing: -1px;
}
.lv-pp__price-suffix {
	font-size: 16px;
	font-weight: 400;
	color: #B8B0A0;
}
.lv-pp__divider {
	height: 1px;
	background: #E8E0CF;
	margin: 24px 0;
}
/* Features */
.lv-pp__features {
	list-style: none;
	margin: 0 0 26px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
	flex: 1;
	text-align: left;
}
.lv-pp__feat {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 16px;
	line-height: 1.3;
}
.lv-pp__mark {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 1.5px solid currentColor;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.lv-pp__mark svg { width: 12px; height: 12px; }
.lv-pp__feat--included .lv-pp__mark { color: var(--lv-fir); }
.lv-pp__feat--included .lv-pp__feat-text { color: var(--lv-coffee); }
.lv-pp__feat--option .lv-pp__mark { color: #C4BDB0; border-style: dashed; }
.lv-pp__feat--option .lv-pp__feat-text { color: #C4BDB0; }
/* Bouton classique */
.lv-pp__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	font-family: var(--lv-font);
	font-size: 16px;
	font-weight: 600;
	color: #FBF8F2;
	background: var(--lv-fir);
	border: none;
	border-radius: 40px;
	padding: 16px 26px;
	cursor: pointer;
	text-decoration: none;
	transition: transform 0.3s ease, filter 0.3s ease;
	margin-top: auto;
}
.lv-pp__btn:hover { transform: translateY(-2px); filter: brightness(1.08); }
.lv-pp__btn:hover .lv-pp__btn-arrow { transform: translateX(3px); }
.lv-pp__btn-arrow { display: inline-flex; transition: transform 0.25s ease; }
.lv-pp__btn-arrow svg { width: 16px; height: 16px; }

@media (max-width: 600px) {
	.lv-pp { padding: 28px 22px; }
	.lv-pp__name { font-size: 28px; }
	.lv-pp__price-main { font-size: 36px; }
}

/* ============================================================ */
/* WIDGET : LV BLOG v3.8.0 — design maquette Journal           */
/* ============================================================ */
.lvb {
	--lvb-terra: #D85A30;
	--lvb-forest: #2E5A4E;
	--lvb-gold: #FAC775;
	--lvb-ink: #1C1C1C;
	--lvb-cream: #FBF8F2;
	--lvb-soft: #3A3A38;
	--lvb-muted: #8A8A86;
	--lvb-line: rgba(0,0,0,0.12);
	font-family: var(--lv-font);
	font-feature-settings: var(--lv-font-features);
}
/* Badges colorés par catégorie */
.lvb-badge {
	display: inline-flex;
	align-items: center;
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 0.3rem 0.7rem;
	border-radius: 999px;
	background: var(--lvb-terra);
	color: var(--lvb-cream);
	box-shadow: 0 4px 12px -4px rgba(0,0,0,0.25);
}
.lvb-badge--terra { background: var(--lvb-terra); color: var(--lvb-cream); }
.lvb-badge--forest { background: var(--lvb-forest); color: var(--lvb-cream); }
.lvb-badge--gold { background: var(--lvb-gold); color: var(--lvb-ink); }
.lvb-badge--ink { background: var(--lvb-ink); color: var(--lvb-cream); }
.lvb-ic { width: 1em; height: 1em; display: inline-block; vertical-align: -0.125em; flex-shrink: 0; }

/* ===== ARTICLE VEDETTE ===== */
.lvb-feat {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	background: var(--lvb-cream);
	border: 0.5px solid var(--lvb-line);
	border-radius: 24px;
	overflow: hidden;
	transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.5s cubic-bezier(0.16,1,0.3,1);
	text-decoration: none;
	margin-bottom: 2rem;
}
.lvb-feat:hover { transform: translateY(-5px); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.35); }
.lvb-feat__img { position: relative; min-height: 240px; }
.lvb-feat__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lvb-feat__img .lvb-badge { position: absolute; top: 1rem; left: 1rem; z-index: 2; }
.lvb-feat__body { padding: 1.6rem; display: flex; flex-direction: column; justify-content: center; }
.lvb-feat__meta { display: flex; align-items: center; gap: 0.8rem; font-size: 0.78rem; color: var(--lvb-muted); margin-bottom: 0.8rem; }
.lvb-feat__cat { color: var(--lvb-terra); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.lvb-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--lvb-muted); }
.lvb-feat__title { font-size: clamp(1.5rem, 1.2rem + 1.6vw, 2.3rem); margin: 0 0 0.7rem; color: var(--lvb-ink); line-height: 1.15; font-weight: 800; }
.lvb-feat__excerpt { font-size: 0.98rem; color: var(--lvb-soft); line-height: 1.6; margin-bottom: 1.2rem; }
.lvb-feat__link { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 700; color: var(--lvb-terra); font-size: 0.95rem; }
.lvb-feat__link .lvb-ic { width: 1.1rem; height: 1.1rem; transition: transform 0.4s ease; }
.lvb-feat:hover .lvb-feat__link .lvb-ic { transform: translateX(4px); }
@media (min-width: 768px) {
	.lvb-feat { grid-template-columns: 1.15fr 1fr; }
	.lvb-feat__img { min-height: 420px; }
	.lvb-feat__body { padding: 3rem; }
}

/* ===== GRILLE ===== */
.lvb-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 600px) {
	.lvb-grid--2, .lvb-grid--3, .lvb-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
	.lvb-grid--3 { grid-template-columns: repeat(3, 1fr); }
	.lvb-grid--4 { grid-template-columns: repeat(4, 1fr); }
}
.lvb-card {
	background: var(--lvb-cream);
	border: 0.5px solid var(--lvb-line);
	border-radius: 18px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.5s cubic-bezier(0.16,1,0.3,1);
	text-decoration: none;
}
.lvb-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.35); }
.lvb-card__img { aspect-ratio: 16/10; overflow: hidden; position: relative; background: #F5F1EA; }
.lvb-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.lvb-card:hover .lvb-card__img img { transform: scale(1.05); }
.lvb-card__img .lvb-badge { position: absolute; top: 0.8rem; left: 0.8rem; z-index: 2; }
.lvb-card__body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.lvb-card__title { font-size: 1.15rem; line-height: 1.25; margin: 0 0 0.5rem; color: var(--lvb-ink); font-weight: 700; }
.lvb-card__excerpt { font-size: 0.88rem; color: var(--lvb-soft); line-height: 1.5; flex: 1; margin-bottom: 1rem; }
.lvb-card__foot { display: flex; align-items: center; justify-content: space-between; }
.lvb-card__read { font-size: 0.82rem; font-weight: 700; color: var(--lvb-terra); display: inline-flex; align-items: center; gap: 0.35rem; }
.lvb-card__read .lvb-ic { width: 0.95rem; height: 0.95rem; transition: transform 0.4s ease; }
.lvb-card:hover .lvb-card__read .lvb-ic { transform: translateX(3px); }
.lvb-card__time { font-size: 0.75rem; color: var(--lvb-muted); display: inline-flex; align-items: center; gap: 0.3rem; }
.lvb-card__time .lvb-ic { width: 0.85rem; height: 0.85rem; }

/* ===== LV BLOG : filtres + charger plus (v3.9.0) ===== */
.lvb-filters {
	display: flex;
	gap: 0.5rem;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 0 2rem;
}
.lvb-filter {
	font-family: var(--lv-font);
	font-size: 0.85rem;
	font-weight: 600;
	padding: 0.55rem 1.1rem;
	border-radius: 999px;
	border: 1.5px solid rgba(0,0,0,0.12);
	background: #FBF8F2;
	color: #3A3A38;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}
.lvb-filter:hover { border-color: #D85A30; color: #D85A30; }
.lvb-filter.is-active { background: #D85A30; border-color: #D85A30; color: #FBF8F2; }

.lvb-hidden { display: none !important; }

.lvb-loadmore-wrap { display: flex; justify-content: center; margin-top: 2.5rem; }
.lvb-loadmore,
.lvb .lvb-loadmore,
.lvb-loadmore:link,
.lvb-loadmore:visited {
	font-family: var(--lv-font);
	font-size: 0.95rem;
	font-weight: 600;
	color: #FBF8F2 !important;
	background: #2E5A4E;
	border: none;
	border-radius: 999px;
	padding: 0.9rem 2.2rem;
	cursor: pointer;
	text-decoration: none;
	transition: transform 0.3s ease, filter 0.3s ease;
}
.lvb-loadmore:hover { transform: translateY(-2px); filter: brightness(1.1); color: #FBF8F2 !important; }

/* ============================================================ */
/* WIDGET : LV ARTICLE (single post) v3.10.0                    */
/* ============================================================ */
.lva {
	--lva-terra: #D85A30;
	--lva-ink: #1C1C1C;
	--lva-soft: #3A3A38;
	--lva-muted: #8A8A86;
	--lva-cream2: #F5F1EA;
	--lva-line: rgba(0,0,0,0.1);
	font-family: var(--lv-font);
	font-feature-settings: var(--lv-font-features);
	color: var(--lva-soft);
}
.lva-ic { width: 1em; height: 1em; display: inline-block; vertical-align: -0.125em; flex-shrink: 0; }

/* En-tête (aligné à gauche, comme la maquette) */
.lva-head { max-width: 760px; margin: 0 auto; padding: 2rem 1.2rem 1.5rem; text-align: left; }
.lva-crumb { font-size: 0.78rem; color: var(--lva-muted); margin-bottom: 1.2rem; }
.lva-crumb a { color: var(--lva-muted); text-decoration: none; }
.lva-crumb a:hover { color: var(--lva-terra); }
.lva-cat {
	display: inline-flex; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
	text-transform: uppercase; padding: 0.35rem 0.85rem; border-radius: 999px;
	background: var(--lva-terra); color: #FBF8F2; margin-bottom: 1rem;
}
.lva-title { font-size: clamp(1.8rem, 1.4rem + 2.4vw, 3rem); font-weight: 800; color: var(--lva-ink); line-height: 1.12; margin: 0 0 1rem; }
.lva-lead { font-size: 1.15rem; line-height: 1.6; color: var(--lva-soft); margin-bottom: 1.5rem; }
.lva-byline { display: flex; align-items: center; gap: 0.8rem; padding-top: 1.2rem; border-top: 0.5px solid var(--lva-line); }
.lva-avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.lva-by-name { font-size: 0.9rem; font-weight: 700; color: var(--lva-ink); }
.lva-by-meta { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: var(--lva-muted); }
.lva-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--lva-muted); }
.lva-rt { display: inline-flex; align-items: center; gap: 0.3rem; }
.lva-rt .lva-ic { width: 0.85rem; height: 0.85rem; }

/* Image hero (16/9 avec ombre, comme la maquette) */
.lva-hero { max-width: 760px; margin: 1.5rem auto; padding: 0 1.2rem; }
.lva-hero img { width: 100%; border-radius: 16px; aspect-ratio: 16/9; object-fit: cover; display: block; box-shadow: 0 20px 50px -25px rgba(0,0,0,0.3); }

/* Corps */
.lva-body { max-width: 760px; margin: 0 auto; padding: 0 1.2rem; }

/* Sommaire */
.lva-toc { background: var(--lva-cream2); border-radius: 14px; padding: 1.4rem 1.6rem; margin: 0 0 2rem; }
.lva-toc-title { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; color: var(--lva-ink); margin-bottom: 0.8rem; }
.lva-toc-title .lva-ic { width: 1.1rem; height: 1.1rem; color: var(--lva-terra); }
.lva-toc ol { list-style: none; counter-reset: toc; margin: 0; padding: 0; }
.lva-toc li { counter-increment: toc; margin-bottom: 0.5rem; }
.lva-toc a { font-size: 0.92rem; color: var(--lva-soft); display: flex; gap: 0.6rem; text-decoration: none; transition: color 0.3s; }
.lva-toc a:hover { color: var(--lva-terra); }
.lva-toc a::before { content: counter(toc); font-weight: 700; color: var(--lva-terra); flex-shrink: 0; }

/* Contenu */
.lva-content p { font-size: 1.08rem; line-height: 1.75; color: var(--lva-soft); margin-bottom: 1.5rem; }
.lva-content h2 { font-size: clamp(1.5rem, 1.3rem + 1vw, 2rem); margin: 2.5rem 0 1rem; color: var(--lva-ink); scroll-margin-top: 90px; font-weight: 800; }
.lva-content h2 .lva-num { color: var(--lva-terra); font-weight: 900; margin-right: 0.4rem; }
.lva-content h3 { font-size: 1.3rem; margin: 2rem 0 0.8rem; color: var(--lva-ink); font-weight: 700; }
.lva-content strong { color: var(--lva-ink); font-weight: 700; }
.lva-content a { color: var(--lva-terra); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.lva-content img { max-width: 100%; height: auto; border-radius: 12px; margin: 1.5rem 0; }
.lva-content ul { margin: 0 0 1.5rem; padding-left: 0; list-style: none; }
.lva-content ul li { position: relative; padding-left: 1.8rem; margin-bottom: 0.7rem; font-size: 1.05rem; line-height: 1.6; color: var(--lva-soft); }
.lva-content ul li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 8px; height: 8px; border-radius: 50%; background: var(--lva-terra); }
.lva-content blockquote { border-left: 3px solid var(--lva-terra); padding-left: 1.2rem; margin: 1.5rem 0; font-style: italic; color: var(--lva-ink); }

/* Partage */
.lva-share { display: flex; align-items: center; gap: 0.8rem; margin: 2.5rem 0; padding: 1.2rem 0; border-top: 1px solid var(--lva-line); border-bottom: 1px solid var(--lva-line); }
.lva-share__label { font-size: 0.85rem; font-weight: 600; color: var(--lva-muted); }
.lva-share__btns { display: flex; gap: 0.5rem; }
.lva-share__btn { width: 38px; height: 38px; border-radius: 50%; background: var(--lva-cream2); display: flex; align-items: center; justify-content: center; transition: background 0.3s, transform 0.3s; color: var(--lva-ink); text-decoration: none; }
.lva-share__btn:hover { background: var(--lva-terra); transform: translateY(-3px); color: #FBF8F2; }
.lva-share__btn .lva-ic { width: 1.05rem; height: 1.05rem; }

/* Bloc auteur */
.lva-author { max-width: 760px; margin: 1rem auto 2.5rem; padding: 1.8rem; background: var(--lva-cream2); border-radius: 18px; display: flex; gap: 1.2rem; align-items: flex-start; }
.lva-author__av { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.lva-author__name { font-weight: 700; color: var(--lva-ink); font-size: 1.1rem; }
.lva-author__role { font-size: 0.85rem; color: var(--lva-terra); font-weight: 600; margin-bottom: 0.5rem; }
.lva-author__txt p { font-size: 0.95rem; line-height: 1.6; color: var(--lva-soft); margin: 0; }

/* Articles liés */
.lva-related { max-width: 1100px; margin: 0 auto; padding: 1rem 1.2rem 0; }
.lva-related__title { text-align: center; font-size: 1.7rem; font-weight: 800; color: var(--lva-ink); margin-bottom: 1.5rem; }
.lva-related__grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 600px) { .lva-related__grid { grid-template-columns: repeat(3, 1fr); } }
.lva-rel-card { background: #FBF8F2; border: 0.5px solid var(--lva-line); border-radius: 16px; overflow: hidden; text-decoration: none; transition: transform 0.4s ease, box-shadow 0.4s ease; }
.lva-rel-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px -20px rgba(0,0,0,0.3); }
.lva-rel-card__img { aspect-ratio: 16/10; overflow: hidden; background: var(--lva-cream2); }
.lva-rel-card__img img { width: 100%; height: 100%; object-fit: cover; }
.lva-rel-card__body { padding: 1rem 1.2rem 1.2rem; }
.lva-rel-card__cat { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--lva-terra); margin-bottom: 0.4rem; }
.lva-rel-card__title { font-size: 1.05rem; line-height: 1.3; color: var(--lva-ink); margin: 0; font-weight: 700; }

/* ===== LV ARTICLE : bloc CTA "Vérifier ma date" (v3.11.0) ===== */
.lva-cta {
	max-width: 760px;
	margin: 1.5rem auto 2.5rem;
	padding: 2.4rem 2rem;
	background: linear-gradient(135deg, #E47249 0%, #D85A30 55%, #BC4A24 100%);
	border-radius: 20px;
	text-align: center;
}
.lva-cta__title {
	font-family: var(--lv-font);
	font-size: 1.5rem;
	font-weight: 800;
	color: #FBF8F2;
	line-height: 1.2;
	margin-bottom: 0.6rem;
}
.lva-cta__text {
	font-family: var(--lv-font);
	font-size: 1rem;
	line-height: 1.55;
	color: rgba(251,248,242,0.92);
	margin: 0 auto 1.4rem;
	max-width: 480px;
}
.lva-cta__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--lv-font);
	font-size: 1rem;
	font-weight: 700;
	color: #D85A30;
	background: #FBF8F2;
	border-radius: 999px;
	padding: 0.9rem 2rem;
	text-decoration: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lva-cta__btn:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -12px rgba(0,0,0,0.4); }
.lva-cta__btn .lva-ic { width: 1.05rem; height: 1.05rem; transition: transform 0.3s ease; }
.lva-cta__btn:hover .lva-ic { transform: translateX(4px); }
