﻿/*
Theme Name: Zhikj Stage
Theme URI: https://www.zhikj.com/
Author: OpenAI Codex
Description: 鑺濆悍绾?WordPress 娴嬭瘯绔欏熀纭€涓婚
Version: 0.5.0
Text Domain: zhikj-stage
*/

:root{
    --zh-red:#c61b22;
    --zh-dark:#151515;
    --zh-text:#323232;
    --zh-muted:#6c6c6c;
    --zh-line:#ece4da;
    --zh-bg:#f7f3ee;
    --zh-card:#ffffff;
    --zh-warm:#f3e6d8;
    --zh-wrap:1200px;
    --zh-radius:24px;
    --zh-shadow:0 18px 50px rgba(0,0,0,.06);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
    background:var(--zh-bg);
    color:var(--zh-text);
    font:16px/1.75 "PingFang SC","Microsoft YaHei",sans-serif;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%;height:auto}

.zh-wrap{
    width:min(var(--zh-wrap),calc(100% - 32px));
    margin:0 auto;
}

.zh-header{
    position:sticky;
    top:0;
    z-index:30;
    background:rgba(255,255,255,.94);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(0,0,0,.06);
}

.zh-header__bar{
    min-height:86px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

.zh-brand{
    display:flex;
    align-items:center;
    gap:14px;
}

.zh-brand__image{
    width:148px;
    height:auto;
}

.zh-brand__logo{
    width:48px;
    height:48px;
    border-radius:50%;
    background:linear-gradient(135deg,#d62f34,#8f1116);
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:700;
}

.zh-brand__text strong{
    display:block;
    line-height:1.05;
    color:var(--zh-dark);
    font-size:22px;
}

.zh-brand__text span{
    display:block;
    color:var(--zh-muted);
    font-size:13px;
}

.zh-nav{
    display:flex;
    align-items:center;
}

.zh-nav-toggle{
    display:none;
    width:46px;
    height:46px;
    padding:0;
    border:none;
    border-radius:14px;
    background:#f6efe7;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.zh-nav-toggle span{
    display:block;
    width:18px;
    height:2px;
    border-radius:999px;
    background:var(--zh-dark);
    transition:transform .2s ease, opacity .2s ease;
}

.zh-nav-toggle.is-open span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
}

.zh-nav-toggle.is-open span:nth-child(2){
    opacity:0;
}

.zh-nav-toggle.is-open span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
}

.zh-nav__list{
    display:flex;
    align-items:center;
    gap:28px;
    margin:0;
    padding:0;
    list-style:none;
}

.zh-nav__list > li{
    position:relative;
    list-style:none;
}

.zh-nav__list > li > a{
    display:inline-flex;
    align-items:center;
    min-height:86px;
    color:var(--zh-dark);
    font-weight:600;
}

.zh-nav__list > li:hover > a,
.zh-nav__list > li.current-menu-item > a,
.zh-nav__list > li.current_page_item > a,
.zh-nav__list > li.current-menu-ancestor > a{
    color:var(--zh-red);
}

.zh-nav__list .sub-menu{
    position:absolute;
    top:100%;
    left:0;
    min-width:220px;
    margin:0;
    padding:10px 0;
    list-style:none;
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    border-radius:16px;
    box-shadow:0 16px 40px rgba(0,0,0,.08);
    opacity:0;
    visibility:hidden;
    transform:translateY(8px);
    transition:all .18s ease;
}

.zh-nav__list > li:hover > .sub-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.zh-nav__list .sub-menu li{
    list-style:none;
}

.zh-nav__list .sub-menu a{
    display:block;
    padding:10px 18px;
    color:var(--zh-dark);
    font-weight:500;
    white-space:nowrap;
}

.zh-nav__list .sub-menu a:hover{
    background:#faf5ef;
    color:var(--zh-red);
}

.zh-main{padding-bottom:80px}

.zh-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:148px;
    min-height:48px;
    padding:0 24px;
    border-radius:999px;
    background:var(--zh-red);
    border:1px solid transparent;
    color:#fff;
    font-weight:700;
    transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.zh-button:hover{
    transform:translateY(-1px);
    box-shadow:0 10px 24px rgba(198,27,34,.18);
}

.zh-button--ghost{
    background:#fff;
    color:var(--zh-red);
    border-color:rgba(198,27,34,.18);
    box-shadow:none;
}

.zh-home-hero{
    background:linear-gradient(135deg,#f8efe6 0%,#f2e1d2 100%);
    padding:32px 0 18px;
}

.zh-home-hero__eyebrow,
.zh-home-title span,
.zh-home-contact__box span{
    display:block;
    color:var(--zh-red);
    font-size:14px;
    font-weight:700;
    letter-spacing:.08em;
    margin-bottom:10px;
}

.zh-home-hero h1{
    margin:0 0 16px;
    color:var(--zh-dark);
    font-size:clamp(34px,5vw,56px);
    line-height:1.08;
}

.zh-home-hero p{
    margin:0 0 22px;
    max-width:560px;
    color:#555;
    font-size:17px;
}

.zh-home-about__media img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.zh-home-hero__placeholder,
.zh-home-about__placeholder{
    width:100%;
    height:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#6f655d;
    padding:28px;
}

.zh-home-section{padding-top:66px}

.zh-home-title h2{
    margin:0;
    color:var(--zh-dark);
    font-size:clamp(28px,4vw,40px);
    line-height:1.15;
}

.zh-home-title--split{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:18px;
    margin-bottom:22px;
}

.zh-home-title--split > a{
    color:var(--zh-red);
    font-weight:700;
}

.zh-home-services__grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:22px;
}

.zh-home-services__grid--three{
    grid-template-columns:repeat(3,minmax(0,1fr));
}

.zh-home-services__item,
.zh-home-news__col,
.zh-home-product,
.zh-content,
.zh-sidecard{
    background:#fff;
    border:1px solid var(--zh-line);
    border-radius:20px;
    box-shadow:var(--zh-shadow);
}

.zh-home-services__item{
    padding:28px 26px;
}

.zh-home-services__item h3{
    margin:0 0 10px;
    color:var(--zh-dark);
    font-size:22px;
}

.zh-home-services__item p{
    margin:0;
    color:var(--zh-muted);
}

.zh-home-about__grid{
    display:grid;
    grid-template-columns:minmax(0,.94fr) minmax(0,1.06fr);
    gap:32px;
    align-items:center;
}

.zh-home-about__content p{
    margin:16px 0 24px;
    color:#555;
    line-height:1.9;
}

.zh-home-about__media{
    min-height:370px;
    border-radius:26px;
    overflow:hidden;
    background:#ece2d7;
    box-shadow:var(--zh-shadow);
}

.zh-home-about__links{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.zh-home-products{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:24px;
}

.zh-home-product{
    padding:18px 18px 20px;
    box-shadow:none;
    border-radius:24px;
    background:rgba(255,255,255,.88);
}

.zh-home-product__thumb{
    display:block;
    aspect-ratio:4/3;
    overflow:hidden;
    border-radius:18px;
    background:linear-gradient(180deg,#fbf6ef 0%,#f3e8db 100%);
    margin-bottom:16px;
    padding:16px;
}

.zh-home-product__thumb img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.zh-home-product__empty{
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--zh-muted);
}

.zh-home-product h3{
    margin:0 0 8px;
    color:var(--zh-dark);
    font-size:24px;
    line-height:1.35;
}

.zh-home-product p{
    margin:0;
    color:var(--zh-muted);
    font-size:15px;
    line-height:1.8;
}

.zh-home-news__tabs{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-bottom:18px;
}

.zh-home-news__tabs a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:38px;
    padding:0 18px;
    border-radius:999px;
    background:#fff;
    border:1px solid var(--zh-line);
    color:var(--zh-dark);
    font-weight:600;
}

.zh-home-news__grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
}

.zh-home-news__grid--single{
    grid-template-columns:1fr;
}

.zh-home-news__col{padding:24px}

.zh-home-news__col h3{
    margin:0 0 12px;
    color:var(--zh-dark);
    font-size:24px;
}

.zh-home-news__item{
    padding:16px 0;
    border-top:1px solid #f1ebe4;
}

.zh-home-news__item:first-of-type{
    border-top:none;
    padding-top:0;
}

.zh-home-news__item time{
    color:var(--zh-red);
    font-size:13px;
    font-weight:700;
}

.zh-home-news__item h4{
    margin:6px 0 8px;
    color:var(--zh-dark);
    font-size:18px;
    line-height:1.45;
}

.zh-home-news__item p{
    margin:0;
    color:var(--zh-muted);
    font-size:14px;
}

.zh-home-contact__box{
    background:linear-gradient(135deg,#ffffff 0%,#f5ebe0 100%);
    border:1px solid var(--zh-line);
    border-radius:28px;
    box-shadow:var(--zh-shadow);
    padding:32px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
}

.zh-home-contact__box h2{
    margin:0 0 10px;
    color:var(--zh-dark);
    font-size:clamp(26px,4vw,36px);
    line-height:1.2;
}

.zh-home-contact__box p{
    margin:0;
    color:#555;
    max-width:680px;
}

.zh-home-contact__actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    justify-content:flex-end;
}

.zh-list-summary{
    margin-bottom:26px;
    font-size:16px;
    color:#5d544e;
}

.zh-product-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:22px 20px;
}

.zh-product-grid__item{
    padding:18px 18px 22px;
    border:1px solid var(--zh-line);
    border-radius:18px;
    background:#fff;
    text-align:center;
}

.zh-product-grid__figure{
    aspect-ratio:1/1;
    margin:0 0 16px;
    overflow:hidden;
    border-radius:14px;
    background:#f8f3ed;
}

.zh-product-grid__figure img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.zh-product-grid__title{
    margin:0;
    font-size:20px;
    line-height:1.4;
}

.zh-product-grid__separator{
    width:84px;
    height:2px;
    margin:16px auto 0;
    background:#eadbc8;
}

.zh-shop-buttons{
    display:grid;
    gap:12px;
}

.zh-shop-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:46px;
    border-radius:12px;
    color:#fff;
    font-weight:700;
}

.zh-shop-btn--jd{
    background:#c9201f;
}

.zh-shop-btn--tm{
    background:#161616;
}

.zh-sidepost-list{
    margin:0;
    padding:0;
    list-style:none;
    display:grid;
    gap:16px;
}

.zh-sidepost-list li{
    display:grid;
    grid-template-columns:78px 1fr;
    gap:12px;
    align-items:start;
}

.zh-sidepost-thumb{
    display:block;
    width:78px;
    height:78px;
    overflow:hidden;
    border-radius:12px;
    background:#f2ece6;
}

.zh-sidepost-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.zh-sidepost-text a{
    display:block;
    color:var(--zh-dark);
    font-weight:600;
    line-height:1.45;
}

.zh-sidepost-text time{
    display:block;
    margin-top:6px;
    color:var(--zh-muted);
    font-size:13px;
}

.zh-brand-overview{
    display:grid;
    grid-template-columns:minmax(0,1.1fr) minmax(320px,.9fr);
    gap:28px;
    align-items:start;
    margin-bottom:38px;
}

.zh-brand-overview__copy{
    min-width:0;
}

.zh-brand-overview__media{
    overflow:hidden;
    border-radius:20px;
    background:#f3ece4;
}

.zh-brand-overview__media img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.zh-section-block{
    margin-top:36px;
}

.zh-section-title{
    margin-bottom:18px;
}

.zh-section-lead{
    margin:0 0 6px;
    color:var(--zh-red);
    font-weight:700;
    font-size:14px;
}

.zh-section-title h2{
    margin:0;
    font-size:34px;
    line-height:1.2;
    color:var(--zh-dark);
}

.zh-channel-card,
.zh-service-card{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    gap:24px;
    align-items:center;
    padding:24px;
    border:1px solid var(--zh-line);
    border-radius:20px;
    background:#fff;
}

.zh-channel-card__copy p,
.zh-contact-page__content p{
    color:#5d544e;
}

.zh-channel-card__actions{
    display:grid;
    gap:12px;
    min-width:220px;
}

.zh-related-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:20px;
}

.zh-related-item{
    border:1px solid var(--zh-line);
    border-radius:18px;
    background:#fff;
    overflow:hidden;
}

.zh-related-item a{
    display:block;
}

.zh-related-item img{
    width:100%;
    aspect-ratio:16/11;
    object-fit:cover;
}

.zh-related-item span,
.zh-related-item time{
    display:block;
    padding:0 16px;
}

.zh-related-item span{
    padding-top:14px;
    color:var(--zh-dark);
    font-weight:600;
    line-height:1.5;
}

.zh-related-item time{
    padding-top:8px;
    padding-bottom:16px;
    color:var(--zh-muted);
    font-size:13px;
}

.zh-material-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:20px;
}

.zh-material-card{
    overflow:hidden;
    border:1px solid var(--zh-line);
    border-radius:18px;
    background:#fff;
}

.zh-material-card__thumb{
    aspect-ratio:4/3;
    overflow:hidden;
    background:#f7f2eb;
}

.zh-material-card__thumb img{
    width:100%;
    height:100%;
    object-fit:contain;
    padding:18px;
}

.zh-material-card__body{
    padding:18px 18px 20px;
}

.zh-material-card__body h5{
    margin:0 0 8px;
    color:var(--zh-dark);
    font-size:18px;
    line-height:1.45;
}

.zh-material-card__body p{
    margin:0;
    color:var(--zh-muted);
    font-size:14px;
    line-height:1.7;
}

.zh-side-links{
    display:grid;
    gap:14px;
    margin-top:16px;
}

.zh-side-links a{
    display:block;
    padding:14px 16px;
    border-radius:14px;
    background:#faf5ef;
}

.zh-side-links strong,
.zh-side-links span{
    display:block;
}

.zh-side-links strong{
    color:var(--zh-dark);
    margin-bottom:6px;
}

.zh-side-links span{
    color:var(--zh-muted);
    font-size:14px;
    line-height:1.6;
}

.zh-contact-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
    margin-top:22px;
}

.zh-contact-box{
    padding:22px;
    border:1px solid var(--zh-line);
    border-radius:18px;
    background:#fff;
}

.zh-contact-box strong{
    display:block;
    margin-bottom:10px;
    color:var(--zh-dark);
    font-size:22px;
}

.zh-contact-box p{
    margin:0;
    color:#5d544e;
}

.zh-service-card{
    margin-top:24px;
}

.zh-service-card__copy strong{
    display:block;
    color:var(--zh-dark);
    font-size:24px;
}

.zh-service-card__copy p{
    margin:10px 0 12px;
}

.zh-service-card__wechat{
    color:var(--zh-red);
    font-weight:700;
}

.zh-service-card__qrcode{
    width:220px;
    padding:12px;
    border-radius:18px;
    background:#faf5ef;
}

.zh-service-card__qrcode img{
    width:100%;
    height:auto;
}

.zh-home-empty{
    background:#fff;
    border:1px dashed #d8cec0;
    border-radius:18px;
    padding:26px;
    color:var(--zh-muted);
}

.zh-page{
    display:grid;
    grid-template-columns:minmax(0,1fr) 320px;
    gap:28px;
    padding-top:28px;
}

.zh-breadcrumb{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:20px;
    color:var(--zh-muted);
    font-size:14px;
}

.zh-breadcrumb a{
    color:inherit;
}

.zh-product-page{
    padding-top:28px;
    padding-bottom:28px;
}

.zh-product-single{
    display:grid;
    gap:28px;
}

.zh-product-hero{
    display:grid;
    grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);
    gap:28px;
    padding:28px;
    border:1px solid var(--zh-line);
    border-radius:28px;
    background:linear-gradient(135deg,#fffaf4 0%,#f8f0e5 100%);
}

.zh-product-hero__media,
.zh-product-hero__content{
    min-width:0;
}

.zh-product-hero__cover{
    overflow:hidden;
    border-radius:24px;
    background:#fff;
    border:1px solid rgba(131,91,50,.12);
    box-shadow:0 26px 60px rgba(85,54,27,.08);
}

.zh-product-hero__cover img{
    display:block;
    width:100%;
    height:auto;
}

.zh-product-hero__thumbs{
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:12px;
    margin-top:14px;
}

.zh-product-hero__thumb{
    display:block;
    overflow:hidden;
    border-radius:16px;
    background:#fff;
    border:1px solid rgba(131,91,50,.1);
    aspect-ratio:1/1;
    box-shadow:0 10px 24px rgba(85,54,27,.05);
}

.zh-product-hero__thumb.is-active{
    border-color:rgba(173,35,35,.26);
    box-shadow:0 16px 28px rgba(140,35,26,.1);
}

.zh-product-hero__thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.zh-product-hero__eyebrow{
    margin:0 0 10px;
    color:var(--zh-red);
    font-size:13px;
    font-weight:700;
    letter-spacing:.08em;
}

.zh-product-hero__subtitle{
    margin:0 0 14px;
    color:var(--zh-dark);
    font-size:22px;
    font-weight:700;
    line-height:1.5;
}

.zh-product-hero__summary{
    margin:0;
    color:#5b534b;
    font-size:16px;
    line-height:1.9;
}

.zh-product-hero__points{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:22px;
}

.zh-product-hero__points span{
    display:inline-flex;
    align-items:center;
    min-height:42px;
    padding:0 16px;
    border-radius:999px;
    background:#fff;
    border:1px solid rgba(131,91,50,.12);
    color:#6a6057;
    font-size:14px;
}

.zh-product-hero__actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:24px;
}

.zh-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:50px;
    padding:0 28px;
    border-radius:999px;
    border:1px solid transparent;
    font-weight:700;
}

.zh-button--primary{
    background:var(--zh-red);
    color:#fff;
}

.zh-button--ghost{
    background:#fff;
    border-color:rgba(173,35,35,.24);
    color:var(--zh-red);
}

.zh-product-hero__note{
    margin-top:24px;
    padding:18px 20px;
    border-radius:20px;
    background:rgba(255,255,255,.76);
    border:1px solid rgba(131,91,50,.1);
}

.zh-product-hero__note strong{
    display:block;
    margin-bottom:8px;
    color:var(--zh-dark);
    font-size:16px;
}

.zh-product-hero__note p{
    margin:0;
    color:#6b625b;
    font-size:14px;
    line-height:1.8;
}

.zh-product-overview{
    display:grid;
    grid-template-columns:minmax(0,1fr) 360px;
    gap:24px;
}

.zh-product-overview__main,
.zh-product-overview__card{
    padding:26px 28px;
    border:1px solid var(--zh-line);
    border-radius:24px;
    background:#fff;
}

.zh-product-overview__main h2,
.zh-product-overview__card h3{
    margin:0 0 14px;
    color:var(--zh-dark);
}

.zh-product-overview__main p{
    margin:0;
    color:#5b534b;
    line-height:1.9;
}

.zh-product-channel-list{
    margin:0;
    padding:0;
    list-style:none;
    display:grid;
    gap:12px;
}

.zh-product-channel-list li{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:14px 16px;
    border-radius:16px;
    background:#faf5ef;
}

.zh-product-channel-list span{
    color:var(--zh-dark);
    font-weight:700;
}

.zh-product-channel-list a{
    color:var(--zh-red);
}

.zh-product-service{
    display:flex;
    align-items:center;
    gap:16px;
    margin-top:18px;
    padding-top:18px;
    border-top:1px solid rgba(131,91,50,.1);
}

.zh-product-service img{
    width:88px;
    height:88px;
    border-radius:14px;
    background:#fff;
    padding:6px;
    border:1px solid rgba(131,91,50,.1);
}

.zh-product-service strong,
.zh-product-service span{
    display:block;
}

.zh-product-service strong{
    color:var(--zh-dark);
    margin-bottom:6px;
}

.zh-product-service span{
    color:var(--zh-muted);
    font-size:14px;
}

.zh-product-detail-section,
.zh-product-related{
    padding:28px;
    border:1px solid var(--zh-line);
    border-radius:28px;
    background:#fff;
}

.zh-section-heading{
    margin-bottom:22px;
}

.zh-section-heading p{
    margin:0 0 6px;
    color:var(--zh-red);
    font-size:13px;
    font-weight:700;
    letter-spacing:.08em;
}

.zh-section-heading h2{
    margin:0;
    color:var(--zh-dark);
    font-size:32px;
    line-height:1.2;
}

.zh-product-detail-content{
    color:#564e48;
    line-height:1.9;
}

.zh-product-detail-content h3{
    margin:0 0 12px;
    color:var(--zh-dark);
    font-size:24px;
}

.zh-product-detail-content p{
    margin:0 0 16px;
}

.zh-product-detail-content img{
    display:block;
    width:100%;
    height:auto;
    border-radius:22px;
    margin:0 0 18px;
    background:#fffaf4;
    border:1px solid rgba(131,91,50,.1);
}

.zh-product-detail-layout{
    display:grid;
    grid-template-columns:minmax(0,820px) 340px;
    justify-content:space-between;
    align-items:start;
    gap:28px;
}

.zh-product-detail-main,
.zh-product-detail-aside{
    min-width:0;
}

.zh-product-detail-aside{
    display:grid;
    gap:18px;
}

.zh-detail-sidecard{
    position:sticky;
    top:104px;
    padding:22px;
    border-radius:24px;
    border:1px solid rgba(131,91,50,.1);
    background:#fffaf4;
}

.zh-detail-sidecard + .zh-detail-sidecard{
    top:338px;
}

.zh-detail-sidecard__heading{
    margin-bottom:16px;
}

.zh-detail-sidecard__heading p{
    margin:0 0 6px;
    color:var(--zh-red);
    font-size:12px;
    font-weight:700;
    letter-spacing:.08em;
}

.zh-detail-sidecard__heading h3{
    margin:0;
    color:var(--zh-dark);
    font-size:24px;
    line-height:1.3;
}

.zh-detail-knowledge-list{
    display:grid;
    gap:14px;
}

.zh-detail-knowledge-card{
    display:grid;
    gap:8px;
    padding:16px 16px 18px;
    border-radius:18px;
    background:#fff;
    border:1px solid rgba(131,91,50,.1);
    transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.zh-detail-knowledge-card:hover{
    transform:translateY(-2px);
    border-color:rgba(173,35,35,.18);
    box-shadow:0 16px 30px rgba(82,54,25,.08);
}

.zh-detail-knowledge-card strong{
    color:var(--zh-dark);
    font-size:16px;
    line-height:1.6;
}

.zh-detail-knowledge-card span{
    color:#6b625b;
    font-size:14px;
    line-height:1.8;
}

.zh-detail-faq-list{
    margin:0;
    padding-left:18px;
    display:grid;
    gap:12px;
}

.zh-detail-faq-list li,
.zh-detail-faq-list a{
    color:#5d554e;
    line-height:1.8;
}

.zh-detail-sidecard__note{
    margin:14px 0 0;
    color:var(--zh-muted);
    font-size:13px;
    line-height:1.8;
}

.zh-product-detail-content .z-detail-images{
    display:grid;
    gap:20px;
}

.zh-product-detail-content .z-detail-images p{
    margin:0;
    padding:18px;
    border-radius:24px;
    background:#fffaf4;
    border:1px solid rgba(131,91,50,.1);
    box-shadow:0 14px 32px rgba(92,58,28,.05);
}

.zh-product-detail-content .z-detail-images p img{
    margin:0;
    border:none;
    background:transparent;
    box-shadow:none;
}

.zh-product-related__grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:18px;
}

.zh-product-related__card{
    display:grid;
    gap:12px;
    padding:16px;
    border-radius:20px;
    border:1px solid rgba(131,91,50,.1);
    background:#fffaf4;
    transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.zh-product-related__card:hover{
    transform:translateY(-2px);
    box-shadow:0 18px 36px rgba(82,54,25,.08);
    border-color:rgba(173,35,35,.18);
}

.zh-product-related__thumb{
    display:block;
    overflow:hidden;
    border-radius:16px;
    background:#fff;
    aspect-ratio:4/3;
}

.zh-product-related__thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.zh-product-related__title{
    color:var(--zh-dark);
    font-size:16px;
    font-weight:700;
    line-height:1.6;
}

.zh-listing-page{
    padding-top:28px;
    padding-bottom:28px;
}

.zh-listing-hero{
    padding:30px 34px;
    border-radius:28px;
    background:linear-gradient(135deg,#f9f3eb 0%,#f4e7d8 100%);
    border:1px solid rgba(131,91,50,.08);
    box-shadow:var(--zh-shadow);
}

.zh-listing-hero__main{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:28px;
}

.zh-listing-hero__eyebrow{
    margin:0 0 10px;
    color:var(--zh-red);
    font-size:13px;
    font-weight:700;
    letter-spacing:.08em;
}

.zh-listing-hero h1{
    margin:0;
    color:var(--zh-dark);
    font-size:clamp(34px,4vw,48px);
    line-height:1.15;
}

.zh-listing-hero__desc{
    max-width:760px;
    margin:16px 0 0;
    color:#5f5750;
    font-size:16px;
    line-height:1.9;
}

.zh-listing-hero__meta{
    min-width:120px;
    padding:18px 20px;
    border-radius:22px;
    background:rgba(255,255,255,.72);
    text-align:center;
}

.zh-listing-hero__meta strong,
.zh-listing-hero__meta span{
    display:block;
}

.zh-listing-hero__meta strong{
    color:var(--zh-dark);
    font-size:34px;
    line-height:1;
}

.zh-listing-hero__meta span{
    margin-top:6px;
    color:var(--zh-muted);
    font-size:14px;
}

.zh-listing-hero__topics{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:22px;
}

.zh-listing-hero__topics span{
    display:inline-flex;
    align-items:center;
    min-height:40px;
    padding:0 16px;
    border-radius:999px;
    background:#fff;
    border:1px solid rgba(131,91,50,.12);
    color:#655c55;
    font-size:14px;
}

.zh-listing-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) 320px;
    gap:28px;
    align-items:start;
    margin-top:24px;
}

.zh-listing-main{
    min-width:0;
}

.zh-listing-sidebar{
    display:grid;
    gap:18px;
}

.zh-listing-sidecard{
    padding:22px;
}

.zh-listing-sidecard__heading{
    margin-bottom:16px;
}

.zh-listing-sidecard__heading p{
    margin:0 0 6px;
    color:var(--zh-red);
    font-size:12px;
    font-weight:700;
    letter-spacing:.08em;
}

.zh-listing-sidecard__heading h3{
    margin:0;
    color:var(--zh-dark);
    font-size:24px;
    line-height:1.3;
}

.zh-listing-sidecard__link{
    display:inline-flex;
    margin-top:14px;
    color:var(--zh-red);
    font-weight:700;
}

.zh-list-row{
    display:grid;
    grid-template-columns:240px minmax(0,1fr);
    gap:22px;
    padding:24px 0;
    border-bottom:1px solid rgba(131,91,50,.12);
}

.zh-list-row:first-child{
    padding-top:0;
}

.zh-list-row__thumb{
    display:block;
    overflow:hidden;
    border-radius:20px;
    background:#faf5ef;
    aspect-ratio:16/11;
}

.zh-list-row__thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.zh-list-row__body{
    min-width:0;
    display:flex;
    flex-direction:column;
}

.zh-list-row__meta{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:12px;
}

.zh-list-row__tag{
    display:inline-flex;
    align-items:center;
    min-height:30px;
    padding:0 12px;
    border-radius:999px;
    background:#fdf3f1;
    color:var(--zh-red);
    font-size:13px;
    font-weight:700;
}

.zh-list-row__meta time{
    color:var(--zh-muted);
    font-size:14px;
}

.zh-list-row h2{
    margin:0;
    color:var(--zh-dark);
    font-size:26px;
    line-height:1.45;
}

.zh-list-row h2 a:hover{
    color:var(--zh-red);
}

.zh-list-row h2 a{
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.zh-list-row p{
    margin:12px 0 0;
    color:#645b54;
    font-size:15px;
    line-height:1.95;
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.zh-list-row__more{
    display:inline-flex;
    align-items:center;
    margin-top:16px;
    color:var(--zh-red);
    font-weight:700;
}

.zh-listing-product-list,
.zh-listing-sidepost-list{
    display:grid;
    gap:14px;
}

.zh-listing-product-card{
    display:grid;
    grid-template-columns:88px minmax(0,1fr);
    gap:14px;
    align-items:center;
    padding:12px;
    border-radius:18px;
    background:#faf5ef;
}

.zh-listing-product-card__thumb{
    display:block;
    overflow:hidden;
    border-radius:14px;
    aspect-ratio:1/1;
    background:#fff;
}

.zh-listing-product-card__thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.zh-listing-product-card__body strong,
.zh-listing-product-card__body span{
    display:block;
}

.zh-listing-product-card__body strong{
    color:var(--zh-dark);
    line-height:1.6;
}

.zh-listing-product-card__body span{
    margin-top:6px;
    color:var(--zh-muted);
    font-size:13px;
}

.zh-listing-brand-card__thumb{
    display:block;
    overflow:hidden;
    border-radius:18px;
    background:#f6efe7;
}

.zh-listing-brand-card__thumb img{
    width:100%;
    aspect-ratio:16/10;
    object-fit:cover;
}

.zh-listing-brand-card__desc{
    margin:14px 0 0;
    color:#645b54;
    font-size:14px;
    line-height:1.85;
    display:-webkit-box;
    -webkit-line-clamp:4;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.zh-listing-brand-card__links{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:16px;
}

.zh-listing-brand-card__links a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:42px;
    padding:0 16px;
    border-radius:14px;
    background:#faf5ef;
    color:var(--zh-dark);
    font-weight:600;
}

.zh-listing-brand-card__service{
    display:grid;
    grid-template-columns:88px minmax(0,1fr);
    gap:14px;
    align-items:center;
    margin-top:16px;
    padding-top:16px;
    border-top:1px solid rgba(131,91,50,.1);
}

.zh-listing-brand-card__service img{
    width:88px;
    height:88px;
    border-radius:14px;
    background:#fff;
    padding:6px;
    border:1px solid rgba(131,91,50,.1);
}

.zh-listing-brand-card__service strong,
.zh-listing-brand-card__service span{
    display:block;
}

.zh-listing-brand-card__service strong{
    color:var(--zh-dark);
    line-height:1.5;
    font-size:15px;
}

.zh-listing-brand-card__service span{
    margin-top:4px;
    color:var(--zh-muted);
    font-size:13px;
}

.zh-listing-brand-card__shoplinks{
    display:flex;
    flex-wrap:wrap;
    gap:8px 12px;
    margin-top:8px;
}

.zh-listing-brand-card__shoplinks a{
    color:var(--zh-red);
    font-size:13px;
    font-weight:700;
}

.zh-listing-sidepost{
    display:block;
    padding:14px 0;
    border-top:1px solid rgba(131,91,50,.1);
}

.zh-listing-sidepost:first-child{
    padding-top:0;
    border-top:none;
}

.zh-listing-sidepost strong,
.zh-listing-sidepost span{
    display:block;
}

.zh-listing-sidepost strong{
    color:var(--zh-dark);
    line-height:1.65;
}

.zh-listing-sidepost span{
    margin-top:6px;
    color:var(--zh-muted);
    font-size:13px;
}

.zh-pagination{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    justify-content:center;
    margin-top:28px;
}

.zh-pagination .page-numbers{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:44px;
    height:44px;
    padding:0 14px;
    border-radius:999px;
    background:#fff;
    border:1px solid rgba(131,91,50,.12);
    color:#5f5750;
}

.zh-pagination .page-numbers.current{
    background:var(--zh-red);
    color:#fff;
    border-color:var(--zh-red);
}

.zh-content{padding:30px}

.zh-article-header{
    padding:26px 28px 24px;
    border-radius:24px;
    background:#fff;
    border:1px solid rgba(131,91,50,.08);
    box-shadow:0 14px 32px rgba(82,54,25,.05);
}

.zh-article-header__eyebrow{
    margin:0 0 10px;
    color:var(--zh-red);
    font-size:13px;
    font-weight:700;
    letter-spacing:.08em;
}

.zh-article-header h1{
    margin:0;
    color:var(--zh-dark);
    font-size:clamp(26px,3vw,36px);
    line-height:1.32;
}

.zh-article-header__meta{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:14px;
}

.zh-article-header__meta > span{
    display:inline-flex;
    align-items:center;
    min-height:34px;
    padding:0 14px;
    border-radius:999px;
    background:#faf5ef;
    color:#645b54;
    font-size:14px;
}

.zh-article-header__meta .zh-article-tags{
    margin-top:0;
}

.zh-article-tags{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:8px;
    margin-top:12px;
}

.zh-article-tags span{
    color:#8a7a70;
    font-size:14px;
}

.zh-article-tags a{
    display:inline-flex;
    align-items:center;
    min-height:30px;
    padding:0 12px;
    border-radius:999px;
    background:#fff5f0;
    border:1px solid rgba(194,24,30,.14);
    color:var(--zh-red);
    font-size:14px;
    font-weight:700;
}

.zh-article-tags a:hover{
    background:var(--zh-red);
    color:#fff;
}

.zh-article-header__intro{
    margin:18px 0 0;
    color:#5e5550;
    font-size:16px;
    line-height:1.9;
}

.zh-article-cover,
.zh-article-guide,
.zh-article-content,
.zh-article-product-card,
.zh-article-sidecard{
    padding:24px 26px;
    border-radius:24px;
    background:#fff;
    border:1px solid rgba(131,91,50,.08);
    box-shadow:0 14px 32px rgba(82,54,25,.05);
}

.zh-article-main{
    display:grid;
    gap:22px;
}

.zh-article-cover img{
    width:100%;
    height:auto;
    border-radius:20px;
}

.zh-article-guide ul{
    margin:0;
    padding-left:18px;
    display:grid;
    gap:8px;
    color:#5f5750;
}

.zh-article-content__body{
    color:#564e48;
    line-height:1.92;
}

.zh-article-content__body h2,
.zh-article-content__body h3{
    color:var(--zh-dark);
    line-height:1.45;
}

.zh-article-content__body img{
    width:100%;
    height:auto;
    border-radius:20px;
    margin:14px 0 18px;
}

.zh-article-product-card__item--compact{
    grid-template-columns:108px minmax(0,1fr);
    gap:16px;
}

.zh-article-product-card__thumb--small{
    aspect-ratio:1/1;
}

.zh-article-product-card__item--compact .zh-article-product-card__body span{
    display:none;
}

.zh-article-sidebar{
    display:grid;
    gap:18px;
}

.zh-article-menu-list{
    display:grid;
    gap:12px;
}

.zh-article-menu-item{
    display:block;
    padding:14px 0;
    border-top:1px solid rgba(131,91,50,.1);
}

.zh-article-menu-item:first-child{
    padding-top:0;
    border-top:none;
}

.zh-article-menu-item--product{
    display:grid;
    grid-template-columns:72px minmax(0,1fr);
    gap:12px;
    align-items:center;
}

.zh-article-menu-item__thumb{
    display:block;
    overflow:hidden;
    border-radius:14px;
    background:#faf5ef;
    aspect-ratio:1/1;
}

.zh-article-menu-item__thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.zh-article-menu-item__title{
    display:block;
    color:var(--zh-dark);
    line-height:1.65;
    font-weight:600;
}

.zh-article-page{
    padding-top:28px;
    padding-bottom:28px;
}

.zh-article-hero{
    display:grid;
    grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr);
    gap:28px;
    padding:28px;
    border-radius:28px;
    background:linear-gradient(135deg,#fffaf4 0%,#f6eadb 100%);
    border:1px solid rgba(131,91,50,.08);
    box-shadow:var(--zh-shadow);
}

.zh-article-hero__copy,
.zh-article-hero__media{
    min-width:0;
}

.zh-article-hero__eyebrow{
    margin:0 0 10px;
    color:var(--zh-red);
    font-size:13px;
    font-weight:700;
    letter-spacing:.08em;
}

.zh-article-hero h1{
    margin:0;
    color:var(--zh-dark);
    font-size:clamp(30px,4vw,44px);
    line-height:1.28;
}

.zh-article-hero__meta{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:16px;
}

.zh-article-hero__meta span{
    display:inline-flex;
    align-items:center;
    min-height:34px;
    padding:0 14px;
    border-radius:999px;
    background:rgba(255,255,255,.8);
    color:#645b54;
    font-size:14px;
}

.zh-article-hero__intro{
    margin:18px 0 0;
    color:#5e5550;
    font-size:16px;
    line-height:1.9;
}

.zh-article-hero__points{
    margin-top:20px;
    padding:18px 20px;
    border-radius:22px;
    background:rgba(255,255,255,.78);
    border:1px solid rgba(131,91,50,.08);
}

.zh-article-hero__points strong{
    display:block;
    margin-bottom:10px;
    color:var(--zh-dark);
    font-size:16px;
}

.zh-article-hero__points ul{
    margin:0;
    padding-left:18px;
    color:#5f5750;
    display:grid;
    gap:8px;
}

.zh-article-hero__media{
    overflow:hidden;
    border-radius:24px;
    background:#fff;
    border:1px solid rgba(131,91,50,.08);
}

.zh-article-hero__media img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.zh-article-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) 320px;
    gap:28px;
    align-items:start;
    margin-top:26px;
}

.zh-article-main,
.zh-article-sidebar{
    min-width:0;
}

.zh-article-sidebar{
    display:grid;
    gap:18px;
}

.zh-article-summary,
.zh-article-content,
.zh-article-product-card,
.zh-article-related,
.zh-article-sidecard{
    padding:26px 28px;
    border-radius:24px;
    background:#fff;
    border:1px solid rgba(131,91,50,.08);
    box-shadow:0 14px 32px rgba(82,54,25,.05);
}

.zh-article-main{
    display:grid;
    gap:22px;
}

.zh-article-content__body{
    color:#564e48;
    line-height:1.92;
}

.zh-article-content__body h2,
.zh-article-content__body h3{
    color:var(--zh-dark);
    line-height:1.45;
}

.zh-article-content__body img{
    width:100%;
    height:auto;
    border-radius:20px;
    margin:14px 0 18px;
}

.zh-article-product-card__grid,
.zh-article-related__grid{
    display:grid;
    gap:16px;
}

.zh-article-product-card__item{
    display:grid;
    grid-template-columns:170px minmax(0,1fr);
    gap:18px;
    align-items:center;
    padding:16px;
    border-radius:20px;
    background:#faf5ef;
}

.zh-article-product-card__thumb{
    display:block;
    overflow:hidden;
    border-radius:16px;
    background:#fff;
    aspect-ratio:4/3;
}

.zh-article-product-card__thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.zh-article-product-card__body strong,
.zh-article-product-card__body span,
.zh-article-product-card__body em{
    display:block;
}

.zh-article-product-card__body strong{
    color:var(--zh-dark);
    font-size:18px;
    line-height:1.6;
}

.zh-article-product-card__body span{
    margin-top:8px;
    color:#655c55;
    line-height:1.8;
}

.zh-article-product-card__body em{
    margin-top:10px;
    color:var(--zh-red);
    font-style:normal;
    font-weight:700;
}

.zh-article-related__grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
}

.zh-article-related__item{
    display:block;
    padding:18px;
    border-radius:18px;
    background:#faf5ef;
}

.zh-article-related__item strong,
.zh-article-related__item span{
    display:block;
}

.zh-article-related__item strong{
    color:var(--zh-dark);
    line-height:1.65;
}

.zh-article-related__item span{
    margin-top:8px;
    color:#655c55;
    line-height:1.8;
    font-size:14px;
}

.zh-article-sidecard__heading{
    margin-bottom:14px;
}

.zh-article-sidecard__heading p{
    margin:0 0 6px;
    color:var(--zh-red);
    font-size:12px;
    font-weight:700;
    letter-spacing:.08em;
}

.zh-article-sidecard__heading h3{
    margin:0;
    color:var(--zh-dark);
    font-size:24px;
}

.zh-article-sidecard__desc{
    margin:0;
    color:#645b54;
    line-height:1.85;
}

.zh-content h1{
    margin:0 0 16px;
    color:var(--zh-dark);
    font-size:clamp(28px,4vw,40px);
    line-height:1.2;
}

.zh-content p{margin:0 0 16px}

.zh-content-cover{
    margin:18px 0 22px;
    border-radius:18px;
    overflow:hidden;
}

.zh-content-cover img{
    width:100%;
    height:auto;
}

.zh-meta{
    color:var(--zh-red);
    font-size:13px;
    font-weight:700;
    margin-bottom:12px;
}

.zh-meta-box{
    margin:0 0 18px;
    padding:16px 18px;
    border-radius:16px;
    background:#faf5ef;
    color:#5a514b;
}

.zh-meta-box p{
    margin:8px 0 0;
}

.zh-article-list-item{
    padding:18px 0;
    border-top:1px solid #eee;
}

.zh-article-list-item:first-of-type{
    border-top:none;
    padding-top:0;
}

.zh-article-list-item h2{
    margin:0 0 8px;
    font-size:24px;
}

.zh-article-list-item__excerpt{
    margin-top:10px;
}

.zh-sidebar{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.zh-sidecard{padding:20px}

.zh-sidecard h3{margin:0 0 12px}

.zh-sidecard ul{
    margin:0;
    padding-left:18px;
}

.zh-footer{
    padding:28px 0 40px;
    color:var(--zh-muted);
    border-top:1px solid rgba(0,0,0,.05);
    margin-top:44px;
}

@media (max-width:1100px){
    .zh-home-services__grid,
    .zh-home-products,
    .zh-product-grid,
    .zh-product-related__grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .zh-listing-layout{
        grid-template-columns:minmax(0,1fr) 300px;
    }

    .zh-list-row{
        grid-template-columns:220px minmax(0,1fr);
    }
}

@media (max-width:991px){
    .zh-header__bar{
        min-height:auto;
        align-items:center;
        justify-content:space-between;
        flex-wrap:wrap;
        padding:14px 0;
    }

    .zh-nav-toggle{
        display:inline-flex;
    }

    .zh-nav{
        display:none;
        width:100%;
        margin-top:14px;
        padding:14px 16px 10px;
        border-radius:22px;
        background:#fff;
        border:1px solid rgba(0,0,0,.06);
        box-shadow:0 18px 40px rgba(0,0,0,.08);
    }

    .zh-nav.is-open{
        display:block;
    }

    .zh-nav__list{
        width:100%;
        flex-direction:column;
        align-items:flex-start;
        gap:8px;
    }

    .zh-nav__list > li{
        width:100%;
    }

    .zh-nav__list > li > a{
        min-height:auto;
        width:100%;
        padding:8px 0;
    }

    .zh-nav__list .sub-menu{
        position:static;
        opacity:1;
        visibility:visible;
        transform:none;
        min-width:auto;
        margin-top:4px;
        padding:6px 0 0 12px;
        border:none;
        box-shadow:none;
        background:transparent;
        display:grid;
        gap:2px;
    }

    .zh-home-hero__inner,
    .zh-home-about__grid,
    .zh-home-news__grid,
    .zh-page,
    .zh-article-hero,
    .zh-article-layout,
    .zh-product-hero,
    .zh-product-overview,
    .zh-product-detail-layout,
    .zh-listing-hero__main,
    .zh-home-contact__box,
    .zh-brand-overview,
    .zh-channel-card,
    .zh-service-card{
        grid-template-columns:1fr;
        flex-direction:column;
        align-items:flex-start;
    }

    .zh-home-hero__visual{
        min-height:380px;
    }

    .zh-home-contact__actions{
        justify-content:flex-start;
    }

    .zh-related-grid,
    .zh-contact-grid,
    .zh-material-grid,
    .zh-product-related__grid,
    .zh-article-related__grid{
        grid-template-columns:1fr;
    }

    .zh-channel-card__actions{
        min-width:0;
        width:100%;
    }

    .zh-listing-layout{
        grid-template-columns:1fr;
    }

    .zh-listing-sidebar{
        grid-template-columns:1fr;
    }

    .zh-list-row{
        grid-template-columns:1fr;
    }
}

@media (max-width:640px){
    .zh-wrap{
        width:min(var(--zh-wrap),calc(100% - 24px));
    }

    .zh-home-services__grid,
    .zh-home-products,
    .zh-product-grid,
    .zh-product-related__grid{
        grid-template-columns:1fr;
    }

    .zh-home-hero{
        padding:40px 0 32px;
    }

    .zh-home-hero__feature-copy{
        left:16px;
        right:16px;
        bottom:16px;
        max-width:none;
        padding:20px 18px;
    }

    .zh-home-hero h1{
        font-size:34px;
    }

    .zh-home-news__col,
    .zh-home-services__item,
    .zh-home-contact__box,
    .zh-content,
    .zh-article-summary,
    .zh-article-content,
    .zh-article-product-card,
    .zh-article-related,
    .zh-article-sidecard,
    .zh-sidecard,
    .zh-product-hero,
    .zh-product-detail-section,
    .zh-product-related,
    .zh-product-overview__main,
    .zh-product-overview__card,
    .zh-listing-hero,
    .zh-listing-sidecard{
        padding:20px;
    }

    .zh-brand__image{
        width:108px;
    }

    .zh-brand{
        gap:10px;
    }

    .zh-brand__text strong{
        font-size:18px;
    }

    .zh-brand__text span{
        font-size:12px;
    }

    .zh-sidepost-list li{
        grid-template-columns:64px 1fr;
    }

    .zh-sidepost-thumb{
        width:64px;
        height:64px;
    }

    .zh-service-card__qrcode{
        width:100%;
    }

    .zh-product-page{
        padding-top:20px;
    }

    .zh-listing-page{
        padding-top:20px;
    }

    .zh-listing-hero__meta{
        min-width:0;
        width:100%;
        text-align:left;
    }

    .zh-list-row__thumb{
        aspect-ratio:16/10;
    }

    .zh-list-row h2{
        font-size:24px;
    }

    .zh-article-hero h1{
        font-size:28px;
    }

    .zh-article-product-card__item{
        grid-template-columns:1fr;
    }

    .zh-list-row p{
        -webkit-line-clamp:4;
    }

    .zh-listing-brand-card__service,
    .zh-listing-product-card{
        grid-template-columns:72px minmax(0,1fr);
    }

    .zh-detail-sidecard,
    .zh-detail-sidecard + .zh-detail-sidecard{
        position:static;
    }

    .zh-product-hero__actions{
        flex-direction:column;
        align-items:stretch;
    }

    .zh-product-hero__thumbs{
        grid-template-columns:repeat(3,minmax(0,1fr));
    }

    .zh-button{
        width:100%;
    }

    .zh-section-heading h2{
        font-size:28px;
    }
}

.zh-home-slider{
    position:relative;
    border-radius:34px;
    overflow:hidden;
    background:#eadfd4;
    box-shadow:var(--zh-shadow);
}

.zh-home-slider__track{
    position:relative;
    min-height:620px;
}

.zh-home-slide{
    position:absolute;
    inset:0;
    opacity:0;
    visibility:hidden;
    transition:opacity .5s ease, visibility .5s ease;
}

.zh-home-slide.is-active{
    opacity:1;
    visibility:visible;
}

.zh-home-slide__media,
.zh-home-slide__media img{
    width:100%;
    height:100%;
}

.zh-home-slide__media img{
    object-fit:cover;
}

.zh-home-slide__overlay{
    position:absolute;
    left:52px;
    bottom:42px;
    max-width:400px;
    padding:24px 28px;
    border-radius:28px;
    background:linear-gradient(180deg,rgba(28,20,14,.18) 0%,rgba(28,20,14,.34) 100%);
    backdrop-filter:blur(6px);
    color:#fff;
}

.zh-home-slide__overlay span{
    display:block;
    margin-bottom:12px;
    color:rgba(255,255,255,.86);
    font-size:14px;
    font-weight:700;
    letter-spacing:.08em;
}

.zh-home-slide__overlay h1{
    margin:0 0 14px;
    color:#fff;
    font-size:48px;
    line-height:1.05;
}

.zh-home-slide__overlay p{
    margin:0 0 18px;
    color:rgba(255,255,255,.86);
    font-size:16px;
    line-height:1.8;
}

.zh-home-slider__dots{
    position:absolute;
    right:24px;
    bottom:20px;
    display:flex;
    gap:10px;
    z-index:4;
}

.zh-home-slider__dot{
    width:11px;
    height:11px;
    border:none;
    border-radius:999px;
    background:rgba(255,255,255,.55);
    cursor:pointer;
}

.zh-home-slider__dot.is-active{
    width:28px;
    background:var(--zh-red);
}

.zh-home-about{
    padding-top:34px;
}

.zh-home-news-list{
    display:grid;
    gap:18px;
}

.zh-home-news-row{
    display:grid;
    grid-template-columns:260px minmax(0,1fr);
    gap:22px;
    align-items:start;
    padding:0 0 18px;
    border-bottom:1px solid #e8ddd1;
}

.zh-home-news-row:last-child{
    border-bottom:none;
    padding-bottom:0;
}

.zh-home-news-row__thumb{
    display:block;
    height:170px;
    border-radius:18px;
    overflow:hidden;
    background:#f1e6da;
}

.zh-home-news-row__thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.zh-home-news-row__body time{
    color:var(--zh-red);
    font-size:13px;
    font-weight:700;
}

.zh-home-news-row__body h3{
    margin:8px 0 10px;
    color:var(--zh-dark);
    font-size:26px;
    line-height:1.35;
}

.zh-home-news-row__body p{
    margin:0;
    color:var(--zh-muted);
    line-height:1.85;
}

.zh-footer{
    margin-top:60px;
    padding:54px 0 26px;
    background:#1e1f21;
    color:rgba(255,255,255,.72);
    border-top:none;
}

.zh-footer__grid{
    display:grid;
    grid-template-columns:minmax(0,1.4fr) repeat(2,minmax(0,.9fr)) minmax(0,1fr);
    gap:28px;
    align-items:flex-start;
}

.zh-footer__brand img{
    width:150px;
    height:auto;
    margin-bottom:16px;
}

.zh-footer__brand p,
.zh-footer__col li,
.zh-footer__service p{
    color:rgba(255,255,255,.72);
    line-height:1.9;
}

.zh-footer__col h3,
.zh-footer__service h3{
    margin:0 0 16px;
    color:#fff;
    font-size:20px;
}

.zh-footer__col ul{
    margin:0;
    padding:0;
    list-style:none;
    display:grid;
    gap:10px;
}

.zh-footer__col a{
    color:rgba(255,255,255,.78);
}

.zh-footer__service strong{
    display:block;
    margin:10px 0 14px;
    color:#fff;
    font-size:18px;
}

.zh-footer__service img{
    width:132px;
    height:132px;
    border-radius:18px;
    background:#fff;
    padding:8px;
}

.zh-footer__bottom{
    margin-top:34px;
    padding-top:18px;
    border-top:1px solid rgba(255,255,255,.08);
    display:flex;
    justify-content:space-between;
    gap:16px;
    flex-wrap:wrap;
    font-size:14px;
}

.zh-floatbar{
    position:fixed;
    right:14px;
    bottom:96px;
    z-index:60;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.zh-floatbar__contact-wrap{
    position:relative;
}

.zh-floatbar__item{
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    width:58px;
    min-height:58px;
    padding:8px 6px;
    border:none;
    border-radius:14px;
    background:linear-gradient(180deg,#b94b3d 0%, #963226 100%);
    color:#fff;
    box-shadow:0 12px 24px rgba(116, 25, 20, .2);
    cursor:pointer;
    transition:transform .2s ease, box-shadow .2s ease;
}

.zh-floatbar__item:hover{
    transform:translateY(-1px);
    box-shadow:0 14px 24px rgba(116, 25, 20, .22);
}

.zh-floatbar__icon{
    font-size:18px;
    line-height:1;
    margin-bottom:5px;
}

.zh-floatbar__text{
    font-size:11px;
    line-height:1.2;
    text-align:center;
}

.zh-floatbar__panel{
    position:absolute;
    right:90px;
    top:50%;
    transform:translateY(-50%);
    width:198px;
    padding:14px;
    border-radius:18px;
    background:#fff;
    box-shadow:0 18px 36px rgba(0,0,0,.14);
    opacity:0;
    visibility:hidden;
    transition:all .24s ease;
    z-index:3;
}

.zh-floatbar__panel img{
    width:100%;
    border-radius:14px;
    background:#fff;
    margin-bottom:10px;
}

.zh-floatbar__panel strong,
.zh-floatbar__panel span{
    display:block;
    text-align:center;
}

.zh-floatbar__panel strong{
    color:var(--zh-dark);
    font-size:14px;
}

.zh-floatbar__panel span{
    margin-top:4px;
    color:var(--zh-muted);
    font-size:13px;
}

.zh-floatbar__contact-wrap.is-open .zh-floatbar__panel{
    opacity:1;
    visibility:visible;
}

.zh-floatbar__wechat{
    word-break:break-all;
}

.zh-floatbar__wechat-line{
    display:flex;
    align-items:stretch;
    gap:8px;
    margin-top:10px;
}

.zh-floatbar__wechat-row{
    margin-top:0;
    flex:1 1 auto;
    padding:8px 10px;
    border-radius:12px;
    background:#faf5ef;
    text-align:left;
}

.zh-floatbar__wechat-row span{
    margin-top:0;
    color:var(--zh-muted);
    font-size:12px;
}

.zh-floatbar__wechat-row .zh-floatbar__wechat{
    margin-top:4px;
    color:var(--zh-dark);
    font-size:14px;
    font-weight:700;
}

.zh-floatbar__copy{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:0 0 auto;
    min-width:86px;
    min-height:38px;
    margin-top:0;
    padding:0 12px;
    border:none;
    border-radius:12px;
    background:#faf5ef;
    color:var(--zh-red);
    font-weight:700;
    cursor:pointer;
}

@media (max-width:991px){
    .zh-home-slider__track{
        min-height:460px;
    }

    .zh-home-slide__overlay{
        left:28px;
        bottom:28px;
        max-width:340px;
        padding:20px 22px;
    }

    .zh-home-slide__overlay h1{
        font-size:38px;
    }

    .zh-home-news-row{
        grid-template-columns:1fr;
    }

    .zh-home-news-row__thumb{
        height:210px;
    }

    .zh-footer__grid{
        grid-template-columns:1fr 1fr;
    }
}

@media (max-width:640px){
    .zh-home-slider__track{
        min-height:300px;
    }

    .zh-home-slide__overlay{
        left:18px;
        right:18px;
        bottom:18px;
        max-width:none;
        padding:16px 16px 14px;
        border-radius:20px;
    }

    .zh-home-slide__overlay h1{
        font-size:26px;
    }

    .zh-home-slide__overlay p{
        font-size:13px;
        margin-bottom:14px;
    }

    .zh-footer__grid{
        grid-template-columns:1fr;
    }

    .zh-home-news-row__thumb{
        height:170px;
    }

    .zh-floatbar{
        right:10px;
        bottom:96px;
        gap:8px;
    }

    .zh-floatbar__item{
        width:52px;
        min-height:52px;
        border-radius:12px;
    }

    .zh-floatbar__text{
        font-size:10px;
    }

    .zh-floatbar__panel{
        right:74px;
        width:164px;
    }

    .zh-floatbar__wechat-line{
        flex-direction:column;
    }

    .zh-floatbar__copy{
        width:100%;
    }

    .zh-floatbar__contact-wrap.is-open .zh-floatbar__panel{
        top:auto;
        bottom:60px;
        right:64px;
        transform:none;
    }
}

.zh-article-header--simple{
    margin-bottom:16px;
}

.zh-article-header--simple h1{
    font-size:clamp(24px,2.6vw,34px);
}

.zh-article-product-card--headline{
    max-width:640px;
    margin:0 0 22px;
    padding:14px 16px;
    border-radius:18px;
}

.zh-article-product-card--headline .zh-section-heading{
    margin-bottom:10px;
}

.zh-article-product-card--headline .zh-section-heading h2{
    font-size:18px;
}

.zh-article-product-card--headline .zh-article-product-card__item--compact{
    grid-template-columns:76px minmax(0,1fr);
    gap:12px;
    padding:10px;
}

.zh-article-product-card--headline .zh-article-product-card__body strong{
    font-size:16px;
    line-height:1.45;
}

.zh-article-product-card--headline .zh-article-product-card__body em{
    margin-top:8px;
    padding:7px 12px;
    min-width:auto;
    font-size:13px;
}

.zh-article-inline-product{
    margin:30px 0;
    padding:16px;
    border-radius:10px;
    background:#f7f7f7;
    border:1px solid rgba(0,0,0,.03);
}

.zh-article-inline-product__card{
    display:grid;
    grid-template-columns:118px minmax(0,1fr);
    gap:18px;
    align-items:center;
    color:inherit;
}

.zh-article-inline-product__thumb{
    display:block;
    overflow:hidden;
    border-radius:6px;
    background:#fff;
    aspect-ratio:1/1;
    border:1px solid rgba(0,0,0,.04);
}

.zh-article-inline-product__thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.zh-article-inline-product__body strong,
.zh-article-inline-product__body span,
.zh-article-inline-product__body em{
    display:block;
}

.zh-article-inline-product__body strong{
    color:var(--zh-dark);
    font-size:20px;
    line-height:1.42;
    font-weight:800;
}

.zh-article-inline-product__price{
    margin-top:12px;
    color:#ef1b1b;
    font-size:20px;
    line-height:1.3;
    font-weight:800;
}

.zh-article-inline-product__body em{
    display:inline-flex;
    width:max-content;
    margin-top:12px;
    padding:7px 14px;
    border-radius:6px;
    background:var(--zh-red);
    color:#fff;
    font-size:14px;
    font-style:normal;
    font-weight:800;
}

.zh-article-main--reading .zh-article-content{
    padding-top:28px;
}

.zh-article-content--plain{
    min-height:auto;
}

.zh-article-content--plain .zh-article-content__body > *:first-child{
    margin-top:0;
}

.zh-article-product-card--single{
    margin-top:18px;
}

.zh-article-nav{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
}

.zh-article-nav__item{
    display:block;
    padding:20px 22px;
    border-radius:20px;
    background:#fff;
    border:1px solid rgba(131,91,50,.12);
    box-shadow:0 14px 30px rgba(54,31,10,.05);
}

.zh-article-nav__item span,
.zh-article-nav__item strong{
    display:block;
}

.zh-article-nav__item span{
    color:var(--zh-muted);
    font-size:13px;
}

.zh-article-nav__item strong{
    margin-top:8px;
    color:var(--zh-dark);
    line-height:1.7;
}

@media (max-width: 991px){
    .zh-article-nav{
        grid-template-columns:1fr;
    }

    .zh-article-inline-product__card{
        grid-template-columns:92px minmax(0,1fr);
    }
}

.zh-article-nav--single{
    grid-template-columns:1fr;
}

.zh-section-heading--compact p{
    margin-bottom:4px;
}

.zh-section-heading--compact h2{
    font-size:24px;
    line-height:1.45;
}

.zh-article-product-card__item--compact{
    grid-template-columns:88px minmax(0,1fr);
    gap:14px;
    padding:14px;
}

.zh-article-product-card__thumb--small{
    aspect-ratio:1/1;
    border-radius:14px;
}

.zh-article-product-card__item--compact .zh-article-product-card__body span{
    display:block;
    margin-top:6px;
    color:#6b625c;
    line-height:1.7;
}

.zh-article-product-card__item--compact .zh-article-product-card__body em{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:120px;
    margin-top:12px;
    padding:10px 16px;
    border-radius:999px;
    background:#f6eee7;
    color:var(--zh-red);
}

.zh-article-sidecard__heading--single p{
    display:none;
}

.zh-article-sidecard__heading--single h3{
    margin:0;
}

.zh-section-heading--single p{
    display:none;
}

.zh-section-heading--single h2{
    margin:0 0 18px;
    font-size:32px;
    line-height:1.35;
}

.zh-home-about__grid.is-no-media {
    grid-template-columns: 1fr;
}


.zh-page--narrow {
    max-width: 980px;
}

.zh-contact-page--simple {
    width: 100%;
    margin: 0 auto;
}

.zh-contact-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.zh-service-card--standalone {
    margin-top: 28px;
}

@media (max-width: 767px) {
    .zh-article-inline-product{
        margin:24px 0;
        padding:14px;
    }

    .zh-article-inline-product__card{
        grid-template-columns:84px minmax(0,1fr);
        gap:12px;
    }

    .zh-article-inline-product__body strong{
        font-size:16px;
    }

    .zh-article-inline-product__price{
        margin-top:8px;
        font-size:16px;
    }

    .zh-article-inline-product__body em{
        padding:7px 12px;
        font-size:13px;
    }

    .zh-contact-grid--two {
        grid-template-columns: 1fr;
    }
}
