/*!
 * HELIOS RD · styles communs du site de vente (consentement, formulaires,
 * navigation projets, pied de page). Marque : navy #0a0a12 + doré #f0b429 + Inter.
 */

:root {
  --hx-ink: #0a0a12;
  --hx-gold: #f0b429;
  --hx-gold-soft: #f5c65e;
  --hx-pearl: #f5f2ea;
  --hx-muted: rgba(245, 242, 234, .62);
  --hx-line: rgba(245, 242, 234, .14);
}

/* ============================== consentement ============================== */
.hx-consent {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 9000;
  padding: clamp(12px, 2vw, 22px);
  transform: translateY(115%);
  transition: transform .34s cubic-bezier(.22, .8, .3, 1);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
.hx-consent.is-in { transform: translateY(0); }

.hx-consent__box {
  max-width: 1080px;
  margin: 0 auto;
  background: rgba(14, 14, 24, .96);
  border: 1px solid var(--hx-line);
  border-radius: 16px;
  padding: clamp(18px, 2.4vw, 26px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .55);
  backdrop-filter: blur(10px);
  color: var(--hx-pearl);
}
@supports not (backdrop-filter: blur(10px)) {
  .hx-consent__box { background: #0e0e18; }
}

.hx-consent__t {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .01em;
  margin-bottom: 6px;
}
.hx-consent__b {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--hx-muted);
  max-width: 78ch;
}
.hx-consent__b a { color: var(--hx-gold); text-decoration: underline; }

.hx-consent__opts {
  margin-top: 16px;
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--hx-line);
  padding-top: 16px;
}
/* `display:grid` l'emporterait sur la règle [hidden] du navigateur : on la
   rétablit pour que le panneau reste replié tant que « Personnaliser » n'a
   pas été cliqué. */
.hx-consent__opts[hidden] { display: none; }
.hx-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  line-height: 1.5;
  cursor: pointer;
}
.hx-row input { margin-top: 3px; accent-color: var(--hx-gold); width: 16px; height: 16px; }
.hx-row input:disabled { opacity: .55; cursor: not-allowed; }
.hx-row b { display: block; font-weight: 600; }
.hx-row em { font-style: normal; color: var(--hx-muted); font-size: 12.5px; }
.hx-always {
  margin-left: auto;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--hx-muted);
  white-space: nowrap;
}

.hx-consent__acts {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hx-btn {
  font: inherit;
  font-size: 13.5px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 100px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .25s, border-color .25s, transform .2s;
}
.hx-btn--gold { background: var(--hx-gold); color: #1a1206; }
.hx-btn--gold:hover { background: var(--hx-gold-soft); transform: translateY(-1px); }
.hx-btn--ghost {
  background: transparent;
  color: var(--hx-pearl);
  border-color: var(--hx-line);
}
.hx-btn--ghost:hover { border-color: var(--hx-gold); color: var(--hx-gold); }
.hx-btn:focus-visible { outline: 2px solid var(--hx-gold); outline-offset: 2px; }

@media (max-width: 620px) {
  .hx-consent__acts { justify-content: stretch; }
  .hx-consent__acts .hx-btn { flex: 1 1 auto; }
}

/* ====================== section contact + formulaire ===================== */
/* Ces règles vivent ici (et non dans la page) parce que la section contact est
   injectée dans des pages produites par la chaîne SEO : elle doit être stylée
   sans dépendre de leur feuille interne. */

.hx-contact .sec__in {
  padding-top: clamp(64px, 9vh, 104px);
  padding-bottom: clamp(40px, 7vh, 80px);
  max-width: 1120px;
  margin: 0 auto;
  text-align: left;
}
.hx-contact .cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
.hx-contact .cta-side .cap-title { max-width: 14ch; text-align: left; margin: 0; }
.hx-contact .cta-sub {
  margin-top: 16px;
  color: var(--hx-muted);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 42ch;
}
.hx-contact .card-form {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--hx-line);
  border-radius: 20px;
  padding: clamp(22px, 3vw, 32px);
  text-align: left;
}
.hx-contact .card-form h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(21px, 2.4vw, 26px);
  margin: 0 0 5px;
}
.hx-contact .card-form .sm {
  color: var(--hx-muted);
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0 0 20px;
}

/* Une colonne par défaut : les pages liste d'attente ont une carte étroite.
   La grille à deux colonnes est réservée à la section contact des pages projet. */
.hx-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 13px;
  text-align: left;
}
.hx-contact .hx-form { grid-template-columns: 1fr 1fr; }
.hx-field { display: flex; flex-direction: column; gap: 6px; }
.hx-field--full { grid-column: 1 / -1; }
.hx-field label {
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--hx-muted);
  font-weight: 500;
}
.hx-field input,
.hx-field select,
.hx-field textarea {
  background: var(--hx-ink);
  border: 1px solid var(--hx-line);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--hx-pearl);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14.5px;
  width: 100%;
  appearance: none;
}
.hx-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5l5-5' stroke='%23f0b429' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 11px;
  padding-right: 34px;
}
.hx-field input:focus,
.hx-field select:focus,
.hx-field textarea:focus { outline: none; border-color: var(--hx-gold); }
.hx-field textarea { resize: vertical; min-height: 74px; }

.hx-submit {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  background: var(--hx-gold);
  color: #1a1206;
  padding: 15px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background .25s;
}
.hx-submit:hover:not(:disabled) { background: var(--hx-gold-soft); }
.hx-submit:disabled { opacity: .6; cursor: progress; }
.hx-privacy { margin-top: 11px; font-size: 11.5px; color: var(--hx-muted); line-height: 1.5; }

@media (max-width: 900px) {
  .hx-contact .cta-grid { grid-template-columns: 1fr; }
  .hx-form { grid-template-columns: 1fr; }
}

/* ============================ messages formulaire ========================= */
.hx-msg {
  margin-top: 12px;
  font-size: 13.5px;
  line-height: 1.5;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid transparent;
}
.hx-msg--ok { background: rgba(240, 180, 41, .12); border-color: rgba(240, 180, 41, .38); color: var(--hx-gold-soft); }
.hx-msg--err { background: rgba(248, 113, 113, .10); border-color: rgba(248, 113, 113, .34); color: #fca5a5; }
.hx-msg--info { background: rgba(245, 242, 234, .06); border-color: var(--hx-line); color: var(--hx-muted); }
.hx-wa-link { color: #25d366; font-weight: 600; }

/* piège à robots — invisible pour l'humain, jamais annoncé aux lecteurs d'écran */
.hx-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* ============================ navigation projets ========================= */
.hx-nav { display: flex; align-items: center; gap: 8px; }
.hx-nav__item { position: relative; }

.hx-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--hx-pearl);
  background: rgba(10, 10, 18, .42);
  border: 1px solid var(--hx-line);
  border-radius: 100px;
  padding: 8px 15px;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color .25s, color .25s, background .25s;
  backdrop-filter: blur(8px);
}
.hx-nav__link:hover,
.hx-nav__link[aria-expanded="true"] { border-color: var(--hx-gold); color: var(--hx-gold); }
.hx-nav__link--gold { background: var(--hx-gold); color: #1a1206; border-color: var(--hx-gold); }
.hx-nav__link--gold:hover { background: var(--hx-gold-soft); color: #1a1206; }
.hx-nav__link svg { width: 11px; height: 11px; transition: transform .25s; }
.hx-nav__link[aria-expanded="true"] svg { transform: rotate(180deg); }

.hx-drop {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  min-width: 262px;
  background: rgba(14, 14, 24, .97);
  border: 1px solid var(--hx-line);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .5);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .22s, transform .22s, visibility .22s;
}
.hx-drop.is-open { opacity: 1; visibility: visible; transform: translateY(0); }

.hx-drop a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 9px;
  color: var(--hx-pearl);
  font-size: 13.5px;
  transition: background .2s, color .2s;
}
.hx-drop a:hover { background: rgba(240, 180, 41, .12); color: var(--hx-gold); }
.hx-drop a b { font-weight: 500; }
.hx-drop a span { font-size: 11px; color: var(--hx-muted); white-space: nowrap; }

@media (max-width: 900px) {
  .hx-nav__label { display: none; }
  .hx-nav__link { padding: 8px 11px; }
  .hx-drop { right: -40px; min-width: 232px; }
}

/* ================================ pied de page =========================== */
/* Sur les pages projet, le pied de page est la dernière diapositive du deck :
   il doit porter ses propres styles, la feuille de la page ne le connaît pas. */
.hx-footer {
  position: relative;
  z-index: 2;
  background: #08080f;
  border-top: 1px solid var(--hx-line);
  padding: clamp(38px, 5vw, 58px) clamp(22px, 6vw, 90px) 28px;
  scroll-snap-align: start;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--hx-pearl);
}
.hx-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(22px, 3vw, 42px);
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}
.hx-footer__brand {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.hx-footer__brand b { color: var(--hx-gold); }
.hx-footer p { color: var(--hx-muted); font-size: 13px; line-height: 1.6; max-width: 38ch; }
.hx-footer a {
  display: block;
  color: var(--hx-muted);
  font-size: 13px;
  padding: 4px 0;
  text-decoration: none;
  transition: color .2s;
}
.hx-footer a:hover { color: var(--hx-gold); }
.hx-footer .hx-lbl {
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--hx-pearl);
  margin-bottom: 9px;
}
.hx-footer__bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--hx-line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--hx-muted);
}
.hx-certs { display: flex; gap: 9px; flex-wrap: wrap; }
.hx-certs span {
  border: 1px solid var(--hx-line);
  border-radius: 100px;
  padding: 4px 11px;
  font-size: 10.5px;
  letter-spacing: .1em;
}
@media (max-width: 900px) { .hx-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .hx-footer__grid { grid-template-columns: 1fr; } }

.hx-stores { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.hx-store {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--hx-line);
  border-radius: 10px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, .03);
  transition: border-color .25s, transform .2s;
  color: var(--hx-pearl);
}
.hx-store:hover { border-color: var(--hx-gold); transform: translateY(-2px); }
.hx-store svg { width: 20px; height: 20px; flex: none; }
.hx-store span { display: flex; flex-direction: column; line-height: 1.2; }
.hx-store small { font-size: 9.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--hx-muted); }
.hx-store b { font-size: 13px; font-weight: 600; }

@media (prefers-reduced-motion: reduce) {
  .hx-consent, .hx-drop, .hx-btn, .hx-store { transition: none; }
}

/* ========================= cible tactile des puces ======================= */
/* Les puces du deck font 9 px : on élargit la zone cliquable sans toucher au
   dessin, pour atteindre les 24 px recommandés. */
.dots button { position: relative; }
.dots button::after { content: ""; position: absolute; inset: -8px; }

/* === OTO_MODIFS_SITE_CSS v1 2026-08-08 debut ==============================
   Couche vente - ajouts REVERSIBLES et ADDITIFS. Aucun effet visuel existant
   n'est retire, aucune image/video/resolution touchee.
   Marque : navy #0a0a12 + dore #f0b429 (var --hx-gold / --hx-gold-soft).
   Retrait : supprimer ce bloc entre les marqueurs puis relancer l'injecteur. */

/* modif 1 — ligne descripteur du logo : simple HOOK (la typo est CLONEE depuis
   la ligne existante => identique). Aucune surcharge visuelle. */
.oto-ms-descriptor { }

/* modif 2 — chevron "defiler" : discret, noir & or, semi-transparent, rebond lent */
.oto-ms-chevron {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; margin: 10px auto 4px;
  border-radius: 50%;
  color: var(--hx-gold, #f0b429);
  background: rgba(10, 10, 18, .30);
  border: 1px solid rgba(240, 180, 41, .16);
  opacity: .42; cursor: pointer;
  transition: opacity .3s ease, border-color .3s ease, transform .3s ease;
  animation: oto-ms-bounce 2.6s ease-in-out infinite;
}
.oto-ms-chevron:hover { opacity: .9; border-color: rgba(240, 180, 41, .44); }
.oto-ms-chevron svg { display: block; }
@keyframes oto-ms-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* modif 3 — concierge OTOYA (bas-droite) : halo/pulsation TRES leger (dore).
   Cible le selecteur documente .otoia-launcher. L'anneau est un ::after :
   il ne touche NI la position (fixed) NI le box-shadow propre du widget. */
.otoia-launcher::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  pointer-events: none;
  box-shadow: 0 0 0 0 rgba(240, 180, 41, .45);
  animation: oto-ms-otoya-ring 2.6s ease-out infinite;
}
@keyframes oto-ms-otoya-ring {
  0%   { box-shadow: 0 0 0 0 rgba(240, 180, 41, .45); }
  70%  { box-shadow: 0 0 0 12px rgba(240, 180, 41, 0); }
  100% { box-shadow: 0 0 0 0 rgba(240, 180, 41, 0); }
}

/* modif 5 — fluidite du defilement : TECHNIQUE uniquement, look IDENTIQUE.
   Le deck plein-ecran utilise scroll-snap 'mandatory' (accroche rigide =
   sensation lourde a chaque cran de molette). 'proximity' garde l'accroche
   par section mais laisse le defilement couler naturellement + vite.
   Aucune image/video/effet retire. (Remettre 'mandatory' = revert 1 mot.) */
.deck {
  scroll-snap-type: y proximity !important;   /* etait : y mandatory */
  overscroll-behavior-y: contain;             /* stoppe le chainage/rebond = moins de jank */
  -webkit-overflow-scrolling: touch;          /* momentum iOS */
}

/* accessibilite : coupe les animations si l'utilisateur le demande */
@media (prefers-reduced-motion: reduce) {
  .oto-ms-chevron { animation: none; }
  .otoia-launcher::after { animation: none; box-shadow: 0 0 0 2px rgba(240, 180, 41, .28); }
}
/* === OTO_MODIFS_SITE_CSS v1 2026-08-08 fin ================================ */

/* OTO_FREEZE_COMPTE_CLIENT_BEGIN */
a[data-cta="espace_client"],a[data-cta="espace_client_footer"]{pointer-events:none!important;cursor:default!important;opacity:.55!important;color:var(--hx-gold-soft)!important;border-color:rgba(240,180,41,.30)!important;background:rgba(10,10,18,.42)!important;filter:grayscale(.10);}
a[data-cta="espace_client"]:hover,a[data-cta="espace_client_footer"]:hover{color:var(--hx-gold-soft)!important;border-color:rgba(240,180,41,.30)!important;}
/* OTO_FREEZE_COMPTE_CLIENT_END */

/* === OTO_BADGE_OTOLIVING_CSS v1 2026-08-08 debut ==========================
   Couche vente - badge premium << Smart Home . OTO LIVING(TM) >>.
   100% ADDITIF, scope strict aux classes .otoliv-* : n'altere aucune regle
   existante (aucune image/video/mise en page touchee). Noir & or, luxe strict.
   Palette : --hx-gold #f0b429 / --gold #f0b429 / --ink #0a0a12 (fallbacks litteraux).
   Retrait : supprimer ce bloc entre les marqueurs puis relancer l'injecteur. */
.otoliv-badge, .otoliv-feature {
  --olv-gold: var(--hx-gold, var(--gold, #f0b429));
  --olv-gold-soft: var(--hx-gold-soft, var(--gold-soft, #f5c65e));
  --olv-ink: var(--ink, #0a0a12);
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

/* ---------- Variante A : pastille compacte (posee dans le hero) ---------- */
.otoliv-badge {
  position: relative;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 16px 10px 12px;
  margin: 22px auto 0;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(240,180,41,.06), rgba(10,10,18,0)), rgba(10,10,18,.55);
  border: 1px solid rgba(240,180,41,.30);
  box-shadow: 0 1px 0 rgba(240,180,41,.10) inset, 0 12px 30px -16px rgba(0,0,0,.78);
  overflow: hidden; isolation: isolate;
  vertical-align: middle;
}
/* liseré or fin (double filet, via masque) */
.otoliv-badge::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, rgba(245,198,94,.9), rgba(240,180,41,.14) 42%, rgba(245,198,94,.72));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none; opacity: .7;
}
/* micro-eclat dore : balayage lent, tres discret */
.otoliv-badge::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(105deg, transparent 32%, rgba(245,198,94,.16) 48%, rgba(255,255,255,.05) 50%, transparent 63%);
  transform: translateX(-120%);
  animation: otoliv-sheen 6.5s ease-in-out 1.2s infinite;
  mix-blend-mode: screen;
}
@keyframes otoliv-sheen { 0% { transform: translateX(-120%); } 24%, 100% { transform: translateX(120%); } }

.otoliv-emblem {
  position: relative; flex: 0 0 auto; display: grid; place-items: center;
  width: 30px; height: 30px; border-radius: 9px; color: var(--olv-gold);
  background: radial-gradient(120% 120% at 30% 20%, rgba(240,180,41,.18), rgba(10,10,18,0) 70%);
  border: 1px solid rgba(240,180,41,.34);
}
.otoliv-emblem svg { width: 18px; height: 18px; display: block; }

.otoliv-txt { position: relative; display: flex; flex-direction: column; gap: 3px; line-height: 1.05; text-align: left; }
.otoliv-eyebrow { font-size: 8.5px; font-weight: 700; letter-spacing: .34em; text-transform: uppercase; color: rgba(245,198,94,.72); }
.otoliv-name { font-size: 12.5px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: #f4e6c6; white-space: nowrap; }
.otoliv-name b { font-weight: 700; color: var(--olv-gold-soft); letter-spacing: .14em; }
.otoliv-name sup { font-size: .6em; letter-spacing: 0; margin-left: 1px; color: var(--olv-gold); vertical-align: super; }

.otoliv-picto { position: relative; display: inline-flex; align-items: center; gap: 9px; margin-left: 1px; padding-left: 12px; border-left: 1px solid rgba(240,180,41,.22); }
.otoliv-picto svg { width: 13px; height: 13px; display: block; color: rgba(245,198,94,.66); }

/* centrage propre quand pose dans un .sec__in centre */
.sec.hero .sec__in .otoliv-badge, .hero .sec__in .otoliv-badge { margin-left: auto; margin-right: auto; }

/* ---------- Variante B : bandeau / feature (fournie, pour usage futur) ---------- */
.otoliv-feature {
  position: relative; display: flex; align-items: center; gap: 22px;
  max-width: 760px; margin: 24px auto 0; padding: 18px 22px;
  border-radius: 16px; text-align: left;
  background: linear-gradient(180deg, rgba(240,180,41,.05), rgba(10,10,18,0)), rgba(10,10,18,.62);
  border: 1px solid rgba(240,180,41,.26);
  box-shadow: 0 1px 0 rgba(240,180,41,.10) inset, 0 22px 50px -28px rgba(0,0,0,.85);
  overflow: hidden; isolation: isolate;
}
.otoliv-feature::before { content: ""; position: absolute; left: 22px; right: 22px; top: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(245,198,94,.75), transparent); }
.otoliv-feature::after  { content: ""; position: absolute; left: 22px; right: 22px; bottom: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(245,198,94,.32), transparent); }
.otoliv-feature__emblem {
  flex: 0 0 auto; width: 56px; height: 56px; border-radius: 13px; display: grid; place-items: center; color: var(--olv-gold);
  background: radial-gradient(130% 130% at 30% 20%, rgba(240,180,41,.18), rgba(10,10,18,0) 70%);
  border: 1px solid rgba(240,180,41,.32);
}
.otoliv-feature__emblem svg { width: 30px; height: 30px; display: block; }
.otoliv-feature__body { flex: 1 1 auto; min-width: 0; }
.otoliv-feature__title { font-size: 17px; font-weight: 600; letter-spacing: .10em; text-transform: uppercase; color: #f4e6c6; margin-top: 2px; }
.otoliv-feature__title b { font-weight: 800; color: var(--olv-gold-soft); }
.otoliv-feature__title sup { font-size: .6em; color: var(--olv-gold); vertical-align: super; }
.otoliv-feature__sub { font-size: 12.5px; line-height: 1.5; color: rgba(240,236,225,.72); margin-top: 6px; }
.otoliv-feature__pictos { flex: 0 0 auto; list-style: none; margin: 0; padding: 0 0 0 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; border-left: 1px solid rgba(240,180,41,.20); }
.otoliv-feature__pictos li { display: flex; align-items: center; gap: 7px; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: rgba(245,198,94,.72); }
.otoliv-feature__pictos svg { width: 14px; height: 14px; color: var(--olv-gold); flex: 0 0 auto; }

/* ---------- Lifting CONSERVATEUR de l'ancienne pastille du bas ----------
   Uniquement couleurs / filet / halo / casse : NE touche NI display, NI
   position, NI la taille de boite. Reversible (retrait de la classe). */
.otoliv-up {
  background: rgba(10,10,18,.55) !important;
  border: 1px solid rgba(240,180,41,.34) !important;
  color: #f4e6c6 !important;
  letter-spacing: .14em !important;
  box-shadow: 0 1px 0 rgba(240,180,41,.10) inset, 0 10px 26px -16px rgba(0,0,0,.8) !important;
  border-radius: 12px !important;
}

/* responsive : le bandeau passe en colonne, la pastille garde l'essentiel */
@media (max-width: 640px) {
  .otoliv-feature { flex-direction: column; align-items: flex-start; gap: 14px; }
  .otoliv-feature__pictos { border-left: 0; padding-left: 0; }
  .otoliv-name { white-space: normal; }
  .otoliv-picto { display: none; }
}
/* accessibilite : coupe le balayage si l'utilisateur le demande */
@media (prefers-reduced-motion: reduce) { .otoliv-badge::after { animation: none; opacity: 0; } }
/* === OTO_BADGE_OTOLIVING_CSS v1 2026-08-08 fin ============================ */
