/**
 * 商品归档页面布局样式
 * 
 * 提供左右分栏布局，左侧商品分类小工具，右侧商品列表
 * 包含响应式设计适配不同屏幕尺寸
 * 
 * @package HelloElementorChild
 * @since 1.0.0
 */

/* 主容器布局 */
.shop-layout-container {
    display: flex;
    gap: 20px;
    max-width: 100%;
    margin: 0;
}

/* 左侧边栏样式 */
.shop-sidebar {
    flex: 0 0 240px;
    width: 240px;
    padding: 0;
    height: fit-content;
}

/* 右侧内容区域 */
.shop-content {
    flex: 1;
    min-width: 0;
}

/* 商品页面标题样式 */
.woocommerce-products-header__title {
    font-size: 50px;
    text-align: center;
    background: linear-gradient(144deg, #FAD38F 17.97%, #D1A75D 97.36%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.woocommerce-products-header .term-description{
    color: #fff;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

/* 响应式设计 - 平板设备 */
@media (max-width: 768px) {
    .shop-layout-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .shop-sidebar {
        flex: none;
        width: 100%;
        position: static;
        order: 2;
    }
    
    .shop-content {
        order: 1;
    }
}

/* 商品页面标题样式 */
.woocommerce-products-header__title {
    text-align: center;
    font-size: 50px;
    background: linear-gradient(144deg, #FAD38F 17.97%, #D1A75D 97.36%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 商品结果计数样式 */
.woocommerce-result-count {
    font-size: 16px !important;
    color: #fff !important;
}

/* 响应式设计 - 手机设备 */
@media (max-width: 480px) {
    .shop-layout-container {
        gap: 10px;
    }
    
    .shop-sidebar {
        padding: 0;
        order: 0;
    }
}