/* Dev4bel : popup marche francais, meme langage visuel que le site */
.d4b-fr-root {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-family: "Open Sans", Arial, sans-serif;
}
.d4b-fr-root.is-open { display: flex; }
.d4b-fr-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 23, 24, 0.58);
}
.d4b-fr-card {
  position: relative;
  z-index: 1;
  background: #fff;
  color: #231f20;
  border-radius: 20px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  width: min(560px, 100%);
  padding: 2.35em 2.2em 2em;
  animation: d4bFrIn 0.45s ease;
}
@keyframes d4bFrIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.d4b-fr-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #231f20;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.d4b-fr-kicker {
  display: inline-block;
  background: #ffc90d;
  color: #231f20;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.5em 0.85em;
  margin-bottom: 1.15em;
}
.d4b-fr-card h2 {
  margin: 0 0 0.45em;
  font-size: clamp(1.55em, 4vw, 2em);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.d4b-fr-lead {
  margin: 0 0 1.25em;
  color: #5e5e5e;
  font-size: 1em;
  line-height: 1.55;
}
.d4b-fr-date {
  font-weight: 700;
  color: #231f20;
  font-size: 0.95em;
  letter-spacing: 0.02em;
  margin-bottom: 1.1em;
}
.d4b-fr-cities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6em;
  margin: 0 0 1.5em;
}
.d4b-fr-city {
  background: #f6f6f6;
  text-align: center;
  padding: 0.95em 0.4em 0.85em;
}
.d4b-fr-city b {
  display: block;
  font-size: 0.82em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.d4b-fr-city span {
  display: block;
  margin-top: 0.2em;
  font-size: 11px;
  color: #9b9c9c;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.d4b-fr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7em;
  align-items: center;
}
.d4b-fr-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffc90d;
  color: #231f20;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  min-height: 48px;
}
.d4b-fr-cta:hover { filter: brightness(0.97); color: #231f20; }
.d4b-fr-skip {
  border: 0;
  background: transparent;
  color: #5e5e5e;
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  padding: 8px 4px;
}
@media (max-width: 560px) {
  .d4b-fr-card { padding: 1.8em 1.25em 1.4em; border-radius: 16px; }
  .d4b-fr-cities { grid-template-columns: 1fr; }
}
body.d4b-fr-lock { overflow: hidden; }
