/* ===== 設計系統變數 ===== */
:root {
    /* 主色調 - 統一橙紅色系 */
    --primary-color: #ff6b6b;
    --primary-light: #ff8e53;
    --primary-dark: #d32f2f;
    --primary-bg: #fff3e0;
    --primary-bg-light: #ffe0b2;
    
    /* 中性色系 */
    --text-primary: #333;
    --text-secondary: #666;
    --text-light: #999;
    --bg-white: #fff;
    --bg-light: #fafafa;
    --bg-section: #f8f9fa;
    --border-light: #eee;
    --border-medium: #ddd;
    
    /* 陰影 */
    --shadow-soft: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-strong: 0 8px 30px rgba(0,0,0,0.15);
    
    /* 圓角 */
    --radius-small: 8px;
    --radius-medium: 12px;
    --radius-large: 20px;
    
    /* 間距 */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 4rem;
    
    /* 頁首高度 - 用於統一偏移計算 */
    --header-h: 140px; /* 桌面版 */
    --header-h-mobile: 120px; /* 手機版 - 確保在 top-bar 之下 */
    --header-h-tablet: 130px; /* 平板版 - 確保在 top-bar 之下 */
}
