/* ============================================================
   panel.css — Panel klienta AdresDoNajmu.pl
   Paleta: Deep Purple #2E1065, clean white/gray
   ============================================================ */

/* ============================================================
   RESET + BASE
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    color: #1E293B;
    background: #F1F5F9;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
    /* === PRIMARY (Deep Purple #2E1065) — Zsynchronizowane z global.css === */
    --p-primary: #2E1065;
    --p-primary-dark: #1e0a44;
    --p-primary-light: #4a1fa8;
    --p-primary-dim: #ede8ff;
    --p-accent: #7c3aed;

    /* === SURFACE & TEXT === */
    --p-surface: #ffffff;
    --p-surface-base: #F8FAFC;
    --p-bg: #F1F5F9;
    --p-border: #E2E8F0;
    --p-text: #1E293B;
    --p-muted: #64748B;

    /* === STATES === */
    --p-green: #065F46;
    --p-green-bg: #D1FAE5;
    --p-red: #dc2626;
    --p-red-bg: #fee2e2;
    --p-orange: #d97706;
    --p-orange-bg: #fef3c7;

    /* === LAYOUT === */
    --p-sidebar-w: 220px;
    --p-radius: 12px;
    --p-radius-sm: 8px;
    --p-radius-lg: 12px;
    --p-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    --p-shadow-md: 0 10px 40px -15px rgba(15, 23, 42, 0.1);
    --p-shadow-lg: 0 20px 60px -20px rgba(46, 16, 101, 0.15);

    /* === TYPOGRAPHY TOKENS === */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition-base: 0.25s ease;
}

/* ============================================================
   LAYOUT — SIDEBAR + MAIN
   ============================================================ */
.pnl-layout {
    display: flex;
    min-height: 100vh;
}

.pnl-main {
    flex: 1;
    min-width: 0;
    padding: 32px 36px;
    overflow-x: hidden;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.pnl-sidebar {
    width: var(--p-sidebar-w);
    background: var(--p-primary);
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    flex-shrink: 0;
}

/* Logo */
.pnl-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pnl-logo-mark {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pnl-logo-mark img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.pnl-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.pnl-logo-name {
    color: #fff;
    font-weight: 700;
    font-size: 13px;
}

.pnl-logo-sub {
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    font-weight: 400;
}

/* Nav */
.pnl-nav {
    flex: 1;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pnl-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: var(--p-radius-sm);
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

.pnl-nav-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.pnl-nav-item.is-active {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.pnl-nav-item .material-symbols-outlined {
    font-size: 18px;
    flex-shrink: 0;
}

.pnl-nav-sep {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 8px 4px;
}

/* User block at bottom */
.pnl-sidebar-user {
    padding: 12px 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pnl-sidebar-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    flex-shrink: 0;
}

.pnl-sidebar-user-info {
    flex: 1;
    min-width: 0;
}

.pnl-sidebar-user-name {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pnl-sidebar-user-role {
    color: rgba(255, 255, 255, 0.45);
    font-size: 10px;
}

.pnl-sidebar-logout {
    color: rgba(255, 255, 255, 0.4);
    padding: 4px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    transition: color 0.15s;
    flex-shrink: 0;
}

.pnl-sidebar-logout:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================================
   MOBILE — hamburger topbar + bottom sheet drawer
   ============================================================ */

/* Topbar — hidden on desktop */
.pnl-mobile-topbar { display: none; }

/* Backdrop overlay */
.pnl-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 10, 40, 0.55);
    z-index: 99;
    backdrop-filter: blur(2px);
}
.pnl-nav-overlay.is-open { display: block; }

/* Close button — not used in dropdown mode */
.pnl-sidebar-close { display: none; }

@media (max-width: 768px) {

    .pnl-layout { flex-direction: column; }

    /* ── Sidebar: выезжает справа (как на основном сайте) ── */
    .pnl-sidebar {
        position: fixed;
        top: 54px;
        right: 0;
        bottom: 0;
        left: auto;
        width: 280px;
        max-width: 85vw;
        z-index: 100;
        border-radius: 0;
        height: auto;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.28s ease;
    }
    .pnl-sidebar.is-open {
        transform: translateX(0);
    }

    /* Скрываем блоки, не нужные в мобильном меню */
    .pnl-logo         { display: none; }
    .pnl-sidebar-user { display: none; }

    /* Nav — одна колонка */
    .pnl-nav {
        display: flex;
        flex-direction: column;
        padding: 16px 12px;
        gap: 2px;
    }
    .pnl-nav-sep { margin: 6px 4px; }

    /* ── Мобильный топбар (fixed — всегда виден) ── */
    .pnl-mobile-topbar {
        display: flex;
        align-items: center;
        padding: 0 14px;
        height: 54px;
        background: var(--p-primary);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 110;
    }

    /* LEFT — выход */
    .pnl-mobile-logout {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 9px;
        background: rgba(255,255,255,0.08);
        color: rgba(255,255,255,0.7);
        flex-shrink: 0;
        transition: background .15s, color .15s;
    }
    .pnl-mobile-logout:hover { background: rgba(255,255,255,0.15); color: #fff; }
    .pnl-mobile-logout .material-symbols-outlined { font-size: 18px; }

    /* CENTER — лого */
    .pnl-mobile-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        flex: 1;
    }
    .pnl-mobile-logo img {
        width: 28px;
        height: 28px;
        object-fit: contain;
        background: #fff;
        border-radius: 7px;
        padding: 2px;
        flex-shrink: 0;
    }
    .pnl-mobile-logo span {
        color: #fff;
        font-size: 14px;
        font-weight: 700;
    }

    /* RIGHT — бургер */
    .pnl-hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 38px;
        height: 38px;
        padding: 7px;
        border-radius: 9px;
        background: rgba(255,255,255,0.08);
        border: none;
        cursor: pointer;
        flex-shrink: 0;
        transition: background .15s;
    }
    .pnl-hamburger:hover { background: rgba(255,255,255,0.16); }
    .pnl-hamburger span {
        display: block;
        width: 18px;
        height: 2px;
        background: rgba(255,255,255,0.85);
        border-radius: 2px;
    }

    /* Overlay (затемнение за панелью) */
    .pnl-nav-overlay.is-open {
        display: block;
        z-index: 99;
    }

    /* Отступ сверху = топбар (54px) + воздух (28px) */
    .pnl-main { padding: 82px 16px 32px; }
}

/* ============================================================
   TABLET — 769px – 1100px
   ============================================================ */
@media (min-width: 769px) and (max-width: 1100px) {
    .pnl-main {
        padding: 28px 24px 32px;
    }
    .pnl-sidebar {
        width: 200px;
    }
}

/* ============================================================
   PAGE HEADER
   ============================================================ */
.pnl-page-header {
    margin-bottom: 24px;
}

.pnl-page-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--p-text);
    line-height: 1.2;
}

.pnl-page-sub {
    font-size: 13px;
    color: var(--p-muted);
    margin-top: 4px;
}

/* ============================================================
   CARDS / PANELS
   ============================================================ */
.pnl-card {
    background: var(--p-surface);
    border-radius: var(--p-radius);
    border: 1px solid var(--p-border);
    padding: 24px;
}

.pnl-card+.pnl-card {
    margin-top: 16px;
}

.pnl-card-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--p-text);
    margin-bottom: 16px;
}

/* ============================================================
   STATS ROW
   ============================================================ */
.pnl-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.pnl-stat {
    background: var(--p-surface);
    border: 1px solid var(--p-border);
    border-radius: var(--p-radius);
    padding: 18px 20px;
}

.pnl-stat-label {
    font-size: 12px;
    color: var(--p-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.pnl-stat-value {
    font-size: 26px;
    font-weight: 700;
    color: var(--p-text);
    line-height: 1;
}

.pnl-stat-value span {
    font-size: 13px;
    font-weight: 400;
    color: var(--p-muted);
    margin-left: 4px;
}

/* ============================================================
   TABLE
   ============================================================ */
.pnl-table-wrap {
    overflow-x: auto;
    border-radius: var(--p-radius);
    border: 1px solid var(--p-border);
    background: var(--p-surface);
}

.pnl-table {
    width: 100%;
    border-collapse: collapse;
}

.pnl-table th {
    font-size: 11px;
    font-weight: 600;
    color: var(--p-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--p-border);
    white-space: nowrap;
    background: #FAFAFA;
}

.pnl-table td {
    padding: 13px 16px;
    border-bottom: 1px solid var(--p-border);
    font-size: 13px;
    color: var(--p-text);
    vertical-align: middle;
}

.pnl-table tr:last-child td {
    border-bottom: none;
}

.pnl-table tbody tr:hover td {
    background: #FAFBFF;
}

/* ============================================================
   BADGES / STATUS
   ============================================================ */
.pnl-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 9px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.pnl-badge--green {
    background: var(--p-green-bg);
    color: var(--p-green);
}

.pnl-badge--red {
    background: var(--p-red-bg);
    color: var(--p-red);
}

.pnl-badge--orange {
    background: var(--p-orange-bg);
    color: var(--p-orange);
}

.pnl-badge--purple {
    background: var(--p-primary-dim);
    color: var(--p-primary-light);
}

/* ============================================================
   BUTTONS
   ============================================================ */
/* ============================================================
   BUTTONS (Synchronizacja ze stylem Home — Bold, Uppercase, Goes)
   ============================================================ */
.pnl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.875rem 1.5rem;
    border-radius: var(--p-radius-sm);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    text-decoration: none;
    white-space: nowrap;
}

.pnl-btn--primary {
    background: var(--p-primary);
    color: #fff;
}

/* Animacja GOES (Ghost hover) */
.pnl-btn--primary:hover {
    background: transparent;
    color: var(--p-primary);
    border-color: var(--p-primary);
    box-shadow: none;
}

.pnl-btn--accent {
    background: var(--p-accent);
    color: #fff;
}

.pnl-btn--accent:hover {
    opacity: 0.9;
}

.pnl-btn--outline {
    background: transparent;
    color: var(--p-text);
    border: 2px solid var(--p-border);
}

/* Ghost hover — рамка и текст становятся фиолетовыми */
.pnl-btn--outline:hover {
    background: transparent;
    color: var(--p-primary);
    border-color: var(--p-primary);
}

.pnl-btn--full {
    width: 100%;
}

.pnl-btn .material-symbols-outlined {
    font-size: 16px;
}

/* ============================================================
   FORMS
   ============================================================ */
.pnl-field {
    margin-bottom: 16px;
}

.pnl-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--p-text);
    margin-bottom: 6px;
}

.pnl-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--p-border);
    border-radius: var(--p-radius-sm);
    font-size: 14px;
    font-family: inherit;
    color: var(--p-text);
    background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s;
    outline: none;
}

.pnl-input:focus {
    border-color: var(--p-accent);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.pnl-input::placeholder {
    color: #94A3B8;
}

/* ============================================================
   ALERTS
   ============================================================ */
.pnl-alert {
    padding: 12px 16px;
    border-radius: var(--p-radius-sm);
    font-size: 13px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.pnl-alert--error {
    background: var(--p-red-bg);
    color: var(--p-red);
    border-left: 3px solid var(--p-red);
}

.pnl-alert--success {
    background: var(--p-green-bg);
    color: var(--p-green);
    border-left: 3px solid var(--p-green);
}

.pnl-alert--info {
    background: var(--p-primary-dim);
    color: var(--p-primary-light);
}

/* ============================================================
   PACKAGES GRID
   ============================================================ */
.pnl-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 8px;
}

.pnl-pkg {
    border: 2px solid var(--p-border);
    border-radius: var(--p-radius);
    padding: 24px;
    background: var(--p-surface);
    position: relative;
    transition: border-color 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.pnl-pkg:hover {
    border-color: var(--p-accent);
    box-shadow: var(--p-shadow-md);
}

/* Starter */
.pnl-pkg--starter {
    background: #fdfcff;
}

/* Pro — тёмный фон, белый текст */
.pnl-pkg--featured {
    background: var(--p-primary);
    border-color: var(--p-primary);
    box-shadow: 0 8px 32px -8px rgba(46,16,101,0.35);
}

.pnl-pkg--featured:hover {
    border-color: var(--p-primary-light);
    box-shadow: 0 12px 40px -8px rgba(46,16,101,0.45);
}

/* Enterprise — premium рамка */
.pnl-pkg--enterprise {
    border: 2px dashed var(--p-border);
    background: var(--p-surface-base);
}

.pnl-pkg-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--p-accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(124,58,237,0.3);
}

.pnl-pkg-icon {
    font-size: 22px;
    margin-bottom: 8px;
    display: block;
}

.pnl-pkg-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--p-text);
    margin-bottom: 4px;
}

.pnl-pkg--featured .pnl-pkg-name {
    color: #fff;
}

.pnl-pkg-discount {
    font-size: 11px;
    font-weight: 700;
    color: var(--p-accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.pnl-pkg--featured .pnl-pkg-icon {
    color: rgba(255,255,255,0.9);
}

.pnl-pkg--featured .pnl-pkg-discount {
    color: rgba(255,255,255,0.65);
}

.pnl-pkg-qty {
    font-size: 13px;
    color: var(--p-muted);
    margin-bottom: 16px;
}

.pnl-pkg--featured .pnl-pkg-qty {
    color: rgba(255,255,255,0.6);
}

.pnl-pkg-qty strong {
    color: var(--p-text);
    font-size: 15px;
}

.pnl-pkg--featured .pnl-pkg-qty strong {
    color: #fff;
}

.pnl-pkg-price {
    font-size: 30px;
    font-weight: 800;
    color: var(--p-primary);
    margin-bottom: 4px;
    line-height: 1;
}

.pnl-pkg--featured .pnl-pkg-price {
    color: #fff;
}

.pnl-pkg-price-unit {
    font-size: 12px;
    color: var(--p-muted);
    margin-bottom: 12px;
}

.pnl-pkg--featured .pnl-pkg-price-unit {
    color: rgba(255,255,255,0.55);
}

.pnl-pkg-savings {
    display: inline-block;
    align-self: flex-start;
    font-size: 12px;
    font-weight: 600;
    color: var(--p-green);
    background: var(--p-green-bg);
    border-radius: 20px;
    padding: 3px 10px;
    margin-bottom: 20px;
}

.pnl-pkg--featured .pnl-pkg-savings {
    color: #065F46;
    background: #a7f3d0;
}

/* Белая кнопка для Pro (тёмный фон) */
.pnl-btn--white {
    background: #fff;
    color: var(--p-primary);
    border: 2px solid #fff;
    font-weight: 700;
}

/* Ghost hover на тёмном фоне — фон исчезает, рамка и текст белые */
.pnl-btn--white:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

/* ============================================================
   LOGIN PAGE (Otodom Style — Split Layout)
   ============================================================ */
body.pnl-auth-body {
    background: #fff;
    min-height: 100vh;
    display: block;
    /* Przestawiamy z flexa na blokowy dla układu split */
}

.auth-split-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* Strony auth bez panelu bocznego (register, forgot, verify) */
.pnl-auth-center {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* Lewa strona — Formularz (Szerokość 1090 proporcjonalnie) */
.auth-split-form-side {
    flex: 1090;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Przesunięcie do prawej krawędzi panelu na desktopie */
    padding: 40px 250px 40px 40px;
    /* Zwiększony padding z prawej by odsunąć od środka bardziej w lewo */
    background: #fff;
}

/* Prawa strona — Trust Panel (Szerokość 810 proporcjonalnie) */
.auth-split-trust-side {
    flex: 810;
    background: var(--p-surface-base);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Zmieniamy na lewo dla lepszego balansu przy 3 liniach */
    justify-content: center;
    padding: 80px;
    border-left: 1px solid var(--p-border);
}

@media (max-width: 1024px) {
    .auth-split-trust-side {
        display: none;
        /* Ukrywamy panel zaufania na mniejszych ekranach */
    }

    .auth-split-form-side {
        justify-content: center;
        /* Centrujemy formularz gdy nie ma panelu bocznego */
        padding: 40px;
    }
}

.pnl-auth-card {
    width: 100%;
    max-width: 440px;
    /* Usuwamy obramowanie karty, bo tło jest białe */
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.pnl-auth-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
}

.pnl-auth-logo-mark {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pnl-auth-logo-mark img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.pnl-auth-logo-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--p-text);
}

.pnl-auth-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--p-primary);
    /* Nasz firmowy fioletowy */
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.pnl-auth-sub {
    font-size: 16px;
    color: var(--p-muted);
    margin-bottom: 32px;
    line-height: 1.5;
}

/* Trust Panel Content */
.trust-illustration {
    width: 100%;
    max-width: 400px;
    margin-bottom: 40px;
}

.trust-illustration svg {
    width: 100%;
    height: auto;
}

.trust-illustration-img {
    width: 100%;
    max-width: 460px;
    max-height: 38vh;
    height: auto;
    object-fit: contain;
    display: block;
}

.trust-title {
    font-size: 42px;
    /* Większy font dla 3 linii */
    font-weight: 900;
    color: #000;
    /* Domyślnie czarny jak w screenie */
    margin-bottom: 32px;
    text-align: left;
    line-height: 1.1;
    max-width: 500px;
}

.trust-title span.text-brand {
    color: var(--p-primary);
}

.trust-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 400px;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--p-text);
    font-weight: 500;
}

.trust-item .material-symbols-outlined {
    color: #22c55e;
    font-size: 22px;
    font-variation-settings: 'FILL' 1, 'wght' 600;
}

.pnl-auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    color: var(--p-muted);
    font-size: 12px;
}

.pnl-auth-divider::before,
.pnl-auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--p-border);
}

.pnl-auth-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: var(--p-muted);
}

.pnl-auth-footer a {
    color: var(--p-accent);
    font-weight: 600;
}

.pnl-auth-footer a:hover {
    text-decoration: underline;
}

/* Google button */
.pnl-btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 10px 16px;
    border: 1px solid var(--p-border);
    border-radius: var(--p-radius-sm);
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    color: var(--p-text);
    cursor: pointer;
    transition: background 0.15s, box-shadow 0.15s;
    font-family: inherit;
}

.pnl-btn-google:hover {
    background: #f8f8f8;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.pnl-btn-google svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ============================================================
   EMPTY STATE
   ============================================================ */
.pnl-empty {
    text-align: center;
    padding: 48px 24px;
}

.pnl-empty-icon {
    font-size: 48px;
    color: var(--p-border);
    margin-bottom: 12px;
}

.pnl-empty-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--p-text);
    margin-bottom: 6px;
}

.pnl-empty-sub {
    font-size: 13px;
    color: var(--p-muted);
    margin-bottom: 20px;
}

/* ============================================================
   CREDITS BAR
   ============================================================ */
.pnl-credits-bar {
    background: var(--p-primary-dim);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--p-radius);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
}

.pnl-credits-info {
    font-size: 13px;
    color: var(--p-primary-light);
}

.pnl-credits-info strong {
    font-size: 22px;
    font-weight: 800;
    color: var(--p-primary);
    display: block;
    line-height: 1;
    margin-bottom: 2px;
}

/* (old RESPONSIVE block removed — handled by main mobile section above) */

/* === NOTARY NOTICE (Dla Pakietu 777) === */
.pnl-order-notice {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: var(--radius-lg);
    padding: var(--space-4) var(--space-5);
}

.pnl-order-notice-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.pnl-order-notice-icon .material-symbols-outlined {
    color: #c2410c;
    font-size: 22px;
}

.pnl-order-notice-content {
    flex: 1;
}

.pnl-order-notice-content strong {
    display: block;
    font-size: var(--text-sm);
    font-weight: var(--font-weight-bold);
    color: #9a3412;
    margin-bottom: var(--space-1);
}

.pnl-order-notice-content p {
    font-size: var(--text-sm);
    color: #7c2d12;
    line-height: 1.5;
    margin: 0;
}

.pnl-order-notice-content p a {
    color: #c2410c;
    text-decoration: underline;
    font-weight: 600;
}

@media (max-width: 600px) {
    .pnl-order-notice {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }
}