/* ═══════════════════════════════════════════
   MOBILE BOTTOM NAVIGATION — EDEN
   Shared across all pages
   ═══════════════════════════════════════════ */

.mob-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: #0d0d0d;
  height: 64px;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.mob-nav__items {
  display: flex;
  width: 100%;
  height: 100%;
}

.mob-nav__btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: rgba(255,255,255,0.45);
  font-size: 10px;
  letter-spacing: 0;
  text-decoration: none;
  border: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
  padding: 0 2px;
  white-space: nowrap;
  transition: color .2s;
  -webkit-tap-highlight-color: transparent;
}

.mob-nav__btn.active,
.mob-nav__btn:hover { color: #c9a982; }

.mob-nav__btn svg {
  width: 22px; height: 22px;
  flex-shrink: 0;
}

/* ── OVERLAY ── */
.mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 91;
}
.mob-overlay.open { display: block; }

/* ── DRAWER ── */
.mob-drawer {
  position: fixed;
  left: 0; top: 0; bottom: 64px;
  width: 280px;
  background: #0d0d0d;
  color: #fbfaf7;
  z-index: 92;
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mob-drawer.open { transform: translateX(0); }

.mob-drawer__head {
  padding: 24px 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mob-drawer__close {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  border: none;
  background: none;
  flex-shrink: 0;
}

.mob-drawer__section {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding: 16px 20px 6px;
}

.mob-drawer__link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  transition: all .2s;
}
.mob-drawer__link:hover {
  color: #fbfaf7;
  background: rgba(255,255,255,0.04);
}
.mob-drawer__link svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  opacity: 0.7;
}

/* ── SHOW ON MOBILE ── */
@media (max-width: 860px) {
  .mob-nav { display: flex; }
  /* Evita que el contenido quede oculto detrás del nav */
  body { padding-bottom: 64px; }
}
