/* 首页样式 - zh_ 前缀 - 基于Figma设计稿 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #ffffff;
    color: #1b1b1b;
    line-height: 1.6;
}

.zh_accent {
    color: #e60000;
}

/* Hero Section - 参考Figma的Hero Banner */
.zh_hero_section {
    padding: 60px 0;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.zh_hero_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.zh_hero_content {
    padding: 20px 0;
}

.zh_hero_title {
    font-size: 50px;
    font-weight: 600;
    color: #1b1b1b;
    line-height: 1.15;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.zh_hero_desc {
    font-size: 20px;
    color: #505050;
    line-height: 1.5;
    margin-bottom: 40px;
    font-weight: 300;
}

.zh_hero_button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e60000;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
}

.zh_hero_button:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 0, 0, 0.3);
}

.zh_hero_image {
    position: relative;
}

.zh_hero_card {
    background: #c4c4c4;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.zh_hero_card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Features Section */
.zh_features_section {
    padding: 50px 0;
    background: #ffffff;
}

.zh_features_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.zh_feature_card {
    text-align: center;
    padding: 30px 20px;
    background: #f8f8f8;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.zh_feature_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.zh_feature_icon {
    width: 60px;
    height: 60px;
    background: #e60000;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.zh_feature_icon i {
    font-size: 28px;
    color: #ffffff;
}

.zh_feature_title {
    font-size: 18px;
    font-weight: 600;
    color: #1b1b1b;
    margin-bottom: 10px;
}

.zh_feature_text {
    font-size: 14px;
    color: #505050;
}

/* Main Content */
.zh_main_wrapper {
    background: #ffffff;
    padding: 40px 0;
}

.zh_main_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Category Blocks */
.zh_category_block {
    margin-bottom: 80px;
}

.zh_category_intro {
    text-align: center;
    margin-bottom: 40px;
}

.zh_category_heading {
    font-size: 38px;
    font-weight: 600;
    color: #1b1b1b;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.zh_category_tagline {
    font-size: 14px;
    color: #999;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Products Display */
.zh_products_display {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.zh_product_box {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.zh_product_box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #e60000;
}

.zh_product_link_wrap {
    display: block;
    text-decoration: none;
    color: inherit;
}

.zh_product_photo {
    width: 100%;
    height: 280px;
    background: #c4c4c4;
    overflow: hidden;
    position: relative;
}

.zh_product_photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.zh_product_box:hover .zh_product_photo img {
    transform: scale(1.05);
}

.zh_product_info {
    padding: 20px;
}

.zh_product_title {
    font-size: 16px;
    font-weight: 600;
    color: #1b1b1b;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zh_product_shop_name {
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zh_product_price_area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.zh_price_now {
    font-size: 22px;
    font-weight: 600;
    color: #e60000;
}

.zh_price_old {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .zh_hero_container {
        gap: 40px;
    }

    .zh_hero_title {
        font-size: 42px;
    }

    .zh_hero_desc {
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    .zh_hero_container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .zh_features_container {
        grid-template-columns: repeat(2, 1fr);
    }

    .zh_category_heading {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .zh_hero_title {
        font-size: 36px;
    }

    .zh_hero_desc {
        font-size: 16px;
    }

    .zh_features_container {
        grid-template-columns: 1fr;
    }

    .zh_products_display {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }

    .zh_category_heading {
        font-size: 28px;
    }

    .zh_category_block {
        margin-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .zh_hero_section {
        padding: 40px 0;
    }

    .zh_hero_title {
        font-size: 28px;
    }

    .zh_hero_desc {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .zh_products_display {
        grid-template-columns: 1fr;
    }

    .zh_product_photo {
        height: 240px;
    }

    .zh_category_heading {
        font-size: 24px;
    }
}
