/* WP Support Ticket Pro — Theme Variables (Enterprise) */

:root {
  /* Base palette (overridden by presets/modes) */
  --wstp-primary: #6d28d9;
  --wstp-primary-600: #7c3aed;
  --wstp-primary-700: #5b21b6;
  --wstp-accent: #22d3ee;
  --wstp-success: #10b981;
  --wstp-warning: #f59e0b;
  --wstp-danger: #ef4444;

  --wstp-bg: #0b1220;
  --wstp-surface: #0f172a;
  --wstp-text: #e5e7eb;
  --wstp-text-muted: #94a3b8;
  --wstp-border: #1f2937;

  --wstp-font: 'Inter', 'IRANSans', 'Segoe UI', system-ui, Roboto, Arial, sans-serif;
  --wstp-radius: 14px;
  --wstp-radius-sm: 10px;
  --wstp-shadow: 0 12px 40px rgba(0,0,0,.35);
  --wstp-shadow-soft: 0 8px 24px rgba(0,0,0,.2);
  --wstp-anim: 300ms cubic-bezier(.2,.8,.2,1);
  --wstp-glass-bg: rgba(15, 23, 42, .55);
  --wstp-glass-border: rgba(255,255,255,.08);
}

/* Mode: light/dark via data attributes on <html> */
html[data-wstp-mode="light"] {
  --wstp-bg: #f8fafc;
  --wstp-surface: #ffffff;
  --wstp-text: #0f172a;
  --wstp-text-muted: #64748b;
  --wstp-border: #e5e7eb;
  --wstp-glass-bg: rgba(255,255,255,.7);
  --wstp-glass-border: rgba(15,23,42,.06);
}

/* Presets: neon / corporate / minimal */
html[data-wstp-theme="neon"] {
  --wstp-primary: #06b6d4;
  --wstp-primary-600: #0891b2;
  --wstp-primary-700: #0e7490;
  --wstp-accent: #a78bfa;
}
html[data-wstp-theme="corporate"] {
  --wstp-primary: #2563eb;
  --wstp-primary-600: #1d4ed8;
  --wstp-primary-700: #1e40af;
  --wstp-accent: #14b8a6;
  --wstp-radius: 10px;
}
html[data-wstp-theme="minimal"] {
  --wstp-primary: #0ea5e9;
  --wstp-primary-600: #0284c7;
  --wstp-primary-700: #0369a1;
  --wstp-accent: #22c55e;
  --wstp-radius: 8px;
}

/* RTL support */
.rtl { direction: rtl; }
.ltr { direction: ltr; }
