/**
 * CSS Variables — Design Tokens
 * 
 * SWAP THIS FILE PER PROJECT to change the entire site's look.
 * All other CSS files reference these variables.
 */

:root {
    /* ─── Colors ─── */
    --color-primary: #8BA8A0;          /* Main accent (muted teal/sage — from screenshots) */
    --color-primary-hover: #7A9690;
    --color-secondary: #333333;
    --color-dark: #1a1a1a;             /* Black backgrounds (banner, header) */
    --color-text: #333333;
    --color-text-light: #666666;
    --color-text-muted: #999999;
    --color-heading: #1a1a1a;
    --color-link: #8BA8A0;
    --color-link-hover: #7A9690;
    --color-border: #e5e5e5;
    --color-border-light: #f0f0f0;
    --color-bg: #ffffff;
    --color-bg-light: #f9f9f9;
    --color-bg-dark: #1a1a1a;
    --color-success: #4CAF50;
    --color-error: #e74c3c;
    --color-warning: #f39c12;
    --color-sale: #e74c3c;

    /* ─── Typography ─── */
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --font-heading: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --font-size-base: 15px;
    --font-size-sm: 13px;
    --font-size-xs: 11px;
    --font-size-lg: 18px;
    --font-size-xl: 24px;
    --font-size-2xl: 32px;
    --font-size-3xl: 42px;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --line-height-base: 1.6;
    --line-height-heading: 1.2;

    /* ─── Spacing ─── */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;
    --spacing-section: 80px;

    /* ─── Layout ─── */
    --container-width: 1200px;
    --container-padding: 20px;
    --sidebar-width: 280px;
    --header-height: 70px;

    /* ─── Borders & Radius ─── */
    --radius-sm: 3px;
    --radius-md: 5px;
    --radius-lg: 8px;
    --radius-full: 50%;

    /* ─── Shadows ─── */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);

    /* ─── Transitions ─── */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* ─── Z-index ─── */
    --z-dropdown: 100;
    --z-header: 1000;
    --z-overlay: 9000;
    --z-modal: 9999;
}
