:root {
    --zh-primary: #2b584f;
    --zh-primary-light: #e8f0eb;
    --zh-primary-dark: #153532;
    --zh-primary-glow: rgba(43, 88, 79, 0.2);
    --zh-accent: #d2af6f;
    --zh-accent-dark: #b58d48;
    --zh-success: #4f7b62;
    --zh-warning: #b8873b;
    --zh-error: #b64b43;
    --zh-info: #4f756d;
    --zh-text-primary: #172825;
    --zh-text-secondary: #4f5f5a;
    --zh-text-tertiary: #78847f;
    --zh-text-muted: #78847f;
    --zh-text-disabled: #aeb8b3;
    --zh-border: #dce4df;
    --zh-bg: #f5f2e9;
    --zh-bg-card: #ffffff;
    --zh-bg-light: #eef2ed;
    --zh-bg-muted: #f0f4f1;
    --zh-dark: #153532;
    --zh-dark-deep: #0d2925;
    --zh-price: #9a6230;
    --zh-radius-xs: 6px;
    --zh-radius-sm: 10px;
    --zh-radius-md: 14px;
    --zh-radius-lg: 20px;
    --zh-radius-xl: 28px;
    --zh-radius-card: 24px;
    --zh-radius-btn: 999px;
    --zh-radius-pill: 999px;
    --zh-radius-full: 50%;
    --zh-space-xs: 4px;
    --zh-space-sm: 8px;
    --zh-space-md: 16px;
    --zh-space-lg: 24px;
    --zh-space-xl: 32px;
    --zh-space-xxl: 48px;
    --zh-section-gap: 76px;
    --zh-shadow-sm: 0 4px 14px rgba(21, 53, 50, 0.06);
    --zh-shadow-md: 0 12px 30px rgba(21, 53, 50, 0.09);
    --zh-shadow-lg: 0 22px 55px rgba(21, 53, 50, 0.13);
    --zh-shadow-hover: 0 24px 55px rgba(21, 53, 50, 0.16);
    --zh-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--zh-bg);
    color: var(--zh-text-primary);
    font-family: var(--zh-font-family);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.zh_menu_open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

a:hover {
    color: inherit;
}

img {
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

.zh_site_header {
    position: sticky;
    top: 0;
    z-index: 1050;
    border-bottom: 1px solid rgba(220, 228, 223, 0.8);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.zh_site_header.scrolled {
    background: rgba(255, 255, 255, 0.985);
    box-shadow: 0 10px 30px rgba(21, 53, 50, 0.09);
}

.zh_header_inner {
    display: flex;
    align-items: center;
    min-height: 88px;
    gap: 24px;
}

.zh_brand_logo {
    display: flex;
    align-items: center;
    width: 216px;
    flex: 0 0 216px;
}

.zh_brand_logo img {
    display: block;
    width: 100%;
    height: 64px;
    object-fit: contain;
    object-position: left center;
}

.zh_desktop_nav {
    min-width: 0;
    flex: 1 1 auto;
}

.zh_desktop_nav > ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.zh_desktop_nav > ul > li {
    position: relative;
}

.zh_desktop_nav > ul > li > a,
.zh_desktop_nav > ul > li > button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 44px;
    padding: 0 12px;
    border: 0;
    background: transparent;
    color: #344741;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
}

.zh_desktop_nav > ul > li > a::after,
.zh_desktop_nav > ul > li > button::after {
    content: "";
    position: absolute;
    right: 12px;
    bottom: 3px;
    left: 12px;
    height: 2px;
    border-radius: 999px;
    background: var(--zh-accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.zh_desktop_nav > ul > li > a:hover,
.zh_desktop_nav > ul > li > button:hover,
.zh_desktop_nav > ul > li > a.active {
    color: var(--zh-primary-dark);
}

.zh_desktop_nav > ul > li > a:hover::after,
.zh_desktop_nav > ul > li > button:hover::after,
.zh_desktop_nav > ul > li > a.active::after {
    transform: scaleX(1);
}

.zh_desktop_nav i {
    font-size: 9px;
}

.zh_nav_menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    width: 520px;
    padding: 20px;
    border: 1px solid var(--zh-border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.99);
    box-shadow: var(--zh-shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.zh_nav_menu::before,
.zh_account_menu::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 16px;
}

.zh_nav_has_menu:hover > .zh_nav_menu,
.zh_nav_has_menu:focus-within > .zh_nav_menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.zh_nav_menu_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--zh-border);
}

.zh_nav_menu_head span {
    color: var(--zh-text-primary);
    font-size: 15px;
    font-weight: 700;
}

.zh_nav_menu_head a {
    color: var(--zh-primary);
    font-size: 12px;
    font-weight: 600;
}

.zh_nav_menu_grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.zh_nav_menu_grid > a {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 12px 14px;
    border-radius: 12px;
    background: #f4f6f3;
}

.zh_nav_menu_grid > a:hover {
    background: var(--zh-primary-light);
    transform: translateY(-2px);
}

.zh_nav_menu_grid span {
    color: var(--zh-text-primary);
    font-size: 14px;
    font-weight: 700;
}

.zh_nav_menu_grid small {
    overflow: hidden;
    margin-top: 3px;
    color: var(--zh-text-tertiary);
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zh_nav_menu_compact {
    left: auto;
    right: 0;
    display: flex;
    width: 190px;
    padding: 10px;
    flex-direction: column;
    transform: translate(0, 10px);
}

.zh_nav_has_menu:hover > .zh_nav_menu_compact,
.zh_nav_has_menu:focus-within > .zh_nav_menu_compact {
    transform: translate(0, 0);
}

.zh_nav_menu_compact > a {
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--zh-text-secondary);
    font-size: 13px;
}

.zh_nav_menu_compact > a:hover {
    background: var(--zh-primary-light);
    color: var(--zh-primary-dark);
}

.zh_header_tools {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

.zh_header_search {
    display: flex;
    align-items: center;
    width: 224px;
    height: 42px;
    overflow: hidden;
    border: 1px solid var(--zh-border);
    border-radius: 999px;
    background: #f6f7f4;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.zh_header_search:focus-within {
    border-color: var(--zh-primary);
    background: #fff;
    box-shadow: 0 0 0 4px var(--zh-primary-glow);
}

.zh_header_search input {
    width: 100%;
    min-width: 0;
    height: 100%;
    padding: 0 4px 0 16px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--zh-text-primary);
    font-size: 13px;
}

.zh_header_search input::placeholder {
    color: var(--zh-text-tertiary);
}

.zh_header_search button {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border: 0;
    background: transparent;
    color: var(--zh-primary);
    place-items: center;
}

.zh_header_icon,
.zh_account_trigger,
.zh_mobile_toggle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    border: 1px solid var(--zh-border);
    border-radius: 999px;
    background: #fff;
    color: var(--zh-primary-dark);
}

.zh_header_icon {
    width: 42px;
    flex: 0 0 42px;
}

.zh_header_icon:hover,
.zh_account_trigger:hover,
.zh_mobile_toggle:hover {
    border-color: var(--zh-primary);
    background: var(--zh-primary);
    color: #fff;
}

.zh_cart_badge {
    position: absolute;
    top: -5px;
    right: -4px;
    display: grid;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border: 2px solid #fff;
    border-radius: 999px;
    background: var(--zh-price);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    place-items: center;
}

.zh_account_wrap {
    position: relative;
}

.zh_account_trigger {
    gap: 7px;
    min-width: 72px;
    padding: 0 14px;
    font-size: 12px;
    font-weight: 700;
}

.zh_account_trigger i {
    font-size: 15px;
}

.zh_account_menu {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    display: flex;
    width: 150px;
    padding: 8px;
    border: 1px solid var(--zh-border);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--zh-shadow-lg);
    opacity: 0;
    visibility: hidden;
    flex-direction: column;
    transform: translateY(8px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.zh_account_wrap:hover .zh_account_menu,
.zh_account_wrap:focus-within .zh_account_menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.zh_account_menu a {
    padding: 9px 11px;
    border-radius: 9px;
    color: var(--zh-text-secondary);
    font-size: 12px;
}

.zh_account_menu a:hover {
    background: var(--zh-primary-light);
    color: var(--zh-primary-dark);
}

.zh_mobile_toggle {
    display: none;
    width: 42px;
    flex: 0 0 42px;
}

.zh_mobile_overlay {
    position: fixed;
    z-index: 1090;
    inset: 0;
    background: rgba(8, 28, 24, 0.48);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.zh_mobile_overlay.active {
    opacity: 1;
    visibility: visible;
}

.zh_mobile_drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1100;
    width: min(88vw, 390px);
    height: 100vh;
    overflow-y: auto;
    padding: 22px;
    background: #fff;
    box-shadow: -24px 0 60px rgba(8, 28, 24, 0.2);
    transform: translateX(105%);
    transition: transform 0.28s ease;
}

.zh_mobile_drawer.active {
    transform: translateX(0);
}

.zh_mobile_drawer_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.zh_mobile_drawer_head img {
    width: 185px;
    height: 58px;
    object-fit: contain;
    object-position: left center;
}

.zh_mobile_drawer_head button {
    display: grid;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    background: var(--zh-primary-light);
    color: var(--zh-primary-dark);
    place-items: center;
}

.zh_mobile_search {
    display: flex;
    height: 46px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid var(--zh-border);
    border-radius: 999px;
    background: #f5f7f4;
}

.zh_mobile_search input {
    width: 100%;
    min-width: 0;
    padding: 0 16px;
    border: 0;
    outline: 0;
    background: transparent;
}

.zh_mobile_search button {
    width: 48px;
    flex: 0 0 48px;
    border: 0;
    background: var(--zh-primary);
    color: #fff;
}

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

.zh_mobile_nav > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    padding: 8px 12px;
    border-bottom: 1px solid #edf1ee;
    color: var(--zh-text-secondary);
    font-size: 14px;
    font-weight: 600;
}

.zh_mobile_nav > a:hover {
    border-radius: 10px;
    background: var(--zh-primary-light);
    color: var(--zh-primary-dark);
}

.zh_mobile_nav > a i {
    color: var(--zh-accent-dark);
    font-size: 10px;
}

.zh_mobile_nav_label {
    margin-top: 16px;
    padding: 7px 12px;
    color: var(--zh-text-tertiary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.zh_main {
    min-height: calc(100vh - 430px);
}

.zh_main_page {
    padding: 28px 0 64px;
}

.zh_page_container {
    min-height: 420px;
}

.zh_flash_wrap {
    padding-top: 18px;
}

.zh_alert {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding: 14px 18px;
    border: 1px solid transparent;
    border-radius: var(--zh-radius-md);
    box-shadow: var(--zh-shadow-sm);
    transition: opacity 0.26s ease, transform 0.26s ease;
}

.zh_alert.leaving {
    opacity: 0;
    transform: translateY(-8px);
}

.zh_alert_success {
    border-color: #bcd4c4;
    background: #edf7f0;
    color: #315d42;
}

.zh_alert_danger {
    border-color: #edc7c4;
    background: #fff1f0;
    color: #923d37;
}

.zh_alert_icon {
    display: grid;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: 999px;
    background: currentColor;
    place-items: center;
}

.zh_alert_icon i {
    color: #fff;
    font-size: 11px;
}

.zh_alert_content {
    flex: 1;
    font-size: 14px;
}

.zh_alert_close {
    display: grid;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.05);
    color: currentColor;
    place-items: center;
}

.zh_footer {
    overflow: hidden;
    background: var(--zh-dark);
    color: rgba(255, 255, 255, 0.7);
}

.zh_footer_grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.85fr) minmax(280px, 0.8fr);
    gap: 54px;
    padding: 64px 0 50px;
}

.zh_footer_logo_plate {
    display: inline-flex;
    width: min(100%, 318px);
    margin-bottom: 20px;
    padding: 8px 14px;
    border: 1px solid rgba(210, 175, 111, 0.28);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
}

.zh_footer_logo_plate img {
    width: 100%;
    height: 78px;
    object-fit: contain;
    object-position: left center;
}

.zh_footer_brand p {
    max-width: 470px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
    line-height: 1.9;
}

.zh_footer_channels {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.zh_footer_channels span {
    padding: 6px 12px;
    border: 1px solid rgba(210, 175, 111, 0.28);
    border-radius: 999px;
    color: #e3c997;
    font-size: 11px;
}

.zh_footer_links_group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.zh_footer_links_group > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.zh_footer_links_group h3 {
    margin: 6px 0 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.zh_footer_links_group a {
    margin-bottom: 11px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
}

.zh_footer_links_group a:hover {
    color: #e3c997;
    transform: translateX(3px);
}

.zh_footer_contact {
    align-self: start;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.065);
}

.zh_footer_contact_kicker {
    display: block;
    margin-bottom: 12px;
    color: #e3c997;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.zh_footer_contact_phone {
    display: block;
    margin-bottom: 18px;
    color: #fff;
    font-size: clamp(20px, 2vw, 27px);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.zh_footer_contact_phone:hover {
    color: #e3c997;
}

.zh_footer_contact_row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.zh_footer_contact_row i {
    width: 15px;
    margin-top: 4px;
    color: #e3c997;
    text-align: center;
}

.zh_footer_page_link {
    display: inline-block;
    margin-top: 15px;
    margin-right: 12px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 12px;
}

.zh_footer_page_link:hover {
    color: #e3c997;
}

.zh_footer_bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--zh-dark-deep);
}

.zh_footer_bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 62px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 12px;
}

.zh_footer_bottom a {
    color: rgba(255, 255, 255, 0.56);
}

.zh_footer_bottom a:hover {
    color: #e3c997;
}

.zh_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 26px;
    border: 1px solid transparent;
    border-radius: var(--zh-radius-pill);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

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

.zh_btn_primary:hover {
    border-color: var(--zh-primary-dark);
    background: var(--zh-primary-dark);
    color: #fff;
    box-shadow: 0 10px 24px var(--zh-primary-glow);
    transform: translateY(-2px);
}

.zh_btn_accent {
    border-color: var(--zh-accent);
    background: var(--zh-accent);
    color: var(--zh-dark-deep);
}

.zh_btn_accent:hover {
    border-color: var(--zh-accent-dark);
    background: var(--zh-accent-dark);
    color: #fff;
}

.zh_btn_outline {
    border-color: var(--zh-border);
    background: transparent;
    color: var(--zh-text-secondary);
}

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

.zh_btn_sm {
    padding: 8px 18px;
    font-size: 13px;
}

.zh_btn_lg {
    padding: 14px 34px;
    font-size: 15px;
}

.zh_breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 0 20px;
    padding: 0;
    color: var(--zh-text-tertiary);
    font-size: 13px;
}

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

.zh_pagination,
.zh_search_pagination {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    margin-top: 40px;
}

.zh_pagination .pagination,
.zh_search_pagination .pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.zh_pagination .page-link,
.zh_search_pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--zh-border);
    border-radius: 999px;
    background: #fff;
    color: var(--zh-text-secondary);
    box-shadow: var(--zh-shadow-sm);
    font-size: 13px;
}

.zh_pagination .page-item:first-child .page-link,
.zh_pagination .page-item:last-child .page-link,
.zh_search_pagination .page-item:first-child .page-link,
.zh_search_pagination .page-item:last-child .page-link {
    width: auto;
    min-width: 78px;
    padding: 0 17px;
}

.zh_pagination .page-link:hover,
.zh_search_pagination .page-link:hover,
.zh_pagination .page-item.active .page-link,
.zh_search_pagination .page-item.active .page-link {
    border-color: var(--zh-primary);
    background: var(--zh-primary);
    color: #fff;
}

.zh_pagination .page-item.disabled .page-link,
.zh_search_pagination .page-item.disabled .page-link {
    border-color: var(--zh-border);
    background: #f1f3f0;
    color: var(--zh-text-disabled);
    box-shadow: none;
}

@media (max-width: 1399.98px) {
    .zh_header_inner {
        gap: 16px;
    }

    .zh_brand_logo {
        width: 190px;
        flex-basis: 190px;
    }

    .zh_header_search {
        width: 190px;
    }

    .zh_desktop_nav > ul > li > a,
    .zh_desktop_nav > ul > li > button {
        padding: 0 9px;
        font-size: 13px;
    }
}

@media (max-width: 1199.98px) {
    .zh_desktop_nav,
    .zh_header_search,
    .zh_account_wrap {
        display: none;
    }

    .zh_header_inner {
        min-height: 76px;
    }

    .zh_brand_logo {
        width: 190px;
        flex-basis: 190px;
    }

    .zh_brand_logo img {
        height: 56px;
    }

    .zh_header_tools {
        margin-left: auto;
    }

    .zh_mobile_toggle {
        display: flex;
    }

    .zh_footer_grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    }

    .zh_footer_contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767.98px) {
    :root {
        --zh-section-gap: 52px;
    }

    .zh_header_inner {
        min-height: 68px;
        gap: 10px;
    }

    .zh_brand_logo {
        width: 158px;
        flex-basis: 158px;
    }

    .zh_brand_logo img {
        height: 48px;
    }

    .zh_header_icon,
    .zh_mobile_toggle {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .zh_main_page {
        padding: 20px 0 48px;
    }

    .zh_footer_grid {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 48px 0 38px;
    }

    .zh_footer_logo_plate {
        width: 280px;
    }

    .zh_footer_logo_plate img {
        height: 68px;
    }

    .zh_footer_contact {
        grid-column: auto;
    }

    .zh_footer_bottom .container {
        align-items: flex-start;
        min-height: auto;
        padding-top: 18px;
        padding-bottom: 18px;
        flex-direction: column;
    }
}

@media (max-width: 419.98px) {
    .zh_brand_logo {
        width: 138px;
        flex-basis: 138px;
    }

    .zh_header_tools {
        gap: 6px;
    }

    .zh_footer_links_group {
        gap: 20px;
    }
}
