/* Tailwind CSS CDN */
@import url('https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css');

/* 自定义颜色变量 - 温馨家庭厨房风格 */
:root {
    --primary-orange: #E67E22;
    --primary-orange-dark: #D35400;
    --primary-orange-light: #F39C12;
    --background-cream: #FEF9E7;
    --background-peach: #FDF2E9;
    --background-white: #FFFFFF;
    --text-dark: #2C3E50;
    --text-gray: #34495E;
    --text-light: #7F8C8D;
    --success-green: #27AE60;
    --error-red: #E74C3C;
    --info-blue: #3498DB;
}

/* 基础样式 */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--background-cream);
    color: var(--text-dark);
    line-height: 1.6;
}

/* 温馨家庭厨房主题 */
.kitchen-theme {
    background: linear-gradient(135deg, var(--background-cream) 0%, var(--background-peach) 100%);
}

/* 导航栏样式 */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(230, 126, 34, 0.1);
}

.navbar-brand {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 1.5rem;
}

.nav-link {
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-orange);
}

/* 按钮样式 */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

/* 卡片样式 */
.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(230, 126, 34, 0.1);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* 产品网格 */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .hero-section {
        padding: 2rem 1rem;
    }
}

/* 英雄区域 */
.hero-section {
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.1) 0%, rgba(243, 156, 18, 0.1) 100%);
    padding: 4rem 0;
    text-align: center;
}

/* 页脚样式 */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 2rem 0;
    margin-top: 4rem;
}