/* Vitrine : panneaux premium floutés pour les visiteurs non connectés. */
.gated-panel {
  position: relative;
  overflow: hidden;
  max-height: 460px;
}
.gate-lock {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(6, 15, 12, 0.55);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.gate-inner {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
  max-width: 300px;
}
.gate-ico {
  font-size: 22px;
}
.gate-inner strong {
  font-size: 15px;
  color: var(--text);
}
.gate-inner p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.gate-cta {
  margin-top: 4px;
  border: 0;
  cursor: pointer;
  background: var(--lime);
  color: #06210f;
  font-weight: 800;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 10px;
  transition: filter 0.15s;
}
.gate-cta:hover {
  filter: brightness(1.08);
}
.gate-login {
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-decoration: underline;
  padding: 2px;
}
.gate-login:hover {
  color: var(--text);
}
