/* ===== ADMIN LAYOUT ===== */
.admin-body {
    background: var(--bg-dark);
    overflow-x: hidden;
}

/* SIDEBAR */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: var(--sidebar-width);
    background: #ffffff;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    z-index: 200;
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.sidebar-header {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-shrink: 0;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sidebar-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 0.85rem;
    color: var(--primary);
    line-height: 1;
    letter-spacing: 0.05em;
}

.sidebar-subtitle {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
}

.sidebar-close {
    display: none;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    padding: 4px;
}

.sidebar-nav {
    flex: 1;
    padding: 1rem 0;
    overflow-y: auto;
}

.sidebar-section-label {
    padding: 0.75rem 1rem 0.35rem;
    font-size: 0.65rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    border-radius: 0;
    margin: 0 0.5rem;
    border-radius: 8px;
}

.sidebar-item:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
}

.sidebar-item.active {
    color: var(--primary);
    background: rgba(232, 160, 32, 0.1);
    font-weight: 600;
}

.sidebar-item.active::before {
    content: '';
    position: absolute;
    left: -0.5rem;
    top: 10%;
    bottom: 10%;
    width: 3px;
    background: var(--primary);
    border-radius: 0 2px 2px 0;
}

.sidebar-icon {
    font-size: 1.05rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.sidebar-badge {
    margin-left: auto;
    background: var(--primary);
    color: #0a0a0a;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.1rem 0.4rem;
    border-radius: 99px;
}

.sidebar-footer {
    border-top: 1px solid var(--border);
    padding: 1rem;
    flex-shrink: 0;
}

.sidebar-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.sidebar-user-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #0a0a0a;
    flex-shrink: 0;
}

.sidebar-user-name {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.2;
}

.sidebar-user-role {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.sidebar-view-site {
    display: block;
    text-align: center;
    padding: 0.6rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: all 0.2s;
}

.sidebar-view-site:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ADMIN MAIN */
.admin-main {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: margin-left 0.3s ease;
}

/* TOPBAR */
.topbar {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 0 1.5rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.topbar-menu-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: all 0.2s;
    display: none;
}

.topbar-menu-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
}

.topbar-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.topbar-breadcrumb span:first-child {
    color: var(--text-muted);
}

.topbar-breadcrumb span:last-child {
    color: var(--primary);
    font-weight: 600;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.topbar-notif {
    position: relative;
    cursor: pointer;
    font-size: 1.1rem;
}

.notif-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.topbar-whatsapp {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.875rem;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.25);
    border-radius: 8px;
    color: #25D366;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.2s;
}

.topbar-whatsapp:hover {
    background: rgba(37, 211, 102, 0.18);
}

/* CONTENT */
.admin-content {
    flex: 1;
    padding: 2rem 1.5rem;
}

.page {
    display: none;
}

.page.active {
    display: block;
    animation: fadeUp 0.3s ease;
}

.page-header {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 2rem;
}

.page-title {
    font-size: 1.75rem;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
}

.page-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* NEW DASHBOARD ELEMENTS */
.dashboard-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.dashboard-filters {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.35rem;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.btn-filter {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-filter:hover {
    color: var(--text);
}

.btn-filter.active {
    background: rgba(232, 160, 32, 0.15);
    color: var(--primary);
}

/* STATS GRID */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stats-grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

.stat-card {
    background: #ffffff;
    border: 1px solid rgba(4,36,87,0.1);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: rgba(232, 160, 32, 0.3);
}

.stat-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.stat-card-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.stat-card-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-card-value {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    color: var(--primary);
    line-height: 1;
}

.stat-card-change {
    font-size: 0.72rem;
}

.stat-card-change.positive {
    color: #4ade80;
}

.stat-card-change.negative {
    color: #f87171;
}

.stat-card-change.neutral {
    color: var(--text-muted);
}

/* DASHBOARD MIDDLE GRID */
.dashboard-middle-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
}

.dashboard-sidebar-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* CHART CARD */
.chart-card {
    display: flex;
    flex-direction: column;
}

.chart-filters {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

.chart-filters span {
    cursor: pointer;
    transition: color 0.2s;
}

.chart-filters span:hover,
.chart-filters .active {
    color: var(--primary);
}

.chart-mock {
    position: relative;
    flex: 1;
    min-height: 280px;
    padding: 1rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
}

.chart-lines {
    position: absolute;
    inset: 1.5rem;
    bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.chart-line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
}

.chart-path {
    position: absolute;
    inset: 1.5rem;
    bottom: 2.5rem;
    z-index: 10;
}

.chart-path svg {
    width: 100%;
    height: 100%;
}

.chart-labels {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-muted);
    position: relative;
    z-index: 11;
}

/* DONUT CHART (Conversão) */
.conversion-chart {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.donut-chart {
    position: relative;
    width: 160px;
    height: 160px;
}

.donut-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.donut-inner strong {
    font-size: 1.1rem;
    color: var(--text);
    font-weight: 800;
}

.donut-inner span {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.2rem;
}

.donut-svg {
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 3.8;
}

.circle-approved {
    fill: none;
    stroke: #a3e635;
    stroke-width: 3.8;
    stroke-linecap: round;
}

.donut-legend {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.donut-legend span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.donut-legend strong {
    color: var(--text);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot.done {
    background: #a3e635;
}

.dot.pending {
    background: var(--primary);
}

/* COMPACT CARDS (Sidebar) */
.compact-card {
    padding: 1.25rem;
    border-radius: 12px;
}

.compact-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.compact-card-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.3rem;
}

.compact-card-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.compact-card-text {
    font-size: 0.75rem;
    color: var(--text-dim);
}

.admin-search-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    color: var(--text);
    font-family: inherit;
    font-size: 0.8rem;
    width: 300px;
    transition: all 0.2s;
}

.admin-search-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

/* ADMIN CARD */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.admin-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.admin-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.admin-card-header h2 {
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.btn-card-action {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-card-action:hover {
    opacity: 0.75;
}

/* TABLE */
.table-wrapper {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.admin-table th {
    padding: 0.875rem 1rem;
    text-align: left;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    font-weight: 600;
}

.admin-table td {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    vertical-align: middle;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.product-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-name span {
    font-size: 1.1rem;
}

/* BADGES */
.badge {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    border-radius: 99px;
    font-size: 0.72rem;
    font-weight: 600;
}

.badge-active {
    background: rgba(74, 222, 128, 0.12);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.25);
}

.badge-pending {
    background: rgba(232, 160, 32, 0.12);
    color: var(--primary);
    border: 1px solid rgba(232, 160, 32, 0.25);
}

.badge-delivery {
    background: rgba(96, 165, 250, 0.12);
    color: #60a5fa;
    border: 1px solid rgba(96, 165, 250, 0.25);
}

.badge-done {
    background: rgba(74, 222, 128, 0.08);
    color: #4ade80;
}

.badge-cancel {
    background: rgba(248, 113, 113, 0.12);
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.25);
}

.badge-inactive {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.category-tag {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    background: rgba(232, 160, 32, 0.08);
    border-radius: 6px;
    font-size: 0.72rem;
    color: var(--primary);
}

.category-tag.destilados {
    background: rgba(139, 92, 246, 0.08);
    color: #a78bfa;
}

.category-tag.combos {
    background: rgba(251, 191, 36, 0.08);
    color: #fbbf24;
}

.stock-badge {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
}

.stock-badge.ok {
    color: #4ade80;
    background: rgba(74, 222, 128, 0.08);
}

.stock-badge.low {
    color: #fb923c;
    background: rgba(251, 146, 60, 0.1);
}

.stock-badge.empty {
    color: #f87171;
    background: rgba(248, 113, 113, 0.1);
}

.action-btns {
    display: flex;
    gap: 0.4rem;
}

.btn-icon {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.3rem 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.btn-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

/* POPULAR LIST */
.popular-list {
    padding: 0 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.popular-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.popular-item:last-child {
    border-bottom: none;
}

.popular-rank {
    width: 24px;
    height: 24px;
    background: rgba(232, 160, 32, 0.1);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.popular-info {
    flex: 1;
}

.popular-info strong {
    display: block;
    font-size: 0.875rem;
}

.popular-info span {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.popular-sold {
    font-size: 0.78rem;
    color: var(--primary);
    font-weight: 600;
}

/* EVENTS LIST (Dashboard) */
.events-list {
    padding: 0 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.event-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.event-list-item:last-child {
    border-bottom: none;
}

.event-list-date {
    text-align: center;
    min-width: 44px;
    padding: 0.4rem;
    background: rgba(232, 160, 32, 0.08);
    border-radius: 8px;
}

.event-list-date strong {
    display: block;
    font-size: 0.72rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.event-list-date span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.event-list-info {
    flex: 1;
}

.event-list-info strong {
    display: block;
    font-size: 0.875rem;
}

.event-list-info span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* KANBAN */
.kanban-board {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.kanban-board::-webkit-scrollbar {
    height: 6px;
}

.kanban-col {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    min-width: 280px;
    flex: 1;
    overflow: hidden;
}

.kanban-col-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    margin-bottom: 0.75rem;
}

.kanban-col-header h3 {
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.kanban-count {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    padding: 0.1rem 0.45rem;
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Kanban Header Variants */
.kanban-col-header.novos {
    background: rgba(37, 99, 235, 0.15);
    /* Blue */
    border-bottom: 1px solid rgba(37, 99, 235, 0.3);
}

.kanban-col-header.preparando {
    background: rgba(234, 179, 8, 0.15);
    /* Yellow */
    border-bottom: 1px solid rgba(234, 179, 8, 0.3);
}

.kanban-col-header.motoboy {
    background: rgba(147, 51, 234, 0.15);
    /* Purple */
    border-bottom: 1px solid rgba(147, 51, 234, 0.3);
}

.kanban-col-header.entregues {
    background: rgba(22, 163, 74, 0.15);
    /* Green */
    border-bottom: 1px solid rgba(22, 163, 74, 0.3);
}

.kanban-col-header.cancelados {
    background: rgba(220, 38, 38, 0.15);
    /* Red */
    border-bottom: 1px solid rgba(220, 38, 38, 0.3);
}

.kanban-cards {
    padding: 0 1rem 1rem;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.kanban-empty {
    border: 1px dashed rgba(255, 255, 255, 0.1);
    color: var(--text-dim);
    font-size: 0.75rem;
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 8px;
    user-select: none;
}

.kanban-card.dragging {
    opacity: 0.5;
    transform: scale(0.95);
    border-color: var(--primary);
}

.kanban-card {
    background: #ffffff;
    border: 1px solid rgba(4,36,87,0.12);
    border-radius: 10px;
    padding: 0.875rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
}

.kanban-card:hover {
    border-color: rgba(232, 160, 32, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.kanban-card:last-child {
    margin-bottom: 0;
}

.kanban-card-id {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
    font-family: monospace;
}

.kanban-card strong {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.kanban-card p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.kanban-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kanban-card-footer span:first-child {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
}

.kanban-time {
    font-size: 0.7rem;
    color: var(--text-dim);
}

.done-card {
    opacity: 0.5;
}

.done-card:hover {
    opacity: 0.85;
}

/* FILTER TABS */
.filter-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 99px;
    font-size: 0.8rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.2s;
}

.filter-tab.active,
.filter-tab:hover {
    background: rgba(232, 160, 32, 0.1);
    border-color: rgba(232, 160, 32, 0.4);
    color: var(--primary);
}

/* COMBOS GRID */
.combos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.25rem;
}

.combo-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.combo-card:hover {
    border-color: rgba(232, 160, 32, 0.35);
    transform: translateY(-4px);
}

.combo-emoji {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
}

.combo-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.combo-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0.875rem;
    line-height: 1.5;
}

.combo-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
}

.combo-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* EVENTS FULL */
.events-full-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-full-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s;
}

.event-full-card:hover {
    border-color: rgba(232, 160, 32, 0.3);
}

.event-full-date {
    text-align: center;
    min-width: 60px;
    padding: 0.75rem;
    background: rgba(232, 160, 32, 0.08);
    border-radius: 12px;
    flex-shrink: 0;
}

.event-full-date strong {
    display: block;
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.event-full-date span {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.event-full-info {
    flex: 1;
}

.event-full-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.event-full-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
    line-height: 1.5;
}

.event-full-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* MOTOBOY PORTAL OVERHAUL */
.motoboy-portal-nav {
    display: flex;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 0.35rem;
    margin-bottom: 2rem;
    gap: 0.25rem;
}

.motoboy-tab {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-dim);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

.motoboy-tab:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.02);
}

.motoboy-tab.active {
    background: var(--primary);
    color: #000;
}

.motoboy-portal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.empty-state-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    color: var(--text-dim);
}

.empty-state-large .empty-icon {
    font-size: 4rem;
    opacity: 0.2;
    margin-bottom: 0.5rem;
}

.empty-state-large p {
    font-size: 0.95rem;
    font-weight: 500;
}

/* CHART BARS */
.chart-bars {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chart-bar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chart-bar-item>span {
    width: 90px;
    font-size: 0.875rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

.chart-bar-bg {
    flex: 1;
    height: 32px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    overflow: hidden;
}

.chart-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding-left: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #0a0a0a;
    transition: width 1s ease;
}

/* SETTINGS */
.settings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.settings-form {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.form-input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: var(--text);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s;
    width: 100%;
    resize: vertical;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
}

.form-color {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2px;
    background: none;
    cursor: pointer;
    flex-shrink: 0;
}

.plan-badge {
    padding: 0.875rem 1rem;
    background: linear-gradient(135deg, rgba(232, 160, 32, 0.12), rgba(196, 133, 10, 0.08));
    border: 1px solid rgba(232, 160, 32, 0.3);
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

/* MODAL */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 500;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.modal-overlay.open {
    display: flex;
}

.modal {
    background: #141414;
    border: 1px solid var(--border);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    animation: fadeUp 0.25s ease;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.modal-header h2 {
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.2s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
}

.modal-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.modal-info-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    padding: 0.625rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.modal-info-row:last-child {
    border-bottom: none;
}

.modal-info-row strong:first-child {
    font-size: 0.8rem;
    color: var(--text-muted);
    min-width: 80px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.modal-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .sidebar {
        transform: translateX(-100%);
        box-shadow: none;
    }

    .sidebar.open {
        transform: translateX(0);
        box-shadow: 4px 0 24px rgba(0, 0, 0, 0.5);
    }

    .sidebar-close {
        display: flex;
    }

    .admin-main {
        margin-left: 0;
    }

    .topbar-menu-btn {
        display: flex;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-middle-grid {
        grid-template-columns: 1fr;
    }

    .kanban-board {
        grid-template-columns: repeat(2, 1fr);
    }

    .settings-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .topbar {
        padding: 0 1rem;
    }

    .topbar-breadcrumb {
        font-size: 0.75rem;
    }

    .topbar-right {
        gap: 0.65rem;
    }

    .topbar-whatsapp {
        padding: 0.35rem 0.6rem;
        font-size: 0.75rem;
    }

    .topbar-whatsapp svg {
        width: 14px;
        height: 14px;
    }

    .admin-content {
        padding: 1rem;
    }

    .page-title {
        font-size: 1.4rem;
    }

    .page-subtitle {
        font-size: 0.8rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .stats-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-search-input {
        width: 100%;
        margin-top: 0.5rem;
    }

    .stat-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 0.85rem;
        gap: 0.5rem;
    }

    .stat-card-icon {
        font-size: 1.5rem;
        margin-bottom: -0.25rem;
    }

    .stat-card-label {
        font-size: 0.65rem;
    }

    .stat-card-value {
        font-size: 1.25rem;
    }

    .stat-card-change {
        font-size: 0.65rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .admin-card-header {
        padding: 1rem;
    }

    .admin-card-header h2 {
        font-size: 0.95rem;
    }

    .btn-card-action {
        font-size: 0.75rem;
    }

    .admin-table {
        font-size: 0.75rem;
    }

    .admin-table th,
    .admin-table td {
        padding: 0.75rem 0.6rem;
    }

    .admin-table th {
        font-size: 0.65rem;
    }

    .badge {
        font-size: 0.65rem;
        padding: 0.15rem 0.4rem;
    }

    .popular-list,
    .events-list {
        padding: 0 1rem 1rem;
    }

    .kanban-board {
        grid-template-columns: 1fr;
    }

    .modal {
        width: 95%;
    }
}