/* SimpleSell — Customization Configuration */
/* Edit these values to brand the store. That's it. */

:root {
  /* Brand Colors */
  --brand-color: #111111;
  --brand-accent: #ffffff;
  --brand-primary: #111111;
  --brand-primary-hover: #333333;
  --brand-secondary: #f5f5f5;
  --brand-text: #111111;
  --brand-text-light: #666666;
  --brand-text-inverse: #ffffff;
  --brand-border: #e5e5e5;
  --brand-success: #22c55e;
  --brand-warning: #f59e0b;
  --brand-danger: #ef4444;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 3rem;

  /* 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;

  /* Layout */
  --max-width: 1200px;
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --shadow: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-lg: 0 4px 12px rgba(0,0,0,0.15);

  /* Hero */
  --hero-heading: 'Welcome';
  --hero-subheading: 'Shop our products below';
  --hero-bg-color: #f5f5f5;
  --hero-text-color: #111111;

  /* Store */
  --store-name: 'My Store';

  /* Dashboard */
  --sidebar-width: 240px;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  :root.auto-dark {
    --brand-color: #f5f5f5;
    --brand-accent: #111111;
    --brand-primary: #f5f5f5;
    --brand-primary-hover: #cccccc;
    --brand-secondary: #1a1a1a;
    --brand-text: #f5f5f5;
    --brand-text-light: #999999;
    --brand-text-inverse: #111111;
    --brand-border: #333333;
    --hero-bg-color: #1a1a1a;
    --hero-text-color: #f5f5f5;
  }
}
