        /* ===== 高端大气商品列表样式（与CMS标签完美融合） ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background: #f5f7fb;
            color: #1e293b;
            line-height: 1.4;
        }

        .contain {
            margin: 0 auto;
            padding: 0 20px;
        }

        /* 间距工具类 */
        .margin-top-big { margin-top: 48px; }
        .margin-bottom-big { margin-bottom: 48px; }
        .margin-top { margin-top: 16px; }
        .margin-bottom { margin-bottom: 16px; }
        .margin-top-small { margin-top: 8px; }
        .margin-bottom-small { margin-bottom: 8px; }
        .padding-right-small { padding-right: 8px; }
        .padding-left-small { padding-left: 8px; }
        .text-small { font-size: 0.875rem; }
        .text-big { font-size: 1.5rem; }
        .text-large { font-size: 1.25rem; }
        .text-gray { color: #5b6e8c; }
        .text-white { color: #fff; }
        .text-red { color: #e53e3e; }
        .text-black { color: #0f172a; }
        .text-center { text-align: center; }
        .font-bold { font-weight: 700; }
        .font-semibold { font-weight: 600; }
        .text-height { line-height: 1.45; }

        .bg-white { background-color: #ffffff; }
        .bg-red { background-color: #e53e3e; }
        .bg-gray { background-color: #f1f5f9; }
        .radius { border-radius: 16px; }
        .radius-small { border-radius: 12px; }

        .flex { display: flex; }
        .flex-between { justify-content: space-between; }
        .flex-middle { align-items: center; }
        .flex-2 { display: flex; gap: 12px; }
        .gap10 { gap: 10px; }

        /* 网格布局 */
        .grid {
            display: grid;
            gap: 28px;
            grid-template-columns: repeat(4, 1fr);
        }
        @media (max-width: 1024px) {
            .grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
        }
        @media (max-width: 768px) {
            .grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
        }
        @media (max-width: 480px) {
            .grid { grid-template-columns: 1fr; gap: 20px; }
        }

        /* 商品卡片 */
        .product-card {
            background: #ffffff;
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02), 0 2px 4px rgba(0, 0, 0, 0.02);
            border: 1px solid rgba(226, 232, 240, 0.6);
        }
        .product-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.05);
            border-color: rgba(203, 213, 225, 0.8);
        }

        .card-image {
            position: relative;
            background: #f8fafc;
            overflow: hidden;
        }
        .card-image img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }
        .product-card:hover .card-image img {
            transform: scale(1.02);
        }

        .position-relative { position: relative; }
        .position-abs { position: absolute; }
        .top10 { top: 12px; left: 12px; }
        .bottom10 { bottom: 12px; left: 12px; right: 12px; text-align: center; }
        .bg-red-label {
            background: #e53e3e;
            backdrop-filter: blur(2px);
            font-weight: 600;
            font-size: 0.75rem;
            padding: 6px 12px;
            border-radius: 40px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
            letter-spacing: 0.3px;
        }
        .expiry-badge {
            background: rgba(0, 0, 0, 0.65);
            backdrop-filter: blur(4px);
            border-radius: 40px;
            padding: 5px 12px;
            font-size: 0.7rem;
            font-weight: 500;
            display: inline-block;
            color: #f1f5f9;
        }

        .card-content {
            padding: 18px 16px 20px;
        }
        .product-title {
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 12px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            min-height: 48px;
        }
        .product-title a {
            text-decoration: none;
            color: #0f172a;
            transition: color 0.2s;
        }
        .product-title a:hover {
            color: #e53e3e;
        }
        .price-wrapper {
            display: flex;
            align-items: baseline;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 12px;
        }
        .current-price {
            font-size: 1.6rem;
            font-weight: 800;
            color: #e53e3e;
            letter-spacing: -0.5px;
            line-height: 1;
        }
        .old-price {
            font-size: 0.85rem;
            color: #94a3b8;
            text-decoration: line-through;
            margin-left: 8px;
        }
        .shop-name {
            font-size: 0.75rem;
            color: #5b6e8c;
            background: #f8fafc;
            display: inline-block;
            padding: 2px 10px;
            border-radius: 30px;
            margin-bottom: 14px;
        }
        .button-group {
            display: flex;
            gap: 12px;
            margin-top: 6px;
        }
        .btn {
            flex: 1;
            text-align: center;
            padding: 10px 0;
            font-weight: 600;
            font-size: 0.85rem;
            border-radius: 60px;
            cursor: pointer;
            transition: all 0.2s ease;
            border: none;
            background: none;
            font-family: inherit;
            text-decoration: none;
            display: inline-block;
        }
        .btn-copy {
            background: #f1f5f9;
            color: #1e293b;
            border: 1px solid #e2e8f0;
        }
        .btn-copy:hover {
            background: #e6edf5;
            border-color: #cbd5e1;
            transform: scale(0.98);
        }
        .btn-coupon {
            background: #e53e3e;
            color: white;
            box-shadow: 0 2px 8px rgba(229, 62, 62, 0.2);
        }
        .btn-coupon:hover {
            background: #c53030;
            transform: scale(0.98);
            box-shadow: 0 4px 12px rgba(229, 62, 62, 0.3);
        }

        /* 头部与页脚样式（与include文件协调） */
        .site-header {
            background: #ffffff;
            border-bottom: 1px solid #edf2f7;
            position: sticky;
            top: 0;
            z-index: 20;
            backdrop-filter: blur(8px);
            background-color: rgba(255,255,255,0.92);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #e53e3e 0%, #f97316 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -0.5px;
        }
        .nav-links a {
            margin-left: 28px;
            text-decoration: none;
            color: #334155;
            font-weight: 500;
            transition: color 0.2s;
        }
        .nav-links a:hover { color: #e53e3e; }

        .breadcrumb {
            margin: 20px 0 12px 0;
            font-size: 0.85rem;
        }
        .page-main-title {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(to right, #0f172a, #2d3a5e);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 28px;
            letter-spacing: -0.3px;
        }

        /* 分页样式 */
        .pagination {
            margin-top: 56px;
            margin-bottom: 40px;
            display: flex;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        .pagination a, .pagination span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 42px;
            height: 42px;
            padding: 0 12px;
            border-radius: 60px;
            background: white;
            color: #334155;
            font-weight: 500;
            transition: all 0.2s;
            border: 1px solid #e2e8f0;
            text-decoration: none;
        }
        .pagination .active {
            background: #e53e3e;
            border-color: #e53e3e;
            color: white;
            box-shadow: 0 4px 10px rgba(229,62,62,0.2);
        }
        .pagination a:hover:not(.active) {
            background: #f1f5f9;
            border-color: #cbd5e1;
        }

        .footer {
            background: #0f172a;
            color: #cbd5e1;
            text-align: center;
            padding: 32px 0;
            margin-top: 40px;
            font-size: 0.85rem;
        }
        .toast-message {
            position: fixed;
            bottom: 28px;
            left: 50%;
            transform: translateX(-50%) scale(0.9);
            background: #1e293b;
            color: white;
            padding: 10px 24px;
            border-radius: 60px;
            font-size: 0.85rem;
            font-weight: 500;
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.2s, transform 0.2s;
            pointer-events: none;
            backdrop-filter: blur(8px);
            background: rgba(15, 23, 42, 0.9);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }
        .toast-show {
            opacity: 1;
            transform: translateX(-50%) scale(1);
        }