/* ÜresÓra CSS split: Auth, registration, provider onboarding, admin/auth surfaces. Source: app.css lines 15792-18175. */
/* ═════════════════════════════════════════════════════════════════════════
   AUTH OLDALAK — Belépés, Regisztráció
   Bold, atmospheric design — narancs (user) ↔ zöld (provider) színváltás
   ═════════════════════════════════════════════════════════════════════════ */

.auth-page {
    position: relative;
    min-height: 100vh;
    background: #07090d;
    color: #fff;
    padding: 60px 20px 80px;
    isolation: isolate;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Subtle grain texture for atmospheric depth (skill: backgrounds & visual details) */
.auth-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.015) 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
}

/* Animated glow blobs — dynamic color based on active tab */
.auth-glow {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.auth-glow-1, .auth-glow-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.45;
    will-change: transform, opacity;
    transition: background 800ms cubic-bezier(0.16, 1, 0.3, 1);
}
.auth-glow-1 {
    top: 10%; left: 10%;
    width: 480px; height: 480px;
    animation: auth-blob-1 22s ease-in-out infinite;
}
.auth-glow-2 {
    bottom: 5%; right: 5%;
    width: 420px; height: 420px;
    animation: auth-blob-2 26s ease-in-out infinite;
}
/* Default state: user tab → orange */
.auth-page[data-active-tab="user"] .auth-glow-1 {
    background: radial-gradient(circle, #ff6a00 0%, transparent 70%);
}
.auth-page[data-active-tab="user"] .auth-glow-2 {
    background: radial-gradient(circle, #ff8a3d 0%, transparent 70%);
}
.auth-page[data-active-tab="provider"] .auth-glow-1 {
    background: radial-gradient(circle, #10b981 0%, transparent 70%);
}
.auth-page[data-active-tab="provider"] .auth-glow-2 {
    background: radial-gradient(circle, #2bd4a4 0%, transparent 70%);
}
@keyframes auth-blob-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(80px, -60px) scale(1.1); }
    66%      { transform: translate(-50px, 40px) scale(0.95); }
}
@keyframes auth-blob-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(-70px, 50px) scale(1.12); }
}

.auth-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
}

/* ─── CARD ─────────────────────────────────────────────────────── */
.auth-card {
    background: rgba(18, 21, 28, 0.85);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 32px;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.02) inset,
        0 1px 0 rgba(255, 255, 255, 0.05) inset;
    position: relative;
    overflow: hidden;
    transition: box-shadow 600ms;
}

/* Glow ring around card matching active tab */
.auth-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, transparent 30%, var(--auth-accent-glow, rgba(255, 106, 0, 0.4)) 50%, transparent 70%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
    transition: background 500ms;
}
.auth-page[data-active-tab="user"] .auth-card {
    --auth-accent-glow: rgba(255, 106, 0, 0.4);
}
.auth-page[data-active-tab="provider"] .auth-card {
    --auth-accent-glow: rgba(16, 185, 129, 0.4);
}

.auth-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.auth-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.01em;
}
.auth-logo-icon {
    color: var(--auth-accent, #ff6a00);
    transition: color 500ms;
}
.auth-page[data-active-tab="user"] .auth-logo-icon { color: #ff6a00; }
.auth-page[data-active-tab="provider"] .auth-logo-icon { color: #10b981; }

.auth-close {
    width: 36px; height: 36px;
    display: grid; place-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    color: #aab1bb;
    text-decoration: none;
    transition: all 200ms;
}
.auth-close:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

/* ─── TABS ──────────────────────────────────────────────────────── */
.auth-tabs {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 32px;
    overflow: hidden;
}
.auth-tab {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 12.5px;
    font-weight: 700;
    color: #6a7180;
    transition: color 280ms;
    border-radius: 9px;
}
.auth-tab.is-active { color: #fff; }
.auth-tab-user.is-active { color: #ff6a00; }
.auth-tab-provider.is-active { color: #10b981; }
.auth-tab svg { transition: transform 280ms; }
.auth-tab.is-active svg { transform: scale(1.05); }
.auth-tab:hover:not(.is-active) { color: #aab1bb; }

.auth-tab-indicator {
    position: absolute;
    top: 4px; left: 0;
    height: calc(100% - 8px);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 9px;
    transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), background 420ms;
    z-index: 0;
}
.auth-page[data-active-tab="user"] .auth-tab-indicator {
    background: rgba(255, 106, 0, 0.12);
    box-shadow: inset 0 0 0 1px rgba(255, 106, 0, 0.20);
}
.auth-page[data-active-tab="provider"] .auth-tab-indicator {
    background: rgba(16, 185, 129, 0.12);
    box-shadow: inset 0 0 0 1px rgba(16, 185, 129, 0.20);
}

/* ─── PANELS ────────────────────────────────────────────────────── */
.auth-panel {
    display: none;
    animation: auth-panel-in 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
.auth-panel.is-active { display: block; }
@keyframes auth-panel-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.auth-panel-head {
    text-align: center;
    margin-bottom: 28px;
}
.auth-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.10em;
    margin-bottom: 14px;
}
.auth-badge-green {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #10b981;
}
.auth-title {
    margin: 0 0 8px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: #fff;
}
.auth-accent-orange { color: #ff6a00; }
.auth-accent-green { color: #10b981; }
.auth-sub {
    margin: 0;
    font-size: 13.5px;
    color: #aab1bb;
    line-height: 1.5;
}

/* ─── FORM ──────────────────────────────────────────────────────── */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.auth-field { display: flex; flex-direction: column; gap: 6px; }
.auth-field label {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}
.auth-field-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.auth-forgot {
    font-size: 11.5px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 200ms;
}
.auth-forgot:hover { opacity: 0.75; }

.auth-input {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 11px;
    padding: 0 12px;
    transition: all 240ms;
}
.auth-input:focus-within {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--auth-accent, #ff6a00);
    box-shadow: 0 0 0 4px var(--auth-accent-soft, rgba(255, 106, 0, 0.10));
}
.auth-page[data-active-tab="user"] .auth-input { --auth-accent: #ff6a00; --auth-accent-soft: rgba(255, 106, 0, 0.10); }
.auth-page[data-active-tab="provider"] .auth-input { --auth-accent: #10b981; --auth-accent-soft: rgba(16, 185, 129, 0.10); }

.auth-input-icon, .auth-input-icon-right {
    color: #6a7180;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    transition: color 240ms;
}
.auth-input:focus-within .auth-input-icon,
.auth-input:focus-within .auth-input-icon-right {
    color: var(--auth-accent, #ff6a00);
}
.auth-input input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 14px;
    padding: 14px 10px;
    font-family: inherit;
}
.auth-input input::placeholder { color: #5a6370; }
.auth-input-toggle {
    background: transparent;
    border: none;
    color: #6a7180;
    cursor: pointer;
    padding: 4px;
    display: grid;
    place-items: center;
    transition: color 240ms;
}
.auth-input-toggle:hover { color: var(--auth-accent, #ff6a00); }

/* Row between (checkbox + forgot) */
.auth-row-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.auth-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}
.auth-checkbox input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.auth-checkbox-box {
    width: 18px; height: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 5px;
    position: relative;
    transition: all 200ms;
    flex-shrink: 0;
}
.auth-checkbox input:checked + .auth-checkbox-box {
    background: var(--auth-accent, #ff6a00);
    border-color: var(--auth-accent, #ff6a00);
}
.auth-checkbox input:checked + .auth-checkbox-box::after {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -55%) rotate(45deg);
    width: 5px; height: 9px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
}
.auth-page[data-active-tab="user"] .auth-checkbox { --auth-accent: #ff6a00; }
.auth-page[data-active-tab="provider"] .auth-checkbox { --auth-accent: #10b981; }
.auth-checkbox-label {
    font-size: 12.5px;
    color: #aab1bb;
}

/* ─── BUTTONS ───────────────────────────────────────────────────── */
.auth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 15px 24px;
    border: none;
    border-radius: 12px;
    font-size: 14.5px;
    font-weight: 800;
    color: #fff;
    cursor: pointer;
    transition: all 240ms cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    margin-top: 6px;
}
.auth-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.20) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 240ms;
}
.auth-btn:hover::after { opacity: 1; }
.auth-btn:hover { transform: translateY(-2px); }
.auth-btn:active { transform: translateY(0); }

.auth-btn-orange {
    background: linear-gradient(135deg, #ff6a00 0%, #ff8a3d 100%);
    box-shadow:
        0 10px 28px rgba(255, 106, 0, 0.40),
        0 0 0 1px rgba(255, 138, 61, 0.30) inset;
}
.auth-btn-orange:hover {
    box-shadow:
        0 16px 36px rgba(255, 106, 0, 0.55),
        0 0 0 1px rgba(255, 138, 61, 0.40) inset;
}
.auth-btn-green {
    background: linear-gradient(135deg, #10b981 0%, #2bd4a4 100%);
    box-shadow:
        0 10px 28px rgba(16, 185, 129, 0.40),
        0 0 0 1px rgba(43, 212, 164, 0.30) inset;
}
.auth-btn-green:hover {
    box-shadow:
        0 16px 36px rgba(16, 185, 129, 0.55),
        0 0 0 1px rgba(43, 212, 164, 0.40) inset;
}

/* ─── DIVIDER ───────────────────────────────────────────────────── */
.auth-divider {
    position: relative;
    text-align: center;
    margin: 22px 0 18px;
}
.auth-divider::before {
    content: "";
    position: absolute;
    top: 50%; left: 0; right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
}
.auth-divider span {
    position: relative;
    display: inline-block;
    padding: 0 14px;
    background: rgba(18, 21, 28, 1);
    font-size: 11.5px;
    color: #6a7180;
    letter-spacing: 0.04em;
}

/* ─── SOCIAL ────────────────────────────────────────────────────── */
.auth-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.auth-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 13px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 11px;
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 240ms;
}
.auth-social-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
}
.auth-social-btn svg { flex-shrink: 0; }

/* ─── FOOT ──────────────────────────────────────────────────────── */
.auth-foot {
    text-align: center;
    margin-top: 24px;
    font-size: 13px;
    color: #aab1bb;
}
.auth-foot a {
    text-decoration: none;
    font-weight: 700;
    margin-left: 4px;
}
.auth-foot a:hover { text-decoration: underline; }


/* ─── MOBIL ─────────────────────────────────────────────────────── */
@media (max-width: 600px) {
    .auth-page { padding: 32px 16px 60px; }
    .auth-card { padding: 24px 20px; border-radius: 20px; }
    .auth-tabs { grid-template-columns: 1fr; gap: 4px; }
    .auth-tab { padding: 10px 14px; font-size: 11.5px; }
    .auth-tab-indicator { display: none; }
    .auth-tab.is-active { background: rgba(255, 106, 0, 0.10); }
    .auth-page[data-active-tab="provider"] .auth-tab-provider.is-active {
        background: rgba(16, 185, 129, 0.10);
    }
    .auth-title { font-size: 26px; }
    .auth-glow-1, .auth-glow-2 { opacity: 0.25; }
    .auth-row-between { flex-direction: column; align-items: flex-start; gap: 10px; }
}


/* ═════════════════════════════════════════════════════════════════════════
   REGISZTRÁCIÓS OLDALAK + Szolgáltatói reg (extra CSS)
   ═════════════════════════════════════════════════════════════════════════ */

/* Auth field hint (jelszó követelmények) */
.auth-field-hint {
    font-size: 11.5px;
    color: #6a7180;
    margin-top: 2px;
}

/* Checkbox row variant (label-en belül több sor) */
.auth-checkbox-row {
    align-items: flex-start;
    line-height: 1.5;
}
.auth-checkbox-row .auth-checkbox-box {
    margin-top: 1px;
}
.auth-checkbox-label a { text-decoration: underline; font-weight: 700; }

/* Auth social light variant (fehér háttér) */
.auth-social-btn-light {
    background: #fff;
    border-color: rgba(0, 0, 0, 0);
    color: #14171f;
}
.auth-social-btn-light:hover {
    background: #f5f0e8;
    border-color: rgba(0, 0, 0, 0);
}


/* ═════════════════════════════════════════════════════════════════════════
   SZOLGÁLTATÓI REGISZTRÁCIÓ — 2 oszlopos large layout
   ═════════════════════════════════════════════════════════════════════════ */
.prov-reg {
    position: relative;
    background: #07090d;
    color: #fff;
    padding: 28px 0 64px;
    min-height: 100vh;
    isolation: isolate;
    overflow: hidden;
}
.prov-reg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.015) 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
}
.prov-reg .container { position: relative; z-index: 1; }

/* Felső header sor */
.prov-reg-top {
    max-width: 1200px;
    margin: 0 auto 36px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
.prov-reg-top-right {
    display: flex;
    align-items: center;
    gap: 14px;
}
.prov-reg-top-right span {
    font-size: 13px;
    color: #aab1bb;
}
.prov-reg-login-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 11px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 200ms;
}
.prov-reg-login-btn:hover {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.30);
}

/* Grid layout */
.prov-reg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 32px;
}
.prov-reg-form-col,
.prov-reg-visual-col {
    padding: 40px;
    background: #0c0e13;
    min-width: 0;
}
.prov-reg-visual-col {
    background: linear-gradient(135deg, #0c1410 0%, #0a1f18 60%, #07090d 100%);
    position: relative;
    overflow: hidden;
}

.prov-reg-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    background: rgba(16, 185, 129, 0.10);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #10b981;
    margin-bottom: 16px;
}
.prov-reg-eyebrow-tight {
    background: rgba(16, 185, 129, 0.08);
    margin-bottom: 12px;
}

.prov-reg-title {
    margin: 0 0 12px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(26px, 2.8vw, 38px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.12;
    color: #fff;
}
.prov-reg-sub {
    margin: 0 0 28px;
    font-size: 14px;
    color: #aab1bb;
    line-height: 1.5;
}

/* 3-step progress */
.prov-reg-steps {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
}
.prov-reg-step {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.prov-reg-step-num {
    width: 28px; height: 28px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: grid; place-items: center;
    font-size: 12.5px;
    font-weight: 800;
    color: #6a7180;
    transition: all 240ms;
}
.prov-reg-step.is-active .prov-reg-step-num {
    background: #10b981;
    color: #fff;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.20),
                0 0 14px rgba(16, 185, 129, 0.40);
}
.prov-reg-step-label {
    font-size: 12.5px;
    font-weight: 700;
    color: #6a7180;
    transition: color 240ms;
}
.prov-reg-step.is-active .prov-reg-step-label { color: #fff; }
.prov-reg-step-line {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
}

/* Form override — provider tab színek alapból */
.prov-reg .auth-input {
    --auth-accent: #10b981;
    --auth-accent-soft: rgba(16, 185, 129, 0.10);
    background: rgba(255, 255, 255, 0.04);
}
.prov-reg .auth-checkbox { --auth-accent: #10b981; }
.prov-reg-form { gap: 16px; }

/* Telefonszám: country code + input */
.prov-reg-phone {
    display: flex;
    gap: 8px;
}
.prov-reg-country {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 11px;
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 200ms;
}
.prov-reg-country:hover {
    background: rgba(255, 255, 255, 0.06);
}
.prov-reg-country svg { color: #6a7180; }
.prov-reg-phone-input { flex: 1; }

/* Security note */
.prov-reg-security {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    padding: 14px 16px;
    background: rgba(16, 185, 129, 0.04);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 12px;
}
.prov-reg-security-icon {
    width: 36px; height: 36px;
    background: rgba(16, 185, 129, 0.12);
    border-radius: 10px;
    display: grid; place-items: center;
    flex-shrink: 0;
}
.prov-reg-security b {
    display: block;
    font-size: 13px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 2px;
}
.prov-reg-security span {
    font-size: 11.5px;
    color: #aab1bb;
}

/* ─── JOBB OSZLOP: benefits + phone mockup ──────────────── */
.prov-reg-shop-icon {
    width: 48px; height: 48px;
    background: rgba(16, 185, 129, 0.10);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 14px;
    display: grid; place-items: center;
    margin-bottom: 20px;
}
.prov-reg-visual-title {
    margin: 0 0 28px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #fff;
}

.prov-reg-benefits {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 32px;
}
.prov-reg-benefit {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.prov-reg-benefit-icon {
    width: 44px; height: 44px;
    background: rgba(16, 185, 129, 0.10);
    border: 1px solid rgba(16, 185, 129, 0.20);
    border-radius: 12px;
    display: grid; place-items: center;
    flex-shrink: 0;
}
.prov-reg-benefit b {
    display: block;
    font-size: 15px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 4px;
}
.prov-reg-benefit span {
    font-size: 13px;
    color: #aab1bb;
    line-height: 1.55;
}

/* Telefon mockup */
.prov-reg-phone-visual {
    position: relative;
    width: 280px;
    margin: 12px auto 0;
}
.prov-reg-phone-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at 50% 60%, rgba(16, 185, 129, 0.35) 0%, transparent 65%);
    filter: blur(40px);
    z-index: 0;
}
.prov-reg-phone-frame {
    position: relative;
    z-index: 1;
    background: #14171f;
    border: 2px solid rgba(16, 185, 129, 0.20);
    border-radius: 36px;
    padding: 12px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(16, 185, 129, 0.18);
}
.prov-reg-phone-notch {
    width: 80px; height: 14px;
    background: #07090d;
    border-radius: 0 0 12px 12px;
    margin: 0 auto 6px;
}
.prov-reg-phone-screen {
    background: #07090d;
    border-radius: 24px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.prov-reg-phone-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.prov-reg-phone-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #10b981;
    font-size: 12px;
    font-weight: 800;
}
.prov-reg-phone-period {
    font-size: 10.5px;
    color: #aab1bb;
    padding: 3px 10px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 999px;
}

.prov-reg-phone-revenue {
    padding: 14px;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.18);
    border-radius: 12px;
}
.prov-reg-phone-label {
    display: block;
    font-size: 10.5px;
    color: #6a7180;
    margin-bottom: 4px;
}
.prov-reg-phone-revenue b {
    display: block;
    font-size: 22px;
    color: #fff;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}
.prov-reg-phone-revenue i {
    display: block;
    font-style: normal;
    font-size: 10.5px;
    font-weight: 700;
    margin-bottom: 8px;
}
.prov-reg-phone-chart {
    width: 100%;
    height: 50px;
    display: block;
}

.prov-reg-phone-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.prov-reg-phone-stat {
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    text-align: left;
}
.prov-reg-phone-stat > span {
    display: block;
    font-size: 9.5px;
    color: #6a7180;
    margin-bottom: 4px;
}
.prov-reg-phone-stat b {
    display: block;
    font-size: 18px;
    color: #fff;
    font-weight: 800;
    line-height: 1;
}
.prov-reg-phone-stat i {
    font-size: 10px;
    font-style: normal;
}

.prov-reg-phone-booking {
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}
.prov-reg-phone-booking-card {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}
.prov-reg-phone-booking-card img {
    width: 32px; height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
}
.prov-reg-phone-booking-card > div { flex: 1; min-width: 0; }
.prov-reg-phone-booking-card b {
    display: block;
    font-size: 12px;
    color: #fff;
    font-weight: 700;
}
.prov-reg-phone-booking-card span {
    font-size: 10.5px;
    color: #aab1bb;
}

.prov-reg-phone-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.prov-reg-phone-nav span {
    text-align: center;
    font-size: 9px;
    color: #5a6370;
    padding: 4px 2px;
}
.prov-reg-phone-nav span.is-active {
    color: #10b981;
    font-weight: 700;
}

/* Floating cards a telefon körül */
.prov-reg-float {
    position: absolute;
    z-index: 5;
    background: #14171f;
    border: 1px solid rgba(16, 185, 129, 0.18);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 10px 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
    animation: prov-reg-float 4s ease-in-out infinite;
}
.prov-reg-float-1 {
    top: 280px; left: -140px;
    width: 180px;
    animation-delay: 0s;
}
.prov-reg-float-2 {
    top: 130px; right: -120px;
    width: 180px;
    animation-delay: 1s;
}
.prov-reg-float-3 {
    bottom: 80px; right: -120px;
    width: 140px;
    animation-delay: 2s;
}
@keyframes prov-reg-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}
.prov-reg-float-icon {
    width: 30px; height: 30px;
    background: rgba(16, 185, 129, 0.12);
    border-radius: 8px;
    display: grid; place-items: center;
    flex-shrink: 0;
}
.prov-reg-float-icon-bell {
    background: #10b981;
}
.prov-reg-float-icon-bell svg { stroke: #fff !important; }
.prov-reg-float > div { flex: 1; min-width: 0; }
.prov-reg-float b {
    display: block;
    font-size: 12.5px;
    color: #fff;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2px;
}
.prov-reg-float span {
    display: block;
    font-size: 10.5px;
    color: #aab1bb;
    line-height: 1.35;
}
.prov-reg-float i {
    display: block;
    font-size: 9.5px;
    color: #6a7180;
    font-style: normal;
    margin-top: 2px;
}

/* Trust bar alul */
.prov-reg-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
}
.prov-reg-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.prov-reg-trust-icon {
    width: 40px; height: 40px;
    background: rgba(16, 185, 129, 0.10);
    border-radius: 50%;
    display: grid; place-items: center;
    flex-shrink: 0;
}
.prov-reg-trust-item b {
    display: block;
    font-size: 13.5px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2px;
}
.prov-reg-trust-item span {
    font-size: 11.5px;
    color: #aab1bb;
    line-height: 1.4;
}


/* ─── Mobil ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .prov-reg-grid { grid-template-columns: 1fr; }
    .prov-reg-form-col,
    .prov-reg-visual-col { padding: 32px 24px; }
    .prov-reg-float-1 { left: -10px; top: 290px; }
    .prov-reg-float-2 { right: -10px; }
    .prov-reg-float-3 { right: -10px; }
    .prov-reg-trust { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .prov-reg { padding: 20px 0 40px; }
    .prov-reg-top { padding: 0 16px; margin-bottom: 24px; }
    .prov-reg-form-col,
    .prov-reg-visual-col { padding: 24px 18px; }
    .prov-reg-steps { padding: 12px 14px; flex-wrap: wrap; gap: 10px; }
    .prov-reg-step-label { font-size: 11px; }
    .prov-reg-float { display: none; }
    .prov-reg-phone-visual { width: 240px; }
}

@media (max-width: 480px) {
    .prov-reg-grid { border-radius: 18px; }
    .prov-reg-form-col,
    .prov-reg-visual-col { padding: 22px 16px; }
    .prov-reg-title { font-size: 24px; }
    .prov-reg-visual-title { font-size: 26px; }
    .prov-reg-trust { grid-template-columns: 1fr; gap: 12px; padding: 18px; }
    .prov-reg-top-right span { display: none; }
}


/* ═════════════════════════════════════════════════════════════════════════
   AUTH JAVÍTÁSOK — Modal popup-rendszer, font normalizálás, multi-step
   ═════════════════════════════════════════════════════════════════════════ */

/* Töröljük a Playfair Display-t az auth oldalakon — a globális inherit fontot használjuk */
.auth-page .auth-title,
.auth-page .auth-logo,
.prov-reg-title,
.prov-reg-visual-title {
    font-family: inherit;
}

/* Logo színt visszaállítjuk: globális, NEM custom — a header.php logo van használatban a popup-on
   A standalone auth oldalakon (legacy belepes/regisztracio.php) most már redirect történik. */


/* ═════════════════════════════════════════════════════════════════════════
   MODAL POPUP (auth-modal) — Új design a screenshot referencia alapján
   Dynamic narancs ↔ zöld theme váltás
   ═════════════════════════════════════════════════════════════════════════ */

/* Color theming az aktív tab szerint */
.auth-modal[data-active-tab="guest"] {
    --am-accent: #ff6a00;
    --am-accent-soft: rgba(255, 106, 0, 0.10);
    --am-accent-glow: rgba(255, 106, 0, 0.35);
    --am-accent-grad: linear-gradient(135deg, #ff6a00 0%, #ff8a3d 100%);
    --am-accent-shadow: 0 10px 28px rgba(255, 106, 0, 0.40);
    --am-accent-shadow-hover: 0 16px 36px rgba(255, 106, 0, 0.55);
}
.auth-modal[data-active-tab="provider"] {
    --am-accent: #10b981;
    --am-accent-soft: rgba(16, 185, 129, 0.10);
    --am-accent-glow: rgba(16, 185, 129, 0.35);
    --am-accent-grad: linear-gradient(135deg, #10b981 0%, #2bd4a4 100%);
    --am-accent-shadow: 0 10px 28px rgba(16, 185, 129, 0.40);
    --am-accent-shadow-hover: 0 16px 36px rgba(16, 185, 129, 0.55);
}

/* Animált háttér glow blob a sheet mögött */
.auth-modal-glow {
    position: absolute;
    top: 20%; left: 50%;
    transform: translateX(-50%);
    width: 80%; height: 60%;
    background: radial-gradient(circle, var(--am-accent-glow, rgba(255, 106, 0, 0.35)) 0%, transparent 70%);
    filter: blur(80px);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
    transition: background 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
.auth-modal-sheet > *:not(.auth-modal-glow) {
    position: relative;
    z-index: 1;
}

/* Accent shortcuts */
.am-accent {
    color: var(--am-accent, #ff6a00);
    transition: color 400ms;
}
.am-accent-green { color: #10b981; }
.auth-modal .auth-modal-head h2 .am-accent,
.auth-modal .am-accent {
    color: var(--am-accent, #ff6a00);
}

/* Tab indicator (sliding) */
.auth-tabs {
    position: relative;
    overflow: hidden;
}
.auth-tab-indicator {
    position: absolute;
    top: 4px;
    bottom: 4px;
    width: calc(50% - 4px);
    left: 4px;
    background: var(--am-accent-soft, rgba(255, 106, 0, 0.12));
    border: 1px solid var(--am-accent-soft, rgba(255, 106, 0, 0.20));
    border-radius: 9px;
    z-index: 0;
    transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), background 400ms, border-color 400ms;
}
.auth-modal[data-active-tab="provider"] .auth-tab-indicator {
    transform: translateX(calc(100% + 4px));
}
.auth-tab {
    position: relative;
    z-index: 1;
    transition: color 280ms;
}
.auth-modal[data-active-tab="guest"] .auth-tab.active { color: #ff6a00; }
.auth-modal[data-active-tab="provider"] .auth-tab.active { color: #10b981; }

/* Center variant (no tabs) */
.am-head-center { text-align: center; }

/* Provider badge */
.am-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.10em;
    color: #10b981;
    margin-bottom: 12px;
}

/* Inputs */
.am-input {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 11px;
    padding: 0 12px;
    transition: all 240ms;
}
.am-input:focus-within {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--am-accent, #ff6a00);
    box-shadow: 0 0 0 4px var(--am-accent-soft, rgba(255, 106, 0, 0.10));
}
.am-input-icon {
    color: #6a7180;
    flex-shrink: 0;
    transition: color 240ms;
}
.am-input:focus-within .am-input-icon { color: var(--am-accent, #ff6a00); }
.am-input input,
.am-input select {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 14px;
    padding: 14px 10px;
    font-family: inherit;
}
.am-input input::placeholder { color: #5a6370; }
.am-input select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}
.am-input select option {
    background: #14171f;
    color: #fff;
}
.am-input-toggle {
    background: transparent;
    border: none;
    color: #6a7180;
    cursor: pointer;
    padding: 4px;
    display: grid; place-items: center;
    transition: color 240ms;
}
.am-input-toggle:hover { color: var(--am-accent, #ff6a00); }

.am-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}
.am-forgot {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--am-accent, #ff6a00);
    text-decoration: none;
    transition: opacity 200ms;
}
.am-forgot:hover { opacity: 0.75; }

.am-hint {
    display: block;
    font-size: 11.5px;
    color: #6a7180;
    margin-top: 4px;
}

/* Checkbox */
.am-checkbox {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    user-select: none;
    line-height: 1.4;
}
.am-checkbox-stacked { display: flex; }
.am-checkbox input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.am-checkbox-box {
    width: 18px; height: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 5px;
    position: relative;
    transition: all 200ms;
    flex-shrink: 0;
    margin-top: 1px;
}
.am-checkbox input:checked + .am-checkbox-box {
    background: var(--am-accent, #ff6a00);
    border-color: var(--am-accent, #ff6a00);
}
.am-checkbox input:checked + .am-checkbox-box::after {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -55%) rotate(45deg);
    width: 5px; height: 9px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
}
.am-checkbox-label {
    font-size: 12.5px;
    color: #aab1bb;
}
.am-checkbox-label a { color: var(--am-accent, #ff6a00); }

.am-row-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

/* Buttons */
.am-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    border: none;
    border-radius: 12px;
    font-size: 14.5px;
    font-weight: 800;
    color: #fff;
    cursor: pointer;
    transition: all 240ms cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    font-family: inherit;
}
.am-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.20) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 240ms;
}
.am-btn:hover::after { opacity: 1; }
.am-btn:hover { transform: translateY(-2px); }
.am-btn:active { transform: translateY(0); }
.am-btn-primary {
    background: var(--am-accent-grad, linear-gradient(135deg, #ff6a00 0%, #ff8a3d 100%));
    box-shadow: var(--am-accent-shadow, 0 10px 28px rgba(255, 106, 0, 0.40));
}
.am-btn-primary:hover {
    box-shadow: var(--am-accent-shadow-hover, 0 16px 36px rgba(255, 106, 0, 0.55));
}

/* Social button */
.am-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 11px;
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 240ms;
    font-family: inherit;
    margin-top: 8px;
}
.am-social-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
}

.am-foot {
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
    color: #aab1bb;
}
.am-text-link {
    display: inline;
    background: transparent;
    border: none;
    padding: 0;
    font-size: inherit;
    font-weight: 700;
    cursor: pointer;
    margin-left: 4px;
    font-family: inherit;
    text-decoration: none;
}
.am-text-link:hover { text-decoration: underline; }

.am-provider-link {
    text-align: center;
    margin: 18px 0 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 12.5px;
    color: #6a7180;
}

/* hCaptcha alignment */
.am-captcha,
.prov-reg-captcha {
    display: flex;
    justify-content: center;
    margin: 6px 0 4px;
}


/* ═════════════════════════════════════════════════════════════════════════
   PROVIDER REGISZTRÁCIÓ — Multi-step pane-ek + extra javítások
   ═════════════════════════════════════════════════════════════════════════ */

/* Steps progress — is-done állapot */
.prov-reg-step.is-done .prov-reg-step-num {
    background: rgba(16, 185, 129, 0.20);
    color: #10b981;
    border: 1.5px solid #10b981;
}
.prov-reg-step.is-done .prov-reg-step-label {
    color: #aab1bb;
}
.prov-reg-step-line.is-done {
    background: linear-gradient(90deg, #10b981, rgba(16, 185, 129, 0.40));
}

/* Pane-ek */
.prov-reg-pane {
    display: none;
    animation: prov-reg-pane-in 400ms cubic-bezier(0.16, 1, 0.3, 1);
}
.prov-reg-pane.is-active {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@keyframes prov-reg-pane-in {
    from { opacity: 0; transform: translateX(12px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Két oszlopos row (irányítószám + város) */
.prov-reg-row {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 10px;
}

/* Ghost button + Vissza */
.auth-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    font-size: 14.5px;
    font-weight: 700;
    color: #aab1bb;
    background: transparent;
    cursor: pointer;
    transition: all 200ms;
    font-family: inherit;
}
.auth-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.18);
}

.prov-reg-nav {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 10px;
    margin-top: 4px;
}

/* Error message */
.prov-reg-error {
    display: block;
    color: #ff5a4d;
    font-size: 12.5px;
    line-height: 1.4;
    min-height: 18px;
    margin-top: -4px;
}
.prov-reg-error:empty { display: none; }

/* Summary on step 3 */
.prov-reg-summary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 4px;
}
.prov-reg-summary h3 {
    margin: 0 0 14px;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
}
.prov-reg-summary-block {
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.prov-reg-summary-block:first-of-type { border-top: none; padding-top: 0; }
.prov-reg-summary-block > b {
    display: block;
    font-size: 11px;
    color: #10b981;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.prov-reg-summary dl {
    margin: 0;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 6px 12px;
}
.prov-reg-summary dt {
    font-size: 12px;
    color: #6a7180;
}
.prov-reg-summary dd {
    margin: 0;
    font-size: 13px;
    color: #fff;
    font-weight: 600;
    word-break: break-word;
}

/* hCaptcha dark theme integráció */
.prov-reg-captcha iframe,
.am-captcha iframe {
    border-radius: 8px;
}

/* Select arrow icon hide native */
.prov-reg select::-ms-expand { display: none; }


/* ─── Mobile (multi-step) ─────────────────────────────── */
@media (max-width: 600px) {
    .prov-reg-row { grid-template-columns: 100px 1fr; }
    .prov-reg-nav { grid-template-columns: 1fr; }
    .prov-reg-summary dl { grid-template-columns: 90px 1fr; }
}


/* ═════════════════════════════════════════════════════════════════════════
   AUTH MODAL — Logo + Close gomb pozíció javítás
   ═════════════════════════════════════════════════════════════════════════ */

/* Modal logo blokk — felül, központban */
.auth-modal-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 4px 0 22px;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.01em;
}
.auth-modal-logo-icon {
    display: grid; place-items: center;
    width: 36px; height: 36px;
    color: var(--am-accent, #ff6a00);
    transition: color 500ms;
}
.auth-modal[data-active-tab="guest"] .auth-modal-logo-icon { color: #ff6a00; }
.auth-modal[data-active-tab="provider"] .auth-modal-logo-icon { color: #10b981; }
.auth-modal-logo-text { color: #fff; }

/* Close gomb pozíció — top: 16, right: 16 az auth-modal-sheet relatív parent-en */
.auth-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px; height: 36px;
    z-index: 10;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #aab1bb;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0;
}
.auth-modal-close:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
    transform: rotate(90deg);
}
.auth-modal-close svg { display: block; }


/* ═════════════════════════════════════════════════════════════════════════
   SZOLGÁLTATÓI REG — Logo + Google Places kereső
   ═════════════════════════════════════════════════════════════════════════ */

/* Provider reg logo (top sor) — match a modal stylenek */
.prov-reg-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.01em;
}
.prov-reg-logo svg {
    flex: 0 0 auto;
}
.prov-reg-logo svg [fill="#ff6a00"] {
    fill: #10b981;
}
.prov-reg-logo svg [stroke="#ff6a00"] {
    stroke: #10b981;
}
.prov-reg-logo .uo-logo-word {
    display: inline-flex;
    align-items: baseline;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
}
.prov-reg-logo .uo-logo-w1 { color: #fff; }
.prov-reg-logo .uo-logo-w2 { color: #10b981; }

/* Provider scroll fix: section wrappers must not trap vertical wheel/touch scroll. */
.page-provider .sz-hero,
.page-provider .sz-benefits,
.page-provider .sz-steps,
.page-provider .sz-admin,
.page-provider .sz-numbers,
.page-provider .sz-loyalty,
.page-provider .sz-final,
.page-provider .prov-reg {
    overflow-x: hidden;
    overflow-y: visible;
}

html:has(body.page-provider:not(.uo-search-active):not(.uo-drawer-active):not(.auth-modal-open)),
body.page-provider:not(.uo-search-active):not(.uo-drawer-active):not(.auth-modal-open) {
    height: auto !important;
    min-height: 0 !important;
    overflow-y: auto !important;
    touch-action: auto !important;
    overscroll-behavior-y: auto !important;
}

/* Google Places kereső blokk */
.prov-reg-places {
    background: rgba(16, 185, 129, 0.04);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 4px;
}
.prov-reg-places-head {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
}
.prov-reg-places-head-icon {
    width: 36px; height: 36px;
    background: rgba(16, 185, 129, 0.12);
    border-radius: 10px;
    display: grid; place-items: center;
    flex-shrink: 0;
}
.prov-reg-places-head > div:not(.prov-reg-places-head-icon) {
    flex: 1;
    min-width: 0;
}
.prov-reg-places-head b {
    display: block;
    font-size: 13.5px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 4px;
}
.prov-reg-places-head span {
    display: block;
    font-size: 11.5px;
    color: #aab1bb;
    line-height: 1.5;
}

.prov-reg-places-input {
    position: relative;
}
.prov-reg-places-clear {
    background: transparent;
    border: none;
    color: #6a7180;
    cursor: pointer;
    padding: 4px;
    display: grid; place-items: center;
    transition: color 200ms;
    flex-shrink: 0;
}
.prov-reg-places-clear:hover { color: #10b981; }
.prov-reg-places-clear[hidden] { display: none; }

/* Kiválasztott Place blokk */
.prov-reg-places-selected {
    margin-top: 12px;
    padding: 14px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 12px;
    animation: prov-reg-pane-in 320ms cubic-bezier(0.16, 1, 0.3, 1);
}
.prov-reg-places-selected[hidden] { display: none; }
.prov-reg-places-selected-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.prov-reg-places-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: #10b981;
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.04em;
}
.prov-reg-places-change {
    background: transparent;
    border: none;
    color: #10b981;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    padding: 4px 8px;
    text-decoration: underline;
    font-family: inherit;
}
.prov-reg-places-card b {
    display: block;
    font-size: 15px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 4px;
}
.prov-reg-places-card span {
    display: block;
    font-size: 12px;
    color: #d0d5dd;
    line-height: 1.45;
    margin-bottom: 10px;
}
.prov-reg-places-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    padding-top: 8px;
    border-top: 1px solid rgba(16, 185, 129, 0.15);
}
.prov-reg-places-meta > span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11.5px;
    color: #aab1bb;
}
.prov-reg-places-meta > span[hidden] { display: none; }
.prov-reg-places-rating i {
    color: #fff;
    font-weight: 800;
    font-style: normal;
}
.prov-reg-places-rating em {
    color: #6a7180;
    font-style: normal;
}
.prov-reg-places-phone i {
    color: #fff;
    font-style: normal;
}

/* Google Places autocomplete dropdown (Google saját stílusát override-oljuk dark themer-re) */
.pac-container {
    background: #14171f !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    border-radius: 12px !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5) !important;
    margin-top: 4px !important;
    font-family: inherit !important;
    overflow: hidden;
}
.pac-item {
    background: transparent !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    color: #d0d5dd !important;
    padding: 10px 14px !important;
    font-size: 13px !important;
    cursor: pointer !important;
}
.pac-item:first-child { border-top: none !important; }
.pac-item:hover, .pac-item-selected {
    background: rgba(16, 185, 129, 0.08) !important;
}
.pac-item-query {
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 13.5px !important;
}
.pac-matched {
    color: #10b981 !important;
    font-weight: 800 !important;
}
.pac-icon {
    filter: invert(0.85) hue-rotate(120deg) saturate(0.5);
}
.pac-logo:after {
    background-color: transparent !important;
    opacity: 0.5;
}


/* ==========================================================================
   PRESERVED HEADER / AUTH MOTION OVERRIDES FROM CODEX SESSION
   ========================================================================== */

body.auth-modal-open,
body.filter-drawer-open {
    overflow: hidden !important;
    touch-action: none;
}

img,
svg,
video,
canvas {
    max-width: 100%;
}

.uo-header {
    transform: translate3d(0, 0, 0);
}

.uo-mobile-search-btn,
.uo-hamburger,
.uo-header-icon-btn,
.hero-search-submit,
.light-section-link {
    transition-property: background-color, border-color, color, box-shadow, opacity, transform;
    transition-duration: 180ms;
    transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

.uo-mobile-search-btn:active,
.uo-hamburger:active,
.uo-header-icon-btn:active,
.hero-search-submit:active,
.light-section-link:active {
    transform: scale(0.97);
}

@media (max-width: 1100px) {
    .uo-header {
        min-height: 58px;
    }

    .uo-header-inner {
        grid-template-columns: 42px minmax(0, 1fr) 42px !important;
        width: 100%;
        min-height: 58px;
        padding-top: 9px !important;
        padding-bottom: 9px !important;
    }

    .uo-mobile-search-btn,
    .uo-hamburger {
        display: inline-flex !important;
        width: 42px;
        height: 42px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.06);
        flex: 0 0 42px;
    }

    .uo-hamburger {
        padding: 11px;
        align-items: center;
    }

    .uo-hamburger span {
        height: 2px;
    }

    .uo-header-left {
        min-width: 0;
        justify-content: center !important;
    }

    .uo-logo {
        max-width: 100%;
        gap: 7px;
    }

    .uo-logo-word {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .uo-header-right,
    .uo-header-actions {
        min-width: 0;
        width: 42px;
        justify-content: flex-end !important;
    }

    body.uo-search-active > .uo-search-dropdown {
        top: 70px;
        left: 14px;
        right: 14px;
        width: auto;
        max-height: calc(100dvh - 88px);
        padding: 14px;
        border-radius: 16px;
        overscroll-behavior: contain;
    }

    body.uo-search-active > .uo-search-dropdown .uo-search-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 6px;
    }

    body.uo-search-active > .uo-search-dropdown .uo-search-divider {
        display: none;
    }

    body.uo-search-active > .uo-search-dropdown .uo-search-field {
        min-height: 58px;
        padding: 12px 14px;
        border-bottom: 1px solid #e8eaee;
    }

    body.uo-search-active > .uo-search-dropdown .uo-search-field:last-of-type {
        border-bottom: 0;
    }

    body.uo-search-active > .uo-search-dropdown .uo-search-submit {
        width: 100%;
        min-height: 50px;
        justify-content: center;
        margin: 8px 0 0;
    }

    .uo-drawer {
        width: min(360px, 90vw);
        max-width: 90vw;
        height: 100dvh;
        overflow: hidden;
    }

    .uo-drawer-scroll {
        min-height: 0;
        overflow-y: auto;
        overscroll-behavior: contain;
    }
}

@media (max-width: 768px) {
    .hero.hero-v2 {
        padding: 30px 0 44px;
        overflow: hidden;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
        min-height: 0;
        align-items: start;
    }

    .hero-left {
        order: 1;
        width: 100%;
        max-width: none;
        gap: 18px;
        align-items: stretch;
        text-align: left;
    }

    .hero-right {
        order: 2;
        width: min(280px, 76vw);
        max-width: min(280px, 76vw);
        margin: -4px auto 0;
    }

    .hero-img {
        max-width: 100%;
    }

    .hero-eyebrow-row {
        justify-content: flex-start;
        gap: 8px;
    }

    .hero-eyebrow-pill,
    .hero-eyebrow-counter {
        max-width: 100%;
    }

    .hero-eyebrow-pill {
        padding: 7px 11px;
        font-size: 10px;
        letter-spacing: 0.04em;
    }

    .hero-eyebrow-counter {
        padding: 7px 11px;
        font-size: 11px;
    }

    .hero-display {
        font-size: 34px;
        line-height: 1.06;
        letter-spacing: 0;
        text-wrap: balance;
    }

    .hero-lede {
        max-width: 36rem;
        font-size: 15px;
        line-height: 1.55;
    }

    .hero-search-card {
        width: 100%;
        padding: 7px;
        border-radius: 18px;
        overflow: hidden;
    }

    .hero-search-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 4px;
    }

    .hero-search-field {
        min-height: 58px;
        padding: 12px;
        border-left: 0 !important;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .hero-search-field:first-child {
        border-top: 0;
    }

    .hero-search-icon {
        width: 36px;
        height: 36px;
        border-radius: 11px;
    }

    .hero-search-field select {
        min-width: 0;
        font-size: 15px;
    }

    .hero-search-submit {
        min-height: 54px;
        margin-top: 5px;
        border-radius: 13px;
    }

    .hero-trust {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 9px;
        width: 100%;
    }

    .hero-trust-item {
        padding: 12px 13px;
        border-radius: 14px;
    }

    .scallop-divider {
        height: 34px;
        margin-top: -1px;
    }

    .light-section {
        padding-bottom: 48px;
    }

    .light-block {
        margin-bottom: 36px;
    }

    .light-section-head {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 14px;
        margin-bottom: 16px;
    }

    .light-h2 {
        font-size: 23px;
        line-height: 1.1;
        letter-spacing: 0;
    }

    .light-section-link {
        flex: 0 0 auto;
        min-height: 34px;
        padding: 0 10px;
        border-radius: 10px;
        background: #f4f5f7;
    }

    .light-cat-grid {
        display: flex !important;
        grid-template-columns: none !important;
        gap: 10px;
        margin-inline: calc(var(--container-pad, 20px) * -1);
        padding: 2px var(--container-pad, 20px) 14px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .light-cat-grid::-webkit-scrollbar {
        display: none;
    }

    .light-cat-card {
        flex: 0 0 112px;
        min-height: 106px;
        scroll-snap-align: start;
        padding: 15px 10px 13px;
        border-radius: 15px;
    }

    .light-cat-label {
        max-width: 100%;
        line-height: 1.2;
    }

    .light-offers-carousel {
        margin-inline: calc(var(--container-pad, 20px) * -1);
    }

    .light-offers-grid {
        gap: 12px;
        padding-inline: var(--container-pad, 20px);
        scroll-padding-inline: var(--container-pad, 20px);
    }

    .light-offer-card {
        flex: 0 0 min(82vw, 320px);
        scroll-snap-align: start;
        border-radius: 18px;
    }

    .light-offer-img {
        aspect-ratio: 4 / 3;
    }

    .light-offer-title {
        min-height: auto;
        font-size: 16px;
        line-height: 1.25;
    }
}

@media (max-width: 480px) {
    .uo-header-inner {
        grid-template-columns: 38px minmax(0, 1fr) 38px !important;
        gap: 7px;
        min-height: 56px;
    }

    .uo-mobile-search-btn,
    .uo-hamburger {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        border-radius: 13px;
    }

    .uo-hamburger {
        padding: 10px;
    }

    .uo-logo svg {
        width: 27px;
        height: 27px;
    }

    .uo-logo-word {
        font-size: 16px;
    }

    .hero.hero-v2 {
        padding-top: 24px;
        padding-bottom: 38px;
    }

    .hero-left {
        gap: 16px;
    }

    .hero-display {
        font-size: 30px;
    }

    .hero-lede {
        font-size: 14.5px;
    }

    .hero-right {
        width: min(248px, 72vw);
        max-width: min(248px, 72vw);
    }

    .hero-trust-text b {
        font-size: 13.5px;
    }

    .hero-trust-text span {
        font-size: 12px;
    }

    .light-section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .light-section-link {
        align-self: flex-start;
    }

    .light-cat-card {
        flex-basis: 104px;
        min-height: 100px;
    }

    .light-offer-card {
        flex-basis: min(86vw, 308px);
    }
}

@media (max-width: 360px) {
    .uo-header-inner {
        grid-template-columns: 34px minmax(0, 1fr) 34px !important;
        gap: 5px;
    }

    .uo-mobile-search-btn,
    .uo-hamburger {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .uo-logo-word {
        font-size: 15px;
    }

    .hero-display {
        font-size: 28px;
    }
}
