/* Endless Pure — shared styles injected on all landing pages */

/* ── Language dropdown (created by i18n.js around .nav-lang button) ─────── */
.ep-lang-wrap { position: relative; display: inline-flex; }
.ep-lang-menu {
  display: none;
  position: absolute; top: calc(100% + 6px); right: 0;
  background: #fff; border: 1px solid rgba(15,14,12,0.12);
  border-radius: 8px; box-shadow: 0 8px 24px rgba(15,14,12,0.12);
  overflow: hidden; z-index: 400; min-width: 72px;
}
.ep-lang-wrap.open .ep-lang-menu { display: flex; flex-direction: column; }
.ep-lang-opt {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 10px 18px; border: none; background: none; cursor: pointer;
  color: rgba(15,14,12,0.6); text-align: left;
  font-family: inherit;
  transition: background 0.15s, color 0.15s;
}
.ep-lang-opt:hover { background: rgba(15,14,12,0.05); color: #0F0E0C; }
.ep-lang-opt.active { color: #0F0E0C; font-weight: 500; }
