/* ==========================================
   品牌/店铺详情页样式 - 基于首页深色系设计风格
   Brand/Store Detail Page Styles
   ========================================== */

/* 页面基础设置 */
.zh_brand_page {
    min-height: 100vh;
    background: #fff;
}

/* ==========================================
   店铺头部横幅区域
   ========================================== */
.zh_brand_hero {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #2b2520 0%, #3a3129 100%);
    overflow: hidden;
    margin-bottom: 0;
}

.zh_brand_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    pointer-events: none;
}

/* 店铺头部信息 */
.zh_brand_header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.zh_brand_icon {
    width: 120px;
    height: 120px;
    background: rgba(250, 125, 9, 0.15);
    border: 2px solid rgba(250, 125, 9, 0.3);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(250, 125, 9, 0.2);
    flex-shrink: 0;
}

.zh_brand_icon i {
    font-size: 56px;
    color: #FA7D09;
}

.zh_brand_info {
    flex: 1;
}

.zh_brand_name {
    font-size: 48px;
    font-weight: 700;
    color: #F0F0F0;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.zh_brand_badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.zh_brand_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(250, 125, 9, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: #F0F0F0;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid rgba(250, 125, 9, 0.3);
}

.zh_brand_badge i {
    font-size: 18px;
    color: #FA7D09;
}

/* 店铺统计卡片 */
.zh_brand_stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 1;
}

.zh_stat_card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.zh_stat_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(250, 125, 9, 0.3);
    border-color: #FA7D09;
    background: rgba(255, 255, 255, 0.12);
}

.zh_stat_icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FA7D09 0%, #e56d00 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.zh_stat_icon i {
    font-size: 32px;
    color: #ffffff;
}

.zh_stat_content {
    flex: 1;
}

.zh_stat_label {
    font-size: 14px;
    color: rgba(240, 240, 240, 0.7);
    margin-bottom: 8px;
    font-weight: 500;
}

.zh_stat_value {
    font-size: 24px;
    font-weight: 700;
    color: #F0F0F0;
    line-height: 1.2;
}

/* ==========================================
   商品列表区域
   ========================================== */
.zh_brand_products_section {
    padding: 100px 0;
    background: #f8f9fa;
}

/* 区域标题 */
.zh_section_header {
    text-align: center;
    margin-bottom: 60px;
}

.zh_section_title {
    font-size: 40px;
    font-weight: 700;
    color: #2b2520;
    margin: 0 0 12px 0;
}

.zh_section_subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* 商品网格布局 */
.zh_brand_products_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* 商品卡片 */
.zh_brand_product_item {
    opacity: 0;
    transform: scale(0.95);
}

.zh_brand_product_item[data-aos].aos-animate {
    opacity: 1;
    transform: scale(1);
}

.zh_brand_product_card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
}

.zh_brand_product_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(250, 125, 9, 0.2);
    border-color: #FA7D09;
}

/* 商品图片区域 */
.zh_brand_product_img_wrap {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f5f5f5;
    display: block;
}

.zh_brand_product_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.zh_brand_product_card:hover .zh_brand_product_img {
    transform: scale(1.1);
}

.zh_brand_product_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43, 37, 32, 0.9) 0%, rgba(58, 49, 41, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zh_brand_product_card:hover .zh_brand_product_overlay {
    opacity: 1;
}

.zh_brand_quick_view {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.zh_brand_product_card:hover .zh_brand_quick_view {
    transform: translateY(0);
}

.zh_brand_quick_view i {
    font-size: 32px;
    color: #FA7D09;
}

.zh_brand_quick_view span {
    font-size: 16px;
    font-weight: 600;
}

/* 商品信息区域 */
.zh_brand_product_details {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.zh_brand_product_name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 50px;
}

.zh_brand_product_name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.zh_brand_product_name a:hover {
    color: #FA7D09;
}

/* 评分显示 */
.zh_brand_product_rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.zh_brand_stars {
    display: flex;
    gap: 3px;
}

.zh_brand_stars i {
    font-size: 14px;
    color: #FA7D09;
}

.zh_brand_rating_num {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

/* 价格区域 */
.zh_brand_product_pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
}

.zh_brand_price_now {
    font-size: 24px;
    font-weight: 700;
    color: #FA7D09;
    line-height: 1;
}

.zh_brand_price_old {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

/* 操作按钮 */
.zh_brand_product_actions {
    margin-top: auto;
}

.zh_brand_btn_detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 24px;
    background: transparent;
    color: #FA7D09;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid #FA7D09;
    cursor: pointer;
}

.zh_brand_btn_detail:hover {
    background: #FA7D09;
    color: #fff;
}

.zh_brand_btn_detail i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.zh_brand_btn_detail:hover i {
    transform: translateX(5px);
}

/* 分页区域 */
.zh_brand_pagination_area {
    margin-top: 50px;
    text-align: center;
}

/* ==========================================
   响应式设计
   ========================================== */

/* 大屏幕 */
@media (max-width: 1200px) {
    .zh_brand_products_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .zh_brand_name {
        font-size: 40px;
    }

    .zh_brand_icon {
        width: 100px;
        height: 100px;
    }

    .zh_brand_icon i {
        font-size: 48px;
    }

    .zh_section_title {
        font-size: 36px;
    }
}

/* 平板 */
@media (max-width: 992px) {
    .zh_brand_hero {
        padding: 80px 0 60px;
    }

    .zh_brand_header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .zh_brand_name {
        font-size: 36px;
    }

    .zh_brand_stats {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .zh_stat_card {
        padding: 25px;
    }

    .zh_brand_products_section {
        padding: 80px 0;
    }

    .zh_section_title {
        font-size: 32px;
    }

    .zh_section_header {
        margin-bottom: 50px;
    }
}

/* 手机横屏 */
@media (max-width: 768px) {
    .zh_brand_hero {
        padding: 60px 0 40px;
    }

    .zh_brand_icon {
        width: 80px;
        height: 80px;
    }

    .zh_brand_icon i {
        font-size: 40px;
    }

    .zh_brand_name {
        font-size: 28px;
    }

    .zh_brand_badge {
        padding: 8px 16px;
        font-size: 14px;
    }

    .zh_brand_stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .zh_stat_card {
        padding: 20px;
    }

    .zh_stat_icon {
        width: 60px;
        height: 60px;
    }

    .zh_stat_icon i {
        font-size: 28px;
    }

    .zh_stat_value {
        font-size: 20px;
    }

    .zh_brand_products_section {
        padding: 60px 0;
    }

    .zh_section_header {
        margin-bottom: 40px;
    }

    .zh_section_title {
        font-size: 28px;
    }

    .zh_section_subtitle {
        font-size: 14px;
    }

    .zh_brand_products_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .zh_brand_product_img_wrap {
        height: 200px;
    }

    .zh_brand_product_details {
        padding: 20px;
    }

    .zh_brand_product_name {
        font-size: 16px;
        min-height: 44px;
    }

    .zh_brand_price_now {
        font-size: 22px;
    }
}

/* 手机竖屏 */
@media (max-width: 576px) {
    .zh_brand_hero {
        padding: 40px 0 30px;
    }

    .zh_brand_icon {
        width: 70px;
        height: 70px;
    }

    .zh_brand_icon i {
        font-size: 32px;
    }

    .zh_brand_name {
        font-size: 24px;
    }

    .zh_brand_badge {
        padding: 6px 12px;
        font-size: 13px;
    }

    .zh_brand_badge i {
        font-size: 14px;
    }

    .zh_stat_card {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }

    .zh_stat_icon {
        width: 55px;
        height: 55px;
    }

    .zh_stat_icon i {
        font-size: 24px;
    }

    .zh_stat_label {
        font-size: 13px;
    }

    .zh_stat_value {
        font-size: 18px;
    }

    .zh_brand_products_section {
        padding: 40px 0;
    }

    .zh_section_title {
        font-size: 24px;
    }

    .zh_brand_products_grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .zh_brand_product_img_wrap {
        height: 250px;
    }

    .zh_brand_product_details {
        padding: 18px;
    }

    .zh_brand_product_name {
        font-size: 15px;
    }

    .zh_brand_price_now {
        font-size: 20px;
    }

    .zh_brand_price_old {
        font-size: 14px;
    }

    .zh_brand_btn_detail {
        padding: 10px 20px;
        font-size: 14px;
    }

    .zh_brand_pagination_area {
        margin-top: 30px;
    }
}
