/* ============================================
   PropiaApp VetApp - Design Tokens
   ============================================ */

:root {
  /* Colores base */
  --accent: #00d4aa;
  --accent-rgb: 0, 212, 170;
  --accent-blue: #00b4d8;
  --accent-blue-rgb: 0, 180, 216;
  --gradient-accent: linear-gradient(135deg, #00d4aa, #00b4d8);

  /* Estado */
  --success: #34d399;
  --warning: #f1d064;
  --danger: #f87171;
  --info: #60a5fa;

  /* Fuentes */
  --font-display: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Tamaños */
  --text-xs: 11px;
  --text-sm: 13px;
  --text-base: 15px;
  --text-lg: 17px;
  --text-xl: 20px;
  --text-2xl: 24px;
  --text-3xl: 32px;
  --text-4xl: 40px;

  /* Espaciado */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;

  /* Border radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-full: 100px;

  /* Sombras */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);

  /* Transiciones */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Layout */
  --sidebar-width: 260px;
  --navbar-height: 64px;
  --max-width: 1200px;
}

/* ============================================
   Tema Claro (Vista del cliente)
   ============================================ */
[data-theme="light"] {
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-hover: #f1f5f9;
  --bg-input: #f1f5f9;
  --bg-overlay: rgba(0, 0, 0, 0.5);

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --text-on-accent: #0a0e17;

  --border-color: #e2e8f0;
  --border-light: #f1f5f9;

  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
}

/* ============================================
   Tema Oscuro (Panel admin)
   ============================================ */
[data-theme="dark"] {
  --bg-primary: #0a0e17;
  --bg-secondary: #0f1420;
  --bg-card: #111827;
  --bg-card-hover: #1a2332;
  --bg-input: #1a2332;
  --bg-overlay: rgba(0, 0, 0, 0.7);

  --text-primary: #f0f0f0;
  --text-secondary: #8892a4;
  --text-muted: #5a6377;
  --text-on-accent: #0a0e17;

  --border-color: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.04);

  --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.3);
}
