:root {
    --bg: #f3f6fb;
    --surface: #ffffff;
    --surface-2: #eef5f3;
    --text: #071224;
    --muted: #667085;
    --line: #dfe5ef;
    --primary: #08786f;
    --primary-2: #065f57;
    --accent: #d6a829;
    --danger: #b42318;
    --success: #009b4e;
    --shadow: 0 18px 45px rgba(15, 23, 42, .08);
    --radius: 22px;
    --topbar-height: 74px;
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow-x: hidden;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

body.app-body {
    min-height: 100vh;
    padding-top: var(--topbar-height);
}

body.guest-body {
    min-height: 100vh;
    background:
        linear-gradient(135deg, rgba(8, 120, 111, .12), transparent 34%),
        linear-gradient(315deg, rgba(214, 168, 41, .14), transparent 35%),
        #f4f7f3;
}

a {
    color: var(--primary);
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    height: var(--topbar-height);
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 max(22px, calc((100vw - 1280px) / 2 + 22px));
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-weight: 950;
    white-space: nowrap;
    min-width: 0;
}

.brand-mark {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), #064e48);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 950;
    box-shadow: 0 10px 24px rgba(8, 120, 111, .25);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 0;
}

.nav a {
    color: #52617a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    padding: 11px 13px;
    border-radius: 999px;
    white-space: nowrap;
}

.nav a:hover {
    color: var(--primary);
    background: #e8f5ee;
}

.logout {
    margin: 0;
    flex: 0 0 auto;
}

.icon-button {
    border: 0;
    background: #071224;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    padding: 11px 16px;
    border-radius: 999px;
    cursor: pointer;
}

.icon-button:hover {
    background: var(--primary);
}

.shell {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 22px 56px;
}

.guest-body .shell {
    width: min(100% - 28px, 1180px);
    margin: 0 auto;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 10px;
    font-size: clamp(2rem, 5vw, 4.2rem);
    line-height: 1;
}

h2 {
    font-size: 1.25rem;
}

.eyebrow {
    margin-bottom: 12px;
    color: var(--accent);
    font-size: .76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.muted {
    color: var(--muted);
}

.alert,
.notice {
    width: 100%;
    margin-bottom: 20px;
    padding: 15px 18px;
    border-radius: 16px;
    font-weight: 850;
    border: 1px solid var(--line);
    background: #fff8e8;
    color: #6a4a13;
    box-shadow: var(--shadow);
}

.alert-success {
    background: #ecfdf3;
    color: var(--success);
    border-color: #abefc6;
}

.alert-error,
.alert-danger {
    background: #fef3f2;
    color: var(--danger);
    border-color: #fecdca;
}

.alert-warning {
    background: #fffaeb;
    color: #b54708;
    border-color: #fedf89;
}

.alert-info {
    background: #eff8ff;
    color: #175cd3;
    border-color: #b2ddff;
}

.form-card,
.metric,
.product-card,
.referral-box,
.table-wrap {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.form-card {
    display: grid;
    gap: 16px;
    padding: 22px;
}

.grid-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.span-2 {
    grid-column: span 2;
}

label {
    display: grid;
    gap: 7px;
    color: #3b3d3b;
    font-size: .92rem;
    font-weight: 700;
}

input,
select {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid #cfc7bd;
    border-radius: 12px;
    background: #fff;
    color: var(--text);
    font: inherit;
}

input[type="file"] {
    padding: 11px;
    line-height: 1.2;
}

input:focus,
select:focus {
    border-color: var(--primary);
    outline: 3px solid rgba(8, 120, 111, .16);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 16px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-weight: 900;
    font-family: inherit;
    cursor: pointer;
    text-align: center;
}

.button.primary {
    background: var(--primary);
    color: #fff;
}

.button.primary:hover {
    background: var(--primary-2);
}

.button.secondary {
    border-color: transparent;
    background: #071224;
    color: #fff;
}

.button.danger {
    border-color: rgba(180, 35, 24, .28);
    background: rgba(180, 35, 24, .08);
    color: var(--danger);
}

.button.tiny {
    min-height: 34px;
    padding: 7px 11px;
    font-size: .82rem;
    border-radius: 11px;
}

.button.full {
    width: 100%;
}

.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(31, 34, 32, .10);
}

.button:active {
    transform: translateY(0);
    box-shadow: none;
}

.form-footer {
    margin-bottom: 0;
    color: var(--muted);
    text-align: center;
}

.page-head {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), #071224);
    color: #fff;
    padding: 34px 32px;
    border-radius: 0 0 34px 34px;
    margin-bottom: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    box-shadow: var(--shadow);
}

.page-head h1 {
    margin-bottom: 0;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 950;
    letter-spacing: -.04em;
}

.page-head .eyebrow {
    color: var(--accent);
    margin-bottom: 8px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #ece6dc;
    color: #51493e;
    font-size: .82rem;
    font-weight: 900;
    white-space: nowrap;
    text-transform: uppercase;
}

.page-head .status-pill {
    background: rgba(255,255,255,.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,.25);
}

.status-pill.approved,
.status-pill.active,
.status-pill.paid,
.status-pill.completed {
    background: rgba(0, 155, 78, .12);
    color: var(--success);
}

.status-pill.pending,
.status-pill.proof_sent,
.status-pill.waiting_proof {
    background: rgba(214, 168, 41, .18);
    color: #8b5b15;
}

.status-pill.rejected,
.status-pill.failed,
.status-pill.canceled,
.status-pill.cancelled {
    background: rgba(180, 35, 24, .12);
    color: var(--danger);
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.metric {
    min-width: 0;
    min-height: 118px;
    padding: 24px;
    overflow: hidden;
    position: relative;
}

.metric::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    right: -35px;
    top: -35px;
    border-radius: 50%;
    background: rgba(8, 120, 111, .10);
}

.metric span {
    display: block;
    color: #53627c;
    font-size: .86rem;
    font-weight: 800;
}

.metric strong {
    display: block;
    margin-top: 10px;
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    font-weight: 950;
    letter-spacing: -.04em;
    white-space: nowrap;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
    gap: 24px;
    align-items: start;
    margin: 20px 0 28px;
}

.split > div {
    min-width: 0;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 28px 0 14px;
}

.section-title h2 {
    margin-bottom: 0;
    font-size: 22px;
    font-weight: 950;
    letter-spacing: -.03em;
}

.section-title a {
    font-weight: 900;
}

.product-grid,
.product-grid.compact {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.product-card {
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    background: #eef2f7;
}

.product-card > div {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 12px;
}

.product-card h2,
.product-card h3 {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 950;
    line-height: 1.2;
}

.product-card p {
    min-height: auto;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-meta {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.product-meta strong {
    font-size: 22px;
    font-weight: 950;
}

.product-meta span {
    width: fit-content;
    background: #e8f5ee;
    color: #027a48;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 950;
}

.facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
}

.facts div {
    padding: 12px;
    border-radius: 14px;
    background: #f8fafc;
}

.facts dt {
    color: var(--muted);
    font-size: .78rem;
}

.facts dd {
    margin: 2px 0 0;
    font-weight: 900;
}

.table-wrap {
    width: 100%;
    overflow: hidden;
    margin-bottom: 28px;
}

table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

th,
td {
    padding: 15px 16px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: middle;
    overflow-wrap: anywhere;
    font-size: 14px;
}

th {
    background: #f8fafc;
    color: var(--muted);
    font-size: .78rem;
    text-transform: uppercase;
}

tr:last-child td {
    border-bottom: 0;
}

.right {
    text-align: right;
}

.positive {
    color: var(--success);
    font-weight: 900;
}

.negative {
    color: var(--danger);
    font-weight: 900;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.actions form {
    margin: 0;
}

.checkout,
.auth-panel,
.auth-panel.wide {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 26px;
    align-items: center;
    min-height: 420px;
}

.auth-shell {
    display: grid;
    place-items: center;
    min-height: calc(100vh - 126px);
}

.auth-card {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(360px, .75fr);
    width: min(980px, 100%);
    overflow: hidden;
    border: 1px solid rgba(8, 120, 111, .16);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 28px 90px rgba(31, 44, 38, .14);
}

.auth-card.register-card {
    grid-template-columns: minmax(0, .8fr) minmax(520px, 1fr);
}

.auth-visual {
    position: relative;
    display: grid;
    align-content: space-between;
    min-height: 520px;
    padding: 34px;
    background:
        linear-gradient(180deg, rgba(8, 120, 111, .92), rgba(10, 47, 43, .96)),
        #123f36;
    color: #fff;
}

.auth-visual .eyebrow {
    color: var(--accent);
}

.auth-visual h1 {
    max-width: 430px;
    margin-bottom: 14px;
    color: #fff;
    font-size: clamp(2.2rem, 4vw, 4.4rem);
}

.auth-visual p {
    max-width: 390px;
    color: rgba(255, 255, 255, .78);
}

.auth-visual img {
    width: min(360px, 82%);
    justify-self: center;
    margin: 12px 0;
    border-radius: 14px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .24);
}

.auth-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 16px;
    background: rgba(255, 255, 255, .08);
}

.auth-stats span {
    color: rgba(255, 255, 255, .7);
    font-size: .86rem;
}

.auth-stats strong {
    color: #fff;
    font-size: 1.15rem;
    white-space: nowrap;
}

.auth-highlights {
    display: grid;
    gap: 10px;
}

.auth-highlights span {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 14px;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .86);
    font-weight: 700;
}

.auth-form {
    display: grid;
    align-content: center;
    gap: 17px;
    padding: 42px;
}

.auth-form h2 {
    margin-bottom: 0;
    font-size: clamp(1.8rem, 3vw, 2.45rem);
    line-height: 1.05;
}

.auth-form input,
.auth-form select {
    min-height: 50px;
    background: #fbfaf7;
}

.simple-auth {
    display: grid;
    place-items: start center;
    min-height: 100vh;
    padding: 54px 0;
}

.simple-auth-form {
    display: grid;
    gap: 18px;
    width: min(100%, 430px);
    padding: 30px;
    border: 1px solid rgba(8, 120, 111, .14);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 20px 70px rgba(31, 44, 38, .12);
}

.simple-auth-form-wide {
    width: min(100%, 720px);
}

.simple-auth-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 4px;
}

.simple-auth-head .eyebrow {
    margin-bottom: 4px;
}

.simple-auth-head h1 {
    margin: 0;
    font-size: clamp(1.9rem, 4vw, 2.55rem);
}

.simple-auth-form input,
.simple-auth-form select {
    min-height: 50px;
    background: #fbfaf7;
}

.payment-card h2 {
    margin-bottom: 0;
}

.payment-data {
    display: grid;
    gap: 10px;
    margin: 0;
}

.payment-data div {
    padding: 12px;
    border-radius: 14px;
    background: #f8fafc;
}

.payment-data dt {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.payment-data dd {
    margin: 3px 0 0;
    overflow-wrap: anywhere;
    font-weight: 900;
}

.proof-form {
    display: grid;
    gap: 14px;
}

.success-notice {
    background: #edf8f1;
    color: var(--success);
}

.referral-box {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 18px;
    margin-bottom: 20px;
}

.referral-box span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: .82rem;
}

.referral-box strong {
    font-size: 1.8rem;
}

.admin-head {
    align-items: center;
}

.admin-head .muted {
    margin: 6px 0 0;
}

.admin-metrics {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.admin-section {
    margin-top: 26px;
}

@media (max-width: 1180px) {
    .metric-grid,
    .admin-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split,
    .checkout,
    .auth-panel,
    .auth-panel.wide {
        grid-template-columns: 1fr;
    }

    .product-grid,
    .product-grid.compact {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .auth-card,
    .auth-card.register-card {
        grid-template-columns: 1fr;
    }

    .auth-visual {
        min-height: 300px;
    }

    .auth-visual img {
        display: none;
    }
}

@media (max-width: 850px) {
    body.app-body {
        padding-top: 78px;
        padding-bottom: 92px;
    }

    .topbar {
        height: 78px;
        min-height: 78px;
        padding: 10px 14px;
        flex-wrap: nowrap;
    }

    .brand {
        flex: 1;
        min-width: 0;
        gap: 10px;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 13px;
    }

    .brand span:last-child {
        display: block;
        max-width: 210px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 15px;
    }

    .logout {
        margin-left: 8px;
    }

    .icon-button {
        padding: 10px 14px;
        border-radius: 14px;
        font-size: 13px;
    }

    .nav {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1000;
        height: 68px;
        background: rgba(255,255,255,.96);
        backdrop-filter: blur(18px);
        border: 1px solid var(--line);
        border-radius: 24px;
        box-shadow: 0 18px 40px rgba(15, 23, 42, .18);
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 4px;
        padding: 8px;
        overflow: hidden;
    }

    .nav a {
        min-width: 0;
        height: 50px;
        padding: 0 4px;
        border-radius: 16px;
        background: transparent;
        border: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        font-weight: 900;
        color: #52617a;
        text-align: center;
        line-height: 1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav a:hover,
    .nav a:focus {
        color: var(--primary);
        background: #e8f5ee;
    }

    .shell {
        padding: 14px 12px 34px;
    }

    .page-head {
        padding: 26px 22px;
        flex-direction: column;
        align-items: flex-start;
        border-radius: 0 0 28px 28px;
    }

    .metric-grid,
    .admin-metrics {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .metric {
        min-height: 102px;
        padding: 18px;
    }

    .product-grid,
    .product-grid.compact,
    .grid-form,
    .referral-box {
        grid-template-columns: 1fr;
    }

    .product-card img {
        height: 230px;
    }

    .section-title {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .table-wrap {
        overflow: visible;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    table.responsive-table,
    table.responsive-table thead,
    table.responsive-table tbody,
    table.responsive-table th,
    table.responsive-table td,
    table.responsive-table tr {
        display: block;
        width: 100%;
    }

    table.responsive-table thead {
        display: none;
    }

    table.responsive-table tr {
        margin-bottom: 12px;
        padding: 14px 16px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: var(--surface);
        box-shadow: var(--shadow);
    }

    table.responsive-table td {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 14px;
        min-height: 42px;
        padding: 10px 0;
        border-bottom: 1px solid #edf0f5;
        text-align: right;
    }

    table.responsive-table td:last-child {
        border-bottom: 0;
    }

    table.responsive-table td::before {
        content: attr(data-label);
        color: var(--muted);
        font-size: .78rem;
        font-weight: 900;
        text-transform: uppercase;
        text-align: left;
    }

    table.responsive-table tbody tr td[colspan] {
        display: block;
        text-align: left;
    }

    table.responsive-table tbody tr td[colspan]::before {
        display: none;
    }

    .actions {
        justify-content: flex-end;
    }

    .actions .button,
    .actions form,
    .actions form .button {
        width: 100%;
    }

    .auth-form,
    .auth-visual {
        padding: 22px;
    }

    .auth-visual {
        display: none;
    }

    .auth-shell {
        min-height: calc(100vh - 96px);
        place-items: start center;
    }

    .auth-form h2 {
        font-size: 1.75rem;
    }

    .auth-form input,
    .auth-form select,
    .simple-auth-form input,
    .simple-auth-form select {
        min-height: 52px;
        font-size: 16px;
    }

    .simple-auth {
        min-height: 100vh;
        padding: 18px 0 28px;
    }

    .simple-auth-form,
    .simple-auth-form-wide {
        width: 100%;
        padding: 22px;
    }

    .span-2 {
        grid-column: span 1;
    }
}

@media (max-width: 420px) {
    .brand span:last-child {
        max-width: 155px;
        font-size: 14px;
    }

    .nav {
        left: 8px;
        right: 8px;
        bottom: 8px;
        border-radius: 22px;
    }

    .nav a {
        font-size: 10px;
        padding: 0 3px;
    }

    .metric strong {
        font-size: 1.35rem;
    }
}
/* ===== MENU MOBILE ESTILO APP - CORREÇÃO FINAL ===== */

@media (max-width: 850px) {
    body.app-body {
        padding-top: 0 !important;
        padding-bottom: 110px !important;
    }

    .topbar {
        position: fixed !important;
        left: 14px !important;
        right: 14px !important;
        top: auto !important;
        bottom: calc(14px + env(safe-area-inset-bottom)) !important;
        z-index: 99999 !important;

        width: auto !important;
        height: 74px !important;
        min-height: 74px !important;

        padding: 8px !important;
        border-radius: 26px !important;
        border: 1px solid rgba(223, 229, 239, .95) !important;
        background: rgba(255,255,255,.96) !important;
        backdrop-filter: blur(20px) !important;
        box-shadow: 0 18px 45px rgba(15, 23, 42, .20) !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .topbar .brand,
    .topbar .logout {
        display: none !important;
    }

    .topbar .nav {
        position: static !important;
        inset: auto !important;

        width: 100% !important;
        height: 100% !important;

        display: grid !important;
        grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
        gap: 5px !important;

        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        overflow: hidden !important;
    }

    .topbar .nav a {
        min-width: 0 !important;
        width: 100% !important;
        height: 58px !important;

        padding: 0 3px !important;
        border-radius: 18px !important;
        border: 0 !important;
        background: transparent !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        color: #52617a !important;
        font-size: 10.5px !important;
        font-weight: 950 !important;
        line-height: 1 !important;
        text-align: center !important;

        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .topbar .nav a:hover,
    .topbar .nav a:focus,
    .topbar .nav a:active {
        color: #08786f !important;
        background: #e8f5ee !important;
    }

    .shell {
        padding-bottom: 28px !important;
    }
}

@media (max-width: 380px) {
    .topbar {
        left: 8px !important;
        right: 8px !important;
        bottom: calc(8px + env(safe-area-inset-bottom)) !important;
    }

    .topbar .nav a {
        font-size: 9.5px !important;
    }
}
.mobile-logout {
    display: none;
}

@media (max-width: 850px) {
    .topbar .nav {
        grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    }

    .mobile-logout {
        display: block !important;
        margin: 0 !important;
    }

    .mobile-logout button {
        width: 100% !important;
        height: 58px !important;
        border: 0 !important;
        border-radius: 18px !important;
        background: transparent !important;
        color: #b42318 !important;
        font-size: 10.5px !important;
        font-weight: 950 !important;
        cursor: pointer !important;
    }

    .topbar .logout {
        display: none !important;
    }
}