/* =============================================
   RESET STOREFRONT — Fond blanc global
   ============================================= */

html,
body {
  background-color: #ffffff !important;
  color: var(--lbe-noir) !important;
}

/* =============================================
   CHARTE GRAPHIQUE — Luxury Beauty Empire
   Variables centrales (couleurs + polices).
   ============================================= */
:root {
  /* Palette */
  --lbe-rose-nude: #d9a5a0;   /* titres principaux, prestige */
  --lbe-rose-poudre: #e8cfcb; /* accents, surlignages */
  --lbe-taupe: #8e7a74;       /* sous-titres, textes secondaires */
  --lbe-noir: #1c1b1b;        /* textes principaux */
  --lbe-beige: #f2e3d5;       /* fonds doux, sections premium */
  --lbe-blanc: #ffffff;       /* fonds, espaces négatifs */

  /* Alias historiques utilisés dans ce fichier (étaient non définis, ce qui
     cassait silencieusement les couleurs — ex. texte des sous-menus). */
  --lbs-color-primary: var(--lbe-noir);
  --lbs-color-accent:  var(--lbe-rose-nude);
  --lbs-color-white:   var(--lbe-blanc);

  /* Typographies */
  --lbe-font-title: 'Cinzel', serif;
  --lbe-font-body: 'Montserrat', sans-serif;
}

/* =============================================
   POLICE GLOBALE
   Montserrat pour les textes, Cinzel pour les titres.
   ============================================= */
body,
button,
input,
select,
optgroup,
textarea,
.site,
.site-description,
p, a, li, span, label, div,
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce #respond input#submit {
  font-family: var(--lbe-font-body) !important;
}

/* Titres en Cinzel (priorité sur la règle body ci-dessus) */
h1, h2, h3, h4, h5, h6,
.site-title,
.lbs-section-title,
.lbs-hero__heading,
.lbs-page-header__title,
.lbs-shop-banner__title,
.product_title,
.lbs-product-section__title,
.lbs-collections__label,
.lbs-footer__brand-name,
.lbs-footer__newsletter-title,
.lbs-brand__title {
  font-family: var(--lbe-font-title) !important;
}

body .site,
body #page,
body #content,
body .content-area,
body #primary,
body .site-main,
body main#main,
body .storefront-full-width-content #primary,
body .woocommerce-page #primary,
body .woocommerce #primary {
  background-color: #ffffff !important;
  color: var(--lbe-noir) !important;
}

/* Neutralise la couleur de fond Storefront sur les widgets */
body .widget-area,
body .sidebar,
body #secondary {
  background-color: transparent !important;
}

/* ==========================================================================
   Luxe Beauty Studio — Header
   ========================================================================== */

/* --------------------------------------------------------------------------
   Global background reset (overrides any inherited dark background)
   -------------------------------------------------------------------------- */
body {
	background-color: #ffffff !important;
	color: var(--lbe-noir);
}

.woocommerce-page,
.woocommerce,
#page,
.site,
.site-content,
#content,
.content-area,
.site-main,
main.site-main {
	background-color: #ffffff !important;
}

:root {
	--lbs-color-primary: var(--lbe-noir);
	--lbs-color-accent: var(--lbe-rose-nude);
	--lbs-color-white: #ffffff;
	--lbs-color-border: #e0e0e0;
	--lbs-font-main: var(--lbe-font-body);
	--lbs-header-height-desktop: 120px;
	--lbs-header-height-mobile: 60px;
	--lbs-container-max: 1400px;
}

/* --------------------------------------------------------------------------
   Base header
   -------------------------------------------------------------------------- */
.lbs-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background-color: transparent;
	border-bottom: 1px solid var(--lbs-color-border);
	font-family: var(--lbe-font-body);
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Header devient blanc au scroll */
.lbs-header.is-scrolled {
	background-color: #ffffff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Sur les pages intérieures (pas homepage), toujours blanc */
body:not(.home) .lbs-header {
	background-color: #ffffff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Texte et icônes blancs sur fond transparent (homepage) */
.home .lbs-header:not(.is-scrolled) .lbs-nav__link,
.home .lbs-header:not(.is-scrolled) .lbs-header__action-btn,
.home .lbs-header:not(.is-scrolled) .lbs-header__site-name {
	color: #ffffff;
}

/* Menu links — toujours sombres sauf sur homepage avant scroll */
.lbs-nav__link {
  color: var(--lbe-noir) !important;
}

/* Sur homepage avant scroll : liens blancs */
.home .lbs-header:not(.is-scrolled) .lbs-nav__link {
  color: #ffffff !important;
}

/* Exception : les liens DANS les sous-menus s'affichent sur un fond blanc
   (cf. .lbs-nav__submenu). Même sur la homepage avant scroll, leur texte doit
   rester sombre, sinon il est blanc sur blanc et donc invisible.
   Couleur en dur (#1c1b1b) car --lbe-noir est dispo mais on évite toute
   dépendance à une variable. */
.home .lbs-header:not(.is-scrolled) .lbs-nav__submenu .lbs-nav__link,
.home .lbs-header:not(.is-scrolled) .lbs-nav__submenu li a {
  color: #1c1b1b !important;
}

.home .lbs-header:not(.is-scrolled) .lbs-nav__submenu li a:hover {
  color: #d9a5a0 !important;
}

/* Actions buttons (compte, search, panier) — même logique */
.lbs-header__action-btn {
  color: var(--lbe-noir) !important;
}

.home .lbs-header:not(.is-scrolled) .lbs-header__action-btn {
  color: #ffffff !important;
}

/* Texte du nom de site si pas de logo */
.lbs-header__site-name {
  color: var(--lbe-noir) !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
}

.home .lbs-header:not(.is-scrolled) .lbs-header__site-name {
  color: #ffffff !important;
}

/* ==========================================================================
   Compensation de la hauteur du header fixed
   --------------------------------------------------------------------------
   Le header est en position:fixed et sort donc du flux : sans compensation,
   il recouvre le haut du contenu. On réserve l'espace via une variable
   --lbs-header-offset portée par <body>.

   Valeurs par défaut PUREMENT CSS (robustes même si le JS ne tourne pas) :
   le contenu n'est jamais collé. Le JS ne fait qu'AFFINER cette variable
   avec la hauteur réelle mesurée du header.
   ========================================================================== */
:root {
  /* Desktop : barre promo (40px) + 2 rangées header (~120px) */
  --lbs-header-offset: 160px;
}

@media (max-width: 991px) {
  :root {
    /* Mobile : barre promo (40px) + header compact (60px) */
    --lbs-header-offset: 100px;
  }
}

/* WordPress (global-styles) injecte un `body{padding-top:0}` inline dans le
   <head>, qui écrase toute règle non !important. On force donc la compensation. */
body {
  padding-top: var(--lbs-header-offset) !important;
}

/* Sur la page d'accueil, le header est transparent et se superpose
   volontairement au hero : pas de compensation. */
body.home {
  padding-top: 0 !important;
}

/* Storefront applique un gros padding-top (~4.236em) sur .site-content / .col-full
   et les wrappers WooCommerce. Combiné au padding-top de compensation du <body>,
   cela crée une marge superflue entre le header et le contenu sur les pages
   intérieures (catalogue, collection, Mon compte). On la supprime : la
   compensation du header est déjà entièrement gérée par le padding du <body>.
   NB : .col-full est LE wrapper Storefront qui porte ce padding vertical. */
body:not(.home) .site-content,
body:not(.home) .site-content .col-full,
body:not(.home) #content,
body:not(.home) #content > .col-full,
body:not(.home) .content-area,
body:not(.home) #primary,
body:not(.home) .site-main,
body:not(.home) #main,
body:not(.home) main#main {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* La bannière de boutique / catégorie doit coller au bas du header, sans
   aucun espace résiduel hérité d'un wrapper intermédiaire. */
body:not(.home) .lbs-shop-banner {
  margin-top: 0 !important;
}

/* Storefront peut envelopper le contenu dans #page / .site ; on s'assure
   qu'aucun de ces wrappers ne réintroduit de marge en haut. */
body #page,
body .site,
body .site-content {
  margin-top: 0;
}

.lbs-header__inner {
	max-width: var(--lbs-container-max);
	margin: 0 auto;
	width: 100%;
}

/* Promo bar (optional) */
.lbs-header__promo-bar {
	background: var(--lbs-color-primary);
	color: var(--lbs-color-white);
	text-align: center;
}

.lbs-header__promo-text {
	margin: 0;
	padding: 8px 20px;
	font-size: 13px;
	letter-spacing: 0.5px;
}

/* --------------------------------------------------------------------------
   Desktop / mobile visibility
   -------------------------------------------------------------------------- */
.lbs-header__outer--mobile {
	display: none;
}

.lbs-header__outer--desktop {
	display: block;
}

@media (max-width: 991px) {
	.lbs-header__outer--desktop {
		display: none;
	}

	.lbs-header__outer--mobile {
		display: block;
	}
}

/* --------------------------------------------------------------------------
   Top row
   -------------------------------------------------------------------------- */
.lbs-header__row--top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 40px;
}

.lbs-header__col--left,
.lbs-header__col--right {
	flex: 1;
}

.lbs-header__col--center {
	flex: 0 0 auto;
	text-align: center;
}

.lbs-header__col--right {
	display: flex;
	justify-content: flex-end;
}

/* Logo */
.lbs-header__logo img {
	max-height: 80px;
	width: auto;
}

.lbs-header__site-name {
	font-size: 24px;
	font-weight: 700;
	color: var(--lbs-color-primary);
	text-decoration: none;
	letter-spacing: 1px;
}

/* Actions */
.lbs-header__actions {
	display: flex;
	gap: 20px;
	align-items: center;
}

.lbs-header__action-btn {
	color: var(--lbs-color-primary);
	background: none;
	border: none;
	cursor: pointer;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	line-height: 1;
	transition: color 0.2s ease;
}

.lbs-header__action-btn:hover {
	color: var(--lbs-color-accent);
}

.lbs-header__cart-count {
	position: absolute;
	top: -8px;
	right: -8px;
	background: var(--lbe-noir);
	color: var(--lbs-color-white);
	border-radius: 50%;
	width: 18px;
	height: 18px;
	font-size: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
}

/* --------------------------------------------------------------------------
   Bottom row — navigation
   -------------------------------------------------------------------------- */
.lbs-header__row--bottom {
	display: flex;
	justify-content: center;
	border-top: 1px solid var(--lbs-color-border);
}

.lbs-nav__list {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 0;
}

.lbs-nav__item {
	position: relative;
}

.lbs-nav__link {
	display: block;
	padding: 18px 20px;
	font-family: var(--lbe-font-body);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--lbs-color-primary);
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.lbs-nav__link:hover {
	color: var(--lbs-color-accent);
}

/* Submenu */
.lbs-nav__submenu {
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--lbs-color-white);
	min-width: 220px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	list-style: none;
	padding: 10px 0;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(5px);
	transition: all 0.2s ease;
	z-index: 10;
}

.lbs-nav__item:hover > .lbs-nav__submenu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.lbs-nav__submenu li a {
	display: block;
	padding: 10px 20px;
	font-size: 13px;
	color: var(--lbe-noir);
	text-decoration: none;
	transition: all 0.2s ease;
}

.lbs-nav__submenu li a:hover {
	color: var(--lbe-rose-nude);
	background: var(--lbe-beige);
}

/* Submenu toggle button (hidden on desktop, used on mobile/touch) */
.lbs-nav__submenu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
}

/* --------------------------------------------------------------------------
   Cart sidebar drawer
   -------------------------------------------------------------------------- */
.lbs-cart-sidebar {
	position: fixed;
	right: 0;
	top: 0;
	width: 380px;
	max-width: 90vw;
	height: 100vh;
	background: var(--lbs-color-white);
	z-index: 9999;
	transform: translateX(100%);
	transition: transform 0.3s ease;
	box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
	overflow-y: auto;
}

.lbs-cart-sidebar.is-open {
	transform: translateX(0);
}

.lbs-cart-sidebar__wrap {
	position: relative;
	padding: 50px 25px 25px;
}

.lbs-cart-sidebar__content {
	font-family: var(--lbe-font-body);
}

.lbs-cart-sidebar__overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 9998;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.lbs-cart-sidebar__overlay.is-visible {
	opacity: 1;
	visibility: visible;
}

.lbs-cart-sidebar__close {
	position: absolute;
	top: 15px;
	right: 15px;
	background: none;
	border: none;
	font-size: 20px;
	cursor: pointer;
	color: var(--lbs-color-primary);
	line-height: 1;
}

/* --------------------------------------------------------------------------
   Mobile header
   -------------------------------------------------------------------------- */
.lbs-header__outer--mobile .lbs-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 15px;
	min-height: var(--lbs-header-height-mobile);
}

.lbs-header__outer--mobile .lbs-header__logo img {
	max-height: 40px;
}

.lbs-mobile-menu-toggle {
	display: flex;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px;
}

.lbs-mobile-menu-toggle span {
	width: 24px;
	height: 2px;
	background: var(--lbs-color-primary);
	display: block;
	transition: all 0.3s ease;
}

.lbs-mobile-menu-toggle.is-active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.lbs-mobile-menu-toggle.is-active span:nth-child(2) {
	opacity: 0;
}

.lbs-mobile-menu-toggle.is-active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.lbs-mobile-menu {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.lbs-mobile-menu.is-open {
	max-height: 500px;
	overflow-y: auto;
}

.lbs-mobile-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.lbs-mobile-nav__list li a {
	display: block;
	padding: 14px 20px;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--lbs-color-primary);
	text-decoration: none;
	border-bottom: 1px solid var(--lbs-color-border);
}

.lbs-mobile-nav__list li a:hover {
	color: var(--lbs-color-accent);
}

/* --------------------------------------------------------------------------
   Search overlay
   -------------------------------------------------------------------------- */
.lbs-search-overlay {
	position: fixed;
	inset: 0;
	background: rgba(255, 255, 255, 0.97);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.lbs-search-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.lbs-search-overlay__wrap {
	position: relative;
	width: 90%;
	max-width: 600px;
}

.lbs-search-overlay__wrap input[type="search"],
.lbs-search-overlay__wrap input[type="text"] {
	width: 100%;
	padding: 18px 20px;
	font-size: 18px;
	font-family: var(--lbe-font-body);
	border: none;
	border-bottom: 2px solid var(--lbs-color-primary);
	background: transparent;
	outline: none;
}

.lbs-search-overlay__close {
	position: absolute;
	top: -50px;
	right: 0;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: var(--lbs-color-primary);
	line-height: 1;
}

/* --------------------------------------------------------------------------
   Promo / announcement bar (scrolling messages)
   -------------------------------------------------------------------------- */
.lbs-promo-bar {
  background-color: var(--lbe-noir);
  color: #ffffff;
  font-size: 13px;
  font-family: var(--lbe-font-body);
  letter-spacing: 0.5px;
  overflow: hidden;
  height: 40px;
  display: flex;
  align-items: center;
}

.lbs-promo-bar__link {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #ffffff;
  text-decoration: none;
  overflow: hidden;
}

.lbs-promo-bar__slider {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
}

.lbs-promo-bar__track {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  /* Ralenti fortement. !important pour battre le style inline (animation-duration)
     injecté par functions.php, qui sinon impose une durée plus courte. */
  animation: lbs-ticker 60s linear infinite !important;
  animation-duration: 60s !important;
  white-space: nowrap;
  will-change: transform;
}

/* Pause au survol pour laisser le temps de cliquer / lire */
.lbs-promo-bar__link:hover .lbs-promo-bar__track {
  animation-play-state: paused;
}

@keyframes lbs-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.lbs-promo-bar__item {
  display: inline-block;
  flex: 0 0 auto;
  padding: 0 40px;
  position: relative;
}

/* Séparateur entre les messages */
.lbs-promo-bar__item::after {
  content: '✦';
  position: absolute;
  right: -8px;
  font-size: 8px;
  opacity: 0.5;
  top: 50%;
  transform: translateY(-50%);
}

/* ==========================================================================
   SLIDER D'IMAGES DANS LES CARTES PRODUITS
   --------------------------------------------------------------------------
   Utilisé partout (home, boutique, produits similaires). Toutes les images
   sont superposées en absolu dans un cadre 3/4 ; le JS fait défiler.
   ========================================================================== */
.lbs-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f5f5f5;
  display: block;
  border-radius: 10px;
}

.lbs-card-media__slides {
  position: absolute;
  inset: 0;
}

.lbs-card-media__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.lbs-card-media__slide.is-active {
  opacity: 1;
}

/* L'image remplit le cadre, recadrage configurable via object-position */
.lbs-card-media__img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  margin: 0 !important;
  /* Annule tout flou résiduel d'un lazy-load */
  filter: none !important;
  opacity: 1 !important;
}

/* La carte ne doit plus appliquer ses anciennes règles d'image
   directement (le slider gère tout) */
.woocommerce ul.products li.product .lbs-card-media__img {
  position: static !important;
  aspect-ratio: auto !important;
}

/* Icône flottante "+ panier" superposée à l'image */
.lbs-card-cart-btn {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 4;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: var(--lbe-noir);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.lbs-card-cart-btn::after {
  /* petit "+" en pastille */
  content: '+';
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background: var(--lbe-noir);
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}

.lbs-card-cart-btn:hover {
  background: var(--lbe-noir);
  color: #ffffff;
  transform: translateY(-2px);
}

.lbs-card-cart-btn.loading {
  opacity: 0.6;
  pointer-events: none;
}

.lbs-card-cart-btn.added::after {
  content: '✓';
}

/* Courte description + lien "voir le produit" sous la carte */
.lbs-card-excerpt {
  font-family: var(--lbe-font-body);
  font-size: 12px;
  line-height: 1.5;
  color: #888;
  margin: 0 0 10px;
}

.lbs-card-view {
  display: inline-block;
  font-family: var(--lbe-font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--lbe-noir);
  text-decoration: none;
  border-bottom: 1px solid var(--lbe-noir);
  padding-bottom: 2px;
  transition: opacity 0.2s ease;
}

.lbs-card-view:hover {
  opacity: 0.6;
}

/* ==========================================================================
   BANDEAU DE RÉASSURANCE COMPACT (page produit + paiement)
   ========================================================================== */
.lbs-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin: 18px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid #eee;
}

.lbs-trust-strip__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--lbe-font-body);
  font-size: 12px;
  font-weight: 600;
  color: #4a4a4a;
}

.lbs-trust-strip__item svg {
  color: var(--lbe-noir);
  flex: 0 0 auto;
}

@media (max-width: 768px) {
  .lbs-trust-strip {
    gap: 10px 16px;
  }
  .lbs-trust-strip__item {
    flex: 0 0 calc(50% - 8px);
    font-size: 11px;
  }
}

/* ==========================================================================
   MISE EN PAGE GÉNÉRIQUE — toutes les pages (page.php + page-contact.php)
   --------------------------------------------------------------------------
   Sélecteurs préfixés par .lbs-page-wrap pour une spécificité supérieure
   à Storefront (sinon le contenu est réaligné à gauche / passe full-width).
   Ce bloc vit dans header.css car il est chargé sur TOUTES les pages.
   ========================================================================== */
.lbs-page-wrap {
  background: #ffffff;
}

/* En-tête de page : titre + fil d'Ariane, centrés */
.lbs-page-header {
  background: var(--lbe-beige);
  border-bottom: 1px solid #e0e0e0;
  /* Marge de sécurité en haut : le fil d'Ariane ne passe jamais sous le
     header fixed, y compris sur grands écrans. */
  padding: 40px 0 30px;
}

.lbs-page-wrap .lbs-page-header__container {
  max-width: var(--lbs-container-max) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 40px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  box-sizing: border-box !important;
}

.lbs-page-wrap .lbs-breadcrumb {
  font-size: 13px;
  color: #999;
  margin: 0 auto 15px;
  width: fit-content;
  max-width: 100%;
  text-align: center;
}

.lbs-page-wrap .lbs-breadcrumb a {
  color: #999;
  text-decoration: none;
}

.lbs-page-wrap .lbs-breadcrumb a:hover {
  color: var(--lbe-noir);
}

.lbs-page-wrap .lbs-breadcrumb__sep {
  margin: 0 8px;
}

.lbs-page-wrap .lbs-page-header__title {
  font-family: var(--lbe-font-title) !important;
  font-size: 36px !important;
  font-weight: 700 !important;
  color: var(--lbe-rose-nude) !important;
  margin: 0 auto 20px !important;
  width: 100% !important;
  text-align: center !important;
  float: none !important;
}

.lbs-page-wrap .lbs-page-header__line {
  height: 3px;
  width: 60px;
  background: var(--lbe-noir);
  margin: 0 auto;
}

/* Conteneur de contenu : centré, NON full-width */
.lbs-page-wrap .lbs-page-content {
  padding: 60px 0 80px;
}

.lbs-page-wrap .lbs-page-content__container {
  max-width: 820px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 40px !important;
  box-sizing: border-box !important;
  float: none !important;
  font-family: var(--lbe-font-body);
  color: var(--lbe-noir);
  line-height: 1.7;
  font-size: 16px;
}

.lbs-page-wrap .lbs-page-content__container img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .lbs-page-wrap .lbs-page-header__container,
  .lbs-page-wrap .lbs-page-content__container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .lbs-page-wrap .lbs-page-header__title {
    font-size: 24px;
  }
}
