:root {
    --primary: #fd297b;
    --primary-dark: #d4225f;
    --gradient: linear-gradient(135deg, #fd297b 0%, #ff5864 50%, #ff655b 100%);
    --bg: #f7f7fb;
    --card: #ffffff;
    --text: #262626;
    --muted: #8a8a8f;
    --border: #ececec;
    --success: #2ecc71;
    --danger: #e74c3c;
    --radius: 14px;
}
* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
}
a { color: var(--primary); text-decoration: none; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 16px; }

/* NAV - tylko logo, wysrodkowane (nawigacja jest w dolnym pasku) */
.navbar {
    background: var(--gradient);
    padding: 14px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.navbar .container { display: flex; align-items: center; justify-content: center; }
.navbar .brand { color: #fff; font-weight: 800; font-size: 22px; letter-spacing: -0.5px; }
.navbar .brand span { opacity: 0.85; font-weight: 400; }

/* Pasek podgladu administratora */
.impersonate-bar {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
}
.impersonate-bar a { color: #d9a441; font-weight: 800; }

/* LAYOUT */
.page { padding: 36px 0 60px; }
.center-page { display: flex; align-items: center; justify-content: center; min-height: 80vh; padding: 20px; }

/* CARD / AUTH */
.auth-card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    padding: 36px;
    width: 100%;
    max-width: 420px;
}
.auth-card h1 { margin-top: 0; font-size: 24px; }
.auth-card p.sub { color: var(--muted); margin-top: -8px; margin-bottom: 24px; font-size: 14px; }

label { display: block; font-weight: 600; font-size: 13px; margin: 14px 0 6px; }
input[type=text], input[type=email], input[type=password], input[type=date], input[type=number], select, textarea {
    width: 100%;
    padding: 11px 13px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    background: #fcfcfd;
    transition: border-color .15s;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
}
textarea { resize: vertical; min-height: 80px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.btn {
    display: inline-block;
    background: var(--gradient);
    color: #fff !important;
    border: none;
    padding: 12px 22px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    transition: transform .1s, box-shadow .15s;
}
.btn:hover { box-shadow: 0 6px 18px rgba(253,41,123,0.35); transform: translateY(-1px); }
.btn-block { width: 100%; }
.btn-outline {
    background: #fff;
    color: var(--primary) !important;
    border: 1.5px solid var(--primary);
}
.btn-outline:hover { background: #fff5f8; box-shadow: none; }
.btn-small { padding: 7px 14px; font-size: 12px; border-radius: 18px; }
.btn-danger { background: var(--danger); }
.btn-success { background: var(--success); }
.btn-gray { background: #6c6c72; }

.link-muted { color: var(--muted); font-size: 13px; }

.alert {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 18px;
}
.alert-success { background: #e9fbf0; color: #1f8a4c; border: 1px solid #bdeed0; }
.alert-error { background: #fdeeee; color: #c0392b; border: 1px solid #f6cccc; }
.alert-info { background: #eef4fd; color: #2266bb; border: 1px solid #cfe3fb; }

/* PROFILE FORM */
.profile-grid { display: grid; grid-template-columns: 220px 1fr; gap: 32px; }
@media (max-width: 720px) { .profile-grid { grid-template-columns: 1fr; } }
.avatar-uploader { text-align: center; }
.avatar-circle {
    width: 180px; height: 180px; border-radius: 50%;
    background: var(--gradient);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 52px; font-weight: 800;
    margin: 0 auto 14px;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.avatar-circle img { width: 100%; height: 100%; object-fit: cover; }

/* PEOPLE GRID */
.filters {
    background: var(--card);
    border-radius: var(--radius);
    padding: 20px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    display: flex; gap: 24px; align-items: center; flex-wrap: wrap;
    margin-bottom: 26px;
}
.filters .field { display: flex; flex-direction: column; gap: 4px; }
.filters label { margin: 0; font-size: 12px; color: var(--muted); }
.filters select { width: auto; min-width: 160px; }
.range-wrap { display: flex; align-items: center; gap: 10px; }
.range-wrap input[type=range] { width: 220px; accent-color: var(--primary); }
.range-value { font-weight: 700; color: var(--primary); min-width: 60px; }

.people-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}
.person-card {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: transform .15s;
}
.person-card:hover { transform: translateY(-3px); }
.person-photo {
    height: 220px;
    background: var(--gradient);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 44px; font-weight: 800;
    position: relative;
    overflow: hidden;
}
.person-photo img { width: 100%; height: 100%; object-fit: cover; }
.person-info { padding: 14px 16px; }
.person-info .name { font-weight: 700; font-size: 16px; }
.person-info .meta { color: var(--muted); font-size: 13px; margin-top: 3px; }
.badge-distance {
    position: absolute; top: 10px; right: 10px;
    background: rgba(0,0,0,0.45); color: #fff;
    font-size: 11px; padding: 4px 9px; border-radius: 12px;
    font-weight: 600;
}
.empty-state {
    text-align: center; padding: 60px 20px; color: var(--muted);
}

/* SWIPE UI */
.swipe-stage {
    display: flex;
    justify-content: center;
    padding: 10px 0 26px;
}
.swipe-card {
    width: 100%;
    max-width: 380px;
    touch-action: none;
    cursor: grab;
    user-select: none;
}
.swipe-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 20px;
    overflow: hidden;
    background: var(--gradient);
    box-shadow: 0 14px 40px rgba(0,0,0,0.18);
}
.swipe-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.swipe-photo-fallback {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 72px; font-weight: 800;
}
.swipe-gradient {
    position: absolute; left: 0; right: 0; bottom: 0; height: 55%;
    background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0));
    pointer-events: none;
}
.swipe-info {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 22px 22px 26px;
    color: #fff;
}
.swipe-name { font-size: 26px; font-weight: 800; }
.swipe-meta { font-size: 14px; opacity: 0.9; margin-top: 2px; }
.swipe-bio { font-size: 13.5px; opacity: 0.85; margin-top: 10px; line-height: 1.4; }
.swipe-stamp {
    position: absolute; top: 26px;
    padding: 8px 18px;
    border: 4px solid;
    border-radius: 10px;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 1px;
    opacity: 0;
    pointer-events: none;
    z-index: 3;
}
.swipe-stamp-like { left: 24px; color: #2ecc71; border-color: #2ecc71; transform: rotate(-18deg); }
.swipe-stamp-pass { right: 24px; color: #ff4757; border-color: #ff4757; transform: rotate(18deg); }

.swipe-actions {
    display: flex;
    justify-content: center;
    gap: 26px;
    padding-bottom: 10px;
}
.btn-circle {
    width: 62px; height: 62px;
    border-radius: 50%;
    border: none;
    font-size: 26px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    transition: transform .1s;
}
.btn-circle:hover { transform: scale(1.06); }
.btn-circle-pass { background: #fff; color: #ff4757; border: 2px solid #ffd7db; }
.btn-circle-like { background: var(--gradient); color: #fff; }

/* DOLNY PASEK NAWIGACJI */
.bottom-nav {
    position: fixed; left: 0; right: 0; bottom: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-around;
    padding: 8px 4px calc(8px + env(safe-area-inset-bottom));
    z-index: 60;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.05);
}
.bottom-nav-spacer { height: 74px; }
.bn-item {
    display: flex; flex-direction: column; align-items: center; gap: 3px;
    color: #9a9aa3;
    text-decoration: none;
    font-size: 10.5px;
    font-weight: 700;
    padding: 4px 6px;
    position: relative;
    flex: 1;
    text-align: center;
}
.bn-item.active { color: var(--primary); }
.bn-badge {
    position: absolute; top: 0px; right: 18%;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    border-radius: 10px;
    padding: 1px 5px;
    min-width: 16px;
}

/* Zablurowane karty polubień (paywall) */
.blur-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.blur-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    background: var(--gradient);
}
.blur-card img { width: 100%; height: 100%; object-fit: cover; filter: blur(14px) brightness(0.85); transform: scale(1.15); }
.blur-card .blur-fallback { width: 100%; height: 100%; filter: blur(10px); display:flex; align-items:center; justify-content:center; color:#fff; font-size:40px; font-weight:800; }
.blur-lock {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: #fff; gap: 8px;
    background: rgba(0,0,0,0.15);
}
.blur-lock svg { filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4)); }
.blur-name { font-weight: 800; font-size: 15px; text-shadow: 0 2px 6px rgba(0,0,0,0.5); }

/* Modal premium */
.modal-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 200;
    align-items: center; justify-content: center;
    padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
    background: #fff;
    border-radius: 20px;
    padding: 32px 26px;
    max-width: 340px;
    width: 100%;
    text-align: center;
}
.modal-box .icon { font-size: 44px; margin-bottom: 10px; }
.modal-box h3 { margin: 0 0 8px; font-size: 20px; }
.modal-box p { color: var(--muted); font-size: 14px; margin-bottom: 20px; }

/* Siatka "Znajdź" (discover) */
.discover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.discover-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--gradient);
    text-decoration: none;
    display: block;
}
.discover-card img { width: 100%; height: 100%; object-fit: cover; }
.discover-card .fallback { width:100%; height:100%; display:flex; align-items:center; justify-content:center; color:#fff; font-size:26px; font-weight:800; }
.discover-card .label {
    position: absolute; left: 6px; bottom: 6px; right: 6px;
    color: #fff; font-size: 12px; font-weight: 700;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.discover-online { position:absolute; top:8px; right:8px; width:9px; height:9px; border-radius:50%; background:#2ecc71; border:2px solid #fff; }

/* Czaty (matches) */
.match-avatar-row { display: flex; gap: 14px; overflow-x: auto; padding: 4px 2px 18px; }
.match-avatar-item { flex-shrink: 0; text-align: center; width: 66px; }
.match-avatar-item img, .match-avatar-item .fallback-circle {
    width: 60px; height: 60px; border-radius: 50%; object-fit: cover;
    border: 2px solid var(--primary);
}
.match-avatar-item .fallback-circle { display:flex; align-items:center; justify-content:center; background:var(--gradient); color:#fff; font-weight:800; }
.match-avatar-item .mname { font-size: 11px; margin-top: 4px; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.chat-card {
    display: flex; align-items: center; gap: 14px;
    background: var(--card);
    border-radius: var(--radius);
    padding: 14px 16px;
    margin-bottom: 12px;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.chat-card img, .chat-card .fallback-circle {
    width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
}
.chat-card .fallback-circle { display:flex; align-items:center; justify-content:center; background:var(--gradient); color:#fff; font-weight:800; }
.chat-card .cname { font-weight: 700; color: var(--text); }
.chat-card .cpreview { font-size: 13px; color: var(--muted); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 200px; }

/* Czat 1:1 */
.chat-thread { display: flex; flex-direction: column; gap: 10px; padding: 10px 0 20px; }
.chat-bubble { max-width: 75%; padding: 10px 14px; border-radius: 16px; font-size: 14px; line-height: 1.4; }
.chat-bubble.mine { align-self: flex-end; background: var(--gradient); color: #fff; border-bottom-right-radius: 4px; }
.chat-bubble.theirs { align-self: flex-start; background: #f0f0f3; color: var(--text); border-bottom-left-radius: 4px; }
.chat-form { position: sticky; bottom: 74px; background: #fff; padding: 10px 0; display: flex; gap: 8px; }
.chat-form input[type=text] { flex: 1; }

/* ADMIN */
.admin-shell { display: flex; min-height: 100vh; }
.admin-sidebar {
    width: 230px; background: #1c1c22; color: #fff; padding: 24px 0; flex-shrink: 0;
}
.admin-sidebar .brand { padding: 0 24px 24px; font-weight: 800; font-size: 20px; }
.admin-sidebar .brand span { color: var(--primary); }
.admin-sidebar a {
    display: block; padding: 12px 24px; color: #c8c8d0; font-weight: 600; font-size: 14px;
}
.admin-sidebar a:hover, .admin-sidebar a.active { background: rgba(255,255,255,0.06); color: #fff; }
.admin-main { flex: 1; padding: 32px 36px; }
.admin-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.admin-topbar h1 { margin: 0; font-size: 24px; }

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 18px;
    margin-bottom: 32px;
}
.stat-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    border-left: 5px solid var(--primary);
}
.stat-card .num { font-size: 30px; font-weight: 800; }
.stat-card .label { color: var(--muted); font-size: 13px; margin-top: 4px; }
.stat-card.online { border-color: var(--success); }
.stat-card.verified { border-color: #3498db; }
.stat-card.banned { border-color: var(--danger); }
.stat-card.never { border-color: #999; }
.stat-card.men { border-color: #3498db; }
.stat-card.women { border-color: #e91e63; }

table.admin-table { width: 100%; border-collapse: collapse; background: var(--card); border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.05); }
table.admin-table th, table.admin-table td { padding: 12px 16px; text-align: left; font-size: 13px; border-bottom: 1px solid var(--border); }
table.admin-table th { background: #fafafa; color: var(--muted); font-weight: 700; text-transform: uppercase; font-size: 11px; }
table.admin-table tr:last-child td { border-bottom: none; }
.tag { display: inline-block; padding: 3px 9px; border-radius: 10px; font-size: 11px; font-weight: 700; }
.tag-green { background: #e9fbf0; color: #1f8a4c; }
.tag-red { background: #fdeeee; color: #c0392b; }
.tag-gray { background: #eee; color: #666; }
.action-links a { margin-right: 10px; font-size: 12px; font-weight: 700; }

.footer-note { text-align: center; color: var(--muted); font-size: 12px; padding: 20px 0; }

/* ===================== v1.6.0: styl Badoo-like ===================== */
:root {
    --lav: #efe6fb;
    --lav-dot: #7b3fe4;
    --ink: #1a1a1a;
}

/* Górny pasek w stylu "Chybił-Trafił" / "Odkryj" */
.app-topbar { display:flex; align-items:center; justify-content:space-between; gap:10px; padding:14px 0 4px; }
.app-topbar h1 { margin:0; font-size:26px; }
.app-topbar .actions { display:flex; align-items:center; gap:10px; }
.icon-btn { width:42px; height:42px; border-radius:50%; border:none; background:transparent; display:flex; align-items:center; justify-content:center; cursor:pointer; color:var(--text); }
.icon-btn:hover { background:#f4f4f4; }

/* Panel filtrów - rozwijany */

/* Propozycje na dziś (lawendowy baner) */
.today-banner { background:var(--lav); border-radius:20px; padding:20px 18px 4px; margin:14px 0 20px; }
.today-banner .tb-head { display:flex; align-items:center; gap:10px; }
.today-banner .tb-head .dot { width:11px; height:11px; border-radius:50%; background:#e5395b; flex-shrink:0; }
.today-banner .tb-head strong { font-size:19px; font-weight:700; letter-spacing:-0.2px; }
.today-banner p { margin:8px 0 16px; color:#5c5470; font-size:14px; line-height:1.5; }
.today-scroll { display:flex; gap:12px; overflow-x:auto; padding-bottom:20px; margin:0 -18px; padding-left:18px; padding-right:18px; scroll-snap-type:x mandatory; }
.today-card {
    position:relative; flex:0 0 232px; border-radius:20px; overflow:hidden;
    background:#111; aspect-ratio:3/4.2; scroll-snap-align:start;
    box-shadow:0 6px 18px rgba(0,0,0,0.14);
}
.today-card img, .today-card .fallback { width:100%; height:100%; object-fit:cover; display:block; }
.today-card .fallback { display:flex; align-items:center; justify-content:center; color:#fff; font-size:34px; font-weight:700; background:var(--gradient); }
/* przyciemnienie u gory, zeby imie bylo czytelne na kazdym zdjeciu */
.today-card::before {
    content:""; position:absolute; top:0; left:0; right:0; height:38%;
    background:linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0));
    pointer-events:none; z-index:1;
}
.today-card .tc-overlay {
    position:absolute; top:12px; left:12px; right:12px; z-index:2;
    display:flex; flex-direction:column; align-items:flex-start; gap:7px;
}
.today-card .tc-name {
    display:flex; align-items:center; gap:6px;
    max-width:100%; color:#fff; font-size:18px; font-weight:700; letter-spacing:-0.2px;
}
.today-card .tc-name-txt { overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.today-card .tc-ver {
    flex-shrink:0; width:17px; height:17px; border-radius:50%;
    background:#2d8cff; color:#fff; font-size:10px;
    display:flex; align-items:center; justify-content:center;
}
.today-card .tc-loc {
    max-width:100%; color:#fff; font-size:13px; font-weight:500;
    background:rgba(0,0,0,0.42); padding:5px 12px; border-radius:999px;
    overflow:hidden; text-overflow:ellipsis; white-space:nowrap;
}
.today-card .tc-heart {
    position:absolute; bottom:62px; right:12px; z-index:2;
    width:44px; height:44px; border-radius:50%; background:#fff; border:none;
    display:flex; align-items:center; justify-content:center;
    font-size:19px; color:var(--ink); cursor:pointer;
    box-shadow:0 4px 12px rgba(0,0,0,.24);
}
.today-card .tc-msg { position:absolute; left:10px; right:10px; bottom:10px; z-index:2; }
.today-card .tc-msg form { display:flex; align-items:center; background:#fff; border-radius:999px; padding:5px 5px 5px 14px; gap:6px; }
.today-card .tc-msg input[type=text] { flex:1; min-width:0; border:none; background:transparent; font-size:13px; padding:7px 0; margin:0; }
.today-card .tc-msg input[type=text]:focus { outline:none; }
.today-card .tc-msg button { border:none; background:#f2f2f4; border-radius:999px; padding:8px 13px; font-size:12.5px; font-weight:700; color:var(--ink); display:flex; align-items:center; gap:5px; white-space:nowrap; cursor:pointer; }
.coin { display:inline-block; width:14px; height:14px; border-radius:50%; background:#f4b400; text-align:center; line-height:14px; font-size:9px; }

.section-title-row { display:flex; align-items:center; justify-content:space-between; margin:10px 0 14px; }
.section-title-row h3 { margin:0; font-size:20px; }

.people-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.people-grid .pg-card { position:relative; border-radius:16px; overflow:hidden; aspect-ratio:1/1.25; background:var(--gradient); }
.people-grid .pg-card img { width:100%; height:100%; object-fit:cover; }

/* Karta "Chybił-Trafił" w stylu Badoo (odznaki u góry) */
.bt-card-wrap { position:relative; max-width:420px; margin:0 auto; }
.bt-menu-btn { position:absolute; top:14px; right:14px; z-index:5; width:34px; height:34px; border-radius:50%; background:rgba(0,0,0,0.35); color:#fff; border:none; font-weight:900; font-size:18px; cursor:pointer; }
.bt-badges { position:absolute; top:16px; left:16px; z-index:4; display:flex; flex-direction:column; align-items:flex-start; gap:8px; }
.bt-badges .bt-name { color:#fff; font-size:22px; font-weight:800; text-shadow:0 2px 6px rgba(0,0,0,.45); display:flex; align-items:center; gap:6px; }
.bt-badges .bt-name .dot { width:9px; height:9px; border-radius:50%; background:#2ecc71; border:2px solid #fff; display:inline-block; }
.chip { background:rgba(0,0,0,0.5); color:#fff; font-size:12.5px; font-weight:600; padding:6px 12px; border-radius:16px; display:inline-flex; align-items:center; gap:5px; }

.swipe-actions-3 { display:flex; justify-content:center; align-items:center; gap:20px; padding:16px 0 8px; }
.btn-circle-super { background:#fff; color:#5b8def; border:2px solid #dbe6fb; width:52px; height:52px; }

/* Menu kontekstowe (Zablokuj / Zgłoś) */
.context-sheet-backdrop { position:fixed; inset:0; background:rgba(0,0,0,0.4); z-index:200; display:none; align-items:flex-end; justify-content:center; }
.context-sheet-backdrop.open { display:flex; }
.context-sheet { background:#fff; width:100%; max-width:480px; border-radius:22px 22px 0 0; padding:22px 18px calc(22px + env(safe-area-inset-bottom)); text-align:center; position:relative; }
.context-sheet .close-x { position:absolute; top:16px; right:16px; background:none; border:none; font-size:20px; cursor:pointer; }
.context-sheet .cs-item { display:block; width:100%; padding:14px; font-size:16px; font-weight:700; border:none; background:none; cursor:pointer; border-top:1px solid var(--border); }
.context-sheet .cs-item:first-of-type { border-top:none; }
.context-sheet .cs-item.danger { color:#e5395b; }

/* panel wyboru zrodla zdjecia (galeria / aparat), w stylu Badoo */
.ph-src-title { font-size:17px; font-weight:800; margin:4px 0 22px; }
.ph-src-options { display:flex; justify-content:center; gap:34px; }
.ph-src-btn { display:flex; flex-direction:column; align-items:center; gap:10px; cursor:pointer; font-size:13.5px; font-weight:700; }
.ph-src-ico { width:74px; height:74px; border-radius:50%; background:#f2e9fc; display:flex; align-items:center; justify-content:center; font-size:30px; }

/* Modal dopasowania "Strzał w dziesiątkę" */
.match-modal-backdrop { position:fixed; inset:0; background:rgba(0,0,0,.55); z-index:300; display:flex; align-items:center; justify-content:center; padding:20px; }
.match-modal { background:#fff; border-radius:22px; padding:30px 26px; max-width:380px; width:100%; text-align:center; }
.match-modal .avatars { display:flex; justify-content:center; margin-bottom:18px; }
.match-modal .avatars .av { width:100px; height:100px; border-radius:50%; overflow:hidden; border:4px solid #fff; box-shadow:0 4px 14px rgba(0,0,0,.15); display:flex; align-items:center; justify-content:center; background:var(--gradient); color:#fff; font-weight:800; font-size:30px; }
.match-modal .avatars .av:last-child { margin-left:-24px; }
.match-modal h2 { margin:0 0 10px; font-size:22px; }
.match-modal p { color:#5c5470; font-size:14.5px; line-height:1.4; margin:0 0 20px; }
.match-modal .btn-block-dark { display:block; width:100%; background:var(--ink); color:#fff; border:none; border-radius:26px; padding:15px; font-weight:800; font-size:15.5px; cursor:pointer; margin-bottom:10px; }
.match-modal .btn-later { background:none; border:none; color:#8a8a8f; font-weight:700; font-size:14.5px; cursor:pointer; }

/* ===== Profil - styl Badoo ===== */
.profile-top { padding:10px 0 6px; }
.profile-progress { display:flex; align-items:center; gap:12px; }
.profile-progress .bar { flex:1; height:5px; border-radius:4px; background:#e6e6ea; overflow:hidden; }
.profile-progress .bar > span { display:block; height:100%; background:var(--ink); }
.profile-progress .pct { font-size:14px; font-weight:700; white-space:nowrap; }
.profile-subline { color:var(--muted); font-size:14.5px; margin:10px 2px 18px; }

.pf-photos { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-bottom:18px; }
.pf-photos a.slot, .pf-photos .slot { position:relative; aspect-ratio:1/1.28; border-radius:16px; background:#f2f2f5; display:flex; align-items:center; justify-content:center; overflow:hidden; text-decoration:none; }
.pf-photos .slot img { width:100%; height:100%; object-fit:cover; }
.pf-photos .slot .plus { font-size:30px; color:#9a9aa2; }
.pf-photos .slot .del { position:absolute; top:6px; right:6px; background:rgba(0,0,0,.55); color:#fff; border-radius:50%; width:24px; height:24px; border:none; font-size:13px; cursor:pointer; }

.pf-card { background:#fff; border-radius:16px; padding:18px 18px; margin-bottom:14px; box-shadow:0 1px 3px rgba(0,0,0,.03); border:1px solid var(--border); }
.pf-row { display:flex; align-items:center; justify-content:space-between; text-decoration:none; color:inherit; padding:16px 0; border-bottom:1px solid var(--border); }
.pf-row:last-child { border-bottom:none; }
.pf-row .left { display:flex; align-items:center; gap:16px; }
.pf-row .ico { font-size:20px; width:22px; text-align:center; }
.pf-row .lbl { font-weight:700; font-size:15.5px; }
.pf-row .val { color:var(--muted); font-size:15px; display:flex; align-items:center; gap:8px; }
.pf-section-title { font-weight:800; font-size:22px; margin:26px 0 4px; }
.pf-link-edit { color:var(--ink); font-weight:700; font-size:14px; }
.pf-quote { background:#f4f4f7; border-radius:16px; padding:18px; margin-bottom:14px; display:flex; align-items:center; justify-content:space-between; text-decoration:none; color:inherit; }
.pf-quote .q { font-size:26px; color:#9a9aa2; line-height:1; margin-bottom:4px; }
.pf-quote .question { font-size:16px; font-weight:600; }
.pf-quote .answer { color:var(--muted); font-size:14.5px; margin-top:4px; }
.tag-list { display:flex; flex-wrap:wrap; gap:10px; }
.tag-pill { background:#f2f2f5; border-radius:20px; padding:10px 16px; font-size:14.5px; font-weight:600; display:inline-flex; align-items:center; gap:8px; }
.tag-pill.selectable { cursor:pointer; border:2px solid transparent; }
.tag-pill.selected { background:#e9e2fb; border-color:#7b3fe4; }
.verify-box h3 { margin:0 0 6px; font-size:19px; }
.verify-box p { color:var(--muted); font-size:14px; margin:0 0 16px; }
.btn-dark-block { display:flex; align-items:center; justify-content:center; gap:8px; width:100%; background:var(--ink); color:#fff; border:none; border-radius:26px; padding:15px; font-weight:800; font-size:15px; cursor:pointer; text-decoration:none; }
.badge-verified { color:#2b7de9; font-size:15px; }
.completion-nudge { background:#f4f4f7; border-radius:16px; padding:18px; margin:14px 0; }
.completion-nudge h3 { margin:0 0 6px; font-size:18px; }
.completion-nudge p { margin:0; color:var(--muted); font-size:14px; }

/* Opcje / ustawienia */
.opt-list { background:#fff; }
.opt-row { display:block; padding:18px 2px; border-bottom:1px solid var(--border); text-decoration:none; color:inherit; }
.opt-row .opt-title { font-size:16px; }
.opt-row .opt-sub { color:var(--muted); font-size:14px; margin-top:2px; }
details summary { list-style:none; }
details summary::-webkit-details-marker { display:none; }
details[open] summary { border-bottom:1px solid var(--border); }

/* ===== v1.7.0: Regulamin / Polityka prywatności (modal) ===== */
.footer-note a { color: inherit; text-decoration: underline; }
.legal-modal-backdrop { position:fixed; inset:0; background:rgba(0,0,0,.55); z-index:400; display:none; align-items:center; justify-content:center; padding:16px; }
.legal-modal-backdrop.open { display:flex; }
.legal-modal { background:#fff; border-radius:18px; max-width:640px; width:100%; max-height:85vh; display:flex; flex-direction:column; overflow:hidden; }
.legal-modal-head { display:flex; align-items:center; justify-content:space-between; padding:18px 22px; border-bottom:1px solid var(--border); }
.legal-modal-head h2 { margin:0; font-size:19px; }
.legal-modal-head .close-x { background:none; border:none; font-size:20px; cursor:pointer; color:var(--muted); }
.legal-modal-body { padding:20px 22px 26px; overflow-y:auto; font-size:14.5px; line-height:1.65; color:#333; }
.legal-modal-body h1, .legal-modal-body h2, .legal-modal-body h3 { margin-top:20px; }
.legal-modal-body p { margin:0 0 12px; }
.consent-line { font-size:13.5px; color:var(--muted); display:flex; align-items:flex-start; gap:8px; margin:14px 0 4px; }
.consent-line input { width:auto; margin-top:3px; }
.consent-line a { color:var(--text); font-weight:600; }


/* ARKUSZ FILTROW (wzor: Badoo) */
.fs-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 200;
}
.fs-overlay.open { display: block; }

.fs-sheet {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 201;
    background: #fff;
    border-radius: 22px 22px 0 0;
    max-height: 88vh;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform .25s ease;
    padding: 0 22px calc(22px + env(safe-area-inset-bottom));
    box-shadow: 0 -8px 40px rgba(0,0,0,0.18);
}
.fs-sheet.open { transform: translateY(0); }
@media (min-width: 700px) {
    .fs-sheet { left: 50%; right: auto; transform: translate(-50%, 100%); width: 440px; border-radius: 22px 22px 0 0; }
    .fs-sheet.open { transform: translate(-50%, 0); }
}

.fs-panel { display: none; }
.fs-panel.active { display: block; }

.fs-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 0 6px; }
.fs-x, .fs-back {
    background: none; border: none; cursor: pointer;
    font-size: 26px; line-height: 1; color: var(--text);
    padding: 4px 6px;
}
.fs-back { font-size: 32px; }
.fs-title { text-align: center; font-size: 19px; font-weight: 700; margin: 4px 0 26px; }

.fs-row {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
    background: none;
    border: none;
    border-bottom: 1px solid #ededed;
    font-family: inherit;
    font-size: 17px;
    text-align: left;
    color: var(--text);
    cursor: pointer;
}
.fs-row.static { cursor: default; }
.fs-row .k { font-weight: 700; flex: 1; min-width: 0; }
.fs-row .v { color: var(--muted); font-weight: 400; text-align: right; }
.fs-row .ch { color: var(--text); font-size: 22px; line-height: 1; }

/* przelacznik */
.fs-toggle { position: relative; display: inline-block; width: 52px; height: 30px; flex-shrink: 0; margin: 0; }
.fs-toggle input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; z-index: 2; }
.fs-toggle .track {
    position: absolute; inset: 0;
    border: 2px solid var(--ink);
    border-radius: 999px;
    background: #fff;
    transition: background .15s;
}
.fs-toggle .track::before {
    content: "";
    position: absolute;
    top: 3px; left: 3px;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--ink);
    transition: transform .15s;
}
.fs-toggle input:checked + .track { background: var(--ink); }
.fs-toggle input:checked + .track::before { transform: translateX(22px); background: #fff; }

/* lista wyboru jednokrotnego */
.fs-opt {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 0;
    border-bottom: 1px solid #ededed;
    font-size: 17px;
    font-weight: 400;
    margin: 0;
    cursor: pointer;
}
.fs-opt > span:first-child { flex: 1; }
.fs-opt input { position: absolute; opacity: 0; pointer-events: none; }
.fs-opt .mark {
    width: 24px; height: 24px;
    border: 2px solid #c9c9c9;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}
.fs-opt input:checked + .mark { border-color: var(--ink); }
.fs-opt input:checked + .mark::after {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: var(--ink);
}

/* wybor wieku */
.fs-age { display: flex; align-items: center; gap: 14px; padding: 10px 0 6px; }
.fs-age select {
    flex: 1;
    text-align: center;
    text-align-last: center;
    font-size: 22px;
    font-weight: 700;
    padding: 14px 8px;
    border: none;
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    border-radius: 0;
    background: #fff;
    appearance: none;
    -webkit-appearance: none;
}
.fs-age-dash { color: var(--muted); font-size: 20px; }

.fs-actions { padding: 28px 0 6px; }
.fs-apply {
    width: 100%;
    background: var(--ink);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 18px;
    font-size: 17px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
}
.fs-apply:hover { opacity: .9; }

/* ===== CHYBIL-TRAFIL: karta w stylu Badoo ===== */
.bt-card {
    position: relative;
    max-width: 440px;
    margin: 8px auto 0;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 34px rgba(0,0,0,0.13);
    height: min(70vh, 640px);
    min-height: 420px;
    touch-action: pan-y;
}
.bt-scroll { height: 100%; overflow-y: auto; -webkit-overflow-scrolling: touch; scrollbar-width: thin; }

.bt-photo { position: relative; width: 100%; height: 100%; background: #111; }
/* przyciemnienie dolu zdjecia, zeby biale przyciski byly czytelne */
.bt-photo::after {
    content: "";
    position: absolute; left: 0; right: 0; bottom: 0; height: 30%;
    background: linear-gradient(to top, rgba(0,0,0,0.42), rgba(0,0,0,0));
    pointer-events: none;
}
/* strzalka podpowiadajaca, ze profil da sie przewinac */
.bt-more {
    position: absolute; left: 50%; bottom: 96px; z-index: 3;
    transform: translateX(-50%);
    color: #fff; opacity: .85;
    animation: btBounce 1.8s ease-in-out infinite;
    pointer-events: none;
}
@keyframes btBounce {
    0%, 100% { transform: translate(-50%, 0); }
    50%      { transform: translate(-50%, 6px); }
}
.bt-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bt-photo .swipe-photo-fallback { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 64px; color: #fff; background: var(--gradient); }

.bt-menu-btn {
    position: absolute; top: 12px; right: 14px; z-index: 5;
    background: none; border: none; color: #fff;
    font-size: 30px; line-height: 1; cursor: pointer;
    text-shadow: 0 2px 8px rgba(0,0,0,.5);
    padding: 0 6px;
}
.bt-overlay {
    position: absolute; top: 14px; left: 16px; z-index: 4;
    display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
    max-width: 78%;
}
.bt-overlay .bt-name {
    color: #fff; font-size: 21px; font-weight: 800; letter-spacing: -0.3px;
    text-shadow: 0 2px 8px rgba(0,0,0,.45);
    display: flex; align-items: center; gap: 8px;
}
.bt-overlay .bt-name .dot { width: 9px; height: 9px; border-radius: 50%; background: #35d07f; display: inline-block; }

/* szczegoly profilu pod zdjeciem, przewijane w karcie */
.bt-details { padding: 26px 22px 0; background: #fff; }
.bt-sec { margin-bottom: 26px; }
.bt-sec-label { color: var(--muted); font-size: 14.5px; font-weight: 600; margin-bottom: 8px; }
.bt-sec-big { font-size: 21px; font-weight: 800; line-height: 1.3; letter-spacing: -0.3px; }
.bt-sec-text { font-size: 15.5px; line-height: 1.6; }
.bt-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.bt-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: #f2f2f4; border-radius: 999px;
    padding: 11px 18px; font-size: 15.5px; font-weight: 600;
}
.bt-pill .ic { font-size: 16px; }
.bt-scroll-pad { height: 110px; }

/* trzy przyciski na sztywno tuz nad dolnym menu - nie przewijaja sie razem z karta */
.bt-actions {
    position: fixed; left: 0; right: 0; bottom: 74px; z-index: 58;
    padding-bottom: 10px;
    display: flex; justify-content: center; align-items: center; gap: 22px;
    pointer-events: none;
    padding-top: 22px;
    background: linear-gradient(to top, rgba(255,255,255,0.96) 55%, rgba(255,255,255,0));
}
/* pasek jest przezroczysty dla kliknięć, ale same przyciski juz nie */
.bt-actions form { margin: 0; }
.bt-actions form, .bt-actions .bt-circle { pointer-events: auto; }
.bt-circle {
    position: relative;
    width: 62px; height: 62px;
    border-radius: 50%;
    background: #fff;
    border: none;
    color: var(--ink);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 18px rgba(0,0,0,0.22);
    cursor: pointer;
    transition: transform .12s;
}
.bt-circle.big { width: 72px; height: 72px; }
.bt-circle:hover { transform: scale(1.06); }
.bt-circle:active { transform: scale(0.96); }
.bt-cost {
    position: absolute; top: -4px; right: -4px;
    background: var(--ink); color: #fff;
    font-size: 11.5px; font-weight: 800;
    min-width: 24px; height: 22px;
    border-radius: 999px;
    display: flex; align-items: center; justify-content: center;
    padding: 0 6px;
    border: 2px solid #fff;
}

/* saldo monet w naglowku */
.coin-pill {
    display: inline-flex; align-items: center; gap: 6px;
    background: #f2f2f4; color: var(--ink);
    border-radius: 999px; padding: 8px 15px;
    font-size: 14px; font-weight: 800;
}
.coin-ic { color: #e0a020; font-size: 13px; }

/* komunikaty u gory strony */
.app-toast {
    max-width: 1100px;
    margin: 12px auto 0;
    padding: 13px 18px;
    border-radius: 12px;
    font-size: 14.5px;
    line-height: 1.5;
}
.app-toast.coins { background: #fdf4e0; color: #7a5405; }
.app-toast.err   { background: #fdeaea; color: #a32d2d; }
.app-toast.ok    { background: #e9f7ef; color: #1f8a4c; }

/* ===== SUWAK LOKALIZACJI W FILTRACH ===== */
.fs-loc { padding: 4px 0 10px; }
.fs-loc-val { text-align: center; font-size: 30px; font-weight: 800; letter-spacing: -0.6px; margin-bottom: 22px; }
.fs-loc input[type=range] { width: 100%; accent-color: var(--ink); }
.fs-loc-ends { display: flex; justify-content: space-between; color: var(--muted); font-size: 13px; margin-top: 6px; }
.fs-loc-hint { color: var(--muted); font-size: 13.5px; line-height: 1.5; margin: 16px 0 0; }

/* ===== LISTA POLUBIEN ===== */
.lk-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
@media (min-width: 700px) { .lk-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.lk-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}
.lk-photo { position: relative; display: block; aspect-ratio: 3/4; background: #eee; }
.lk-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lk-fallback {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 40px; font-weight: 700; background: var(--gradient);
}
.lk-card.locked .lk-photo { cursor: pointer; }
.lk-card.locked .lk-photo img,
.lk-card.locked .lk-photo .lk-fallback { filter: blur(15px); transform: scale(1.12); }
.lk-name {
    position: absolute; left: 10px; right: 10px; bottom: 10px;
    color: #fff; font-size: 14.5px; font-weight: 700;
    text-shadow: 0 2px 6px rgba(0,0,0,.5);
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.lk-actions { display: flex; border-top: 1px solid var(--border); }
.lk-actions form { flex: 1; margin: 0; display: flex; }
.lk-btn {
    flex: 1; width: 100%;
    background: #fff; border: none;
    padding: 15px 0;
    color: var(--ink);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
}
.lk-actions > .lk-btn:first-child,
.lk-actions form:first-child .lk-btn { border-right: 1px solid var(--border); }
.lk-btn:hover { background: #fafafa; }

.lk-cta {
    position: sticky; bottom: 84px; z-index: 20;
    display: block; width: 100%;
    margin: 20px 0 0;
    background: var(--ink); color: #fff;
    border: none; border-radius: 999px;
    padding: 18px; font-size: 16.5px; font-weight: 700; font-family: inherit;
    cursor: pointer;
    box-shadow: 0 8px 26px rgba(0,0,0,0.28);
}

/* ===== ARKUSZ PREMIUM (wlasna kolorystyka, granat + brzoskwinia marki) ===== */
.pr-overlay {
    display: none;
    position: fixed; inset: 0; z-index: 300;
    background: #101527;
    overflow-y: auto;
}
.pr-overlay.open { display: block; }
.pr-box { max-width: 520px; margin: 0 auto; padding: 16px 22px calc(30px + env(safe-area-inset-bottom)); color: #fff; }
.pr-head { display: flex; align-items: center; justify-content: space-between; padding: 6px 0 18px; }
.pr-back { background: none; border: none; color: #fff; font-size: 32px; line-height: 1; cursor: pointer; padding: 0 6px; }
.pr-title { font-size: 15px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #8b93ad; }

.pr-icon {
    width: 74px; height: 74px; border-radius: 20px;
    background: var(--gradient); color: #fff;
    display: flex; align-items: center; justify-content: center;
    margin: 6px 0 24px;
    box-shadow: 0 10px 30px rgba(253,41,123,0.35);
}
.pr-headline { font-size: 26px; font-weight: 800; letter-spacing: -0.5px; margin: 0 0 12px; line-height: 1.25; }
.pr-lead { font-size: 15.5px; line-height: 1.55; color: #a7aec4; margin: 0 0 26px; }

.pr-plans { display: flex; flex-direction: column; gap: 12px; padding: 2px 0; }
.pr-plan {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 4px 14px;
    background: #1a2138;
    border: 2px solid #1a2138;
    border-radius: 16px;
    padding: 18px 20px;
    cursor: pointer;
    margin: 0;
}
.pr-plan.sel { border-color: #ff5864; background: #21294270; }
.pr-plan input { position: absolute; opacity: 0; pointer-events: none; }
.pr-badge {
    position: absolute; top: -10px; left: 18px;
    background: var(--gradient); color: #fff;
    font-size: 10.5px; font-weight: 800; letter-spacing: .6px;
    padding: 4px 11px; border-radius: 6px; white-space: nowrap;
}
.pr-num { grid-row: 1 / span 2; font-size: 30px; font-weight: 800; line-height: 1; min-width: 42px; }
.pr-per { font-size: 16px; font-weight: 700; align-self: end; }
.pr-price { grid-row: 1 / span 2; grid-column: 3; font-size: 19px; font-weight: 800; text-align: right; }
.pr-old { grid-column: 2; font-size: 13px; color: #7e879e; text-decoration: line-through; align-self: start; }
.pr-note { grid-column: 2 / span 2; font-size: 12.5px; color: #7e879e; }

.pr-small { font-size: 12.5px; line-height: 1.6; color: #7e879e; text-align: center; margin: 22px 0 0; }
.pr-actions { margin-top: 24px; }
.pr-cta {
    width: 100%;
    background: var(--gradient); color: #fff;
    border: none; border-radius: 999px;
    padding: 18px; font-size: 17px; font-weight: 700; font-family: inherit;
    cursor: pointer;
    box-shadow: 0 8px 26px rgba(253,41,123,0.3);
}

/* karta Premium na ekranie profilu - ta sama paleta */
.pv-premium { background: #101527; }
.pv-premium-title span { color: #ff8a9b; }
.pv-premium-cta { background: var(--gradient); color: #fff; }
.pv-premium-sub { color: #a7aec4; }
.pv-plan { background: rgba(255,255,255,0.06); }
.pv-plan .lab { background: rgba(255,255,255,0.12); }

/* FAQ */
.faq-item { border-bottom: 1px solid #f0f0f0; }
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
    list-style: none; cursor: pointer;
    padding: 17px 26px 17px 0; position: relative;
    font-size: 16px; font-weight: 600; line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+"; position: absolute; right: 2px; top: 15px;
    font-size: 22px; font-weight: 400; color: var(--muted);
}
.faq-item[open] summary::after { content: "\2013"; }
.faq-a { color: #4a4a52; font-size: 15px; line-height: 1.65; padding: 0 0 18px; }

/* ===== SUWAK LOKALIZACJI W FILTRACH ===== */
.fs-loc { padding: 4px 0 10px; }
.fs-loc-val { text-align: center; font-size: 30px; font-weight: 800; letter-spacing: -0.6px; margin-bottom: 22px; }
.fs-loc input[type=range] { width: 100%; accent-color: var(--ink); }
.fs-loc-ends { display: flex; justify-content: space-between; color: var(--muted); font-size: 13px; margin-top: 6px; }
.fs-loc-hint { color: var(--muted); font-size: 13.5px; line-height: 1.5; margin: 16px 0 0; }

/* ===== LISTA POLUBIEN ===== */
.lk-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
@media (min-width: 700px) { .lk-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.lk-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}
.lk-photo { position: relative; display: block; aspect-ratio: 3/4; background: #eee; }
.lk-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lk-fallback {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 40px; font-weight: 700; background: var(--gradient);
}
.lk-card.locked .lk-photo { cursor: pointer; }
.lk-card.locked .lk-photo img,
.lk-card.locked .lk-photo .lk-fallback { filter: blur(15px); transform: scale(1.12); }
.lk-name {
    position: absolute; left: 10px; right: 10px; bottom: 10px;
    color: #fff; font-size: 14.5px; font-weight: 700;
    text-shadow: 0 2px 6px rgba(0,0,0,.5);
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.lk-actions { display: flex; border-top: 1px solid var(--border); }
.lk-actions form { flex: 1; margin: 0; display: flex; }
.lk-btn {
    flex: 1; width: 100%;
    background: #fff; border: none;
    padding: 15px 0;
    color: var(--ink);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
}
.lk-actions > .lk-btn:first-child,
.lk-actions form:first-child .lk-btn { border-right: 1px solid var(--border); }
.lk-btn:hover { background: #fafafa; }

.lk-cta {
    position: sticky; bottom: 84px; z-index: 20;
    display: block; width: 100%;
    margin: 20px 0 0;
    background: var(--ink); color: #fff;
    border: none; border-radius: 999px;
    padding: 18px; font-size: 16.5px; font-weight: 700; font-family: inherit;
    cursor: pointer;
    box-shadow: 0 8px 26px rgba(0,0,0,0.28);
}

/* ===== ARKUSZ PREMIUM ===== */
.pr-overlay {
    display: none;
    position: fixed; inset: 0; z-index: 300;
    background: #2b1a20;
    overflow-y: auto;
}
.pr-overlay.open { display: block; }
.pr-box { max-width: 520px; margin: 0 auto; padding: 16px 22px calc(30px + env(safe-area-inset-bottom)); color: #fff; }
.pr-head { display: flex; align-items: center; justify-content: space-between; padding: 6px 0 18px; }
.pr-back { background: none; border: none; color: #fff; font-size: 32px; line-height: 1; cursor: pointer; padding: 0 6px; }
.pr-title { font-size: 17px; font-weight: 700; }
.pr-icon {
    width: 84px; height: 84px; border-radius: 50%;
    background: #fff; color: #2b1a20;
    display: flex; align-items: center; justify-content: center;
    margin: 10px 0 26px;
}
.pr-headline { font-size: 27px; font-weight: 800; letter-spacing: -0.5px; margin: 0 0 14px; }
.pr-lead { font-size: 16px; line-height: 1.55; color: rgba(255,255,255,0.82); margin: 0 0 28px; }

.pr-plans { display: flex; gap: 12px; overflow-x: auto; padding: 6px 2px 10px; }
.pr-plan {
    position: relative;
    flex: 0 0 42%;
    background: rgba(255,255,255,0.07);
    border: 2px solid transparent;
    border-radius: 14px;
    padding: 22px 12px 18px;
    text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 2px;
    cursor: pointer;
    margin: 0;
}
.pr-plan.sel { border-color: #fff; }
.pr-plan input { position: absolute; opacity: 0; pointer-events: none; }
.pr-badge {
    position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
    background: #fff; color: #2b1a20;
    font-size: 11px; font-weight: 800; letter-spacing: .4px;
    padding: 4px 10px; border-radius: 6px; white-space: nowrap;
}
.pr-num { font-size: 26px; font-weight: 800; line-height: 1.1; }
.pr-per { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.pr-old { font-size: 13.5px; color: rgba(255,255,255,0.5); text-decoration: line-through; }
.pr-price { font-size: 19px; font-weight: 800; }
.pr-note { font-size: 12.5px; color: rgba(255,255,255,0.55); margin-top: 2px; }

.pr-small { font-size: 12.5px; line-height: 1.6; color: rgba(255,255,255,0.6); text-align: center; margin: 22px 0 0; }
.pr-actions { margin-top: 26px; }
.pr-cta {
    width: 100%;
    background: #fff; color: #2b1a20;
    border: none; border-radius: 999px;
    padding: 18px; font-size: 17px; font-weight: 700; font-family: inherit;
    cursor: pointer;
}

/* Znaczek weryfikacji przed imieniem */
.ver-badge, .tc-ver {
    flex-shrink: 0;
    width: 21px; height: 21px;
    border-radius: 50%;
    background: #2d8cff; color: #fff;
    font-size: 11px; line-height: 1;
    display: inline-flex; align-items: center; justify-content: center;
}
.today-card .tc-ver { width: 17px; height: 17px; font-size: 10px; }

/* ===== EKRANY USTAWIEN (wzor: Badoo) ===== */
.set-topbar { display:flex; align-items:center; gap:10px; padding:6px 0 18px; }
.set-back { font-size:34px; line-height:1; color:var(--ink); text-decoration:none; width:34px; }
.set-title { flex:1; text-align:center; font-size:18px; font-weight:700; }
.set-spacer { width:34px; }

.set-list { background:#fff; border-radius:14px; overflow:hidden; margin-bottom:18px; }
/* karta z polem podpowiedzi nie moze przycinac rozwijanej listy */
.set-list.dropdowns { overflow: visible; }
.set-list.dropdowns .set-row:first-child { border-radius: 14px 14px 0 0; }
.set-list.dropdowns .set-row:last-child { border-radius: 0 0 14px 14px; }
.set-row {
    display:flex; align-items:center; gap:6px 14px;
    flex-wrap:wrap;
    padding:19px 18px;
    border-bottom:1px solid #f0f0f0;
    text-decoration:none; color:var(--text);
    background:#fff;
}
/* tytul i opis jako rodzenstwo ukladaja sie jeden pod drugim */
.set-row > .t { flex:1 1 100%; }
.set-row > .s { flex:1 1 100%; margin-top:-2px; }
.set-row > .t + .s { flex-basis:100%; }
.set-row:last-child { border-bottom:none; }
a.set-row:hover { background:#fafafa; }
.set-row .col { display:flex; flex-direction:column; gap:3px; flex:1; min-width:0; }
.set-row .t { font-size:16.5px; font-weight:500; min-width:0; }
.set-row .s { color:var(--muted); font-size:13.5px; line-height:1.45; }
.set-row.inline { flex-wrap:wrap; }
.set-row.inline .t { flex:0 0 auto; font-weight:600; }
.set-row.inline { position: relative; }
.set-row.inline input, .set-row.inline select {
    flex:1; min-width:120px; margin:0; border:none; background:transparent;
    text-align:right; font-size:16px; color:var(--muted); padding:0;
}
/* pole daty na telefonie trzyma tresc przy lewej krawedzi - dosuwamy sama kontrolke */
.set-row.inline input[type=date] {
    flex:0 0 auto; width:auto; margin-left:auto;
    text-align:right; direction:ltr;
}
.set-row.inline select { text-align-last: right; }
.set-row.inline input:focus, .set-row.inline select:focus { outline:none; color:var(--text); }

.set-row.person .av {
    width:44px; height:44px; border-radius:50%; overflow:hidden; flex-shrink:0;
    background:var(--gradient); color:#fff; font-weight:700;
    display:flex; align-items:center; justify-content:center;
}
.set-row.person .av img { width:100%; height:100%; object-fit:cover; }
.set-mini {
    background:#f2f2f4; border:none; border-radius:999px;
    padding:9px 16px; font-size:13.5px; font-weight:700; font-family:inherit;
    color:var(--ink); cursor:pointer;
}

/* przelacznik w wierszu ustawien */
.set-row.toggle { cursor:pointer; }
.set-row.toggle input { position:absolute; opacity:0; pointer-events:none; }
.set-row.toggle .box {
    width:26px; height:26px; border-radius:7px;
    border:2px solid #c9c9c9; flex-shrink:0; position:relative;
}
.set-row.toggle input:checked + .box { background:var(--ink); border-color:var(--ink); }
.set-row.toggle input:checked + .box::after {
    content:""; position:absolute; left:8px; top:3px;
    width:6px; height:12px; border:solid #fff; border-width:0 2.5px 2.5px 0;
    transform:rotate(45deg);
}

.set-h2 { font-size:21px; font-weight:700; text-align:center; margin:26px 0 20px; letter-spacing:-0.3px; }
.set-h2.left { text-align:left; font-size:19px; margin:0 0 10px; }
.set-choices { display:flex; flex-direction:column; gap:12px; }
.set-choice {
    display:flex; align-items:center; gap:12px;
    background:#f5f5f7; border-radius:999px;
    padding:17px 22px; margin:0; cursor:pointer;
    font-size:16px; font-weight:600;
}
.set-choice > span:first-child { flex:1; }
.set-choice.on { background:var(--lav); }
.set-choice input { position:absolute; opacity:0; pointer-events:none; }
.set-choice .mark {
    width:26px; height:26px; border-radius:50%;
    border:2px solid var(--ink); flex-shrink:0; position:relative; background:#fff;
}
.set-choice.check .mark { border-radius:8px; }
.set-choice.on .mark { background:var(--ink); border-color:var(--ink); }
.set-choice.on .mark::after {
    content:""; position:absolute; left:8px; top:3px;
    width:6px; height:12px; border:solid #fff; border-width:0 2.5px 2.5px 0;
    transform:rotate(45deg);
}

.set-note { color:var(--muted); font-size:14px; line-height:1.55; margin:16px 2px 0; }
.set-note.center { text-align:center; }
.set-email { text-align:center; color:var(--muted); font-size:16px; border-bottom:1px solid var(--border); padding:14px 0; margin:18px 0 26px; }

.set-cta {
    display:block; width:100%; text-align:center;
    background:var(--ink); color:#fff !important;
    border:none; border-radius:999px;
    padding:18px; font-size:16.5px; font-weight:700; font-family:inherit;
    margin-top:24px; cursor:pointer; text-decoration:none;
}
.set-cta.ghost { background:#f2f2f4; color:var(--ink) !important; }
.set-danger {
    display:block; width:100%; text-align:center;
    background:none; border:none; color:var(--muted);
    font-size:15px; font-family:inherit; padding:26px 0; cursor:pointer;
}
.set-block { background:#fff; border-radius:14px; padding:20px 18px; margin-bottom:16px; }
.set-status { border-radius:12px; padding:15px 18px; font-size:15px; font-weight:600; margin-top:6px; }
.set-status.ok { background:#e9f7ef; color:#1f8a4c; }
.set-status.wait { background:#fdf4e0; color:#7a5405; }
.set-status.no { background:#fdeaea; color:#a32d2d; line-height:1.5; }

/* ===== EKRAN PROFILU ===== */
.pv-head { display:flex; align-items:center; gap:20px; margin:10px 0 22px; }
.pv-ring {
    position:relative; width:132px; height:132px; flex-shrink:0;
    border-radius:50%;
    background:conic-gradient(var(--ink) calc(var(--pct) * 1%), #e6e6e6 0);
    padding:5px;
}
.pv-photo {
    width:100%; height:100%; border-radius:50%; overflow:hidden;
    background:var(--gradient); border:4px solid #fff;
    display:flex; align-items:center; justify-content:center;
    color:#fff; font-size:36px; font-weight:700;
}
.pv-photo img { width:100%; height:100%; object-fit:cover; }
.pv-pct {
    position:absolute; left:50%; bottom:-6px; transform:translateX(-50%);
    background:var(--ink); color:#fff;
    font-size:13px; font-weight:700;
    padding:5px 14px; border-radius:999px;
}
.pv-id { min-width:0; }
.pv-id h2 { margin:0 0 12px; font-size:26px; font-weight:800; letter-spacing:-0.5px; display:flex; align-items:center; gap:8px; }
.pv-chip {
    display:inline-flex; align-items:center; gap:8px;
    background:#f2f2f4; border-radius:999px;
    padding:10px 18px; font-size:15px; font-weight:600;
}

.pv-banner {
    display:flex; align-items:center; gap:14px;
    background:#fff; border:1px solid var(--border); border-radius:16px;
    padding:18px; margin-bottom:22px; text-decoration:none; color:var(--text);
}
.pv-banner .ic {
    width:44px; height:44px; border-radius:50%; flex-shrink:0;
    background:#2d8cff; color:#fff; font-size:20px;
    display:flex; align-items:center; justify-content:center;
}
.pv-banner .tx { flex:1; font-size:16px; font-weight:600; line-height:1.4; }
.pv-banner .ch { color:var(--muted); font-size:22px; }

.pv-tabs { display:flex; border-bottom:1px solid var(--border); margin-bottom:20px; }
.pv-tab {
    flex:1; background:none; border:none; cursor:pointer; font-family:inherit;
    padding:14px 0; font-size:16.5px; font-weight:700; color:var(--muted);
    border-bottom:2px solid transparent; margin-bottom:-1px;
}
.pv-tab.active { color:var(--text); border-bottom-color:var(--ink); }
.pv-pane { display:none; }
.pv-pane.active { display:block; }

.pv-stats { display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:12px; margin-bottom:18px; }
.pv-stat {
    display:flex; align-items:center; gap:12px;
    background:#fff; border-radius:14px; padding:16px;
    text-decoration:none; color:var(--text);
}
.pv-stat .ic { font-size:18px; }
.pv-stat .col { display:flex; flex-direction:column; min-width:0; }
.pv-stat .l { color:var(--muted); font-size:13px; }
.pv-stat .v { font-size:19px; font-weight:700; }
.pv-stat .plus { margin-left:auto; font-size:20px; font-weight:700; color:var(--muted); }

.pv-premium { background:#4a1030; border-radius:18px; padding:24px 20px; color:#fff; }
.pv-premium-title { text-align:center; font-size:24px; font-weight:800; letter-spacing:-0.5px; margin-bottom:18px; }
.pv-premium-title span { font-weight:400; opacity:.9; margin-left:6px; }
.pv-premium-cta {
    display:block; width:100%; background:#fff; color:#4a1030;
    border:none; border-radius:999px; padding:17px;
    font-size:16px; font-weight:700; font-family:inherit; cursor:pointer;
}
.pv-premium-sub { text-align:center; font-size:13.5px; color:rgba(255,255,255,.75); margin:14px 0 0; line-height:1.5; }
.pv-plan {
    display:flex; align-items:center; gap:10px; flex-wrap:wrap;
    background:rgba(255,255,255,0.08); border-radius:12px;
    padding:14px 16px; margin-top:18px; font-size:14px;
}
.pv-plan .lab { background:rgba(255,255,255,0.16); border-radius:999px; padding:5px 12px; font-size:12.5px; font-weight:700; }
.pv-plan .opt { margin-left:auto; opacity:.55; font-weight:600; }
.pv-plan .opt.on { opacity:1; font-weight:800; }
.pv-plan .opt + .opt { margin-left:16px; }

/* ===== EDYCJA PROFILU ===== */
.pe-topbar { display:flex; align-items:center; gap:12px; padding:6px 0 18px; }
.pe-progress { flex:1; text-align:center; }
.pe-progress .pct { display:block; font-size:16px; font-weight:700; margin-bottom:7px; }
.pe-progress .bar { display:block; height:5px; background:#e2e2e2; border-radius:3px; overflow:hidden; max-width:260px; margin:0 auto; }
.pe-progress .bar span { display:block; height:100%; background:var(--ink); border-radius:3px; }
.pe-eye { color:var(--ink); display:flex; align-items:center; }

.pe-photos { display:grid; grid-template-columns:repeat(3, 1fr); gap:10px; margin-bottom:16px; }
.pe-photos .slot {
    position:relative; aspect-ratio:1; border-radius:14px;
    background:#f2f2f4; display:flex; align-items:center; justify-content:center;
    cursor:pointer; overflow:hidden; margin:0; border:none; padding:0; font:inherit;
}
.pe-photos .slot.big { grid-column:span 2; grid-row:span 2; aspect-ratio:auto; }
.pe-photos .slot img { width:100%; height:100%; object-fit:cover; }
.pe-photos .plus { font-size:34px; color:var(--ink); font-weight:300; }
.pe-photos .del {
    position:absolute; top:7px; right:7px;
    width:26px; height:26px; border-radius:50%;
    background:rgba(0,0,0,.55); color:#fff; border:none;
    font-size:13px; cursor:pointer;
}

.pe-group { background:#fff; border-radius:14px; padding:16px 18px; margin:14px 0; }
.pe-group-title { font-size:19px; font-weight:800; letter-spacing:-0.3px; margin-bottom:8px; }
.pe-group-title.with-link { display:flex; align-items:center; justify-content:space-between; }
.pe-group-title.with-link a { font-size:15px; font-weight:600; color:var(--text); }
.pe-row {
    display:flex; align-items:center; gap:12px;
    padding:14px 0; text-decoration:none; color:var(--text);
    border-bottom:1px solid #f0f0f0;
}
.pe-group > .pe-row:first-child, .pe-group > .pe-row:last-child { border-bottom:none; }
.pe-row .col { display:flex; flex-direction:column; gap:4px; flex:1; min-width:0; }
.pe-row .t { font-size:16px; font-weight:600; }
.pe-row .t.big { font-size:19px; font-weight:800; letter-spacing:-0.3px; }
.pe-row .s { color:var(--muted); font-size:14.5px; }
.pe-row .ic { font-size:19px; width:26px; text-align:center; }
.pe-row .v { color:var(--muted); font-size:15px; text-align:right; }
.pe-row .ch { color:var(--muted); font-size:22px; }
.pe-row.icon .t { flex:1; }

.pe-quote { display:flex; align-items:flex-start; gap:14px; background:#f5f5f7; border-radius:14px; padding:18px; text-decoration:none; color:var(--text); }
.pe-quote .q { font-size:40px; line-height:.7; color:#9a9aa2; }
.pe-quote .col { display:flex; flex-direction:column; gap:5px; flex:1; min-width:0; }
.pe-quote .t { font-size:16.5px; font-weight:600; }
.pe-quote .s { color:var(--muted); font-size:14.5px; }
.pe-quote .ch { color:var(--muted); font-size:22px; align-self:center; }

.pe-tags { display:flex; flex-wrap:wrap; gap:10px; margin-top:12px; }
.pe-tag { background:#f2f2f4; border-radius:999px; padding:11px 18px; font-size:14.5px; font-weight:600; }
.pe-single { background:#fff; border-radius:14px; padding:6px 18px 22px; max-width:560px; margin:0 auto; }

/* ===== EKRAN CZATOW ===== */
.ch-sec { font-size:17px; font-weight:700; margin:6px 0 14px; }
.ch-head { display:flex; align-items:center; justify-content:space-between; gap:12px; margin:24px 0 14px; }
.ch-sort { display:inline-flex; align-items:center; gap:8px; font-size:14.5px; font-weight:600; color:var(--text); }

.ch-stories { display:flex; gap:16px; overflow-x:auto; padding-bottom:6px; margin:0 -16px; padding-left:16px; padding-right:16px; }
.ch-story { flex:0 0 auto; width:78px; text-align:center; text-decoration:none; color:var(--text); }
.ch-story .ring {
    position:relative; display:block; width:74px; height:74px; border-radius:50%;
    overflow:hidden; background:#eee; margin-bottom:7px;
}
.ch-story.likes .ring { border:2px solid #e5395b; }
.ch-story .ring img { width:100%; height:100%; object-fit:cover; }
.ch-story .ph {
    width:100%; height:100%; display:flex; align-items:center; justify-content:center;
    background:var(--gradient); color:#fff; font-weight:700; font-size:22px;
}
.ch-story .ph.blur { background:linear-gradient(135deg,#c9b8d8,#e3c6c6); filter:blur(6px); }
.ch-story .ph.gone { background:#ececef; border:2px dashed #c9c9cf; }
.ch-story .cnt {
    position:absolute; left:50%; bottom:2px; transform:translateX(-50%);
    background:#e5395b; color:#fff; font-size:11.5px; font-weight:800;
    padding:3px 9px; border-radius:999px; display:flex; align-items:center; gap:4px;
}
.ch-story .nm { display:block; font-size:13px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }

.ch-newmatch { background:#f5f5f7; border-radius:18px; padding:20px; margin-bottom:18px; }
.ch-newmatch .top { display:flex; align-items:center; gap:16px; margin-bottom:18px; }
.ch-newmatch .av { width:74px; height:74px; border-radius:50%; overflow:hidden; flex-shrink:0; background:#e6e6e6; }
.ch-newmatch .av img { width:100%; height:100%; object-fit:cover; }
.ch-newmatch .av .ph.gone { display:block; width:100%; height:100%; background:#ececef; border:2px dashed #c9c9cf; border-radius:50%; }
.ch-newmatch .tx strong { display:block; font-size:22px; font-weight:800; letter-spacing:-0.3px; margin-bottom:5px; }
.ch-newmatch .tx p { margin:0; font-size:15px; line-height:1.45; color:#4a4a52; }
.ch-newmatch .btns { display:flex; gap:12px; }
.ch-newmatch .btns a {
    flex:1; text-align:center; border-radius:999px; padding:15px 10px;
    font-size:14.5px; font-weight:700; text-decoration:none;
}
.ch-newmatch .btns .ghost { background:#fff; color:var(--ink); border:1.5px solid var(--ink); }
.ch-newmatch .btns .dark { background:var(--ink); color:#fff; }

.ch-row { display:flex; align-items:center; gap:12px; padding:12px 6px; border-radius:14px; }
.ch-row.picked { background:var(--lav); }
.ch-row .link { display:flex; align-items:center; gap:14px; flex:1; min-width:0; text-decoration:none; color:var(--text); }
.ch-row .av { position:relative; width:62px; height:62px; border-radius:50%; overflow:hidden; flex-shrink:0; background:#eee; }
.ch-row .av img { width:100%; height:100%; object-fit:cover; }
.ch-row .av .ph {
    width:100%; height:100%; display:flex; align-items:center; justify-content:center;
    background:var(--gradient); color:#fff; font-weight:700; font-size:20px;
}
.ch-row .av .ph.blur { background:linear-gradient(135deg,#c9b8d8,#e3c6c6); filter:blur(7px); }
.ch-row .av .ph.gone { background:#f2f2f4; border:2px dashed #c9c9cf; }
.ch-row .av .unread { position:absolute; top:2px; right:2px; width:15px; height:15px; border-radius:50%; background:#e5395b; border:2px solid #fff; }
.ch-row .av .badge {
    position:absolute; left:50%; bottom:1px; transform:translateX(-50%);
    background:#e5395b; color:#fff; font-size:11px; font-weight:800;
    padding:2px 8px; border-radius:999px; display:flex; align-items:center; gap:3px;
}
.ch-row .col { display:flex; flex-direction:column; gap:4px; min-width:0; flex:1; }
.ch-row .nm { font-size:17px; font-weight:700; display:flex; align-items:center; gap:8px; }
.ch-row .nm .dot { width:8px; height:8px; border-radius:50%; background:#35d07f; }
.ch-row .pv { color:var(--muted); font-size:14.5px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.ch-row.gone .nm { color:var(--muted); font-weight:600; }
.ch-row .star { background:none; border:none; cursor:pointer; color:#c9c9cf; padding:6px; flex-shrink:0; }
.ch-row .star.on { color:#e5b429; }
.ch-row.teaser .nm { font-size:16.5px; font-weight:600; line-height:1.4; }

/* tryb zaznaczania rozmow */
.ch-row .pick { display:none; margin:0; flex-shrink:0; cursor:pointer; }
.ch-row .pick input { position:absolute; opacity:0; pointer-events:none; }
.ch-row .pick .mark { display:block; width:24px; height:24px; border-radius:50%; border:2px solid #c9c9cf; position:relative; }
.ch-row .pick input:checked + .mark { background:var(--ink); border-color:var(--ink); }
.ch-row .pick input:checked + .mark::after {
    content:""; position:absolute; left:8px; top:3px;
    width:5px; height:11px; border:solid #fff; border-width:0 2.5px 2.5px 0; transform:rotate(45deg);
}
.ch-selbar { display:none; align-items:center; gap:14px; padding:10px 0 18px; }
.ch-selbar .x, .ch-selbar .trash { background:none; border:none; cursor:pointer; color:var(--ink); }
.ch-selbar .x { font-size:32px; line-height:1; }
.ch-selbar .cnt { flex:1; text-align:center; font-size:17px; font-weight:700; }
body.sel-mode .ch-selbar { display:flex; }
body.sel-mode #chatTop { display:none; }
body.sel-mode .ch-row .pick { display:block; }
body.sel-mode .ch-row .star { display:none; }

/* naglowek rozmowy */
.chat-top { display:flex; align-items:center; gap:12px; padding:4px 0 14px; }
.chat-top .av { width:46px; height:46px; border-radius:50%; object-fit:cover; flex-shrink:0; }
.chat-top .av.ph {
    display:flex; align-items:center; justify-content:center;
    background:var(--gradient); color:#fff; font-weight:700;
}
.chat-top .av.ph.gone { background:#f2f2f4; border:2px dashed #c9c9cf; }
.chat-top .who { flex:1; min-width:0; }
.chat-top .nm { font-weight:700; font-size:16px; display:flex; align-items:center; gap:7px; }
.chat-top .nm .dot { width:8px; height:8px; border-radius:50%; background:#35d07f; }
.chat-top .sub { color:var(--muted); font-size:12.5px; }
.chat-top .rep { color:var(--muted); display:flex; align-items:center; padding:6px; }

/* ===== ZAKUP PAKIETOW ===== */
.buy-list { display:flex; flex-direction:column; gap:12px; }
.buy-item {
    display:grid; grid-template-columns:1fr auto; gap:6px 14px;
    background:#f5f5f7; border-radius:14px; padding:16px 18px;
}
.buy-item .col { display:flex; flex-direction:column; gap:4px; min-width:0; }
.buy-item .nm { font-size:16.5px; font-weight:700; display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.buy-item .bdg { background:var(--gradient); color:#fff; font-size:10.5px; font-weight:800; padding:3px 9px; border-radius:5px; }
.buy-item .sb { color:var(--muted); font-size:13.5px; }
.buy-item .pr { font-size:18px; font-weight:800; white-space:nowrap; align-self:center; }
.buy-item .pay { grid-column:1 / span 2; display:flex; gap:10px; flex-wrap:wrap; margin-top:6px; }
.buy-item .pay form { margin:0; flex:1; }
.buy-item .pay button {
    width:100%; border:none; border-radius:999px; padding:13px;
    font-size:14.5px; font-weight:700; font-family:inherit; cursor:pointer;
}
.buy-item .b-online { background:var(--ink); color:#fff; }
.buy-item .b-sms { background:#fff; color:var(--ink); border:1.5px solid var(--ink) !important; }

.pay-steps { margin:0 0 22px; padding-left:22px; color:#3d4353; font-size:15px; line-height:1.8; }
.pay-steps b { font-weight:800; }

/* ===== WATEK ZGLOSZENIA DO OBSLUGI ===== */
.sup-thread { display:flex; flex-direction:column; gap:12px; margin-bottom:24px; }
.sup-bubble { max-width:88%; border-radius:16px; padding:14px 16px; font-size:15px; line-height:1.6; }
.sup-bubble.mine { align-self:flex-end; background:var(--ink); color:#fff; border-bottom-right-radius:5px; }
.sup-bubble.staff { align-self:flex-start; background:#f2f2f4; color:var(--text); border-bottom-left-radius:5px; }
.sup-bubble .meta { font-size:12px; opacity:.7; margin-bottom:5px; }

/* ===== MODAL DOPASOWANIA (pelny ekran ze zdjeciem) ===== */
.mm-full {
    position: fixed; inset: 0; z-index: 320;
    background: #111;
    overflow: hidden;
    display: flex; flex-direction: column; justify-content: flex-end;
}
.mm-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    z-index: 0;
}
.mm-bg-fallback { background: var(--gradient); }
.mm-full::after {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to top, rgba(0,0,0,.88) 30%, rgba(0,0,0,.15) 70%, rgba(0,0,0,.45));
}
.mm-x {
    position: absolute; top: 14px; left: 14px; z-index: 3;
    background: none; border: none; color: #fff; font-size: 30px; line-height: 1;
    cursor: pointer; text-shadow: 0 2px 8px rgba(0,0,0,.5); padding: 6px 10px;
}
.mm-content {
    position: relative; z-index: 2;
    padding: 24px 22px calc(26px + env(safe-area-inset-bottom));
    color: #fff;
    max-width: 520px; width: 100%; margin: 0 auto;
}
.mm-faces { display: flex; margin-bottom: 20px; }
.mm-faces .face {
    width: 88px; height: 88px; border-radius: 50%;
    border: 4px solid #fff; overflow: hidden;
    background: var(--gradient);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 30px; font-weight: 700;
}
.mm-faces .face:last-child { margin-left: -22px; }
.mm-faces .face img { width: 100%; height: 100%; object-fit: cover; }
.mm-title { font-size: 40px; font-weight: 800; letter-spacing: -1.2px; line-height: 1.05; margin: 0 0 12px; }
.mm-lead { font-size: 16px; line-height: 1.5; color: rgba(255,255,255,.88); margin: 0 0 22px; }

.mm-form { display: flex; align-items: center; background: #fff; border-radius: 999px; padding: 6px 6px 6px 20px; gap: 8px; margin-bottom: 14px; }
.mm-form input { flex: 1; min-width: 0; border: none; background: none; font-size: 15.5px; padding: 12px 0; margin: 0; color: var(--text); }
.mm-form input:focus { outline: none; }
.mm-send { width: 44px; height: 44px; border-radius: 50%; border: none; background: var(--ink); color: #fff; font-size: 17px; cursor: pointer; flex-shrink: 0; }

.mm-quick { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 6px; margin-bottom: 8px; }
.mm-quick form { margin: 0; flex: 0 0 auto; }
.mm-quick button {
    background: rgba(0,0,0,.55); color: #fff;
    border: 1px solid rgba(255,255,255,.28); border-radius: 999px;
    padding: 13px 18px; font-size: 14px; font-weight: 600; font-family: inherit;
    white-space: nowrap; cursor: pointer;
}
.mm-later {
    display: block; width: 100%; text-align: center;
    background: none; border: none; color: rgba(255,255,255,.85);
    font-size: 15px; font-weight: 600; font-family: inherit;
    padding: 14px 0 4px; cursor: pointer; text-decoration: none;
}

/* ===== ARKUSZ WYCZERPANYCH POLUBIEN ===== */
.lim-av {
    width: 96px; height: 96px; border-radius: 50%;
    overflow: hidden; background: var(--gradient);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 32px; font-weight: 700;
    margin: 4px 0 22px;
}
.lim-av img { width: 100%; height: 100%; object-fit: cover; }
.lim-title { font-size: 26px; font-weight: 800; letter-spacing: -0.6px; margin: 0 0 12px; }
.lim-lead { font-size: 15.5px; line-height: 1.55; color: var(--muted); margin: 0 0 18px; }

/* ===== ROZMOWA (AJAX) ===== */
.chat-thread { display:flex; flex-direction:column; gap:8px; overflow-y:auto; max-height:calc(100vh - 300px); padding:6px 2px 10px; }
.chat-thread .msg { max-width:78%; display:flex; flex-direction:column; }
.chat-thread .msg.mine { align-self:flex-end; align-items:flex-end; }
.chat-thread .msg.theirs { align-self:flex-start; align-items:flex-start; }
.chat-thread .msg .body {
    padding:12px 16px; border-radius:18px; font-size:15.5px; line-height:1.5;
    word-break:break-word;
}
.chat-thread .msg.mine .body { background:var(--ink); color:#fff; border-bottom-right-radius:6px; }
.chat-thread .msg.theirs .body { background:#f2f2f4; color:var(--text); border-bottom-left-radius:6px; }
.chat-thread .msg .time { font-size:11px; color:var(--muted); margin:3px 6px 0; }

/* przycisk doladowania siatki */
.load-more {
    display:block; width:100%; margin:20px 0 0;
    background:#f2f2f4; color:var(--ink);
    border:none; border-radius:999px; padding:16px;
    font-size:15px; font-weight:700; font-family:inherit; cursor:pointer;
}
.load-more:hover { background:#e8e8ec; }

/* stan ladowania karty */
#swipeStage.ladowanie { opacity:.55; pointer-events:none; transition:opacity .15s; }

/* ===== POLE MIASTA Z PODPOWIEDZIAMI ===== */
.city-pick { position: relative; flex: 1; min-width: 160px; }
.city-pick-input { width: 100%; }
.city-pick-clear {
    position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
    background: none; border: none; cursor: pointer;
    color: var(--muted); font-size: 14px; padding: 6px;
}
.city-pick-list {
    display: none;
    position: absolute; left: 0; right: 0; top: calc(100% + 4px); z-index: 60;
    background: #fff; border: 1px solid var(--border); border-radius: 12px;
    list-style: none; margin: 0; padding: 6px;
    max-height: 260px; overflow-y: auto;
    box-shadow: 0 12px 32px rgba(0,0,0,.14);
    text-align: left;
}
.city-pick-list.open { display: block; }
.city-pick-list li {
    padding: 12px 14px; border-radius: 8px;
    font-size: 15px; cursor: pointer; color: var(--text);
}
.city-pick-list li:hover, .city-pick-list li.sel { background: #f2f2f4; }

/* ===== EKRANY APLIKACJI (bez paska z logo) ===== */
.page.app { padding-top: 10px; }
.page.app .app-topbar { padding: 6px 0 10px; }
.page.app .app-topbar h1 { font-size: 22px; letter-spacing: -0.5px; }
.page.app h1 { font-size: 24px; }

/* karta swipe wypelnia dostepna wysokosc, przyciski zawsze widoczne */
.page.app .bt-card { height: calc(100dvh - 190px); max-height: 720px; min-height: 380px; margin-top: 2px; }
@supports not (height: 100dvh) {
    .page.app .bt-card { height: calc(100vh - 190px); }
}
.bt-actions { padding-bottom: 14px; }
.bt-circle { width: 58px; height: 58px; }
.bt-circle.big { width: 66px; height: 66px; }
.bt-actions { gap: 18px; }
.bt-more { bottom: 84px; }

/* naglowek profilu ciasniej, zeby karty miescily sie bez przewijania */
.page.app .pv-head { margin: 4px 0 16px; gap: 16px; }
.pv-ring { width: 108px; height: 108px; }
.pv-photo { font-size: 30px; }
.pv-id h2 { font-size: 22px; margin-bottom: 9px; }
.pv-chip { padding: 8px 15px; font-size: 14px; }
.pv-banner { padding: 14px; margin-bottom: 16px; }
.pv-banner .ic { width: 38px; height: 38px; font-size: 17px; }
.pv-banner .tx { font-size: 14.5px; }
.pv-tabs { margin-bottom: 16px; }
.pv-tab { padding: 12px 0; font-size: 15.5px; }
.pv-premium { padding: 20px 18px; }
.pv-premium-title { font-size: 21px; margin-bottom: 14px; }

/* ===== EMOTIKONY W ROZMOWIE ===== */
.chat-form { display: flex; align-items: center; gap: 8px; }
.emoji-toggle {
    background: #f2f2f4; border: none; border-radius: 50%;
    width: 42px; height: 42px; flex-shrink: 0;
    font-size: 19px; cursor: pointer; line-height: 1;
}
.emoji-toggle:hover { background: #e8e8ec; }
.emoji-panel[hidden] { display: none; }
.emoji-panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 10px;
    margin-bottom: 10px;
    max-height: 240px;
    overflow-y: auto;
}
.ep-tabs { display: flex; gap: 8px; padding: 2px 2px 10px; border-bottom: 1px solid var(--border); margin-bottom: 8px; }
.ep-tab { background: none; border: none; font-size: 14px; font-weight: 700; color: var(--muted); padding: 6px 4px; cursor: pointer; }
.ep-tab.active { color: var(--ink); }
.ep-pane[hidden] { display: none; }
#epEmoji {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(42px, 1fr));
    gap: 4px;
}
.gift-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.gift-tile { background: #f6f6f8; border: none; border-radius: 14px; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.gift-tile:active { background: #ececf0; }
.gift-ico { font-size: 30px; line-height: 1; }
.gift-cost-note { text-align: center; font-size: 12.5px; color: var(--muted); margin: 10px 0 0; }
.gift-send-ico { text-align: center; font-size: 90px; line-height: 1; margin: 6px 0 22px; }
.gift-msg { display: flex; flex-direction: column; align-items: center; gap: 6px; background: none !important; padding: 4px 0 !important; }
.gift-emoji { font-size: 54px; line-height: 1; }
.gift-note { font-size: 14px; }
.emoji-panel .emoji {
    background: none; border: none; cursor: pointer;
    font-size: 22px; line-height: 1;
    padding: 8px 0; border-radius: 8px;
}
.emoji-panel .emoji:hover { background: #f2f2f4; }


/* ===== EKRANY USTAWIEN - dopracowanie ===== */
.page.app .set-topbar { padding: 2px 0 14px; }
.set-title { font-size: 17px; }

.set-h2 {
    font-size: 19px;
    margin: 26px 0 14px;
    text-align: left;
}
.set-h2:first-of-type { margin-top: 8px; }

/* grupa wyborow jako karta, zeby sekcje nie zlewaly sie ze soba */
.set-choices {
    background: #fff;
    border-radius: 16px;
    padding: 8px;
    gap: 6px;
}
.set-choice {
    background: transparent;
    border-radius: 12px;
    padding: 15px 16px;
    font-size: 15.5px;
    font-weight: 600;
    transition: background .12s;
}
.set-choice:hover { background: #f7f7f9; }
.set-choice.on { background: var(--lav); }
.set-choice .mark { width: 24px; height: 24px; border-width: 2px; }
.set-choice.on .mark::after { left: 7.5px; top: 3px; width: 6px; height: 11px; }

/* opis pod sekcja - blizej tresci, ktorej dotyczy */
.set-note {
    font-size: 13.5px;
    line-height: 1.6;
    margin: 12px 4px 0;
}
.set-note.center { text-align: center; }

/* przelacznik w karcie - wiecej powietrza i wyrazniejszy stan */
.set-row.toggle { padding: 18px; align-items: flex-start; }
.set-row.toggle .col { gap: 5px; }
.set-row.toggle .t { font-weight: 700; font-size: 16px; }
.set-row.toggle .s { font-size: 13.5px; }
.set-row.toggle .box {
    width: 28px; height: 28px; border-radius: 9px;
    margin-top: 2px; transition: background .12s, border-color .12s;
}

/* przycisk zapisu przyklejony nizej, ale nie na styk z paskiem nawigacji */
.set-cta { margin-top: 22px; }
.page.app .set-list + .set-cta,
.page.app form > .set-cta { margin-bottom: 8px; }

/* ===== AKTYWNE PREMIUM ===== */
.pv-active {
    display: flex; align-items: center; gap: 14px;
    background: #101527; color: #fff;
    border-radius: 18px; padding: 20px;
}
.pv-active .ic {
    width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
    background: var(--gradient); color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.pv-active div { display: flex; flex-direction: column; gap: 3px; }
.pv-active strong { font-size: 16.5px; font-weight: 700; }
.pv-active span { color: #a7aec4; font-size: 13.5px; }

/* ===== POLE NUMERU TELEFONU ===== */
.phone-field { display: flex; align-items: center; gap: 10px; }
.phone-prefix {
    display: inline-flex; align-items: center; gap: 7px;
    background: #f2f2f4; border-radius: 12px;
    padding: 15px 16px; font-size: 16px; font-weight: 700;
    color: var(--text); flex-shrink: 0;
}
.phone-field input {
    flex: 1; min-width: 0; margin: 0;
    font-size: 18px; letter-spacing: 1px;
    padding: 15px 16px;
}
.phone-hint { color: var(--muted); font-size: 13.5px; line-height: 1.55; margin: 10px 2px 0; }

/* ===== KREATOR PROFILU ===== */
.ob { max-width: 520px; margin: 0 auto; padding: 4px 0 30px; }
.ob-top { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.ob-back { font-size: 34px; line-height: 1; color: var(--ink); text-decoration: none; width: 28px; }
.ob-bar { flex: 1; height: 5px; background: #e6e6ea; border-radius: 3px; overflow: hidden; }
.ob-bar span { display: block; height: 100%; background: var(--ink); border-radius: 3px; transition: width .25s; }
.ob-count { font-size: 13px; font-weight: 700; color: var(--muted); }

.ob-q { font-size: 27px; font-weight: 800; letter-spacing: -0.8px; line-height: 1.2; margin: 0 0 10px; }
.ob-hint { color: var(--muted); font-size: 15px; line-height: 1.55; margin: 0 0 26px; }

.ob-input {
    width: 100%; margin: 0 0 14px;
    border: 2px solid var(--ink); border-radius: 14px;
    padding: 17px 18px; font-size: 17px; font-family: inherit;
    background: #fff; color: var(--text);
}
.ob-input:focus { outline: none; border-color: #fd297b; }
.ob-input.area { min-height: 130px; line-height: 1.6; resize: vertical; }
select.ob-input { border-width: 1.5px; border-color: var(--border); }

.ob-choices { display: flex; flex-direction: column; gap: 12px; }
.ob-choice {
    display: flex; align-items: center; gap: 12px;
    background: #f5f5f7; border-radius: 999px;
    padding: 17px 22px; margin: 0; cursor: pointer;
    font-size: 16px; font-weight: 600;
}
.ob-choice > span:first-child { flex: 1; }
.ob-choice.on { background: var(--lav); }
.ob-choice input { position: absolute; opacity: 0; pointer-events: none; }
.ob-choice .mark {
    width: 26px; height: 26px; border-radius: 50%;
    border: 2px solid var(--ink); background: #fff; flex-shrink: 0; position: relative;
}
.ob-choice.on .mark { background: var(--ink); }
.ob-choice.on .mark::after {
    content: ""; position: absolute; left: 8px; top: 3px;
    width: 6px; height: 12px; border: solid #fff; border-width: 0 2.5px 2.5px 0; transform: rotate(45deg);
}
.ob-choice.big {
    justify-content: center; background: #fff;
    border: 2px solid var(--ink); font-size: 17px; font-weight: 700;
}
.ob-choice.big.on { background: var(--ink); color: #fff; }

.ob-photo {
    position: relative; width: 100%; aspect-ratio: 3/4; max-height: 380px;
    border-radius: 20px; background: #f2f2f4; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.ob-photo img { width: 100%; height: 100%; object-fit: cover; }
.ob-photo .ph { font-size: 46px; opacity: .35; }
.ob-photo input[type=file] { display: none; }
.ob-pick {
    display: block; text-align: center; margin-top: 16px;
    font-size: 15.5px; font-weight: 700; color: var(--ink);
    text-decoration: underline; cursor: pointer;
}

.ob-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.ob-tag { margin: 0; cursor: pointer; }
.ob-tag input { position: absolute; opacity: 0; pointer-events: none; }
.ob-tag span {
    display: inline-block; padding: 12px 18px; border-radius: 999px;
    background: #f2f2f4; border: 1.5px solid transparent;
    font-size: 14.5px; font-weight: 600;
}
.ob-tag input:checked + span { background: var(--lav); border-color: var(--ink); }

.ob-more label { display: block; font-size: 14px; font-weight: 700; margin: 16px 0 7px; }
.ob-more label:first-child { margin-top: 0; }

.ob-actions { margin-top: 28px; }
.ob-cta {
    width: 100%; background: var(--ink); color: #fff;
    border: none; border-radius: 999px; padding: 18px;
    font-size: 17px; font-weight: 700; font-family: inherit; cursor: pointer;
}
.ob-skip {
    display: block; width: 100%; margin-top: 14px;
    background: none; border: none; color: var(--muted);
    font-size: 15px; font-weight: 600; font-family: inherit; cursor: pointer;
}

/* ===== PRZYCISKI SPOLECZNOSCIOWE ===== */
.soc-sep { display: flex; align-items: center; gap: 14px; margin: 24px 0 18px; color: var(--muted); font-size: 13.5px; }
.soc-sep::before, .soc-sep::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.soc-buttons { display: flex; flex-direction: column; gap: 10px; }
.soc-btn {
    display: flex; align-items: center; justify-content: center; gap: 11px;
    border-radius: 999px; padding: 15px;
    font-size: 15.5px; font-weight: 700; text-decoration: none;
}
.soc-btn.google { background: #fff; color: #1a1a1a; border: 1.5px solid var(--border); }
.soc-btn.google:hover { background: #f7f7f9; }
.soc-btn.facebook { background: #1877f2; color: #fff; }
.soc-btn.facebook:hover { background: #1568d8; }

/* ===== SUWAK W KREATORZE ===== */
.ob-slider { padding: 8px 0 4px; }
.ob-slider .val {
    text-align: center;
    font-size: 40px; font-weight: 800; letter-spacing: -1.4px;
    margin-bottom: 26px;
}
.ob-slider input[type=range] {
    width: 100%;
    accent-color: var(--ink);
    height: 34px;
}
.ob-slider .ends {
    display: flex; justify-content: space-between;
    color: var(--muted); font-size: 13px; margin-top: 4px;
}

/* ===== EKRAN AKTYWACJI ===== */
.act-ic {
    width: 74px; height: 74px; border-radius: 22px;
    background: var(--gradient); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; margin: 0 auto 20px;
}

/* ===== MODAL Z BONUSEM MONET ===== */
.cb-overlay {
    position: fixed; inset: 0; z-index: 310;
    background: rgba(15,10,20,.62);
    display: flex; align-items: center; justify-content: center;
    padding: 22px;
}
.cb-box {
    background: #fff; border-radius: 24px;
    max-width: 380px; width: 100%;
    padding: 34px 26px 26px;
    text-align: center;
    box-shadow: 0 24px 60px rgba(0,0,0,.3);
    animation: cbIn .25s ease-out;
}
@keyframes cbIn {
    from { opacity: 0; transform: translateY(14px) scale(.97); }
    to   { opacity: 1; transform: none; }
}
.cb-coin {
    position: relative;
    width: 84px; height: 84px; border-radius: 50%;
    background: linear-gradient(140deg, #ffd66b, #e0a020);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 22px;
    box-shadow: 0 10px 26px rgba(224,160,32,.4);
}
.cb-coin-ic { color: #fff; font-size: 34px; }
.cb-plus {
    position: absolute; right: -10px; top: -6px;
    background: var(--ink); color: #fff;
    font-size: 13px; font-weight: 800;
    padding: 5px 11px; border-radius: 999px;
    border: 3px solid #fff;
}
.cb-box h2 { font-size: 24px; font-weight: 800; letter-spacing: -0.5px; margin: 0 0 12px; }
.cb-box p { font-size: 15.5px; line-height: 1.6; color: #4a4a52; margin: 0 0 20px; }
.cb-balance {
    background: #f5f5f7; border-radius: 12px;
    padding: 13px; font-size: 14.5px; color: var(--muted);
    margin-bottom: 22px;
}
.cb-balance b { color: var(--text); font-size: 16px; }
.cb-cta {
    width: 100%; background: var(--ink); color: #fff;
    border: none; border-radius: 999px; padding: 16px;
    font-size: 16px; font-weight: 700; font-family: inherit; cursor: pointer;
}

/* ===== STRONA 404 ===== */
.nf { text-align: center; padding: 40px 10px 30px; max-width: 460px; margin: 0 auto; }
.nf-code {
    font-size: 78px; font-weight: 800; letter-spacing: -3px; line-height: 1;
    background: var(--gradient); -webkit-background-clip: text;
    background-clip: text; color: transparent; margin-bottom: 10px;
}
.nf h1 { font-size: 23px; font-weight: 800; margin: 0 0 12px; }
.nf p { color: var(--muted); font-size: 15.5px; line-height: 1.6; margin: 0 0 26px; }
.nf-links { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.nf-btn {
    display: block; width: 100%;
    background: var(--ink); color: #fff; text-decoration: none;
    border-radius: 999px; padding: 16px; font-size: 16px; font-weight: 700;
}
.nf-alt { color: var(--text); font-size: 15px; font-weight: 600; }

/* ===== MIASTO W FILTRACH ===== */
.fs-city { margin-bottom: 26px; }
.fs-city-label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.fs-city .city-pick-input {
    width: 100%; margin: 0;
    border: 1.5px solid var(--border); border-radius: 12px;
    padding: 15px 16px; font-size: 16px; background: #fff;
}

/* ===== 2.0.0: JEDNO OKNO KOMUNIKATOW (styl bonusu monet) ===== */
.nt-overlay { z-index: 420; }
.nt-box { position: relative; }
.nt-ic,
.nt-av {
    position: relative;
    width: 84px; height: 84px; border-radius: 50%;
    margin: 0 auto 22px;
    display: flex; align-items: center; justify-content: center;
}
.nt-ic {
    color: #fff; font-size: 38px; font-weight: 800; line-height: 1;
    background: var(--gradient);
    box-shadow: 0 10px 26px rgba(253,41,123,.35);
}
.nt-error .nt-ic,
.nt-confirm .nt-ic {
    background: linear-gradient(140deg, #ff8f8f, #e5484d);
    box-shadow: 0 10px 26px rgba(229,72,77,.35);
}
.nt-info .nt-ic {
    background: linear-gradient(140deg, #8fa4ff, #5b6cf0);
    box-shadow: 0 10px 26px rgba(91,108,240,.35);
}
.nt-av img,
.nt-av .nt-ini {
    width: 100%; height: 100%; border-radius: 50%;
    object-fit: cover; display: flex; align-items: center; justify-content: center;
    border: 4px solid #fff;
    box-shadow: 0 10px 26px rgba(0,0,0,.18);
}
.nt-av .nt-ini { background: var(--gradient); color: #fff; font-size: 28px; font-weight: 800; }
.nt-box .cb-plus { white-space: nowrap; }
.nt-sent .nt-av .cb-plus { background: #1f8a4c; }
.nt-box p { overflow-wrap: anywhere; }
.nt-list {
    text-align: left; margin: -6px 0 20px; padding-left: 22px;
    font-size: 15px; line-height: 1.6; color: #4a4a52;
}
.nt-pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: -6px 0 20px; }
.nt-box a.cb-cta {
    display: block; text-align: center; text-decoration: none; box-sizing: border-box;
}
.nt-second {
    display: block; width: 100%; margin-top: 6px;
    background: none; border: none; cursor: pointer;
    padding: 13px; font-size: 15px; font-weight: 600; font-family: inherit;
    color: var(--muted);
}
.nt-second:hover { color: var(--text); }

/* ===== 2.0.0: PROPOZYCJE NA DZIS - tylko wiadomosci ===== */
.today-card .tc-msg button:disabled { opacity: .55; cursor: default; }
.today-card .tc-go,
.today-card .tc-locked {
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
    border-radius: 999px; text-decoration: none;
    font-size: 13px; font-weight: 700;
}
.today-card .tc-go {
    background: #fff; color: var(--text);
    padding: 12px 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.today-card .tc-go span { font-size: 20px; line-height: 1; color: var(--primary); }
.today-card .tc-locked {
    background: rgba(255,255,255,.88); color: var(--muted);
    padding: 5px 5px 5px 14px;
}
.today-card .tc-lock-txt { display: flex; align-items: center; gap: 6px; }
.today-card .tc-cost {
    background: #f2f2f4; border-radius: 999px; padding: 8px 13px;
    display: flex; align-items: center; gap: 5px; color: #b0b0b6;
}
.today-card .tc-cost .coin-ic { color: #d9c08a; }

/* ===== 2.0.0: CZAT - klikalny naglowek z profilem ===== */
.chat-top .chat-who {
    display: flex; align-items: center; gap: 12px;
    flex: 1; min-width: 0; color: inherit; text-decoration: none;
}
a.chat-who:active { opacity: .7; }
.chat-top .chat-who-cta { color: var(--primary); font-weight: 600; }

/* ===== 2.0.0: PODGLAD PROFILU Z ROZMOWY ===== */
.view-back {
    display: inline-flex; align-items: center; gap: 6px;
    margin: 4px 0 14px; font-size: 15px; font-weight: 700; color: var(--text);
}
.view-chat-cta { max-width: 420px; margin: 18px auto 8px; }
.view-chat-cta .cb-cta { display: block; text-align: center; text-decoration: none; box-sizing: border-box; }

/* ===== 2.0.0: WZAJEMNE POLUBIENIA ===== */
.lk-sec { font-size: 20px; font-weight: 800; letter-spacing: -.3px; margin: 30px 0 4px; }
.lk-both {
    position: absolute; top: 10px; left: 10px;
    background: var(--gradient); color: #fff;
    font-size: 12px; font-weight: 700; padding: 5px 10px; border-radius: 999px;
}
.lk-chat {
    flex: 1; display: block; text-align: center; padding: 13px;
    font-weight: 700; font-size: 15px; color: var(--primary); text-decoration: none;
}
.lk-chat:hover { background: #fafafa; }

/* ===== 2.0.0: CHIPY NA KARCIE (Niedawno dolaczyla / ~20 km stad) ===== */
.bt-overlay .chip.chip-light,
.bt-overlay .chip.chip-dark {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12.5px; font-weight: 600; padding: 6px 12px; border-radius: 999px;
    text-shadow: none;
}
.bt-overlay .chip.chip-light { background: #fff; color: var(--ink); }
.bt-overlay .chip.chip-dark  { background: rgba(20,20,20,.62); color: #fff; }
.bt-sec-sub { font-size: 15px; color: var(--muted); font-weight: 600; }

/* ===== 2.0.0: PASEK POSTEPU W CHYBIL-TRAFIL ===== */
.sw-progress { height: 5px; background: #ececf0; border-radius: 999px; margin: -2px 0 12px; overflow: hidden; }
.sw-progress span { display: block; height: 100%; background: var(--ink); border-radius: 999px; transition: width .35s ease; }

/* ===== 2.0.0: PRZERYWNIKI W CHYBIL-TRAFIL ===== */
.bt-card.bt-promo { display: flex; flex-direction: column; justify-content: center; background: #fff; border: 1px solid #ececf0; }
.bt-card.bt-promo-likes { background: #e9dcfb; border-color: #e9dcfb; }
.pr-inner { padding: 30px 28px 44px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.pr-inner.pr-left { align-items: flex-start; text-align: left; }
.pr-av { position: relative; width: 168px; height: 168px; margin-bottom: 36px; }
.pr-av img, .pr-av .pr-ph {
    display: block; width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
    filter: blur(12px); clip-path: circle(50% at 50% 50%);
}
.pr-av .pr-ph { background: linear-gradient(140deg, #5a7db5, #a36a5a); }
.pr-heart {
    position: absolute; left: 50%; bottom: -20px; transform: translateX(-50%);
    width: 48px; height: 48px; border-radius: 50%;
    background: #c8001e; color: #fff; border: 4px solid #e9dcfb;
    display: flex; align-items: center; justify-content: center;
}
.pr-big { font-size: 44px; line-height: 1.04; font-weight: 800; letter-spacing: -1.6px; margin: 0 0 26px; }
.pr-title { font-size: 31px; font-weight: 800; letter-spacing: -.6px; margin: 0 0 14px; }
.pr-text { font-size: 16.5px; line-height: 1.55; color: #33333a; margin: 0 0 28px; }
.pr-left .pr-text { color: var(--muted); }
.pr-btn {
    display: block; width: 100%; box-sizing: border-box;
    background: var(--ink); color: #fff; border: none; border-radius: 999px;
    padding: 17px; font-size: 16.5px; font-weight: 700; font-family: inherit;
    text-align: center; text-decoration: none; cursor: pointer;
}
.pr-skip {
    display: block; width: 100%; margin-top: 10px; padding: 13px;
    background: none; border: none; color: var(--muted);
    font-size: 15.5px; font-weight: 700; font-family: inherit; cursor: pointer;
}
.pr-hint { position: absolute; left: 0; right: 0; bottom: 14px; text-align: center; font-size: 12.5px; color: rgba(0,0,0,.38); }
.pr-hearts { position: relative; width: 200px; height: 180px; margin-bottom: 22px; }
.pr-hearts svg { position: absolute; fill: #c8001e; animation: prPop .45s ease-out both; }
.pr-hearts .h1 { width: 150px; left: 12px; top: 36px; }
.pr-hearts .h2 { width: 40px; left: 0; top: 8px; animation-delay: .08s; }
.pr-hearts .h3 { width: 22px; left: 52px; top: 24px; animation-delay: .16s; }
.pr-hearts .h4 { width: 60px; left: 136px; top: 0; fill: #d64a60; animation-delay: .12s; }
.pr-hearts .h5 { width: 16px; left: 0; top: 116px; fill: #f4c6cf; animation-delay: .2s; }
@keyframes prPop { from { opacity: 0; transform: scale(.4); } to { opacity: 1; transform: none; } }

/* ===== 2.0.0: ARKUSZ OD DOLU (Serce, limit polubien) ===== */
.sh-overlay {
    position: fixed; inset: 0; z-index: 410;
    display: flex; align-items: flex-end; justify-content: center;
    background: rgba(0,0,0,0); transition: background .22s;
}
.sh-overlay.open { background: rgba(0,0,0,.5); }
.sh-sheet {
    position: relative; width: 100%; max-width: 560px; box-sizing: border-box;
    background: #fff; border-radius: 34px 34px 0 0;
    padding: 30px 26px calc(22px + env(safe-area-inset-bottom));
    max-height: 92vh; overflow-y: auto;
    transform: translateY(100%); transition: transform .22s ease-out;
}
.sh-overlay.open .sh-sheet { transform: none; }
.sh-x { position: absolute; top: 18px; right: 18px; background: none; border: none; font-size: 26px; color: var(--ink); cursor: pointer; padding: 6px; }
.sh-av { position: relative; width: 120px; height: 120px; margin: 12px 0 24px; }
.sh-av img, .sh-av .sh-ini { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: flex; align-items: center; justify-content: center; }
.sh-av .sh-ini { background: var(--gradient); color: #fff; font-size: 36px; font-weight: 800; }
.sh-badge {
    position: absolute; right: -4px; bottom: -2px;
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--ink); color: #fff; border: 3px solid #fff;
    display: flex; align-items: center; justify-content: center;
}
.sh-title { font-size: 26px; font-weight: 800; letter-spacing: -.5px; margin: 0 0 12px; }
.sh-text { font-size: 17px; line-height: 1.5; color: #6d6d73; margin: 0 0 18px; }
.sh-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 20px; }
.sh-pill { display: inline-flex; align-items: center; gap: 8px; background: #f2f2f4; border-radius: 999px; padding: 10px 16px; font-size: 15px; font-weight: 600; }
.sh-btn {
    display: block; width: 100%; box-sizing: border-box; margin-top: 10px;
    border-radius: 999px; padding: 17px; text-align: center; text-decoration: none;
    font-size: 17px; font-weight: 700; font-family: inherit; cursor: pointer;
}
.sh-btn.dark { background: var(--ink); color: #fff; border: 2px solid var(--ink); }
.sh-btn.outline { background: #fff; color: var(--ink); border: 2px solid var(--ink); }
.sh-later { display: block; width: 100%; margin-top: 8px; padding: 18px; background: none; border: none; font-size: 16.5px; color: var(--ink); font-family: inherit; cursor: pointer; }

/* ===== 2.0.0: ZNAJDZ - SIATKA ===== */
.dc-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px 12px; margin-top: 4px; }
@media (min-width: 700px) { .dc-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .dc-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
.dc-item { cursor: pointer; min-width: 0; -webkit-tap-highlight-color: transparent; }
.dc-item:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; border-radius: 26px; }
.dc-photo { aspect-ratio: 3 / 3.9; border-radius: 26px; overflow: hidden; background: var(--gradient); }
.dc-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .2s; }
.dc-item:active .dc-photo img { transform: scale(.97); }
.dc-photo .fallback { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 28px; font-weight: 800; }
.dc-name { display: flex; align-items: center; gap: 7px; margin-top: 9px; font-size: 15px; font-weight: 600; color: var(--text); }
.dc-txt { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dc-dot { width: 9px; height: 9px; border-radius: 50%; background: #3cbf3f; flex-shrink: 0; }

/* ===== 2.0.0: OKNO PODGLADU PROFILU ===== */
body.po-lock { overflow: hidden; }
.po-overlay {
    position: fixed; inset: 0; z-index: 300;
    background: rgba(15,10,20,.6);
    display: none; align-items: center; justify-content: center;
    padding: 12px 10px calc(10px + env(safe-area-inset-bottom));
}
.po-overlay.open { display: flex; }
.po-card {
    position: relative; width: 100%; max-width: 460px; height: 100%; max-height: 880px;
    background: #111; border-radius: 22px; overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,.35);
    animation: cbIn .2s ease-out;
}
.po-scroll { position: absolute; top: 0; left: 0; right: 0; bottom: 74px; overflow-y: auto; -webkit-overflow-scrolling: touch; background: #fff; }
.po-card.no-bottom-bar .po-scroll { bottom: 0; }
.po-photo { position: relative; height: 100%; background: #111; }
.po-photo::after {
    content: ""; position: absolute; left: 0; right: 0; top: 0; height: 40%;
    background: linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,0)); pointer-events: none;
}
.po-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.po-photo .swipe-photo-fallback { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 64px; color: #fff; background: var(--gradient); }
.po-overlay .bt-overlay { top: 18px; left: 18px; max-width: 72%; }
.po-head { position: absolute; top: 12px; right: 8px; z-index: 7; display: flex; align-items: center; gap: 2px; }
.po-ic {
    width: 46px; height: 46px; background: none; border: none; cursor: pointer;
    color: #fff; font-size: 22px; letter-spacing: 1px;
    display: flex; align-items: center; justify-content: center;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,.45));
}
.po-controls {
    position: absolute; left: 0; right: 0; bottom: 94px; z-index: 6;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 26px; pointer-events: none;
}
.po-round {
    pointer-events: auto; position: relative;
    background: #fff; border: none; border-radius: 50%; cursor: pointer;
    color: var(--ink); display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 18px rgba(0,0,0,.25); transition: transform .12s;
    text-decoration: none;
}
.po-round:active { transform: scale(.94); }
.po-side { width: 58px; height: 58px; }
.po-mid { width: 78px; height: 78px; }
.po-mid.on { color: var(--primary); cursor: default; }
.po-mid-gap { width: 78px; }
.po-emoji { font-size: 40px; line-height: 1; }
.po-left {
    position: absolute; top: -3px; right: -3px;
    min-width: 24px; height: 24px; padding: 0 6px; border-radius: 999px;
    background: var(--ink); color: #fff; border: 2px solid #fff;
    font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center;
}
.po-bottom {
    position: absolute; left: 0; right: 0; bottom: 0; height: 74px; z-index: 6;
    background: #fff; display: flex; align-items: center; padding: 0 12px 0 20px; box-sizing: border-box;
}
.po-form { display: flex; align-items: center; gap: 10px; width: 100%; margin: 0; }
.po-form input[type=text] { flex: 1; min-width: 0; margin: 0; padding: 12px 0; border: none; background: transparent; font-size: 17px; font-family: inherit; }
.po-form input[type=text]:focus { outline: none; }
.po-cost { display: inline-flex; align-items: center; gap: 5px; background: #f2f2f4; border-radius: 999px; padding: 7px 11px; font-size: 13px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.po-send {
    flex-shrink: 0; width: 50px; height: 50px; border-radius: 50%;
    background: var(--ink); color: #fff; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
}
.po-go {
    width: 100%; box-sizing: border-box; display: flex; align-items: center; justify-content: space-between;
    background: var(--ink); color: #fff; border: none; border-radius: 999px;
    padding: 15px 22px; font-size: 16px; font-weight: 700; font-family: inherit;
    text-decoration: none; cursor: pointer; margin-right: 8px;
}
.po-go span { font-size: 24px; line-height: 1; }
.po-locked {
    width: 100%; box-sizing: border-box; display: flex; align-items: center; justify-content: space-between; gap: 8px;
    background: #f5f5f7; color: var(--muted); border: none; border-radius: 999px;
    padding: 7px 7px 7px 16px; margin-right: 8px; font-size: 14px; font-weight: 700; font-family: inherit; cursor: pointer;
}
.po-locked > span:first-child { display: flex; align-items: center; gap: 7px; text-align: left; }
.po-locked .po-cost { color: #a9a9ae; }
.po-note { width: 100%; text-align: center; color: var(--muted); font-weight: 600; padding-right: 8px; }
.po-menu[hidden] { display: none; }
.po-card.busy .po-send, .po-card.busy .po-mid { opacity: .55; pointer-events: none; }
.po-card.po-loading { display: flex; align-items: center; justify-content: center; background: #fff; }
.po-spin { width: 38px; height: 38px; border-radius: 50%; border: 4px solid #ececf0; border-top-color: var(--ink); animation: poSpin .8s linear infinite; }
@keyframes poSpin { to { transform: rotate(360deg); } }

/* ===== 2.0.0: DROBNE ===== */
.chat-who.is-link { cursor: pointer; }
.app-topbar .pf-ic { color: var(--ink); }

/* ===== 2.0.1: MENU "•••" W OKNIE PROFILU ===== */
.po-menu {
    position: absolute; inset: 0; z-index: 12;
    background: rgba(0,0,0,.45);
    display: flex; align-items: flex-end;
    animation: poFade .18s ease-out;
}
.po-menu-box {
    width: 100%; box-sizing: border-box;
    background: #fff; border-radius: 28px 28px 0 0;
    padding: 10px 18px calc(18px + env(safe-area-inset-bottom));
    animation: poUp .22s ease-out;
}
.po-menu-grip { display: block; width: 42px; height: 5px; border-radius: 999px; background: #dcdce0; margin: 0 auto 14px; }
.po-menu-title { font-size: 15px; font-weight: 600; color: var(--muted); text-align: center; margin: 0 8px 14px; line-height: 1.4; }
.po-menu-list { background: #f5f5f7; border-radius: 18px; overflow: hidden; }
.po-menu-item {
    display: flex; align-items: center; gap: 14px;
    width: 100%; box-sizing: border-box; margin: 0;
    padding: 15px 16px;
    background: none; border: none; border-radius: 0;
    font: inherit; color: var(--ink); text-align: left; text-decoration: none;
    cursor: pointer; -webkit-appearance: none; appearance: none;
}
.po-menu-item + .po-menu-item { border-top: 1px solid #e6e6ea; }
.po-menu-item:active { background: #ececf0; }
.po-menu-ic {
    flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%;
    background: #fff; color: var(--ink);
    display: flex; align-items: center; justify-content: center;
}
.po-menu-item.danger { color: #e5395b; }
.po-menu-item.danger .po-menu-ic { color: #e5395b; }
.po-menu-txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.po-menu-txt b { font-size: 16.5px; font-weight: 700; }
.po-menu-txt small { font-size: 13px; color: var(--muted); font-weight: 500; line-height: 1.35; }
.po-menu-cancel {
    display: block; width: 100%; box-sizing: border-box; margin-top: 10px;
    padding: 16px; border: none; border-radius: 999px;
    background: var(--ink); color: #fff;
    font: inherit; font-size: 16.5px; font-weight: 700; cursor: pointer;
    -webkit-appearance: none; appearance: none;
}
@keyframes poFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes poUp { from { transform: translateY(100%); } to { transform: none; } }

/* ===== 2.0.2: EKRAN ROZMOWY - PASEK WIADOMOSCI ZAWSZE NA DOLE ===== */
body.chat-open { overflow: hidden; }
body.chat-open .footer-note { display: none; }
.chat-screen {
    position: fixed; left: 0; right: 0; top: 0; bottom: 80px; z-index: 50;
    max-width: 760px; margin: 0 auto;
    display: flex; flex-direction: column;
    background: var(--bg); padding: 8px 16px 0; box-sizing: border-box;
}
body.chat-typing .bottom-nav { display: none; }
.chat-screen .chat-top { flex-shrink: 0; padding: 4px 0 10px; border-bottom: 1px solid var(--border); }
.chat-screen .chat-thread {
    flex: 1; min-height: 0; max-height: none;
    overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain;
    padding: 12px 2px;
}
.chat-screen .emoji-panel { flex-shrink: 0; margin: 0 0 8px; }
.chat-screen .chat-form {
    position: static; flex-shrink: 0; margin: 0;
    padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
    background: var(--bg); border-top: 1px solid var(--border);
}
body:not(.chat-typing) .chat-screen .chat-form { padding-bottom: 10px; }
.chat-screen .set-note { flex-shrink: 0; }
.chat-top .chat-who { cursor: pointer; border-radius: 14px; }
.chat-top .chat-who:active { opacity: .7; }
.chat-more {
    flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
    background: none; border: none; color: var(--ink); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
}
.chat-more:active { background: #ececf0; }

/* menu ••• rozmowy - ten sam arkusz co w oknie profilu */
.po-menu.chat-menu { position: fixed; z-index: 260; justify-content: center; }
.chat-menu .po-menu-box { max-width: 560px; }
.po-menu-list > form { margin: 0; }
.po-menu-list > * + * { border-top: 1px solid #e6e6ea; }
.chat-reasons label {
    display: flex; align-items: center; gap: 12px; margin: 0;
    padding: 15px 16px; font-size: 16px; font-weight: 600; cursor: pointer;
}
.chat-reasons input[type=radio] { width: 20px; height: 20px; margin: 0; accent-color: var(--ink); flex-shrink: 0; }
.po-menu-cancel.danger { background: #e5395b; }
.chat-menu-back {
    display: block; width: 100%; margin-top: 4px; padding: 14px;
    background: none; border: none; font: inherit; font-size: 16px; font-weight: 600;
    color: var(--muted); cursor: pointer;
}

/* ===== 2.1.0: ARKUSZ PREMIUM ===== */
.pm-overlay { background: radial-gradient(120% 60% at 50% 0%, #5a1f38 0%, #2b1a20 55%, #1d1216 100%); }
.pm-box { max-width: 520px; margin: 0 auto; padding: 14px 20px calc(28px + env(safe-area-inset-bottom)); color: #fff; }
.pm-head { display: flex; align-items: center; justify-content: space-between; padding: 4px 0 6px; }
.pm-kicker { font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: #ff9bb0; }
.pm-close { width: 42px; height: 42px; border-radius: 50%; border: none; background: rgba(255,255,255,.1); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.pm-hero { text-align: center; padding: 10px 6px 4px; }
.pm-crown {
    width: 84px; height: 84px; margin: 6px auto 18px; border-radius: 26px;
    background: linear-gradient(140deg, #ffd27a, #ff8a5c 55%, #ff4f8b); color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 14px 40px rgba(255,90,120,.45); transform: rotate(-6deg);
}
.pm-headline { font-size: 28px; line-height: 1.15; font-weight: 800; letter-spacing: -.6px; margin: 0 0 10px; }
.pm-lead { font-size: 15.5px; line-height: 1.55; color: rgba(255,255,255,.72); margin: 0 auto 20px; max-width: 400px; }
.pm-perks { list-style: none; margin: 0 0 22px; padding: 6px 14px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: 18px; }
.pm-perks li { display: flex; align-items: center; gap: 14px; padding: 11px 0; }
.pm-perks li + li { border-top: 1px solid rgba(255,255,255,.07); }
.pm-perk-ic { flex-shrink: 0; width: 42px; height: 42px; border-radius: 13px; background: rgba(255,120,150,.16); color: #ff9bb0; display: flex; align-items: center; justify-content: center; }
.pm-perks b { display: block; font-size: 15px; }
.pm-perks small { display: block; font-size: 13px; color: rgba(255,255,255,.6); margin-top: 1px; }
.pm-plans { display: flex; flex-direction: column; gap: 12px; }
.pm-plan {
    position: relative; display: flex; align-items: center; gap: 14px; cursor: pointer;
    padding: 16px 16px 16px 14px; border-radius: 20px;
    background: rgba(255,255,255,.06); border: 2px solid rgba(255,255,255,.1);
    transition: border-color .15s, background .15s, transform .1s;
}
.pm-plan:active { transform: scale(.99); }
.pm-plan.sel { border-color: #ff6f91; background: rgba(255,111,145,.12); box-shadow: 0 8px 26px rgba(255,80,120,.18); }
.pm-plan input { position: absolute; opacity: 0; pointer-events: none; }
.pm-badge {
    position: absolute; top: -10px; left: 16px;
    background: linear-gradient(90deg, #ffd27a, #ff8a5c); color: #3a1520;
    font-size: 11px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase;
    padding: 4px 10px; border-radius: 999px;
}
.pm-ic {
    flex-shrink: 0; width: 50px; height: 50px; border-radius: 15px;
    background: rgba(255,255,255,.1); color: #fff;
    display: flex; align-items: center; justify-content: center;
}
.pm-plan.sel .pm-ic { background: linear-gradient(140deg, #ff8a5c, #ff4f8b); }
.pm-ic-num { font-size: 22px; font-weight: 800; }
.pm-mid { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.pm-len { font-size: 17px; font-weight: 800; }
.pm-sub { font-size: 12.5px; color: rgba(255,255,255,.62); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.pm-smstag { font-size: 10.5px; font-weight: 800; letter-spacing: .5px; padding: 2px 7px; border-radius: 6px; background: rgba(255,255,255,.14); color: #fff; }
.pm-right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; }
.pm-old { font-size: 12.5px; color: rgba(255,255,255,.45); }
.pm-price { font-size: 18px; font-weight: 800; white-space: nowrap; }
.pm-radio { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; border: 2px solid rgba(255,255,255,.35); position: relative; }
.pm-plan.sel .pm-radio { border-color: #ff6f91; background: #ff6f91; }
.pm-plan.sel .pm-radio::after { content: ""; position: absolute; left: 6px; top: 2px; width: 5px; height: 10px; border: solid #fff; border-width: 0 2.5px 2.5px 0; transform: rotate(45deg); }
.pm-pay { margin-top: 22px; }
.pm-pay form { margin: 0; }
.pm-cta, .pm-sms {
    width: 100%; display: flex; align-items: center; justify-content: center; gap: 9px;
    border-radius: 999px; padding: 17px; font-size: 17px; font-weight: 700; font-family: inherit; cursor: pointer;
}
.pm-cta { background: #fff; color: #2b1a20; border: none; }
.pm-cta:disabled { opacity: .6; }
.pm-sms { margin-top: 10px; background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.35); }
.pm-sms[hidden] { display: none; }
.pm-safe { text-align: center; font-size: 12.5px; line-height: 1.55; color: rgba(255,255,255,.55); margin: 14px 0 0; }

/* ===== 2.1.0: STRONA PREMIUM I MONETY ===== */
.shop-hero { display: flex; align-items: center; gap: 14px; padding: 18px; margin-bottom: 18px; border-radius: 20px; color: #fff; background: linear-gradient(135deg, #4a1330, #2b1a20); }
.shop-hero.active { background: linear-gradient(135deg, #1f8a4c, #146b39); }
.shop-hero-ic { flex-shrink: 0; width: 52px; height: 52px; border-radius: 16px; background: linear-gradient(140deg, #ffd27a, #ff8a5c 55%, #ff4f8b); display: flex; align-items: center; justify-content: center; }
.shop-hero.active .shop-hero-ic { background: rgba(255,255,255,.2); }
.shop-hero div { flex: 1; min-width: 0; }
.shop-hero b { display: block; font-size: 17px; }
.shop-hero div span { display: block; font-size: 13px; opacity: .8; margin-top: 2px; line-height: 1.4; }
.shop-hero-cta { flex-shrink: 0; background: #fff; color: #2b1a20; border: none; border-radius: 999px; padding: 11px 18px; font-weight: 800; font-family: inherit; cursor: pointer; }
.shop-h { display: flex; align-items: center; justify-content: space-between; font-size: 19px; font-weight: 800; margin: 22px 2px 12px; letter-spacing: -.3px; }
.shop-balance { font-size: 14px; font-weight: 700; background: #fff; border-radius: 999px; padding: 6px 12px; }
.shop-balance .coin-ic { color: #d9a441; }
.shop-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 8px; }
.shop-card { position: relative; background: #fff; border-radius: 20px; padding: 16px; box-shadow: 0 2px 10px rgba(20,20,40,.05); }
.shop-badge { position: absolute; top: -9px; right: 16px; background: linear-gradient(90deg, #ff4f8b, #ff8a5c); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.shop-row { display: flex; align-items: center; gap: 14px; }
.shop-ic { flex-shrink: 0; width: 52px; height: 52px; border-radius: 16px; background: #fbe7ee; color: #d6336c; display: flex; align-items: center; justify-content: center; }
.shop-ic.gold { background: #fdf3dc; color: #c58a1c; }
.shop-num { font-size: 22px; font-weight: 800; }
.shop-mid { flex: 1; min-width: 0; }
.shop-title { display: block; font-size: 17px; font-weight: 800; }
.shop-sub { display: block; font-size: 13px; color: var(--muted); margin-top: 2px; }
.shop-price { text-align: right; }
.shop-price s { display: block; font-size: 12.5px; color: var(--muted); }
.shop-price b { font-size: 18px; white-space: nowrap; }
.shop-actions { display: flex; gap: 8px; margin-top: 14px; }
.shop-actions form { flex: 1; margin: 0; display: flex; }
.shop-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px; border-radius: 999px; padding: 12px 10px; font-size: 14.5px; font-weight: 700; font-family: inherit; cursor: pointer; white-space: nowrap; }
.shop-btn.dark { background: var(--ink); color: #fff; border: 2px solid var(--ink); }
.shop-btn.light { background: #fff; color: var(--ink); border: 2px solid #e3e3e8; }
.shop-btn:disabled { opacity: .6; }
.shop-off { font-size: 13px; color: var(--muted); }

/* ===== 2.1.0: OKNO SMS ===== */
.sms-box { text-align: center; }
.sms-x { position: absolute; top: 12px; right: 12px; width: 38px; height: 38px; border-radius: 50%; border: none; background: #f2f2f4; font-size: 16px; cursor: pointer; }
.sms-ic { background: linear-gradient(140deg, #8fa4ff, #5b6cf0) !important; box-shadow: 0 10px 26px rgba(91,108,240,.35) !important; }
.sms-for { margin: -4px 0 16px !important; }
.sms-steps { text-align: left; background: #f6f6f9; border-radius: 16px; padding: 6px 14px; margin-bottom: 16px; }
.sms-step { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; padding: 10px 0; font-size: 15px; }
.sms-step + .sms-step { border-top: 1px solid #ebebf0; }
.sms-step .n { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--ink); color: #fff; font-size: 12.5px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.sms-chip { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1.5px solid #dcdce3; border-radius: 10px; padding: 7px 11px; font-size: 15px; font-weight: 800; letter-spacing: .5px; font-family: inherit; color: var(--ink); cursor: pointer; text-decoration: none; }
.sms-chip i { font-style: normal; font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: 0; }
.sms-chip.dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.sms-form { margin: 0; }
.sms-form input[type=text] {
    width: 100%; box-sizing: border-box; margin: 0 0 10px; text-align: center;
    font-size: 24px; font-weight: 800; letter-spacing: 5px; text-transform: uppercase;
    padding: 14px; border: 2px solid #dcdce3; border-radius: 16px; font-family: inherit;
}
.sms-form input[type=text]:focus { outline: none; border-color: var(--ink); }
.sms-err { background: #fdeeee; color: #b42318; border-radius: 12px; padding: 10px 12px; font-size: 14px; margin-bottom: 10px; text-align: left; }
.sms-err[hidden] { display: none; }
.sms-open { display: block; margin-top: 12px; font-size: 14px; font-weight: 700; color: var(--primary); text-decoration: none; }
@media (min-width: 900px) { .sms-open { display: none; } }
.sms-legal { font-size: 12px !important; color: var(--muted) !important; margin: 12px 0 0 !important; line-height: 1.5 !important; }

/* ===== 2.1.0: PROFIL - PODGLAD ===== */
.pv-preview { display: flex; align-items: center; gap: 14px; background: #fff; border-radius: 18px; padding: 14px 16px; margin-bottom: 12px; color: var(--ink); text-decoration: none; }
.pv-preview-ic { flex-shrink: 0; width: 44px; height: 44px; border-radius: 14px; background: #eef0ff; color: #5b6cf0; display: flex; align-items: center; justify-content: center; }
.pv-preview-txt { flex: 1; min-width: 0; }
.pv-preview-txt b { display: block; font-size: 16px; }
.pv-preview-txt small { display: block; font-size: 13px; color: var(--muted); margin-top: 1px; }
.pv-preview-ch { font-size: 26px; color: var(--muted); line-height: 1; }

/* ===== 2.2.0: LOGO DATOO ===== */
.dt-logo { display: inline-flex; align-items: center; gap: 9px; line-height: 1; vertical-align: middle; }
.dt-logo .dt-mark { flex-shrink: 0; display: block; }
.dt-word { font-size: 25px; font-weight: 900; letter-spacing: -1px; color: #1b1b24; }
.dt-oo { background: linear-gradient(135deg, #ff2d7a, #ff7a45); -webkit-background-clip: text; background-clip: text; color: transparent; }
.dt-light .dt-word { color: #fff; }
.dt-light .dt-oo { background: none; -webkit-background-clip: initial; background-clip: initial; color: #ffd0de; }
.navbar .brand.brand-logo { display: inline-flex; align-items: center; }
.navbar .brand-logo .dt-word { font-size: 22px; }
.navbar .brand-logo .dt-mark rect { fill: #fff; }
.navbar .brand-logo .dt-mark path { fill: #ff2d7a; }
.navbar .brand-logo .dt-mark circle { fill: #ff7a45; }

/* ===== 2.2.0: UDOSTEPNIJ MOJ PROFIL ===== */
.share-card { background: #fff; border-radius: 20px; padding: 18px; margin-bottom: 16px; box-shadow: 0 2px 10px rgba(20,20,40,.05); }
.share-top { display: flex; gap: 14px; align-items: flex-start; }
.share-ic { flex-shrink: 0; width: 46px; height: 46px; border-radius: 15px; background: linear-gradient(135deg, #ff2d7a, #ff7a45); color: #fff; display: flex; align-items: center; justify-content: center; }
.share-txt b { display: block; font-size: 16.5px; }
.share-txt small { display: block; font-size: 13.5px; color: var(--muted); line-height: 1.45; margin-top: 3px; }
.share-link { display: flex; gap: 8px; margin-top: 14px; }
.share-link input { flex: 1; min-width: 0; margin: 0; padding: 12px 14px; border-radius: 12px; border: 1.5px solid #e6e6ec; background: #f7f7fa; font-size: 14px; }
.share-link button { flex-shrink: 0; border: none; border-radius: 12px; background: var(--ink); color: #fff; font-weight: 700; padding: 0 18px; font-family: inherit; cursor: pointer; }
.share-native { width: 100%; margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 8px; border-radius: 999px; border: 2px solid #e6e6ec; background: #fff; padding: 12px; font-weight: 700; font-size: 15px; font-family: inherit; cursor: pointer; }
.share-native[hidden] { display: none; }
.share-count { margin: 12px 0 0; font-size: 13.5px; color: var(--muted); }

/* ===== 2.2.1: okna komunikatów przewijają się, gdy treść nie mieści się na ekranie ===== */
.cb-overlay { align-items: flex-start; overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }
.cb-box { margin: auto; }

/* ===== 2.4.0: aktywnosc ===== */
.bt-overlay .chip.chip-online, .bt-overlay .chip.chip-today {
    display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; padding: 6px 12px; border-radius: 999px; text-shadow: none;
}
.bt-overlay .chip.chip-online { background: #fff; color: #1f8a4c; }
.bt-overlay .chip.chip-online .pulse { width: 9px; height: 9px; border-radius: 50%; background: #3cbf3f; box-shadow: 0 0 0 0 rgba(60,191,63,.6); animation: dtPulse 1.8s infinite; }
@keyframes dtPulse { 0% { box-shadow: 0 0 0 0 rgba(60,191,63,.55); } 70% { box-shadow: 0 0 0 8px rgba(60,191,63,0); } 100% { box-shadow: 0 0 0 0 rgba(60,191,63,0); } }
.bt-overlay .chip.chip-today { background: rgba(255,255,255,.92); color: #1b1b24; }
.dc-today { font-size: 12px; font-weight: 700; color: #1f8a4c; margin-top: 2px; }
.chat-top .sub .seen { color: var(--muted); }
.chat-top .sub .seen.on { color: #1f8a4c; font-weight: 700; }

/* ===== 2.4.0: pytanie dnia ===== */
.qd-card { display: flex; align-items: center; gap: 14px; background: linear-gradient(135deg, #fff0f5, #fff4ec); border-radius: 20px; padding: 14px 14px 14px 16px; margin: 0 0 16px; }
.qd-ic { flex-shrink: 0; width: 46px; height: 46px; border-radius: 15px; background: linear-gradient(135deg, #ff2d7a, #ff7a45); color: #fff; display: flex; align-items: center; justify-content: center; }
.qd-txt { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.qd-kick { font-size: 11px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; color: #ff2d7a; }
.qd-q { font-size: 15.5px; line-height: 1.3; }
.qd-a { font-size: 13.5px; color: #3a3a44; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.qd-hint { font-size: 12.5px; color: var(--muted); line-height: 1.35; }
.qd-a[hidden], .qd-hint[hidden] { display: none; }
.qd-btn { flex-shrink: 0; border: none; border-radius: 999px; background: var(--ink); color: #fff; font-weight: 700; font-size: 14px; padding: 10px 16px; font-family: inherit; cursor: pointer; }
.qd-overlay { position: fixed; inset: 0; z-index: 400; background: rgba(0,0,0,0); display: flex; align-items: flex-end; justify-content: center; pointer-events: none; transition: background .2s; }
.qd-overlay.open { background: rgba(0,0,0,.5); pointer-events: auto; }
.qd-box { width: 100%; max-width: 560px; box-sizing: border-box; background: #fff; border-radius: 30px 30px 0 0; padding: 26px 22px calc(20px + env(safe-area-inset-bottom)); transform: translateY(100%); transition: transform .22s ease-out; margin: 0; }
.qd-overlay.open .qd-box { transform: none; }
.qd-box h2 { font-size: 23px; font-weight: 800; letter-spacing: -.4px; margin: 6px 0 16px; line-height: 1.25; }
.qd-box textarea { width: 100%; box-sizing: border-box; border: 2px solid #ececf0; border-radius: 16px; padding: 14px; font-size: 16px; font-family: inherit; resize: none; margin: 0; }
.qd-box textarea:focus { outline: none; border-color: #ff2d7a; }
.qd-meta { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--muted); margin: 8px 2px 14px; }
.qd-err { color: #c0392b; font-weight: 600; }
.qd-save { width: 100%; border: none; border-radius: 999px; background: linear-gradient(135deg, #ff2d7a, #ff7a45); color: #fff; font-size: 16.5px; font-weight: 800; padding: 16px; font-family: inherit; cursor: pointer; }
.qd-save:disabled { opacity: .6; }
.qd-cancel { width: 100%; border: none; background: none; padding: 14px; margin-top: 4px; font-size: 15.5px; font-weight: 600; color: var(--muted); font-family: inherit; cursor: pointer; }

/* temat na start w rozmowie */
.chat-topic { flex-shrink: 0; display: flex; align-items: center; gap: 10px; background: #fff0f5; border-radius: 16px; padding: 10px 10px 10px 12px; margin: 0 0 8px; }
.chat-topic-ic { font-size: 22px; flex-shrink: 0; }
.chat-topic-txt { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.chat-topic-txt small { font-size: 12px; color: var(--muted); }
.chat-topic-txt b { font-size: 14px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.chat-topic-btn { flex-shrink: 0; border: none; border-radius: 999px; background: #ff2d7a; color: #fff; font-weight: 700; font-size: 13.5px; padding: 9px 14px; font-family: inherit; cursor: pointer; }

/* ===== 2.4.0: pasek pelnego profilu ===== */
.pc-card { background: #fff; border-radius: 18px; padding: 16px; margin-bottom: 12px; }
.pc-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.pc-top b { font-size: 16px; }
.pc-reward { font-size: 12.5px; font-weight: 800; background: #fdf3dc; color: #9a6a12; border-radius: 999px; padding: 5px 10px; }
.pc-reward .coin-ic { color: #d9a441; }
.pc-bar { height: 9px; border-radius: 999px; background: #efeff3; margin: 12px 0 10px; overflow: hidden; }
.pc-bar span { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, #ff2d7a, #ff7a45); }
.pc-sub { font-size: 13.5px; color: var(--muted); margin: 0 0 10px; }
.pc-items { display: flex; flex-wrap: wrap; gap: 8px; }
.pc-item { font-size: 13.5px; font-weight: 700; color: var(--ink); background: #f4f4f7; border-radius: 999px; padding: 8px 12px; text-decoration: none; }
.pc-item.more { background: none; color: var(--muted); }
.share-reward { display: inline-flex; align-items: center; gap: 5px; margin-top: 8px; font-size: 12.5px; font-weight: 800; background: #fdf3dc; color: #9a6a12; border-radius: 999px; padding: 5px 10px; }
.share-reward .coin-ic { color: #d9a441; }

/* ===== 2.5.0 ===== */
.pv-stat .v { font-size: 16px; line-height: 1.25; overflow-wrap: anywhere; }
.pv-stat .l { font-size: 12.5px; }
.shop-hero-ic { width: 60px; height: 60px; border-radius: 18px; }
.shop-hero-ic svg { width: 40px; height: 40px; display: block; }
.shop-hero.active .shop-hero-ic { background: rgba(255,255,255,.18); color: #ffe08a; }
.pe-photos .slot { position: relative; }
.pe-main-badge { position: absolute; left: 8px; bottom: 8px; background: linear-gradient(135deg, #ff2d7a, #ff7a45); color: #fff; font-size: 12px; font-weight: 800; padding: 5px 10px; border-radius: 999px; box-shadow: 0 4px 12px rgba(0,0,0,.2); }
.pe-main-form { position: absolute; left: 8px; bottom: 8px; margin: 0; }
.pe-main-btn { border: none; background: rgba(20,20,28,.72); color: #fff; font-size: 12px; font-weight: 700; padding: 6px 10px; border-radius: 999px; cursor: pointer; font-family: inherit; }
.pe-photos .slot:not(.big) .pe-main-btn span { display: none; }
.pe-photos .slot:not(.big) .pe-main-btn { width: 32px; height: 32px; padding: 0; font-size: 15px; }
.pe-photos .slot.is-main { box-shadow: 0 0 0 3px #ff2d7a; }

/* ===== 2.6.0: czat - zdjecia, nagrania, ostrzezenia ===== */
.chat-attach { flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%; border: none; background: #f2f2f4; color: var(--ink); display: flex; align-items: center; justify-content: center; cursor: pointer; }
.chat-attach:active { transform: scale(.94); }
.chat-attach[hidden] { display: none; }
.chat-form { position: relative; }
.chat-rec { position: absolute; inset: 6px 0; z-index: 3; display: flex; align-items: center; gap: 10px; background: #fff; border-radius: 999px; padding: 0 6px 0 14px; box-shadow: 0 0 0 2px #ff2d7a inset; }
.chat-rec[hidden] { display: none; }
.chat-rec-dot { width: 11px; height: 11px; border-radius: 50%; background: #e5395b; animation: dtPulse 1.2s infinite; flex-shrink: 0; }
.chat-rec-time { font-weight: 800; font-variant-numeric: tabular-nums; }
.chat-rec-hint { flex: 1; min-width: 0; font-size: 13px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.chat-rec-cancel, .chat-rec-send { border: none; border-radius: 999px; padding: 9px 14px; font-weight: 700; font-family: inherit; cursor: pointer; }
.chat-rec-cancel { background: #f2f2f4; color: var(--ink); }
.chat-rec-send { background: linear-gradient(135deg, #ff2d7a, #ff7a45); color: #fff; }
.chat-thread .msg-img { display: block; border-radius: 18px; overflow: hidden; max-width: 240px; background: #eee; }
.chat-thread .msg-img img { display: block; width: 100%; height: auto; max-height: 320px; object-fit: cover; }
.chat-thread .msg .body.voice { display: flex; align-items: center; gap: 8px; padding: 6px 10px; }
.chat-thread .msg .body.voice audio { height: 36px; max-width: 220px; }
.chat-thread .msg.mine .body.voice audio { filter: invert(1) hue-rotate(180deg); }
.voice-len { font-size: 12px; opacity: .75; }
.chat-thread .msg.sending { opacity: .6; }
.msg-warn { margin-top: 5px; max-width: 280px; font-size: 12.5px; line-height: 1.4; background: #fff4e0; color: #8a5300; border-radius: 12px; padding: 7px 10px; }

/* ===== 2.6.0: moderacja zdjec w profilu ===== */
.pe-pending { position: absolute; left: 8px; top: 8px; background: rgba(255,244,224,.95); color: #8a5300; font-size: 11.5px; font-weight: 800; padding: 4px 9px; border-radius: 999px; }

/* ===== 2.6.0: wyroznienie ===== */
.bo-card { display: flex; align-items: center; gap: 14px; background: linear-gradient(135deg, #fff3e6, #ffe9f1); border-radius: 18px; padding: 14px; margin-bottom: 12px; }
.bo-card.on { background: linear-gradient(135deg, #ff7a45, #ff2d7a); color: #fff; }
.bo-ic { flex-shrink: 0; width: 48px; height: 48px; border-radius: 15px; background: linear-gradient(135deg, #ffb347, #ff5a36); color: #fff; display: flex; align-items: center; justify-content: center; }
.bo-card.on .bo-ic { background: rgba(255,255,255,.22); }
.bo-txt { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.bo-txt b { font-size: 15.5px; }
.bo-txt small { font-size: 12.5px; line-height: 1.4; color: var(--muted); }
.bo-card.on .bo-txt small { color: rgba(255,255,255,.9); }
.bo-btn { flex-shrink: 0; border: none; border-radius: 999px; background: var(--ink); color: #fff; font-weight: 800; font-size: 14px; padding: 10px 14px; font-family: inherit; cursor: pointer; white-space: nowrap; }
.bo-card.on .bo-btn { background: #fff; color: #d61f5f; }
.bo-btn .coin-ic { color: #ffd27a; }
.bo-card.on .bo-btn .coin-ic { color: #d9a441; }
.bo-btn:disabled { opacity: .6; }
.dc-photo { position: relative; }
.dc-boost { position: absolute; top: 8px; left: 8px; z-index: 1; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.92); display: flex; align-items: center; justify-content: center; font-size: 16px; box-shadow: 0 2px 8px rgba(0,0,0,.15); }

/* ===== 2.7.0: odwiedziny profilu ===== */
.vs-hero { display: flex; align-items: center; gap: 14px; background: linear-gradient(135deg, #fff0f5, #fff4ec); border-radius: 20px; padding: 16px; margin-bottom: 16px; }
.vs-ic { flex-shrink: 0; width: 52px; height: 52px; border-radius: 16px; background: linear-gradient(135deg, #ff2d7a, #ff7a45); color: #fff; display: flex; align-items: center; justify-content: center; }
.vs-hero b { display: block; font-size: 18px; }
.vs-hero div span { display: block; font-size: 13.5px; color: var(--muted); margin-top: 2px; }
.vs-when { text-align: center; font-size: 12.5px; color: var(--muted); padding: 8px 6px 10px; }
.vs-badge { flex-shrink: 0; min-width: 26px; height: 26px; padding: 0 8px; border-radius: 999px; background: #ff2d7a; color: #fff; font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; box-sizing: border-box; }
.vs-strip { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; background: #fff0f5; color: var(--ink); border-radius: 14px; padding: 11px 14px; margin-bottom: 18px; font-size: 14px; text-decoration: none; }
.vs-strip span { margin-left: auto; font-weight: 800; color: #ff2d7a; }

/* ===== 2.7.0: pole wiadomosci w stylu komunikatora ===== */
.chat-screen .chat-form { gap: 8px; align-items: center; }
.cf-field {
    position: relative; flex: 1; min-width: 0; display: flex; align-items: center; gap: 2px;
    min-height: 50px; padding: 0 5px; box-sizing: border-box;
    background: #fff; border: 1.5px solid #e7e6ec; border-radius: 26px;
    transition: border-color .15s, box-shadow .15s;
}
.cf-field:focus-within { border-color: #ff2d7a; box-shadow: 0 0 0 4px rgba(255, 45, 122, .1); }
.cf-field input[type=text] {
    flex: 1; min-width: 0; margin: 0; padding: 12px 6px; border: none !important; background: transparent !important;
    box-shadow: none !important; outline: none; font-size: 16px; font-family: inherit; color: var(--ink);
}
.cf-ic, .cf-field .emoji-toggle {
    flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%; border: none; background: none; padding: 0;
    color: #8f8b9c; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 0;
    transition: color .15s, background .15s;
}
.cf-ic:hover, .cf-field .emoji-toggle:hover { color: var(--ink); background: #f4f3f7; }
.cf-round {
    flex-shrink: 0; width: 50px; height: 50px; border-radius: 50%; border: none; padding: 0; cursor: pointer;
    display: flex; align-items: center; justify-content: center; color: #fff; transition: transform .12s, opacity .15s;
}
.cf-round:active { transform: scale(.92); }
.cf-mic { background: var(--ink); }
.cf-send { background: linear-gradient(135deg, #ff2d7a, #ff7a45); box-shadow: 0 6px 16px rgba(255, 45, 122, .3); }
.cf-send svg { margin-left: 3px; }
.chat-form .cf-send { display: none; }
.chat-form.has-text .cf-send, .chat-form.no-mic .cf-send { display: flex; }
.chat-form.has-text .cf-mic { display: none; }
.chat-form .cf-rec-send { display: none !important; }
.chat-form.recording .cf-rec-send { display: flex !important; }
.chat-form.recording .cf-mic, .chat-form.recording #chatSendBtn { display: none !important; }
.cf-mic[hidden] { display: none !important; }
.cf-rec { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; gap: 8px; padding: 0 14px 0 5px; background: #fff; border-radius: 26px; }
.cf-rec[hidden] { display: none; }
.cf-trash { color: #e5395b; }
.cf-rec-dot { flex-shrink: 0; width: 9px; height: 9px; border-radius: 50%; background: #e5395b; animation: dtPulse 1.2s infinite; }
.cf-wave { flex: 1; min-width: 0; height: 30px; display: block; }
.cf-rec-time { flex-shrink: 0; font-size: 14px; font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }
.chat-form.recording .cf-field { border-color: #ff2d7a; }

/* ===== 2.7.0: haslo i e-mail ===== */
.sl-card { background: #fff; border-radius: 20px; padding: 18px; margin-bottom: 14px; }
.sl-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.sl-head b { display: block; font-size: 16.5px; }
.sl-head small { display: block; font-size: 13px; color: var(--muted); margin-top: 1px; }
.sl-ic { flex-shrink: 0; width: 44px; height: 44px; border-radius: 14px; background: #fff0f5; color: #ff2d7a; display: flex; align-items: center; justify-content: center; }
.sl-form { margin: 0; }
.sl-form label { display: block; font-size: 13.5px; font-weight: 700; margin: 12px 0 6px; }
.sl-form input[type=email], .sl-form input[type=password], .sl-form input[type=text] { width: 100%; box-sizing: border-box; margin: 0; padding: 13px 14px; border-radius: 14px; border: 1.5px solid #e7e6ec; background: #f8f8fa; font-size: 16px; font-family: inherit; }
.sl-form input:focus { outline: none; border-color: #ff2d7a; background: #fff; }
.sl-pass { position: relative; }
.sl-pass input { padding-right: 48px !important; }
.sl-eye { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); width: 38px; height: 38px; border: none; background: none; color: #9a97a8; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.sl-eye.on { color: #ff2d7a; }
.sl-btn { width: 100%; margin-top: 16px; border: none; border-radius: 999px; padding: 15px; background: var(--ink); color: #fff; font-size: 16px; font-weight: 700; font-family: inherit; cursor: pointer; }
.sl-btn:disabled { opacity: .6; }
.sl-hint { font-size: 13px; color: var(--muted); margin: 10px 0 0; line-height: 1.45; }
.sl-pending { background: #fff6e8; color: #6b4a00; border-radius: 14px; padding: 12px 14px; font-size: 14px; line-height: 1.5; margin-bottom: 4px; }
.sl-link { border: none; background: none; padding: 0; color: #ff2d7a; font-weight: 700; font-size: 14px; font-family: inherit; cursor: pointer; }

/* ===== 2.7.1: odtwarzacz nagran ===== */
.chat-thread .msg .body.voice {
    display: flex; align-items: center; gap: 10px; padding: 9px 12px 9px 9px; width: 232px; box-sizing: border-box;
}
.vp-play {
    flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; border: none; cursor: pointer; padding: 0;
    display: flex; align-items: center; justify-content: center; transition: transform .12s;
}
.vp-play:active { transform: scale(.92); }
.msg.mine .vp-play { background: rgba(255,255,255,.2); color: #fff; }
.msg.theirs .vp-play { background: var(--ink); color: #fff; }
.vp-play .vp-i-play { margin-left: 2px; }
.vp-play .vp-i-pause, .voice.playing .vp-play .vp-i-play { display: none; }
.voice.playing .vp-play .vp-i-pause { display: block; }
.vp-wave { position: relative; flex: 1 1 auto; min-width: 0; height: 26px; display: block; cursor: pointer; overflow: hidden; }
.vp-bars { position: absolute; inset: 0; display: flex; align-items: center; justify-content: space-between; gap: 2px; }
.vp-bars i { flex: 1 1 0; min-width: 0; border-radius: 99px; background: currentColor; }
.vp-on { clip-path: inset(0 100% 0 0); -webkit-clip-path: inset(0 100% 0 0); transition: clip-path .1s linear, -webkit-clip-path .1s linear; }
.msg.mine .vp-wave { color: rgba(255,255,255,.42); }
.msg.mine .vp-on { color: #fff; }
.msg.theirs .vp-wave { color: #c9c7d2; }
.msg.theirs .vp-on { color: #ff2d7a; }
.vp-time { flex: 0 0 auto; margin-left: 2px; font-size: 12.5px; font-weight: 700; font-variant-numeric: tabular-nums; opacity: .75; white-space: nowrap; }

/* ===== 2.8.0: aplikacja na telefonie i powiadomienia ===== */
.pwa-card { display: flex; align-items: center; gap: 14px; background: #fff; border-radius: 18px; padding: 14px; margin-bottom: 12px; }
.pwa-card[hidden] { display: none; }
.pwa-ic { flex-shrink: 0; width: 46px; height: 46px; border-radius: 14px; overflow: hidden; box-shadow: 0 4px 12px rgba(255,60,110,.25); }
.pwa-ic img { width: 100%; height: 100%; display: block; }
.pwa-txt { flex: 1; min-width: 0; }
.pwa-txt b { display: block; font-size: 16px; }
.pwa-txt small { display: block; font-size: 13px; color: var(--muted); line-height: 1.4; margin-top: 2px; }
.pwa-btn { flex-shrink: 0; border: none; border-radius: 999px; background: linear-gradient(135deg, #ff2d7a, #ff7a45); color: #fff; font-weight: 800; font-size: 14px; padding: 11px 16px; font-family: inherit; cursor: pointer; }
.pwa-btn[hidden] { display: none; }
.push-card { background: #fff; border-radius: 18px; padding: 16px; margin-top: 16px; }
.push-card[hidden] { display: none; }
.push-top { display: flex; align-items: flex-start; gap: 12px; }
.push-ic { flex-shrink: 0; width: 44px; height: 44px; border-radius: 14px; background: #fff0f5; color: #ff2d7a; display: flex; align-items: center; justify-content: center; }
.push-txt b { display: block; font-size: 16px; }
.push-txt small { display: block; font-size: 13px; color: var(--muted); line-height: 1.45; margin-top: 2px; }
.push-btn { width: 100%; margin-top: 14px; border: none; border-radius: 999px; padding: 14px; background: var(--ink); color: #fff; font-size: 15.5px; font-weight: 700; font-family: inherit; cursor: pointer; }
.push-btn.on { background: #f2f2f4; color: var(--ink); }
.push-btn:disabled { opacity: .6; }
.cb-streak { display: flex; justify-content: center; gap: 7px; margin: -6px 0 12px; }
.cb-streak span { width: 30px; height: 30px; border-radius: 50%; background: #f2f2f4; color: var(--muted); font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.cb-streak span.on { background: linear-gradient(135deg, #ff2d7a, #ff7a45); color: #fff; }
.cb-streak-note { font-size: 13.5px !important; color: var(--muted) !important; margin: 0 0 14px !important; }

/* ===== 3.0.0: baner ciasteczek ===== */
.ck-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 500; transform: translateY(110%); transition: transform .28s ease-out; padding: 0 10px calc(10px + env(safe-area-inset-bottom)); }
.ck-bar.ck-on { transform: none; }
.ck-bar.ck-out { transform: translateY(110%); }
.ck-in { max-width: 880px; margin: 0 auto; background: #fff; border-radius: 22px; box-shadow: 0 -6px 40px rgba(40, 10, 30, .18); padding: 18px 20px; display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.ck-txt { flex: 1; min-width: 240px; }
.ck-txt b { display: block; font-size: 16px; margin-bottom: 4px; }
.ck-txt p { margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--muted); }
.ck-txt a { color: var(--primary); font-weight: 700; }
.ck-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.ck-b { border: none; border-radius: 999px; padding: 13px 20px; font-size: 14.5px; font-weight: 700; font-family: inherit; cursor: pointer; }
.ck-b.main { background: linear-gradient(135deg, #ff2d7a, #ff7a45); color: #fff; box-shadow: 0 8px 20px rgba(255, 45, 122, .3); }
.ck-b.ghost { background: #f2f2f4; color: var(--ink); }
@media (max-width: 620px) { .ck-btns { width: 100%; } .ck-b { flex: 1; } }
body.chat-open .ck-bar { display: none; }

/* ===== 3.0.0: czat - pisze, przeczytano, usuwanie ===== */
.chat-thread .msg .time { display: inline-flex; align-items: center; gap: 5px; }
.msg-state { display: inline-flex; color: #a9a7b4; }
.msg-state.read { color: #2ba3ff; }
.chat-thread .msg.typing[hidden] { display: none !important; }
.chat-thread .msg.typing .body { display: flex; gap: 4px; align-items: center; padding: 14px 16px; }
.chat-thread .msg.typing span { width: 7px; height: 7px; border-radius: 50%; background: #a9a7b4; animation: tuDot 1.2s infinite; }
.chat-thread .msg.typing span:nth-child(2) { animation-delay: .18s; }
.chat-thread .msg.typing span:nth-child(3) { animation-delay: .36s; }
@keyframes tuDot { 0%, 60%, 100% { opacity: .35; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
.chat-thread .msg[data-own="1"] { cursor: pointer; -webkit-touch-callout: none; }
.chat-thread .msg.gone { opacity: 0; transform: scale(.9); transition: opacity .2s, transform .2s; }

/* ===== 3.0.0: samouczek ===== */
.tu-overlay { position: fixed; inset: 0; z-index: 430; background: rgba(15,10,20,0); display: flex; align-items: flex-end; justify-content: center; transition: background .22s; }
.tu-overlay.tu-on { background: rgba(15,10,20,.6); }
.tu-overlay.tu-out { background: rgba(15,10,20,0); }
.tu-box { width: 100%; max-width: 520px; box-sizing: border-box; background: #fff; border-radius: 30px 30px 0 0; padding: 28px 24px calc(20px + env(safe-area-inset-bottom)); transform: translateY(100%); transition: transform .24s ease-out; text-align: center; }
.tu-overlay.tu-on .tu-box { transform: none; }
.tu-slides { position: relative; min-height: 210px; }
.tu-slide { display: none; }
.tu-slide.on { display: block; animation: cbIn .25s ease-out; }
.tu-ic { display: flex; align-items: center; justify-content: center; width: 84px; height: 84px; margin: 0 auto 18px; border-radius: 26px; background: linear-gradient(135deg, #fff0f5, #fff4ec); font-size: 40px; }
.tu-slide h2 { font-size: 25px; font-weight: 800; letter-spacing: -.4px; margin: 0 0 10px; }
.tu-slide p { font-size: 16px; line-height: 1.55; color: var(--muted); margin: 0 auto; max-width: 380px; }
.tu-dots { display: flex; justify-content: center; gap: 7px; margin: 18px 0 16px; }
.tu-dots span { width: 8px; height: 8px; border-radius: 999px; background: #e3e1ea; transition: width .2s, background .2s; }
.tu-dots span.on { width: 22px; background: linear-gradient(90deg, #ff2d7a, #ff7a45); }
.tu-next { width: 100%; border: none; border-radius: 999px; padding: 16px; background: linear-gradient(135deg, #ff2d7a, #ff7a45); color: #fff; font-size: 16.5px; font-weight: 800; font-family: inherit; cursor: pointer; }
.tu-skip { width: 100%; border: none; background: none; padding: 14px; margin-top: 4px; font-size: 15px; font-weight: 600; color: var(--muted); font-family: inherit; cursor: pointer; }
.set-row .set-arrow { flex-shrink: 0; font-size: 26px; line-height: 1; color: var(--muted); }

/* ===== 3.3.0: paleta emotikon ===== */
.cf-ic.emoji-toggle.on { color: #ff2d7a; background: #fff0f5; }
.chat-screen .emoji-panel { max-height: 42vh; overflow-y: auto; -webkit-overflow-scrolling: touch; }
