/* PROPRIO237 — coquille globale (nav, drawer, footer, panneau assistant non bloquant)
 * Tokens alignés sur l’app Flutter : GtsColors primary #FF6825, navy #1F2540 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700;800&display=swap');

:root {
  --site-primary: #ff6825;
  --site-primary-soft: #ff9a5a;
  --site-navy: #1f2540;
  --site-bg-light: #f4f5f9;
  --site-paper: #ffffff;
  --site-line: rgba(31, 37, 64, 0.08);
  --site-shadow: 0 20px 50px rgba(31, 37, 64, 0.12);
  --site-radius: 20px;
  --site-font: 'Inter', system-ui, sans-serif;
  --site-display: 'Poppins', system-ui, sans-serif;
}

/* Au-dessus du <main> de l’accueil (home-modern ne doit pas recouvrir la coquille) */
body.home-page #site-shell-nav-root {
  position: relative;
  z-index: 400;
}

/* ——— Barre fixe ——— */
.site-shell-nav-wrap {
  position: relative;
  z-index: 100;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.85rem 0;
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
}

.site-nav.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--site-line);
  box-shadow: 0 4px 24px rgba(31, 37, 64, 0.06);
}

.site-nav__inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--site-navy);
}

.site-nav__brand-mark {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(255, 104, 37, 0.2);
}

.site-nav__brand-text {
  font-family: var(--site-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.04em;
}

.site-nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 10px;
}

.site-nav__burger:hover {
  background: rgba(31, 37, 64, 0.06);
}

.site-nav__burger span {
  width: 22px;
  height: 2px;
  background: var(--site-navy);
  border-radius: 2px;
  transition: transform 0.2s ease;
}

.site-nav__desktop {
  display: block;
}

.site-nav__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-family: var(--site-font);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(31, 37, 64, 0.72);
  text-decoration: none;
  border: none;
  background: transparent;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.site-nav__link:hover {
  color: var(--site-navy);
  background: rgba(31, 37, 64, 0.05);
}

.site-nav__link.is-active {
  color: var(--site-primary);
  background: rgba(255, 104, 37, 0.1);
}

.site-nav__cta {
  margin-left: 0.35rem;
}

.site-nav__pill {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-family: var(--site-display);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--site-primary) 0%, var(--site-primary-soft) 100%);
  box-shadow: 0 8px 24px rgba(255, 104, 37, 0.35);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.site-nav__pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(255, 104, 37, 0.42);
}

@media (max-width: 960px) {
  .site-nav__burger {
    display: flex;
  }

  .site-nav__desktop {
    display: none;
  }
}

/* Desktop : pas de tiroir latéral (menu = barre horizontale uniquement).
 * Sans cette règle, un conflit [hidden] / display ou un état JS peut laisser
 * le panneau visible à droite sur grand écran. */
@media (min-width: 961px) {
  .site-drawer,
  .site-drawer-backdrop {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .site-nav__burger {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
  }
}

/* ——— Drawer ——— */
/* L’attribut HTML [hidden] a la même spécificité que .site-drawer ; sans !important,
 * display:flex du tiroir annule display:none et le panneau reste visible (bug grave). */
.site-drawer-backdrop[hidden],
.site-drawer[hidden] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.site-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(15, 18, 32, 0.45);
  backdrop-filter: blur(6px);
}

.site-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  width: min(100%, 380px);
  background: linear-gradient(165deg, #fff 0%, var(--site-bg-light) 100%);
  box-shadow: -12px 0 48px rgba(31, 37, 64, 0.15);
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.25rem 1.5rem;
  overflow-y: auto;
}

.site-drawer__glow {
  position: absolute;
  top: -40%;
  right: -30%;
  width: 80%;
  height: 50%;
  background: radial-gradient(circle, rgba(255, 104, 37, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.site-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  position: relative;
}

.site-drawer__brand {
  font-family: var(--site-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--site-navy);
  margin: 0;
}

.site-drawer__close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 12px;
  background: rgba(31, 37, 64, 0.06);
  color: var(--site-navy);
  cursor: pointer;
}

.site-drawer__tagline {
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(31, 37, 64, 0.55);
  margin: 0 0 1.25rem;
  position: relative;
}

.site-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  position: relative;
}

.site-drawer__link {
  display: flex;
  align-items: center;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  text-decoration: none;
  font-family: var(--site-font);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--site-navy);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--site-line);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.site-drawer__link:hover {
  border-color: rgba(255, 104, 37, 0.35);
  box-shadow: 0 4px 16px rgba(255, 104, 37, 0.08);
}

.site-drawer__link.is-active {
  border-color: rgba(255, 104, 37, 0.5);
  background: rgba(255, 104, 37, 0.06);
}

.site-drawer__link--btn {
  text-align: left;
  cursor: pointer;
  width: 100%;
}

.site-drawer__pill {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(255, 104, 37, 0.15);
  color: var(--site-primary);
}

.site-drawer__promo {
  margin-top: auto;
  padding-top: 1.25rem;
  position: relative;
}

.site-drawer__promo-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(31, 37, 64, 0.45);
  margin: 0 0 0.5rem;
}

.site-drawer__cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  font-family: var(--site-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--site-navy) 0%, #2d3555 100%);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.site-drawer__cta:hover {
  transform: scale(1.02);
}

.site-drawer__stores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.site-drawer__store {
  text-align: center;
  padding: 0.55rem 0.5rem;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--site-navy);
  background: #fff;
  border: 1px solid var(--site-line);
}

/* ——— Footer ——— */
.site-footer {
  border-top: 1px solid var(--site-line);
  padding: 3rem 1.5rem 2rem;
  background: var(--site-paper);
  margin-top: auto;
}

.site-footer__grid {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

@media (max-width: 800px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

.site-footer__heading {
  font-family: var(--site-font);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(31, 37, 64, 0.45);
  margin: 0 0 1rem;
}

.site-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__list li {
  margin-bottom: 0.55rem;
}

.site-footer__list a {
  color: rgba(31, 37, 64, 0.72);
  font-size: 0.92rem;
  text-decoration: none;
  font-family: var(--site-font);
}

.site-footer__list a:hover {
  color: var(--site-primary);
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--site-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--site-navy);
  text-decoration: none;
}

.site-footer__brand p {
  color: rgba(31, 37, 64, 0.55);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0.85rem 0 0;
  max-width: 22rem;
  font-family: var(--site-font);
}

.site-footer__bottom {
  max-width: 1220px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--site-line);
  font-size: 0.82rem;
  color: rgba(31, 37, 64, 0.45);
  text-align: center;
  font-family: var(--site-font);
}

/* ——— Contenu sous nav fixe (pages hors accueil pleine largeur) ——— */
.site-main--nav-offset {
  padding-top: 5.5rem;
}

/* ——— Panneau assistant (non bloquant, droite, auto-fermeture ~7s côté JS) ——— */
@keyframes site-modal-ttl-shrink {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}

@keyframes site-modal-dot-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.88;
    transform: scale(0.94);
  }
}

.site-modal-host {
  position: fixed;
  inset: 0;
  z-index: 600;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}

.site-modal-host.is-open,
.site-modal-host.is-closing {
  opacity: 1;
  visibility: visible;
}

.site-modal-host.is-open .site-modal-host__sheet,
.site-modal-host.is-closing .site-modal-host__sheet {
  pointer-events: auto;
}

.site-modal-host__sheet {
  position: absolute;
  right: max(12px, env(safe-area-inset-right, 0px));
  bottom: max(12px, env(safe-area-inset-bottom, 0px));
  left: auto;
  top: auto;
  width: min(360px, calc(100vw - 24px));
  max-height: min(78vh, 540px);
  display: flex;
  flex-direction: column;
  padding: 12px 14px 14px;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(155deg, #ffffff 0%, #fafbfc 48%, var(--site-bg-light) 100%);
  box-shadow:
    0 16px 48px rgba(31, 37, 64, 0.12),
    0 4px 14px rgba(31, 37, 64, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(31, 37, 64, 0.07);
  font-family: var(--site-font);
  transform: translateX(calc(100% + 28px));
  opacity: 0;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.32s ease;
}

.site-modal-host.is-open .site-modal-host__sheet {
  transform: translateX(0);
  opacity: 1;
}

.site-modal-host.is-closing .site-modal-host__sheet {
  transform: translateX(calc(100% + 28px));
  opacity: 0.9;
}

@media (min-width: 768px) {
  .site-modal-host__sheet {
    top: 50%;
    bottom: auto;
    width: min(400px, 36vw);
    max-height: min(86vh, 620px);
    transform: translateY(-50%) translateX(calc(100% + 36px));
  }

  .site-modal-host.is-open .site-modal-host__sheet {
    transform: translateY(-50%) translateX(0);
  }

  .site-modal-host.is-closing .site-modal-host__sheet {
    transform: translateY(-50%) translateX(calc(100% + 36px));
  }
}

.site-modal-host__chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-bottom: 6px;
  padding: 0 2px;
}

.site-modal-host__assistant-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--site-primary), #22c55e);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  animation: site-modal-dot-pulse 2.4s ease-in-out infinite;
}

.site-modal-host__assistant-label {
  flex: 1;
  min-width: 0;
  font-family: var(--site-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(31, 37, 64, 0.38);
  text-transform: uppercase;
}

.site-modal-host__ttl {
  flex-shrink: 0;
  height: 3px;
  margin: 0 0 10px;
  border-radius: 99px;
  background: rgba(31, 37, 64, 0.07);
  overflow: hidden;
}

.site-modal-host__ttl-bar {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: inherit;
  transform: scaleX(1);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--site-primary), var(--site-primary-soft), #38bdf8);
}

.site-modal-host.is-open .site-modal-host__ttl-bar {
  animation: site-modal-ttl-shrink 7s linear forwards;
}

.site-modal-host__inner {
  flex: 1;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 2px 2px 4px;
  font-family: var(--site-font);
  -webkit-overflow-scrolling: touch;
}

.site-modal-host__grab {
  width: 40px;
  height: 4px;
  margin: 0 auto 8px;
  border-radius: 3px;
  background: rgba(31, 37, 64, 0.12);
}

.site-modal-host__accent {
  height: 3px;
  width: 100%;
  margin-bottom: 12px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--site-primary), var(--site-primary-soft));
}

/* Scène fixe : le SVG Lottie est souvent décalé dans sa viewBox ; on cadre et centre */
.site-modal-host__lottie-stage {
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 auto 12px;
  overflow: hidden;
  box-sizing: border-box;
}

.site-modal-host__lottie-stage--promo {
  height: 100px;
}

.site-modal-host__lottie {
  flex-shrink: 0;
  width: 118px;
  height: 90px;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.site-modal-host__lottie-stage--promo .site-modal-host__lottie {
  width: 128px;
  height: 100px;
}

.site-modal-host__lottie svg {
  display: block;
  margin: 0 auto;
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
}

.site-modal-host__title {
  font-family: var(--site-display);
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--site-navy);
  text-align: center;
  margin: 0 0 8px;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.site-modal-host__text {
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(31, 37, 64, 0.55);
  text-align: center;
  margin: 0 0 0.85rem;
}

.site-modal-host__stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 0.5rem 0 1.25rem;
}

.site-modal-host__stars span {
  font-size: 1.45rem;
  line-height: 1;
  color: var(--site-primary);
  opacity: 0.45;
}

.site-modal-host__stars span:nth-child(1) {
  opacity: 0.4;
}
.site-modal-host__stars span:nth-child(2) {
  opacity: 0.5;
}
.site-modal-host__stars span:nth-child(3) {
  opacity: 0.62;
}
.site-modal-host__stars span:nth-child(4) {
  opacity: 0.78;
}
.site-modal-host__stars span:nth-child(5) {
  opacity: 0.95;
}

.site-modal-host__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 14px;
  border: none;
  border-radius: 14px;
  font-family: var(--site-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, var(--site-primary), var(--site-primary-soft));
  box-shadow: 0 8px 22px rgba(255, 104, 37, 0.32);
  margin-bottom: 5px;
  transition: transform 0.2s ease;
}

.site-modal-host__btn:hover {
  transform: translateY(-1px);
}

.site-modal-host__btn--ghost {
  background: transparent;
  color: rgba(31, 37, 64, 0.45);
  box-shadow: none;
  font-family: var(--site-font);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 8px 12px;
}

.site-modal-host__btn--ghost:hover {
  transform: none;
  color: var(--site-navy);
}

.site-modal-host__stores {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.site-modal-host__stores a {
  display: block;
  text-align: center;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--site-navy);
  border: 1px solid var(--site-line);
  background: #fff;
}

.site-modal-host__stores a:hover {
  border-color: rgba(255, 104, 37, 0.4);
}

.site-modal-host__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--site-primary);
  margin-bottom: 6px;
}

.site-modal-host__bullets {
  text-align: left;
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: rgba(31, 37, 64, 0.65);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* Variantes de feuilles (Pro startup, Poster, Property promo) */
.site-modal-host__sheet--poster {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(232, 244, 252, 0.96) 100%);
}

.site-modal-host__sheet--property {
  max-height: min(82vh, 560px);
}

@media (min-width: 768px) {
  .site-modal-host__sheet--property {
    max-height: min(88vh, 640px);
  }
}

.site-modal-host__inner--scroll {
  max-height: 70vh;
  overflow-y: auto;
}

.site-modal-host__topbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0 0 4px;
}

.site-modal-host__topbar-spacer {
  flex: 1;
}

.site-modal-host__icon-x {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: rgba(31, 37, 64, 0.06);
  color: rgba(31, 37, 64, 0.5);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-modal-host__icon-x:hover {
  background: rgba(31, 37, 64, 0.1);
  color: var(--site-navy);
}

.site-modal-host__icon-x--chrome {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  font-size: 1.35rem;
  margin-left: auto;
  flex-shrink: 0;
}

.site-modal-host__center {
  text-align: center;
}

.site-modal-host__title--lg {
  font-size: clamp(1rem, 2.8vw, 1.22rem);
}

.site-modal-host__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--site-font);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #fff;
  margin-bottom: 14px;
}

.site-modal-host__pill--pro {
  background: linear-gradient(90deg, var(--site-primary), var(--site-primary-soft));
  box-shadow: 0 6px 18px rgba(255, 104, 37, 0.35);
}

.site-modal-host__pill--poster {
  background: linear-gradient(90deg, #0ea5e9, var(--site-primary));
  box-shadow: 0 6px 16px rgba(14, 165, 233, 0.35);
}

.site-modal-host__pill--sm {
  font-size: 0.6rem;
  margin-bottom: 0;
}

.site-modal-host__bullet-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0.35rem 0 0.75rem;
  text-align: left;
}

.site-modal-host__mini-card {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding: 9px 10px;
  background: #fff;
  border: 1px solid var(--site-line);
  border-radius: 12px;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.25;
  color: rgba(31, 37, 64, 0.78);
  box-shadow: 0 3px 10px rgba(31, 37, 64, 0.04);
}

.site-modal-host__mini-card--blue {
  border-color: rgba(14, 165, 233, 0.2);
}

.site-modal-host__mini-card--full {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 1rem;
}

.site-modal-host__mini-ico {
  flex-shrink: 0;
  font-size: 1.1rem;
  line-height: 1;
}

.site-modal-host__stores--promo {
  margin-top: 0.5rem;
}

.site-modal-host__micro-hint {
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(31, 37, 64, 0.42);
  margin: 0.75rem 0 0;
}

.site-modal-host__btn--poster {
  background: linear-gradient(90deg, #0ea5e9, var(--site-primary));
  box-shadow: 0 10px 28px rgba(14, 165, 233, 0.35);
  margin-top: 0.5rem;
}

.site-modal-host__btn--outline {
  background: #fff;
  color: var(--site-navy);
  border: 1.5px solid rgba(31, 37, 64, 0.14);
  box-shadow: 0 4px 14px rgba(31, 37, 64, 0.06);
  text-decoration: none;
}

.site-modal-host__btn--compact {
  flex: 1;
  padding: 12px 10px;
  font-size: 0.85rem;
  text-decoration: none;
  text-align: center;
}

.site-modal-host__store-row {
  display: flex;
  gap: 8px;
  width: 100%;
}

.site-modal-host__grab--tight {
  margin-bottom: 4px;
}

.site-modal-host__accent--short {
  margin-bottom: 12px;
  max-width: 100%;
}

/* Property promo (PropertyPromoModal) */
.site-modal-host__property-sheet {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.site-modal-host__prop-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 4px;
}

.site-modal-host__prop-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin: 0 0 10px;
  aspect-ratio: 16 / 10;
  background: rgba(31, 37, 64, 0.06);
}

.site-modal-host__prop-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.site-modal-host__prop-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.site-modal-host__prop-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.site-modal-host__prop-dot.is-active {
  width: 18px;
  background: #fff;
}

.site-modal-host__prop-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding-bottom: 8px;
}

.site-modal-host__prop-title {
  font-family: var(--site-display);
  font-size: clamp(1rem, 2.8vw, 1.2rem);
  font-weight: 800;
  color: var(--site-navy);
  margin: 0 0 6px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.site-modal-host__prop-loc {
  font-size: 0.88rem;
  color: rgba(31, 37, 64, 0.5);
  margin: 0 0 10px;
}

.site-modal-host__prop-price {
  font-family: var(--site-display);
  font-size: clamp(1.05rem, 3.2vw, 1.35rem);
  font-weight: 800;
  color: var(--site-primary);
  margin: 0 0 10px;
  letter-spacing: -0.03em;
}

.site-modal-host__prop-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.site-modal-host__chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid var(--site-line);
  border-radius: 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(31, 37, 64, 0.78);
  box-shadow: 0 3px 10px rgba(31, 37, 64, 0.04);
}

.site-modal-host__prop-desc {
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(31, 37, 64, 0.62);
  margin: 0 0 8px;
}

.site-modal-host__prop-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--site-line);
  margin-top: auto;
}

@media (max-width: 420px) {
  .site-modal-host__bullet-row {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-modal-host,
  .site-modal-host__sheet {
    transition: none;
  }

  .site-modal-host__ttl-bar {
    animation: none !important;
    opacity: 0.4;
  }

  .site-modal-host__assistant-dot {
    animation: none;
  }

  .site-modal-host.is-open .site-modal-host__sheet {
    transform: translateX(0);
    opacity: 1;
  }

  .site-modal-host.is-closing .site-modal-host__sheet {
    transform: translateX(calc(100% + 28px));
    opacity: 0.85;
  }

  @media (min-width: 768px) {
    .site-modal-host.is-open .site-modal-host__sheet {
      transform: translateY(-50%) translateX(0);
    }

    .site-modal-host.is-closing .site-modal-host__sheet {
      transform: translateY(-50%) translateX(calc(100% + 36px));
    }
  }
}

/* Bandeau abonnement web → assets/css/subscription-banner.css (pages index, search, property) */

/* Styles page abonnement-web → assets/css/subscription-web.css (évite cache SW obsolète) */
