
    .senseng-extra-sections * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    /* 1. 解决宽度不一致：移除1000px限制，使用 100% 宽度匹配上方详情页模块 */
    .senseng-extra-sections {
        width: 100%;
        margin: 40px auto 0;
        padding: 0;
    }

    .senseng-block-title {
        font-size: 24px;
        font-weight: 700;
        color: #111;
        text-align: center;
        margin-bottom: 25px;
        letter-spacing: 0.5px;
        position: relative;
        padding-bottom: 12px;
    }

    .senseng-block-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: #000;
        border-radius: 2px;
    }

    /* ================= 1. COMPLETE THE LOOK (双款搭配模块) ================= */
    .complete-the-look-container {
        background: #ffffff;
        border: 1px solid #eaeaea;
        border-radius: 12px;
        padding: 35px 30px;
        margin-bottom: 40px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    }

    .look-grid-2col {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .look-card {
        border: 1px solid #f0f0f0;
        border-radius: 10px;
        padding: 20px;
        text-align: center;
        background: #fff;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
    }

    .look-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        border-color: #ddd;
    }

    /* 2. 解决字看不清：重构为高对比度白底黑字便签，自带阴影与微边框 */
    .look-tag {
        position: absolute;
        top: 30px;
        left: 30px;
        background: rgba(255, 255, 255, 0.92); /* 高亮透明白底 */
        color: #000000; /* 纯黑清晰大写文字 */
        font-size: 11px;
        font-weight: 700;
        padding: 6px 14px;
        border-radius: 20px;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        border: 1px solid rgba(0, 0, 0, 0.15); /* 极细描边分隔深色背景 */
        box-shadow: 0 2px 8px rgba(0,0,0,0.12); /* 提升层次感 */
        backdrop-filter: blur(4px); /* 高级毛玻璃滤镜 */
        z-index: 2;
    }

    .look-card img {
        width: 100%;
        height: 320px; /* 适当加高，使页面视觉更大气 */
        object-fit: cover;
        border-radius: 6px;
        margin-bottom: 15px;
    }

    .look-card-title {
        font-size: 15px;
        font-weight: 600;
        color: #222;
        margin-bottom: 10px;
        line-height: 1.4;
        min-height: 42px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .look-card-price {
        font-size: 18px;
        font-weight: 700;
        color: #e53935;
        margin-bottom: 15px;
    }

    .look-btn {
        display: inline-block;
        width: 100%;
        padding: 12px 0;
        background: #000000;
        color: #ffffff;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        border-radius: 6px;
        letter-spacing: 0.5px;
        transition: background 0.2s ease;
    }

    .look-btn:hover {
        background: #333333;
    }

    /* ================= 2. PRODUCT FAQS (手风琴折叠模块) ================= */
    .faq-container {
        background: #f8f9fa;
        border: 1px solid #eaeaea;
        border-radius: 12px;
        padding: 35px 30px;
    }

    .faq-item {
        background: #ffffff;
        border: 1px solid #e5e5e5;
        border-radius: 8px;
        margin-bottom: 12px;
        overflow: hidden;
        transition: border-color 0.2s ease;
    }

    .faq-item[open] {
        border-color: #000000;
    }

    .faq-title {
        padding: 18px 22px;
        font-size: 16px;
        font-weight: 600;
        color: #111;
        cursor: pointer;
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        user-select: none;
    }

    .faq-title::-webkit-details-marker {
        display: none;
    }

    .faq-title::after {
        content: '\f067'; /* FontAwesome + 号 */
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 14px;
        color: #666;
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .faq-item[open] .faq-title::after {
        content: '\f068'; /* FontAwesome - 号 */
        color: #000;
    }

    .faq-content {
        padding: 0 22px 20px 22px;
        font-size: 14.5px;
        color: #555;
        line-height: 1.7;
        border-top: 1px solid #f5f5f5;
        margin-top: 5px;
        padding-top: 14px;
    }

    /* 移动端专属适配 */
    @media (max-width: 650px) {
        .look-grid-2col {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .complete-the-look-container, .faq-container {
            padding: 20px 15px;
        }
        .senseng-block-title {
            font-size: 20px;
        }
        .look-card img {
            height: 250px;
        }
        .look-tag {
            top: 25px;
            left: 25px;
            font-size: 10px;
            padding: 4px 10px;
        }
        .faq-title {
            font-size: 15px;
            padding: 14px 15px;
        }
    }
