/* ========================================
   CLUB BABY SHOW - PANEL ADMINISTRATIVO
   Tema: Premium Navy & Gold
   ======================================== */

:root {
    --primary-navy: #0f1b3d;
    --primary-navy-light: #1a2d5a;
    --primary-navy-dark: #0a1229;
    --accent-gold: #d4af37;
    --accent-gold-light: #f0d77c;
    --accent-gold-dark: #b8941e;
    --bg-black: #060a14;
    --bg-dark: #0b1124;
    --bg-card: #111b38;
    --bg-card-hover: #162247;
    --text-white: #ffffff;
    --text-gray: #b8c4d8;
    --text-light-gray: #7a8aa6;
    --success-green: #25d366;
    --warning-orange: #ff9800;
    --danger-red: #e74c3c;
    --info-blue: #3498db;
    --shadow-navy: rgba(15, 27, 61, 0.5);
    --shadow-gold: rgba(212, 175, 55, 0.2);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f0d77c 50%, #d4af37 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-black);
    color: var(--text-white);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ========================================
   LOGIN SCREEN
   ======================================== */
.login-screen {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.login-container {
    text-align: center;
    padding: 40px 30px;
    max-width: 380px;
    width: 100%;
}

.login-logo {
    margin-bottom: 30px;
}

.login-logo-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 8px 30px rgba(212, 175, 55, 0.4));
    margin-bottom: 15px;
}

.login-logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--accent-gold);
    letter-spacing: 2px;
}

.login-logo p {
    font-size: 11px;
    color: var(--text-light-gray);
    letter-spacing: 3px;
    margin-top: 5px;
}

.login-form {
    margin-bottom: 20px;
}

.login-input-group {
    margin-bottom: 20px;
    text-align: left;
}

.login-input-group label {
    display: block;
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.login-input-group label i {
    margin-right: 6px;
    color: var(--accent-gold);
}

.login-input-group input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 10px;
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.login-input-group input:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.login-btn {
    width: 100%;
    padding: 14px;
    background: var(--gradient-gold);
    color: var(--primary-navy-dark);
    border: none;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.login-error {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.3);
    border-radius: 8px;
    color: #e74c3c;
    font-size: 13px;
    margin-top: 15px;
}

.login-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light-gray);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.login-back:hover { color: var(--accent-gold); }

/* ========================================
   MOBILE BOTTOM NAVIGATION
   ======================================== */
.mobile-nav {
    position: fixed;
    bottom: 0; left: 0; width: 100%;
    background: rgba(6, 10, 20, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    z-index: 200;
    display: block;
}

.mobile-nav-items {
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 6px 10px;
    color: var(--text-light-gray);
    text-decoration: none;
    font-size: 10px;
    transition: color 0.3s ease;
}

.mobile-nav-item i { font-size: 18px; }

.mobile-nav-item.active {
    color: var(--accent-gold);
}

.mobile-nav-item:hover { color: var(--accent-gold); }

/* ========================================
   SIDEBAR
   ======================================== */
.sidebar {
    position: fixed;
    top: 0; left: 0;
    width: 250px;
    height: 100vh;
    background: var(--bg-dark);
    border-right: 1px solid rgba(212, 175, 55, 0.1);
    z-index: 300;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    transform: translateX(-100%);
}

.sidebar.active { transform: translateX(0); }

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    color: var(--accent-gold);
}

.sidebar-logo-img {
    width: 35px; height: 35px;
    object-fit: contain;
    border-radius: 50%;
}

.sidebar-toggle {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-gray);
    width: 32px; height: 32px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-nav {
    flex: 1;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-gray);
    text-decoration: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-item:hover {
    background: rgba(212, 175, 55, 0.05);
    color: var(--accent-gold);
}

.nav-item.active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    border-left: 3px solid var(--accent-gold);
}

.nav-item i { width: 20px; text-align: center; }

.sidebar-footer {
    padding: 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.back-to-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: var(--text-light-gray);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.back-to-menu:hover { color: var(--accent-gold); }

/* Sidebar overlay */
.sidebar-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 250;
    display: none;
}

.sidebar-overlay.active { display: block; }

/* ========================================
   MAIN CONTENT
   ======================================== */
.main-content {
    padding: 0 16px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-btn {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-gray);
    width: 36px; height: 36px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--accent-gold);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.date-display {
    font-size: 11px;
    color: var(--text-light-gray);
    display: none;
}

.order-counter-display {
    font-size: 11px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.counter-label { color: var(--text-light-gray); }
.counter-value {
    color: var(--accent-gold);
    font-weight: 700;
    font-family: monospace;
    font-size: 13px;
}

/* ========================================
   CONTENT SECTIONS
   ======================================== */
.content-section {
    display: none;
}

.content-section.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   STATS GRID
   ======================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.stat-card {
    background: var(--bg-card);
    border-radius: 14px;
    padding: 16px;
    border: 1px solid rgba(212, 175, 55, 0.06);
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    width: 45px; height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.stat-icon.orders { background: rgba(212, 175, 55, 0.15); color: var(--accent-gold); }
.stat-icon.revenue { background: rgba(37, 211, 102, 0.15); color: var(--success-green); }
.stat-icon.today { background: rgba(52, 152, 219, 0.15); color: var(--info-blue); }
.stat-icon.average { background: rgba(155, 89, 182, 0.15); color: #9b59b6; }

.stat-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
}

.stat-info p {
    font-size: 10px;
    color: var(--text-light-gray);
    margin-top: 2px;
}

/* ========================================
   CHARTS
   ======================================== */
.charts-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.chart-card {
    background: var(--bg-card);
    border-radius: 14px;
    padding: 20px;
    border: 1px solid rgba(212, 175, 55, 0.06);
}

.chart-card.full-width { margin-top: 20px; }

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.chart-header h3 {
    font-size: 14px;
    color: var(--text-white);
    font-weight: 600;
}

.chart-header h3 i { color: var(--accent-gold); margin-right: 6px; }

.chart-select, .report-select, .report-date {
    padding: 6px 12px;
    background: var(--bg-card-hover);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
}

/* ========================================
   ORDERS TABLE
   ======================================== */
.recent-orders-card {
    background: var(--bg-card);
    border-radius: 14px;
    padding: 20px;
    border: 1px solid rgba(212, 175, 55, 0.06);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.card-header h3 {
    font-size: 14px;
    color: var(--text-white);
}

.card-header h3 i { color: var(--accent-gold); margin-right: 6px; }

.view-all {
    font-size: 12px;
    color: var(--accent-gold);
    text-decoration: none;
    cursor: pointer;
}

.orders-table-container {
    overflow-x: auto;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.orders-table th {
    text-align: left;
    padding: 10px 8px;
    color: var(--text-light-gray);
    font-weight: 600;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    white-space: nowrap;
    font-size: 11px;
}

.orders-table td {
    padding: 10px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--text-gray);
    white-space: nowrap;
}

.orders-full-table {
    display: none;
}

/* Status badges */
.status-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    text-transform: capitalize;
}

.status-badge.pendiente { background: rgba(255, 152, 0, 0.15); color: var(--warning-orange); }
.status-badge.enviado { background: rgba(52, 152, 219, 0.15); color: var(--info-blue); }
.status-badge.confirmado { background: rgba(37, 211, 102, 0.15); color: var(--success-green); }
.status-badge.completado { background: rgba(212, 175, 55, 0.15); color: var(--accent-gold); }
.status-badge.cancelado { background: rgba(231, 76, 60, 0.15); color: var(--danger-red); }

.action-btn {
    padding: 6px 12px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 6px;
    color: var(--accent-gold);
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.action-btn:hover {
    background: rgba(212, 175, 55, 0.2);
}

/* Mobile orders */
.mobile-orders-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-card-mobile {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(212, 175, 55, 0.06);
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.order-card-number {
    font-weight: 700;
    color: var(--accent-gold);
    font-size: 14px;
}

.order-card-name {
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 2px;
}

.order-card-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.order-card-total {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-gold);
}

.order-card-date {
    font-size: 11px;
    color: var(--text-light-gray);
}

.order-card-actions {
    display: flex;
    gap: 8px;
}

.order-card-actions .action-btn {
    flex: 1;
    text-align: center;
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light-gray);
}

.empty-state i {
    font-size: 50px;
    margin-bottom: 15px;
    display: block;
    color: rgba(212, 175, 55, 0.3);
}

.empty-state h3 {
    color: var(--text-gray);
    margin-bottom: 8px;
}

/* ========================================
   FILTERS
   ======================================== */
.section-header-bar {
    margin-bottom: 16px;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-end;
}

.filter-group {
    flex: 1;
    min-width: 120px;
}

.filter-group label {
    display: block;
    font-size: 11px;
    color: var(--text-light-gray);
    margin-bottom: 5px;
}

.filter-group input,
.filter-group select {
    width: 100%;
    padding: 10px 12px;
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
}

.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.filter-btn {
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.filter-btn:hover { background: rgba(212, 175, 55, 0.2); }
.filter-btn.clear { border-color: rgba(231, 76, 60, 0.2); color: var(--danger-red); background: rgba(231, 76, 60, 0.1); }
.filter-btn.clear:hover { background: rgba(231, 76, 60, 0.2); }

/* ========================================
   REPORTS
   ======================================== */
.reports-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.report-card {
    background: var(--bg-card);
    border-radius: 14px;
    padding: 20px;
    border: 1px solid rgba(212, 175, 55, 0.06);
}

.report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}

.report-header h3 {
    font-size: 14px;
    color: var(--text-white);
}

.report-header h3 i { color: var(--accent-gold); margin-right: 6px; }

.report-stat {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.report-stat .label { font-size: 13px; color: var(--text-gray); }
.report-stat .value { font-size: 13px; font-weight: 600; color: var(--accent-gold); }

.export-btn {
    width: 100%;
    padding: 10px;
    margin-top: 15px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: var(--accent-gold);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.export-btn:hover { background: rgba(212, 175, 55, 0.2); }

/* ========================================
   CATALOG SECTION
   ======================================== */
.catalog-header {
    margin-bottom: 20px;
}

.catalog-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--accent-gold);
    margin-bottom: 5px;
}

.catalog-header h3 i { margin-right: 8px; }

.catalog-header p {
    font-size: 12px;
    color: var(--text-light-gray);
}

.catalog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.catalog-item {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(212, 175, 55, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.catalog-item-info {
    flex: 1;
}

.catalog-item-name {
    font-weight: 600;
    color: var(--text-white);
    font-size: 13px;
    margin-bottom: 3px;
}

.catalog-item-category {
    font-size: 10px;
    color: var(--text-light-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.catalog-item-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-gold);
    white-space: nowrap;
}

/* Clients Section */
.clients-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.client-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(212, 175, 55, 0.06);
}

.client-name {
    font-weight: 600;
    color: var(--text-white);
    font-size: 14px;
    margin-bottom: 4px;
}

.client-info {
    font-size: 11px;
    color: var(--text-light-gray);
}

.client-stats {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.client-stat {
    font-size: 12px;
    color: var(--text-gray);
}

.client-stat span {
    color: var(--accent-gold);
    font-weight: 600;
}

/* ========================================
   SETTINGS
   ======================================== */
.settings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.settings-card {
    background: var(--bg-card);
    border-radius: 14px;
    padding: 20px;
    border: 1px solid rgba(212, 175, 55, 0.06);
}

.settings-card h3 {
    font-size: 15px;
    color: var(--text-white);
    margin-bottom: 8px;
}

.settings-card h3 i { color: var(--accent-gold); margin-right: 8px; }

.settings-card p {
    font-size: 12px;
    color: var(--text-light-gray);
    margin-bottom: 15px;
}

.settings-card.danger-zone {
    border-color: rgba(231, 76, 60, 0.2);
}

.settings-card.danger-zone h3 i { color: var(--danger-red); }

.settings-input-group {
    margin-bottom: 15px;
}

.settings-input-group label {
    display: block;
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 6px;
}

.settings-input-group input {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg-card-hover);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.settings-input-group input:focus {
    outline: none;
    border-color: var(--accent-gold);
}

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

.settings-btn {
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.settings-btn.primary {
    background: var(--gradient-gold);
    color: var(--primary-navy-dark);
}

.settings-btn.primary:hover { box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3); }

.settings-btn.danger {
    background: rgba(231, 76, 60, 0.15);
    color: var(--danger-red);
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.settings-btn.danger:hover { background: rgba(231, 76, 60, 0.25); }

.info-list {
    display: flex;
    flex-direction: column;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.info-item .label { font-size: 13px; color: var(--text-gray); }
.info-item .value { font-size: 13px; font-weight: 600; color: var(--text-white); }

/* ========================================
   MODAL
   ======================================== */
.modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-dark);
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.modal-header h2 {
    font-size: 16px;
    color: var(--text-white);
}

.modal-header h2 i { color: var(--accent-gold); margin-right: 8px; }

.modal-close {
    width: 32px; height: 32px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: transparent;
    color: var(--text-gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.modal-close:hover { color: var(--accent-gold); }

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.modal-footer {
    padding: 15px 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Order Detail Styles */
.order-detail-info {
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.detail-row .label { color: var(--text-gray); font-size: 13px; }
.detail-row .value { color: var(--text-white); font-size: 13px; font-weight: 500; }

.detail-items {
    background: rgba(212, 175, 55, 0.03);
    border-radius: 10px;
    padding: 15px;
}

.detail-items h4 {
    font-size: 13px;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

/* Status change buttons */
.status-btn {
    padding: 8px 16px;
    border-radius: 8px;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
    min-width: 100px;
}

.status-btn.confirm { background: rgba(37, 211, 102, 0.15); color: var(--success-green); border: 1px solid rgba(37, 211, 102, 0.3); }
.status-btn.complete { background: rgba(212, 175, 55, 0.15); color: var(--accent-gold); border: 1px solid rgba(212, 175, 55, 0.3); }
.status-btn.cancel { background: rgba(231, 76, 60, 0.15); color: var(--danger-red); border: 1px solid rgba(231, 76, 60, 0.3); }

.status-btn:hover { opacity: 0.8; transform: translateY(-1px); }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (min-width: 768px) {
    .mobile-nav { display: none; }
    
    .sidebar { transform: translateX(0); }
    
    .main-content {
        margin-left: 250px;
        padding: 0 30px 30px;
    }
    
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
    .charts-row { grid-template-columns: repeat(2, 1fr); }
    .reports-grid { grid-template-columns: repeat(3, 1fr); }
    .settings-grid { grid-template-columns: repeat(2, 1fr); }
    .catalog-grid { grid-template-columns: repeat(2, 1fr); }
    
    .orders-full-table { display: block; }
    .mobile-orders-list { display: none; }
    
    .date-display { display: flex; align-items: center; gap: 6px; }
}

@media (min-width: 1024px) {
    .stat-info h3 { font-size: 22px; }
    .page-title { font-size: 24px; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: rgba(212, 175, 55, 0.3); border-radius: 2px; }
