.recommend p {
    font-size: 0.875rem; /* 14px 转换为 rem，增强可访问性 */
}

.category {
    padding: 2.5rem 0; /* 40px = 2.5rem */
}

.separator {
    display: block;
    width: 3.75rem; /* 60px = 3.75rem */
    height: 0.3125rem; /* 5px = 0.3125rem */
    margin: 0.9375rem auto; /* 15px = 0.9375rem */
    background-color: var(--color-separator-light);
    position: relative;
}

.separator:after {
    width: 1.875rem; /* 30px = 1.875rem */
    height: 0.3125rem; /* 5px = 0.3125rem */
    background-color: var(--color-separator-dark);
    position: absolute;
    top: 0;
    left: 0;
    content: "";
}

.category-menus li {
    display: inline-block;
    margin: 0.25rem; /* 4px = 0.25rem */
}

.goods-buy {
    line-height: 2.5rem; /* 40px = 2.5rem */
    font-size: 0.8125rem; /* 13px = 0.8125rem */
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}


.goods-introduction-cate {
    /* 
     * 文本截断兼容性说明：
     * -webkit-line-clamp 是 WebKit/Chromium 专有属性，现代浏览器（包括 Firefox 68+ 和 Edge Chromium）已支持
     * 对于不支持该属性的旧版浏览器，使用 overflow: hidden 和固定高度作为后备方案
     * 注意：后备方案会截断文本，但无法保证精确的两行显示
     */
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    /* 标准属性（未来兼容性，目前浏览器支持度较低） */
    line-clamp: 2;
    /* 后备方案：固定高度限制，确保在不支持的浏览器中也能截断文本 */
    max-height: 3em; /* 约两行高度 */
}



.buy-form label {
    font-size: 1rem; /* 16px = 1rem */
}

/* 轮播图样式 - 使用移动优先（Mobile-First）策略 */
/* 通过提高选择器特异性来覆盖 Bootstrap 样式，避免使用 !important */
/* 基础样式：手机端（默认，≤576px） */
body .carousel-container {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
    padding: 0 0.5rem; /* 8px = 0.5rem（减少左右留白） */
    margin-top: 0.3125rem; /* 5px = 0.3125rem（原15px减少10px），与导航栏的间距 */
    margin-bottom: 0.9375rem; /* 15px = 0.9375rem（原25px减少10px） */
}

/* 平板竖放/大手机（≥577px） */
@media (min-width: 577px) {
    body .carousel-container {
        max-width: 1400px;
        padding: 0 0.9375rem; /* 15px = 0.9375rem */
        margin-top: 0.625rem; /* 10px = 0.625rem（原20px减少10px），与导航栏的间距 */
        margin-bottom: 1.25rem; /* 20px = 1.25rem（原30px减少10px） */
    }
}

/* 平板横放（≥768px） */
@media (min-width: 768px) {
    body .carousel-container {
        padding: 0 1.25rem; /* 20px = 1.25rem */
        margin-top: 0.9375rem; /* 15px = 0.9375rem（原25px减少10px），与导航栏的间距 */
        margin-bottom: 1.5625rem; /* 25px = 1.5625rem（原35px减少10px） */
    }
}

/* 中等屏幕（≥992px） */
@media (min-width: 992px) {
    body .carousel-container {
        padding: 0 1.5625rem; /* 25px = 1.5625rem */
        margin-top: 0.625rem; /* 10px = 0.625rem，与导航栏的间距 */
        margin-bottom: 1.875rem; /* 30px = 1.875rem（原40px减少10px） */
    }
}

/* 大屏幕（≥1200px） */
@media (min-width: 1200px) {
    body .carousel-container {
        padding: 0 1.875rem; /* 30px = 1.875rem */
        margin-top: 0.75rem; /* 12px = 0.75rem，与导航栏的间距 */
        margin-bottom: 2.1875rem; /* 35px = 2.1875rem（原45px减少10px） */
    }
}

/* 超大屏幕（≥1400px） */
@media (min-width: 1400px) {
    body .carousel-container {
        padding: 0 2.5rem; /* 40px = 2.5rem */
        margin-top: 0.9375rem; /* 15px = 0.9375rem，与导航栏的间距 */
        margin-bottom: 2.5rem; /* 40px = 2.5rem（原50px减少10px） */
    }
}

#homeCarousel.carousel {
    border-radius: 1rem; /* 16px = 1rem */
    overflow: hidden;
    box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.1); /* 4px 20px = 0.25rem 1.25rem */
    background-color: transparent; /* 移除浅灰色背景 */
    position: relative;
}

/* 通过 ID 选择器提高特异性，覆盖 Bootstrap 默认样式 */
#homeCarousel.carousel .carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 1rem; /* 16px = 1rem */
}

/* 移动优先：竖屏版（默认，≤576px）- 使用 padding-bottom 技巧实现 4:5 比例 */
/* 通过提高选择器特异性来覆盖 Bootstrap 默认样式，避免使用 !important */
body #homeCarousel.carousel .carousel-inner {
    padding-bottom: 125%; /* 4:5 比例 = 5/4 = 1.25 = 125% */
}

/* 横屏版（≥577px）- 使用 padding-bottom 技巧实现 16:9 比例 */
@media (min-width: 577px) {
    body #homeCarousel.carousel .carousel-inner {
        padding-bottom: 56.25%; /* 16:9 比例 = 9/16 = 0.5625 = 56.25% */
    }
}

/* 基础样式：轮播项定位（所有屏幕尺寸共用） */
/* 通过提高选择器特异性覆盖 Bootstrap 的 float 和 margin */
#homeCarousel.carousel .carousel-inner .carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    backface-visibility: hidden;
    transition: transform 0.6s ease-in-out;
    float: none; /* 覆盖 Bootstrap 的 float: left */
    margin-right: 0; /* 覆盖 Bootstrap 的 margin-right: -100% */
}

#homeCarousel.carousel .carousel-item.active {
    display: block;
}

/* 基础样式：轮播图图片 */
#homeCarousel.carousel .carousel-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 1rem; /* 16px = 1rem */
}

/* 移动优先：手机端（默认，≤576px）- 较小的圆角 */
@media (max-width: 576px) {
    #homeCarousel.carousel {
        border-radius: 0.75rem; /* 12px = 0.75rem */
    }
    
    #homeCarousel.carousel .carousel-inner {
        border-radius: 0.75rem; /* 12px = 0.75rem */
    }
    
    #homeCarousel.carousel .carousel-item img {
        border-radius: 0.75rem; /* 12px = 0.75rem */
    }
}

/* 轮播图按钮容器 */
#homeCarousel.carousel .carousel-button-container {
    position: absolute;
    bottom: 4.5rem; /* 72px，位于指示器上方，留出足够间距 */
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    text-align: center;
}

/* 轮播图按钮样式 - 磨砂黑效果 */
#homeCarousel.carousel .carousel-button {
    display: inline-block;
    padding: 0.75rem 2rem; /* 12px 32px */
    /* 磨砂黑效果 - 更深的黑色，更强的磨砂 */
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    color: #ffffff;
    font-size: 0.9375rem; /* 15px */
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 1.5rem; /* 24px，适中的圆角 */
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    min-width: 120px;
}

#homeCarousel.carousel .carousel-button:hover {
    background: rgba(0, 0, 0, 0.85);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5), 
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
}

#homeCarousel.carousel .carousel-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.8);
}

/* PC端（≥1200px）- 大屏幕 */
@media (min-width: 1200px) {
    #homeCarousel.carousel .carousel-button-container {
        bottom: 5rem; /* 80px */
    }
    
    #homeCarousel.carousel .carousel-button {
        padding: 0.875rem 2.5rem; /* 14px 40px */
        font-size: 1rem; /* 16px */
        min-width: 140px;
    }
}

/* 平板端（768px - 1199px） */
@media (min-width: 768px) and (max-width: 1199px) {
    #homeCarousel.carousel .carousel-button-container {
        bottom: 4.5rem; /* 72px */
    }
    
    #homeCarousel.carousel .carousel-button {
        padding: 0.75rem 2rem; /* 12px 32px */
        font-size: 0.9375rem; /* 15px */
        min-width: 120px;
    }
}

/* 移动端（<768px） */
@media (max-width: 767px) {
    #homeCarousel.carousel .carousel-button-container {
        bottom: 3.5rem; /* 56px */
    }
    
    #homeCarousel.carousel .carousel-button {
        padding: 0.625rem 1.75rem; /* 10px 28px */
        font-size: 0.875rem; /* 14px */
        min-width: 100px;
    }
}

/* 小屏移动端（≤576px） */
@media (max-width: 576px) {
    #homeCarousel.carousel .carousel-button-container {
        bottom: 3rem; /* 48px */
    }
    
    #homeCarousel.carousel .carousel-button {
        padding: 0.5625rem 1.5rem; /* 9px 24px */
        font-size: 0.8125rem; /* 13px */
        min-width: 90px;
        border-radius: 1.25rem; /* 20px */
    }
}

#homeCarousel.carousel .carousel-control-prev,
#homeCarousel.carousel .carousel-control-next {
    width: 3.125rem; /* 50px = 3.125rem */
    height: 3.125rem; /* 50px = 3.125rem */
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--carousel-control-bg);
    border-radius: 50%;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    position: absolute;
    z-index: 15;
}

#homeCarousel.carousel .carousel-control-prev {
    left: 1.25rem; /* 20px = 1.25rem */
}

#homeCarousel.carousel .carousel-control-next {
    right: 1.25rem; /* 20px = 1.25rem */
}

#homeCarousel.carousel .carousel-control-prev:hover,
#homeCarousel.carousel .carousel-control-next:hover {
    opacity: 1;
    background-color: var(--carousel-control-bg-hover);
}

#homeCarousel.carousel .carousel-control-prev-icon,
#homeCarousel.carousel .carousel-control-next-icon {
    width: 1.25rem; /* 20px = 1.25rem */
    height: 1.25rem; /* 20px = 1.25rem */
    background-size: 100% 100%;
    filter: none;
}

/* 轮播指示器 - 响应式设计（简化版） */
/* 通过提高选择器特异性覆盖 Bootstrap 默认样式 */
body #homeCarousel.carousel .carousel-indicators {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    position: absolute;
    bottom: 0.75rem; /* 12px = 0.75rem */
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    width: auto;
    right: auto;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.375rem; /* 6px = 0.375rem */
    /* 移除 Bootstrap 默认的灰黑色背景条（毛玻璃效果） */
    background: none !important;
    background-color: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

body #homeCarousel.carousel .carousel-indicators button {
    width: 0.5rem; /* 8px = 0.5rem */
    height: 0.5rem; /* 8px = 0.5rem */
    border-radius: 50%;
    margin: 0;
    background-color: var(--carousel-indicator-bg);
    border: 0.125rem solid var(--carousel-indicator-border); /* 2px = 0.125rem */
    transition: all 0.3s ease;
    flex-shrink: 0;
}

body #homeCarousel.carousel .carousel-indicators button.active {
    background-color: var(--text-inverse);
    border-color: var(--text-inverse);
    width: 1.25rem; /* 20px = 1.25rem */
    border-radius: 0.25rem; /* 4px = 0.25rem */
}

/* 平板及以上（≥577px）- 统一使用较大尺寸 */
@media (min-width: 577px) {
    body #homeCarousel.carousel .carousel-indicators {
        bottom: 1rem; /* 16px = 1rem */
        gap: 0.5rem; /* 8px = 0.5rem */
    }
    
    body #homeCarousel.carousel .carousel-indicators button {
        width: 0.625rem; /* 10px = 0.625rem */
        height: 0.625rem; /* 10px = 0.625rem */
    }
    
    body #homeCarousel.carousel .carousel-indicators button.active {
        width: 1.75rem; /* 28px = 1.75rem */
        border-radius: 0.375rem; /* 6px = 0.375rem */
    }
}

/* 大屏幕（≥1200px）- 进一步增大 */
@media (min-width: 1200px) {
    body #homeCarousel.carousel .carousel-indicators {
        bottom: 1.25rem; /* 20px = 1.25rem */
    }
    
    body #homeCarousel.carousel .carousel-indicators button {
        width: 0.75rem; /* 12px = 0.75rem */
        height: 0.75rem; /* 12px = 0.75rem */
    }
    
    body #homeCarousel.carousel .carousel-indicators button.active {
        width: 1.875rem; /* 30px = 1.875rem */
    }
}

/* ============================================
   首页内容区域重构样式
   ============================================ */

/* CSS 变量系统 */
:root {
    --primary-color: #0071e3;
    --primary-hover: #0077ed;
    --text-primary: #1d1d1f;
    --text-secondary: #86868b;
    --background: #ffffff;
    --background-light: #f5f5f7;
    --border-color: rgba(0, 0, 0, 0.06);
    --success: #34c759;
    --warning: #ff9500;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.16);
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    /* 轮播图控制按钮背景色 */
    --carousel-control-bg: rgba(0, 0, 0, 0.5);
    --carousel-control-bg-hover: rgba(0, 0, 0, 0.7);
    /* 分隔符颜色 */
    --color-separator-light: #cccccc;
    --color-separator-dark: #333333;
    /* 边框颜色变体 */
    --border-color-light: #e5e5e7;
    --border-color-hover: #d2d2d7;
    --border-color-hover-alt: rgba(0, 0, 0, 0.1);
    /* 主色阴影 */
    --shadow-primary-active: 0 4px 16px rgba(0, 113, 227, 0.2);
    --shadow-primary-image: 0 0 0 3px rgba(0, 113, 227, 0.2);
    /* 轮播图相关 */
    --carousel-caption-bg: rgba(0, 0, 0, 0.6);
    --text-inverse: #ffffff;
    --carousel-indicator-bg: rgba(255, 255, 255, 0.5);
    --carousel-indicator-border: rgba(255, 255, 255, 0.8);
}


/* ============================================
   响应式设计 - 移动端（≤575px）
   ============================================ */
@media (max-width: 575px) {
    .goods-section {
        padding: var(--spacing-lg) 0;
    }

    .goods-section-header {
        margin-bottom: var(--spacing-lg);
        padding: 0 var(--spacing-md);
    }

    .goods-section-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
        line-height: 1.2;
    }

    .goods-section-subtitle {
        font-size: 0.9375rem;
        line-height: 1.5;
        padding: 0 var(--spacing-sm);
    }

    .category-filter-bar {
        margin-bottom: var(--spacing-lg);
    }

    .category-filter-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
        padding: 0;
    }

    .category-filter-card {
        padding: 0.875rem 1rem;
    }

    .category-card-image {
        width: 80px;
        height: 80px;
        aspect-ratio: 1 / 1; /* 确保移动端图标始终是完美的圆形 */
        margin-bottom: 0.625rem;
    }

    .category-card-image i {
        font-size: 2rem;
    }

    .category-card-name {
        font-size: 0.875rem; /* 14px */
    }

    .goods-card-body {
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .goods-card-name {
        font-size: 0.875rem; /* 14px - 移动端优化，更易读 */
        height: 2.8em; /* 调整高度，确保两行显示 */
        line-height: 1.4; /* 更紧凑的行高 */
        margin-bottom: 0.375rem; /* 与价格间距 */
    }

    .goods-card-price {
        font-size: 0.875rem; /* 14px - 与名称保持一致 */
        line-height: 1.3;
        gap: 0.125rem;
        letter-spacing: 0;
    }

    .goods-price-symbol {
        font-size: 0.875rem; /* 14px */
        margin-right: 0;
    }

    .goods-price-value {
        font-size: 0.875rem; /* 14px */
        letter-spacing: 0;
    }
    
    .goods-price-code {
        font-size: 0.6875rem; /* 11px - 移动端货币代码更小 */
        margin-left: 0.25rem;
    }
}

/* ============================================
   响应式设计 - 小屏平板（576px-767px）
   ============================================ */
@media (min-width: 576px) and (max-width: 767px) {
    .category-filter-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .category-filter-card {
        padding: 1rem 1.25rem;
    }

    .category-card-image {
        width: 85px;
        height: 85px;
        aspect-ratio: 1 / 1; /* 确保图标始终是完美的圆形 */
        margin-bottom: 0.75rem;
    }

    .category-card-image i {
        font-size: 2.25rem;
    }

    .category-card-name {
        font-size: 0.9375rem; /* 15px */
    }
}

/* ============================================
   响应式设计 - 平板端（768px-991px）
   ============================================ */
@media (min-width: 768px) and (max-width: 991px) {
    /* 默认：4个或以下分类使用4列，超过4个使用3列 */
    .category-filter-wrapper {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
        justify-items: center;
    }
    
    /* 超过4个分类时使用3列 */
    .category-filter-wrapper.category-count-5,
    .category-filter-wrapper.category-count-6 {
        grid-template-columns: repeat(3, 1fr);
    }

    .category-filter-card {
        padding: 1.125rem 1.375rem;
        /* 移除 max-width，让卡片自适应网格列宽 */
    }

    .category-card-image {
        width: 95px;
        height: 95px;
        margin-bottom: 0.875rem;
    }

    .category-card-image i {
        font-size: 2.375rem;
    }

    .category-card-name {
        font-size: 0.96875rem; /* 15.5px */
    }
}

/* ============================================
   响应式设计 - 中等桌面（992px-1199px）
   ============================================ */
@media (min-width: 992px) and (max-width: 1199px) {
    /* 默认：4个或以下分类使用4列 */
    .category-filter-wrapper {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.375rem;
        justify-items: center;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    /* 6个分类时使用3列（两行，每行3个）- 适配iPad等中等屏幕 */
    .category-filter-wrapper.category-count-6 {
        grid-template-columns: repeat(3, 1fr);
    }

    .category-filter-card {
        padding: 1.125rem 1.5rem;
        /* 移除 max-width，让卡片自适应网格列宽 */
    }

    .category-card-image {
        width: 98px;
        height: 98px;
    }

    .category-card-image i {
        font-size: 2.4rem;
    }

    .category-card-name {
        font-size: 0.9875rem; /* 15.5px */
    }
}

/* ============================================
   商品展示区
   ============================================ */

.goods-section {
    background-color: var(--background); /* 白色背景 */
    padding: var(--spacing-xl) 0;
    /* 添加滚动偏移，避免被固定导航栏遮挡 */
    scroll-margin-top: 100px;
}

/* 标题区域 */
.goods-section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    padding: 0 var(--spacing-md);
}

.goods-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 var(--spacing-sm) 0;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.goods-section-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.home-hero-title {
    font-size: 1.5rem; /* 24px - 更贴合小屏 */
    line-height: 1.3;
    letter-spacing: 0.01em;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.home-hero-subtitle {
    font-size: 0.9375rem; /* 15px */
    line-height: 1.6;
    color: var(--text-secondary);
}

@media (min-width: 576px) {
    .home-hero-title {
        font-size: 2.25rem; /* 36px - 小屏平板 */
        letter-spacing: 0.015em;
        margin-bottom: 1rem;
    }

    .home-hero-subtitle {
        font-size: 1.0625rem; /* 17px */
        line-height: 1.7;
    }
}

@media (min-width: 768px) {
    .home-hero-title {
        font-size: 2.75rem; /* 44px - 平板横屏 */
    }

    .home-hero-subtitle {
        font-size: 1.125rem; /* 18px */
    }
}

@media (min-width: 1200px) {
    .home-hero-title {
        font-size: 3rem; /* 48px - 桌面端 */
        letter-spacing: 0;
        font-weight: 700;
    }

    .home-hero-subtitle {
        font-size: 1.25rem; /* 20px */
    }
}

/* 分类筛选栏 - 卡片式设计 */
.category-filter-bar {
    margin-bottom: var(--spacing-xl);
    padding: 0;
    position: relative;
}

.category-filter-wrapper {
    display: grid;
    gap: 1rem;
    padding: 0;
    margin: 0;
    position: relative;
}

/* 默认移动端样式（≤767px）- 固定2列 */
@media (max-width: 767px) {
    .category-filter-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}


.category-filter-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 1.5rem;
    background-color: var(--background);
    border: 1px solid var(--border-color-light);
    border-radius: 1.25rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.category-filter-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-color-hover);
}

.category-filter-card.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-primary-active);
}

.category-card-image {
    width: 100px;
    height: 100px;
    aspect-ratio: 1 / 1; /* 确保始终是正方形 */
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 0.875rem;
    background-color: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0; /* 防止图片被压缩 */
}

.category-filter-card:hover .category-card-image {
    transform: scale(1.05);
}

.category-filter-card.active .category-card-image {
    box-shadow: var(--shadow-primary-image);
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 保持图片比例，裁剪多余部分 */
    object-position: center; /* 居中显示 */
    border-radius: 50%;
    display: block; /* 移除图片底部的默认间距 */
}

.category-card-image i {
    font-size: 2.5rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.category-filter-card.active .category-card-image i {
    color: var(--primary-color);
}

.category-card-name {
    font-size: 1rem; /* 16px */
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.5;
    letter-spacing: -0.011em;
    transition: color 0.3s ease;
    word-break: break-word;
}

.category-filter-card:hover .category-card-name {
    color: var(--primary-color);
}

.category-filter-card.active .category-card-name {
    color: var(--primary-color);
    font-weight: 500;
}

/* 分类和商品之间的分割线 - 中间粗深向两边变细淡 */
.category-goods-divider {
    width: 100%;
    height: 3px; /* 增加高度以支持渐变效果 */
    margin: var(--spacing-xl) auto;
    max-width: 1200px;
    position: relative;
    /* 使用径向渐变同时实现颜色和宽度的渐变：中间深粗，向两边淡细 */
    /* 椭圆宽度使用百分比实现自适应，高度控制线条粗细 */
    /* 使用更深的颜色提高可读性 */
    background: radial-gradient(
        ellipse 50% 1.5px at center,
        #c8c8cc 0%,
        rgba(200, 200, 204, 0.95) 10%,
        rgba(200, 200, 204, 0.85) 20%,
        rgba(200, 200, 204, 0.65) 35%,
        rgba(200, 200, 204, 0.4) 50%,
        rgba(200, 200, 204, 0.2) 65%,
        rgba(200, 200, 204, 0.08) 80%,
        transparent 100%
    );
}

/* 移动端分割线样式 - 增强可见性 */
@media (max-width: 767px) {
    .category-goods-divider {
        margin: var(--spacing-lg) auto;
        max-width: 100%;
        height: 2.5px; /* 增加移动端高度 */
        /* 移动端使用更深的颜色和更大的可见区域 */
        background: radial-gradient(
            ellipse 50% 1.25px at center,
            #b8b8bc 0%,
            rgba(184, 184, 188, 1) 8%,
            rgba(184, 184, 188, 0.95) 18%,
            rgba(184, 184, 188, 0.8) 30%,
            rgba(184, 184, 188, 0.6) 45%,
            rgba(184, 184, 188, 0.35) 60%,
            rgba(184, 184, 188, 0.15) 75%,
            transparent 100%
        );
    }
}

/* 商品容器 */
.goods-container {
    padding-top: var(--spacing-lg);
}

/* 商品网格 - 响应式设计 */
.goods-grid {
    display: grid;
    gap: var(--spacing-md);
    grid-template-columns: repeat(2, 1fr);
}

/* 商品卡片包装器 - 用于分类筛选 */
.goods-card-wrapper {
    display: block;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: auto;
}

/* 隐藏状态 - 使用 CSS Class 替代 jQuery fadeIn/Out，性能更优 */
.goods-card-wrapper.is-hidden {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    display: none; /* 隐藏后不占空间 */
}

/* 移动端：2列 */
@media (max-width: 575px) {
    .goods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    /* 移除 nth-child 限制，由 JavaScript 通过 is-hidden 类控制显示/隐藏 */
}

/* 小屏平板：2列 */
@media (min-width: 576px) and (max-width: 767px) {
    .goods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    /* 移除 nth-child 限制，由 JavaScript 通过 is-hidden 类控制显示/隐藏 */
}

/* 平板端：3列 */
@media (min-width: 768px) and (max-width: 991px) {
    .goods-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-md);
    }
    
    /* 移除 nth-child 限制，由 JavaScript 通过 is-hidden 类控制显示/隐藏 */
}

/* 中等桌面：4列 */
@media (min-width: 992px) and (max-width: 1199px) {
    .goods-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--spacing-md);
    }
    
    /* 移除 nth-child 限制，由 JavaScript 通过 is-hidden 类控制显示/隐藏 */
}

/* 大桌面：4列 */
@media (min-width: 1200px) {
    .goods-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--spacing-lg);
    }
    
    /* 移除 nth-child 限制，由 JavaScript 通过 is-hidden 类控制显示/隐藏 */
}

/* 商品卡片 */
.goods-card {
    background-color: var(--background-light); /* 浅灰色背景，与白色背景形成对比 */
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--border-color); /* 轻微边框 */
    box-shadow: var(--shadow-sm); /* 默认阴影，使卡片更突出 */
}

.goods-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg); /* 悬停时增强阴影 */
    border-color: var(--border-color-hover-alt);
    text-decoration: none;
    color: inherit;
}

/* 商品图片 - 1:1 比例 */
.goods-card-image {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* 1:1 比例 */
    overflow: hidden;
    background-color: var(--background); /* 图片区域使用白色背景 */
}

.goods-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.goods-card:hover .goods-card-image img {
    transform: scale(1.05);
}

/* 商品卡片内容 */
.goods-card-body {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background-color: var(--background-light); /* 与卡片背景一致 */
}

/* 商品名称 - 统一两行高度，超出省略 */
.goods-card-name {
    font-size: 1.0625rem; /* 17px */
    font-weight: 400; /* 常规字重，更接近 Apple Store */
    color: var(--text-primary);
    margin: 0 0 0.5rem 0; /* 与价格间距 */
    line-height: 1.5; /* 使用更常用的行高值 */
    /* 
     * 文本截断兼容性说明：
     * -webkit-line-clamp 是 WebKit/Chromium 专有属性，现代浏览器（包括 Firefox 68+ 和 Edge Chromium）已支持
     * 对于不支持该属性的旧版浏览器，使用 overflow: hidden 和固定高度作为后备方案
     * 注意：后备方案会截断文本，但无法保证精确的两行显示
     */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    /* 标准属性（未来兼容性，目前浏览器支持度较低） */
    line-clamp: 2;
    /* 后备方案：固定高度限制，确保在不支持的浏览器中也能截断文本 */
    overflow: hidden;
    text-overflow: ellipsis;
    height: 3.19em; /* 统一两行高度 (1.0625rem * 1.5 * 2) - 同时作为后备方案 */
    letter-spacing: -0.011em; /* 轻微字距调整 */
}

/* 商品价格 */
.goods-card-price {
    display: flex;
    align-items: baseline;
    gap: 0.125rem;
    margin-top: auto;
    font-size: 1.0625rem; /* 17px */
    font-weight: 400; /* 常规字重 */
    color: var(--text-primary);
    line-height: 1.47059;
    letter-spacing: 0;
}

.goods-price-symbol {
    font-size: 1.0625rem; /* 17px */
    font-weight: 400;
    color: var(--text-primary);
    margin-right: 0;
}

.goods-price-value {
    font-size: 1.0625rem; /* 17px - 与名称相同大小 */
    font-weight: 400; /* 常规字重 */
    color: var(--text-primary);
    letter-spacing: 0;
}

.goods-price-code {
    font-size: 0.75rem; /* 12px - 货币代码稍小 */
    font-weight: 400;
    color: var(--text-secondary);
    margin-left: 0.25rem;
    opacity: 0.7;
}

/* ============================================
   响应式设计 - 大桌面（≥1200px）
   ============================================ */
@media (min-width: 1200px) {
    /* 默认：4个或以下分类使用4列 */
    .category-filter-wrapper {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        justify-items: center;
        max-width: 1400px;
        margin: 0 auto;
    }
    
    /* 6个分类时使用6列（大桌面有足够空间） */
    .category-filter-wrapper.category-count-6 {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .goods-section-header {
        padding: 0;
    }

    .goods-section-title {
        font-size: 3rem;
    }

    .goods-section-subtitle {
        font-size: 1.5rem;
    }
}

/* 响应式布局 */
/* 平板（≥768px） */
@media (min-width: 768px) and (max-width: 1199px) {
    .goods-section-header {
        padding: 0;
    }

    .goods-section-title {
        font-size: 3rem;
    }

    .goods-section-subtitle {
        font-size: 1.5rem;
    }
}

/* 超大屏（≥1400px） */
@media (min-width: 1400px) {
    .goods-grid {
        max-width: 1400px;
        margin: 0 auto;
    }
}

/* 商品卡片库存信息 */
.goods-card-stock {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    margin-top: 0.25rem;
}

/* 查看更多按钮容器 */
.load-more-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-xl) 0;
    margin-top: var(--spacing-lg);
}

/* 查看更多按钮 */
.load-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: 2rem;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
}

.load-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.load-more-btn:hover:not(:disabled)::before {
    left: 100%;
}

.load-more-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
    transform: translateY(-3px);
}

.load-more-btn:active:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.4);
}

.load-more-btn:disabled {
    background: linear-gradient(135deg, #e0e0e0 0%, #bdbdbd 100%);
    color: #9e9e9e;
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.8;
    transform: none;
}

.load-more-text {
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: 0.5px;
}

.load-more-icon {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.load-more-btn:hover:not(:disabled) .load-more-icon {
    transform: translateY(3px);
}

.load-more-btn .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* 加载提示容器 */
.loading-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    padding: var(--spacing-lg) 0;
    margin-top: var(--spacing-md);
}

.loading-indicator i {
    font-size: 1rem;
    color: var(--primary-color);
    animation: spin 1s linear infinite;
}

.loading-indicator span {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* 没有更多了提示容器 */
.no-more-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-lg) 0;
    margin-top: var(--spacing-md);
}

.no-more-text {
    text-align: center;
    color: #9e9e9e;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* 移动端样式 */
@media (max-width: 767px) {
    .load-more-container {
        padding: var(--spacing-lg) 0;
        margin-top: var(--spacing-md);
    }
    
    .load-more-btn {
        padding: 0.875rem 2rem;
        font-size: 0.875rem;
        width: 100%;
        max-width: 300px;
        border-radius: 1.75rem;
    }
    
    .loading-indicator {
        padding: var(--spacing-md) 0;
    }
    
    .loading-indicator i {
        font-size: 0.875rem;
    }
    
    .loading-indicator span {
        font-size: 0.8125rem;
    }
    
    .no-more-container {
        padding: var(--spacing-md) 0;
    }
    
    .no-more-text {
        font-size: 0.8125rem;
    }
}