/* ============================================================
   Labo Van — Elementor Widgets  |  widgets.css
   Widgets atomiques : Badge, Eyebrow, Heading, Subtitle,
   CTA Group, Stats Row.
   Sections complètes : Hero, Features Grid, FAQ, CTA Band,
   Testimonials, Formules cards.
   No CSS-variable dependency — all colours are hardcoded.
   ============================================================ */

/* ── SHARED UTILITIES ─────────────────────────────────────── */
.lvbadge-wrap *,
.lvey *,
.lvheading *,
.lvsub *,
.lvcg-wrap *,
.lvst-row *,
.lvh-section *,
.lvfg-section *,
.lvfaq-section *,
.lvcta-section *,
.lvte-section *,
.lvf-widget * { box-sizing: border-box; }

.lvh-container,
.lvfg-container,
.lvfaq-container,
.lvcta-container,
.lvte-container,
.lvge-container,
.lvo-container,
.lvst-container,
.lvcm-container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

@media (max-width: 767px) {
  .lvh-container,
  .lvfg-container,
  .lvfaq-container,
  .lvcta-container,
  .lvte-container,
  .lvge-container,
  .lvo-container,
  .lvst-container,
  .lvcm-container,
  .lvf-widget {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* ============================================================
   0. WIDGETS ATOMIQUES
   ============================================================ */

/* Badge (lvbadge-*) */
.lvbadge-wrap {
  display: flex;
}
.lvbadge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: .75rem;
  font-weight: 600;
  line-height: 1.2;
}
.lvbadge-main   { color: #FAC775; font-weight: 700; }
.lvbadge-secondary { color: rgba(251,248,242,0.75); }
.lvbadge-dot    { color: rgba(251,248,242,0.35); }

/* Eyebrow (lvey) */
.lvey {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #D85A30;
  line-height: 1.2;
}
.lvey-dash { opacity: .5; }

/* Heading (lvheading) */
.lvheading {
  margin: 0;
  color: #1C1C1C;
  font-size: clamp(1.6rem, 1.2rem + 2vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
}
.lvheading strong { color: #D85A30; font-weight: inherit; }
.lvheading span   { color: #D85A30; }
.lvheading em     { font-style: italic; }

/* Subtitle / Lead (lvsub) */
.lvsub {
  margin: 0;
  color: #444441;
  font-size: 1rem;
  line-height: 1.65;
  max-width: 540px;
}
.lvsub strong { color: #1C1C1C; }

/* CTA Group (lvcg-*) */
.lvcg-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.lvcg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .28s cubic-bezier(.16,1,.3,1), background-color .2s, filter .2s, border-color .2s;
  border: 1.5px solid transparent;
}
.lvcg-btn:hover { transform: translateY(-2px); }

.lvcg-btn-primary  { background-color: #D85A30; color: #FBF8F2; border-color: transparent; }
.lvcg-btn-primary:hover { background-color: #C24E27; }

.lvcg-btn-secondary { background-color: transparent; color: #1C1C1C; border-color: rgba(28,28,28,0.3); }
.lvcg-btn-secondary:hover { background-color: rgba(28,28,28,0.06); }

.lvcg-btn-ghost { background-color: transparent; color: #FBF8F2; border-color: rgba(251,248,242,0.4); }
.lvcg-btn-ghost:hover { background-color: rgba(251,248,242,0.1); border-color: rgba(251,248,242,0.7); }

@media (max-width: 480px) {
  .lvcg-wrap { flex-direction: column; align-items: stretch; }
  .lvcg-btn  { justify-content: center; }
}

/* Stats Row (lvst-*) */
.lvst-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
}
.lvst-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.lvst-has-divider .lvst-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(0,0,0,0.12);
}
.lvst-value {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}
.lvst-number {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: #1C1C1C;
}
.lvst-suffix {
  font-size: 1.4rem;
  font-weight: 800;
  color: #D85A30;
}
.lvst-label {
  font-size: .78rem;
  color: #888780;
  font-weight: 500;
}

/* ============================================================
   1. HERO  (lvh-*)
   ============================================================ */
.lvh-section { width: 100%; }

.lvh-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: #2E5A4E;
  border-radius: 28px;
  padding: 52px 56px;
}

.lvh-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lvh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .38rem .9rem;
  border-radius: 999px;
  background: rgba(250,199,117,0.12);
  color: #FAC775;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  width: fit-content;
}

.lvh-title {
  margin: 0;
  color: #FBF8F2;
  font-size: clamp(1.8rem, 1.3rem + 2.5vw, 3.2rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.03em;
}
.lvh-title span { color: #FAC775; }

.lvh-lead {
  margin: 0;
  color: rgba(251,248,242,0.82);
  font-size: 1.05rem;
  line-height: 1.6;
}

.lvh-price-strip {
  background: rgba(0,0,0,0.18);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 4px;
}
.lvh-price-label {
  font-size: 0.66rem;
  color: #FAC775;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.lvh-price-value {
  font-size: 1.7rem;
  color: #FBF8F2;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}
.lvh-price-value small {
  font-size: 0.78rem;
  color: rgba(251,248,242,0.6);
  font-weight: 500;
}
.lvh-price-badge { text-align: center; }
.lvh-price-badge-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: #D85A30;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.lvh-price-badge-icon svg {
  width: 1.3rem;
  height: 1.3rem;
  stroke: #1B3830;
}
.lvh-price-badge-label {
  font-size: 0.62rem;
  color: #FAC775;
  margin-top: 4px;
  white-space: nowrap;
}

.lvh-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.lvh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .3s cubic-bezier(.16,1,.3,1), filter .25s;
  cursor: pointer;
}
.lvh-btn:hover { transform: translateY(-2px); }

.lvh-btn-picto {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.lvh-btn1 {
  background: #D85A30;
  color: #FBF8F2;
  border: none;
}
.lvh-btn1:hover { filter: brightness(1.06); }

.lvh-btn2 {
  background: #FBF8F2;
  color: #1C1C1C;
  border: 1.5px solid transparent;
}
.lvh-btn2:hover { filter: brightness(0.94); }

/* btn1 pleine largeur quand seul */
.lvh-cta .lvh-btn-primary:only-child {
  width: 100%;
}

.lvh-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-top: 6px;
}

.lvh-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(251,248,242,0.7);
  font-size: .78rem;
}
.lvh-trust-item::before {
  content: "✓";
  color: #FAC775;
  font-weight: 800;
}

.lvh-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lvh-img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  display: block;
}

.lvh-geo-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: .45rem .9rem;
  border-radius: 999px;
  background: rgba(30,30,30,0.72);
  color: #FBF8F2;
  font-size: .72rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

@media (max-width: 768px) {
  .lvh-card {
    grid-template-columns: 1fr;
    padding: 36px 24px;
    gap: 28px;
  }
  .lvh-media { order: -1; }
}

/* ============================================================
   2. FEATURES GRID  (lvfg-*)
   ============================================================ */
.lvfg-section {
  width: 100%;
  background: #F5F1EA;
}

.lvfg-header {
  margin-bottom: 40px;
  text-align: left;
}

.lvfg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: #D85A30;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.lvfg-title {
  margin: 0;
  color: #1C1C1C;
  font-size: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
}
.lvfg-title span { color: #D85A30; }

.lvfg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.lvfg-card {
  background: #FBF8F2;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.07);
  padding: 28px 24px;
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s;
}

.lvfg-hover-lift-yes .lvfg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.09);
}

.lvfg-card-inner { display: flex; flex-direction: column; gap: 14px; }

.lvfg-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: rgba(216,90,48,0.08);
  color: #D85A30;
  font-size: 1.15em;
}
.lvfg-icon i, .lvfg-icon svg { font-size: 1.2em; }

.lvfg-card-body { display: flex; flex-direction: column; gap: 6px; }

.lvfg-feat-title {
  margin: 0;
  color: #1C1C1C;
  font-size: 1.05rem;
  font-weight: 700;
}

.lvfg-feat-text {
  margin: 0;
  color: #444441;
  font-size: .88rem;
  line-height: 1.55;
}
.lvfg-feat-extra {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #FAC775;
}

@media (max-width: 600px) {
  .lvfg-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   3. FAQ ACCORDION  (lvfaq-*)
   ============================================================ */
.lvfaq-section {
  width: 100%;
  background: #F5F1EA;
}

.lvfaq-header { margin-bottom: 40px; text-align: center; }

.lvfaq-eyebrow {
  display: inline-block;
  color: #D85A30;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.lvfaq-title {
  margin: 0;
  color: #1C1C1C;
  font-size: clamp(1.4rem, 1rem + 1.8vw, 2.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
}
.lvfaq-title span { color: #D85A30; }

.lvfaq-list { width: 100%; }

.lvfaq-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.lvfaq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #1C1C1C;
  font-size: 1rem;
  font-weight: 600;
  transition: color .2s;
}
.lvfaq-q:hover,
.lvfaq-item.is-open .lvfaq-q { color: #D85A30; }

.lvfaq-icon {
  flex-shrink: 0;
  font-size: 1.3rem;
  font-weight: 300;
  color: #888780;
  transition: transform .3s cubic-bezier(.16,1,.3,1), color .2s;
  line-height: 1;
}
.lvfaq-item.is-open .lvfaq-icon {
  transform: rotate(45deg);
  color: #D85A30;
}

.lvfaq-a {
  overflow: hidden;
}
.lvfaq-a[hidden] { display: none; }

.lvfaq-answer {
  margin: 0;
  padding: 0 0 20px;
  color: #444441;
  font-size: .92rem;
  line-height: 1.65;
}

/* ============================================================
   4. CTA BAND  (lvcta-*)
   ============================================================ */
.lvcta-section { width: 100%; }

.lvcta-inner {
  background: linear-gradient(135deg, #D85A30 0%, #BC4A24 100%);
  border-radius: 24px;
  padding: 64px 40px;
  text-align: center;
}

.lvcta-eyebrow {
  display: inline-block;
  color: #FAC775;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.lvcta-title {
  margin: 0 0 16px;
  color: #FBF8F2;
  font-size: clamp(1.6rem, 1.2rem + 2vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
}
.lvcta-title span { color: #FAC775; }

.lvcta-text {
  margin: 0 auto 28px;
  max-width: 580px;
  color: rgba(251,248,242,0.88);
  font-size: .95rem;
  line-height: 1.6;
}

.lvcta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.lvcta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .3s cubic-bezier(.16,1,.3,1), filter .25s;
  cursor: pointer;
  padding: 17px 36px;
}
.lvcta-btn:hover { transform: translateY(-2px); }

.lvcta-btn1 {
  background: #FBF8F2;
  color: #1C1C1C;
  border: none;
}
.lvcta-btn1:hover { filter: brightness(.96); }

.lvcta-btn2 {
  background: transparent;
  color: #FBF8F2;
  border: 1.5px solid rgba(251,248,242,0.4);
}
.lvcta-btn2:hover { border-color: rgba(251,248,242,0.8); }

.lvcta-note {
  margin: 0;
  color: rgba(251,248,242,0.65);
  font-size: .78rem;
}

@media (max-width: 600px) {
  .lvcta-inner { padding: 40px 20px; }
  .lvcta-buttons { flex-direction: column; align-items: center; }
  .lvcta-btn { width: 100%; max-width: 320px; }
}

/* ============================================================
   5. TESTIMONIALS  (lvte-*)
   ============================================================ */
.lvte-section {
  width: 100%;
  background: #FBF8F2;
}

.lvte-header { margin-bottom: 40px; text-align: left; }

.lvte-eyebrow {
  display: inline-block;
  color: #D85A30;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.lvte-title {
  margin: 0;
  color: #1C1C1C;
  font-size: clamp(1.4rem, 1rem + 1.8vw, 2.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
}
.lvte-title span { color: #D85A30; }

.lvte-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lvte-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.08);
  border-top: 3px solid #D85A30;
  border-radius: 16px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lvte-stars {
  color: #FAC775;
  font-size: 1rem;
  letter-spacing: 2px;
}

.lvte-quote {
  margin: 0;
  color: #1C1C1C;
  font-size: .92rem;
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}

.lvte-who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.lvte-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 999px;
  background: #2E5A4E;
  color: #FAC775;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .05em;
}

.lvte-who-name {
  color: #1C1C1C;
  font-size: .88rem;
  font-weight: 700;
}

.lvte-who-event {
  color: #888780;
  font-size: .78rem;
}

@media (max-width: 900px) {
  .lvte-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .lvte-grid { grid-template-columns: 1fr; }
}

.lvte-dots { display: none; justify-content: center; gap: 6px; margin-top: 20px; }
.lvte-dots span { display: block; width: 6px; height: 6px; border-radius: 999px; background: rgba(0,0,0,0.18); cursor: pointer; transition: width .2s, background .2s; }
.lvte-dots span.is-active { width: 18px; background: #D85A30; }

/* ── Testimonials — Invitation avis ── */
.lvte-invite { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; margin-top: 32px; padding: 28px 24px; background: #2E5A4E; border-radius: 16px; }
.lvte-invite-label { font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.45); margin: 0; }
.lvte-invite-stars { color: #FAC775; font-size: 1.1rem; margin: 0; letter-spacing: 2px; }
.lvte-invite-text { margin: 0; font-size: 1.05rem; font-weight: 700; line-height: 1.3; color: #FFFFFF; }
.lvte-invite-sub { margin: 0; font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.4; }
.lvte-invite-btn { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; padding: .7rem 1.4rem; border-radius: 999px; background: #D85A30; color: #FFFFFF; font-size: .84rem; font-weight: 700; letter-spacing: .03em; text-decoration: none; border: none; cursor: pointer; margin-top: 4px; transition: background .15s ease, box-shadow .15s ease; }
.lvte-invite-btn:hover { background: #c04d26; box-shadow: 0 6px 18px rgba(216,90,48,.35); color: #FFFFFF; }

@media (max-width: 600px) {
  .lvte-mobile-swipe-yes .lvte-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
  .lvte-mobile-swipe-yes .lvte-card {
    flex: 0 0 var(--lvte-mobile-card-width, 80vw);
    min-width: var(--lvte-mobile-card-width, 80vw);
    scroll-snap-align: start;
  }
  .lvte-mobile-swipe-yes .lvte-dots { display: flex; }
  .lvte-mobile-swipe-yes .lvte-grid::-webkit-scrollbar { height: 4px; }
  .lvte-mobile-swipe-yes .lvte-grid::-webkit-scrollbar-thumb { background: rgba(0,0,0,.15); border-radius: 4px; }
}

/* ============================================================
   6. GALLERY EVENTS  (lvge-*)
   ============================================================ */
.lvge-section { width: 100%; }

.lvge-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Filtres */
.lvge-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
}
.lvge-chip {
  padding: 8px 18px;
  border-radius: 999px;
  border: none;
  background: rgba(28,28,28,0.07);
  color: #1C1C1C;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, color .2s, transform .2s;
}
.lvge-chip:hover { background: rgba(28,28,28,0.14); }
.lvge-chip.is-active { background: #1C1C1C; color: #FBF8F2; }

/* Grille */
.lvge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

/* Card */
.lvge-card {
  position: relative;
  display: block;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  background: #F5F1EA;
  border: 1.5px solid transparent;
  text-decoration: none;
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s, border-color .25s;
}
.lvge-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px -12px rgba(0,0,0,0.22);
  border-color: #D85A30;
}
.lvge-card.is-hidden { display: none; }

/* Image de fond */
.lvge-img {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 6px;
  background: #F5F1EA;
}

/* Logo texte (quand pas d'image) */
.lvge-logo {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 16px;
}
.lvge-logo-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.1;
  text-align: center;
}
.lvge-logo.is-mariage   .lvge-logo-title { color: #D85A30; font-style: italic; }
.lvge-logo.is-corporate .lvge-logo-title { color: #2E5A4E; text-transform: uppercase; letter-spacing: .06em; }
.lvge-logo.is-prive     .lvge-logo-title { color: #2E5A4E; font-style: italic; }

.lvge-logo-sub {
  font-size: .72rem;
  color: #888780;
  text-align: center;
}

/* Tag catégorie */
.lvge-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(28,28,28,0.08);
  color: #444441;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  transition: background .2s, color .2s;
}
.lvge-card:hover .lvge-tag { background: rgba(251,248,242,0.2); color: #FBF8F2; }

/* Mini cadenas */
.lvge-mini-lock {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(28,28,28,0.1);
  backdrop-filter: blur(4px);
  transition: background .2s;
}
.lvge-mini-lock .lvge-ic { width: 13px; height: 13px; color: #444441; }
.lvge-card:hover .lvge-mini-lock { background: rgba(251,248,242,0.2); }
.lvge-card:hover .lvge-mini-lock .lvge-ic { color: #FBF8F2; }

/* Overlay hover */
.lvge-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px;
  background: rgba(28,28,28,0.72);
  opacity: 0;
  transition: opacity .3s;
  text-align: center;
}
.lvge-card:hover .lvge-overlay { opacity: 1; }

.lvge-ov-lock .lvge-ic {
  width: 22px;
  height: 22px;
  color: rgba(251,248,242,0.6);
  margin-bottom: 2px;
}
.lvge-ov-title {
  color: #FBF8F2;
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.2;
}
.lvge-ov-cta {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #FAC775;
  font-size: .75rem;
  font-weight: 600;
}
.lvge-ov-cta .lvge-ic { width: 13px; height: 13px; }

.lvge-ic { display: inline-block; vertical-align: middle; }

@media (max-width: 1024px) { .lvge-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .lvge-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   6. FORMULES CARDS  (lvf-*)
   — copied from ChatGPT's formules.css, no CSS-var dependency
   ============================================================ */
.lvf-widget {
  --lvf-cream: #FBF8F2;
  --lvf-cream-2: #F5F1EA;
  --lvf-ink: #1C1C1C;
  --lvf-ink-soft: #444441;
  --lvf-muted: #888780;
  --lvf-faint: #B4B2A9;
  --lvf-line: rgba(0,0,0,0.12);
  --lvf-terra: #D85A30;
  --lvf-forest: #2E5A4E;
  --lvf-peach: #F0997B;
  --lvf-gold: #FAC775;
  --lvf-columns: 3;
  width: 100%;
}

.lvf-head { margin-bottom: clamp(24px, 4vw, 48px); }
.lvf-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .7rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--lvf-terra);
}
.lvf-eyebrow::before { content: "—"; opacity: .6; }
.lvf-title {
  margin: .6rem 0 .35rem;
  font-size: clamp(1.65rem, 1.3rem + 1.9vw, 3rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--lvf-ink);
}
.lvf-title span { color: var(--lvf-terra); font-style: italic; }
.lvf-subtitle {
  margin: .35rem 0 0;
  color: var(--lvf-muted);
  font-size: .92rem;
  line-height: 1.5;
}

.lvf-cards {
  display: grid;
  grid-template-columns: repeat(var(--lvf-columns), minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.lvf-col-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}
/* ── Card image (bannière haut de carte) ── */
.lvf-card-img { display: block; width: calc(100% + 48px); height: 180px; background-size: cover; background-position: center; margin: -24px -24px 20px; border-radius: 22px 22px 0 0; }

.lvf-col-stack .lvf-card {
  flex: 1;
}

.lvf-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--lvf-line);
  border-radius: 22px;
  background: var(--lvf-cream);
  color: var(--lvf-ink);
  overflow: visible;
  transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s cubic-bezier(.16,1,.3,1);
}
.lvf-hover-yes .lvf-card:hover { transform: translateY(-6px); }

.lvf-card.is-featured {
  background: var(--lvf-forest);
  border-color: transparent;
  color: var(--lvf-cream);
}
.lvf-card.is-featured .lvf-card-title,
.lvf-card.is-featured .lvf-price-value { color: inherit; }
.lvf-card.is-featured .lvf-card-name { color: var(--lvf-gold); }
.lvf-card.is-featured .lvf-price { border-color: rgba(251,248,242,.18); }
.lvf-card.is-featured .lvf-price-unit { color: rgba(251,248,242,.72); }

.lvf-badge {
  position: absolute;
  top: -10px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .36rem .82rem;
  border-radius: 999px;
  background: var(--lvf-gold);
  color: var(--lvf-ink);
  font-size: .68rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lvf-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.lvf-card-heading { min-width: 0; }
.lvf-card-name {
  color: var(--lvf-muted);
  font-size: .66rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.lvf-card-title {
  margin: 4px 0 0;
  color: var(--lvf-ink);
  font-size: 1.45rem;
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: -.02em;
}
.lvf-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--lvf-cream-2);
  color: var(--lvf-forest);
}
.lvf-icon svg,
.lvf-icon i { width: 1.15em; height: 1.15em; font-size: 1.15em; }
.lvf-card.is-featured .lvf-icon { background: var(--lvf-peach); color: var(--lvf-ink); }

.lvf-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .35rem .5rem;
  padding-top: 14px;
  margin-bottom: 14px;
  border-top: 1px solid rgba(0,0,0,.08);
}
.lvf-price-value {
  color: var(--lvf-ink);
  font-size: 1.65rem;
  line-height: 1;
  font-weight: 850;
  letter-spacing: -.025em;
}
.lvf-price-unit {
  color: var(--lvf-muted);
  font-size: .82rem;
  line-height: 1.35;
}

.lvf-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  color: var(--lvf-ink-soft);
  font-size: .88rem;
  line-height: 1.45;
}
.lvf-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}
.lvf-item-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 1.05em;
  min-width: 1.05em;
  margin-top: .05em;
  font-weight: 800;
  line-height: 1;
  color: var(--lvf-forest);
}
.lvf-item.is-excluded { color: var(--lvf-faint); }
.lvf-item.is-excluded .lvf-item-icon { color: currentColor; }
.lvf-item.is-neutral { color: var(--lvf-ink); }
.lvf-item.is-neutral .lvf-item-icon { color: var(--lvf-muted); font-size: .9em; }
.lvf-card.is-featured .lvf-list { color: rgba(251,248,242,.9); }
.lvf-card.is-featured .lvf-item-icon { color: var(--lvf-peach); }
.lvf-card.is-featured .lvf-item.is-excluded { color: rgba(251,248,242,.38); }

.lvf-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: .5rem;
  margin-top: auto;
  padding: .72rem 1.35rem;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  color: var(--lvf-ink);
  background: transparent;
  font-size: .88rem;
  line-height: 1.2;
  font-weight: 700;
  text-decoration: none;
  transition: transform .35s cubic-bezier(.16,1,.3,1), background .25s, color .25s, border-color .25s;
}
.lvf-button:hover { transform: translateY(-2px); background: var(--lvf-ink); color: var(--lvf-cream); }
.lvf-card.is-featured .lvf-button {
  background: var(--lvf-peach);
  border-color: var(--lvf-peach);
  color: var(--lvf-ink);
}
.lvf-card.is-featured .lvf-button:hover { filter: brightness(.96); }

.lvf-dots {
  display: none;
  justify-content: center;
  gap: 5px;
  margin-top: 14px;
}
.lvf-dots span {
  width: 5px;
  height: 4px;
  border-radius: 999px;
  background: #D3D1C7;
  transition: width .25s, background .25s;
}
.lvf-dots span.is-active { width: 18px; background: #D85A30; }

.lvf-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 12px 15px;
  border-radius: 10px;
  background: var(--lvf-cream-2);
  color: var(--lvf-ink-soft);
  font-size: .78rem;
  line-height: 1.45;
}
.lvf-note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 999px;
  border: 1px solid currentColor;
  font-size: .68rem;
  font-weight: 800;
  line-height: 1;
  opacity: .8;
}

@media (max-width: 879px) {
  .lvf-mobile-swipe-yes .lvf-cards {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px 2px 12px;
    scrollbar-width: thin;
  }
  .lvf-mobile-swipe-yes .lvf-card {
    flex: 0 0 var(--lvf-mobile-card-width, 280px);
    min-width: var(--lvf-mobile-card-width, 280px);
    scroll-snap-align: start;
  }
  .lvf-mobile-swipe-yes .lvf-dots { display: flex; }
  .lvf-mobile-swipe-yes .lvf-cards::-webkit-scrollbar { height: 4px; }
  .lvf-mobile-swipe-yes .lvf-cards::-webkit-scrollbar-thumb { background: rgba(0,0,0,.15); border-radius: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  .lvf-widget * { transition: none !important; scroll-behavior: auto !important; }
}

/* ============================================================
   OPTIONS À LA CARTE  (lvo-*)
   ============================================================ */
.lvo-section {
  background-color: #1B3830;
  padding: 5rem 0;
}
.lvo-container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.lvo-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}
.lvo-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FAC775;
  margin-bottom: 0.6rem;
}
.lvo-eyebrow::before { content: "— "; opacity: 0.6; }
.lvo-title {
  color: #FBF8F2;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
.lvo-title span { color: #FAC775; }

.lvo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}
@media (min-width: 768px) {
  .lvo-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
}

.lvo-opt {
  background: rgba(251,248,242,0.05);
  border: 0.5px solid rgba(251,248,242,0.15);
  border-radius: 12px;
  padding: 1.1rem;
  transition: transform 0.4s ease, background 0.4s ease;
  cursor: default;
}
.lvo-opt:hover {
  transform: translateY(-4px);
  background: rgba(251,248,242,0.09);
}

.lvo-icon {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  margin-bottom: 0.6rem;
}
.lvo-icon svg {
  width: 100%;
  height: 100%;
}
.lvo-ic-gold svg  { stroke: #FAC775; }
.lvo-ic-peach svg { stroke: #D85A30; }

.lvo-opt-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: #FBF8F2;
}
.lvo-opt-desc {
  font-size: 0.74rem;
  color: rgba(251,248,242,0.55);
  margin-top: 2px;
}
.lvo-opt-price {
  font-size: 0.72rem;
  font-weight: 700;
  color: #FAC775;
  margin-top: 6px;
}

.lvo-cta {
  text-align: center;
  margin-top: 2.5rem;
}
.lvo-cta-btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border: 1.5px solid rgba(251,248,242,0.35);
  border-radius: 999px;
  color: #FBF8F2;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.lvo-cta-btn:hover {
  border-color: #FAC775;
  color: #FAC775;
  background: rgba(250,199,117,0.07);
}

/* ============================================================
   ÉTAPES  (lvst-*)
   ============================================================ */
.lvst-section {
  background-color: #EDE8DF;
  padding: 5rem 0;
}
.lvst-container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.lvst-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}
.lvst-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #D85A30;
  margin-bottom: 0.6rem;
}
.lvst-eyebrow::before { content: "— "; opacity: 0.6; }
.lvst-title {
  color: #1C1C1C;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
.lvst-title span { color: #D85A30; }

.lvst-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
@media (min-width: 768px) {
  .lvst-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (min-width: 1024px) {
  .lvst-list { grid-template-columns: repeat(4, 1fr); }
}

.lvst-card {
  background: #FBF8F2;
  border-radius: 14px;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 0.5px solid rgba(0,0,0,0.08);
}
@media (min-width: 1024px) {
  .lvst-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1.5rem;
  }
}

.lvst-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 0.9rem;
}

.lvst-step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1C1C1C;
  margin-bottom: 2px;
}
.lvst-step-desc {
  font-size: 0.82rem;
  color: #5C5C58;
  line-height: 1.4;
}

/* Features Grid — CTA */
.lvfg-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.lvfg-cta-btn {
  display: inline-block;
  padding: 12px 28px;
  border: 1.5px solid rgba(0,0,0,0.25);
  border-radius: 999px;
  color: #1C1C1C;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.lvfg-cta-btn:hover {
  border-color: #1C1C1C;
  background: rgba(0,0,0,0.04);
}

/* ============================================================
   CONTACT METHODS  (lvcm-*)
   ============================================================ */
.lvcm-section { width: 100%; background-color: #FBF8F2; }

.lvcm-container {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.lvcm-header { margin-bottom: 24px; }

.lvcm-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888780;
  margin-bottom: 8px;
}

.lvcm-title {
  font-size: 28px;
  font-weight: 500;
  color: #1C1C1C;
  line-height: 1.2;
}

.lvcm-title em {
  color: #2E5A4E;
  font-style: normal;
}

.lvcm-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lvcm-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: #ffffff;
  border: 0.5px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color .18s;
}

a.lvcm-item:hover { border-color: rgba(0,0,0,0.2); }

.lvcm-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #F5F1EA;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #888780;
  font-size: 16px;
}

.lvcm-icon i { font-size: 16px; }
.lvcm-icon svg { width: 16px; height: 16px; fill: currentColor; }

.lvcm-content { display: flex; flex-direction: column; gap: 2px; }

.lvcm-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888780;
}

.lvcm-value {
  font-size: 14px;
  font-weight: 500;
  color: #1C1C1C;
}

.lvcm-sub {
  font-size: 12px;
  color: #888780;
}
