/* =====================================================
   themes.css — SuperMarket POS Theme Variables
   All colors must come from these variables.
   Never hardcode colors in Blade files.
   ===================================================== */

/* ── Light Mode (default) ─────────────────────────── */
:root,
[data-theme="light"] {
    /* Brand */
    --color-primary:        #2563eb;
    --color-primary-hover:  #1d4ed8;
    --color-primary-light:  #dbeafe;
    --color-success:        #16a34a;
    --color-success-light:  #dcfce7;
    --color-warning:        #d97706;
    --color-warning-light:  #fef3c7;
    --color-danger:         #dc2626;
    --color-danger-light:   #fee2e2;
    --color-neutral:        #6b7280;
    --color-neutral-light:  #f3f4f6;

    /* Surfaces */
    --bg-body:              #f8fafc;
    --bg-card:              #ffffff;
    --bg-sidebar:           #1e293b;
    --bg-sidebar-active:    #2563eb;
    --bg-topbar:            #ffffff;
    --bg-input:             #ffffff;
    --bg-table-header:      #f8fafc;
    --bg-table-row-hover:   #f1f5f9;

    /* Text */
    --text-primary:         #0f172a;
    --text-secondary:       #475569;
    --text-muted:           #6b7280;
    --text-sidebar:         #cbd5e1;
    --text-sidebar-active:  #ffffff;
    --text-sidebar-hover:   #ffffff;
    --text-on-primary:      #ffffff;

    /* Borders */
    --border-color:         #e5e7eb;
    --border-input:         #d1d5db;
    --border-focus:         #2563eb;

    /* Shadows */
    --shadow-card:          none;
    --shadow-topbar:        0 1px 3px rgba(0,0,0,0.08);
    --shadow-dropdown:      0 4px 12px rgba(0,0,0,0.10);

    /* Sidebar */
    --sidebar-width:        240px;
    --sidebar-collapsed:    56px;

    /* Misc */
    --border-radius:        8px;
    --border-radius-sm:     4px;
    --border-radius-lg:     12px;

    /* Status badges */
    --badge-active-bg:      #dcfce7;
    --badge-active-text:    #15803d;
    --badge-inactive-bg:    #fee2e2;
    --badge-inactive-text:  #b91c1c;
}

/* ── Dark Mode ────────────────────────────────────── */
[data-theme="dark"] {
    /* Brand — keep same, just soften */
    --color-primary:        #3b82f6;
    --color-primary-hover:  #60a5fa;
    --color-primary-light:  #1e3a5f;
    --color-success:        #22c55e;
    --color-success-light:  #14532d;
    --color-warning:        #f59e0b;
    --color-warning-light:  #451a03;
    --color-danger:         #ef4444;
    --color-danger-light:   #450a0a;
    --color-neutral:        #9ca3af;
    --color-neutral-light:  #1f2937;

    /* Surfaces */
    --bg-body:              #0f172a;
    --bg-card:              #1e293b;
    --bg-sidebar:           #0f172a;
    --bg-sidebar-active:    #2563eb;
    --bg-topbar:            #1e293b;
    --bg-input:             #1e293b;
    --bg-table-header:      #1e293b;
    --bg-table-row-hover:   #263349;

    /* Text */
    --text-primary:         #f1f5f9;
    --text-secondary:       #94a3b8;
    --text-muted:           #64748b;
    --text-sidebar:         #94a3b8;
    --text-sidebar-active:  #ffffff;
    --text-sidebar-hover:   #ffffff;
    --text-on-primary:      #ffffff;

    /* Borders */
    --border-color:         #334155;
    --border-input:         #374151;
    --border-focus:         #3b82f6;

    /* Shadows */
    --shadow-card:          none;
    --shadow-topbar:        0 1px 3px rgba(0,0,0,0.40);
    --shadow-dropdown:      0 4px 12px rgba(0,0,0,0.40);

    /* Status badges */
    --badge-active-bg:      #14532d;
    --badge-active-text:    #4ade80;
    --badge-inactive-bg:    #450a0a;
    --badge-inactive-text:  #f87171;
}
