/* Scheo Exit Popup 1.0 - stilus. A szinek a --scheo-ep-* valtozokbol jonnek,
   ugyfelenkent az adminban allithatok. */
.scheo-ep {
  --scheo-ep-accent: #1d4ed8;
  --scheo-ep-accent-text: #ffffff;
  --scheo-ep-bg: #ffffff;
  --scheo-ep-title: #0f172a;
  --scheo-ep-text: #334155;
  --scheo-ep-muted: #475569;
  --scheo-ep-radius: 16px;
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-family: inherit;
}
.scheo-ep[hidden] { display: none; }
html.scheo-ep-open { overflow: hidden; }

.scheo-ep__ov {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .72);
  opacity: 0;
  transition: opacity .2s ease;
}
.scheo-ep.is-open .scheo-ep__ov { opacity: 1; }

.scheo-ep__box {
  position: relative;
  width: 100%;
  max-width: 460px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  background: var(--scheo-ep-bg);
  border-radius: var(--scheo-ep-radius);
  box-shadow: 0 24px 60px rgba(15, 23, 42, .35);
  transform: translateY(16px) scale(.98);
  opacity: 0;
  transition: transform .22s ease, opacity .22s ease;
}
.scheo-ep.is-open .scheo-ep__box { transform: none; opacity: 1; }

.scheo-ep__x {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: #475569;
  cursor: pointer;
  padding: 0;
}
.scheo-ep__x:hover { background: #e2e8f0; color: #0f172a; }
.scheo-ep__x svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; }

.scheo-ep__media { line-height: 0; }
.scheo-ep__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--scheo-ep-radius) var(--scheo-ep-radius) 0 0;
}

.scheo-ep__body { padding: 28px 26px 26px; text-align: center; }

.scheo-ep__eyebrow {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--scheo-ep-accent);
}
.scheo-ep__title {
  margin: 0 0 10px;
  font-size: 25px;
  line-height: 1.25;
  font-weight: 800;
  color: var(--scheo-ep-title);
}
.scheo-ep__text {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--scheo-ep-text);
}
.scheo-ep__code {
  margin: 0 0 18px;
}
.scheo-ep__code span {
  display: inline-block;
  padding: 10px 18px;
  border: 2px dashed var(--scheo-ep-accent);
  border-radius: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--scheo-ep-title);
}

.scheo-ep__form { text-align: left; }
.scheo-ep__lab {
  display: block;
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--scheo-ep-text);
}
.scheo-ep__in {
  width: 100%;
  box-sizing: border-box;
  min-height: 46px;
  margin: 0 0 12px;
  padding: 10px 12px;
  font-size: 16px;
  color: var(--scheo-ep-title);
  background: #ffffff;
  border: 1px solid #94a3b8;
  border-radius: 10px;
}
.scheo-ep__in:focus {
  outline: 2px solid var(--scheo-ep-accent);
  outline-offset: 1px;
  border-color: var(--scheo-ep-accent);
}
.scheo-ep__cons {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--scheo-ep-muted);
}
.scheo-ep__cons input { margin-top: 3px; width: 18px; height: 18px; flex: 0 0 auto; }
.scheo-ep__err {
  margin: 0 0 12px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #fef2f2;
  color: #991b1b;
  font-size: 14px;
}

.scheo-ep__cta {
  display: block;
  width: 100%;
  box-sizing: border-box;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 10px;
  background: var(--scheo-ep-accent);
  color: var(--scheo-ep-accent-text);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
.scheo-ep__cta:hover { filter: brightness(.92); color: var(--scheo-ep-accent-text); }
.scheo-ep__cta[disabled] { opacity: .6; cursor: progress; }

.scheo-ep__no {
  display: block;
  width: 100%;
  min-height: 44px;
  margin: 10px 0 0;
  padding: 10px;
  border: 0;
  background: none;
  color: var(--scheo-ep-muted);
  font-size: 14px;
  text-decoration: underline;
  cursor: pointer;
}
.scheo-ep__no:hover { color: var(--scheo-ep-title); }

/* mobil: also lap (bottom sheet), hogy hüvelykujjal elerheto legyen */
@media (max-width: 600px) {
  .scheo-ep { align-items: flex-end; padding: 0; }
  .scheo-ep__box {
    max-width: none;
    max-height: 92vh;
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
  }
  .scheo-ep__media img { border-radius: 20px 20px 0 0; }
  .scheo-ep__body { padding: 24px 20px calc(22px + env(safe-area-inset-bottom, 0px)); }
  .scheo-ep__title { font-size: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .scheo-ep__box, .scheo-ep__ov { transition: none; }
}
