/* Drawer móvil – Nitro */
.ntr-drawer {
  position: fixed;
  inset: 0;
  display: block;
  pointer-events: none;
  z-index: 999999;
}
.ntr-drawer.is-open {
  pointer-events: auto;
}
.ntr-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.25s;
}
.ntr-drawer.is-open .ntr-drawer__backdrop {
  opacity: 1;
}
.ntr-drawer__panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #111;
  color: #fff;
  max-height: 85vh;
  border-radius: 16px 16px 0 0;
  transform: translateY(100%);
  transition: transform 0.28s ease;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
}
.ntr-drawer.is-open .ntr-drawer__panel {
  transform: translateY(0);
}
.ntr-drawer__close {
  position: absolute;
  right: 10px;
  top: 10px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.ntr-drawer__content {
  padding: 16px 14px 24px;
}
.ntr-drawer__content a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.25);
}
