/* =========================================================
   RESET & BASE STYLE
========================================================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Marcellus', serif;
  color: #3f3622;
  background: #faf7f2;
}

.section {
  max-width: 1100px;
  margin: auto;
  padding: 50px 20px;
  margin:auto;
}

h1,h2,h3 {font-family:'Cinzel', serif; margin:0 0 12px 0;}
/* =========================================================
   HEADER
========================================================= */
.modern-header {
  text-align:center;
  padding:35px 10px 20px;
  border-bottom:1px solid rgba(200,160,80,0.4);
  background:radial-gradient(circle at center, rgba(255,245,225,0.8), rgba(255,240,210,0.4), rgba(255,235,200,0));
  display:flex;
  flex-direction:column;
  align-items:center;
}

.header-title {font-family:"Cinzel", serif; font-size:2.4em; letter-spacing:1.5px; background:linear-gradient(90deg,#9c7533,#e5d1a3,#9c7533); -webkit-background-clip:text; -webkit-text-fill-color:transparent; margin:0 auto 6px; display:block;margin:0 auto 5px;}

.header-wing{display:block;margin:0 auto;}

.header-sous-titre {
  margin-top: 4px;
  font-family:"Marcellus", serif;
  font-size:1.05em;
  color:#b78a45;
  opacity:0.95;
}

/* =========================================================
   BREADCRUMB
========================================================= */
.breadcrumb-modern {
  color: #8a6a36;
  background: rgba(255,245,225,0.65);
  padding: 12px 20px;
  border-radius: 10px;
  margin: 30px auto 40px;
  font-family: "Marcellus", serif;
  font-size: 0.92em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display:flex;
  align-items:left;
  justify-content:left;
  gap:6px;
}

.breadcrumb-modern a {
  color: #8a6a36;
  text-decoration: none;
  font-weight:600;
  transition:0.3s ease;
}

.breadcrumb-modern a:hover {
  text-decoration: underline;
  color:#d6b169;
  text-shadow:0 0 6px rgba(214,177,105,0.35);
}

.breadcrumb-modern .navigation-pipe {color:#c8a15c; font-weight:bold;}
.breadcrumb-modern .navigation-page {color:#8a6a36;}

/* =========================================================
   PANIER
========================================================= */
#cart-status {
  position: fixed;
  top: 20px;
  right: 22px;
  z-index: 9990;
}

#logo_panier {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform .25s;
}

#logo_panier:hover {
  transform: scale(1.07);
}

.cart-svg {
  width: 24px;
  height: 24px;
  stroke: #8a6a36;
  pointer-events: none;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #d4b46a;
  color: white;
  padding: 2px 5px;
  font-size: 11px;
  border-radius: 10px;
}

/* Ajustement mobile – éviter débordement */
@media (max-width: 768px) {
  #cart-status {
    top: 12px;
    right: 12px;
  }
}

/* ============================
   PANIER — Icône dorée + halo
=============================== */
#cart-status .cart-svg {
  stroke: #d4b46a !important;        /* couleur or */
  stroke-width: 2;
  fill: none;
  transition: 0.25s ease;
  filter: drop-shadow(0 0 4px rgba(212,180,106,0.45));
}

#cart-status:hover .cart-svg {
  stroke: #e4c981 !important;        /* or plus clair au hover */
  filter: drop-shadow(0 0 7px rgba(230,200,130,0.75));
}

/* Compteur panier */
#cart-status .cart-count {
  background: #d4b46a;
  color: white;
  border: 1px solid #c8a96a;
  box-shadow: 0 0 6px rgba(212,180,106,0.45);
}


/* =========================================================
   PRESENTATION PRODUIT
========================================================= */
#bloc-produit {
  margin-top: 15px;
}

.presentation-produit {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
}

.visuel-produit {
  flex: 1;
  max-width: 420px;
  position: relative;
}

.visuel-produit img {
  width: 100%;
  border-radius: 12px;
}

.texte-produit {
  flex: 1;
  min-width: 300px;
}

.texte-produit p {
  font-size:1.05em;
  line-height:1.6;
  color:#5a4a2f;
}

.product-title {
  font-family: "Cinzel", serif;
  font-size: 1.9em;
  margin-top: 0;
  /* color: #8a6a36; */
  background:linear-gradient(90deg,#9c7533,#e5d1a3,#9c7533);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.cta-gold {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 20px;
  border-radius: 8px;
  border: 2px solid #d4b46a;
  color: #a8843a;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s;
}

.cta-gold:hover {
  background: #fff3d7;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .presentation-produit {
    flex-direction: column;
    text-align: center;
  }
}

/* =========================================================
   BLOC PRIX
========================================================= */
.premium-product-box {
  margin-top: 25px;
  padding: 22px 26px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.pp-label span {
  color: #9c7533;
  font-weight: 600;
}

.pp-select {
  width: 100%;
  padding: 8px 12px;
  margin: 8px 0;
  border-radius: 8px;
  border: 1px solid #ccb789;
  font-size: 1em;
  color: #9c7533;
}

.pp-price-block {
  margin: 14px 0 10px;
}

.pp-price{background:linear-gradient(90deg,#906b2d,#e5d1a3,#906b2d);-webkit-background-clip:text;-webkit-text-fill-color:transparent;}

.pp-price span#our_price_display{font-size:1.6em;font-weight:700;}

.pp-old-price {
  font-size: 0.95em;
  color: #a8843a;
  opacity:.75;
}

.pp-old-price span#old_price_display{text-decoration:line-through;color:#b9a27a;}

.pp-btn {
  width: 100%;
  padding: 12px;
  margin-top: 8px;    /* optionnel – espace interne supplémentaire */
  background: #d4b46a;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: background .3s;
}

.pp-btn:hover {
  background: #c59c55;
}

.pp-add {
  margin-top: 24px;   /* augmente ou réduit espace sup */
}

/* ===== Champ quantité plus court ===== */
.pp-quantity .pp-qty {
  width: 65px;            /* largeur réduite */
  padding: 6px 8px;
  font-size: 0.95em;
  border: 1px solid #c8b68a;
  border-radius: 6px;
  text-align: center;
  color: #9c7533;
}

/* Alignement propre du label + input */
.pp-quantity {
  display: flex;
  align-items: center;
  gap: 10px;              /* espace entre label et champ */
}

/* ============================================================
   SLIDER PRODUIT — Bloc consolidé (à coller / remplacer)
   ============================================================ */

/* Conteneur général */
#product-slider {
  position: relative;
  width: 100%;
  max-width: 600px;        /* largeur max du slider */
  margin: 0 auto;
  overflow: hidden;
  height: 470px;           /* hauteur fixe principale */
  display: flex;
  align-items: center;
  justify-content: center;

  background: #faf7f1;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(214,177,105,0.14);
}

/* Image du produit : centrée, conserve ratio, hauteur constante */
#product-slide-img {
  display: block;
  margin: 0 auto;
  max-height: 100%;
  width: auto;
  object-fit: contain;
  transition: opacity .28s ease;
  -webkit-user-drag: none;
}

/* Responsive : hauteur réduite sur petits écrans */
@media (max-width: 900px) {
  #product-slider { height: 420px; }
}
@media (max-width: 700px) {
  #product-slider { height: 340px; }
  #product-slide-img { max-height: 100%; }
}

/* ------------------------------------------------------------
   Flèches précédentes / suivantes
   ------------------------------------------------------------ */
.slider-prev-btn,
#slider-prev,
.slider-next-btn,
#slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid #d4b46a;
  background: rgba(255,255,255,0.88);
  color: #9c7533;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .18s ease;
  z-index: 30;
  box-shadow: 0 6px 18px rgba(214,177,105,0.12);
}

/* placement */
.slider-prev-btn,
#slider-prev { left: 10px; }
.slider-next-btn,
#slider-next { right: 10px; }

/* visible uniquement au survol du slider (desktop) */
#product-slider:hover .slider-prev-btn,
#product-slider:hover .slider-next-btn,
#product-slider:hover #slider-prev,
#product-slider:hover #slider-next {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) scale(1);
}

/* hover style doré */
.slider-prev-btn:hover,
.slider-next-btn:hover,
#slider-prev:hover,
#slider-next:hover {
  background: #d4b46a;
  color: #fff;
  box-shadow: 0 10px 26px rgba(212,180,106,0.22);
  transform: translateY(-50%) scale(1.06);
}

/* Masquer les flèches sur mobile pour privilégier le swipe */
@media (max-width: 780px) {
  .slider-prev-btn,
  .slider-next-btn,
  #slider-prev,
  #slider-next {
    display: none !important;
    pointer-events: none !important;
    opacity: 0 !important;
  }
}

/* ------------------------------------------------------------
   Points (dots) — bas-centre, stylés doré
   ------------------------------------------------------------ */
#slider-dots,
.slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 25;
  pointer-events: auto;
}

/* dot base */
.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c8b68a;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  display: inline-block;
  box-shadow: none;
}

/* dot actif */
.slider-dot.active {
  background: #d4b46a;
  box-shadow: 0 0 8px rgba(214,177,105,0.55);
  transform: scale(1.15);
}

/* accessible focus style */
.slider-dot:focus,
.slider-dot:active {
  outline: none;
  box-shadow: 0 0 10px rgba(214,177,105,0.55);
}

/* ------------------------------------------------------------
   Sécurité layout : empêcher la compression des éléments enfants
   (utile si tu mets plus tard des captions flexibles)
   ------------------------------------------------------------ */
#product-slider .slide-item,
#product-slider img {
  flex-shrink: 0;
}

/* ------------------------------------------------------------
   Ajustements visuels supplémentaires (optionnels mais utiles)
   ------------------------------------------------------------ */
/* petite ombre intérieure dorée discrète */
#product-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 12px;
  box-shadow: inset 0 -30px 40px rgba(250,243,230,0.06);
}

/* si tu veux réduire la taille des flèches sur très petits écrans */
@media (max-width: 420px) {
  .slider-prev-btn,
  .slider-next-btn {
    width: 38px;
    height: 38px;
    font-size: 20px;
    left: 6px;
    right: 6px;
  }
}



/* =========================================================
   POPUP PANIER
========================================================= */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(2px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity .25s ease;
}

.popup-overlay.visible {
  display: flex;
  opacity: 1;
}

.popup-card {
  background: white;
  padding: 28px 32px;
  border-radius: 14px;
  max-width: 320px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
  animation: popup-scale-in .25s ease;
}

@keyframes popup-scale-in {
  from { opacity: 0; transform: scale(.85); }
  to   { opacity: 1; transform: scale(1); }
}

.popup-btn-gold,
.popup-btn-white {
  display: block;
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.popup-btn-gold {
  background: #d4b46a;
  color: white;
}

.popup-btn-white {
  background: white;
  border: 2px solid #d4b46a;
  color: #a8843a;
}

/* ================================
   SECTION FORMATS — BLOC PRINCIPAL
   ================================ */
.formats-livre {
  background:rgba(255, 248, 235, 0.9);
  border-radius: 12px;
  box-shadow:0 6px 20px rgba(0,0,0,0.06);
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  color: #5a4a2f;
  font-size: 1.05em;
  line-height: 1.6;
  
}

.formats-title {
  font-family: "Cinzel", serif;
  font-size: 2em;
  text-align: center;
  color: #9c7533;
  margin-bottom: 30px;
}


/* ================================
   CARTES DES FORMATS
   ================================ */
.format-card {
  background: #ffffff;
  padding: 22px 26px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  border-left: 4px solid #d6b169;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.format-card h3 {
  margin: 0;
  font-size: 1.3em;
  color: #9c7533;
  display: flex;
  align-items: center;
  gap: 8px;
}

.format-card h3 img {
  width: 22px;
}

.format-card .format-subtitle {
  font-style: italic;
  color: #a8843a;
  margin: 4px 0 10px;
}

/* ===== Espacement des cartes dans #formats ===== */
#formats .formats-container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px; /* ↗ Augmente l’espace horizontal & vertical */
  justify-content: center;
}

#formats .format-card {
  padding: 22px;
  border-radius: 14px;
  margin: 0 0 20px 0; /* marge inférieure optionnelle si wrap */
}


/* ================================
   APERÇU IMAGES N&B / COULEUR
   ================================ */
.formats-apercu {
  text-align: center;
  margin-top: 35px;
}

.formats-apercu h3 {
  color: #9c7533;
  font-size: 1.3em;
  margin-bottom: 14px;
  font-family: "Cinzel", serif;
}

.apercu-images {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.apercu-images img {
  width: 160px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}



/* ============================================================
   SECTION DESCRIPTION — Mise en forme propre & harmonisée
   ============================================================ */

.description-livre {
  background:rgba(255, 248, 235, 0.9);
  border-radius: 12px;
  box-shadow:0 6px 20px rgba(0,0,0,0.06);
  color: #5a4a2f;
  line-height: 1.65;
  margin: 40px auto;
  padding: 40px;
  
  /* max-width: 900px; */ 
}

/* ----- Titre ----- */
.desc-title {
  font-family: 'Cinzel', serif;
  font-size: 2em;
  color: #9c7533;
  text-align: center;
  margin-bottom: 20px;
}

/* ----- Intro et paragraphes ----- */
.desc-intro,
.desc-text,
.desc-conclusion {
  font-size: 1.08em;
  margin-bottom: 22px;
  line-height:1.6;
  color:#5a4a2f;
  margin-bottom:24px; 
}

/* ----- Liste ----- */
.desc-list {
  list-style: none;
  padding-left: 0;
  margin-top:12px;
  color:#7a673d;
  font-size:1em;
}

.desc-list li {
  display: flex;
  align-items: center;
  margin: 10px 0;
  color: #7a673d;
  font-size: 1.05em;
}

.desc-list li img {
  width: 20px;
  margin-right: 10px;
  filter: drop-shadow(0 0 4px rgba(214,177,105,0.4));
}

/* ----- Notes encadrées ----- */
.desc-note {
  background: rgba(255, 240, 210, 0.55);
  padding: 14px 18px;
  border-left: 4px solid #d4b46a;
  border-radius: 8px;
  font-size: 1.05em;
  margin-top: 26px;
  color: #7a673d;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.desc-note img {
  width: 24px;
  margin-top: 2px;
}

/* ----- Lien vers "Identifier mes Anges" ----- */
.desc-link {
  color: #9c7533;
  font-weight: 600;
  text-decoration: underline;
  transition: color .25s ease;
}

.desc-link:hover {
  color: #c4a066;
}

/* ----- Responsive ----- */
@media (max-width: 600px) {
  .desc-title {
    font-size: 1.7em;
  }
  .desc-intro,
  .desc-text,
  .desc-conclusion,
  .desc-note {
    font-size: 1em;
  }
  .desc-list li img {
    width: 18px;
  }
}

/* ================= FAQ (Le Livre de Mes Anges) ================= */
:root {
  --gold-weak: rgba(200,160,80,0.45);
  --gold-solid: #c8a050;
  --card-bg: rgba(255,255,255,0.65);
  --text-dark: #c8a050;
}

.faq-section {
  max-width: 980px;
  margin: 60px auto;
  padding: 30px 20px;
  box-sizing: border-box;
}

.faq-section .section-title {
  font-size: 2rem;
  text-align: center;
  margin: 0 0 26px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gold-weak);
  color: var(--text-dark);
}

/* Item */
.faq-item {
  border: 1px solid var(--gold-weak);
  background: var(--card-bg);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

/* Hover léger */
.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(20,20,20,0.05);
}

/* Question (le bouton) */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text-dark);
  outline: none;
}

/* Icône + */
.faq-icon {
  display: inline-block;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid var(--gold-weak);
  color: var(--gold-solid);
  font-weight: 700;
  transition: transform .25s ease, background .25s ease;
}

/* quand actif */
.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: linear-gradient(180deg, rgba(200,160,80,0.07), rgba(200,160,80,0.02));
}

/* Answer */
.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  color: #b58e45;
  font-size: 0.98rem;
  line-height: 1.6;
}

/* When open: padding added via JS by setting maxHeight - ensure comfortable spacing */
.faq-item.active .faq-answer {
  padding-top: 12px;
  padding-bottom: 18px;
}

/* Inner lists and notes */
.faq-answer ul {
  margin: 10px 0 8px 18px;
}

.faq-answer li {
  margin-bottom: 8px;
}

.faq-note {
  margin-top: 10px;
  font-style: italic;
  color: #9c7a3d;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 720px){
  .faq-section { padding: 20px 14px; margin: 40px 10px; }
  .faq-question { padding: 14px 16px; font-size: 1rem; }
  .faq-answer { padding-left: 16px; padding-right: 16px; }
}


/* =========================================================
   OTHER SECTIONS (format, témoignages…)
========================================================= */ 
  
.cta-angel {
  display: block;
  margin: 0 auto 40px;
  padding: 12px 26px;
  border-radius: 12px;
  border: 2px solid #d4b46a;
  color: #a8843a;
  font-weight: 600;
  background: white;
  cursor: pointer;
  text-align:center;
  position:relative;
  overflow:hidden;
  text-decoration:none;
  font-size:1.1em;
}

.cta-angel {
  transition:0.3s ease;
}
.cta-angel:hover {
  box-shadow:0 0 14px rgba(214,177,105,0.55);
  transform:translateY(-2px);
}
.cta-angel::after {
  content:"";
  position:absolute;
  top:0; left:0; right:0; bottom:0;
  background:radial-gradient(circle, rgba(255,225,150,0.35), rgba(255,225,150,0));
  opacity:0; transition:0.4s ease;
}
.cta-angel:hover::after {
  opacity:1;
}


/* ============================================================
   SECTION EXTRAITS — Cartes de citations angéliques
   ============================================================ */

.extraits-textuels {
  margin: 30px auto 15px;
  padding-top: 15px;
}

.extraits-textuels .extrait-card {
  background: #fffdf8;
  border-left: 4px solid #d4b46a;
  padding: 18px 22px;
  margin: 18px auto;
  max-width: 750px;
  border-radius: 10px;
  box-shadow: 0 3px 14px rgba(0,0,0,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.extraits-textuels .extrait-card p {
  margin: 0;
  color: #6a5732;
  font-size: 1.15em;
  line-height: 1.55;
  text-align: center;
  font-style: italic;
}

.extraits-textuels .extrait-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.extrait-card em {
  color: #7a673d;
  font-style: italic;
}

.extraits-title {
  font-family: "Cinzel", serif;
  color: #9c7533;
  margin-bottom: 28px;
  text-align: center;
  letter-spacing: 0.5px;
}

/* ==============================================
   Icône dorée inversée + Titre Extraits centré
   ============================================== */
/* ===============================================
   Variante lumineuse premium de l’icône d’extrait
   =============================================== */
.extraits-title,  .formats-title, .desc-title, .temoignages-title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 2em;
  color: #9c7533;
}

/* Icône beaucoup plus lumineuse + halo */
.extraits-title::before, .formats-title::before, .desc-title::before, .temoignages-title::before {
  content: "";
  display: inline-block;
  width: 42px;               /* ← augmente ou diminue pour la taille */
  height: 42px;

  background-image: url("https://la-voie-des-anges.fr/images/new/wing.png");
  background-size: contain;
  background-repeat: no-repeat;

  /* retournement axe vertical */
  transform: scaleX(-1);

  /* Halo doré renforcé */
  filter:
    drop-shadow(0 0 8px rgba(255,220,130,0.85))
    drop-shadow(0 0 18px rgba(255,200,100,0.55))
    brightness(1.25);

  /* Animation scintillante subtile (optionnelle) */
  animation: gold-glow 2.2s ease-in-out infinite alternate;
}

/* Icône insérée via ::after */
.extraits-title::after, .formats-title::after, .desc-title::after, .temoignages-title::after {
  content: "";
  display: inline-block;
  width: 42px;               /* ← augmente ou diminue pour la taille */
  height: 42px;

  background-image: url("https://la-voie-des-anges.fr/images/new/wing.png");
  background-size: contain;
  background-repeat: no-repeat;

  /* Halo doré renforcé */
  filter:
    drop-shadow(0 0 8px rgba(255,220,130,0.85))
    drop-shadow(0 0 18px rgba(255,200,100,0.55))
    brightness(1.25);

  /* Animation scintillante subtile (optionnelle) */
  animation: gold-glow-2 2.2s ease-in-out infinite alternate;
}
/* Animation de halo doux */
@keyframes gold-glow {
  0% {
    filter:
      drop-shadow(0 0 6px rgba(255,220,140,0.55))
      drop-shadow(0 0 14px rgba(255,200,100,0.35))
      brightness(1.15);
    transform: scaleX(-1) scale(1);
  }
  100% {
    filter:
      drop-shadow(0 0 10px rgba(255,230,170,0.95))
      drop-shadow(0 0 22px rgba(255,200,100,0.70))
      brightness(1.35);
    transform: scaleX(-1) scale(1.06);
  }
}

@keyframes gold-glow-2 {
  0% {
    filter:
      drop-shadow(0 0 6px rgba(255,220,140,0.55))
      drop-shadow(0 0 14px rgba(255,200,100,0.35))
      brightness(1.15);
    transform: scale(1);
  }
  100% {
    filter:
      drop-shadow(0 0 10px rgba(255,230,170,0.95))
      drop-shadow(0 0 22px rgba(255,200,100,0.70))
      brightness(1.35);
    transform: scale(1.06);
  }
}



.extrait-icon {
  width: 26px;
  vertical-align: middle;
  margin-right: 8px;
  filter: drop-shadow(0 0 6px rgba(214,177,105,0.55));
}

/* Espacement global section */
.extraits-textuels .extrait-card + .extrait-card {
  margin-top: 26px;
}

/* Mobile */
@media (max-width: 600px) {
  .extraits-textuels .extrait-card {
    padding: 16px 18px;
  }
  .extraits-textuels .extrait-card p {
    font-size: 1.05em;
  }
}

/* ============================================================
   SECTION TÉMOIGNAGES — Slider horizontal
   ============================================================ */

#temoignages {
  margin: 30px auto 15px;
  padding-top: 10px;	
  position: relative;
  overflow: hidden;
}

/* Titre */
#temoignages .extraits-title {
  text-align:center;
  font-size:2em;
  margin-bottom:25px;
  color:#9c7533;
}

/* Bande de cartes */
#temoignage-card {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;

  scroll-snap-type: x mandatory;

  scrollbar-width: none;
}
#temoignage-card::-webkit-scrollbar { display:none; }

/* Chaque carte */
.temoignage-card {
  flex: 0 0 80%;
  max-width: 350px;
  scroll-snap-align: start;

  background:#fff;
  border-left:4px solid #d4b46a;
  padding:18px 20px;
  border-radius:10px;

  font-size:1.05em;
  line-height:1.6;
  color:#5a4a2f;
  box-shadow:0 4px 16px rgba(0,0,0,0.12);
}

.temoignage-card p:last-child {
  font-weight:600;
  margin-top:10px;
  color:#8a6a36;
}

/* Desktop : largeur des cartes */
@media (min-width:900px){
  .temoignage-card { flex:0 0 30%; }
}
@media (min-width:1200px){
  .temoignage-card { flex:0 0 28%; }
}

/* Bouton CTA à droite */
#temoignages .cta-gold {
  float:right;
  display:inline-block;
  margin-top:20px;
}

@media (max-width:700px){
  #temoignages .cta-gold {
    float:none;
    margin:20px auto 0;
    display:block;
  }
}

/* =============================
   Flèches slider témoignages
============================= */
.temoignages-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;

  background: rgba(255,255,255,0.7);
  border: 2px solid #d4b46a;
  color: #9c7533;
  width: 42px;
  height: 42px;

  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 0 10px rgba(214,177,105,0.5);
  transition: background .25s, transform .25s;
}

.temoignages-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
}

/* Mobile → flèches centrées dans le conteneur */
@media (max-width: 700px) {
  .temoignages-arrow.left {
    left: 6px;
  }
  .temoignages-arrow.right {
    right: 6px;
  }
}

/* Assurer que les flèches sont au-dessus et cliquables */
.temoignages-arrow {
  z-index: 40;          /* au dessus du slider/autoplay */
  pointer-events: auto; /* s'assurer que les clics sont pris en compte */
  border: 2px solid rgba(212,180,106,0.95);
  background: rgba(255,255,255,0.9);
}

/* Positionner les flèches à l'intérieur du conteneur (évite qu'elles soient hors-zone cliquable) */
.temoignages-arrow.left { left: 8px; }
.temoignages-arrow.right { right: 8px; }

/* Réduire taille sur mobile si nécessaire */
@media(max-width:700px){
  .temoignages-arrow { width:38px; height:38px; font-size:20px; }
}

/* Empêche le conteneur de se compresser */
#temoignage-card {
  width: 100%;
  box-sizing: border-box;
}

/* Les cartes occupent exactement la place définie */
.temoignage-card {
  flex-shrink: 0; /* essentiel ! */
}

/* ============================
   BOUTON – SECTION TÉMOIGNAGES
=============================== */

#temoignages .cta-gold {
  display: inline-block;
  margin-left: auto;      /* pousse le bouton à droite */
  margin-top: 20px;
  padding: 10px 22px;
  float: right;           /* garantit l’alignement à droite */
}

/* Annule le float sur mobile pour éviter un chevauchement */
@media (max-width: 700px) {
  #temoignages .cta-gold {
    float: none;
    display: block;
    margin: 20px auto 0;  /* centré sur mobile */
	text-align:right;
  }
}


/* ============================================================
   FOOTER ANGÉLIQUE – Style complet
   ============================================================ */

.footer-angelic {
  background: #1a1512;
  padding: 50px 20px;
  margin-top: 60px;
  color: #e8d6b7;
  text-align: center;
  position: relative;
}

.footer-inner {
  max-width: 900px;
  margin: auto;
}

/* Citation */
.footer-quote {
  font-style: italic;
  font-size: 1.2em;
  color: #d4b46a;
  margin-bottom: 25px;
}

/* Ligne décorative */
.footer-divider {
  width: 90px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4b46a, transparent);
  margin: 18px auto 26px;
}

/* Logo */
.footer-logo img {
  width: 130px;
  filter: drop-shadow(0 0 8px rgba(214,177,105,0.45));
  transition: transform 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.06);
}

/* Liens */
.footer-nav {
  margin: 30px 0;
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #e8d6b7;
  font-size: 1em;
  text-decoration: none;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.footer-nav a:hover {
  color: #f1d59a;
  text-shadow: 0 0 6px rgba(214,177,105,0.55);
}

/* Copyright */
.footer-copy {
  margin-top: 35px;
  font-size: 0.95em;
  color: #bfae91;
}

/* Responsive */
@media (max-width: 600px){
  .footer-nav {
    flex-direction: column;
    gap: 12px;
  }

  .footer-logo img {
    width: 110px;
  }

  .footer-quote {
    font-size: 1.1em;
  }
}

/* ===============================
   SCROLL-UP BUTTON
================================*/
#scroll-up-btn {
  position: fixed;
  bottom: 28px;
  right: 26px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #d4b46a;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(4px);
  cursor: pointer;
  box-shadow: 0 0 12px rgba(214,177,105,0.45);
  z-index: 9990;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}

/* Icône flèche */
#scroll-up-btn::before {
  content: "▲";
  font-size: 20px;
  color: #9c7533;
  font-weight: bold;
  margin-top: -2px;
}

/* Visible */
#scroll-up-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Apparence au survol */
#scroll-up-btn:hover {
  background: #fff3d8;
  box-shadow: 0 0 16px rgba(214,177,105,0.65);
}

/* Masqué sur tablettes & mobiles
@media (max-width: 980px) {
  #scroll-up-btn {
    display: none !important;
  }
} */
/* ===============================
  /* ===========================================================
   LEFT SIDE MENU — Apparition / Fermeture / Responsive
   =========================================================== */

/* --- Bouton doré d’ouverture du menu --- */

.left-menu-toggle-gold {
  position: fixed;
  top: 90px;
  left: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d6b169, #b9974e);
  border: none;
  color: white;
  font-size: 26px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  box-shadow: 0 0 12px rgba(214,177,105,0.6);
  transition: left 0.35s ease, transform 0.35s ease;
}

.left-menu-toggle-gold:hover {
  transform: scale(1.07);
  box-shadow: 0 0 16px rgba(214,177,105,0.7),
              inset 0 0 10px rgba(255,255,255,0.45);
}
#left-menu-toggle.open {
  left: 260px;  /* même valeur que width du menu */
}
#left-menu-toggle {
  transition: left 0.35s ease;
}
@media (max-width: 900px) {
  #left-menu-toggle {
    position: fixed;
    top: 10px;
    left: 10px;
  }
}
/* ===========================================================
   MENU GAUCHE CONTENANT LE CONTENU
   =========================================================== */
#left-side-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100%;
  background: #faf7f1;
  border-right: 2px solid #d6b169;
  padding: 26px 22px;
  overflow-y: auto;
  z-index: 12000;

  transform: translateX(-100%);
  transition: transform 0.35s ease;
}

#left-side-menu.open {
  transform: translateX(0);
}

#left-side-menu.closed {
  transform: translateX(-100%);
}

/* Cacher menu sur mobile/tablette au chargement */
.hidden-mobile {
  display: block;
}

/* Logo */
.side-menu-logo img {
  width: 130px;
  margin: 0 auto 18px auto;
  display: block;
  filter: drop-shadow(0 0 10px rgba(214,177,105,0.45));
}

/* Titres */
#left-side-menu h3 {
  font-size: 1.15em;
  margin: 18px 0 10px 0;
  color: #9c7533;
  font-weight: 700;
}

/* Liens */
#left-side-menu a {
  display: block;
  padding: 8px 0;
  color: #5a4a2f;
  text-decoration: none;
  font-size: 1.05em;
  transition: color 0.2s ease;
}

#left-side-menu a:hover {
  color: #d6b169;
}

/* Lien fort */
.side-strong {
  font-weight: bold;
  color: #a8843a !important;
}

/* Séparateur */
.side-menu-divider {
  height: 1px;
  margin: 15px 0;
  background: rgba(90,74,47,0.18);
}

/* ===========================================================
   RESPONSIVE : comportement mobile / tablette
   =========================================================== */

/* Sur mobile/tablette → menu caché par défaut, bouton visible  */
@media (max-width: 992px) {
  .hidden-mobile {
    display: none;
  }

  #left-side-menu {
    display: block !important;
  }

  .left-menu-toggle-gold {
    display: block;
  }
}

/* Sur desktop → menu fermé au départ MAIS affichable via le bouton */
@media (min-width: 993px) {
  .left-menu-toggle-gold {
    display: block;
  }
}
/* Position lorsque le menu est ouvert */
.left-side-menu.open ~ #left-menu-toggle,
.left-side-menu.open + #left-menu-toggle {
  left: 260px;   /* même valeur que la largeur du menu */
  transform: rotate(90deg); /* style en option : rotation */
}

/* --- FOOTER STICKY INTELLIGENT --- */
/* html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
} */

    @media(max-width:768px){
      
      .header-title {font-size:1.9em;}
	  .modern-header {padding:5px 5px 10px;}
	  .breadcrumb-modern {
		  padding: 10px 20px;
		  font-size: 0.8em;
		  margin-top: 5px;
		}
    }
	