:root {
    --primary: #012989;
    --primary-dark: #89d9fe;
    --background: #0f172a;
    --surface: #111827;
    --text: #f8fafc;
    --muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top left, #89d9fe, transparent 15%),
        var(--background);
    color: var(--text);
    min-height: 100vh;
}

.app-shell {
    min-height: 100vh;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.hero-card {
    width: 100%;
    max-width: 720px;
    padding: 42px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: rgba(17, 24, 39, 0.82);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(18px);
}

.hero-badge {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #89d9fe;
    color: #012989;
    font-size: 14px;
    font-weight: 700;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 58px);
    line-height: 1.05;
    margin-bottom: 18px;
}

.hero p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 28px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    border-radius: 14px;
    padding: 14px 22px;
    background: var(--primary);
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}


.dashboard-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
}

.sidebar {
    background: rgba(2, 6, 23, 0.96);
    border-right: 1px solid var(--border);
    padding: 24px;
}

.sidebar-brand {
    padding: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    margin-bottom: 32px;
}

.sidebar-brand strong {
    font-size: 22px;
}

.sidebar-brand span {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-menu a {
    color: var(--muted);
    text-decoration: none;
    padding: 12px 14px;
    border-radius: 12px;
    transition: 0.2s ease;
}

.sidebar-menu a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
}

.main-area {
    min-width: 0;
}

.topbar {
    height: 72px;
    border-bottom: 1px solid var(--border);
    background: rgba(15, 23, 42, 0.84);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
}

.topbar-user {
    color: var(--muted);
}

.content {
    padding: 28px;
}

.messages {
    padding: 20px 28px 0;
}

.message {
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 10px;
    font-weight: 600;
}

.message.success {
    background: rgba(22, 163, 74, 0.16);
    color: #86efac;
}

.message.error {
    background: rgba(239, 68, 68, 0.16);
    color: #fca5a5;
}

.message.warning {
    background: rgba(245, 158, 11, 0.16);
    color: #fcd34d;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 24px;
}

.page-header h1 {
    font-size: 32px;
    margin-bottom: 6px;
}

.page-header p {
    color: var(--muted);
}

.table-card,
.form-card {
    background: rgba(17, 24, 39, 0.82);
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border);
    text-align: left;
}

.data-table th {
    color: var(--muted);
    font-size: 14px;
}

.data-table td {
    color: var(--text);
}

.status {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.status.active {
    background: rgba(22, 163, 74, 0.16);
    color: #86efac;
}

.status.inactive {
    background: rgba(239, 68, 68, 0.16);
    color: #fca5a5;
}

.btn-light,
.btn-danger,
.btn-warning {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

.btn-light {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
}

.btn-warning {
    background: rgba(245, 158, 11, 0.16);
    color: #fcd34d;
}

.btn-danger {
    background: rgba(239, 68, 68, 0.16);
    color: #fca5a5;
}

.actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.search-form {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.search-form input {
    width: 100%;
    max-width: 360px;
}

.form-card {
    padding: 24px;
    max-width: 760px;
}

.form-grid {
    display: grid;
    gap: 18px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group label {
    color: var(--muted);
    font-weight: 700;
}

.form-control {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.9);
    color: var(--text);
    padding: 13px 14px;
    outline: none;
}

.form-control:focus {
    border-color: var(--primary);
}

.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.empty-table {
    padding: 28px;
    color: var(--muted);
    text-align: center;
}

@media (max-width: 900px) {
    .dashboard-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

    .page-header {
        flex-direction: column;
    }

    .data-table {
        min-width: 720px;
    }

    .table-card {
        overflow-x: auto;
    }
}
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.auth-card {
    width: 100%;
    max-width: 460px;
    padding: 34px;
    border-radius: 24px;
    background: rgba(17, 24, 39, 0.88);
    border: 1px solid var(--border);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}
.auth-brand img {
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
}
.auth-header {
    margin-bottom: 24px;
}

.auth-header h1 {
    font-size: 32px;
    margin-bottom: 8px;
}

.auth-header p {
    color: var(--muted);
}

.auth-button {
    width: 100%;
    margin-top: 22px;
}

.auth-card input {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.9);
    color: var(--text);
    padding: 13px 14px;
    outline: none;
}

.auth-card input:focus {
    border-color: var(--primary);
}
.logout-button {
    margin-left: 12px;
    border: none;
    background: rgba(239, 68, 68, 0.16);
    color: #fca5a5;
    padding: 8px 12px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
}
.builder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: flex-start;
}

.form-card h2 {
    font-size: 22px;
    margin-bottom: 8px;
}

.section-muted {
    color: var(--muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.mini-table-area {
    margin-top: 24px;
    overflow-x: auto;
}

.builder-summary {
    margin-top: 22px;
    max-width: 100%;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.rules-grid div {
    border: 1px solid var(--border);
    background: rgba(15, 23, 42, 0.72);
    border-radius: 16px;
    padding: 16px;
    display: grid;
    gap: 8px;
}

.rules-grid strong {
    color: var(--muted);
    font-size: 14px;
}

.rules-grid span {
    font-size: 18px;
    font-weight: 800;
}

@media (max-width: 1100px) {
    .builder-grid {
        grid-template-columns: 1fr;
    }

    .rules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .rules-grid {
        grid-template-columns: 1fr;
    }
}

.storefront-body {
    background:
        radial-gradient(circle at top right, color-mix(in srgb, var(--primary) 22%, transparent), transparent 32%),
        #f8fafc;
    color: #0f172a;
}

.store-header {
    position: sticky;
    top: 0;
    z-index: 20;
    min-height: 82px;
    padding: 16px 22px;
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.store-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.store-brand img,
.store-logo-fallback {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    object-fit: cover;
}

.store-logo-fallback {
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
}

.store-brand h1 {
    font-size: 20px;
    line-height: 1.1;
}

.store-brand p {
    color: #64748b;
    font-size: 14px;
}

.store-whatsapp {
    text-decoration: none;
    background: #22c55e;
    color: white;
    padding: 11px 16px;
    border-radius: 999px;
    font-weight: 800;
}

.store-container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 0 90px;
}

.store-hero {
    border-radius: 28px;
    padding: 34px;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--primary) 95%, #000), color-mix(in srgb, var(--secondary) 90%, #000));
    color: white;
    margin-bottom: 30px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}

.store-hero span {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 13px;
    font-weight: 800;
}

.store-hero h2 {
    font-size: clamp(32px, 6vw, 56px);
    line-height: 1.02;
    margin-bottom: 12px;
}

.store-hero p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
    max-width: 560px;
}

.store-section {
    margin-top: 34px;
}

.store-section-title {
    margin-bottom: 16px;
}

.store-section-title h3 {
    font-size: 28px;
}

.store-section-title p {
    color: #64748b;
    margin-top: 4px;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.store-card {
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.store-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.store-card-content {
    padding: 18px;
    display: grid;
    gap: 20px;
}

.store-card-content h4 {
    font-size: 20px;
    margin-bottom: 6px;
}

.store-card-content p {
    color: #64748b;
    line-height: 1.45;
}

.store-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.store-card-footer span {
    display: block;
    color: #64748b;
    font-size: 13px;
}

.store-card-footer strong {
    display: block;
    font-size: 20px;
}

.store-empty {
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    padding: 34px;
    text-align: center;
}

.store-empty h3 {
    font-size: 28px;
    margin-bottom: 8px;
}

.store-empty p {
    color: #64748b;
    margin-bottom: 20px;
}

@media (max-width: 980px) {
    .store-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .store-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .store-whatsapp {
        width: 100%;
        text-align: center;
    }

    .store-grid {
        grid-template-columns: 1fr;
    }

    .store-hero {
        padding: 26px;
    }
}
.product-detail {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 24px;
    align-items: flex-start;
}

.product-image {
    width: 100%;
    border-radius: 28px;
    object-fit: cover;
    max-height: 520px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
}

.product-panel {
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    padding: 26px;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.product-panel h2 {
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.04;
    margin: 12px 0;
}

.product-description {
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 22px;
}

.choice-group {
    margin-top: 26px;
}

.choice-group h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.choice-group p {
    color: #64748b;
    margin-bottom: 12px;
}

.choice-card {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 18px;
    padding: 14px;
    margin-top: 10px;
    cursor: pointer;
    background: #fff;
}

.choice-card input {
    width: 18px;
    height: 18px;
}

.choice-card span {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
}

.choice-card small {
    color: var(--primary);
    font-weight: 900;
    font-size: 15px;
}

.store-textarea {
    width: 100%;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 18px;
    padding: 14px;
    resize: vertical;
    outline: none;
    font-family: inherit;
}

.store-actions-fixed {
    margin-top: 28px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.storefront-messages {
    padding: 0;
    margin-bottom: 18px;
}

.cart-list {
    display: grid;
    gap: 16px;
}

.cart-card {
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.cart-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.cart-card p {
    color: #475569;
    margin-top: 6px;
}

.cart-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.cart-options span {
    background: #f1f5f9;
    color: #334155;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.cart-price {
    display: grid;
    gap: 10px;
    justify-items: flex-end;
    align-content: start;
}

.cart-price strong {
    font-size: 22px;
}

.cart-summary {
    position: sticky;
    bottom: 18px;
    margin-top: 22px;
    background: #0f172a;
    color: white;
    border-radius: 24px;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.22);
}

.cart-summary span {
    display: block;
    color: #94a3b8;
}

.cart-summary strong {
    font-size: 28px;
}

.cart-summary button:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

@media (max-width: 900px) {
    .product-detail {
        grid-template-columns: 1fr;
    }

    .cart-card,
    .cart-summary {
        flex-direction: column;
        align-items: stretch;
    }

    .cart-price {
        justify-items: stretch;
    }
}
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 22px;
    align-items: flex-start;
}

.checkout-card,
.checkout-summary {
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
}

.checkout-card {
    margin-bottom: 18px;
}

.checkout-card h2,
.checkout-summary h2 {
    font-size: 24px;
    margin-bottom: 18px;
}

.store-input {
    width: 100%;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 16px;
    padding: 13px 14px;
    outline: none;
    font-family: inherit;
    background: white;
}

.store-input:focus,
.store-textarea:focus {
    border-color: var(--primary);
}

.checkout-summary {
    position: sticky;
    top: 104px;
}

.checkout-items {
    display: grid;
    gap: 12px;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.checkout-item span {
    display: block;
    color: #64748b;
    font-size: 14px;
    margin-top: 4px;
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 22px 0;
    padding-top: 18px;
    border-top: 2px solid rgba(15, 23, 42, 0.08);
}

.checkout-total span {
    color: #64748b;
    font-weight: 700;
}

.checkout-total strong {
    font-size: 28px;
}

.checkout-button {
    width: 100%;
}

@media (max-width: 900px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        position: static;
    }
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}

.metric-card {
    background: rgba(17, 24, 39, 0.82);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 20px;
}

.metric-card span {
    display: block;
    color: var(--muted);
    margin-bottom: 8px;
}

.metric-card strong {
    font-size: 34px;
}

.order-status {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.status-pendente {
    background: rgba(245, 158, 11, 0.18);
    color: #fcd34d;
}

.status-enviado_whatsapp {
    background: rgba(34, 197, 94, 0.18);
    color: #86efac;
}

.status-em_preparo {
    background: rgba(59, 130, 246, 0.18);
    color: #93c5fd;
}

.status-saiu_entrega {
    background: rgba(168, 85, 247, 0.18);
    color: #d8b4fe;
}

.status-finalizado {
    background: rgba(20, 184, 166, 0.18);
    color: #5eead4;
}

.status-cancelado {
    background: rgba(239, 68, 68, 0.18);
    color: #fca5a5;
}

.order-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.detail-card {
    background: rgba(17, 24, 39, 0.82);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 22px;
}

.detail-card h2 {
    font-size: 22px;
    margin-bottom: 18px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.detail-grid div {
    background: rgba(15, 23, 42, 0.78);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px;
}

.detail-grid span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 6px;
}

.detail-grid strong {
    font-size: 16px;
}

.detail-text {
    color: var(--muted);
    line-height: 1.6;
}

.full-detail-card {
    margin-top: 18px;
}

.order-items-list {
    display: grid;
    gap: 14px;
}

.order-item-card {
    background: rgba(15, 23, 42, 0.78);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.order-item-card h3 {
    margin-bottom: 8px;
}

.order-item-card p {
    color: var(--muted);
    margin-top: 6px;
}

@media (max-width: 1000px) {
    .metrics-grid,
    .order-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .metrics-grid,
    .order-detail-grid,
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .order-item-card {
        flex-direction: column;
    }
}
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.status-list {
    display: grid;
    gap: 12px;
}

.status-list div,
.ranking-list div {
    background: rgba(15, 23, 42, 0.78);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.status-list span {
    color: var(--muted);
}

.status-list strong {
    font-size: 24px;
}

.ranking-list {
    display: grid;
    gap: 12px;
}

.ranking-list span {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.ranking-list strong {
    flex: 1;
}

.ranking-list em {
    color: var(--muted);
    font-style: normal;
    font-size: 14px;
}

.section-header-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

@media (max-width: 1000px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}



.sidebar-overlay {
    display: none;
}

@media (max-width: 900px) {
    .dashboard-layout {
        display: block;
    }

    .sidebar {
        position: fixed;
        top: 0;
        left: -285px;
        width: 280px;
        height: 100vh;
        z-index: 1000;
        transition: left 0.25s ease;
        overflow-y: auto;
    }

    .sidebar.sidebar-open {
        left: 0;
    }

    .sidebar-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(2, 6, 23, 0.62);
        backdrop-filter: blur(3px);
        z-index: 900;
    }

    .sidebar-overlay.sidebar-overlay-show {
        display: block;
    }

    .mobile-menu-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .topbar {
        gap: 12px;
        justify-content: flex-start;
    }

    .topbar-user {
        margin-left: auto;
    }

    .content {
        padding: 20px;
    }
}
.store-closed-alert {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    border-radius: 22px;
    padding: 20px;
    margin-bottom: 26px;
}

.store-closed-alert h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.store-closed-alert p {
    margin-bottom: 8px;
}

.store-closed-alert span {
    font-weight: 800;
}
.brand-logo {
    width: 170px;
    max-width: 50%;
    object-fit: contain;
    margin-left: -100px;
}

.auth-brand {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.auth-logo {
    width: 220px;
    max-width: 100%;
    object-fit: contain;
}

.storefront-system-logo {
    width: 140px;
    object-fit: contain;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.topbar-brand {
    display: flex;
    align-items: center;
}

.topbar-logo {
    width: 150px;
    max-width: 100%;
    object-fit: contain;
}

.mobile-menu-button {
    display: none;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.mobile-menu-logo {
    width: 145px;
    max-width: 60%;
    object-fit: contain;
    margin-left: -60px;
}

.topbar-title {
    font-size: 18px;
}

@media (max-width: 900px) {
    .mobile-menu-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .topbar {
        justify-content: space-between;
    }

    .topbar-title {
        display: none;
    }
}
