/* L'Aire Bête — Sanctuaire : chandelles / mémoriaux. v1.53
   Ambiance douce, parchemin, chaleureuse. Aucun affichage commercial. */

/* ---- Boutons déclencheurs dans la scène ---- */
.lb-mem-triggers {
  position: fixed;
  left: 50%;
  bottom: 2.2rem;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.lb-mem-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(244, 220, 174, 0.55);
  color: #f4dcae;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 24px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  transition: transform 0.18s ease, filter 0.18s ease;
}
.lb-mem-trigger:hover,
.lb-mem-trigger:focus-visible {
  transform: scale(1.05);
  filter: drop-shadow(0 8px 24px rgba(255, 215, 100, 0.6));
  outline: none;
  color: #f4dcae;
}
.lb-mem-trigger__icon { font-size: 1.1rem; line-height: 1; }

/* ---- Hotspots dans la scène (chandelles peintes + livre « registre ») ----
   Même langage que les autres zones cliquables : halo doré au survol
   (::before radial-gradient + mix-blend-mode screen, sur fond peint) +
   drop-shadow doré + léger scale, et le libellé apparaît au survol. */
.lb-mem-hotspot {
  position: fixed;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  z-index: 4;
  border-radius: 12px;
}
/* Lumière IDENTIQUE au panneau « annonces classées » des intérieurs de
   pavillon (.lb-panneau-annonces--mur) : halo radial doux qui apparaît au
   survol via ::before + mix-blend-mode:screen. Pas d'étiquette, pas de
   scale, pas de drop-shadow — cohérent avec tout le site. */
.lb-mem-hotspot::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 55% at center,
    rgba(255, 220, 120, 0.70) 0%,
    rgba(255, 200, 80, 0.30) 50%,
    transparent 80%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 1;
}
.lb-mem-hotspot.is-lit::before { opacity: 0.35; } /* chandelle allumée : lueur douce permanente */
.lb-mem-hotspot:hover::before,
.lb-mem-hotspot:focus-visible::before { opacity: 1; }
.lb-mem-hotspot:focus-visible { outline: none; }
/* Plus d'étiquette/bouton au survol : seule la lumière, comme les annonces. */
.lb-mem-hotspot__label { display: none; }

/* Positions par défaut (à affiner en DnD via ?interieur_edit=1). */
.lb-mem-candle-hotspot { width: 5vw; height: 12vh; min-width: 44px; }
.lb-mem-candle-hotspot--1 { left: 39vw; top: 58vh; }
.lb-mem-candle-hotspot--2 { left: 46vw; top: 60vh; }
.lb-mem-candle-hotspot--3 { left: 53vw; top: 58vh; }
.lb-mem-candle-hotspot--4 { left: 43vw; top: 67vh; }
.lb-mem-candle-hotspot--5 { left: 50vw; top: 67vh; }
.lb-mem-souvenirs-hotspot { left: 7vw; top: 55vh; width: 13vw; height: 24vh; }
.lb-mem-guestbook-hotspot { left: 22vw; top: 55vh; width: 13vw; height: 24vh; }

/* Zones feuille (sur l'arbre) + niche (au mur) — positions par défaut, à
   affiner en DnD via ?interieur_edit=1. Même lumière douce au survol. */
.lb-mem-spot-hotspot { width: 7vw; height: 13vh; }
.lb-mem-spot-hotspot--feuille-1 { left: 30vw; top: 26vh; }
.lb-mem-spot-hotspot--feuille-2 { left: 40vw; top: 24vh; }
.lb-mem-spot-hotspot--niche-1 { left: 10vw; top: 40vh; }
.lb-mem-spot-hotspot--niche-2 { left: 17vw; top: 40vh; }
.lb-mem-spot-hotspot--niche-3 { left: 24vw; top: 40vh; }

/* IRIS — mascotte papillon (vidéo décorative, déplaçable en DnD). */
.lb-mem-iris {
  position: fixed;
  left: 60vw;
  top: 18vh;
  height: 16vh;       /* hauteur seule : la largeur suit le papillon → le cadre
                         d'édition épouse Iris (pas de marge transparente). */
  width: auto;
  z-index: 5;
  pointer-events: auto;  /* IRIS est cliquable (ouvre la bulle de conversation) */
  cursor: pointer;
  transition: transform 0.18s ease, filter 0.18s ease;
}
.lb-mem-iris:hover,
.lb-mem-iris:focus-visible {
  transform: scale(1.06);
  filter: drop-shadow(0 8px 24px rgba(255, 215, 100, 0.6));
  outline: none;
}
.lb-mem-iris__video {
  height: 100%;
  width: auto;
  display: block;
  pointer-events: none;
}

/* Bulle de conversation IRIS (chat IA). */
.lb-mem-iris-chat { width: 420px; max-width: 92vw; display: flex; flex-direction: column; max-height: 82vh; }
.lb-mem-iris-chat__history { flex: 1 1 auto; min-height: 140px; max-height: 52vh; overflow-y: auto; margin: 10px 0 12px; padding: 4px; }
.lb-mem-iris-chat__msg { margin: 0 0 8px; padding: 8px 12px; border-radius: 12px; max-width: 85%; line-height: 1.4; white-space: pre-wrap; }
.lb-mem-iris-chat__msg--user { background: #3d2010; color: #f3e9d6; margin-left: auto; border-bottom-right-radius: 4px; }
.lb-mem-iris-chat__msg--iris { background: rgba(255, 253, 248, 0.8); color: #3d2010; border: 1px solid rgba(120, 85, 40, 0.25); border-bottom-left-radius: 4px; }
.lb-mem-iris-chat__msg.is-pending { opacity: 0.6; font-style: italic; }
.lb-mem-iris-chat__form { display: flex; gap: 8px; }
.lb-mem-iris-chat__input { flex: 1; background: #fffdf8; border: 1px solid rgba(80, 55, 25, 0.45); border-radius: 999px; padding: 10px 14px; font: inherit; color: #2a2016; }
.lb-mem-iris-chat__input:focus { outline: none; border-color: #7a4a12; box-shadow: 0 0 0 1px #7a4a12; }
.lb-mem-iris-chat__send { background: #3d2010; color: #f3e9d6; border: 0; border-radius: 999px; padding: 10px 18px; font: 700 0.95rem Georgia, serif; cursor: pointer; }
.lb-mem-iris-chat__send:hover { background: #5a3318; }
.lb-mem-iris-chat__send:disabled { opacity: 0.6; cursor: default; }

/* Livre d'or : liste des messages sous le formulaire. */
.lb-mem-gb__list { margin-top: 18px; border-top: 1px dashed rgba(120, 85, 40, 0.3); padding-top: 14px; text-align: left; }
.lb-mem-gb__empty { text-align: center; color: #6b4f2a; font-style: italic; }
.lb-mem-gb__entry { margin: 0 0 12px; padding: 10px 12px; background: rgba(255, 253, 248, 0.5); border-radius: 8px; }
.lb-mem-gb__entry-name { font-weight: 700; color: #5a3318; }
.lb-mem-gb__entry-msg { margin: 4px 0 0; color: #3d2010; white-space: pre-wrap; }

/* Sélecteur de type de souvenir + carte (espèce/dates) + bandeau paiement. */
.lb-mem-field select {
  width: 100%;
  box-sizing: border-box;
  background: #fffdf8;
  border: 1px solid rgba(80, 55, 25, 0.45);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  color: #2a2016;
}
.lb-mem-field select:focus { outline: none; border-color: #7a4a12; box-shadow: 0 0 0 1px #7a4a12; }
.lb-mem-card__espece { margin: 0 0 4px; color: #6b4f2a; font-style: italic; }
.lb-mem-card__dates { margin: 0 0 12px; color: #6b4f2a; font-size: 0.92rem; }
.lb-mem-paybar {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100050;
  max-width: 92vw;
  padding: 12px 22px;
  border-radius: 12px;
  font: 700 0.98rem Georgia, serif;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}
.lb-mem-paybar--success { background: #2f6b3a; color: #f3f9ee; }
.lb-mem-paybar--cancel  { background: #6b4f2a; color: #f4ecdc; }
.lb-mem-paybar--error   { background: #8a2b2b; color: #fbeaea; }

/* Panier ÉCU (paiement unifié feuille/niche). */
.lb-mem-cart__list { margin: 12px 0; text-align: left; }
.lb-mem-cart__item { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px dashed rgba(120, 85, 40, 0.25); }
.lb-mem-cart__item-name { flex: 1; color: #3d2010; }
.lb-mem-cart__item-name em { color: #6b4f2a; font-style: italic; }
.lb-mem-cart__item-price { font-weight: 700; color: #5a3318; white-space: nowrap; }
.lb-mem-cart__item-rm { background: none; border: 0; color: #9a7a4a; font-size: 1.3rem; line-height: 1; cursor: pointer; }
.lb-mem-cart__item-rm:hover { color: #b32d2e; }
.lb-mem-cart__empty { text-align: center; color: #6b4f2a; font-style: italic; padding: 1.5rem 0; }
.lb-mem-cart__footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 12px; }
.lb-mem-cart__total { margin: 0; font-weight: 700; color: #3d2010; font-size: 1.05rem; }
.lb-mem-cart__pay { background: #3d2010; color: #f3e9d6; border: 0; border-radius: 999px; padding: 11px 24px; font: 700 1rem Georgia, serif; cursor: pointer; }
.lb-mem-cart__pay:hover { background: #5a3318; }
.lb-mem-cart__pay:disabled { opacity: 0.6; cursor: default; }

/* ---- Arbre Bienfaiteur : refuges (dons DIRECTS, jamais via L'Aire Bête) ---- */
.lb-refuge-vedette {
  position: fixed;
  left: 55vw; top: 30vh; width: 22vw; min-width: 210px;
  z-index: 6;
  background: rgba(20, 14, 8, 0.62);
  border: 2px solid rgba(244, 220, 174, 0.5);
  border-radius: 14px;
  padding: 14px 16px;
  color: #f4dcae;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.4);
  transition: transform 0.18s ease, filter 0.18s ease;
}
.lb-refuge-vedette:hover { transform: scale(1.03); filter: drop-shadow(0 8px 24px rgba(255, 215, 100, 0.5)); }
.lb-refuge-vedette__kicker { margin: 0 0 4px; font-size: 0.8rem; letter-spacing: 0.05em; opacity: 0.85; }
.lb-refuge-vedette__name { margin: 0 0 10px; font-family: Cinzel, Georgia, serif; font-size: 1.15rem; }
.lb-refuge-vedette__donate { background: #2f6b3a; color: #f3f9ee; border: 0; border-radius: 999px; padding: 9px 18px; font: 700 0.92rem Georgia, serif; cursor: pointer; }
.lb-refuge-vedette__donate:hover { background: #3a824a; }
.lb-refuge-vedette__all { display: block; margin-top: 8px; font-size: 0.82rem; text-decoration: underline; opacity: 0.85; }

/* Vedette « Refuge du mois » intégrée EN TÊTE de la fenêtre du répertoire
   (ouverte depuis la pancarte de l'arbre sur la façade). Pas flottante. */
.lb-refuge-vedette--indir {
  position: static;
  left: auto; top: auto; width: 100%; min-width: 0;
  z-index: auto;
  margin: 0 0 16px;
  cursor: default;
  box-shadow: none;
  background: rgba(244, 220, 174, 0.08);
  border-color: rgba(244, 220, 174, 0.3);
}
.lb-refuge-vedette--indir:hover { transform: none; filter: none; }

.lb-refuge-dir__bar { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin: 0 0 16px; }
.lb-refuge-dir__region { background: #fffdf8; border: 1px solid rgba(80, 55, 25, 0.45); border-radius: 8px; padding: 8px 12px; font: inherit; color: #2a2016; }
.lb-refuge-dir__register { background: rgba(0, 0, 0, 0.5); border: 2px solid rgba(244, 220, 174, 0.55); color: #f4dcae; border-radius: 24px; padding: 8px 18px; font: 700 0.92rem Georgia, serif; cursor: pointer; }
.lb-refuge-dir__register:hover { filter: drop-shadow(0 6px 18px rgba(255, 215, 100, 0.5)); }
.lb-refuge-dir__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; overflow: auto; padding: 4px; }
.lb-refuge-dir__empty { text-align: center; color: rgba(244, 220, 174, 0.85); padding: 2.5rem 1rem; }
.lb-refuge-dir__more { align-self: center; margin-top: 16px; background: rgba(0, 0, 0, 0.5); border: 2px solid rgba(244, 220, 174, 0.55); color: #f4dcae; border-radius: 24px; padding: 9px 24px; font: 700 0.95rem Georgia, serif; cursor: pointer; }

.lb-refuge-card { display: flex; flex-direction: column; background: rgba(255, 253, 248, 0.96); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25); }
.lb-refuge-card__photo { height: 130px; background: center/cover no-repeat #e8d9b8; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.lb-refuge-card__photo--none { color: #b9a06a; }
.lb-refuge-card__body { padding: 12px 14px; color: #3d2010; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.lb-refuge-card__name { margin: 0; font-family: Cinzel, Georgia, serif; font-size: 1.1rem; color: #5a3318; }
.lb-refuge-card__loc { margin: 0; font-size: 0.85rem; color: #6b4f2a; }
.lb-refuge-card__desc { margin: 0; font-size: 0.9rem; line-height: 1.4; }
.lb-refuge-card__actions { margin-top: auto; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; padding-top: 8px; }
.lb-refuge-card__donate { background: #2f6b3a; color: #f3f9ee; border: 0; border-radius: 999px; padding: 9px 16px; font: 700 0.9rem Georgia, serif; cursor: pointer; }
.lb-refuge-card__donate:hover { background: #3a824a; }
.lb-refuge-card__report { background: none; border: 0; color: #9a7a4a; font-size: 0.8rem; text-decoration: underline; cursor: pointer; }
.lb-refuge-card__report:hover { color: #b32d2e; }

/* Le formulaire et la carte passent au-dessus du mur. */
#lb-mem-form-modal { z-index: 100001; }
#lb-mem-card { z-index: 100002; }

/* Bouton « Allumer une chandelle » dans le mur (toujours accessible). */
.lb-mem-wall__add {
  align-self: center;
  margin: 0 0 14px;
  padding: 8px 22px;
  background: rgba(0, 0, 0, 0.45);
  border: 2px solid rgba(244, 220, 174, 0.55);
  color: #f4dcae;
  border-radius: 24px;
  font: 700 0.95rem Georgia, serif;
  cursor: pointer;
}
.lb-mem-wall__add:hover { filter: drop-shadow(0 6px 18px rgba(255, 215, 100, 0.55)); }

/* ---- Couche modale commune ---- */
.lb-mem-layer {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vh 4vw;
  background: rgba(18, 12, 6, 0.78);
  backdrop-filter: blur(3px);
}
.lb-mem-layer[hidden] { display: none; }

/* v1.71 — Overlay DONS (répertoire refuges) : fond = PAGE D'ACCUEIL (vallée),
   assombri pour la lisibilité, au lieu de laisser voir la page derrière. */
#lb-refuge-dir {
  background:
    linear-gradient( rgba(18,12,6,0.74), rgba(18,12,6,0.84) ),
    url('../img/decor/parc-vue-panoramique.png') center / cover no-repeat;
  backdrop-filter: none;
}

.lb-mem-parch {
  position: relative;
  width: 480px;
  max-width: 94vw;
  max-height: 92vh;
  overflow: auto;
  background: url('../../public/assets/parchemin-fond.png') center/cover, #efe0bc;
  border: 1px solid rgba(120, 85, 40, 0.5);
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
  color: #3d2010;
  padding: 26px 26px 30px;
}
.lb-mem-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(120, 85, 40, 0.4);
  background: rgba(255, 253, 248, 0.7);
  color: #5a3318;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.lb-mem-close:hover { filter: drop-shadow(0 4px 12px rgba(255, 215, 100, 0.6)); }

/* ---- Formulaire ---- */
.lb-mem-form__title {
  margin: 0 0 4px;
  font-family: Cinzel, Georgia, serif;
  font-size: 1.5rem;
  color: #5a3318;
  text-align: center;
}
.lb-mem-form__intro {
  margin: 0 0 18px;
  text-align: center;
  font-size: 0.95rem;
  color: #6b4f2a;
}
.lb-mem-field { margin: 0 0 14px; }
.lb-mem-field label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0 0 5px;
  color: #3d2010;
}
.lb-mem-field input[type="text"],
.lb-mem-field textarea,
.lb-mem-field input[type="file"] {
  width: 100%;
  box-sizing: border-box;
  background: #fffdf8;
  border: 1px solid rgba(80, 55, 25, 0.45);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  color: #2a2016;
}
.lb-mem-field textarea { min-height: 90px; resize: vertical; }
.lb-mem-field input:focus,
.lb-mem-field textarea:focus {
  outline: none;
  border-color: #7a4a12;
  box-shadow: 0 0 0 1px #7a4a12;
}
.lb-mem-form__submit {
  width: 100%;
  margin-top: 4px;
  padding: 11px 0;
  background: #3d2010;
  color: #f3e9d6;
  border: 0;
  border-radius: 999px;
  font: 700 1rem Georgia, serif;
  cursor: pointer;
}
.lb-mem-form__submit:hover { background: #5a3318; }
.lb-mem-form__submit:disabled { opacity: 0.7; cursor: default; }
.lb-mem-form__feedback { margin: 14px 0 0; text-align: center; font-size: 0.95rem; min-height: 1.2em; }
.lb-mem-form__feedback.is-error { color: #b32d2e; }
.lb-mem-form__feedback.is-success { color: #2f6b3a; font-weight: 700; }
.lb-mem-hp { position: absolute; left: -9999px; top: -9999px; }

/* ---- Mur des souvenirs ---- */
.lb-mem-wall__panel {
  width: 1100px;
  max-width: 96vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
}
.lb-mem-wall__heading {
  margin: 0 0 2px;
  text-align: center;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: #f4dcae;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
.lb-mem-wall__sub {
  margin: 0 0 18px;
  text-align: center;
  color: rgba(244, 220, 174, 0.85);
  font-size: 0.95rem;
}
.lb-mem-wall__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 16px;
  overflow: auto;
  padding: 4px;
}
.lb-mem-candle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 8px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(244, 220, 174, 0.25);
  border-radius: 12px;
  cursor: pointer;
  color: #f4dcae;
  transition: transform 0.16s ease, filter 0.16s ease, background 0.16s ease;
}
.lb-mem-candle:hover,
.lb-mem-candle:focus-visible {
  transform: translateY(-3px) scale(1.03);
  filter: drop-shadow(0 8px 22px rgba(255, 200, 90, 0.55));
  background: rgba(0, 0, 0, 0.5);
  outline: none;
}
.lb-mem-candle__flame {
  font-size: 2.2rem;
  line-height: 1;
  animation: lb-mem-flicker 2.4s ease-in-out infinite;
}
.lb-mem-candle__photo {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: center/cover no-repeat;
  border: 2px solid rgba(244, 220, 174, 0.6);
}
.lb-mem-candle__name {
  font-family: Georgia, serif;
  font-size: 0.92rem;
  text-align: center;
  word-break: break-word;
}
@keyframes lb-mem-flicker {
  0%, 100% { opacity: 1; transform: translateY(0) scale(1); }
  50%      { opacity: 0.82; transform: translateY(-1px) scale(1.06); }
}
.lb-mem-wall__empty {
  text-align: center;
  color: rgba(244, 220, 174, 0.85);
  padding: 3rem 1rem;
  font-size: 1.05rem;
}
.lb-mem-wall__more {
  align-self: center;
  margin-top: 18px;
  padding: 9px 24px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(244, 220, 174, 0.55);
  color: #f4dcae;
  border-radius: 24px;
  font: 700 0.95rem Georgia, serif;
  cursor: pointer;
}
.lb-mem-wall__more:hover { filter: drop-shadow(0 6px 18px rgba(255, 215, 100, 0.55)); }

/* ---- Carte douce (détail) ---- */
.lb-mem-card__body { text-align: center; }
.lb-mem-card__photo img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(120, 85, 40, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.lb-mem-card__flame { font-size: 3.4rem; animation: lb-mem-flicker 2.4s ease-in-out infinite; }
.lb-mem-card__inmemory {
  margin: 14px 0 0;
  font-style: italic;
  color: #6b4f2a;
  font-size: 0.9rem;
}
.lb-mem-card__name {
  margin: 2px 0 10px;
  font-family: Cinzel, Georgia, serif;
  font-size: 1.6rem;
  color: #5a3318;
}
.lb-mem-card__message {
  margin: 0 0 18px;
  font-size: 1.02rem;
  line-height: 1.5;
  color: #3d2010;
  white-space: pre-wrap;
}
.lb-mem-card__report {
  background: none;
  border: 0;
  color: #9a7a4a;
  font-size: 0.82rem;
  text-decoration: underline;
  cursor: pointer;
}
.lb-mem-card__report:hover { color: #b32d2e; }
.lb-mem-card__report:disabled { color: #6b4f2a; text-decoration: none; cursor: default; }

@media (max-width: 600px) {
  .lb-mem-triggers { bottom: 1.2rem; }
  .lb-mem-wall__grid { grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 12px; }
  .lb-mem-candle__photo { width: 60px; height: 60px; }
}

/* ===================================================================
 * v1.73.2 — Bougie ALLUMÉE clairement visible (flamme + halo chaud),
 * distincte d'une bougie « à allumer » (lueur sobre). Corrige « la
 * bougie n'apparaît pas » : avant, allumée = même lueur que le marqueur.
 * =================================================================== */
.lb-sanctuaire__world .lb-mem-candle-hotspot:not(.is-lit)::before { opacity: .28 !important; }
.lb-sanctuaire__world .lb-mem-candle-hotspot.is-lit::before {
  opacity: .95 !important;
  background: radial-gradient( ellipse 55% 60% at 50% 42%,
    rgba(255,214,120,.95) 0%, rgba(255,150,50,.55) 40%, rgba(255,120,30,.12) 72%, transparent 86% ) !important;
}
.lb-mem-candle-hotspot.is-lit::after {
  content: ''; position: absolute; left: 50%; top: 32%; width: 13px; height: 20px;
  transform: translate(-50%,-50%);
  border-radius: 50% 50% 45% 45% / 62% 62% 38% 38%;
  background: radial-gradient( circle at 50% 72%, #fff6c8 0%, #ffcf6a 45%, #ff8a2a 82% );
  box-shadow: 0 0 16px 7px rgba(255,170,60,.85);
  animation: lb-candle-flame 1.1s ease-in-out infinite; pointer-events: none; z-index: 3;
}
@keyframes lb-candle-flame { 0%,100%{transform:translate(-50%,-50%) scaleY(1)} 50%{transform:translate(-50%,-54%) scaleY(1.18)} }

/* v1.99 — Urne souvenir (hotspot VISIBLE, pas de peinture dédiée) + mini-boutique holographique (Pade) */
.lb-mem-urne-hotspot {
  position: absolute; left: 8%; top: 50%; width: 9vw; min-width: 84px; height: auto;
  display: block; padding: 0; background: none; border: 0; border-radius: 0; box-shadow: none;
  cursor: pointer; transition: transform .2s ease, filter .2s ease; z-index: 6;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.55));
}
.lb-mem-urne-hotspot__img { width: 100%; height: auto; display: block; }
.lb-mem-urne-hotspot__icon { display: block; font-size: 3.6rem; line-height: 1; }
.lb-mem-urne-hotspot .lb-mem-urne-hotspot__text {
  display: block; position: absolute; bottom: -1.5em; left: 50%; transform: translateX(-50%);
  font: 600 .62rem/1 Cinzel, Georgia, serif; white-space: nowrap; color: #f4dcae;
  text-shadow: 0 1px 4px #000; opacity: 0; transition: opacity .2s; pointer-events: none;
}
.lb-mem-urne-hotspot:hover { transform: scale(1.05); filter: drop-shadow(0 6px 14px rgba(0,0,0,.55)) drop-shadow(0 0 16px rgba(255,210,120,.55)); }
.lb-mem-urne-hotspot:hover .lb-mem-urne-hotspot__text { opacity: 1; }

.lb-mem-urne__panel { max-width: 680px; width: 92%; max-height: 86vh; overflow-y: auto; }
.lb-mem-urne__intro { text-align: center; opacity: .9; margin: .2rem 0 1rem; font-size: .92rem; }
.lb-mem-urne__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 1rem; }
.lb-mem-urne-card { display: flex; flex-direction: column; background: rgba(20,14,8,.35);
  border: 1px solid rgba(244,220,174,.22); border-radius: 12px; overflow: hidden; }
.lb-mem-urne-card__photo { aspect-ratio: 1/1; background: #0c0906; }
.lb-mem-urne-card__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lb-mem-urne-card__title { font: 700 .92rem/1.2 Cinzel, Georgia, serif; margin: .6rem .7rem .2rem; }
.lb-mem-urne-card__desc { font-size: .74rem; opacity: .82; margin: 0 .7rem .4rem; flex: 1 1 auto; }
.lb-mem-urne-card__price { font-weight: 700; margin: .1rem .7rem .5rem; color: #f4dcae; }
.lb-mem-urne-card__add { margin: 0 .7rem .7rem; padding: .5rem; border: 0; border-radius: 8px; cursor: pointer;
  background: linear-gradient(180deg, #caa24a, #a07b2c); color: #1a1206; font-weight: 700; font-size: .82rem; }
.lb-mem-urne-card__add:hover { filter: brightness(1.08); }
.lb-mem-urne-card__add:disabled { opacity: .7; cursor: default; }
.lb-mem-urne__note { text-align: center; font-size: .72rem; opacity: .7; margin: 1rem 0 .2rem; }
@media (max-width: 768px) { .lb-mem-urne-hotspot { display: none; } }
