/* ==============================================
   CSS Variables — Dark/Light Theme System
   ============================================== */

:root {
  /* Dark theme (default) */
  --bg-primary: #0a0a0a;
  --bg-secondary: #1a1a1a;
  --bg-card: #1a1a1a;
  --bg-elevated: #2a2a2a;
  --text-primary: #f0f0f0;
  --text-secondary: #b0b0b0;
  --text-muted: #666666;
  --accent: #c9a96e;
  --accent-hover: #d4b97a;
  --accent-dark: #a8893e;
  --border: #333333;
  --sale: #e74c3c;
  --success: #27ae60;
  --overlay: rgba(0, 0, 0, 0.6);
  --header-bg: rgba(10, 10, 10, 0.85);
  --shadow: rgba(0, 0, 0, 0.3);
  --announcement-bg: #c9a96e;
  --announcement-text: #0a0a0a;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Typography */
  --font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --font-serif: 'Georgia', 'Times New Roman', serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;
  --font-size-5xl: 3.5rem;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;

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

  /* Layout */
  --container-max: 1280px;
  --header-height: 70px;
  --announcement-height: 40px;
}

/* Light theme */
[data-theme="light"] {
  --bg-primary: #ffffff;
  --bg-secondary: #f8f8f8;
  --bg-card: #f8f8f8;
  --bg-elevated: #f0f0f0;
  --text-primary: #1a1a1a;
  --text-secondary: #555555;
  --text-muted: #999999;
  --accent: #8B6914;
  --accent-hover: #a07d1c;
  --accent-dark: #6b5010;
  --border: #e0e0e0;
  --overlay: rgba(0, 0, 0, 0.4);
  --header-bg: rgba(255, 255, 255, 0.9);
  --shadow: rgba(0, 0, 0, 0.1);
  --announcement-bg: #8B6914;
  --announcement-text: #ffffff;
}
