/* ── Brand color tokens ──────────────────────────────────────── */
:root {
    --brand:        #f97316;
    --brand-dark:   #ea580c;
    --brand-light:  #fb923c;
    --brand-tint:   rgba(249,115,22,0.10);
    --brand-shadow: rgba(249,115,22,0.18);
    /* Override Bootstrap primary */
    --bs-primary:         #f97316;
    --bs-primary-rgb:     249,115,22;
    --bs-link-color:      #f97316;
    --bs-link-hover-color:#ea580c;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: #f8fafc;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    line-height: 60px;
    background-color: #f5f5f5;
    border-top: 1px solid #e2e8f0;
    z-index: 1000;
}

body {
    padding-bottom: 60px;
}

.card-header {
    font-weight: bold;
}

.btn-primary {
    background-color: #f97316;
    border-color: #f97316;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
    background-color: #ea580c;
    border-color: #ea580c;
}

.btn-outline-primary {
    color: #f97316;
    border-color: #f97316;
}
.btn-outline-primary:hover {
    background-color: #f97316;
    border-color: #f97316;
    color: #fff;
}

.text-primary { color: #f97316 !important; }
.bg-primary   { background-color: #f97316 !important; }
.border-primary { border-color: #f97316 !important; }

.nav-link.active,
.nav-link:hover { color: #f97316 !important; }

a { color: #f97316; }
a:hover { color: #ea580c; }

.form-control:focus,
.form-select:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 0.2rem rgba(249,115,22,0.20);
}

.table {
    background-color: #fff;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.navbar {
    background-color: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
}

.navbar-shell {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.navbar-brand-group {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
    flex: 1;
}

.navbar-brand-group .navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-right: 0;
    padding: 0;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.navbar-brand-text {
    line-height: 1;
}

.navbar-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.28rem 0.55rem;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #fff;
    color: #475569;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.navbar-lang-btn:hover,
.navbar-lang-btn:focus {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #334155;
}

.navbar-lang-btn::after {
    margin-left: 0.1rem;
    vertical-align: middle;
    opacity: 0.45;
}

.navbar-lang-flag {
    font-size: 0.95rem;
    line-height: 1;
}

.navbar-lang-code {
    font-size: 0.68rem;
    letter-spacing: 0.04em;
}

.navbar-lang-menu {
    min-width: 140px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    font-size: 0.82rem;
    padding: 0.35rem;
}

.navbar-toggler {
    margin-left: auto;
    flex-shrink: 0;
}

.card {
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

/* ── Section header ──────────────────────────────────────────── */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.section-header h2 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
}

.section-header-inline {
    justify-content: flex-start;
    margin-bottom: 0.85rem;
}

.section-header-title {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
    width: 100%;
}

.section-header-title h2 {
    flex: 1;
    min-width: 0;
    line-height: 1.25;
}

.section-header-add {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f97316;
    color: #fff;
    flex-shrink: 0;
    text-decoration: none;
    border: none;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.22);
    transition: background 0.12s, transform 0.12s;
}

.section-header-add:hover {
    background: #ea580c;
    color: #fff;
    transform: translateY(-1px);
}

.page-intro-text {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
    .container-compact-mobile {
        margin-top: 0.5rem !important;
    }

    .container-compact-mobile > main.py-4 {
        padding-top: 0.45rem !important;
        padding-bottom: 1rem !important;
    }

    .section-header-inline {
        margin-bottom: 0.65rem;
    }

    .section-header-title h2 {
        font-size: 1.05rem;
    }

    .section-header-add {
        width: 36px;
        height: 36px;
        border-radius: 11px;
    }

    .products-section-filter {
        margin-bottom: 0.75rem !important;
    }

    .page-intro-text {
        font-size: 0.82rem;
        margin-bottom: 0.65rem !important;
    }
}

/* ── Feature cards (home page) ───────────────────────────────── */
.feature-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    transition: box-shadow 0.15s;
}
.feature-card:hover { box-shadow: 0 4px 16px rgba(249,115,22,0.12); }
.feature-card .feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(249,115,22,0.10);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
    color: #f97316;
}
.feature-card h5 { font-weight: 700; color: #0f172a; margin-bottom: 0.5rem; }
.feature-card p  { color: #64748b; font-size: 0.875rem; margin: 0; }

/* ── Hero section (home page) ────────────────────────────────── */
.hero-section {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 16px;
    padding: 3.5rem 2rem;
    text-align: center;
    color: #fff;
    margin-bottom: 2.5rem;
}
.hero-section h1 { font-weight: 800; color: #fff; }
.hero-section p  { color: rgba(255,255,255,0.88); }

.btn-hero {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    border: 1.5px solid rgba(255,255,255,0.45);
    color: #fff !important;
    border-radius: 8px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s;
}
.btn-hero:hover { background: rgba(255,255,255,0.28); }

/* ── QR section (items page) ─────────────────────────────────── */
.qr-section {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
}
.qr-section h3 { font-size: 1.1rem; font-weight: 700; color: #0f172a; margin-bottom: 0.5rem; }

/* ── Mobile card-tables ──────────────────────────────────────── */
@media (max-width: 575.98px) {
    .mobile-cards thead { display: none; }
    .mobile-cards tbody tr {
        display: block;
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 10px;
        padding: 0.75rem;
        margin-bottom: 0.75rem;
        box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    }
    .mobile-cards tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border: none;
        padding: 0.3rem 0;
        font-size: 0.875rem;
    }
    .mobile-cards tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #64748b;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-right: 0.5rem;
        flex-shrink: 0;
    }
    .mobile-cards tbody .actions-cell {
        justify-content: flex-end;
        padding-top: 0.5rem;
        border-top: 1px solid #f1f5f9;
        margin-top: 0.25rem;
    }
    .mobile-cards tbody .actions-cell::before { display: none; }

    /* Products page — dedicated mobile cards */
    .mobile-cards-items tbody tr.mobile-category-row {
        display: block;
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        margin: 1rem 0 0.45rem;
    }

    .mobile-cards-items tbody tr.mobile-category-row:first-child {
        margin-top: 0;
    }

    .mobile-cards-items tbody tr.mobile-category-row td {
        display: block;
        padding: 0.45rem 0.75rem;
        background: #fff7ed;
        border: 1px solid #fed7aa;
        border-radius: 10px;
        color: #c2410c;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    .mobile-cards-items tbody tr.mobile-category-row td::before {
        display: none;
    }

    .mobile-cards-items tbody tr.mobile-item-row {
        display: grid;
        gap: 0.65rem 0.75rem;
        padding: 0.875rem;
        border-radius: 14px;
        border: 1px solid #e2e8f0;
        background: #fff;
        box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
        margin-bottom: 0.65rem;
    }

    .mobile-cards-items.mobile-cards-has-photo tbody tr.mobile-item-row {
        grid-template-columns: 56px 1fr auto;
        grid-template-areas:
            "photo desc price"
            "reorder actions actions";
    }

    .mobile-cards-items:not(.mobile-cards-has-photo) tbody tr.mobile-item-row {
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "desc price"
            "reorder actions";
    }

    .mobile-cards-items tbody tr.mobile-item-row td {
        display: block;
        padding: 0;
        border: none;
    }

    .mobile-cards-items tbody tr.mobile-item-row td::before {
        display: none;
    }

    .mobile-cards-items .mobile-photo-cell {
        grid-area: photo;
        position: relative;
        align-self: start;
    }

    .mobile-cards-items .mobile-item-photo {
        width: 56px;
        height: 56px;
        object-fit: cover;
        border-radius: 12px;
        border: 1px solid #e2e8f0;
        display: block;
    }

    .mobile-cards-items .mobile-item-photo-empty {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f8fafc;
        color: #cbd5e1;
        border-style: dashed;
        font-size: 1rem;
    }

    .mobile-cards-items .mobile-photo-badge {
        position: absolute;
        right: -4px;
        bottom: -4px;
        background: #0f172a;
        color: #fff;
        font-size: 0.58rem;
        font-weight: 700;
        line-height: 1;
        padding: 0.18rem 0.32rem;
        border-radius: 999px;
    }

    .mobile-cards-items .mobile-desc-cell {
        grid-area: desc;
        font-size: 0.92rem;
        font-weight: 600;
        color: #0f172a;
        line-height: 1.35;
        align-self: center;
        word-break: break-word;
    }

    .mobile-cards-items .mobile-price-cell {
        grid-area: price;
        align-self: center;
        text-align: right;
        white-space: nowrap;
        font-size: 0.95rem;
    }

    .mobile-cards-items .mobile-reorder-cell {
        grid-area: reorder;
        align-self: end;
    }

    .mobile-cards-items .mobile-reorder-cell .d-flex {
        flex-direction: row !important;
        gap: 0.35rem !important;
    }

    .mobile-cards-items .mobile-reorder-cell .move-btn {
        width: 34px;
        height: 34px;
        padding: 0 !important;
        border-radius: 10px;
        font-size: 0.72rem !important;
        line-height: 1 !important;
    }

    .mobile-cards-items .mobile-actions-cell {
        grid-area: actions;
        display: flex !important;
        justify-content: flex-end;
        align-items: end;
        gap: 0.45rem;
        border-top: 1px solid #f1f5f9;
        padding-top: 0.65rem !important;
        margin-top: 0.1rem;
    }

    .mobile-cards-items .mobile-action-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.35rem;
        min-width: 44px;
        border-radius: 10px;
        font-size: 0.78rem;
        font-weight: 600;
        padding: 0.45rem 0.7rem;
    }

    .mobile-cards-items .mobile-action-btn .mobile-action-text {
        display: none;
    }

    /* Shared list cards (categories, sections, venues) */
    .mobile-cards-list tbody tr.mobile-list-row {
        display: grid;
        gap: 0.65rem 0.75rem;
        padding: 0.875rem;
        border-radius: 14px;
        border: 1px solid #e2e8f0;
        background: #fff;
        box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
        margin-bottom: 0.65rem;
    }

    .mobile-cards-list tbody tr.mobile-list-row td {
        display: block;
        padding: 0;
        border: none;
    }

    .mobile-cards-list tbody tr.mobile-list-row td::before {
        display: none;
    }

    .mobile-cards-list .mobile-desc-cell {
        grid-area: desc;
        font-size: 0.92rem;
        font-weight: 600;
        color: #0f172a;
        line-height: 1.35;
        word-break: break-word;
    }

    .mobile-cards-list .mobile-meta-cell {
        grid-area: meta;
    }

    .mobile-cards-list .mobile-meta-badge {
        display: inline-block;
        background: #f1f5f9;
        color: #475569;
        font-size: 0.68rem;
        font-weight: 700;
        padding: 0.22rem 0.55rem;
        border-radius: 999px;
    }

    .mobile-cards-list .mobile-photo-cell {
        grid-area: photo;
        align-self: start;
    }

    .mobile-cards-list .mobile-item-photo {
        width: 56px;
        height: 56px;
        object-fit: cover;
        border-radius: 12px;
        border: 1px solid #e2e8f0;
        display: block;
    }

    .mobile-cards-list .mobile-item-photo-empty {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f8fafc;
        color: #cbd5e1;
        border-style: dashed;
        font-size: 1rem;
    }

    .mobile-cards-list .mobile-reorder-cell {
        grid-area: reorder;
        align-self: end;
    }

    .mobile-cards-list .mobile-reorder-cell .d-flex {
        flex-direction: row !important;
        gap: 0.35rem !important;
    }

    .mobile-cards-list .mobile-reorder-cell .move-btn {
        width: 34px;
        height: 34px;
        padding: 0 !important;
        border-radius: 10px;
        font-size: 0.72rem !important;
        line-height: 1 !important;
    }

    .mobile-cards-list .mobile-actions-cell {
        grid-area: actions;
        display: flex !important;
        justify-content: flex-end;
        align-items: end;
        gap: 0.45rem;
        border-top: 1px solid #f1f5f9;
        padding-top: 0.65rem !important;
        margin-top: 0.1rem;
    }

    .mobile-cards-list .mobile-action-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.35rem;
        min-width: 44px;
        border-radius: 10px;
        font-size: 0.78rem;
        font-weight: 600;
        padding: 0.45rem 0.7rem;
    }

    .mobile-cards-list .mobile-action-btn .mobile-action-text {
        display: none;
    }

    .mobile-cards-categories tbody tr.mobile-list-row {
        grid-template-columns: 56px 1fr;
        grid-template-areas:
            "photo desc"
            "photo meta"
            "reorder actions";
    }

    .mobile-cards-sections tbody tr.mobile-list-row {
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "desc desc"
            "reorder actions";
    }

    .mobile-cards-sections .mobile-desc-cell {
        align-self: center;
    }

    .mobile-cards-venues tbody tr.mobile-list-row {
        grid-template-columns: 1fr;
        grid-template-areas:
            "desc"
            "actions";
    }

    .mobile-cards-venues .mobile-actions-cell {
        justify-content: stretch;
        border-top: 1px solid #f1f5f9;
    }

    .mobile-cards-venues .mobile-action-btn {
        flex: 1;
    }
}

/* ── Quick toolbar (venue / view / print / products) ─────────── */
.quick-toolbar {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: 0.65rem 0 0.75rem;
}

.quick-toolbar-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.quick-toolbar-item {
    flex-shrink: 0;
}

.quick-toolbar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.35rem 0.7rem;
    min-height: 36px;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #fff;
    color: #475569;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    transition: background 0.12s, border-color 0.12s, color 0.12s, box-shadow 0.12s;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.quick-toolbar-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #334155;
}

.quick-toolbar-btn.is-active,
.quick-toolbar-btn.is-active:hover {
    background: #fff7ed;
    border-color: #fdba74;
    color: #c2410c;
}

.quick-toolbar-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.82rem;
}

.quick-toolbar-icon-venue   { background: #eef2ff; color: #4f46e5; }
.quick-toolbar-icon-menu    { background: #fff7ed; color: #ea580c; }
.quick-toolbar-icon-print   { background: #f0fdf4; color: #16a34a; }
.quick-toolbar-icon-products { background: #fdf4ff; color: #9333ea; }

.quick-toolbar-label {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.quick-toolbar-dropdown {
    min-width: 220px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    font-size: 0.82rem;
    padding: 0.35rem;
}

.quick-toolbar-dropdown .dropdown-header {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #94a3b8;
}

@media (max-width: 767.98px) {
    .navbar-brand-text {
        font-size: 0.92rem;
    }

    .navbar-lang-code {
        display: none;
    }

    .navbar-lang-btn {
        padding: 0.3rem 0.45rem;
    }

    .navbar-lang-btn::after {
        display: none;
    }

    .quick-toolbar {
        padding: 0.75rem 0 0.85rem;
    }

    .quick-toolbar-inner {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
        gap: 0.35rem;
    }

    .quick-toolbar-btn {
        flex-direction: column;
        width: 100%;
        min-height: 0;
        padding: 0.45rem 0.25rem 0.5rem;
        border: none;
        border-radius: 14px;
        background: transparent;
        box-shadow: none;
        gap: 0.4rem;
    }

    .quick-toolbar-btn:hover,
    .quick-toolbar-btn.is-active,
    .quick-toolbar-btn.is-active:hover {
        background: #f8fafc;
        border-color: transparent;
    }

    .quick-toolbar-icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        font-size: 1.05rem;
    }

    .quick-toolbar-label {
        font-size: 0.62rem;
        font-weight: 700;
        text-align: center;
        line-height: 1.15;
        max-width: 100%;
        color: #64748b;
    }

    .quick-toolbar-btn.is-active .quick-toolbar-label {
        color: #c2410c;
    }

    .quick-toolbar-btn.is-active .quick-toolbar-icon-products {
        background: #ffedd5;
        color: #c2410c;
    }

    .quick-toolbar-item .dropdown-toggle::after {
        display: none;
    }
}

/* ── Responsive styles ───────────────────────────────────────── */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* ── Hamburger toggler icon (dark) ───────────────────────────── */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230f172a' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── Mobile nav panel ────────────────────────────────────────── */
@media (max-width: 767.98px) {
    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        background: #fff;
        border-radius: 0 0 18px 18px;
        border-top: 1px solid #f1f5f9;
        box-shadow: 0 12px 32px rgba(15,23,42,0.10);
        padding: 4px 8px 12px;
        margin: 0 -12px;
    }

    /* Mobile nav links */
    .navbar-nav .nav-link {
        padding: 10px 12px;
        border-radius: 9px;
        font-size: 0.92rem;
        font-weight: 500;
        color: #334155;
        transition: background 0.12s;
    }
    .navbar-nav .nav-link:hover { background: rgba(249,115,22,0.06); color: #f97316 !important; }
    .navbar-nav .nav-link.active { background: rgba(249,115,22,0.10); color: #f97316 !important; }

    /* Mobile venue selector */
    .mobile-venue-item form select {
        width: 100%;
        max-width: 100% !important;
        min-width: unset !important;
        margin: 4px 0 8px;
    }

    /* ── Mobile account panel (bottom of hamburger) ───────────── */
    .mobile-account-panel {
        border-top: 1px solid #f1f5f9;
        margin: 6px 0 0;
        padding-top: 8px;
    }

    .mobile-account-header {
        display: flex;
        align-items: center;
        gap: 11px;
        padding: 8px 10px 10px;
    }

    .mobile-account-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        font-weight: 700;
        flex-shrink: 0;
        box-shadow: 0 2px 8px rgba(249,115,22,0.28);
    }

    .mobile-account-name {
        font-weight: 700;
        font-size: 0.88rem;
        color: #0f172a;
        line-height: 1.25;
        margin-bottom: 4px;
    }

    .mobile-account-badge {
        display: inline-block;
        color: #fff;
        font-size: 0.6rem;
        font-weight: 700;
        padding: 1px 8px;
        border-radius: 99px;
        letter-spacing: 0.06em;
    }

    .mobile-account-links {
        display: flex;
        flex-direction: column;
    }

    .mobile-account-links a {
        display: flex;
        align-items: center;
        gap: 11px;
        padding: 10px 12px;
        border-radius: 9px;
        font-size: 0.9rem;
        font-weight: 500;
        color: #374151;
        text-decoration: none;
        transition: background 0.12s, color 0.12s;
    }

    .mobile-account-links a i {
        width: 16px;
        text-align: center;
        flex-shrink: 0;
        color: #6b7280;
        font-size: 0.85rem;
    }

    .mobile-account-links a:hover {
        background: rgba(249,115,22,0.07);
        color: #f97316;
    }

    .mobile-account-links a:hover i { color: #f97316; }

    .mobile-account-links a.active {
        background: rgba(249,115,22,0.10);
        color: #ea580c;
        font-weight: 600;
    }

    .mobile-account-links a.active i { color: #ea580c; }

    .mobile-account-links .mobile-logout-link { color: #ef4444; }
    .mobile-account-links .mobile-logout-link i { color: #f87171; }
    .mobile-account-links .mobile-logout-link:hover {
        background: rgba(239,68,68,0.07) !important;
        color: #dc2626 !important;
    }
    .mobile-account-links .mobile-logout-link:hover i { color: #dc2626 !important; }
}
