/**
 * 主页背景修复
 * 确保主页保持全白色背景
 */

/* 全局背景设置 */
body, 
html, 
.site-content, 
.content-area, 
.page, 
.home {
    background-color: #ffffff !important;
}

/* 主页特定部分背景设置 */
.blog-slider-section,
.product-list,
.featured-products,
.recommend-products,
.related-products,
.blog-slider,
.product-grid-new,
.product-list-container {
    background-color: #ffffff !important;
}

/* 确保产品卡片背景为白色 */
.product-card,
.product-card-new,
.product-info,
.product-details,
.product-left-info {
    background-color: #ffffff !important;
}

/* 确保博客卡片背景为白色 */
.blog-card,
.blog-content {
    background-color: #ffffff !important;
}

/* 移除可能的灰色边框和阴影 */
.product-list,
.blog-slider-section,
.product-card,
.blog-card {
    border: none !important;
    box-shadow: none !important;
}

/* 确保产品列表标题背景为白色 - 使用高特异性选择器 */
body.home .leahz-product-list__title {
    background-color: #ffffff;
}

/* 确保Discover More按钮区域背景为白色 - 使用高特异性选择器 */
body.home .discover-more-container,
body.home .discover-more-overlay {
    background-color: #ffffff;
}

/* 确保页脚上方没有灰色背景 - 使用高特异性选择器 */
body.home .site-footer {
    margin-top: 0;
    border-top: 1px solid #f5f5f5;
}
