/* ═══════════════════════════════════════════════════════
   Shops — Design System Variables
   ═══════════════════════════════════════════════════════ */

:root {
	/* ── Brand Colors ── */
	--color-primary: #4f6ef7;
	--color-primary-hover: #3b5de6;
	--color-primary-light: #eef1fe;
	--color-primary-subtle: rgba(79, 110, 247, 0.1);

	--color-secondary: #7c3aed;
	--color-secondary-hover: #6d28d9;

	/* ── Semantic Colors ── */
	--color-success: #22c55e;
	--color-success-light: #dcfce7;
	--color-warning: #f59e0b;
	--color-warning-light: #fef3c7;
	--color-error: #ef4444;
	--color-error-light: #fee2e2;
	--color-info: #3b82f6;
	--color-info-light: #dbeafe;

	/* ── Neutrals ── */
	--color-white: #ffffff;
	--color-gray-50: #f8fafc;
	--color-gray-100: #f1f5f9;
	--color-gray-200: #e2e8f0;
	--color-gray-300: #cbd5e1;
	--color-gray-400: #94a3b8;
	--color-gray-500: #64748b;
	--color-gray-600: #475569;
	--color-gray-700: #334155;
	--color-gray-800: #1e293b;
	--color-gray-900: #0f172a;

	/* ── Sidebar ── */
	--sidebar-bg: #0f172a;
	--sidebar-width: 260px;
	--sidebar-collapsed-width: 72px;
	--sidebar-text: #94a3b8;
	--sidebar-text-active: #ffffff;
	--sidebar-hover-bg: rgba(255, 255, 255, 0.06);
	--sidebar-active-bg: rgba(79, 110, 247, 0.15);
	--sidebar-active-border: var(--color-primary);
	--sidebar-divider: rgba(255, 255, 255, 0.06);

	/* ── Content Area ── */
	--content-bg: #f1f5f9;
	--card-bg: #ffffff;

	/* ── Topbar ── */
	--topbar-height: 64px;
	--topbar-bg: #ffffff;
	--topbar-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);

	/* ── Typography ── */
	--font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--font-mono: 'SF Mono', 'Fira Code', monospace;

	--text-xs: 0.75rem;
	--text-sm: 0.8125rem;
	--text-base: 0.875rem;
	--text-md: 1rem;
	--text-lg: 1.125rem;
	--text-xl: 1.25rem;
	--text-2xl: 1.5rem;
	--text-3xl: 1.875rem;

	--leading-tight: 1.25;
	--leading-normal: 1.5;
	--leading-relaxed: 1.625;

	--font-normal: 400;
	--font-medium: 500;
	--font-semibold: 600;
	--font-bold: 700;

	/* ── Spacing ── */
	--space-1: 0.25rem;
	--space-2: 0.5rem;
	--space-3: 0.75rem;
	--space-4: 1rem;
	--space-5: 1.25rem;
	--space-6: 1.5rem;
	--space-8: 2rem;
	--space-10: 2.5rem;
	--space-12: 3rem;
	--space-16: 4rem;

	/* ── Borders & Radius ── */
	--radius-sm: 6px;
	--radius-md: 8px;
	--radius-lg: 12px;
	--radius-xl: 16px;
	--radius-full: 9999px;
	--border-color: #e2e8f0;
	--border-color-light: #f1f5f9;

	/* ── Shadows ── */
	--shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
	--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);

	/* ── Transitions ── */
	--transition-fast: 150ms ease;
	--transition-base: 200ms ease;
	--transition-slow: 300ms ease;

	/* ── Z-Index ── */
	--z-dropdown: 100;
	--z-sticky: 200;
	--z-sidebar: 300;
	--z-overlay: 400;
	--z-modal: 500;
	--z-toast: 600;
}
