/* 店铺列表页样式 - 全新布局设计 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1b1b1b;
    background: #fff;
}

.zh_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.zh_main {
    min-height: calc(100vh - 200px);
}

/* Hero区域 - 参考首页左右布局 */
.zh_hero_section {
    padding: 80px 0;
    background: #fff;
}

.zh_hero_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.zh_hero_content {
    padding-right: 40px;
}

.zh_hero_title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1b1b1b;
}

.zh_hero_title span {
    color: #e60000;
}

.zh_hero_description {
    font-size: 18px;
    line-height: 1.8;
    color: #505050;
    margin-bottom: 40px;
}

.zh_hero_stats {
    display: flex;
    gap: 30px;
}

.zh_stat_box {
    background: #f5f5f5;
    padding: 20px 30px;
    border-radius: 20px;
    text-align: center;
    min-width: 120px;
}

.zh_stat_number {
    font-size: 32px;
    font-weight: 700;
    color: #e60000;
    margin-bottom: 5px;
}

.zh_stat_label {
    font-size: 14px;
    color: #505050;
}

.zh_hero_image {
    background: #c4c4c4;
    border-radius: 30px;
    height: 450px;
    overflow: hidden;
    border-bottom-left-radius: 150px;
}

.zh_hero_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 控制区域 - 面包屑和筛选合并 */
.zh_control_section {
    padding: 30px 0;
    background: #f5f5f5;
}

.zh_control_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.zh_breadcrumb {
    display: flex;
    align-items: center;
}

.zh_breadcrumb_item {
    color: #505050;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.zh_breadcrumb_item:hover {
    color: #e60000;
}

.zh_breadcrumb_item i {
    margin-right: 5px;
}

.zh_breadcrumb_separator {
    margin: 0 10px;
    color: #999;
}

.zh_breadcrumb_current {
    color: #1b1b1b;
    font-weight: 600;
}

.zh_filter_area {
    display: flex;
    align-items: center;
    gap: 30px;
}

.zh_result_count {
    font-size: 14px;
    color: #505050;
}

.zh_result_count strong {
    color: #e60000;
    font-size: 18px;
    font-weight: 700;
}

.zh_sort_controls {
    display: flex;
    gap: 10px;
}

.zh_sort_btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: #505050;
    border: none;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.zh_sort_btn:hover {
    background: #fce2e2;
    color: #e60000;
}

.zh_sort_btn.zh_active {
    background: #e60000;
    color: #fff;
}

/* 店铺列表区域 - 横向大卡片 */
.zh_store_list_section {
    padding: 50px 0 80px;
    background: #fff;
}

.zh_store_list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.zh_store_card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
}

.zh_store_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.zh_store_layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    min-height: 320px;
}

/* 左侧图片区 */
.zh_store_visual {
    position: relative;
    background: #f5f5f5;
}

.zh_store_cover {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.zh_store_cover.zh_rounded_br {
    border-bottom-right-radius: 120px;
}

.zh_store_cover.zh_rounded_bl {
    border-bottom-left-radius: 120px;
}

.zh_store_cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.zh_store_card:hover .zh_store_cover img {
    transform: scale(1.1);
}

.zh_store_badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(230, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
}

.zh_store_avatar_wrap {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
}

.zh_store_avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 5px solid #fff;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* 右侧内容区 */
.zh_store_info {
    padding: 35px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.zh_store_header {
    margin-bottom: 20px;
}

.zh_store_name {
    margin-bottom: 8px;
}

.zh_store_name a {
    color: #1b1b1b;
    text-decoration: none;
    font-size: 26px;
    font-weight: 700;
    transition: color 0.3s;
}

.zh_store_name a:hover {
    color: #e60000;
}

.zh_store_meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.zh_owner {
    color: #505050;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.zh_owner i {
    color: #e60000;
}

.zh_store_desc {
    margin-bottom: 25px;
}

.zh_store_desc p {
    color: #505050;
    font-size: 15px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zh_store_stats_row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 20px;
}

.zh_stat_item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.zh_stat_item i {
    font-size: 28px;
    color: #e60000;
}

.zh_stat_data {
    display: flex;
    flex-direction: column;
}

.zh_number {
    font-size: 20px;
    font-weight: 700;
    color: #1b1b1b;
    line-height: 1;
}

.zh_label {
    font-size: 12px;
    color: #505050;
    margin-top: 3px;
}

.zh_store_products {
    margin-bottom: 25px;
}

.zh_products_row {
    display: flex;
    gap: 12px;
}

.zh_mini_product {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
    transition: transform 0.3s;
}

.zh_mini_product:hover {
    transform: translateY(-4px);
}

.zh_mini_product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zh_product_overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 8px 6px 4px;
    opacity: 0;
    transition: opacity 0.3s;
}

.zh_mini_product:hover .zh_product_overlay {
    opacity: 1;
}

.zh_price {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.zh_store_action {
    display: flex;
    justify-content: flex-end;
}

.zh_btn_visit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e60000;
    color: #fff;
    padding: 14px 32px;
    border-radius: 24px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.zh_btn_visit:hover {
    background: #cc0000;
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(230, 0, 0, 0.3);
}

.zh_btn_primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e60000;
    color: #fff;
    padding: 14px 30px;
    border-radius: 24px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.zh_btn_primary:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 0, 0, 0.3);
}

/* 空状态 */
.zh_empty_state {
    text-align: center;
    padding: 100px 20px;
}

.zh_empty_illustration {
    font-size: 100px;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.zh_empty_title {
    font-size: 28px;
    font-weight: 700;
    color: #1b1b1b;
    margin-bottom: 15px;
}

.zh_empty_description {
    font-size: 16px;
    color: #505050;
    margin-bottom: 35px;
}

.zh_empty_actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 分页 */
.zh_pagination_section {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

/* Benefits区域 - 参考首页 */
.zh_benefits_section {
    padding: 80px 0;
    background: #f5f5f5;
}

.zh_benefits_grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.zh_benefit_image {
    background: #c4c4c4;
    border-radius: 30px;
    height: 450px;
    overflow: hidden;
    border-top-right-radius: 150px;
}

.zh_benefit_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zh_benefit_content {
    background: linear-gradient(135deg, #e60000 0%, #ff3333 100%);
    padding: 50px;
    border-radius: 30px;
    color: #fff;
    text-align: center;
}

.zh_benefit_icon {
    font-size: 52px;
    margin-bottom: 20px;
}

.zh_benefit_title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.zh_benefit_description {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.95;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .zh_hero_grid,
    .zh_benefits_grid {
        grid-template-columns: 1fr;
    }

    .zh_store_layout {
        grid-template-columns: 1fr;
    }

    .zh_store_visual {
        height: 300px;
    }

    .zh_hero_image,
    .zh_benefit_image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .zh_hero_title {
        font-size: 36px;
    }

    .zh_control_wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .zh_filter_area {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        width: 100%;
    }

    .zh_sort_controls {
        width: 100%;
        flex-wrap: wrap;
    }

    .zh_store_stats_row {
        flex-direction: column;
        gap: 15px;
    }

    .zh_products_row {
        gap: 8px;
    }

    .zh_mini_product {
        width: 60px;
        height: 60px;
    }

    .zh_store_action {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .zh_hero_title {
        font-size: 28px;
    }

    .zh_hero_stats {
        flex-direction: column;
        gap: 15px;
    }

    .zh_stat_box {
        width: 100%;
    }

    .zh_store_info {
        padding: 25px 20px;
    }

    .zh_store_name a {
        font-size: 20px;
    }

    .zh_benefit_title {
        font-size: 24px;
    }
}
