
    :root {
      --color-primary: #FF6B6B;
      --color-secondary: #4ECDC4;
      --color-accent: #FFE66D;
      --color-accent-light: #95E1D3;
      --color-background: #FFFFFF;
      --color-surface: #FFFFFF;
      --color-text: #2D3436;
      --shadow-sm: 0 4px 12px rgba(255,107,107,0.15);
      --shadow-md: 0 8px 30px rgba(255,107,107,0.25);
      --shadow-lg: 0 15px 50px rgba(255,107,107,0.35);
      --radius-sm: 16px;
      --radius-md: 24px;
      --radius-lg: 32px;
      --transition: cubic-bezier(0.4, 0, 0.2, 1);
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Noto Sans SC', sans-serif; background: var(--color-background); color: var(--color-text); line-height: 1.6; overflow-x: hidden; }

    .navbar { border-bottom: 3px solid var(--color-accent-light); }
    .logo { color: var(--color-primary); }
    .menu-overlay { background: rgba(255,107,107,0.2); }

    .page-header { margin-top: 64px; padding: 60px 20px 40px; background: linear-gradient(135deg, #FFE8E8 0%, #FFF0E8 100%); text-align: center; }
    .page-title { font-family: 'DM Sans', sans-serif; font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; margin-bottom: 12px; background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
    .page-subtitle { color: #999; font-size: 1rem; }

    .filter-section { padding: 24px 20px; max-width: 1200px; margin: 0 auto; display: flex; gap: 12px; overflow-x: auto; justify-content: center; flex-wrap: wrap; }
    .filter-btn { padding: 12px 24px; border: none; background: var(--color-surface); border-radius: 50px; font-size: 0.95rem; cursor: pointer; white-space: nowrap; transition: all 0.3s var(--transition); box-shadow: var(--shadow-sm); font-weight: 500; }
    .filter-btn:hover, .filter-btn.active { background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); color: white; }

    .products-section { padding: 20px; max-width: 1200px; margin: 0 auto; }
    .product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .product-card { background: var(--color-surface); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: all 0.4s var(--transition); text-decoration: none; color: inherit; }
    .product-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-lg); }
    .product-img { aspect-ratio: 1; background: linear-gradient(135deg, #FFF5F5, #FFF0F0); display: flex; align-items: center; justify-content: center; font-size: 4rem; transition: transform 0.5s var(--transition); }
    .product-card:hover .product-img { transform: scale(1.1) rotate(5deg); }
    .product-info { padding: 20px; }
    .product-name { font-weight: 600; font-size: 1rem; margin-bottom: 10px; line-height: 1.4; }
    .product-meta { display: flex; justify-content: space-between; align-items: center; }
    .product-price { font-family: 'DM Sans', sans-serif; font-size: 1.25rem; font-weight: 700; background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
    .product-tag { font-size: 0.8rem; padding: 6px 14px; background: linear-gradient(135deg, var(--color-accent), #FFF0C0); border-radius: 50px; color: #C9A000; font-weight: 600; }

    .load-more { text-align: center; padding: 40px 20px 60px; }
    .load-more-btn { padding: 16px 48px; background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); color: white; border: none; border-radius: 50px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.3s var(--transition); box-shadow: var(--shadow-md); }
    .load-more-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

    .footer { background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); color: white; padding: 48px 20px 32px; }
    .footer-content { max-width: 800px; margin: 0 auto; text-align: center; }
    .footer-logo { font-family: 'DM Sans', sans-serif; font-size: 1.75rem; font-weight: 700; margin-bottom: 24px; }
    .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; margin-bottom: 32px; }
    .footer-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.95rem; }
    .footer-divider { width: 60px; height: 3px; background: rgba(255,255,255,0.3); margin: 0 auto 24px; border-radius: 3px; }
    .footer-copy { font-size: 0.9rem; opacity: 0.8; }

    .bottom-nav { display: none; position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: white; border-top: 3px solid var(--color-accent-light); z-index: 1000; padding-bottom: env(safe-area-inset-bottom, 0); box-shadow: 0 -4px 20px rgba(0,0,0,0.1); }
    .bottom-nav-inner { display: flex; justify-content: space-around; align-items: center; height: 100%; max-width: 500px; margin: 0 auto; }
    .bottom-nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #999; text-decoration: none; font-size: 11px; transition: all 0.3s; background: none; border: none; cursor: pointer; padding: 8px 16px; font-weight: 500; }
    .bottom-nav-item.active, .bottom-nav-item:hover { color: var(--color-primary); transform: scale(1.1); }
    .bottom-nav-item .nav-icon { font-size: 22px; }
    .popover-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 2000; opacity: 0; visibility: hidden; transition: all 0.3s; }
    .popover-overlay.show { opacity: 1; visibility: visible; }
    .popover-box { position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%) translateY(20px); background: white; border-radius: var(--radius-lg); padding: 28px; z-index: 2001; opacity: 0; visibility: hidden; transition: all 0.3s; text-align: center; box-shadow: var(--shadow-lg); }
    .popover-box.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
    .popover-qr { width: 160px; height: 160px; background: linear-gradient(135deg, #FFF5F5, #F0FFFC); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 60px; margin-bottom: 12px; }
    .popover-title { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; color: var(--color-primary); }
    .popover-tip { font-size: 12px; color: #999; margin-top: 4px; }

    @media (min-width: 768px) { .product-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } .products-section { padding: 40px; } }
    @media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }
    @media (max-width: 768px) { .bottom-nav { display: block; } .footer { display: none; } .products-section { padding-bottom: 80px; } body { padding-bottom: 60px; } .popover-box { bottom: 130px; } }
/* 底部导航自定义图片图标（后台可配置） */
.bottom-nav-item .nav-icon-img { width: 24px; height: 24px; object-fit: contain; vertical-align: middle; }
