/* ============================================
   app.css — 嗨刻服装服饰商城 全局样式
   配色：衣架橙 #F2872B + 定位蓝 #1E4FB8 + 暖米白 #FBF7F2
   取自 logo.png + banner.jpg
   类名沿用 zh_ 前缀；新版头部子前缀 zh_h_，底部 zh_f_
   ============================================ */

/* ========== CSS 变量 ========== */
:root {
    /* 主色 — 衣架橙（取自 logo 衣架） */
    --zh-primary:        #F2872B;
    --zh-primary-deep:   #D86C12;
    --zh-primary-soft:   #FFA864;
    --zh-primary-tint:   #FFE9D2;   /* 浅橙（标签底 / 软背景） */

    /* 辅色 — 定位蓝（取自 logo 定位 T 恤） */
    --zh-cyan:           #1E4FB8;
    --zh-cyan-light:     #3B6FD5;
    --zh-cyan-soft:      #C9D7F5;
    --zh-cyan-tint:      #E3ECFB;

    /* 强调色 — CTA 橙红 */
    --zh-accent:         #FF5A1F;
    --zh-accent-deep:    #D8400E;

    /* 背景 — 暖米白 */
    --zh-bg:             #FBF7F2;
    --zh-bg-soft:        #F4ECDF;
    --zh-white:          #FFFFFF;

    /* 深色块（头部顶条 / 底部主区 / 版权区） */
    --zh-dark:           #161A24;
    --zh-dark-deep:      #0F121A;

    /* 中性 */
    --zh-text:           #1B1F2A;
    --zh-text-2:         #4A5160;
    --zh-text-3:         #8A92A1;
    --zh-line:           #ECE8E1;       /* 暖灰分割线 */
    --zh-line-soft:      #F4F0EA;

    /* 高光 */
    --zh-glow:           #FFA864;

    /* 渐变 */
    --zh-grad-primary:   linear-gradient(135deg, #D86C12 0%, #F2872B 50%, #FFA864 100%);
    --zh-grad-primary-dark: linear-gradient(180deg, #0F121A 0%, #161A24 100%);
    --zh-grad-cyan:      linear-gradient(135deg, #1E4FB8 0%, #3B6FD5 100%);
    --zh-grad-accent:    linear-gradient(135deg, #F2872B 0%, #FF5A1F 100%);
    --zh-grad-glass:     linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(251,247,242,0.82) 100%);

    /* 阴影（带暖调） */
    --zh-shadow-sm:      0 2px 10px rgba(27, 31, 42, 0.05);
    --zh-shadow:         0 6px 24px rgba(27, 31, 42, 0.08);
    --zh-shadow-lg:      0 16px 48px rgba(27, 31, 42, 0.12);
    --zh-shadow-hover:   0 14px 38px rgba(242, 135, 43, 0.18);
    --zh-shadow-cyan:    0 8px 28px rgba(30, 79, 184, 0.22);

    /* 圆角（双轨：小元素 4，图片大卡 24） */
    --zh-radius-sm:      4px;
    --zh-radius:         8px;
    --zh-radius-lg:      24px;

    /* 兼容旧变量名（其他页面已引用，统一映射到新色） */
    --zh-blue:           #1E4FB8;
    --zh-blue-dark:      #143B91;
    --zh-blue-light:     #3B6FD5;
    --zh-gold:           #F2872B;
    --zh-gold-light:     #FFA864;
    --zh-orange:         #F2872B;
    --zh-orange-light:   #FFA864;
    --zh-red:            #FF5A1F;
    --zh-green:          #2BB673;
    --zh-text-light:     #8A92A1;
    --zh-border:         #ECE8E1;
    --zh-grad-gold:      linear-gradient(135deg, #F2872B 0%, #FFA864 100%);
    --zh-gradient-orange: linear-gradient(135deg, #F2872B 0%, #FF5A1F 100%);
    --zh-gradient-hero:  linear-gradient(135deg, #D86C12 0%, #F2872B 50%, #FFA864 100%);
    --zh-gradient-footer: linear-gradient(180deg, #0F121A 0%, #161A24 100%);
}

/* ========== 全局重置 ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body { height: 100%; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    background: var(--zh-bg);
    color: var(--zh-text);
    line-height: 1.7;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: color 0.2s ease; }
a:hover { color: var(--zh-primary); }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }

.zh_container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   公共头部（三层结构 — 服装服饰版）
   ① zh_h_topbar  顶部细条（深色，公告 / 客服 / 登录注册）
   ② zh_h_main    主品牌行（米白底，logo + 常驻大搜索框 + 工具图标）
   ③ zh_h_nav     品类导航行（白底 sticky）
   ============================================ */

.zh_header_wrap {
    position: relative;
    z-index: 1000;
    background: var(--zh-bg);
}

/* ① 顶部细条 */
.zh_h_topbar {
    background: var(--zh-dark);
    color: rgba(255, 255, 255, 0.78);
    font-size: 12.5px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.zh_h_topbar_inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.zh_h_topbar_left {
    display: flex;
    align-items: center;
    gap: 22px;
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.zh_h_topbar_announce,
.zh_h_topbar_phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.zh_h_topbar_announce i { color: var(--zh-primary); }
.zh_h_topbar_phone i { color: var(--zh-primary); }
.zh_h_topbar_phone strong { color: #fff; letter-spacing: 0.5px; }

.zh_h_topbar_right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.zh_h_topbar_right a {
    padding: 0 12px;
    color: rgba(255,255,255,0.7);
    position: relative;
    white-space: nowrap;
    line-height: 1;
}

.zh_h_topbar_right a + a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 11px;
    background: rgba(255,255,255,0.15);
}

.zh_h_topbar_right a:hover { color: var(--zh-primary-soft); }
.zh_h_topbar_right a.is_strong { color: var(--zh-primary); font-weight: 600; }
.zh_h_topbar_right a i { margin-right: 4px; opacity: 0.85; }

/* ② 主品牌行 — logo + 大搜索框 + 工具图标 */
.zh_h_main {
    background: var(--zh-bg);
    border-bottom: 1px solid var(--zh-line);
}

.zh_h_main_inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    height: 96px;
    display: flex;
    align-items: center;
    gap: 36px;
}

.zh_h_logo {
    flex-shrink: 0;
    display: block;
}

.zh_h_logo img {
    height: 56px;
    width: auto;
    display: block;
}

/* 主品牌行 — 大搜索框 */
.zh_h_search {
    flex: 1;
    max-width: 560px;
    display: flex;
    align-items: stretch;
    height: 44px;
    border: 2px solid var(--zh-primary);
    border-radius: var(--zh-radius-sm);
    background: #fff;
    position: relative;
    transition: box-shadow 0.2s ease;
}

.zh_h_search:focus-within {
    box-shadow: 0 0 0 4px rgba(242, 135, 43, 0.12);
}

.zh_h_search_cat {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px 0 14px;
    background: var(--zh-primary-tint);
    color: var(--zh-primary-deep);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border-right: 1px solid rgba(242, 135, 43, 0.25);
    user-select: none;
    position: relative;
}

.zh_h_search_cat i { font-size: 11px; transition: transform 0.2s; }
.zh_h_search_cat:hover i { transform: rotate(180deg); }

.zh_h_search_cat_panel {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: -2px;
    width: 220px;
    background: #fff;
    border: 1px solid var(--zh-line);
    border-radius: var(--zh-radius-sm);
    box-shadow: var(--zh-shadow);
    padding: 8px;
    z-index: 60;
    max-height: 320px;
    overflow-y: auto;
}

.zh_h_search_cat:hover .zh_h_search_cat_panel,
.zh_h_search_cat_panel.show { display: block; }

.zh_h_search_cat_panel a {
    display: block;
    padding: 8px 12px;
    font-size: 13px;
    color: var(--zh-text);
    border-radius: var(--zh-radius-sm);
    font-weight: 400;
}

.zh_h_search_cat_panel a:hover {
    background: var(--zh-primary-tint);
    color: var(--zh-primary-deep);
}

.zh_h_search_input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 14px;
    height: 100%;
    font-size: 14px;
    color: var(--zh-text);
    background: transparent;
    font-family: inherit;
}

.zh_h_search_input::placeholder { color: var(--zh-text-3); }

.zh_h_search_submit {
    flex-shrink: 0;
    width: 104px;
    border: none;
    background: var(--zh-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.zh_h_search_submit:hover { background: var(--zh-primary-deep); }

/* 主品牌行 — 右侧工具 */
.zh_h_actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: auto;  /* 把工具图标推到最右，吃掉 search 限宽后的空白 */
}

.zh_h_act {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-width: 56px;
    padding: 6px 10px;
    color: var(--zh-text-2);
    font-size: 12px;
    line-height: 1.2;
    border-radius: var(--zh-radius-sm);
    transition: all 0.2s;
    position: relative;
}

.zh_h_act i { font-size: 18px; color: var(--zh-text); }
.zh_h_act span { font-size: 12px; }

.zh_h_act:hover {
    color: var(--zh-primary);
    background: var(--zh-primary-tint);
}

.zh_h_act:hover i { color: var(--zh-primary); }

.zh_h_cart {
    position: relative;
    background: var(--zh-primary);
    color: #fff;
    padding: 6px 14px;
}

.zh_h_cart i { color: #fff; }
.zh_h_cart:hover { background: var(--zh-primary-deep); color: #fff; }
.zh_h_cart:hover i { color: #fff; }

.zh_h_cart_badge {
    position: absolute;
    top: -2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--zh-accent);
    color: #fff;
    border-radius: 18px;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--zh-bg);
    line-height: 1;
}

/* 账户下拉 */
.zh_h_account {
    position: relative;
    cursor: pointer;
}

.zh_h_account_panel {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    width: 200px;
    background: #fff;
    border: 1px solid var(--zh-line);
    border-radius: var(--zh-radius-sm);
    box-shadow: var(--zh-shadow);
    padding: 8px;
    display: none;
    z-index: 1001;
}

.zh_h_account:hover .zh_h_account_panel,
.zh_h_account_panel.show { display: block; }

.zh_h_account_panel a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: var(--zh-radius-sm);
    color: var(--zh-text);
    font-size: 13px;
    transition: all 0.15s;
}

.zh_h_account_panel a i {
    width: 16px;
    color: var(--zh-cyan);
    font-size: 13px;
    text-align: center;
}

.zh_h_account_panel a:hover {
    background: var(--zh-primary-tint);
    color: var(--zh-primary-deep);
}

.zh_h_account_panel a:hover i { color: var(--zh-primary); }

.zh_h_account_panel hr {
    border: none;
    border-top: 1px solid var(--zh-line);
    margin: 6px 0;
}

/* 移动端汉堡按钮 */
.zh_h_mb_toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--zh-text);
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: var(--zh-radius-sm);
}

.zh_h_mb_toggle:hover { background: var(--zh-bg-soft); color: var(--zh-primary); }

/* ③ 品类导航行 sticky */
.zh_h_nav {
    background: #fff;
    border-bottom: 1px solid var(--zh-line);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: box-shadow 0.25s ease;
}

.zh_h_nav.is_scrolled {
    box-shadow: 0 4px 14px rgba(27, 31, 42, 0.06);
}

.zh_h_nav_inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    height: 52px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.zh_h_nav_menu {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 4px;
    overflow: hidden;
}

.zh_h_nav_menu a {
    display: inline-flex;
    align-items: center;
    padding: 0 18px;
    height: 52px;
    color: var(--zh-text);
    font-size: 15px;
    font-weight: 500;
    position: relative;
    transition: color 0.2s;
}

.zh_h_nav_menu a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 3px;
    background: var(--zh-primary);
    transform: translateX(-50%);
    transition: width 0.25s ease;
}

.zh_h_nav_menu a:hover { color: var(--zh-primary); }
.zh_h_nav_menu a:hover::after { width: 28px; }

.zh_h_nav_menu a.active {
    color: var(--zh-primary);
    font-weight: 600;
}

.zh_h_nav_menu a.active::after { width: 28px; }

/* sticky 模式下显示 mini logo */
.zh_h_nav_logo_mini {
    display: none;
    flex-shrink: 0;
}

.zh_h_nav.is_scrolled .zh_h_nav_logo_mini {
    display: flex;
    align-items: center;
}

.zh_h_nav_logo_mini img { height: 32px; width: auto; display: block; }

/* sticky 模式下显示迷你搜索图标 */
.zh_h_nav_search_btn {
    display: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--zh-bg-soft);
    color: var(--zh-text-2);
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.zh_h_nav_search_btn:hover {
    background: var(--zh-primary);
    color: #fff;
}

.zh_h_nav.is_scrolled .zh_h_nav_search_btn { display: inline-flex; align-items: center; justify-content: center; }

/* ============================================
   移动端抽屉（适配新配色）
   ============================================ */
.zh_mb_drawer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 86%;
    max-width: 320px;
    background: #fff;
    z-index: 2000;
    box-shadow: 0 0 40px rgba(0,0,0,0.25);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.zh_mb_drawer.show { display: block; transform: translateX(0); }

.zh_mb_overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 18, 26, 0.5);
    z-index: 1999;
}

.zh_mb_overlay.show { display: block; }

.zh_mb_drawer_head {
    padding: 18px 20px;
    background: var(--zh-dark);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid var(--zh-primary);
}

.zh_mb_drawer_head strong { color: #fff; font-size: 16px; }

.zh_mb_drawer_head .zh_mb_close {
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
}

.zh_mb_drawer_search {
    padding: 14px 20px;
    border-bottom: 1px solid var(--zh-line);
}

.zh_mb_drawer_search form {
    display: flex;
    border: 1.5px solid var(--zh-primary);
    border-radius: var(--zh-radius-sm);
    overflow: hidden;
    height: 40px;
}

.zh_mb_drawer_search input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 14px;
    height: 100%;
    font-size: 13px;
    background: #fff;
}

.zh_mb_drawer_search button {
    width: 56px;
    border: none;
    background: var(--zh-primary);
    color: #fff;
    cursor: pointer;
}

.zh_mb_drawer_section {
    padding: 8px 0;
    border-bottom: 1px solid var(--zh-line-soft);
}

.zh_mb_drawer_section h5 {
    font-size: 12px;
    color: var(--zh-text-3);
    padding: 10px 20px 4px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.zh_mb_drawer_section a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    color: var(--zh-text);
    font-size: 14px;
}

.zh_mb_drawer_section a i { color: var(--zh-text-3); font-size: 12px; }
.zh_mb_drawer_section a:hover { background: var(--zh-primary-tint); color: var(--zh-primary-deep); }

/* ============================================
   通知消息
   ============================================ */
.zh_alert_wrap {
    max-width: 1280px;
    margin: 16px auto 0;
    padding: 0 20px;
}

.zh_alert {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    border-radius: var(--zh-radius);
    font-size: 14px;
    box-shadow: var(--zh-shadow-sm);
}

.zh_alert_success { background: #e6f7ee; color: #1c6b3a; border-left: 4px solid #2bb673; }
.zh_alert_error { background: #fff1ec; color: #b53d18; border-left: 4px solid var(--zh-accent); }

.zh_alert_close {
    background: none;
    border: none;
    font-size: 22px;
    line-height: 1;
    color: inherit;
    opacity: 0.6;
    padding: 0 4px;
}
.zh_alert_close:hover { opacity: 1; }

/* ============================================
   通用按钮
   ============================================ */
.zh_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 26px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: 26px;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.zh_btn_primary {
    background: var(--zh-grad-cyan);
    color: #fff;
    box-shadow: 0 4px 14px rgba(11, 95, 217, 0.28);
}
.zh_btn_primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(11, 95, 217, 0.4); }

.zh_btn_gold {
    background: var(--zh-grad-cyan);
    color: #fff;
    box-shadow: 0 4px 14px rgba(56, 192, 240, 0.32);
}
.zh_btn_gold:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(56, 192, 240, 0.5); }

.zh_btn_accent {
    background: var(--zh-grad-accent);
    color: #fff;
    box-shadow: 0 4px 14px rgba(255, 107, 53, 0.3);
}
.zh_btn_accent:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(255, 107, 53, 0.42); }

.zh_btn_outline {
    background: transparent;
    color: var(--zh-primary);
    border-color: var(--zh-primary);
}
.zh_btn_outline:hover { background: var(--zh-primary); color: #fff; }

.zh_btn_ghost {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-color: rgba(255,255,255,0.45);
}
.zh_btn_ghost:hover { background: rgba(255,255,255,0.18); color: #fff; border-color: #fff; }

/* 兼容旧按钮名 */
.zh_btn_orange { background: var(--zh-grad-accent); color: #fff; box-shadow: 0 4px 14px rgba(255, 107, 53, 0.3); }
.zh_btn_orange:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(255, 107, 53, 0.42); }
.zh_btn_blue { background: var(--zh-primary); color: #fff; }
.zh_btn_blue:hover { background: var(--zh-primary-deep); color: #fff; }

/* ============================================
   商品卡片（全站通用）
   ============================================ */
.zh_pcard {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: var(--zh-radius-sm);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--zh-line);
    position: relative;
}

.zh_pcard:hover {
    border-color: var(--zh-primary);
    box-shadow: 0 14px 30px rgba(242, 135, 43, 0.16);
    transform: translateY(-4px);
}

.zh_pcard_img_wrap {
    position: relative;
    display: block;
    aspect-ratio: 7 / 8;            /* 服饰常用 7:8 比例 */
    overflow: hidden;
    background: var(--zh-bg-soft);  /* 暖米白底 */
}

.zh_pcard_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.zh_pcard:hover .zh_pcard_img { transform: scale(1.04); }

.zh_pcard_tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--zh-radius-sm);
    color: #fff;
    z-index: 1;
    letter-spacing: 1px;
}

.zh_pcard_tag_new { background: var(--zh-cyan); }     /* 新品：定位蓝 */
.zh_pcard_tag_hot { background: var(--zh-primary); }  /* 热销：衣架橙 */
.zh_pcard_tag_sale { background: var(--zh-accent); }  /* 折扣：橙红 */

.zh_pcard_body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 14px 16px 16px;
    background: #fff;
}

.zh_pcard_cat {
    font-size: 12px;
    color: var(--zh-text-3);
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.zh_pcard_name {
    font-size: 14px;
    font-weight: 500;
    color: var(--zh-text);
    line-height: 1.5;
    height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
}

.zh_pcard_name a { color: inherit; }
.zh_pcard:hover .zh_pcard_name { color: var(--zh-primary); }

.zh_pcard_bottom {
    margin-top: auto;
    padding-top: 12px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
}

.zh_pcard_price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}

.zh_pcard_cur {
    font-size: 20px;
    font-weight: 700;
    color: var(--zh-primary);     /* 价格用主色橙 */
    font-family: "Arial", sans-serif;
}

.zh_pcard_cur::before {
    content: '¥';
    font-size: 13px;
    margin-right: 1px;
}

.zh_pcard_old {
    font-size: 12px;
    color: var(--zh-text-3);
    text-decoration: line-through;
}

.zh_pcard_sales {
    font-size: 12px;
    color: var(--zh-text-3);
    white-space: nowrap;
}

.zh_pcard_sales i { color: var(--zh-primary); margin-right: 3px; }

/* 商品网格 */
.zh_product_grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.zh_product_grid_item { display: flex; }
.zh_product_grid_item > .zh_pcard { width: 100%; }

/* ============================================
   区块标题
   ============================================ */
.zh_section_title {
    font-size: 28px;
    font-weight: 700;
    color: var(--zh-primary-deep);
    text-align: center;
    margin-bottom: 8px;
}

.zh_section_subtitle {
    font-size: 15px;
    color: var(--zh-text-2);
    text-align: center;
    margin-bottom: 40px;
}

.zh_section_title_bar {
    display: inline-block;
    width: 56px;
    height: 3px;
    background: var(--zh-grad-cyan);
    border-radius: 2px;
    margin: 8px auto 0;
}

/* ============================================
   投诉建议弹窗
   ============================================ */
.zh_fb_overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 30, 70, 0.55);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.zh_fb_overlay.show { display: flex; }

.zh_fb_modal {
    background: #fff;
    border-radius: var(--zh-radius-lg);
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(10, 30, 70, 0.3);
    animation: zh_fb_in 0.25s ease;
}

@keyframes zh_fb_in {
    from { opacity: 0; transform: translateY(-20px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.zh_fb_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--zh-line);
}

.zh_fb_title {
    font-size: 18px;
    font-weight: 600;
    color: var(--zh-primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.zh_fb_title i { color: var(--zh-cyan); }

.zh_fb_close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--zh-text-3);
    cursor: pointer;
    line-height: 1;
}

.zh_fb_close:hover { color: var(--zh-primary); }

.zh_fb_body { padding: 24px; }

.zh_fb_contact {
    display: flex;
    gap: 24px;
    padding: 14px 18px;
    background: var(--zh-bg-soft);
    border-radius: var(--zh-radius-sm);
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.zh_fb_contact_item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--zh-text); }
.zh_fb_contact_item i { color: var(--zh-primary); }

.zh_fb_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.zh_fb_field { margin-bottom: 0; }
.zh_fb_field:only-child { margin-bottom: 14px; }

.zh_fb_label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--zh-text);
    margin-bottom: 6px;
}

.zh_fb_input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--zh-line);
    border-radius: var(--zh-radius-sm);
    font-size: 14px;
    color: var(--zh-text);
    outline: none;
    background: #fff;
    transition: border-color 0.2s;
}
.zh_fb_input:focus { border-color: var(--zh-primary); box-shadow: 0 0 0 3px rgba(11, 95, 217, 0.1); }

.zh_fb_textarea { resize: vertical; min-height: 80px; }

.zh_fb_captcha { display: flex; gap: 10px; align-items: center; }
.zh_fb_captcha .zh_fb_input { flex: 1; }
.zh_fb_captcha_img { height: 40px; border-radius: var(--zh-radius-sm); cursor: pointer; }

.zh_fb_msg {
    font-size: 13px;
    margin-bottom: 14px;
    display: none;
    padding: 10px 12px;
    border-radius: var(--zh-radius-sm);
}
.zh_fb_msg.success { display: block; background: #e6f7ee; color: #1c6b3a; }
.zh_fb_msg.error { display: block; background: #fff1ec; color: #b53d18; }

.zh_fb_submit {
    width: 100%;
    padding: 12px;
    background: var(--zh-grad-cyan);
    color: #fff;
    border: none;
    border-radius: 26px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.25s ease;
}
.zh_fb_submit:hover { box-shadow: 0 8px 22px rgba(11, 95, 217, 0.32); transform: translateY(-1px); }
.zh_fb_submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* ============================================
   回到顶部
   ============================================ */
.zh_scroll_top {
    display: none;
    position: fixed;
    bottom: 36px;
    right: 36px;
    z-index: 999;
    width: 48px;
    height: 48px;
    background: var(--zh-grad-cyan);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(11, 95, 217, 0.35);
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.zh_scroll_top:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(242, 135, 43, 0.4);
}

/* ============================================
   二级页头（内页共用 — 服饰版 .zh_pb_*）
   米白底 + 右 40% banner.jpg 模糊装饰
   ============================================ */
.zh_pb_header {
    position: relative;
    background: linear-gradient(135deg, var(--zh-bg) 0%, var(--zh-primary-tint) 100%);
    border-bottom: 1px solid var(--zh-line);
    overflow: hidden;
}

.zh_pb_header::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 40%;
    background: url('/uploads/banner/banner.jpg') center right / cover no-repeat;
    opacity: 0.18;
    pointer-events: none;
    mask-image: linear-gradient(to right, transparent 0%, #000 50%, #000 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 50%, #000 100%);
}

.zh_pb_inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 20px 28px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    min-height: 168px;
}

.zh_pb_text { flex: 1; min-width: 0; }

.zh_pb_crumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--zh-text-2);
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.zh_pb_crumb a {
    color: var(--zh-text-2);
    transition: color 0.2s;
}

.zh_pb_crumb a:hover { color: var(--zh-primary); }
.zh_pb_crumb .sep { color: var(--zh-text-3); }
.zh_pb_crumb .active { color: var(--zh-primary); font-weight: 500; }

.zh_pb_title {
    font-size: 26px;
    font-weight: 700;
    color: var(--zh-text);
    margin: 0;
    line-height: 1.3;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.zh_pb_title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 3px;
    background: var(--zh-primary);
}

.zh_pb_title em {
    font-style: normal;
    color: var(--zh-primary);
}

.zh_pb_sub {
    font-size: 13px;
    color: var(--zh-text-2);
    margin: 10px 0 0;
    line-height: 1.6;
}

.zh_pb_actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.zh_pb_btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    background: #fff;
    color: var(--zh-text);
    border: 1px solid var(--zh-line);
    border-radius: var(--zh-radius-sm);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}

.zh_pb_btn:hover {
    background: var(--zh-primary);
    color: #fff;
    border-color: var(--zh-primary);
}

.zh_pb_btn_primary {
    background: var(--zh-primary);
    color: #fff;
    border-color: var(--zh-primary);
}

.zh_pb_btn_primary:hover {
    background: var(--zh-primary-deep);
    color: #fff;
    border-color: var(--zh-primary-deep);
}

@media (max-width: 767px) {
    .zh_pb_inner { min-height: 132px; padding: 24px 16px 20px; }
    .zh_pb_title { font-size: 22px; padding-bottom: 8px; }
    .zh_pb_actions { width: 100%; }
}

/* ============================================
   面包屑（全局）
   ============================================ */
.zh_breadcrumb_bar {
    background: #fff;
    border-bottom: 1px solid var(--zh-line);
    padding: 14px 0;
}

.zh_breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--zh-text-2);
    flex-wrap: wrap;
}

.zh_breadcrumb a { color: var(--zh-text-2); }
.zh_breadcrumb a:hover { color: var(--zh-primary); }
.zh_breadcrumb .active { color: var(--zh-primary); }

/* ============================================
   公共底部（三段式 — 服装服饰版）
   ① zh_f_invite   招商横幅（橙红渐变）
   ② zh_f_main     主底部（深色 + 品牌区 36% + 三列链接）
   ③ zh_f_copy     版权区（更深一档）
   ============================================ */

/* ① 招商横幅 */
.zh_f_invite {
    position: relative;
    background: linear-gradient(135deg, #F2872B 0%, #FF5A1F 100%);
    overflow: hidden;
}

.zh_f_invite::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 20%, rgba(255, 220, 180, 0.30) 0%, transparent 45%),
        radial-gradient(circle at 12% 80%, rgba(255, 90, 31, 0.32) 0%, transparent 50%);
    pointer-events: none;
}

.zh_f_invite_inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 52px 20px;
    display: grid;
    grid-template-columns: 1.4fr auto;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.zh_f_invite_eyebrow {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    border-radius: 24px;
    margin-bottom: 14px;
}

.zh_f_invite_text h3 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.zh_f_invite_text h3 span {
    color: #FFE9D2;
    border-bottom: 3px solid rgba(255,255,255,0.5);
    padding-bottom: 2px;
}

.zh_f_invite_text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.8;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.zh_f_invite_text p i {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin: 0 4px;
}

.zh_f_invite_btns {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}

.zh_f_invite_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--zh-radius-sm);
    transition: all 0.25s ease;
    white-space: nowrap;
}

.zh_f_invite_btn_main {
    background: #fff;
    color: var(--zh-primary-deep);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.zh_f_invite_btn_main:hover {
    color: var(--zh-primary-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
}

.zh_f_invite_btn_outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.55);
    padding: 12px 28px;
}

.zh_f_invite_btn_outline:hover {
    color: var(--zh-primary-deep);
    background: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

/* ② 主底部 — 深色块 + 顶部橙色细条 + 品牌区 / 链接区 */
.zh_f_main {
    position: relative;
    background: var(--zh-dark);
    color: rgba(255, 255, 255, 0.7);
    border-top: 4px solid var(--zh-primary);
}

.zh_f_main_inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 20px 44px;
    display: grid;
    grid-template-columns: 1.3fr 2fr;
    gap: 64px;
    align-items: flex-start;
}

/* 品牌区 */
.zh_f_brand { min-width: 0; }

.zh_f_logo { margin-bottom: 18px; }

.zh_f_logo img {
    height: 48px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.zh_f_brand_desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.95;
    margin-bottom: 22px;
}

.zh_f_brand_phone {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(242, 135, 43, 0.08);
    border: 1px solid rgba(242, 135, 43, 0.32);
    border-radius: var(--zh-radius-sm);
    margin-bottom: 18px;
}

.zh_f_brand_phone_icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--zh-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.zh_f_brand_phone_text { line-height: 1.3; }
.zh_f_brand_phone_label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 1px;
}
.zh_f_brand_phone_num {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    font-family: "Arial", sans-serif;
    margin-top: 2px;
}

.zh_f_brand_qr {
    display: inline-block;
    text-align: center;
}

.zh_f_brand_qr img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    background: #fff;
    padding: 6px;
    border-radius: var(--zh-radius-sm);
    border: 2px solid rgba(255, 255, 255, 0.18);
}

.zh_f_brand_qr p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 8px;
}

/* 三列链接区 */
.zh_f_cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.zh_f_col h4 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 1px;
    position: relative;
}

.zh_f_col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 32px;
    height: 2px;
    background: var(--zh-primary);
}

.zh_f_col ul { display: flex; flex-direction: column; gap: 10px; }

.zh_f_col a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.58);
    display: inline-flex;
    align-items: center;
    transition: all 0.2s;
    line-height: 1.6;
}

.zh_f_col a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--zh-primary);
    margin-right: 0;
    transition: all 0.2s;
}

.zh_f_col a:hover { color: var(--zh-primary); }

.zh_f_col a:hover::before {
    width: 12px;
    margin-right: 8px;
}

/* ③ 版权区 — 更深一档 */
.zh_f_copy {
    background: var(--zh-dark-deep);
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.zh_f_copy_inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 26px;
    text-align: center;
}

.zh_f_copy a {
    color: rgba(255, 255, 255, 0.55);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}

.zh_f_copy a:hover { color: var(--zh-primary); }
.zh_f_copy a i { color: var(--zh-primary); }

.zh_f_copy_pwd {
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

/* ============================================
   响应式
   ============================================ */
@media (max-width: 1199px) {
    .zh_h_main_inner { gap: 24px; height: 88px; }
    .zh_h_logo img { height: 50px; }
    .zh_h_search { max-width: 420px; }
    .zh_h_nav_menu a { padding: 0 14px; font-size: 14px; }
    .zh_f_main_inner { gap: 36px; }
    .zh_f_invite_text h3 { font-size: 26px; }
    .zh_f_cols { gap: 24px; }
}

@media (max-width: 991px) {
    .zh_h_topbar_announce { display: none; }
    .zh_h_main_inner { height: 76px; gap: 18px; }
    .zh_h_logo img { height: 44px; }
    .zh_h_search { max-width: 360px; height: 40px; }
    .zh_h_search_submit { width: 80px; font-size: 13px; }
    .zh_h_act { min-width: auto; }
    .zh_h_act span { display: none; }
    .zh_h_nav { display: none; }

    .zh_f_invite_inner { grid-template-columns: 1fr; padding: 40px 20px; gap: 28px; }
    .zh_f_invite_text h3 { font-size: 22px; }
    .zh_f_invite_btns { flex-wrap: wrap; }

    .zh_f_main_inner { grid-template-columns: 1fr; gap: 44px; padding: 48px 20px 32px; }
    .zh_f_cols { grid-template-columns: repeat(3, 1fr); gap: 24px; }

    .zh_product_grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

@media (max-width: 767px) {
    .zh_h_topbar { display: none; }

    .zh_h_main_inner {
        height: 60px;
        gap: 10px;
        padding: 0 14px;
    }
    .zh_h_logo img { height: 38px; }
    .zh_h_mb_toggle { display: inline-flex; }

    .zh_h_search { display: none; }  /* 移动端搜索由抽屉承担 */

    .zh_h_actions { gap: 4px; }
    .zh_h_act { padding: 4px 8px; min-width: auto; }
    .zh_h_act i { font-size: 18px; }
    .zh_h_act span { display: none; }
    .zh_h_account { display: none; }  /* 移动端账户入口收进抽屉 */

    .zh_h_cart { padding: 6px 10px; }

    .zh_f_invite_text h3 { font-size: 20px; }
    .zh_f_invite_text p { font-size: 13px; }
    .zh_f_invite_btn { padding: 12px 22px; font-size: 14px; }
    .zh_f_invite_btn_outline { padding: 10px 20px; }

    .zh_f_main_inner { gap: 32px; padding: 36px 20px 24px; }
    .zh_f_brand_phone { padding: 12px 14px; }
    .zh_f_brand_phone_num { font-size: 19px; }
    .zh_f_cols { grid-template-columns: 1fr 1fr; gap: 24px; }
    .zh_f_col h4 { margin-bottom: 14px; padding-bottom: 8px; font-size: 14px; }
    .zh_f_col ul { gap: 8px; }

    .zh_f_copy_inner { flex-direction: column; gap: 6px; padding: 16px; }

    .zh_product_grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .zh_pcard_body { padding: 12px; }
    .zh_pcard_name { font-size: 13px; height: 39px; }
    .zh_pcard_cur { font-size: 16px; }

    .zh_section_title { font-size: 22px; }
    .zh_section_subtitle { margin-bottom: 28px; font-size: 13px; }

    .zh_fb_modal { max-width: 100%; }
    .zh_fb_row { grid-template-columns: 1fr; }
    .zh_fb_contact { flex-direction: column; gap: 10px; }

    .zh_scroll_top { width: 42px; height: 42px; bottom: 20px; right: 20px; }
}

/* ============================================
   公共组件（二级页面复用）
   ============================================ */

/* ---------- 二级页面窄页头 ---------- */
.zh_page_header {
    position: relative;
    background: var(--zh-grad-primary);
    overflow: hidden;
    padding: 36px 0;
    color: #fff;
}

.zh_page_header::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 50%;
    background: url('/uploads/banner/banner.jpg') right center / cover no-repeat;
    opacity: 0.22;
    mix-blend-mode: screen;
}

.zh_page_header::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 3px;
    background: var(--zh-grad-cyan);
    opacity: 0.85;
}

.zh_page_header_inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.zh_page_header_text h1 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin: 4px 0 4px;
    line-height: 1.3;
}

.zh_page_header_text h1 span { color: var(--zh-cyan-light); }

.zh_page_header_sub {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 2px;
}

.zh_page_crumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 6px;
    flex-wrap: wrap;
}
.zh_page_crumb a { color: rgba(255,255,255,0.65); }
.zh_page_crumb a:hover { color: var(--zh-cyan-light); }
.zh_page_crumb .zh_crumb_sep { color: var(--zh-cyan); }
.zh_page_crumb .active { color: var(--zh-cyan-light); }

.zh_page_header_back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 24px;
    color: #fff;
    font-size: 13px;
    transition: all 0.2s;
}
.zh_page_header_back:hover {
    background: var(--zh-cyan);
    color: var(--zh-primary-deep);
    border-color: var(--zh-cyan);
}

/* ---------- 进度步骤条 ---------- */
.zh_steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 20px 0 8px;
}

.zh_step {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--zh-text-3);
}

.zh_step_circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--zh-line);
    color: var(--zh-text-3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}

.zh_step_label { font-size: 14px; font-weight: 500; }

.zh_step_line {
    flex: 0 0 80px;
    height: 2px;
    background: var(--zh-line);
    margin: 0 16px;
}

.zh_step.active { color: var(--zh-primary); }
.zh_step.active .zh_step_circle {
    background: var(--zh-grad-cyan);
    border-color: var(--zh-cyan);
    color: #fff;
}

.zh_step.done { color: var(--zh-primary); }
.zh_step.done .zh_step_circle {
    background: var(--zh-primary);
    border-color: var(--zh-primary);
    color: #fff;
}
.zh_step.done + .zh_step_line { background: var(--zh-primary); }

/* ---------- 数量加减控件 ---------- */
.zh_qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--zh-line);
    border-radius: var(--zh-radius-sm);
    overflow: hidden;
    background: #fff;
}

.zh_qty button {
    width: 32px;
    height: 32px;
    background: var(--zh-bg-soft);
    border: none;
    color: var(--zh-text);
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.15s;
}
.zh_qty button:hover { background: var(--zh-primary); color: #fff; }
.zh_qty button:disabled { opacity: 0.4; cursor: not-allowed; }
.zh_qty button:disabled:hover { background: var(--zh-bg-soft); color: var(--zh-text); }

.zh_qty input {
    width: 48px;
    height: 32px;
    border: none;
    border-left: 1px solid var(--zh-line);
    border-right: 1px solid var(--zh-line);
    text-align: center;
    font-size: 14px;
    color: var(--zh-text);
    outline: none;
    background: #fff;
    -moz-appearance: textfield;
}
.zh_qty input::-webkit-outer-spin-button,
.zh_qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* ---------- 分页器 ---------- */
.zh_pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 40px 0 0;
    flex-wrap: wrap;
}

.zh_pager .pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.zh_pager .pagination li,
.zh_pager span,
.zh_pager a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 14px;
    border: 1px solid var(--zh-line);
    border-radius: var(--zh-radius-sm);
    background: #fff;
    color: var(--zh-text);
    font-size: 13px;
    font-weight: 500;
    list-style: none;
}

.zh_pager a:hover {
    border-color: var(--zh-cyan);
    color: var(--zh-primary);
}

.zh_pager .active span,
.zh_pager .active a {
    background: var(--zh-primary);
    border-color: var(--zh-primary);
    color: #fff;
}

.zh_pager .disabled span {
    background: var(--zh-bg-soft);
    color: var(--zh-text-3);
}

/* Laravel 原生分页容器兼容 */
.zh_pager nav[role="navigation"] {
    display: flex;
    justify-content: center;
    width: 100%;
}

.zh_pager nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ---------- Tab 切换条 ---------- */
.zh_tabs {
    display: flex;
    align-items: center;
    gap: 0;
    border-bottom: 2px solid var(--zh-line);
}

.zh_tabs a,
.zh_tabs button {
    background: none;
    border: none;
    padding: 16px 28px;
    font-size: 15px;
    font-weight: 600;
    color: var(--zh-text-2);
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
    margin-bottom: -2px;
}

.zh_tabs a:hover,
.zh_tabs button:hover { color: var(--zh-primary); }

.zh_tabs a.active,
.zh_tabs button.active {
    color: var(--zh-primary);
    border-bottom: 3px solid var(--zh-cyan);
}

/* ---------- 表单卡片 ---------- */
.zh_form_card {
    background: #fff;
    border: 1px solid var(--zh-line);
    border-radius: var(--zh-radius-lg);
    padding: 36px 40px;
    box-shadow: var(--zh-shadow-sm);
}

.zh_form_card_head {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--zh-line);
}
.zh_form_card_head h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--zh-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}
.zh_form_card_head h2::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--zh-grad-cyan);
    border-radius: 2px;
}
.zh_form_card_head p {
    font-size: 13px;
    color: var(--zh-text-3);
    margin-top: 6px;
    padding-left: 14px;
}

.zh_form_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 18px;
}

.zh_form_row_single { display: block; }

.zh_form_field { margin-bottom: 18px; }

.zh_form_label {
    display: block;
    font-size: 13px;
    color: var(--zh-text);
    font-weight: 500;
    margin-bottom: 8px;
}
.zh_form_label .required { color: var(--zh-accent); margin-left: 2px; }

.zh_form_input,
.zh_form_textarea,
.zh_form_select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--zh-line);
    border-radius: var(--zh-radius-sm);
    background: #fff;
    font-size: 14px;
    color: var(--zh-text);
    outline: none;
    transition: all 0.2s;
    font-family: inherit;
}

.zh_form_input:focus,
.zh_form_textarea:focus,
.zh_form_select:focus {
    border-color: var(--zh-primary);
    box-shadow: 0 0 0 3px rgba(11, 95, 217, 0.1);
}

.zh_form_textarea { min-height: 100px; resize: vertical; }

.zh_form_hint {
    font-size: 12px;
    color: var(--zh-text-3);
    margin-top: 6px;
}

.zh_form_error {
    font-size: 12px;
    color: var(--zh-accent);
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.zh_form_actions {
    display: flex;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
}

/* ---------- 空状态 ---------- */
.zh_empty_state {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border: 1px dashed var(--zh-line);
    border-radius: var(--zh-radius-lg);
}

.zh_empty_state_icon {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--zh-bg-soft);
    color: var(--zh-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
}

.zh_empty_state h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--zh-primary);
    margin-bottom: 8px;
}

.zh_empty_state p {
    font-size: 13px;
    color: var(--zh-text-3);
    margin-bottom: 22px;
}

/* ---------- 面包屑（浅色版，非 header 内） ---------- */
.zh_crumb_bar {
    background: #fff;
    border-bottom: 1px solid var(--zh-line);
}
.zh_crumb_bar_inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--zh-text-2);
    flex-wrap: wrap;
}
.zh_crumb_bar_inner a { color: var(--zh-text-2); }
.zh_crumb_bar_inner a:hover { color: var(--zh-primary); }
.zh_crumb_bar_inner .sep { color: var(--zh-text-3); font-size: 10px; }
.zh_crumb_bar_inner .active { color: var(--zh-primary); font-weight: 500; }

/* 响应式 */
@media (max-width: 991px) {
    .zh_page_header { padding: 24px 0; }
    .zh_page_header_text h1 { font-size: 22px; }
    .zh_page_header_back { display: none; }

    .zh_steps { gap: 0; flex-wrap: wrap; padding: 12px 0; }
    .zh_step_line { flex: 0 0 40px; margin: 0 8px; }
    .zh_step_circle { width: 30px; height: 30px; font-size: 13px; }
    .zh_step_label { font-size: 12px; }

    .zh_form_card { padding: 24px 22px; }
    .zh_form_row { grid-template-columns: 1fr; gap: 16px; }

    .zh_tabs { overflow-x: auto; }
    .zh_tabs a, .zh_tabs button { padding: 12px 18px; font-size: 14px; white-space: nowrap; }
}
