/* ============================================================
   Hello Aerovista — AEROVISTA 领翔航空
   设计令牌 + 全部组件样式（对照设计稿 1440 宽基准）
   ============================================================ */

:root {
	--av-navy: #0A1A2F;
	--av-navy-2: #0F2138;
	--av-navy-border: #1E3253;
	--av-gold: #C6A15B;
	--av-gold-hover: #D2B06C;
	--av-bg-light: #F4F6F8;
	--av-line: #E3E6EB;
	--av-ink: #0E1726;
	--av-body: #5A6472;
	--av-sub: #A8B4C4;
	--av-muted: #8695A8;
	--av-hero-grad: linear-gradient(180deg, #0C1D31 0%, #122B48 46%, #0E2139 100%);
	--av-container: 1320px;
	--av-header-h: 88px;
	--av-font: -apple-system, BlinkMacSystemFont, "PingFang SC", "HarmonyOS Sans SC",
		"Microsoft YaHei", "Noto Sans SC", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
	--av-en: "Helvetica Neue", Helvetica, Arial, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
}

html {
	scroll-behavior: smooth;
}

body.av-theme {
	font-family: var(--av-font);
	color: var(--av-ink);
	background: #fff;
	margin: 0;
	-webkit-font-smoothing: antialiased;
}

body.av-theme,
.av-theme h1, .av-theme h2, .av-theme h3, .av-theme h4, .av-theme h5,
.av-theme p, .av-theme ul, .av-theme ol, .av-theme figure {
	margin: 0;
	padding: 0;
}

.av-theme img {
	max-width: 100%;
	display: block;
}

.av-container {
	max-width: var(--av-container);
	margin: 0 auto;
	padding-left: 24px;
	padding-right: 24px;
}

.av-icon {
	display: inline-flex;
	width: 1em;
	height: 1em;
	flex: none;
}
.av-icon svg {
	width: 100%;
	height: 100%;
}

/* ------------------------------------------------------------
   按钮
   ------------------------------------------------------------ */
.av-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 2px;
	border-radius: 4px;
	font-size: 14px;
	line-height: 1;
	padding: 17px 30px;
	cursor: pointer;
	text-decoration: none;
	transition: all .25s ease;
	white-space: nowrap;
	border: 0;
}
.av-btn .en {
	font-family: var(--av-en);
	letter-spacing: 3px;
	font-size: 12px;
	transform: translateY(0.5px);
}
.av-btn__sep {
	display: inline-block;
	width: 1px;
	height: 14px;
	background: currentColor;
	opacity: .35;
	margin: 0 12px;
	font-style: normal;
}
.av-btn--gold {
	background: var(--av-gold);
	color: var(--av-navy);
	font-weight: 600;
}
.av-btn--gold:hover {
	background: var(--av-gold-hover);
	color: var(--av-navy);
}
.av-btn--ghost-gold {
	background: transparent;
	border: 1px solid var(--av-gold);
	color: #fff;
}
.av-btn--ghost-gold:hover {
	background: var(--av-gold);
	color: var(--av-navy);
}
.av-btn--navy {
	background: var(--av-navy);
	color: #fff;
	font-weight: 500;
	letter-spacing: 4px;
	padding: 15px 30px;
	width: 100%;
}
.av-btn--navy:hover {
	background: #14273F;
	color: #fff;
}

/* ------------------------------------------------------------
   页头
   ------------------------------------------------------------ */
.av-header {
	position: sticky;
	top: 0;
	z-index: 900;
	background: var(--av-navy);
	height: var(--av-header-h);
	transition: box-shadow .3s ease;
}
.av-header.is-scrolled {
	box-shadow: 0 6px 24px rgba(4, 12, 24, .35);
}
.av-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--av-header-h);
	gap: 24px;
}

.av-logo {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: #fff;
}
.av-logo__mark {
	width: 30px;
	height: 30px;
	color: var(--av-gold);
	display: inline-flex;
	transform: rotate(0deg);
}
.av-logo__mark .av-icon { width: 100%; height: 100%; }
.av-logo__text {
	display: flex;
	flex-direction: column;
	line-height: 1;
}
.av-logo__en {
	font-family: var(--av-en);
	font-size: 19px;
	font-weight: 700;
	letter-spacing: 7px;
	color: #fff;
}
.av-logo__cn {
	font-size: 11px;
	color: var(--av-gold);
	letter-spacing: 6px;
	margin-top: 6px;
}

.av-header__right {
	display: flex;
	align-items: center;
	gap: 40px;
	flex: 1;
	justify-content: flex-end;
}
.av-nav ul {
	display: flex;
	list-style: none;
	gap: 38px;
}
.av-nav__item a {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	text-decoration: none;
}
.av-nav__item .cn {
	font-size: 15px;
	font-weight: 500;
	color: #fff;
	transition: color .2s;
}
.av-nav__item .en {
	font-family: var(--av-en);
	font-size: 10px;
	letter-spacing: 2.5px;
	color: var(--av-muted);
	transition: color .2s;
}
.av-nav__item:hover .cn,
.av-nav__item.is-active .cn {
	color: var(--av-gold);
}
.av-nav__item.is-active .en {
	color: var(--av-gold);
}

.av-header__actions {
	display: flex;
	align-items: center;
	gap: 20px;
}
.av-cart {
	position: relative;
	width: 22px;
	height: 22px;
	color: #fff;
	display: inline-flex;
	transition: color .2s;
}
.av-cart .av-icon { width: 100%; height: 100%; }
.av-cart:hover { color: var(--av-gold); }
.av-cart__count {
	position: absolute;
	top: -7px;
	right: -9px;
	min-width: 16px;
	height: 16px;
	border-radius: 8px;
	background: var(--av-gold);
	color: var(--av-navy);
	font-size: 10px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 4px;
	line-height: 1;
}
.av-lang {
	display: flex;
	align-items: center;
	gap: 12px;
}
.av-lang__item {
	font-size: 13px;
	color: var(--av-muted);
	text-decoration: none;
	font-family: var(--av-font);
	transition: color .2s;
}
.av-lang__item.is-active {
	color: var(--av-gold);
}
.av-lang__sep {
	width: 1px;
	height: 12px;
	background: rgba(255, 255, 255, .25);
}
.av-search-btn {
	background: none;
	border: 0;
	color: #fff;
	width: 22px;
	height: 22px;
	padding: 0;
	cursor: pointer;
	display: inline-flex;
}
.av-search-btn .av-icon { width: 100%; height: 100%; }
.av-search-btn:hover { color: var(--av-gold); }
.av-btn--header {
	padding: 15px 26px;
}

.av-burger {
	display: none;
	background: none;
	border: 0;
	color: #fff;
	width: 26px;
	height: 26px;
	padding: 0;
	cursor: pointer;
}
.av-burger .av-icon { width: 100%; height: 100%; }

/* 搜索条 */
.av-searchbar {
	position: absolute;
	left: 0; right: 0; top: 100%;
	background: #0D2138;
	border-top: 1px solid rgba(255,255,255,.06);
	display: none;
	padding: 18px 0;
}
.av-searchbar.is-open { display: block; }
.av-searchbar form {
	display: flex;
	gap: 16px;
	align-items: center;
}
.av-searchbar__input {
	flex: 1;
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--av-navy-border);
	color: #fff;
	font-size: 15px;
	padding: 10px 2px;
	outline: none;
	font-family: var(--av-font);
}
.av-searchbar__input::placeholder { color: var(--av-muted); }
.av-searchbar__submit {
	background: none;
	border: 0;
	color: var(--av-gold);
	width: 22px;
	height: 22px;
	cursor: pointer;
	padding: 0;
}
.av-searchbar__submit .av-icon { width: 100%; height: 100%; }

/* 移动端菜单 */
.av-mobile-menu {
	display: none;
	position: fixed;
	inset: var(--av-header-h) 0 0 0;
	background: rgba(6, 14, 26, .98);
	z-index: 890;
	padding: 40px 24px;
	flex-direction: column;
	gap: 8px;
	overflow-y: auto;
}
.av-mobile-menu.is-open { display: flex; }
.av-mobile-menu__link {
	display: flex;
	align-items: baseline;
	gap: 14px;
	text-decoration: none;
	padding: 16px 4px;
	border-bottom: 1px solid rgba(255,255,255,.07);
}
.av-mobile-menu__link .cn { font-size: 19px; color: #fff; }
.av-mobile-menu__link .en { font-size: 11px; letter-spacing: 3px; color: var(--av-muted); font-family: var(--av-en); }
.av-mobile-menu__cta { margin-top: 28px; }

/* ------------------------------------------------------------
   通用区块
   ------------------------------------------------------------ */
.av-section {
	padding: 104px 0;
}
.av-section--white { background: #fff; }
.av-section--gray { background: var(--av-bg-light); }
.av-section--dark { background: var(--av-navy); }

.av-eyebrow {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 12px;
	color: var(--av-gold);
	letter-spacing: 2px;
	margin-bottom: 16px;
}
.av-eyebrow .en {
	font-family: var(--av-en);
	letter-spacing: 3.5px;
	font-size: 11px;
	color: var(--av-gold);
	opacity: .85;
}
.av-eyebrow--onDark .cn { color: var(--av-gold); }
.av-eyebrow--onDark .en { color: var(--av-gold); }

.av-section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 48px;
}
.av-section-head__title {
	font-size: 34px;
	font-weight: 700;
	letter-spacing: 1px;
	color: var(--av-ink);
	line-height: 1.3;
}
.av-section-head--dark .av-section-head__title { color: #fff; }
.av-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: var(--av-ink);
	text-decoration: none;
	transition: color .2s;
}
.av-link-arrow .av-icon {
	width: 16px;
	height: 16px;
	transition: transform .25s;
}
.av-link-arrow:hover { color: var(--av-gold); }
.av-link-arrow:hover .av-icon { transform: translateX(4px); }
.av-link-arrow--gold { color: var(--av-gold); font-size: 13px; }
.av-link-arrow--gold:hover { color: var(--av-gold-hover); }
.av-section-head .av-link-arrow { font-size: 13px; }
.av-section-head--dark .av-link-arrow { color: var(--av-sub); }

/* 通用网格 */
.av-grid { display: grid; gap: 28px; }
.av-grid--3 { grid-template-columns: repeat(3, 1fr); }
.av-grid--4 { grid-template-columns: repeat(4, 1fr); }
.av-grid--products { grid-template-columns: repeat(3, 1fr); }

/* ------------------------------------------------------------
   首页 Hero
   ------------------------------------------------------------ */
.av-hero {
	position: relative;
	background: var(--av-hero-grad);
	overflow: hidden;
}
.av-hero__inner {
	position: relative;
	z-index: 2;
	padding-top: 130px;
	padding-bottom: 90px;
}
.av-hero__eyebrow {
	display: flex;
	align-items: center;
	gap: 16px;
	color: var(--av-gold);
	font-size: 13px;
	letter-spacing: 3px;
	margin-bottom: 28px;
}
.av-hero__eyebrow i {
	display: inline-block;
	width: 44px;
	height: 1px;
	background: var(--av-gold);
	opacity: .8;
}
.av-hero__title {
	font-size: 62px;
	font-weight: 700;
	line-height: 1.28;
	color: #fff;
	letter-spacing: 2px;
}
.av-hero__title .gold { color: var(--av-gold); }
.av-hero__en {
	font-family: var(--av-en);
	color: rgba(255, 255, 255, .38);
	font-size: 14px;
	letter-spacing: 7px;
	margin-top: 22px;
}
.av-hero__desc {
	color: var(--av-sub);
	font-size: 15px;
	line-height: 2.1;
	max-width: 520px;
	margin-top: 26px;
}
.av-hero__actions {
	display: flex;
	gap: 16px;
	margin-top: 42px;
}
.av-hero__plane {
	position: absolute;
	top: -6%;
	right: -8%;
	height: 108%;
	width: auto;
	opacity: .5;
	z-index: 1;
	pointer-events: none;
}

/* 统计条 */
.av-stats {
	margin-top: 96px;
}
.av-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.av-stats__item .num {
	font-family: var(--av-en);
	font-size: 42px;
	font-weight: 700;
	color: var(--av-gold);
	line-height: 1;
}
.av-stats__item .cn {
	color: #fff;
	font-size: 14px;
	margin-top: 14px;
}
.av-stats__item .en {
	font-family: var(--av-en);
	color: var(--av-muted);
	font-size: 10px;
	letter-spacing: 2px;
	margin-top: 6px;
}

/* ------------------------------------------------------------
   内页页头
   ------------------------------------------------------------ */
.av-hero-page {
	background: var(--av-hero-grad);
	padding: 96px 0 88px;
	position: relative;
	overflow: hidden;
}
.av-hero-page__back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--av-gold);
	font-size: 13px;
	text-decoration: none;
	margin-bottom: 26px;
}
.av-hero-page__back .av-icon { width: 14px; height: 14px; }
.av-hero-page__back:hover { color: var(--av-gold-hover); }
.av-hero-page__title {
	font-size: 46px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 2px;
	line-height: 1.25;
}
.av-hero-page__title--post {
	font-size: 34px;
	max-width: 900px;
	line-height: 1.5;
}
.av-hero-page__en {
	font-family: var(--av-en);
	color: var(--av-muted);
	letter-spacing: 5px;
	font-size: 15px;
	margin-top: 14px;
}
.av-hero-page__desc {
	color: var(--av-sub);
	font-size: 15px;
	line-height: 2;
	max-width: 640px;
	margin-top: 22px;
}
.av-hero-page__meta {
	color: var(--av-sub);
	font-size: 14px;
	margin-bottom: 16px;
}
.av-hero-page--detail {
	padding-bottom: 88px;
}
.av-hero-page--detail .av-detail__img {
	margin-top: 52px;
	border: 1px solid var(--av-navy-border);
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 30px 60px rgba(4, 12, 24, .35);
}

/* ------------------------------------------------------------
   机型卡片
   ------------------------------------------------------------ */
.av-card-aircraft {
	background: #fff;
	border: 1px solid var(--av-line);
	border-radius: 4px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow .3s ease, transform .3s ease;
}
.av-card-aircraft:hover {
	box-shadow: 0 18px 44px rgba(10, 26, 47, .10);
	transform: translateY(-4px);
}
.av-card-aircraft__img {
	display: block;
	aspect-ratio: 393 / 318;
	overflow: hidden;
	background: var(--av-navy);
}
.av-card-aircraft__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}
.av-card-aircraft:hover .av-card-aircraft__img img {
	transform: scale(1.04);
}
.av-card-aircraft__body {
	padding: 24px 28px 26px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.av-card-aircraft__code {
	font-family: var(--av-en);
	color: var(--av-gold);
	font-size: 12px;
	letter-spacing: 3px;
}
.av-card-aircraft__title {
	font-size: 21px;
	font-weight: 700;
	color: var(--av-ink);
	margin-top: 8px;
	display: flex;
	align-items: baseline;
	gap: 12px;
}
.av-card-aircraft__title a { color: inherit; text-decoration: none; }
.av-card-aircraft__title .en {
	font-family: var(--av-en);
	font-size: 11px;
	font-weight: 400;
	color: var(--av-muted);
	letter-spacing: 2px;
}
.av-card-aircraft__desc {
	color: var(--av-body);
	font-size: 14px;
	line-height: 1.85;
	margin-top: 10px;
}
.av-card-aircraft__specs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	border-top: 1px solid var(--av-line);
	margin-top: 18px;
	padding-top: 16px;
}
.av-card-aircraft__specs .v {
	font-size: 17px;
	font-weight: 700;
	color: var(--av-ink);
}
.av-card-aircraft__specs .l {
	color: var(--av-muted);
	font-size: 12px;
	margin-top: 4px;
}
.av-card-aircraft__more {
	margin-top: auto;
	padding-top: 18px;
}

/* ------------------------------------------------------------
   服务卡片
   ------------------------------------------------------------ */
.av-card-service {
	background: var(--av-navy-2);
	border: 1px solid var(--av-navy-border);
	border-radius: 4px;
	padding: 38px 34px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	transition: transform .3s ease, border-color .3s ease;
}
.av-card-service:hover {
	transform: translateY(-4px);
	border-color: rgba(198, 161, 91, .45);
}
.av-card-service__icon {
	width: 56px;
	height: 56px;
	border: 1px solid var(--av-gold);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--av-gold);
}
.av-card-service__icon .av-icon {
	width: 24px;
	height: 24px;
}
.av-card-service__num {
	font-family: var(--av-en);
	color: var(--av-gold);
	font-size: 13px;
	letter-spacing: 4px;
	margin-top: 26px;
}
.av-card-service h3 {
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	margin-top: 12px;
	letter-spacing: 1px;
}
.av-card-service__desc {
	color: var(--av-sub);
	font-size: 14px;
	line-height: 1.9;
	margin-top: 14px;
}
.av-card-service .av-link-arrow {
	margin-top: 22px;
}

/* ------------------------------------------------------------
   商品卡片
   ------------------------------------------------------------ */
.av-card-product {
	background: #fff;
	border: 1px solid var(--av-line);
	border-radius: 4px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow .3s ease, transform .3s ease;
}
.av-card-product:hover {
	box-shadow: 0 18px 44px rgba(10, 26, 47, .10);
	transform: translateY(-4px);
}
.av-card-product__img {
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: var(--av-navy);
}
.av-card-product__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}
.av-card-product:hover .av-card-product__img img {
	transform: scale(1.05);
}
.av-card-product__body {
	padding: 22px 26px 26px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.av-card-product__cat {
	color: var(--av-gold);
	font-size: 12px;
	letter-spacing: 4px;
}
.av-card-product__title {
	font-size: 17px;
	font-weight: 600;
	color: var(--av-ink);
	margin-top: 10px;
	line-height: 1.5;
}
.av-card-product__title a { color: inherit; text-decoration: none; }
.av-card-product__title a:hover { color: var(--av-gold); }
.av-card-product__price {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 10px;
	font-size: 21px;
	font-weight: 700;
	color: var(--av-ink);
}
.av-card-product__price .woocommerce-Price-currencySymbol {
	font-size: 15px;
	margin-right: 2px;
}
.av-card-product__price del { display: none; }
.av-card-product__cart-ico {
	color: var(--av-muted);
	display: inline-flex;
	width: 18px;
	height: 18px;
}
.av-card-product__cart-ico .av-icon { width: 100%; height: 100%; }
.av-card-product__add {
	margin-top: 16px;
}
.av-card-product__add.loading { opacity: .6; pointer-events: none; }
.av-card-product__add.added::after { content: "✓"; margin-left: 10px; }

/* ------------------------------------------------------------
   新闻
   ------------------------------------------------------------ */
.av-card-news {
	background: #fff;
	border: 1px solid var(--av-line);
	border-radius: 4px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow .3s ease, transform .3s ease;
}
.av-card-news:hover {
	box-shadow: 0 18px 44px rgba(10, 26, 47, .10);
	transform: translateY(-4px);
}
.av-card-news__img {
	display: block;
	aspect-ratio: 393 / 240;
	overflow: hidden;
	background: var(--av-navy);
}
.av-card-news__img img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}
.av-card-news:hover .av-card-news__img img { transform: scale(1.04); }
.av-card-news__body {
	padding: 22px 26px 26px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.av-card-news__date {
	font-family: var(--av-en);
	color: var(--av-gold);
	font-size: 12px;
	letter-spacing: 3px;
}
.av-card-news__title {
	font-size: 16px;
	font-weight: 600;
	color: var(--av-ink);
	line-height: 1.65;
	margin-top: 10px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.av-card-news__title a { color: inherit; text-decoration: none; }
.av-card-news__title a:hover { color: var(--av-gold); }
.av-card-news__excerpt {
	color: var(--av-body);
	font-size: 13px;
	line-height: 1.8;
	margin-top: 10px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.av-card-news .av-link-arrow {
	margin-top: auto;
	padding-top: 16px;
	font-size: 13px;
}

/* 新闻头条 */
.av-news-featured {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 48px;
	align-items: center;
	margin-bottom: 64px;
}
.av-news-featured__img {
	position: relative;
	display: block;
	aspect-ratio: 393 / 240;
	overflow: hidden;
	border-radius: 2px;
	background: var(--av-navy);
}
.av-news-featured__img img {
	width: 100%; height: 100%;
	object-fit: cover;
}
.av-news-featured__tag {
	position: absolute;
	top: 18px; left: 18px;
	background: rgba(10, 26, 47, .85);
	color: #fff;
	font-size: 12px;
	letter-spacing: 2px;
	padding: 8px 14px;
	border-radius: 2px;
}
.av-news-featured__meta {
	color: var(--av-gold);
	font-size: 13px;
	letter-spacing: 2px;
}
.av-news-featured__title {
	font-size: 27px;
	font-weight: 700;
	color: var(--av-ink);
	line-height: 1.55;
	margin-top: 16px;
}
.av-news-featured__title a { color: inherit; text-decoration: none; }
.av-news-featured__title a:hover { color: var(--av-gold); }
.av-news-featured__excerpt {
	color: var(--av-body);
	font-size: 14px;
	line-height: 1.9;
	margin-top: 16px;
}
.av-news-featured .av-link-arrow { margin-top: 22px; }

/* 新闻行 */
.av-news-rows {
	display: flex;
	flex-direction: column;
}
.av-news-row {
	display: grid;
	grid-template-columns: 120px 90px 1fr 24px;
	align-items: center;
	gap: 24px;
	padding: 22px 6px;
	border-bottom: 1px solid var(--av-line);
	text-decoration: none;
	transition: background .2s;
}
.av-news-row:first-child { border-top: 1px solid var(--av-line); }
.av-news-row:hover { background: rgba(10, 26, 47, .02); }
.av-news-row .date {
	font-family: var(--av-en);
	color: var(--av-muted);
	font-size: 13px;
}
.av-news-row .tag {
	display: inline-block;
	font-size: 12px;
	padding: 5px 14px;
	border-radius: 2px;
	width: fit-content;
}
.av-news-row .tag--gold {
	background: rgba(198, 161, 91, .14);
	color: #8F7038;
}
.av-news-row .tag--blue {
	background: rgba(30, 50, 83, .08);
	color: var(--av-navy);
}
.av-news-row .title {
	color: var(--av-ink);
	font-size: 15px;
	font-weight: 500;
}
.av-news-row:hover .title { color: var(--av-gold); }
.av-news-row .go {
	color: var(--av-gold);
	display: inline-flex;
	width: 18px; height: 18px;
}
.av-news-row .go .av-icon { width: 100%; height: 100%; }
.av-archive__sub {
	font-size: 17px;
	font-weight: 600;
	color: var(--av-ink);
	margin: 8px 0 8px;
}

/* ------------------------------------------------------------
   CTA 条
   ------------------------------------------------------------ */
.av-cta {
	background: var(--av-navy);
	padding: 70px 0;
}
.av-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
}
.av-cta__left h2 {
	color: #fff;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 1px;
}
.av-cta__left p {
	color: var(--av-muted);
	font-size: 14px;
	margin-top: 12px;
}
.av-cta__right {
	display: flex;
	align-items: center;
	gap: 40px;
}
.av-cta__hotline .label {
	display: flex;
	align-items: center;
	gap: 12px;
}
.av-cta__hotline .cn {
	color: var(--av-gold);
	font-size: 12px;
	letter-spacing: 2px;
}
.av-cta__hotline .en {
	font-family: var(--av-en);
	color: var(--av-muted);
	font-size: 11px;
	letter-spacing: 3px;
}
.av-cta__hotline .tel {
	font-family: var(--av-en);
	color: var(--av-gold);
	font-size: 30px;
	font-weight: 700;
	margin-top: 6px;
}

/* ------------------------------------------------------------
   页脚
   ------------------------------------------------------------ */
.av-footer {
	background: var(--av-navy);
	padding-top: 88px;
	margin-top: 0;
}
.av-footer__grid {
	display: grid;
	grid-template-columns: 1.45fr repeat(4, 1fr) 1.5fr;
	gap: 48px 40px;
}
.av-footer__desc {
	color: var(--av-muted);
	font-size: 13.5px;
	line-height: 2;
	margin-top: 26px;
	max-width: 340px;
}
.av-footer__social {
	display: flex;
	gap: 12px;
	margin-top: 26px;
}
.av-footer__social-btn {
	width: 40px; height: 40px;
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--av-gold);
	transition: all .25s;
}
.av-footer__social-btn .av-icon { width: 18px; height: 18px; }
.av-footer__social-btn:hover {
	background: var(--av-gold);
	color: var(--av-navy);
	border-color: var(--av-gold);
}
.av-footer__title {
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 1px;
	display: flex;
	align-items: baseline;
	gap: 10px;
}
.av-footer__title .en {
	font-family: var(--av-en);
	font-size: 13px;
	color: var(--av-sub);
	letter-spacing: 2px;
	font-weight: 400;
}
.av-footer__col ul {
	list-style: none;
	margin-top: 20px;
}
.av-footer__col li a {
	color: var(--av-sub);
	font-size: 14px;
	line-height: 2.7;
	text-decoration: none;
	transition: color .2s;
}
.av-footer__col li a:hover { color: var(--av-gold); }
.av-footer__newslabel {
	font-family: var(--av-en);
	color: var(--av-muted);
	font-size: 11px;
	letter-spacing: 4px;
	margin-top: 16px;
}
.av-newsletter { margin-top: 4px; }
.av-newsletter__row {
	display: flex;
	align-items: center;
	gap: 14px;
	border-bottom: 1px solid var(--av-navy-border);
	padding-bottom: 12px;
	margin-top: 14px;
}
.av-newsletter__row input {
	flex: 1;
	background: transparent;
	border: 0;
	outline: 0;
	color: #fff;
	font-size: 14px;
	font-family: var(--av-font);
}
.av-newsletter__row input::placeholder { color: var(--av-muted); }
.av-newsletter__row button {
	width: 42px; height: 42px;
	flex: none;
	background: var(--av-gold);
	color: var(--av-navy);
	border: 0;
	border-radius: 4px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background .2s;
}
.av-newsletter__row button .av-icon { width: 17px; height: 17px; }
.av-newsletter__row button:hover { background: var(--av-gold-hover); }
.av-newsletter__note {
	color: var(--av-muted);
	font-size: 12px;
	margin-top: 16px;
}
.av-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, .07);
	margin-top: 72px;
	padding: 26px 0 30px;
	display: flex;
	align-items: center;
	gap: 32px;
}
.av-footer__copy {
	color: var(--av-muted);
	font-size: 13px;
}
.av-footer__legal {
	display: flex;
	gap: 26px;
	margin-left: auto;
}
.av-footer__legal a {
	color: var(--av-sub);
	font-size: 13px;
	text-decoration: none;
}
.av-footer__legal a:hover { color: var(--av-gold); }
.av-footer__langs {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 13px;
}
.av-footer__langs i {
	width: 1px; height: 12px;
	background: rgba(255, 255, 255, .25);
}
.av-footer__langs span { color: var(--av-gold); }
.av-footer__langs a {
	color: var(--av-muted);
	text-decoration: none;
}
.av-footer__langs a:hover { color: var(--av-gold); }

/* ------------------------------------------------------------
   机型详情
   ------------------------------------------------------------ */
.av-detail__img {
	border-radius: 4px;
	overflow: hidden;
	background: var(--av-navy);
}
.av-detail__img img,
.av-detail__img-el {
	width: 100%;
	height: auto;
	display: block;
}
.av-detail { padding-top: 0; }

.av-specs-note {
	text-align: right;
	color: var(--av-muted);
	font-size: 13px;
	margin-bottom: 22px;
}
.av-specs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border: 1px solid var(--av-line);
	border-radius: 4px;
	overflow: hidden;
	background: #fff;
}
.av-specs__cell {
	padding: 30px 32px;
	border-right: 1px solid var(--av-line);
	border-bottom: 1px solid var(--av-line);
}
.av-specs__cell:nth-child(4n) { border-right: 0; }
.av-specs__cell:nth-child(n+5) { border-bottom: 0; }
.av-specs__cell .v {
	font-size: 22px;
	font-weight: 700;
	color: var(--av-ink);
}
.av-specs__cell .l {
	margin-top: 10px;
	display: flex;
	align-items: baseline;
	gap: 10px;
}
.av-specs__cell .cn {
	color: var(--av-body);
	font-size: 13px;
}
.av-specs__cell .en {
	font-family: var(--av-en);
	color: var(--av-muted);
	font-size: 10.5px;
	letter-spacing: 1.5px;
}

.av-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.av-gallery__item {
	position: relative;
	border-radius: 4px;
	overflow: hidden;
	background: var(--av-navy);
	aspect-ratio: 9 / 7;
}
.av-gallery__item img {
	width: 100%; height: 100%;
	object-fit: cover;
}
.av-gallery__item figcaption {
	position: absolute;
	left: 16px; bottom: 16px;
	background: rgba(10, 26, 47, .72);
	color: rgba(255, 255, 255, .9);
	font-size: 12px;
	letter-spacing: 1px;
	padding: 8px 14px;
	border-radius: 2px;
}

.av-cabin {
	background: var(--av-navy);
	padding: 100px 0;
}
.av-cabin__inner {
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: 64px;
	align-items: center;
}
.av-cabin__title {
	color: #fff;
	font-size: 32px;
	font-weight: 700;
	letter-spacing: 1px;
}
.av-cabin__text {
	color: var(--av-sub);
	font-size: 14.5px;
	line-height: 2;
	margin-top: 20px;
}
.av-cabin__list {
	list-style: none;
	margin-top: 26px;
}
.av-cabin__list li {
	color: rgba(255, 255, 255, .92);
	font-size: 14.5px;
	padding: 16px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
	display: flex;
	align-items: center;
	gap: 14px;
}
.av-cabin__list li::before {
	content: "";
	width: 5px; height: 5px;
	background: var(--av-gold);
	border-radius: 50%;
	flex: none;
}
.av-cabin__right {
	position: relative;
	border-radius: 4px;
	overflow: hidden;
	aspect-ratio: 11 / 7.6;
	background: url("../img/cabin-bg.jpg") center/cover no-repeat, var(--av-navy-2);
}
.av-cabin__right::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("") center/cover no-repeat;
}
.av-cabin__tag {
	position: absolute;
	top: 20px; left: 20px;
	background: rgba(15, 33, 56, .92);
	border: 1px solid var(--av-navy-border);
	color: #fff;
	font-size: 13px;
	letter-spacing: 1px;
	padding: 10px 18px;
	border-radius: 3px;
	z-index: 2;
}

/* ------------------------------------------------------------
   筛选标签（机队页）
   ------------------------------------------------------------ */
.av-archive { padding-top: 72px; }
.av-filter {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}
.av-filter__tab {
	padding: 11px 24px;
	border-radius: 3px;
	border: 1px solid var(--av-line);
	background: #fff;
	color: var(--av-body);
	font-size: 14px;
	text-decoration: none;
	transition: all .2s;
}
.av-filter__tab:hover {
	border-color: var(--av-navy);
	color: var(--av-navy);
}
.av-filter__tab.is-active,
.av-filter__tab.current {
	background: var(--av-navy);
	border-color: var(--av-navy);
	color: #fff;
}

/* ------------------------------------------------------------
   商城
   ------------------------------------------------------------ */
.av-shop-layout {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 56px;
	align-items: start;
	padding: 64px 0 104px;
}
.av-shop-side {
	position: sticky;
	top: calc(var(--av-header-h) + 24px);
}
.av-shop-side__title {
	font-size: 16px;
	font-weight: 700;
	color: var(--av-ink);
	margin-bottom: 16px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--av-line);
	letter-spacing: 1px;
}
.av-shop-side ul { list-style: none; }
.av-shop-side li a {
	display: block;
	color: var(--av-body);
	font-size: 14px;
	padding: 7px 0;
	text-decoration: none;
	transition: color .2s, padding-left .2s;
}
.av-shop-side li a:hover,
.av-shop-side li.current-cat a {
	color: var(--av-gold);
	padding-left: 6px;
}
.av-shop-promo {
	background: var(--av-navy);
	border-radius: 4px;
	padding: 26px 24px;
	margin-top: 34px;
}
.av-shop-promo h4 {
	color: #fff;
	font-size: 15px;
	letter-spacing: 1px;
}
.av-shop-promo p {
	color: var(--av-sub);
	font-size: 13px;
	line-height: 1.9;
	margin-top: 10px;
}
.av-sortbar__open {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 28px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--av-line);
}

/* ------------------------------------------------------------
   关于页
   ------------------------------------------------------------ */
.av-story { background: #fff; padding: 110px 0; }
.av-story__inner {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 64px;
	align-items: center;
}
.av-story__imgwrap {
	position: relative;
	border-radius: 4px;
	overflow: hidden;
}
.av-story__imgwrap img { width: 100%; }
.av-story__badge {
	position: absolute;
	top: 28px; left: 28px;
	background: rgba(15, 33, 56, .9);
	border: 1px solid var(--av-navy-border);
	padding: 18px 22px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	border-radius: 3px;
}
.av-story__badge .est {
	font-family: var(--av-en);
	color: var(--av-gold);
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 2px;
}
.av-story__badge .txt {
	color: rgba(255, 255, 255, .85);
	font-size: 12px;
	letter-spacing: 1px;
}
.av-story__title {
	font-size: 32px;
	font-weight: 700;
	color: var(--av-ink);
	letter-spacing: 1px;
	line-height: 1.4;
}
.av-story__text {
	margin-top: 26px;
}
.av-story__text p {
	color: var(--av-body);
	font-size: 14.5px;
	line-height: 2.1;
	margin-bottom: 18px;
}

.av-milestones { background: var(--av-bg-light); padding: 100px 0; }
.av-milestones__title {
	font-size: 32px;
	font-weight: 700;
	color: var(--av-ink);
	margin-bottom: 48px;
}
.av-milestones__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}
.av-milestones__card {
	background: #fff;
	border-radius: 4px;
	padding: 34px 30px;
	border: 1px solid var(--av-line);
}
.av-milestones__card .year {
	font-family: var(--av-en);
	color: var(--av-gold);
	font-size: 26px;
	font-weight: 700;
}
.av-milestones__card h3 {
	color: var(--av-ink);
	font-size: 17px;
	margin-top: 14px;
}
.av-milestones__card p {
	color: var(--av-body);
	font-size: 13.5px;
	line-height: 1.9;
	margin-top: 12px;
}

.av-values { background: var(--av-navy); padding: 100px 0; }
.av-values__title {
	color: #fff;
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 48px;
	letter-spacing: 1px;
}
.av-values__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}
.av-values__card {
	background: var(--av-navy-2);
	border: 1px solid var(--av-navy-border);
	border-radius: 4px;
	padding: 34px 30px;
}
.av-values__card .num {
	font-family: var(--av-en);
	color: var(--av-gold);
	font-size: 13px;
	letter-spacing: 4px;
}
.av-values__card h3 {
	color: #fff;
	font-size: 18px;
	margin-top: 16px;
}
.av-values__card p {
	color: var(--av-sub);
	font-size: 13.5px;
	line-height: 1.9;
	margin-top: 12px;
}

/* ------------------------------------------------------------
   服务页区块
   ------------------------------------------------------------ */
.av-service-block { padding: 92px 0; background: #fff; }
.av-service-block--dark { background: var(--av-navy); }
.av-service-block__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}
.av-service-block__left .av-card-service__icon { margin: 0; }
.av-service-block__left h2 {
	font-size: 30px;
	font-weight: 700;
	color: var(--av-ink);
	margin-top: 14px;
	letter-spacing: 1px;
}
.av-service-block--dark .av-service-block__left h2 { color: #fff; }
.av-service-block__desc {
	color: var(--av-body);
	font-size: 14.5px;
	line-height: 2;
	margin-top: 18px;
}
.av-service-block--dark .av-service-block__desc { color: var(--av-sub); }
.av-service-block__right ul { list-style: none; }
.av-service-block__right li {
	color: var(--av-ink);
	font-size: 15px;
	padding: 18px 0;
	border-bottom: 1px solid var(--av-line);
	display: flex;
	align-items: center;
	gap: 14px;
}
.av-service-block__right li::before {
	content: "";
	width: 5px; height: 5px;
	background: var(--av-gold);
	border-radius: 50%;
	flex: none;
}
.av-service-block--dark .av-service-block__right li {
	color: rgba(255, 255, 255, .92);
	border-bottom-color: rgba(255, 255, 255, .08);
}

/* ------------------------------------------------------------
   文章详情
   ------------------------------------------------------------ */
.av-post__layout {
	max-width: 860px;
}
.av-post__thumb {
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 44px;
}
.av-post__content {
	font-size: 15px;
	line-height: 2.1;
	color: var(--av-body);
}
.av-post__content p { margin-bottom: 20px; }
.av-post__content h2, .av-post__content h3 {
	color: var(--av-ink);
	margin: 30px 0 16px;
}

/* ------------------------------------------------------------
   WooCommerce 页面（购物车 / 结算 / 我的账户）
   ------------------------------------------------------------ */
.av-theme.woocommerce-page .woocommerce,
.av-theme.woocommerce-account .woocommerce {
	max-width: none;
	padding: 0;
}
.av-theme.woocommerce-page .av-wc-container,
.av-theme.woocommerce-account .av-wc-container {
	padding-top: 64px;
	padding-bottom: 100px;
}
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-message {
	border-top: 0;
	border-left: 3px solid var(--av-gold);
	background: #fff;
	color: var(--av-ink);
	border-radius: 4px;
	box-shadow: 0 6px 20px rgba(10, 26, 47, .06);
	padding: 16px 20px;
	list-style: none;
	margin: 0 0 26px;
}
.woocommerce-message::before,
.woocommerce-info::before { color: var(--av-gold); }

/* 购物车表格 */
.woocommerce table.shop_table,
.av-theme .woocommerce table.shop_table {
	border: 1px solid var(--av-line);
	border-radius: 4px;
	border-collapse: separate;
	border-spacing: 0;
	width: 100%;
	background: #fff;
}
.woocommerce table.shop_table th {
	background: var(--av-bg-light);
	color: var(--av-ink);
	font-size: 12px;
	letter-spacing: 2px;
	padding: 15px 18px;
	text-align: left;
}
.woocommerce table.shop_table td {
	border-top: 1px solid var(--av-line);
	padding: 20px 18px;
	color: var(--av-ink);
	font-size: 14px;
	vertical-align: middle;
}
.woocommerce table.shop_table img {
	width: 76px;
	border-radius: 4px;
	border: 1px solid var(--av-line);
}
.woocommerce table.shop_table .product-name a {
	color: var(--av-ink);
	font-weight: 500;
	text-decoration: none;
}
.woocommerce table.shop_table .product-name a:hover {
	color: var(--av-gold);
}
.woocommerce table.shop_table .product-name .variation {
	color: var(--av-muted);
	font-size: 12.5px;
	margin-top: 6px;
}
.woocommerce table.shop_table td.product-price,
.woocommerce table.shop_table td.product-subtotal {
	font-weight: 600;
}
.woocommerce a.remove {
	color: var(--av-muted) !important;
	width: 26px;
	height: 26px;
	line-height: 24px;
	border-radius: 50%;
}
.woocommerce a.remove:hover {
	background: var(--av-gold) !important;
	color: #fff !important;
}
.woocommerce .quantity .qty {
	border: 1px solid var(--av-line);
	border-radius: 3px;
	height: 42px;
	width: 64px;
	text-align: center;
	font-size: 14px;
	color: var(--av-ink);
}
.woocommerce table.shop_table .actions {
	padding: 16px 18px;
}
.woocommerce table.shop_table .coupon .input-text {
	border: 1px solid var(--av-line) !important;
	border-radius: 3px;
	height: 44px;
	padding: 0 14px;
	width: 200px;
	font-size: 13px;
	outline: none;
}
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt {
	background: var(--av-navy);
	color: #fff;
	border-radius: 4px;
	font-size: 13.5px;
	padding: 13px 26px;
	font-weight: 500;
	transition: background .2s;
	line-height: 1.2;
}
.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
	background: #14273F;
	color: #fff;
}
.woocommerce button.button:disabled,
.woocommerce button.button[disabled] {
	background: var(--av-muted);
	color: #fff;
}
/* 购物车合计卡片 */
.woocommerce-cart .cart-collaterals {
	margin-top: 44px;
}
.woocommerce-cart .cart-collaterals .cart_totals {
	width: 40%;
	float: right;
}
.woocommerce-cart .cart-collaterals h2 {
	font-size: 19px;
	color: var(--av-ink);
	margin-bottom: 18px;
}
.woocommerce-cart .cart-collaterals .cart_totals table.shop_table th {
	background: none;
	padding: 14px 18px;
	font-weight: 400;
	color: var(--av-body);
	font-size: 13.5px;
	letter-spacing: 0;
	width: 45%;
}
.woocommerce-cart .cart-collaterals .cart_totals table.shop_table td {
	padding: 14px 18px;
	text-align: right;
	font-weight: 600;
}
.woocommerce-cart .cart-collaterals .cart_totals .order-total th,
.woocommerce-cart .cart-collaterals .cart_totals .order-total td {
	font-size: 16px;
	color: var(--av-ink);
	font-weight: 700;
}
.woocommerce-cart .wc-proceed-to-checkout {
	padding: 20px 18px;
	margin: 0;
}
.woocommerce .wc-proceed-to-checkout a.checkout-button,
.woocommerce a.button.checkout-button {
	background: var(--av-gold);
	color: var(--av-navy);
	font-weight: 600;
	font-size: 14.5px;
	letter-spacing: 2px;
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.woocommerce .wc-proceed-to-checkout a.checkout-button:hover {
	background: var(--av-gold-hover);
	color: var(--av-navy);
}
.woocommerce-cart .woocommerce {
	display: block;
	overflow: hidden;
}
/* 空购物车 */
.woocommerce-cart .cart-empty {
	color: var(--av-body);
	font-size: 16px;
	padding: 30px 0;
}
.woocommerce-cart .return-to-shop {
	padding-bottom: 30px;
}
.woocommerce-cart .return-to-shop .button {
	background: var(--av-gold);
	color: var(--av-navy);
	font-weight: 600;
}
.woocommerce-cart .return-to-shop .button:hover {
	background: var(--av-gold-hover);
	color: var(--av-navy);
}

/* 结算页 */
.woocommerce-checkout form.checkout {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 48px;
	align-items: start;
}
.woocommerce-checkout form.checkout .col2-set {
	width: auto;
	float: none;
}
.woocommerce-checkout form.checkout #order_review_heading,
.woocommerce-checkout form.checkout #order_review {
	width: auto;
	float: none;
}
.woocommerce-checkout #order_review_heading {
	font-size: 19px;
	color: var(--av-ink);
	margin: 0 0 18px;
}
.woocommerce-checkout form.checkout .col2-set h3 {
	font-size: 19px;
	color: var(--av-ink);
	margin: 0 0 18px;
}
.woocommerce form .form-row label {
	color: var(--av-ink);
	font-size: 13.5px;
	margin-bottom: 6px;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single {
	border: 1px solid var(--av-line) !important;
	border-radius: 3px;
	height: 44px;
	padding: 0 12px;
	font-size: 14px;
	color: var(--av-ink);
	background: #fff;
}
.woocommerce form .form-row textarea {
	height: auto;
	padding: 12px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 42px;
	color: var(--av-ink);
}
.select2-container--default .select2-selection--single .select2-selection__arrow { height: 42px; }
.woocommerce-checkout #payment {
	background: var(--av-bg-light);
	border-radius: 4px;
	border: 1px solid var(--av-line);
}
.woocommerce-checkout #payment ul.payment_methods {
	border-bottom: 1px solid var(--av-line);
	padding: 18px;
}
.woocommerce-checkout #payment ul.payment_methods li {
	margin-bottom: 10px;
}
.woocommerce-checkout #payment div.payment_box {
	background: #fff;
	border: 1px solid var(--av-line);
	border-radius: 3px;
	color: var(--av-body);
}
.woocommerce-checkout #payment div.payment_box::before {
	border-bottom-color: #fff;
}
.woocommerce-checkout #payment div.form-row {
	padding: 18px;
	margin: 0;
}
#place_order {
	background: var(--av-gold) !important;
	color: var(--av-navy) !important;
	font-weight: 600 !important;
	width: 100%;
	height: 54px;
	font-size: 14.5px !important;
	letter-spacing: 2px;
}
#place_order:hover {
	background: var(--av-gold-hover) !important;
	color: var(--av-navy) !important;
}
.woocommerce-checkout #payment {
	color: var(--av-ink);
}
.woocommerce-checkout .woocommerce-info {
	margin-bottom: 30px;
}
/* 订单完成页 */
.woocommerce-order-received .woocommerce-order-overview,
.woocommerce-order-received .woocommerce-thankyou-order-details {
	list-style: none;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 12px 48px;
	border: 1px solid var(--av-line);
	border-radius: 4px;
	padding: 24px 28px;
	margin-bottom: 30px;
}
.woocommerce-order-received .woocommerce-column__title,
.woocommerce-order-received h2 {
	font-size: 17px;
	color: var(--av-ink);
	margin: 26px 0 14px;
}

/* 我的账户 */
.woocommerce-account .av-wc-container {
	display: flex;
	gap: 48px;
	align-items: flex-start;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
	width: 240px;
	flex: none;
}
.woocommerce-account .woocommerce-MyAccount-content {
	flex: 1;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
	list-style: none;
	border: 1px solid var(--av-line);
	border-radius: 4px;
	overflow: hidden;
	margin: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation li {
	border-bottom: 1px solid var(--av-line);
	margin: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation li:last-child { border-bottom: 0; }
.woocommerce-account .woocommerce-MyAccount-navigation a {
	display: block;
	padding: 14px 18px;
	color: var(--av-body);
	text-decoration: none;
	font-size: 14px;
}
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
	background: var(--av-navy);
	color: #fff;
}
.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3 {
	font-size: 18px;
	color: var(--av-ink);
	margin: 0 0 18px;
}
.woocommerce-account table.shop_table td {
	padding: 14px 16px;
}
.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register {
	border: 1px solid var(--av-line);
	border-radius: 4px;
	padding: 28px;
	max-width: 460px;
}
.woocommerce-account .woocommerce-form-login .button {
	margin-top: 12px;
}
.woocommerce-account .woocommerce-form-login p:first-child label {
	display: block;
}

/* 分页 */
.woocommerce-pagination ul.page-numbers,
.nav-links,
.page-numbers {
	display: flex;
	gap: 8px;
	justify-content: center;
	list-style: none;
	margin-top: 48px;
	padding: 0;
}
.woocommerce-pagination a.page-numbers,
.woocommerce-pagination span.page-numbers,
.page-numbers a,
.page-numbers span,
.nav-links .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid var(--av-line);
	border-radius: 3px;
	color: var(--av-body);
	font-size: 13px;
	text-decoration: none;
	background: #fff;
}
.woocommerce-pagination .page-numbers.current,
.page-numbers .current,
.page-numbers.current,
.nav-links .page-numbers.current {
	background: var(--av-navy);
	color: #fff;
	border-color: var(--av-navy);
}
.nav-links .page-numbers { background: #fff; }
.page-numbers.dots { border: 0; background: transparent; }

/* 单品页：深蓝 hero + 图库卡片 + 摘要 */
.av-hero-page--product {
	padding: 68px 0 62px;
}
.av-hero-page__title--product {
	font-size: 40px;
	max-width: 900px;
}
.av-wc-container { position: relative; }
.av-product-page {
	padding: 72px 0 100px;
}
.av-theme .product {
	display: flex;
	flex-wrap: wrap;
	gap: 56px;
	align-items: flex-start;
}
.av-theme .product::after { content: none; }
.av-theme div.product .woocommerce-product-gallery {
	float: none;
	width: 46%;
	flex: none;
	position: relative;
}
.av-theme .woocommerce-product-gallery__wrapper {
	margin: 0;
	border: 1px solid var(--av-line);
	border-radius: 4px;
	overflow: hidden;
	background: var(--av-navy);
}
.av-theme .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image {
	margin: 0;
}
.av-theme .woocommerce-product-gallery__image img {
	width: 100%;
	display: block;
}
.av-theme .woocommerce-product-gallery__trigger {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 5;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(10, 26, 47, .78);
	color: #fff !important;
	text-indent: -9999px;
	overflow: hidden;
}
.av-theme .woocommerce-product-gallery__trigger::before {
	content: "";
	position: absolute;
	inset: 0;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'><circle cx='11' cy='11' r='7'/><path d='m20 20-3.8-3.8'/></svg>") center/18px no-repeat;
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'><circle cx='11' cy='11' r='7'/><path d='m20 20-3.8-3.8'/></svg>") center/18px no-repeat;
}
.av-theme .flex-control-thumbs {
	display: flex;
	gap: 12px;
	margin-top: 14px;
	list-style: none;
	padding: 0;
}
.av-theme .flex-control-thumbs li {
	width: 84px;
	flex: none;
	border: 1px solid var(--av-line);
	border-radius: 3px;
	overflow: hidden;
	cursor: pointer;
}
.av-theme .flex-control-thumbs li.flex-active {
	border-color: var(--av-gold);
}
.av-theme div.product div.summary {
	float: none;
	width: auto;
	flex: 1;
	margin: 0;
}
.av-theme div.product div.summary > .price,
.av-theme div.product p.price {
	color: var(--av-ink);
	font-size: 30px;
	font-weight: 700;
	margin: 0 0 4px;
}
.av-theme div.product p.price del {
	font-size: 18px;
	color: var(--av-muted);
	font-weight: 400;
	margin-right: 10px;
}
.av-theme div.product p.price ins {
	text-decoration: none;
}
.av-theme div.product .woocommerce-product-details__short-description {
	color: var(--av-body);
	font-size: 14.5px;
	line-height: 2.05;
	margin: 18px 0 26px;
	padding-bottom: 26px;
	border-bottom: 1px solid var(--av-line);
}
.av-theme div.product form.cart {
	display: flex;
	gap: 14px;
	align-items: stretch;
	margin: 0 0 10px;
}
.av-theme div.product form.cart div.quantity {
	float: none;
	margin: 0;
	width: 92px;
	flex: none;
	display: inline-flex;
}
.av-theme div.product form.cart div.quantity .qty {
	width: 100%;
	height: 54px;
	text-align: center;
	border: 1px solid var(--av-line) !important;
	border-radius: 4px;
	font-size: 15px;
	color: var(--av-ink);
}
.av-theme div.product form.cart button.single_add_to_cart_button {
	flex: 1;
	height: 54px;
	background: var(--av-navy);
	color: #fff;
	border: 0;
	border-radius: 4px;
	font-size: 14px;
	letter-spacing: 4px;
	cursor: pointer;
	transition: background .2s;
}
.av-theme div.product form.cart button.single_add_to_cart_button:hover {
	background: #14273F;
}
.av-buy-now {
	flex: none;
	height: 54px !important;
	padding: 0 34px !important;
	display: inline-flex;
	align-items: center;
}
.av-theme div.product .product_meta {
	margin-top: 26px;
	padding-top: 22px;
	border-top: 1px solid var(--av-line);
	font-size: 13px;
	color: var(--av-muted);
}
.av-theme div.product .product_meta > span {
	display: block;
	margin: 6px 0;
}
.av-theme div.product .product_meta a {
	color: var(--av-body);
	text-decoration: none;
}
.av-theme div.product .product_meta a:hover {
	color: var(--av-gold);
}
.av-theme div.product .woocommerce-tabs {
	clear: both;
	padding-top: 64px;
	width: 100%;
}
.av-theme div.product .woocommerce-tabs ul.tabs {
	display: flex;
	gap: 30px;
	border-bottom: 1px solid var(--av-line);
	margin: 0 0 30px;
	padding: 0 !important;
}
.av-theme div.product .woocommerce-tabs ul.tabs::before {
	display: none;
}
.av-theme div.product .woocommerce-tabs ul.tabs li {
	background: none !important;
	border: 0 !important;
	border-radius: 0 !important;
	margin: 0;
	padding: 0;
}
.av-theme div.product .woocommerce-tabs ul.tabs li a {
	padding: 14px 2px;
	display: block;
	color: var(--av-muted);
	font-size: 15px;
	font-weight: 500;
}
.av-theme div.product .woocommerce-tabs ul.tabs li.active {
	border-bottom: 2px solid var(--av-gold) !important;
	margin-bottom: -1px;
}
.av-theme div.product .woocommerce-tabs ul.tabs li.active a {
	color: var(--av-ink);
}
.av-theme div.product .woocommerce-tabs .panel {
	margin-bottom: 20px;
	color: var(--av-body);
	font-size: 14.5px;
	line-height: 2;
}
.av-theme .related.products,
.av-theme .upsells {
	clear: both;
	padding-top: 26px;
	width: 100%;
}
.av-theme .related.products > h2,
.av-theme .upsells > h2,
.av-archive__sub {
	font-size: 18px;
	color: var(--av-ink);
	margin: 26px 0 24px;
}
.av-theme .related.products ul.products,
.av-theme .upsells ul.products {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.av-theme .related.products ul.products li.product,
.av-theme .upsells ul.products li.product {
	width: auto !important;
	float: none !important;
	margin: 0 !important;
	padding: 0;
}
.av-theme .star-rating span::before {
	color: var(--av-gold);
}
.av-theme .woocommerce-product-rating {
	margin-bottom: 6px;
}

/* Star rating → 金色 */
.av-theme .star-rating span::before { color: var(--av-gold); }

/* ------------------------------------------------------------
   Elementor 容器里的默认修正
   ------------------------------------------------------------ */
.av-theme .elementor-widget-container > p:only-child { margin: 0; }
.av-theme .e-con-inner { max-width: var(--av-container); }

/* ------------------------------------------------------------
   首页关于预览 / 预约表单 / 商城布局细节
   ------------------------------------------------------------ */
.av-about {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 64px;
	align-items: start;
}
.av-about__right p {
	color: var(--av-body);
	font-size: 14.5px;
	line-height: 2.1;
	margin-bottom: 18px;
}
.av-about__right .av-link-arrow { margin-top: 6px; }

.av-enquire {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 48px;
	align-items: start;
}
.av-enquire__form-card {
	background: #fff;
	border: 1px solid var(--av-line);
	border-radius: 4px;
	padding: 40px 44px;
}
.av-enquire__ok {
	background: rgba(198, 161, 91, .14);
	color: #8F7038;
	font-size: 14px;
	padding: 14px 18px;
	border-radius: 3px;
	margin-bottom: 22px;
}
.av-form label {
	display: block;
	margin-bottom: 18px;
}
.av-form label span {
	display: block;
	font-size: 13.5px;
	color: var(--av-ink);
	margin-bottom: 8px;
	font-weight: 500;
}
.av-form input,
.av-form select,
.av-form textarea {
	width: 100%;
	border: 1px solid var(--av-line);
	border-radius: 3px;
	background: #fff;
	padding: 13px 14px;
	font-size: 14px;
	color: var(--av-ink);
	font-family: var(--av-font);
	outline: none;
	transition: border-color .2s;
}
.av-form input:focus,
.av-form select:focus,
.av-form textarea:focus { border-color: var(--av-gold); }
.av-form__row--2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.av-form .av-btn { margin-top: 8px; padding: 17px 44px; }
.av-enquire__item {
	border-bottom: 1px solid var(--av-line);
	padding: 22px 0;
}
.av-enquire__item .t {
	color: var(--av-muted);
	font-size: 12.5px;
	letter-spacing: 2px;
}
.av-enquire__item .v {
	color: var(--av-ink);
	font-size: 19px;
	font-weight: 600;
	margin-top: 8px;
}

/* Woo 商城循环容器 */
.av-shop-main ul.products {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.av-shop-main ul.products::before,
.av-shop-main ul.products::after { display: none; }
.av-shop-main ul.products li.product {
	width: auto !important;
	float: none !important;
	margin: 0 !important;
	padding: 0;
	border: 0;
	background: transparent;
}
.av-shop-main ul.products li.product::before,
.av-shop-main ul.products li.product::after { display: none; }
.av-sortbar__open .woocommerce-result-count {
	color: var(--av-muted);
	font-size: 13px;
	margin: 0;
}
.av-sortbar__open .woocommerce-ordering { float: none; margin: 0; }
.av-sortbar__open .woocommerce-ordering select {
	border: 0;
	background: none;
	font-size: 13px;
	color: var(--av-ink);
	outline: none;
	cursor: pointer;
}
.av-archive { padding-top: 72px; }

/* Woo 单品页布局 */
.av-theme .woocommerce-tabs ul.tabs {
	padding-left: 0 !important;
}
.av-theme .woocommerce-product-details__short-description {
	color: var(--av-body);
	font-size: 14.5px;
	line-height: 2;
}

@media (max-width: 1200px) {
	.av-shop-main ul.products { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
	.av-about, .av-enquire { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
	.av-shop-main ul.products { grid-template-columns: 1fr; }
	.av-form__row--2 { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------
   响应式
   ------------------------------------------------------------ */
@media (max-width: 1200px) {
	.av-hero__title { font-size: 52px; }
	.av-hero-page__title { font-size: 40px; }
	.av-grid--4 { grid-template-columns: repeat(2, 1fr); }
	.av-specs { grid-template-columns: repeat(2, 1fr); }
	.av-specs__cell:nth-child(4n) { border-right: 1px solid var(--av-line); }
	.av-specs__cell:nth-child(2n) { border-right: 0; }
	.av-specs__cell:nth-child(n+3) { border-bottom: 0; }
	.av-specs__cell:nth-child(n+5) { border-bottom: 1px solid var(--av-line); }
	.av-specs__cell:nth-child(5), .av-specs__cell:nth-child(6) { border-bottom: 0; }
	.av-footer__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
	:root { --av-header-h: 72px; }
	.av-header__right { gap: 0; }
	.av-nav { display: none; }
	.av-burger { display: inline-flex; }
	.av-btn--header { display: none; }
	.av-hero__inner { padding-top: 90px; padding-bottom: 70px; }
	.av-hero__plane { opacity: .3; height: 80%; right: -20%; }
	.av-stats { margin-top: 64px; }
	.av-grid--3, .av-grid--products { grid-template-columns: repeat(2, 1fr); }
	.av-shop-layout { grid-template-columns: 1fr; }
	.av-story__inner, .av-cabin__inner, .av-service-block__inner { grid-template-columns: 1fr; gap: 40px; }
	.av-news-featured { grid-template-columns: 1fr; gap: 28px; }
	.av-milestones__grid, .av-values__grid { grid-template-columns: repeat(2, 1fr); }
	.av-section { padding: 76px 0; }
	.av-story, .av-milestones, .av-values, .av-cabin, .av-service-block { padding: 76px 0; }
}

@media (max-width: 640px) {
	.av-hero__title { font-size: 36px; letter-spacing: 1px; }
	.av-hero__actions { flex-direction: column; align-items: stretch; }
	.av-hero__plane { display: none; }
	.av-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
	.av-hero-page__title { font-size: 30px; }
	.av-hero-page__title--post { font-size: 24px; }
	.av-grid--3, .av-grid--products, .av-grid--4 { grid-template-columns: 1fr; }
	.av-section-head { flex-direction: column; align-items: flex-start; }
	.av-cta__inner { flex-direction: column; align-items: flex-start; }
	.av-cta__right { flex-wrap: wrap; gap: 24px; }
	.av-footer__grid { grid-template-columns: 1fr 1fr; }
	.av-footer__bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
	.av-footer__legal { margin-left: 0; }
	.av-specs { grid-template-columns: 1fr; }
	.av-specs__cell { border-right: 0 !important; border-bottom: 1px solid var(--av-line) !important; }
	.av-specs__cell:last-child { border-bottom: 0 !important; }
	.av-milestones__grid, .av-values__grid { grid-template-columns: 1fr; }
	.av-news-row { grid-template-columns: 1fr 24px; }
	.av-news-row .date { grid-column: 1; }
	.av-news-row .tag { grid-column: 1; justify-self: start; }
	.av-news-row .title { grid-column: 1 / -1; }
	.av-news-row .go { display: none; }
	.av-gallery { grid-template-columns: 1fr; }
	.av-lang { display: none; }
}

/* ------------------------------------------------------------
   Woo 新组件响应式
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
	.av-theme .product {
		flex-direction: column;
		gap: 40px;
	}
	.av-theme div.product .woocommerce-product-gallery {
		width: 100%;
	}
	.woocommerce-checkout form.checkout {
		grid-template-columns: 1fr;
	}
	.woocommerce-account .av-wc-container {
		flex-direction: column;
	}
	.woocommerce-account .woocommerce-MyAccount-navigation {
		width: 100%;
	}
	.woocommerce-cart .cart-collaterals .cart_totals {
		width: 100%;
		float: none;
	}
	.av-shop-side {
		position: static;
	}
}
@media (max-width: 640px) {
	.av-theme table.shop_table {
		display: block;
		overflow-x: auto;
		white-space: nowrap;
	}
	.av-hero-page__title--product {
		font-size: 28px;
	}
	.av-theme div.product form.cart {
		flex-wrap: wrap;
	}
	.av-theme div.product form.cart button.single_add_to_cart_button {
		flex: 1 1 100%;
	}
	.av-buy-now {
		flex: 1 1 100% !important;
		justify-content: center;
	}
	.av-theme .related.products ul.products,
	.av-theme .upsells ul.products {
		grid-template-columns: 1fr;
	}
}

/* Hello 默认容器约束覆盖（经典 Woo 页面走本主题容器） */
body.woocommerce-cart .site-main,
body.woocommerce-checkout .site-main,
body.woocommerce-account .site-main,
body.woocommerce-order-received .site-main {
	max-width: none;
	width: 100%;
	padding-inline: 0;
	margin-inline: 0;
}

/* Woo 提示条：图标定位与链接色 */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	position: relative;
	padding-left: 3.6em !important;
}
.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
	position: absolute !important;
	left: 1.2em !important;
	top: 50% !important;
	transform: translateY(-50%);
	margin: 0 !important;
}
.woocommerce-message a:not(.button),
.woocommerce-info a:not(.button),
.woocommerce-error a:not(.button),
.showcoupon,
.showlogin {
	color: var(--av-gold) !important;
	text-decoration: none !important;
	font-weight: 500;
}
.woocommerce-message a:not(.button):hover,
.woocommerce-info a:not(.button):hover,
.showcoupon:hover,
.showlogin:hover {
	color: var(--av-gold-hover) !important;
}
/* 结算页表单细节 */
.woocommerce form .form-row {
	margin-bottom: 14px;
}
.woocommerce-checkout .woocommerce-additional-fields {
	margin-top: 26px;
}
.woocommerce-checkout h3#order_review_heading,
.woocommerce-checkout .col2-set h3 {
	letter-spacing: 1px;
}
/* 订单表格（结算右栏） */
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
	padding: 16px 18px;
}
.woocommerce-checkout-review-order-table .product-name img {
	float: left;
	margin-right: 14px;
	width: 54px;
	border-radius: 3px;
}
.woocommerce-privacy-policy-text a,
a.privacy-policy-link {
	color: var(--av-gold) !important;
	text-decoration: none;
}
.woocommerce-privacy-policy-text a:hover,
a.privacy-policy-link:hover {
	color: var(--av-gold-hover) !important;
}

/* ------------------------------------------------------------
   图片 Logo（德玖航空）
   ------------------------------------------------------------ */
.av-logo__img {
	height: 46px;
	width: auto;
	display: block;
}
.av-footer .av-logo__img {
	height: 42px;
}
@media (max-width: 1024px) {
	.av-logo__img { height: 38px; }
	.av-footer .av-logo__img { height: 36px; }
}
