/* 喜庆商务风格 - 红色+金色主题 */
:root {
    /* 主色调：高级橙金色商务风 - 琥珀金/香槟金 */
    --festive-red: #F59E0B;        /* 高级琥珀橙 - 主色 */
    --festive-red-dark: #D97706;    /* 深琥珀 - 稳重 */
    --festive-red-light: #FEF3C7;   /* 浅琥珀背景 - 优雅 */
    --festive-gold: #D4AF37;        /* 高级金色 */
    --festive-gold-light: #FDE68A;  /* 浅琥珀金 */
    --festive-gold-dark: #B8941F;   /* 深金 */
    
    /* 辅助色：高级橙金色商务配色 */
    --festive-orange: #F59E0B;      /* 琥珀橙 */
    --festive-pink: #D4AF37;         /* 金色 */
    --festive-yellow: #F5B041;       /* 香槟金 */
    
    /* 高级橙金色商务渐变组合 - 琥珀金/香槟金 */
    --gradient-festive: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    --gradient-red: linear-gradient(135deg, #F5B041 0%, #F59E0B 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    --gradient-festive-light: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    
    /* 文字颜色 */
    --text-festive-primary: #1A1A1A;
    --text-festive-secondary: #666666;
    --text-festive-tertiary: #999999;
    
    /* 背景颜色 */
    --bg-festive-primary: #FFFFFF;
    --bg-festive-secondary: #FEF3C7;  /* 优雅淡琥珀背景 */
    --bg-festive-tertiary: #FDE68A;    /* 优雅淡金背景 */
    
    /* 边框颜色 */
    --border-festive: #FCD34D;
    --border-festive-light: #FEF3C7;
    
    /* 高级橙金色阴影 */
    --shadow-festive: 0 4px 16px rgba(245, 158, 11, 0.12);
    --shadow-festive-lg: 0 8px 32px rgba(245, 158, 11, 0.18);
    --shadow-gold: 0 4px 16px rgba(212, 175, 55, 0.12);
    
    /* 高级橙金色发光效果 */
    --glow-festive: 0 0 20px rgba(245, 158, 11, 0.25), 0 4px 16px rgba(245, 158, 11, 0.15);
    --glow-gold: 0 0 20px rgba(212, 175, 55, 0.25), 0 4px 16px rgba(212, 175, 55, 0.15);
}

/* 喜庆按钮样式 */
.btn-festive {
    background: var(--gradient-festive);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    box-shadow: var(--shadow-festive);
    transition: all 0.3s ease;
}

.btn-festive:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-festive-lg);
}

.btn-festive-gold {
    background: var(--gradient-gold);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    box-shadow: var(--shadow-gold);
    transition: all 0.3s ease;
}

/* 喜庆卡片样式 */
.card-festive {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-festive);
    border: 1px solid var(--border-festive-light);
}

.card-festive-gold {
    background: linear-gradient(135deg, #FFFAF0 0%, #FFF5F5 100%);
    border-radius: 16px;
    box-shadow: var(--shadow-gold);
    border: 2px solid var(--festive-gold-light);
}

/* 喜庆背景 */
.bg-festive-gradient {
    background: var(--gradient-festive);
}

.bg-festive-red {
    background: var(--festive-red);
}

.bg-festive-gold {
    background: var(--festive-gold);
}

/* 喜庆文字颜色 */
.text-festive-red {
    color: var(--festive-red);
}

.text-festive-gold {
    color: var(--festive-gold);
}

/* 喜庆图标背景 */
.icon-bg-festive {
    background: var(--festive-red-light);
    color: var(--festive-red);
}

.icon-bg-gold {
    background: var(--festive-gold-light);
    color: var(--festive-gold-dark);
}

