/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    color: #362222;
    line-height: 1.6;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 主容器 */
.zh_main {
    min-height: 100vh;
}

.zh_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Banner 区域 - 全新设计 */
.zh_hero_section {
    background: linear-gradient(135deg, #fcf8f3 0%, #f9f1e7 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.zh_hero_section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(191, 146, 113, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.zh_hero_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.zh_hero_content {
    display: grid;
    grid-template-columns: 1fr 600px;
    gap: 80px;
    align-items: center;
}

.zh_hero_left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.zh_hero_title {
    font-family: 'Mulish', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: #362222;
    margin: 0;
}

.zh_hero_desc {
    font-size: 18px;
    color: #362222;
    opacity: 0.7;
    line-height: 1.8;
    margin: 0;
}

.zh_hero_features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.zh_hero_feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.zh_hero_feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.zh_hero_feature i {
    color: #bf9271;
    font-size: 18px;
}

.zh_hero_feature span {
    font-size: 14px;
    font-weight: 500;
    color: #362222;
}

.zh_hero_actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.zh_hero_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    text-decoration: none;
    border: 2px solid transparent;
}

.zh_btn_primary {
    background: #bf9271;
    color: #fff;
    box-shadow: 0 4px 16px rgba(191, 146, 113, 0.3);
}

.zh_btn_primary:hover {
    background: #9a7328;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(191, 146, 113, 0.4);
}

.zh_btn_secondary {
    background: #fff;
    color: #bf9271;
    border-color: #bf9271;
}

.zh_btn_secondary:hover {
    background: #f9f1e7;
    transform: translateY(-2px);
}

.zh_hero_right {
    position: relative;
}

.zh_hero_image_wrap {
    position: relative;
    width: 100%;
    height: 500px;
}

.zh_hero_image_main {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.zh_hero_image_main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zh_hero_image_decor {
    position: absolute;
    border-radius: 20px;
    pointer-events: none;
}

.zh_decor_1 {
    width: 200px;
    height: 200px;
    background: #bf9271;
    opacity: 0.2;
    top: -40px;
    right: -40px;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.zh_decor_2 {
    width: 150px;
    height: 150px;
    background: #f9f1e7;
    bottom: -30px;
    left: -30px;
    z-index: 1;
    animation: float 8s ease-in-out infinite reverse;
}

.zh_decor_3 {
    width: 100px;
    height: 100px;
    background: #da3e31;
    opacity: 0.15;
    top: 50%;
    right: -20px;
    z-index: 0;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* 特色卡片区域 */
.zh_features_section {
    padding: 80px 0;
    background: #fff;
}

.zh_features_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.zh_feature_card {
    background: #fff;
    border: 1px solid #eeeeee;
    padding: 56px 37px;
    transition: all 0.3s;
}

.zh_feature_card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.zh_feature_icon {
    width: 48px;
    height: 48px;
    margin-bottom: 30px;
    font-size: 48px;
    color: #bf9271;
}

.zh_feature_card h3 {
    font-family: 'Mulish', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #362222;
    margin-bottom: 10px;
    line-height: 1.429;
}

.zh_feature_card p {
    font-size: 18px;
    color: #362222;
    opacity: 0.4;
    line-height: 1.8;
}

/* 大图+文字区块 */
.zh_promo_section {
    padding: 80px 0;
    background: #fff;
}

.zh_promo_grid {
    display: grid;
    grid-template-columns: 600px 1fr;
    gap: 50px;
    align-items: center;
}

.zh_promo_image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #fcf8f3;
}

.zh_promo_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zh_promo_content h2 {
    font-family: 'Mulish', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #362222;
    margin-bottom: 40px;
    line-height: 1.394;
}

.zh_promo_content p {
    font-size: 18px;
    color: #362222;
    opacity: 0.4;
    margin-bottom: 20px;
    line-height: 1.8;
}

.zh_promo_btn {
    display: inline-block;
    background: #bf9271;
    color: #fff;
    padding: 20px 48px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 4px;
    margin-top: 20px;
    transition: all 0.3s;
    box-shadow: 5px 5px 30px rgba(115, 115, 115, 0.08);
}

.zh_promo_btn:hover {
    background: #9a7328;
    transform: translateY(-2px);
}

/* 促销区域 */
.zh_sale_section {
    padding: 80px 0;
    background: #fff;
}

.zh_sale_header {
    text-align: center;
    margin-bottom: 100px;
}

.zh_sale_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #da3e31;
    color: #fff;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 24px;
}

.zh_sale_header h2 {
    font-family: 'Mulish', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #362222;
}

.zh_sale_product {
    background: #eeeeee;
    border: 1px solid #eeeeee;
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 0;
    height: 450px;
}

.zh_sale_product_info {
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.zh_sale_label {
    font-size: 18px;
    color: #362222;
    opacity: 0.4;
    margin-bottom: 20px;
    font-weight: 500;
}

.zh_sale_product_info h3 {
    font-family: 'Mulish', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #362222;
    margin-bottom: 50px;
    line-height: 1.394;
}

.zh_sale_price {
    font-family: 'Mulish', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #bf9271;
    line-height: 1.522;
}

.zh_sale_product_image {
    height: 100%;
    overflow: hidden;
}

.zh_sale_product_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 产品区域 */
.zh_products_section {
    padding: 80px 0;
}

.zh_bg_light {
    background: #fcf8f3;
}

.zh_section_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.zh_section_title {
    font-family: 'Mulish', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #362222;
    line-height: 1.394;
}

.zh_view_more {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #362222;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s;
}

.zh_view_more:hover {
    color: #bf9271;
    gap: 12px;
}

.zh_products_grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.zh_product_card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s;
}

.zh_product_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.zh_product_img {
    width: 100%;
    height: 251px;
    position: relative;
    background: #fff;
    overflow: hidden;
}

.zh_product_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.zh_product_card:hover .zh_product_img img {
    transform: scale(1.05);
}

.zh_product_badge {
    position: absolute;
    top: 17px;
    left: 17px;
    background: #362222;
    color: #fff;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
}

.zh_product_info {
    padding: 17px;
}

.zh_product_title {
    font-size: 18px;
    font-weight: 500;
    color: #362222;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 54px;
}

/* 响应式设计 */
@media (max-width: 1440px) {
    .zh_container {
        padding: 0 40px;
    }
    
    .zh_hero_container {
        padding: 0 40px;
    }
}

@media (max-width: 1200px) {
    .zh_hero_content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .zh_hero_image_wrap {
        height: 400px;
    }
    
    .zh_hero_title {
        font-size: 48px;
    }
    
    .zh_promo_grid {
        grid-template-columns: 1fr;
    }
    
    .zh_promo_image {
        height: 400px;
    }
    
    .zh_sale_product {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .zh_sale_product_info {
        padding: 60px 40px;
    }
    
    .zh_products_grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .zh_container {
        padding: 0 30px;
    }
    
    .zh_features_grid {
        grid-template-columns: 1fr;
    }
    
    .zh_products_grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .zh_hero_title {
        font-size: 42px;
    }
    
    .zh_section_title {
        font-size: 36px;
    }
    
    .zh_promo_grid {
        grid-template-columns: 1fr;
    }
    
    .zh_sale_product {
        grid-template-columns: 1fr;
        height: auto;
    }
}

@media (max-width: 768px) {
    .zh_products_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .zh_hero_title {
        font-size: 36px;
    }
    
    .zh_section_title {
        font-size: 28px;
    }
    
    .zh_promo_content h2 {
        font-size: 36px;
    }
    
    .zh_sale_product_info h3 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .zh_hero_section {
        padding: 60px 0;
    }
    
    .zh_hero_content {
        gap: 30px;
    }
    
    .zh_hero_title {
        font-size: 36px;
    }
    
    .zh_hero_desc {
        font-size: 16px;
    }
    
    .zh_hero_features {
        gap: 12px;
    }
    
    .zh_hero_feature {
        padding: 10px 16px;
    }
    
    .zh_hero_feature span {
        font-size: 13px;
    }
    
    .zh_hero_actions {
        flex-direction: column;
    }
    
    .zh_hero_btn {
        width: 100%;
        justify-content: center;
    }
    
    .zh_hero_image_wrap {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .zh_container {
        padding: 0 20px;
    }
    
    .zh_hero_container {
        padding: 0 20px;
    }
    
    .zh_hero_section {
        padding: 40px 0;
    }
    
    .zh_hero_title {
        font-size: 28px;
    }
    
    .zh_hero_desc {
        font-size: 14px;
    }
    
    .zh_hero_image_wrap {
        height: 250px;
    }
    
    .zh_products_grid {
        grid-template-columns: 1fr;
    }
    
    .zh_section_header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .zh_sale_product_info {
        padding: 50px 30px;
    }
    
    .zh_sale_product_info h3 {
        font-size: 36px;
    }
}
