/* Age Gate — modale 18+ */
.lrdf-age-gate[hidden] { display: none !important; }
.lrdf-age-gate {
  position: fixed;
  inset: 0;
  z-index: 2147483646;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lrdf-age-gate__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.lrdf-age-gate__dialog {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 27px;
  padding: 45px 41px 22px;
  max-width: 540px;
  width: calc(100% - 32px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  animation: lrdf-age-zoom 0.25s ease-out;
}
@keyframes lrdf-age-zoom {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}
.lrdf-age-gate__title {
  margin: 0;
  width: 100%;
  text-align: center;
}
.lrdf-age-gate__title img {
  width: 100%;
  max-width: 441px;
  height: auto;
  object-fit: contain;
  margin-bottom: 15px;
}
.lrdf-age-gate__question {
  font-size: 18px;
  line-height: 25px;
  font-weight: 700;
  text-align: center;
  color: #000;
  text-transform: uppercase;
  margin: 0;
  font-family: var(--font-body, inherit);
}
.lrdf-age-gate__actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 4px;
}
.lrdf-age-gate__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: #000;
  border: 1px solid #000;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.4s ease, color 0.4s ease;
  font-family: var(--font-body, inherit);
}
.lrdf-age-gate__btn:hover {
  background: var(--green, #67FF09);
  color: #000;
}
.lrdf-age-gate__remember {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 18px;
  color: #000;
  cursor: pointer;
  font-family: var(--font-body, inherit);
  user-select: none;
}
.lrdf-age-gate__remember input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid #000;
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  position: relative;
  margin: 0;
  transition: all 0.2s ease-in-out;
}
.lrdf-age-gate__remember input[type="checkbox"]::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--green, #67FF09);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.lrdf-age-gate__remember input[type="checkbox"]:checked::after {
  opacity: 1;
}

/* Bloque le scroll quand la modale est active */
html.lrdf-age-locked,
html.lrdf-age-locked body {
  overflow: hidden !important;
}

@media (max-width: 480px) {
  .lrdf-age-gate__dialog {
    padding: 32px 24px 20px;
    border-radius: 20px;
  }
  .lrdf-age-gate__btn {
    padding: 0 24px;
  }
}
