
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0d0d0d;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.zh_container {
    max-width: 1620px;
    margin: 0 auto;
    padding: 0 60px;
}

.zh_section {
    padding: 100px 0;
}

/* ========== Hero *E:� ========== */
.zh_hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
}

.zh_hero_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(254, 99, 21, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.zh_hero_container {
    max-width: 1620px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.zh_hero_text {
    animation: fadeInLeft 1s ease-out;
}

.zh_hero_title {
    font-size: 120px;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.zh_hero_title span {
    color: #fe6315;
}

.zh_hero_desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 580px;
}

.zh_hero_actions {
    display: flex;
    align-items: center;
    gap: 40px;
}

.zh_btn_explore {
    padding: 18px 40px;
    background: #fe6315;
    color: #0d0d0d;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-block;
}

.zh_btn_explore:hover {
    background: #ff7a3d;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(254, 99, 21, 0.4);
}

.zh_hero_stats {
    display: flex;
    gap: 30px;
}

.zh_stat_item {
    display: flex;
    flex-direction: column;
}

.zh_stat_number {
    font-size: 48px;
    font-weight: bold;
    color: #ffffff;
    line-height: 1;
}

.zh_stat_label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    margin-top: 8px;
}

.zh_hero_image {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.zh_hero_image img {
    width: 100%;
    max-width: 650px;
    height: auto;
    object-fit: cover;
    border-radius: 0;
}

.zh_hero_badge {
    position: absolute;
    right: 50px;
    bottom: 50px;
    background: #fe6315;
    padding: 25px 30px;
    text-align: center;
}

.zh_hero_badge span {
    display: block;
    font-size: 90px;
    font-weight: bold;
    line-height: 1;
    color: #0d0d0d;
}

.zh_hero_badge small {
    display: block;
    font-size: 16px;
    color: #0d0d0d;
    margin-top: 10px;
}

.zh_brand_strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fe6315;
    padding: 25px 0;
    overflow: hidden;
}

.zh_brand_text {
    font-size: 50px;
    font-weight: bold;
    color: #0d0d0d;
    white-space: nowrap;
    animation: scrollText 20s linear infinite;
}

@keyframes scrollText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========== E ��:� ========== */
.zh_bestseller {
    background: #0d0d0d;
    position: relative;
}

.zh_bestseller::before {
    content: 'FASHION';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 280px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
    white-space: nowrap;
}

.zh_section_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.zh_section_title {
    font-size: 80px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.zh_section_link {
    color: #fe6315;
    font-size: 32px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.zh_section_link:hover {
    color: #ff7a3d;
}

.zh_products_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.zh_product_card {
    background: transparent;
    transition: transform 0.3s;
}

.zh_product_card:hover {
    transform: translateY(-10px);
}

.zh_product_link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.zh_product_image {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin-bottom: 25px;
}

.zh_product_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.zh_product_card:hover .zh_product_image img {
    transform: scale(1.05);
}

.zh_product_badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ffffff;
    color: #0d0d0d;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.zh_product_cart {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #ffffff;
    border: none;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s;
    color: #0d0d0d;
    font-size: 18px;
}

.zh_product_cart:hover {
    background: #fe6315;
    color: #ffffff;
    transform: scale(1.1);
}

.zh_product_info {
    padding: 0;
}

.zh_product_title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffffff;
}

.zh_product_desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.zh_product_meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.zh_product_contact {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

/* ========== ��U::� ========== */
.zh_showcase {
    background: #0d0d0d;
}

.zh_showcase_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.zh_showcase_title {
    font-size: 80px;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 35px;
    color: #ffffff;
}

.zh_showcase_desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 40px;
}

.zh_btn_more {
    display: inline-block;
    padding: 15px 35px;
    background: #fe6315;
    color: #0d0d0d;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s;
}

.zh_btn_more:hover {
    background: #ff7a3d;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(254, 99, 21, 0.4);
}

.zh_showcase_images {
    position: relative;
    height: 500px;
}

.zh_showcase_img {
    position: absolute;
    overflow: hidden;
}

.zh_showcase_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zh_img_1 {
    width: 320px;
    height: 320px;
    top: 0;
    left: 0;
    z-index: 2;
}

.zh_img_2 {
    width: 320px;
    height: 320px;
    bottom: 0;
    right: 0;
}

.zh_showcase_tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #ffffff;
    color: #0d0d0d;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
}

.zh_showcase_decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.zh_deco_1 {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: transparent;
    border: 2px solid #fe6315;
}

.zh_deco_2 {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: transparent;
    border: 2px solid #fe6315;
}

/* ========== s�s�:� ========== */
.zh_about {
    background: #0d0d0d;
}

.zh_about_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.zh_about_images {
    position: relative;
    height: 650px;
}

.zh_about_img_main {
    position: absolute;
    width: 450px;
    height: 650px;
    left: 0;
    top: 0;
}

.zh_about_img_main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zh_about_img_small {
    position: absolute;
    width: 320px;
    height: 350px;
    right: 0;
    top: 50px;
    border: 15px solid #0d0d0d;
    z-index: 2;
}

.zh_about_img_small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zh_about_stats_card {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fe6315;
    padding: 40px;
    display: flex;
    gap: 60px;
    z-index: 3;
}

.zh_about_stat {
    text-align: center;
}

.zh_about_stat h3 {
    font-size: 72px;
    font-weight: bold;
    color: #0d0d0d;
    line-height: 1;
    margin-bottom: 10px;
}

.zh_about_stat p {
    font-size: 18px;
    color: #0d0d0d;
}

.zh_about_title {
    font-size: 80px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 35px;
    color: #ffffff;
}

.zh_about_highlights {
    margin-bottom: 30px;
}

.zh_highlight_item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.zh_highlight_avatars {
    display: flex;
    margin-left: -10px;
}

.zh_avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #d9d9d9;
    border: 3px solid #0d0d0d;
    margin-left: -10px;
}

.zh_highlight_text {
    font-size: 32px;
    font-weight: bold;
    color: #ffffff;
}

.zh_about_desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* ========== (7��:� ========== */
.zh_testimonials {
    background: #0d0d0d;
    position: relative;
}

.zh_testimonials_title {
    font-size: 80px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 80px;
    color: #ffffff;
}

.zh_testimonials_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.zh_testimonial_card {
    background: transparent;
    padding: 0;
    position: relative;
}

.zh_testimonial_quote {
    position: absolute;
    top: -10px;
    right: 0;
    font-size: 60px;
    color: #fe6315;
    opacity: 0.3;
}

.zh_testimonial_text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 40px 0 30px 0;
}

.zh_testimonial_author h4 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 5px;
}

.zh_testimonial_author p {
    font-size: 20px;
    color: #fe6315;
}

.zh_testimonial_rating {
    margin-top: 25px;
    display: flex;
    gap: 8px;
}

.zh_testimonial_rating i {
    color: #fe6315;
    font-size: 24px;
}

.zh_testimonials_more {
    text-align: center;
    margin-top: 60px;
}

.zh_btn_show_more {
    padding: 15px 50px;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    font-size: 24px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.zh_btn_show_more:hover {
    background: #fe6315;
    border-color: #fe6315;
    color: #0d0d0d;
}

/* ========== CTA L��$:� ========== */
.zh_cta {
    background: #0d0d0d;
    padding: 120px 0;
}

.zh_cta_content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.zh_cta_title {
    font-size: 70px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 50px;
    color: #ffffff;
}

.zh_btn_cta {
    display: inline-block;
    padding: 22px 60px;
    background: #fe6315;
    color: #0d0d0d;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    transition: all 0.3s;
}

.zh_btn_cta:hover {
    background: #ff7a3d;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(254, 99, 21, 0.5);
}

/* ========== ͔�� ========== */
@media (max-width: 1200px) {
    .zh_hero_title {
        font-size: 90px;
    }

    .zh_section_title {
        font-size: 60px;
    }

    .zh_products_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .zh_container {
        padding: 0 30px;
    }

    .zh_hero_container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 30px;
    }

    .zh_hero_title {
        font-size: 60px;
    }

    .zh_hero_image {
        order: -1;
    }

    .zh_products_grid {
        grid-template-columns: 1fr;
    }

    .zh_showcase_content,
    .zh_about_content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .zh_testimonials_grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .zh_section_title,
    .zh_showcase_title,
    .zh_about_title,
    .zh_testimonials_title {
        font-size: 48px;
    }

    .zh_cta_title {
        font-size: 42px;
    }
}

@media (max-width: 576px) {
    .zh_hero_title {
        font-size: 42px;
    }

    .zh_section_title {
        font-size: 36px;
    }

    .zh_product_title {
        font-size: 24px;
    }

    .zh_brand_text {
        font-size: 32px;
    }
}
