/**
 * NTCard — CSS Custom Properties Globales (Design Tokens)
 * Cargado tanto en admin como en frontend para consistencia visual.
 * @package NTCard | @author KROMATIX
 */
:root {
    --ntc-brand:         #6366f1;
    --ntc-brand-dark:    #4f46e5;
    --ntc-brand-light:   #e0e7ff;
    --ntc-brand-xlight:  #f0f0fe;
    --ntc-accent:        #8b5cf6;
    --ntc-success:       #10b981;
    --ntc-warning:       #f59e0b;
    --ntc-danger:        #ef4444;
    --ntc-text-primary:  #1e1b4b;
    --ntc-text-secondary:#64748b;
    --ntc-text-muted:    #94a3b8;
    --ntc-surface:       #ffffff;
    --ntc-surface-2:     #f8fafc;
    --ntc-border:        #e2e8f0;
    --ntc-radius-sm:     6px;
    --ntc-radius-md:     10px;
    --ntc-radius-lg:     16px;
    --ntc-radius-xl:     24px;
    --ntc-shadow-sm:     0 1px 3px rgba(99,102,241,0.08);
    --ntc-shadow-md:     0 4px 6px rgba(99,102,241,0.10);
    --ntc-transition:    all 0.18s cubic-bezier(0.4,0,0.2,1);
    --ntc-font:          -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
    /* Card theme defaults — overridden por CSS vars del template */
    --ntc-card-btn:      #6366f1;
    --ntc-card-txt:      #ffffff;
    --ntc-card-bg:       #1e1b4b;
}
