/**
 * ailewo 爱礼物 - Design Tokens / CSS Variables
 * ================================================
 * 全局设计令牌，所有页面共享。
 * 修改品牌色等值时只需改这一处。
 */

:root {
    /* Brand Colors */
    --accent-pink: #e84b8a;
    --accent-pink-hover: #d43d7a;
    --light-pink: #FDE8F0;

    /* Neutral Colors */
    --dark-gray: #33363B;
    --neutral-gray: #949699;

    /* Status Colors */
    --success-green: #22A75D;
    --warning-yellow: #E6B325;
    --error-red: #E53E3E;

    /* Layout */
    --sidebar-width: 220px;
    --sidebar-collapsed-width: 60px;
    --header-height: 56px;

    /* Font：本地系统字体栈（Inter 依赖 Google Fonts 国内不可达，已移除，P0-2） */
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}
