:root {
	--navy: #171845;
	--navy-dark: #0c0d2d;
	--red: #ed1c2e;
	--ink: #252a3b;
	--muted: #707789;
	--line: #e3e6ec;
	--soft: #f5f6f8;
	--white: #fff;
	--width: 1240px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	color: var(--ink);
	background: var(--white);
	font-family: "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
	font-size: 15px;
	line-height: 1.75;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--red); }
img { display: block; max-width: 100%; height: auto; }
button,
input,
textarea,
select { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 32px), var(--width)); margin-inline: auto; }
.site-main { overflow: hidden; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.screen-reader-text:focus { z-index: 9999; top: 8px; left: 8px; width: auto; height: auto; padding: 10px 16px; clip: auto; color: var(--navy); background: #fff; }

.topbar { color: #777d8b; background: #f4f5f7; border-bottom: 1px solid #e5e7eb; font-size: 12px; }
.topbar-inner { min-height: 35px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.top-links { display: flex; gap: 20px; }
.top-links .top-menu { display: flex; gap: 20px; margin: 0; padding: 0; list-style: none; }
.top-links .top-menu li { margin: 0; }
.top-links a:hover,
.top-links .current-menu-item > a { color: var(--red); }
.head-main { min-height: 112px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: flex; align-items: center; gap: 24px; }
.brand-logo img,
.custom-logo-link img { width: auto; max-width: 250px; max-height: 72px; }
.brand-slogan { padding-left: 24px; border-left: 1px solid #d9dce3; }
.brand-slogan strong { display: block; color: var(--navy); font-size: 18px; line-height: 1.4; }
.brand-slogan span { color: #8b909e; font-size: 12px; letter-spacing: 1px; }
.phone { display: flex; align-items: center; gap: 13px; }
.phone-icon { width: 48px; height: 48px; display: grid; place-items: center; color: #fff; background: var(--red); border-radius: 50%; font-size: 20px; }
.phone small,
.phone strong { display: block; }
.phone small { color: #7b8090; }
.phone strong { color: var(--navy); font-size: 24px; line-height: 1.25; }
.ali-shop {
	display: flex;
	align-items: center;
	gap: 11px;
	margin-left: auto;
	margin-right: 10px;
	padding: 9px 14px 9px 9px;
	color: var(--navy);
	background: color-mix(in srgb, var(--red) 5%, #fff);
	border: 1px solid color-mix(in srgb, var(--red) 20%, #fff);
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.ali-shop:hover {
	color: var(--red);
	border-color: color-mix(in srgb, var(--red) 55%, #fff);
	box-shadow: 0 8px 24px color-mix(in srgb, var(--red) 14%, transparent);
	transform: translateY(-2px);
}
.ali-shop-icon {
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	flex: 0 0 42px;
	overflow: hidden;
	color: #fff;
	background: var(--red);
	border-radius: 6px;
	font-size: 21px;
	font-weight: 700;
}
.ali-shop-icon img { width: 100%; height: 100%; object-fit: contain; }
.ali-shop-copy small,
.ali-shop-copy strong { display: block; white-space: nowrap; }
.ali-shop-copy small { color: #8a8f9e; font-size: 11px; line-height: 1.3; }
.ali-shop-copy strong { margin-top: 2px; font-size: 15px; line-height: 1.35; }
.ali-shop-arrow { color: var(--red); font-size: 16px; }

.main-nav { position: relative; z-index: 50; color: #fff; background: var(--navy); }
.nav-inner { min-height: 54px; display: flex; align-items: stretch; }
.nav-inner > .menu,
.nav-inner > div > .menu { display: flex; margin: 0; padding: 0; list-style: none; }
.menu-item { position: relative; }
.main-nav .menu li { position: relative; }
.nav-inner .menu > li > a { min-height: 54px; display: flex; align-items: center; justify-content: center; padding: 13px 24px; font-weight: 500; }
.nav-inner .current-menu-item > a,
.nav-inner .current-menu-ancestor > a,
.nav-inner .current_page_item > a { background: var(--red); color: #fff; }
.nav-inner .menu > li > a:hover { color: #fff; background: rgba(255,255,255,.1); }
.main-nav .menu-item-has-children > a::after,
.main-nav .page_item_has_children > a::after { content: ""; width: 6px; height: 6px; margin: -4px 0 0 9px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg); }
.main-nav .sub-menu,
.main-nav .children { position: absolute; z-index: 20; top: 100%; left: 0; width: 230px; margin: 0; padding: 8px 0; list-style: none; color: var(--ink); background: #fff; border-top: 3px solid var(--red); box-shadow: 0 16px 38px rgba(0,0,0,.16); opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .2s ease, visibility .2s ease, transform .2s ease; }
.main-nav .menu-item:hover > .sub-menu,
.main-nav .menu-item:focus-within > .sub-menu,
.main-nav .page_item:hover > .children,
.main-nav .page_item:focus-within > .children { opacity: 1; visibility: visible; transform: none; }
.main-nav .sub-menu li,
.main-nav .children li { position: relative; }
.main-nav .sub-menu a,
.main-nav .children a { display: block; padding: 11px 18px; color: var(--ink); background: #fff; border-bottom: 1px solid #f0f1f3; }
.main-nav .sub-menu a:hover,
.main-nav .children a:hover,
.main-nav .sub-menu .current-menu-item > a,
.main-nav .children .current_page_item > a { color: #fff; background: var(--red); }
.main-nav .sub-menu .sub-menu,
.main-nav .children .children { top: -11px; left: 100%; }
.mobile-button { display: none; margin-left: auto; padding: 12px 4px; color: #fff; background: transparent; border: 0; gap: 8px; align-items: center; }
.mobile-button-close { display: none; }
.nav-backdrop { display: none; }

.home-hero { position: relative; height: 510px; color: #fff; background: var(--navy-dark); }
.hero-slide { position: absolute; inset: 0; display: flex; align-items: center; opacity: 0; visibility: hidden; transition: opacity .7s ease, visibility .7s ease; background-image: var(--hero-image, linear-gradient(135deg, var(--navy), var(--navy-dark))); background-position: center; background-repeat: no-repeat; background-size: cover; }
.hero-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,13,45,.86), rgba(12,13,45,.45) 50%, rgba(12,13,45,.08)); }
.hero-slide-alt { background-image: var(--hero-image, linear-gradient(135deg, var(--navy) 30%, var(--red))); }
.hero-slide-third { background-image: var(--hero-image, linear-gradient(135deg, var(--navy-dark), var(--navy) 65%, var(--red))); }
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-content { position: relative; z-index: 2; }
.hero-content > * { max-width: 620px; }
.hero-content > p { margin: 0; letter-spacing: 4px; font-size: 13px; }
.hero-content h1,
.hero-content h2 { margin: 14px 0 18px; font-size: clamp(38px, 4vw, 46px); line-height: 1.23; }
.hero-content > div { color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.8; }
.button { display: inline-flex; align-items: center; justify-content: center; margin-top: 28px; padding: 11px 29px; color: #fff; background: var(--red); border: 2px solid var(--red); font-weight: 600; transition: .2s; }
.button:hover { color: #fff; background: #c81122; border-color: #c81122; transform: translateY(-2px); }
.button-dark { background: var(--navy); border-color: var(--navy); }
.hero-dots { position: absolute; z-index: 4; bottom: 22px; left: 50%; display: flex; gap: 9px; transform: translateX(-50%); }
.hero-dots button { width: 28px; height: 4px; padding: 0; background: rgba(255,255,255,.45); border: 0; }
.hero-dots button.is-active { background: var(--red); }

.keyword-bar { border-bottom: 1px solid var(--line); box-shadow: 0 5px 18px rgba(23,24,69,.05); }
.keyword-inner { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 30px; color: var(--muted); }
.keyword-inner strong { color: var(--red); }
.search-form { display: flex; width: 280px; max-width: 100%; }
.search-form label { flex: 1; }
.search-field { width: 100%; height: 40px; padding: 0 12px; border: 1px solid var(--line); border-right: 0; outline: none; }
.search-field:focus { border-color: var(--navy); }
.search-submit { min-width: 64px; color: #fff; background: var(--navy); border: 0; }

.section { padding: 78px 0; }
.section-soft { background: var(--soft); }
.section-head { margin-bottom: 40px; text-align: center; }
.section-head h2 { margin: 0; color: var(--navy); font-size: clamp(28px, 3vw, 36px); line-height: 1.3; }
.section-head p { margin: 6px 0 0; color: #a0a5b1; letter-spacing: 2px; }
.section-head::after { content: ""; display: block; width: 45px; height: 3px; margin: 15px auto 0; background: var(--red); }
.products-layout { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 24px; }
.product-categories { align-self: start; color: rgba(255,255,255,.78); background: var(--navy); }
.product-categories h2,
.product-categories h3 { margin: 0; padding: 20px; color: #fff; background: var(--red); font-size: 20px; }
.product-categories a { display: flex; justify-content: space-between; padding: 13px 19px; border-bottom: 1px solid rgba(255,255,255,.1); }
.product-categories a:hover,
.product-categories a.is-active { padding-left: 23px; color: #fff; background: rgba(255,255,255,.1); border-left: 3px solid var(--red); }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.product-card,
.news-card { overflow: hidden; background: #fff; border: 1px solid var(--line); transition: .25s ease; }
.product-card:hover,
.news-card:hover { border-color: transparent; box-shadow: 0 14px 35px rgba(23,24,69,.12); transform: translateY(-4px); }
.card-image { height: 195px; display: block; overflow: hidden; background: #e9ecf2; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: .4s ease; }
.product-card:hover .card-image img,
.news-card:hover .card-image img { transform: scale(1.05); }
.image-placeholder { min-height: 100%; display: grid; place-items: center; color: #969cac; background: linear-gradient(135deg, #eceff4, #dfe3ea); text-align: center; }
.default-thumbnail { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 18px; }
.card-body h2,
.card-body h3 { margin: 0 0 8px; color: var(--navy); font-size: 17px; line-height: 1.5; }
.card-body p { min-height: 50px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.card-body time { display: block; margin-bottom: 7px; color: #989eaa; font-size: 12px; }
.text-link { display: inline-block; margin-top: 13px; color: var(--red); font-size: 13px; font-weight: 600; }
.demo-content { position: relative; }
.demo-content::after { content: "DEMO"; position: absolute; top: 10px; right: 10px; padding: 2px 8px; color: #fff; background: var(--red); font-size: 10px; letter-spacing: 1px; }

.field-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #fff; }
.field-grid article { position: relative; min-height: 190px; padding: 28px; overflow: hidden; color: #fff; background-color: var(--navy); background-position: center; background-size: cover; }
.field-grid article.has-background-image::before { content: ""; position: absolute; z-index: 0; inset: 0; background: linear-gradient(135deg, rgba(12,13,45,.9), rgba(23,24,69,.68)); }
.field-grid article::after { content: ""; position: absolute; right: -35px; bottom: -45px; width: 120px; height: 120px; border: 20px solid rgba(255,255,255,.04); border-radius: 50%; }
.field-grid article > * { position: relative; z-index: 1; }
.field-grid span,
.adv-grid span { color: var(--red); font-size: 35px; font-weight: 700; }
.field-grid h3 { margin: 12px 0 6px; }
.field-grid p { margin: 0; color: rgba(255,255,255,.56); font-size: 13px; }
.advantages { color: #fff; background: linear-gradient(color-mix(in srgb, var(--navy-dark) 95%, transparent), color-mix(in srgb, var(--navy-dark) 95%, transparent)), radial-gradient(circle at 90% 20%, var(--red), var(--navy) 38%, var(--navy-dark)); }
.advantages .section-head h2 { color: #fff; }
.advantages .section-head p { color: rgba(255,255,255,.4); }
.adv-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(255,255,255,.13); }
.adv-grid article { min-height: 245px; padding: 30px 26px; border-right: 1px solid rgba(255,255,255,.13); transition: .25s; }
.adv-grid article:last-child { border-right: 0; }
.adv-grid article:hover { background: var(--red); }
.adv-grid article:hover span { color: rgba(255,255,255,.3); }
.adv-grid h3 { margin: 18px 0 8px; }
.adv-grid p { margin: 0; color: rgba(255,255,255,.58); font-size: 13px; }
.adv-grid article:hover p { color: rgba(255,255,255,.88); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 55px; align-items: center; }
.about-visual { position: relative; min-height: 380px; display: grid; place-items: center; overflow: hidden; color: rgba(255,255,255,.2); background: linear-gradient(135deg, var(--navy), var(--navy-dark)); font-size: clamp(55px, 9vw, 120px); font-weight: 800; letter-spacing: -8px; }
.about-visual::after { content: ""; position: absolute; width: 220px; height: 220px; right: -60px; bottom: -60px; background: var(--red); border-radius: 50%; opacity: .9; }
.about-visual-media { background: #0c0d2d; font-size: inherit; letter-spacing: normal; }
.about-visual-media::after { display: none; }
.about-visual-media img,
.about-visual-media video,
.about-visual-media iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.about-visual-media img,
.about-visual-media video { object-fit: cover; }
.about-grid h2 { margin: 5px 0 16px; color: var(--navy); font-size: 32px; }
.about-grid p:not(.eyebrow) { color: var(--muted); }
.eyebrow { margin: 0; color: var(--red); font-weight: 700; letter-spacing: 2px; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.inner-hero { padding: 70px 0 28px; color: #fff; background: linear-gradient(105deg, color-mix(in srgb, var(--navy-dark) 98%, transparent), color-mix(in srgb, var(--navy) 78%, transparent)), radial-gradient(circle at 85% 25%, var(--red), var(--navy) 30%, var(--navy-dark)); }
.inner-hero p { margin: 0; color: rgba(255,255,255,.48); letter-spacing: 3px; font-size: 12px; }
.inner-hero h1 { max-width: 900px; margin: 8px 0 30px; font-size: clamp(28px, 4vw, 43px); line-height: 1.3; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; color: rgba(255,255,255,.6); font-size: 12px; }
.breadcrumbs a:hover { color: #fff; }
.content-sidebar { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 42px; padding-top: 65px; padding-bottom: 75px; }
.post-list { min-width: 0; }
.list-card { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 25px; padding: 0 0 26px; margin-bottom: 26px; border-bottom: 1px solid var(--line); }
.list-card-text { grid-template-columns: 1fr; }
.list-thumb { height: 180px; overflow: hidden; background: #edf0f4; }
.list-thumb img { width: 100%; height: 100%; object-fit: cover; }
.list-card time,
.result-type { color: #979daa; font-size: 12px; }
.list-card h2 { margin: 5px 0 8px; color: var(--navy); font-size: 21px; line-height: 1.45; }
.list-card p { margin: 0; color: var(--muted); }
.sidebar .widget { margin-bottom: 24px; padding: 22px; background: var(--soft); border-top: 3px solid var(--navy); }
.widget-title { margin: 0 0 15px; color: var(--navy); font-size: 18px; }
.widget ul { margin: 0; padding: 0; list-style: none; }
.widget li { padding: 8px 0; border-bottom: 1px solid var(--line); }
.widget .search-form { width: 100%; }
.navigation.pagination { margin-top: 35px; }
.nav-links { display: flex; flex-wrap: wrap; gap: 7px; }
.page-numbers { min-width: 40px; height: 40px; display: grid; place-items: center; padding: 0 10px; background: var(--soft); }
.page-numbers.current,
.page-numbers:hover { color: #fff; background: var(--red); }
.entry-single > header { margin-bottom: 28px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.entry-single > header h1 { margin: 0 0 8px; color: var(--navy); font-size: 34px; line-height: 1.4; }
.entry-meta { display: flex; gap: 18px; color: #959ba8; font-size: 12px; }
.single-featured { margin-bottom: 30px; }
.single-featured img { width: 100%; }
.entry-content { color: #404658; }
.entry-content > *:first-child { margin-top: 0; }
.entry-content h2,
.entry-content h3 { color: var(--navy); line-height: 1.4; }
.entry-content a { color: var(--red); text-decoration: underline; }
.entry-content img { margin-block: 24px; }
.entry-content table { width: 100%; border-collapse: collapse; }
.entry-content th,
.entry-content td { padding: 10px; border: 1px solid var(--line); }
.entry-content .wp-block-columns { display: flex; gap: 24px; margin-block: 28px; }
.entry-content .wp-block-column { flex: 1 1 0; padding: 22px; background: var(--soft); }
.entry-content blockquote { margin: 28px 0; padding: 18px 22px; color: var(--muted); background: var(--soft); border-left: 4px solid var(--red); }
.entry-tags { margin-top: 30px; padding: 14px; background: var(--soft); }
.post-navigation-links { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 30px 0; padding: 20px 0; border-block: 1px solid var(--line); }
.post-navigation-links div:last-child { text-align: right; }
.related-section h2 { color: var(--navy); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.related-grid article { padding: 16px; background: var(--soft); }
.related-grid time { color: #999; font-size: 11px; }
.related-grid h3 { margin: 5px 0 0; font-size: 14px; }
.comments-area { margin-top: 42px; padding-top: 32px; border-top: 1px solid var(--line); }
.comments-title,
.comment-reply-title { color: var(--navy); font-size: 22px; }
.comment-list { margin: 0 0 30px; padding: 0; list-style: none; }
.comment-list .comment { margin-top: 18px; padding: 20px; background: var(--soft); }
.comment-list .children { margin-left: 28px; padding-left: 0; list-style: none; }
.comment-author { display: flex; align-items: center; gap: 10px; }
.comment-author img { border-radius: 50%; }
.comment-metadata { margin: 7px 0 12px; color: #9298a5; font-size: 12px; }
.comment-content { color: var(--muted); }
.comment-form label { display: block; margin-bottom: 5px; font-size: 13px; font-weight: 600; }
.comment-form input:not([type="submit"]),
.comment-form textarea { width: 100%; padding: 11px 13px; border: 1px solid var(--line); }
.comment-form .submit { padding: 11px 25px; color: #fff; background: var(--red); border: 0; cursor: pointer; }

.product-archive-layout { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 30px; padding-top: 65px; padding-bottom: 75px; }
.archive-categories { position: sticky; top: 20px; }
.archive-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.archive-description { margin-bottom: 25px; padding: 18px 22px; color: var(--muted); background: var(--soft); border-left: 3px solid var(--red); }
.product-detail { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; padding-top: 65px; padding-bottom: 55px; }
.product-gallery { min-height: 430px; background: var(--soft); border: 1px solid var(--line); }
.product-gallery img { width: 100%; height: 100%; max-height: 540px; object-fit: contain; }
.product-summary h2 { margin: 5px 0 15px; color: var(--navy); font-size: 34px; line-height: 1.35; }
.product-excerpt { color: var(--muted); }
.spec-table { width: 100%; margin-top: 22px; border-collapse: collapse; }
.spec-table th,
.spec-table td { padding: 11px 14px; border: 1px solid var(--line); text-align: left; }
.spec-table th { width: 28%; color: var(--navy); background: var(--soft); }
.product-body { padding-bottom: 70px; }
.product-body .entry-content { max-width: 930px; }

.narrow-page { max-width: 900px; padding-top: 65px; padding-bottom: 75px; }
.wide-page > .entry-content { padding-top: 65px; padding-bottom: 75px; }
.wide-page > .entry-content > *:not(.alignwide):not(.alignfull) { width: min(calc(100% - 32px), var(--width)); max-width: var(--width); margin-left: auto; margin-right: auto; }
.wide-page .alignwide { width: min(calc(100% - 16px), calc(var(--width) + 160px)); max-width: calc(var(--width) + 160px); margin-left: auto; margin-right: auto; }
.wide-page .alignfull { width: 100%; max-width: none; }
.contact-layout { display: grid; grid-template-columns: 370px minmax(0, 1fr); gap: 45px; padding-top: 65px; padding-bottom: 75px; }
.contact-panel { padding: 30px; color: #fff; background: var(--navy); }
.contact-panel h2 { margin: 6px 0 25px; }
.contact-panel dl { margin: 0; }
.contact-panel dt { color: rgba(255,255,255,.45); font-size: 12px; }
.contact-panel dd { margin: 3px 0 18px; font-size: 17px; overflow-wrap: anywhere; }
.contact-panel a:hover { color: #fff; }
.wpcf7 input:not([type="submit"]),
.wpcf7 textarea,
.contact-content input:not([type="submit"]),
.contact-content textarea { width: 100%; padding: 10px 12px; border: 1px solid var(--line); }
.wpcf7-submit,
.contact-content input[type="submit"] { padding: 11px 28px; color: #fff; background: var(--red); border: 0; }
.error-page { padding: 80px 0; text-align: center; }
.error-page > strong { color: var(--red); font-size: clamp(80px, 15vw, 170px); line-height: 1; }
.error-page h1 { color: var(--navy); }
.error-page .search-form { margin: 25px auto 0; }
.empty-state { padding: 40px; background: var(--soft); }

.inquiry-cta { padding: 38px 0; color: #fff; background: var(--red); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-inner h2 { margin: 0; font-size: 26px; }
.cta-inner p { margin: 3px 0 0; color: rgba(255,255,255,.72); }
.cta-inner > a { color: #fff; font-size: clamp(24px, 3vw, 36px); font-weight: 700; white-space: nowrap; }
.site-footer { color: rgba(255,255,255,.58); background: var(--navy-dark); }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer a:hover { color: #fff; }
.footer-nav-row { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding-top: 28px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-logo { flex: 0 0 auto; }
.footer-logo img { display: block; width: auto; max-width: 220px; max-height: 48px; filter: brightness(0) invert(1); opacity: .95; }
.footer-navigation { min-width: 0; }
.footer-menu { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 10px 36px; margin: 0; }
.footer-menu li { margin: 0; }
.footer-menu a { color: rgba(255,255,255,.9); font-size: 15px; white-space: nowrap; }
.footer-contact-area { padding: 36px 0 40px; }
.footer-contact-layout { display: grid; grid-template-columns: 108px minmax(0, 1fr) minmax(260px, 340px); gap: 36px 48px; align-items: center; }
.footer-contact-layout:not(:has(.footer-qr-box)) { grid-template-columns: minmax(0, 1fr) minmax(260px, 340px); }
.footer-qr-box { width: 108px; height: 108px; padding: 6px; background: #fff; }
.footer-qr { display: block; width: 100%; height: 100%; object-fit: contain; }
.footer-contact-list { min-width: 0; }
.footer-contact-list p { margin: 0 0 10px; color: rgba(255,255,255,.78); font-size: 14px; line-height: 1.7; }
.footer-contact-list p:last-child { margin-bottom: 0; }
.footer-contact-list span { color: rgba(255,255,255,.78); }
.footer-contact-list a { color: rgba(255,255,255,.88); }
.footer-contact-list a:hover { color: #fff; }
.footer-side-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; text-align: right; min-width: 0; }
.footer-social-links { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 10px; }
.footer-social-item { position: relative; display: inline-flex; }
.footer-social-icon { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; padding: 0; color: #fff; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); border-radius: 50%; cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.footer-social-icon:hover,
.footer-social-icon:focus { color: #fff; background: var(--red); border-color: var(--red); outline: none; }
.footer-social-icon svg { width: 18px; height: 18px; fill: currentColor; }
.footer-social-qr { position: absolute; z-index: 5; right: 0; bottom: calc(100% + 12px); width: 148px; padding: 12px; color: var(--ink); background: #fff; box-shadow: 0 12px 32px rgba(0,0,0,.22); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(6px); transition: opacity .2s ease, visibility .2s ease, transform .2s ease; }
.footer-social-qr::after { content: ""; position: absolute; right: 12px; top: 100%; border: 7px solid transparent; border-top-color: #fff; }
.footer-social-qr img { display: block; width: 100%; height: auto; aspect-ratio: 1; object-fit: contain; }
.footer-social-qr em { display: block; margin-top: 8px; color: #62646b; font-size: 12px; font-style: normal; text-align: center; line-height: 1.3; }
.footer-social-item:hover .footer-social-qr,
.footer-social-item:focus-within .footer-social-qr { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
.footer-legal { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 6px 10px; }
.footer-legal a,
.footer-legal i { color: rgba(255,255,255,.55); font-size: 12px; font-style: normal; }
.footer-records { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.footer-records span { color: rgba(255,255,255,.45); font-size: 12px; line-height: 1.55; }
.back-top { position: fixed; z-index: 60; right: 18px; bottom: 22px; width: 48px; height: 48px; color: #fff; background: var(--navy); border: 0; opacity: 0; visibility: hidden; transform: translateY(12px); transition: .2s; }
.back-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.back-top:hover { background: var(--red); }
.mobile-contact-bar { display: none; }
.wechat-modal { position: fixed; inset: 0; z-index: 120; display: flex; align-items: center; justify-content: center; padding: 24px 16px calc(24px + env(safe-area-inset-bottom)); }
.wechat-modal[hidden] { display: none !important; }
.wechat-modal-backdrop { position: absolute; inset: 0; background: rgba(12, 13, 45, .55); }
.wechat-modal-dialog { position: relative; z-index: 1; width: min(100%, 320px); padding: 28px 22px 24px; text-align: center; background: #fff; box-shadow: 0 18px 48px rgba(12, 13, 45, .28); }
.wechat-modal-close { position: absolute; top: 8px; right: 10px; width: 36px; height: 36px; border: 0; background: transparent; color: #62646b; font-size: 28px; line-height: 1; cursor: pointer; }
.wechat-modal-close:hover,
.wechat-modal-close:focus { color: var(--red); }
.wechat-modal-title { margin: 0 0 10px; color: var(--navy); font-size: 1.2rem; font-weight: 700; }
.wechat-modal-text { margin: 0 0 16px; color: #62646b; font-size: .92rem; line-height: 1.55; }
.wechat-modal-qr { display: block; width: min(100%, 220px); height: auto; margin: 0 auto; }
body.wechat-modal-open { overflow: hidden; }

@media (min-width: 1101px) {
	.main-nav {
		position: sticky;
		top: 0;
		z-index: 80;
		box-shadow: 0 2px 14px rgba(12, 13, 45, .14);
	}
	.archive-categories { top: 74px; }
}

@media (max-width: 1100px) {
	.brand-slogan { display: none; }
	.mobile-button { position: relative; z-index: 120; display: flex; }
	.main-nav.is-open .mobile-button {
		position: fixed;
		top: 16px;
		right: min(360px, 86vw);
		z-index: 110;
		width: 44px;
		height: 44px;
		margin: 0;
		padding: 0;
		transform: translateX(-12px);
		justify-content: center;
		gap: 0;
		color: #fff;
		background: var(--navy);
		border: 1px solid rgba(255, 255, 255, .28);
		border-radius: 50%;
		box-shadow: 0 4px 18px rgba(0, 0, 0, .28);
	}
	.main-nav.is-open .mobile-button-open { display: none; }
	.main-nav.is-open .mobile-button-close { display: inline; font-size: 20px; line-height: 1; }
	.main-nav.is-open .mobile-button-label {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
		border: 0;
	}
	.nav-backdrop { position: fixed; z-index: 90; inset: 0; display: block; background: rgba(12,13,45,.45); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .25s ease, visibility .25s ease; }
	.main-nav.is-open .nav-backdrop { opacity: 1; visibility: visible; pointer-events: auto; }
	.nav-inner { min-height: 54px; flex-direction: column; }
	.nav-inner > .menu,
	.nav-inner > div > .menu { position: fixed; z-index: 100; top: 0; right: 0; bottom: 0; width: min(360px, 86vw); display: block; padding: 24px 20px 30px; overflow-y: auto; color: #fff; background: var(--navy-dark); box-shadow: -15px 0 50px rgba(0,0,0,.25); transform: translateX(110%); transition: transform .3s ease; }
	.main-nav.is-open .menu { transform: none; }
	.nav-inner .menu > li > a { min-height: 48px; justify-content: flex-start; padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,.1); }
	.main-nav .sub-menu,
	.main-nav .children { position: static; width: auto; display: none; padding: 0 0 0 15px; color: rgba(255,255,255,.7); background: transparent; border-top: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
	.main-nav .submenu-open > .sub-menu,
	.main-nav .submenu-open > .children { display: block; }
	.main-nav .submenu-open > a::after { transform: rotate(225deg); margin-top: 2px; }
	.main-nav .sub-menu a,
	.main-nav .children a { color: rgba(255,255,255,.78); background: transparent; border-bottom-color: rgba(255,255,255,.08); }
	.main-nav .sub-menu a:hover,
	.main-nav .children a:hover { color: #fff; background: rgba(255,255,255,.08); }
	.products-layout,
	.product-archive-layout { grid-template-columns: 210px minmax(0, 1fr); }
	.archive-product-grid { grid-template-columns: repeat(2, 1fr); }
	.adv-grid { grid-template-columns: repeat(2, 1fr); }
	.adv-grid article:nth-child(2) { border-right: 0; }
	.adv-grid article { border-bottom: 1px solid rgba(255,255,255,.13); }
	.footer-contact-layout,
	.footer-contact-layout:not(:has(.footer-qr-box)) { grid-template-columns: 108px minmax(0, 1fr); }
	.footer-side-meta { grid-column: 1 / -1; align-items: flex-start; text-align: left; }
	.footer-social-links,
	.footer-legal,
	.footer-records { align-items: flex-start; justify-content: flex-start; }
	.footer-nav-row { align-items: flex-start; flex-direction: column; gap: 20px; }
	.footer-menu { justify-content: flex-start; gap: 10px 28px; }
}

@media (max-width: 780px) {
	body.has-mobile-contact { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
	.topbar-inner { min-height: 32px; }
	.top-links { display: none; }
	.head-main { min-height: 82px; gap: 12px; }
	.brand { min-width: 0; flex: 1 1 auto; }
	.brand-logo img,
	.custom-logo-link img { max-width: 150px; max-height: 48px; }
	.ali-shop { flex: 0 0 auto; margin-left: 0; padding: 7px 10px 7px 7px; gap: 8px; }
	.ali-shop-icon { width: 36px; height: 36px; flex-basis: 36px; font-size: 16px; }
	.ali-shop-copy small { font-size: 10px; }
	.ali-shop-copy strong { font-size: 13px; }
	.phone { display: none; }
	.home-hero { height: 470px; }
	.hero-content h1,
	.hero-content h2 { font-size: 34px; }
	.keyword-inner { align-items: stretch; flex-direction: column; padding: 14px 0; gap: 12px; }
	.search-form { width: 100%; }
	.section { padding: 58px 0; }
	.products-layout,
	.product-archive-layout,
	.content-sidebar,
	.product-detail,
	.contact-layout,
	.about-grid { grid-template-columns: 1fr; }
	.product-categories { display: grid; grid-template-columns: repeat(2, 1fr); }
	.product-categories h2,
	.product-categories h3 { grid-column: 1 / -1; }
	.archive-categories { position: static; }
	.product-grid,
	.archive-product-grid,
	.news-grid,
	.field-grid { grid-template-columns: repeat(2, 1fr); }
	.about-visual { min-height: 300px; }
	.content-sidebar { padding-top: 45px; }
	.list-card { grid-template-columns: 210px minmax(0, 1fr); }
	.product-gallery { min-height: 300px; }
	.related-grid { grid-template-columns: 1fr; }
	.entry-content .wp-block-columns { display: block; }
	.entry-content .wp-block-column { margin-bottom: 15px; }
	.contact-panel { order: 2; }
	.cta-inner { align-items: flex-start; flex-direction: column; }
	.footer-contact-layout,
	.footer-contact-layout:not(:has(.footer-qr-box)) { grid-template-columns: 1fr; gap: 24px; }
	.footer-side-meta { grid-column: auto; }
	.mobile-contact-bar { position: fixed; z-index: 90; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: repeat(4, 1fr); min-height: 64px; padding-bottom: env(safe-area-inset-bottom); background: rgba(255,255,255,.98); border-top: 1px solid #e5e6e9; box-shadow: 0 -3px 16px rgba(12,13,45,.1); }
	.mobile-contact-bar a,
	.mobile-contact-bar button { min-width: 0; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 3px; padding: 7px 4px 6px; color: #62646b; font: inherit; font-size: 12px; line-height: 1.1; text-align: center; background: transparent; border: 0; cursor: pointer; -webkit-appearance: none; appearance: none; }
	.mobile-contact-bar a + a,
	.mobile-contact-bar a + button,
	.mobile-contact-bar button + a { border-left: 1px solid #f0f0f2; }
	.mobile-contact-bar a:hover,
	.mobile-contact-bar a:focus,
	.mobile-contact-bar button:hover,
	.mobile-contact-bar button:focus { color: var(--red); background: var(--soft); }
	.mobile-contact-bar svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
	.mobile-contact-bar a:nth-child(2) svg path,
	.mobile-contact-bar button:nth-child(2) svg path { fill: currentColor; stroke: none; }
	.mobile-contact-bar span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
	.has-mobile-contact .back-top { right: 14px; bottom: calc(78px + env(safe-area-inset-bottom)); width: 42px; height: 42px; }
}

@media (max-width: 520px) {
	.head-main { gap: 8px; }
	.brand-logo img,
	.custom-logo-link img { max-width: 120px; max-height: 42px; }
	.ali-shop { padding: 6px 8px 6px 6px; gap: 6px; }
	.ali-shop-icon { width: 32px; height: 32px; flex-basis: 32px; font-size: 14px; border-radius: 4px; }
	.ali-shop-copy small { display: none; }
	.ali-shop-copy strong { margin-top: 0; font-size: 12px; }
	.ali-shop-arrow { font-size: 13px; }
	.product-grid,
	.archive-product-grid,
	.news-grid,
	.field-grid,
	.adv-grid { grid-template-columns: 1fr; }
	.footer-menu { justify-content: flex-start; gap: 12px 20px; }
	.footer-qr-box { width: 96px; height: 96px; }
	.product-categories { display: block; }
	.adv-grid article { border-right: 0; }
	.list-card { grid-template-columns: 1fr; }
	.list-thumb { height: 210px; }
	.entry-single > header h1,
	.product-summary h2 { font-size: 27px; }
	.post-navigation-links { grid-template-columns: 1fr; }
	.post-navigation-links div:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*,
	*::before,
	*::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
