/* ==========================================
   GLOBAL BRANDING CSS VARIABLES (DESIGN TOKENS)
   DD Pharmaceuticals Corporate Design System
   ========================================== */

:root {
  /* Primary Theme Brand Palette (Default Green) */
  --primary: #2e7d32;
  --primary-hover: #1b5e20;
  --primary-light: #43a047;
  --primary-dark: #145a19;
  --primary-subtle: #e8f5e9;
  --primary-gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  --primary-glow: rgba(46, 125, 50, 0.25);

  /* Secondary Corporate Colors */
  --secondary: #1a3c6e;
  --secondary-dark: #0f2447;
  --secondary-light: #255294;
  --secondary-subtle: #f0f4f8;

  /* Accent & Status Colors */
  --accent: #f59e0b;
  --accent-subtle: #fffbeb;
  --success: #16a34a;
  --warning: #f59e0b;
  --danger: #d71920;
  --danger-hover: #a90f16;

  /* Surfaces & Backgrounds */
  --surface: #ffffff;
  --background: #f6f8fa;
  --card-bg: #ffffff;

  /* Borders & Shadows */
  --border-color: #e2e8f0;
  --border-focus: var(--primary);
  --shadow-color: rgba(0, 0, 0, 0.08);

  /* Typography & Text */
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --text-inverse: #ffffff;
  --icon-color: var(--primary);
  --link-color: var(--primary);
  --input-focus: var(--primary);

  /* Border Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
