:root {
    --blue: #081632;
    --blue-soft: #132f5e;
    --cyan: #00c8f8;
    --brand-red: #d80f0f;
    --brand-red-dark: #a90000;
    --green: #24b47e;
    --gray: #f4f7fb;
    --line: #d8e4f0;
    --text: #111827;
    --muted: #64748b;
    --white: #ffffff;
    --danger: #c91d1d;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 6vw;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--blue);
}

.brand-logo {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 8px 22px rgba(8, 22, 50, 0.22);
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    font-size: 14px;
}

.site-nav,
.actions,
.user-box,
.panel-header,
.toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    color: var(--muted);
    font-size: 14px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 0;
    border-radius: 8px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--blue-soft));
    font-weight: 700;
    cursor: pointer;
}

.button-small {
    min-height: 34px;
    padding: 0 14px;
}

.button-light {
    color: var(--blue);
    background: var(--gray);
    border: 1px solid var(--line);
}

.button-whatsapp,
.badge.green {
    background: var(--green);
}

.button:hover {
    filter: brightness(1.05);
}

.button.full {
    width: 100%;
}

.button.danger {
    margin-top: 18px;
    background: var(--danger);
}

.hero {
    min-height: 78vh;
    display: flex;
    align-items: center;
    padding: 8vw 6vw;
    color: var(--white);
    background:
        radial-gradient(circle at 78% 18%, rgba(216, 15, 15, 0.24), transparent 22%),
        radial-gradient(circle at 18% 12%, rgba(0, 200, 248, 0.30), transparent 24%),
        linear-gradient(90deg, rgba(8, 22, 50, 0.96), rgba(8, 22, 50, 0.78)),
        url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1800&q=80') center/cover;
}

.hero-content {
    max-width: 780px;
}

.hero h1 {
    margin: 8px 0 18px;
    font-size: clamp(40px, 7vw, 78px);
    line-height: 1.02;
    letter-spacing: 0;
}

.hero p {
    max-width: 680px;
    font-size: 18px;
    line-height: 1.65;
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--cyan);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section {
    padding: 76px 6vw;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h2 {
    margin: 0 0 12px;
    color: var(--blue);
    font-size: 34px;
}

h3 {
    margin: 0 0 10px;
    color: var(--blue);
}

.muted {
    color: var(--muted);
}

.small {
    font-size: 13px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.cards.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.panel,
.stat,
.login-panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(11, 31, 58, 0.06);
}

.reset-link-box {
    display: grid;
    gap: 8px;
    margin-top: 16px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--gray);
    overflow-wrap: anywhere;
}

.card {
    padding: 22px;
}

.card p {
    color: var(--muted);
    line-height: 1.55;
}

.highlighted {
    border-top: 4px solid var(--brand-red);
}

.public-site .section {
    scroll-margin-top: 84px;
}

.service-card {
    min-height: 210px;
}

.card-kicker {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--cyan);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.highlighted a {
    display: inline-flex;
    margin-top: 8px;
    color: var(--blue-soft);
    font-weight: 800;
}

.legal-data,
.contact-card {
    display: grid;
    gap: 10px;
}

.legal-data span,
.contact-card span {
    display: grid;
    gap: 3px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
}

.legal-data strong,
.contact-card strong {
    color: var(--blue);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
    gap: 24px;
    align-items: start;
}

.contact-card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.contact-card > strong {
    font-size: 22px;
}

.band {
    background: var(--gray);
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: start;
}

.info-list,
.document-list {
    display: grid;
    gap: 12px;
}

.info-list div,
.document-list a,
.notes-box {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.info-list strong,
.info-list span,
.document-list span,
.notes-box span {
    display: block;
}

.info-list span,
.document-list span {
    margin-top: 6px;
    color: var(--muted);
}

.benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.benefits span,
.badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--blue);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
}

.contact-form,
.form {
    display: grid;
    gap: 14px;
}

.contact-form {
    max-width: 760px;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
    color: var(--muted);
}

input,
select,
textarea {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--text);
    background: var(--white);
}

textarea {
    min-height: 110px;
    resize: vertical;
}

label {
    display: grid;
    gap: 7px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 700;
}

.checkbox-line {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-line input {
    width: auto;
    min-height: auto;
}

.footer {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 6vw;
    color: var(--white);
    background: var(--blue);
}

.alert {
    margin: 16px auto;
    width: min(1120px, calc(100% - 32px));
    padding: 14px 16px;
    border-radius: 8px;
    font-weight: 700;
}

.alert.success {
    color: #07563a;
    background: #ddf7ed;
}

.alert.error {
    color: #7a1d1d;
    background: #fde8e8;
}

.login-page {
    min-height: calc(100vh - 150px);
    display: grid;
    place-items: center;
    padding: 48px 16px;
    background: var(--gray);
}

.login-panel {
    width: min(440px, 100%);
    padding: 32px;
}

.admin-body {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    min-height: 100vh;
    background: var(--gray);
}

.sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 18px;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    background:
        radial-gradient(circle at 18% 4%, rgba(0, 200, 248, 0.24), transparent 28%),
        radial-gradient(circle at 85% 16%, rgba(216, 15, 15, 0.18), transparent 24%),
        linear-gradient(180deg, rgba(0, 200, 248, 0.12), transparent 280px),
        var(--blue);
    color: var(--white);
    box-shadow: 14px 0 34px rgba(11, 31, 58, 0.16);
}

.sidebar::-webkit-scrollbar {
    width: 8px;
}

.sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.06);
}

.sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.28);
    border-radius: 999px;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex: 0 0 auto;
}

.admin-brand {
    color: var(--white);
    min-width: 0;
}

.admin-brand .brand-logo {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 0 3px rgba(0, 200, 248, 0.08), 0 10px 26px rgba(0, 0, 0, 0.24);
}

.admin-brand span:last-child {
    display: grid;
    gap: 1px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-brand small {
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--white);
}

.admin-nav {
    display: grid;
    align-content: start;
    gap: 10px;
    flex: 0 0 auto;
    min-height: 0;
    max-height: none;
    margin-top: 22px;
    padding-right: 4px;
    padding-bottom: 18px;
    overflow: visible;
    overscroll-behavior: contain;
    scrollbar-width: thin;
}

.admin-nav::-webkit-scrollbar {
    width: 8px;
}

.admin-nav::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
}

.admin-nav::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.26);
    border-radius: 999px;
}

.admin-nav::-webkit-scrollbar-thumb:hover {
    background: rgba(16, 183, 201, 0.58);
}

.admin-nav a {
    display: flex;
    align-items: center;
    min-height: 38px;
    padding: 9px 12px 9px 46px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-nav a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.11);
    transform: translateX(2px);
}

.nav-group {
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
    overflow: hidden;
}

.nav-group-title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    min-height: 46px;
    padding: 11px 12px;
    border: 0;
    color: rgba(255, 255, 255, 0.68);
    background: transparent;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-align: left;
    text-transform: uppercase;
    cursor: pointer;
}

.nav-group-title:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.nav-group-title::after {
    content: "";
    width: 8px;
    height: 8px;
    margin-left: auto;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.18s ease;
}

.nav-group-title:not(.collapsed)::after {
    transform: rotate(225deg);
}

.nav-group-title:not(.collapsed) {
    color: var(--white);
    background: linear-gradient(90deg, rgba(0, 200, 248, 0.18), rgba(216, 15, 15, 0.10));
}

.nav-icon {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 7px;
    color: var(--white);
    background: linear-gradient(135deg, rgba(0, 200, 248, 0.28), rgba(216, 15, 15, 0.20));
    font-size: 16px;
    flex: 0 0 auto;
}

.nav-group a {
    margin: 0 8px 8px;
}

.nav-group > .collapse.show {
    height: auto !important;
    overflow: visible !important;
}

.nav-group > .collapsing {
    height: auto !important;
    overflow: visible !important;
    transition: none;
}

.admin-offcanvas {
    color: var(--white);
    background:
        radial-gradient(circle at 18% 5%, rgba(0, 200, 248, 0.24), transparent 28%),
        radial-gradient(circle at 88% 20%, rgba(216, 15, 15, 0.18), transparent 26%),
        linear-gradient(180deg, rgba(0, 200, 248, 0.14), transparent 260px),
        var(--blue);
}

.admin-offcanvas .offcanvas-body {
    padding-top: 0;
    overflow-y: auto;
}

.admin-offcanvas .admin-nav {
    display: grid;
    max-height: none;
    overflow: visible;
    padding-bottom: 24px;
}

.admin-main {
    min-width: 0;
    padding: 28px;
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.admin-topbar h1 {
    margin: 0;
    color: var(--blue);
    font-size: 28px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 18px;
}

.stat {
    padding: 20px;
}

.stat span {
    color: var(--muted);
    font-size: 14px;
}

.stat strong {
    display: block;
    margin-top: 8px;
    color: var(--blue);
    font-size: 34px;
}

.panel {
    padding: 22px;
}

.panel-header {
    justify-content: space-between;
    margin-bottom: 18px;
}

.panel h2 {
    margin: 0;
}

.narrow-panel {
    max-width: 980px;
}

.toolbar {
    margin-bottom: 16px;
}

.toolbar input {
    max-width: 520px;
}

.filters-toolbar {
    align-items: end;
    flex-wrap: wrap;
}

.filters-toolbar input,
.filters-toolbar select {
    width: auto;
    min-width: 160px;
}

.filters-toolbar label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    color: var(--muted);
    font-weight: 700;
}

.filters-toolbar input[type="checkbox"] {
    width: auto;
    min-height: auto;
}

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

th,
td {
    padding: 14px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

th {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
}

td span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
}

.row-actions {
    white-space: nowrap;
}

.row-actions a {
    margin-right: 10px;
    color: var(--blue-soft);
    font-weight: 700;
}

.link-button {
    border: 0;
    background: transparent;
    color: var(--blue-soft);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.empty {
    color: var(--muted);
    text-align: center;
}

.grid-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.full-row {
    grid-column: 1 / -1;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.subpanel {
    margin-top: 18px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbfdff;
}

.item-list {
    display: grid;
    gap: 10px;
}

.quote-item-row {
    display: grid;
    grid-template-columns: 2fr 0.6fr 1fr 1fr;
    gap: 10px;
}

.quote-item-commercial {
    grid-template-columns: 0.85fr 1.7fr 0.6fr 0.8fr 0.8fr 0.8fr;
}

.sale-item-row {
    display: grid;
    grid-template-columns: 1.3fr 2fr 0.7fr 1fr 1fr;
    gap: 10px;
}

.pos-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 18px;
    align-items: start;
}

.pos-main {
    display: grid;
    gap: 16px;
    min-width: 0;
}

.compact-form textarea {
    min-height: 72px;
}

.pos-summary {
    position: sticky;
    top: 22px;
}

.summary-card {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 30px rgba(11, 31, 58, 0.08);
}

.summary-line,
.summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.summary-total {
    padding-top: 12px;
    border-top: 1px solid var(--line);
    color: var(--blue);
    font-size: 22px;
}

.pos-item {
    grid-template-columns: 1.25fr 1.5fr 0.45fr 0.7fr 0.65fr auto;
    align-items: start;
}

.pos-item .stock-hint {
    grid-column: 1 / -1;
    color: var(--muted);
}

.remove-item {
    min-height: 42px;
    white-space: nowrap;
}

.stock-pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
}

.stock-pill.ok {
    background: var(--green);
}

.stock-pill.danger {
    background: var(--danger);
}

.priority-alta {
    background: var(--danger);
}

.priority-media {
    background: #d99a16;
}

.priority-baja {
    background: var(--green);
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.module-card {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.module-card input {
    width: 18px;
    min-height: 18px;
    margin-top: 3px;
}

.module-card span,
.module-card small,
.module-card em {
    display: block;
}

.module-card small {
    margin: 4px 0;
    color: var(--cyan);
    font-weight: 800;
    text-transform: uppercase;
}

.module-card em {
    color: var(--muted);
    font-style: normal;
}

.diagnostic-summary {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.diagnostic-overall,
.diagnostic-badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.diagnostic-ok {
    background: var(--green);
}

.diagnostic-warning {
    background: #d99a16;
}

.diagnostic-error {
    background: var(--danger);
}

.diagnostic-border-ok {
    border-top: 4px solid var(--green);
}

.diagnostic-border-warning {
    border-top: 4px solid #d99a16;
}

.diagnostic-border-error {
    border-top: 4px solid var(--danger);
}

.diagnostic-table td {
    vertical-align: middle;
}

.price {
    display: block;
    margin: 12px 0;
    color: var(--blue);
    font-size: 22px;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.report-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.compact-table {
    min-width: 0;
}

.spaced {
    margin-top: 18px;
}

.print-body {
    background: #eef2f6;
}

.print-page {
    width: min(920px, calc(100% - 32px));
    margin: 24px auto;
    padding: 42px;
    background: var(--white);
    color: var(--text);
}

.print-header {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--blue);
}

.print-header h1 {
    margin: 0;
    color: var(--blue);
}

.print-header span {
    display: block;
    margin-top: 6px;
}

.print-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 24px 0;
}

.print-table {
    min-width: 0;
}

.print-total {
    display: grid;
    justify-content: end;
    gap: 6px;
    margin-top: 16px;
    font-size: 18px;
}

.print-notes {
    margin-top: 22px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.print-terms {
    margin-top: 22px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--gray);
}

.print-footer {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    margin-top: 70px;
}

.print-footer div {
    padding-top: 10px;
    border-top: 1px solid var(--text);
    text-align: center;
}

@media print {
    .print-body {
        background: var(--white);
    }

    .print-page {
        width: 100%;
        margin: 0;
        padding: 0;
        box-shadow: none;
    }
}

.detail-grid div {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.detail-grid span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 13px;
}

@media (max-width: 980px) {
    .grid,
    .cards.four,
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .admin-body {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: sticky;
        top: 0;
        z-index: 30;
        height: auto;
        max-height: 100vh;
        padding: 12px 16px;
    }

    .admin-nav {
        display: none;
        max-height: calc(100vh - 76px);
        margin-top: 12px;
        padding: 0 0 8px;
        overflow-y: auto;
    }

    .sidebar > .admin-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
        flex: 0 0 auto;
    }

    .nav-group {
        background: rgba(255, 255, 255, 0.06);
    }

    .admin-offcanvas .admin-nav {
        display: grid;
    }

    .admin-main {
        padding: 20px;
    }

    .pos-layout {
        grid-template-columns: 1fr;
    }

    .pos-summary {
        position: static;
    }

    .pos-item {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .site-header,
    .admin-topbar,
    .panel-header,
    .toolbar,
    .footer,
.user-box {
        align-items: stretch;
        flex-direction: column;
    }

    .site-nav,
    .actions {
        justify-content: flex-start;
    }

    .hero {
        min-height: auto;
        padding: 72px 6vw;
    }

    .grid,
    .cards.four,
    .stats-grid,
    .grid-form,
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .quote-item-row,
    .sale-item-row,
    .pos-item,
    .workflow-grid,
    .report-grid,
    .print-grid {
        grid-template-columns: 1fr;
    }

    .admin-main {
        padding: 14px;
    }

    .admin-topbar h1 {
        font-size: 22px;
    }

    .brand-mark {
        width: 34px;
        height: 34px;
    }
}

.company-switcher select,
.company-chip {
    min-height: 38px;
    max-width: 220px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--blue);
    font-weight: 700;
}

.company-chip {
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
}
