/* ==========================================================================
   MRX STORE - CORE DESIGN SYSTEM & STYLESHEET (GLASSMORPHISM DARK SPACE)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;700&display=swap');

/* DEFAULT MODE - DARK SPACE (Default Theme) */
:root {
    --bg-color: #0b0f19;
    --sidebar-bg: rgba(15, 23, 42, 0.65);
    --card-bg: rgba(22, 30, 49, 0.45);
    --card-hover-bg: rgba(30, 41, 67, 0.6);
    --border-color: rgba(255, 255, 255, 0.05);
    --border-hover-color: rgba(99, 102, 241, 0.25);
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Gradients & Actions */
    --primary: #6366f1;
    --primary-gradient: linear-gradient(135deg, #6366f1, #8b5cf6);
    --primary-glow: rgba(99, 102, 241, 0.15);
    
    --accent: #14b8a6;
    --accent-gradient: linear-gradient(135deg, #14b8a6, #0d9488);
    --accent-glow: rgba(20, 184, 166, 0.15);
    
    --success: #10b981;
    --success-gradient: linear-gradient(135deg, #10b981, #059669);
    --warning: #f59e0b;
    --danger: #ef4444;
    --danger-gradient: linear-gradient(135deg, #ef4444, #dc2626);
    
    /* Layout & Sizing */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 30px;
    
    --transition-fast: 0.15s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    
    /* Dynamic Accents */
    --bg-glow: radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 50% 50%, rgba(20, 184, 166, 0.03) 0%, transparent 50%);
    --text-gradient-brand: linear-gradient(to right, #ffffff, #94a3b8);
    --text-gradient-header: linear-gradient(to right, #ffffff, #cbd5e1);
}

/* LIGHT MODE OVERRIDES (when body has .light-mode class) */
body.light-mode {
    --bg-color: #f8fafc;
    --sidebar-bg: rgba(255, 255, 255, 0.7);
    --card-bg: rgba(255, 255, 255, 0.5);
    --card-hover-bg: rgba(255, 255, 255, 0.75);
    --border-color: rgba(15, 23, 42, 0.08);
    --border-hover-color: rgba(99, 102, 241, 0.3);
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    
    --primary-glow: rgba(99, 102, 241, 0.08);
    --accent-glow: rgba(20, 184, 166, 0.08);
    
    --shadow-sm: 0 4px 6px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 10px 20px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    
    --bg-glow: radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.04) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.04) 0%, transparent 40%);
    --text-gradient-brand: linear-gradient(to right, #0f172a, #334155);
    --text-gradient-header: linear-gradient(to right, #0f172a, #334155);
}

/* Global Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.5;
}

/* Ambient Background Glows */
.background-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    background: var(--bg-glow);
    pointer-events: none;
}

/* Layout Grid */
.dashboard-container {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
}

/* ===== 1. SIDEBAR NAVIGATION ===== */
.sidebar {
    background: var(--sidebar-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid var(--border-color);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    position: sticky;
    top: 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 35px;
    padding: 0 10px;
}

.brand i {
    font-size: 26px;
    background: linear-gradient(135deg, #a5b4fc, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 8px rgba(99, 102, 241, 0.3));
}

.brand span {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    background: var(--text-gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.sidebar nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.sidebar nav a i {
    font-size: 18px;
    width: 20px;
    text-align: center;
    transition: transform 0.2s;
}

.sidebar nav a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.05);
}

.sidebar nav a:hover i {
    transform: scale(1.15);
}

.sidebar nav a.active {
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.12), rgba(99, 102, 241, 0.01)) !important;
    border-left: 3px solid var(--primary);
    border-color: rgba(99, 102, 241, 0.2) rgba(99, 102, 241, 0.05) rgba(99, 102, 241, 0.05) var(--primary);
    color: #a5b4fc !important;
    text-shadow: 0 0 10px rgba(165, 180, 252, 0.35);
}

.sidebar nav a.active i {
    color: #a5b4fc;
}

/* ===== 2. MAIN CONTENT HEADER ===== */
.main-content {
    padding: 30px 40px;
    overflow-y: auto;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.header-title h1 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: var(--text-gradient-header);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-title p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* ===== 3. GLASS CARDS & PANELS ===== */
.glass-panel {
    background: var(--card-bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    padding: 25px;
}

.glass-panel:hover {
    border-color: var(--border-hover-color);
    box-shadow: var(--shadow-lg), 0 0 20px var(--primary-glow);
}

/* Stats Cards Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.glass-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover-color);
    box-shadow: var(--shadow-md), 0 5px 15px var(--primary-glow);
}

.glass-card:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-md);
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.glass-card:hover .stat-icon {
    background: var(--primary-gradient);
    color: #fff;
    transform: rotate(5deg) scale(1.05);
}

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

.stat-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}

.stat-value {
    font-size: 22px;
    font-weight: 800;
    margin-top: 2px;
    color: var(--text-primary);
}

/* Secondary Dashboard Grid */
.dashboard-secondary-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.chart-container {
    background: var(--card-bg);
    backdrop-filter: blur(18px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-md);
    min-height: 320px;
}

/* ===== 4. TABLE DESIGN ===== */
.table-container {
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: rgba(15, 23, 42, 0.2);
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

th {
    padding: 16px 20px;
    background: rgba(22, 30, 49, 0.8);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

td {
    padding: 16px 20px;
    font-size: 14px;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

tbody tr {
    transition: var(--transition-smooth);
}

tbody tr:hover {
    background: rgba(99, 102, 241, 0.03) !important;
}

tbody tr:hover td {
    color: #fff;
    border-bottom-color: rgba(99, 102, 241, 0.2);
}

/* ===== 5. BUTTONS & CONTROLS ===== */
.btn-primary {
    background: var(--primary-gradient) !important;
    color: #fff !important;
    border: none !important;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
    transition: var(--transition-smooth) !important;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4), 0 0 10px rgba(139, 92, 246, 0.2);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-ghost:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-icon-small {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-secondary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.btn-icon-small:hover {
    background: rgba(99, 102, 241, 0.1);
    color: #a5b4fc;
    border-color: rgba(99, 102, 241, 0.3);
    transform: scale(1.05);
}

/* ===== 6. FORM INPUTS & LABELS ===== */
.input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.input-group label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}

input[type="text"],
input[type="password"],
input[type="number"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    background: rgba(15, 23, 42, 0.35);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    font-size: 14px;
    transition: var(--transition-smooth);
    outline: none;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
select:focus,
textarea:focus {
    border-color: var(--primary);
    background: rgba(15, 23, 42, 0.6);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.15);
}

/* Form Row layout */
.row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.row .input-group {
    flex: 1;
}

/* Switch Toggle (iOS style) */
.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: #cbd5e1;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--primary);
}

input:checked + .slider:before {
    transform: translateX(20px);
    background-color: #fff;
}

.slider.round {
    border-radius: 24px;
}

.slider.round:before {
    border-radius: 50%;
}

/* ===== 7. MODALS LAYOUT ===== */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 8, 16, 0.85);
    backdrop-filter: blur(12px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity var(--transition-smooth);
}

.modal-backdrop.hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-glass {
    background: rgba(30, 41, 59, 0.55);
    backdrop-filter: blur(25px) saturate(160%);
    -webkit-backdrop-filter: blur(25px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    width: 520px;
    max-width: 90vw;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    transform: scale(0.95);
    transition: transform var(--transition-smooth);
}

.modal-backdrop:not(.hidden) .modal-glass {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
}

.close-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.close-btn:hover {
    color: var(--danger);
    transform: scale(1.1);
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* ===== 8. CUSTOM WIDGETS & ACCENTS ===== */

/* Provider Payment Cards Group */
.provider-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 12px;
    margin-top: 8px;
}

.provider-card {
    background: rgba(15, 23, 42, 0.3);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.provider-card i {
    font-size: 24px;
    color: var(--text-secondary);
}

.provider-card span {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
}

.provider-card:hover {
    border-color: rgba(99, 102, 241, 0.4);
    background: rgba(99, 102, 241, 0.05);
    transform: translateY(-4px);
}

.provider-card.active {
    border-color: var(--primary) !important;
    background: rgba(99, 102, 241, 0.1) !important;
    box-shadow: 0 0 15px var(--primary-glow);
}

.provider-card.active i,
.provider-card.active span {
    color: #a5b4fc;
}

/* Status Badges */
.sales-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    border: 1px solid transparent;
}

.status-paid {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.05);
}

.status-unpaid {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    border-color: rgba(245, 158, 11, 0.3);
}

.status-expired {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border-color: rgba(239, 68, 68, 0.3);
}

.status-cancelled {
    background: rgba(148, 163, 184, 0.15);
    color: #cbd5e1;
    border-color: rgba(148, 163, 184, 0.3);
}

/* Source Badges */
.source-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    border: 1px solid transparent;
}

.source-wa {
    background: rgba(37, 211, 102, 0.12);
    color: #4ade80;
    border-color: rgba(37, 211, 102, 0.25);
}

.source-tg {
    background: rgba(59, 130, 246, 0.12);
    color: #60a5fa;
    border-color: rgba(59, 130, 246, 0.25);
}

/* Custom Scrollbar minimal globally */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.01);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #6366f1, #8b5cf6);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #8b5cf6;
}

/* Mobile Hamburger & Overlay */
.hamburger-btn {
    display: none;
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 1001;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    box-shadow: 0 4px 12px rgba(99,102,241,0.4);
    font-size: 18px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.hamburger-btn:hover {
    transform: scale(1.05);
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* ===== 9. RESPONSIVENESS ===== */
@media (max-width: 1024px) {
    .dashboard-container {
        grid-template-columns: 220px 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-secondary-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger-btn {
        display: flex;
    }

    .sidebar {
        position: fixed;
        left: -260px;
        top: 0;
        z-index: 999;
        height: 100vh;
        width: 260px;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }

    .sidebar.open {
        transform: translateX(260px);
    }

    .main-content {
        padding: 16px;
        padding-top: 75px;
    }

    header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    header > div[style*="display: flex"] {
        width: 100%;
        justify-content: flex-start;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .glass-card {
        padding: 14px;
        gap: 12px;
    }

    .stat-value {
        font-size: 18px;
    }

    .row {
        flex-direction: column;
        gap: 0;
    }

    .modal-glass {
        padding: 20px;
        border-radius: var(--radius-lg);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .modal-footer button {
        width: 100%;
    }
}

/* ===== SALES HISTORY PAGE STYLING (GLASSMORPHIC) ===== */
.sales-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.sales-filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 140px;
}

.sales-filter-group label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}

.sales-filter-search {
    flex: 1;
    min-width: 200px;
}

/* Sales Summary Row */
.sales-summary-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.sales-summary-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.sales-summary-card:hover {
    border-color: var(--border-hover-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md), 0 5px 15px var(--primary-glow);
}

.sales-summary-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}

.sales-summary-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
}

/* Sales Charts Grid */
.sales-charts-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

@media (max-width: 1024px) {
    .sales-charts-grid {
        grid-template-columns: 1fr;
    }
}

/* Payment Provider Icon Image */
.provider-card .provider-icon-img {
    width: 26px !important;
    height: 26px !important;
    object-fit: contain !important;
    margin-bottom: 2px !important;
    filter: grayscale(0.5) opacity(0.8) !important;
    transition: all 0.2s ease !important;
}

.provider-card:hover .provider-icon-img,
.provider-card.active .provider-icon-img {
    filter: grayscale(0) opacity(1) !important;
    transform: scale(1.05) !important;
}

/* Helper utilities */
.hidden {
    display: none !important;
}