
    :root {
        --primary-color: #c0392b;
        --secondary-color: #FF8C00;
        --text-color: #333333;
        --light-bg: #f9f9f9;
        --card-bg: #ffffff;
        --hover-bg: #ffe0b2;
        --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        --transition: all 0.3s ease;
    }

    /* 产品展示模块 - 容器样式 */
    .halloween-product-showcase {
        max-width: 1440px;
        margin: 0 auto;
        padding: 20px;
    }

    /* 标题模块样式 */
    .halloween-title-container {
        text-align: center;
        margin-bottom: 40px;
        position: relative;
    }

    .halloween-section-title {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
        letter-spacing: 1px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    }

    /* 产品网格布局 */
    .halloween-product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }

    /* 响应式网格布局 */
    @media (min-width: 768px) {
        .halloween-product-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (min-width: 1024px) {
        .halloween-product-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    /* 产品卡片样式 */
    .halloween-product-card {
        background-color: var(--card-bg);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: var(--transition);
        position: relative;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .halloween-product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        background-color: var(--hover-bg);
    }

    .halloween-product-card:hover .halloween-product-category {
        color: var(--primary-color);
        text-decoration: none;
    }

    /* 产品图片容器 */
    .halloween-product-image-container {
        width: 100%;
        padding-bottom: 100%;
        position: relative;
        overflow: hidden;
    }

    /* 产品图片 */
    .halloween-product-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

    .halloween-product-card:hover .halloween-product-image {
        transform: scale(1.05);
    }

    /* 产品类别 */
    .halloween-product-category {
        padding: 15px;
        text-align: center;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-color);
        flex-grow: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }

    /* 产品链接 */
    .halloween-product-link {
        text-decoration: none;
        display: block;
        height: 100%;
    }

    /* 产品叠加层 */
    .halloween-product-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(0,0,0,0.2) 100%);
        opacity: 0;
        transition: var(--transition);
    }

    .halloween-product-card:hover .halloween-product-overlay {
        opacity: 1;
    }

    /* 响应式标题样式 */
    @media (max-width: 768px) {
        .halloween-section-title {
            font-size: 1.7rem;
        }
    }

    @media (max-width: 480px) {
        .halloween-section-title {
            font-size: 1.5rem;
        }
    }
