/* ===== 产品目录页面专用样式 ===== */

/* 产品目录主体容器 */
.product-catalog {
    padding: 2rem 0;
    margin-top: 105px;
    width: 100%;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
}

/* 目录容器布局 - 使用Flexbox代替绝对定位 */
.catalog-container {
    display: flex;
    gap: 20px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    min-height: 500px;
}

/* ===== 左侧目录样式 ===== */

/* 目录侧边栏 */
.catalog-sidebar {
    width: 280px;
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

/* 目录标题样式 */
.catalog-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    font-weight: 700;
}

/* 目录侧边栏的容器 */
.catalog-sidebar-wrapper {
    display: block;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* 分类列表 */
.category-list {
    list-style: none;
}

.category-item {
    margin-bottom: 0.5rem;
}

/* 主分类链接 */
.category-main {
    display: block;
    padding: 0.8rem 1rem;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.category-main:hover,
.category-main.active {
    background-color: #3498db;
    color: white;
}

/* 子分类列表 - 默认全部展开 */
.subcategory-list {
    list-style: none;
    margin-top: 0.5rem;
    padding-left: 1rem;
    max-height: none;
    overflow: visible;
}

.subcategory-item {
    margin-bottom: 0.3rem;
}

/* 子分类链接 */
.subcategory-link {
    display: block;
    padding: 0.6rem 1rem;
    color: #666;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    background-color: transparent;
}

.subcategory-link:hover {
    background-color: #e3f2fd;
    color: #1976d2;
}

/* 子分类链接激活状态 */
.subcategory-link.active {
    background-color: #e3f2fd;
    color: #1976d2;
}

/* ===== 右侧产品列表样式 ===== */

/* 产品区域 */
.products-section {
    flex: 1;
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    min-width: 0;
}

/* 产品网格 - 使用Flexbox百分比布局 */
.products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    width: 100%;
    box-sizing: border-box;
    align-items: flex-start;
    align-content: flex-start;
    margin: 0;
    padding: 0;
}

/* 产品卡片 - 4列布局时每个产品占25%宽度减去间距 */
.product-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    box-sizing: border-box;
    flex: 0 0 calc(25% - 1.125rem);
    margin: 0;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* 产品图片容器 - 1:1长宽比 */
.product-image {
    width: 100%;
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1 / 1;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* 区域标题 */
.section-header {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #7f8c8d;
    font-size: 1.1rem;
}

/* 产品名称 */
.product-name {
    font-size: 1.0rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* 产品描述 */
.product-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0rem;
}

/* 产品详情链接 */
.product-link {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.product-link:hover {
    background-color: #2980b9;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transform: translateY(-2px);
}

/* ===== 响应式设计 ===== */

/* 中等屏幕设备（平板等）样式 - 最大宽度1200px */
@media (max-width: 1200px) {
    .catalog-sidebar {
        width: 260px;
    }
    
    .product-item {
        flex: 0 0 calc(33.333% - 1rem); /* 3列布局 */
    }
}

/* 中等屏幕设备（平板等）样式 - 最大宽度992px */
@media (max-width: 992px) {
    /* 在较小屏幕上恢复为垂直布局 */
    .catalog-container {
        flex-direction: column;
    }
    
    .catalog-sidebar {
        width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .products-section {
        width: 100%;
    }
    
    .product-item {
        flex: 0 0 calc(50% - 0.75rem); /* 2列布局 */
    }
    
    .products-section {
        padding: 1.5rem;
    }
}

/* 小屏幕设备（手机等）样式 - 最大宽度768px */
@media (max-width: 768px) {
    .product-catalog {
        margin-top: 102px;
        padding: 1rem 0;
    }

    .catalog-container {
        padding: 0 10px;
    }

    .product-item {
        flex: 0 0 100%; /* 1列布局 */
        padding: 1rem;
    }

    .products-section {
        padding: 1rem;
    }
}

/* 超小屏幕设备样式 - 最大宽度480px */
@media (max-width: 480px) {
    .product-catalog {
        margin-top: 100px;
        padding: 0.5rem 0;
    }

    .product-item {
        flex: 0 0 100%; /* 1列布局 */
        padding: 0.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
    
    .products-section {
        padding: 0.8rem;
    }
}