/* ============================================================
   STORE TEMPLATE — DESIGN SYSTEM (Neutral Edition)
   Clean white storefront · neutral black/grey · red logo accent only
   Big logo + light footer (owner rules) · truck baseline 15px
   Layout reference: vibranttool.com homepage
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }   /* 兜底：防止任何元素横向溢出造成"左右留白不等宽" */
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 15px;                 /* 基准字号：truck 15px (铁律) */
  -webkit-font-smoothing: antialiased;
}

:root { /* alias tokens for convenience */
  --shadow: 0 2px 12px rgba(0,0,0,.06);
}

h1,h2,h3,h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.2; }
a { color: var(--brand); text-decoration: none; transition: color .15s; }
a:hover { color: var(--brand-dark); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 var(--side-gutter); }

/* ===================== HEADER ===================== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.topbar {
  background: var(--ink);
  color: #fff;
  height: 34px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600; letter-spacing: .4px;
  text-transform: uppercase;
}
.header-row {
  height: var(--header-h);
  display: flex; align-items: center;
  padding: 0 var(--side-gutter);
  gap: clamp(16px, 2vw, 45px);
  position: relative;
}
.header-row > .logo { flex: 0 1 auto; min-width: 0; }
.logo a { display: block; line-height: 0; }
.logo img { height: 78px; width: auto; max-width: 100%; display: block; }   /* 大 logo (铁律) */

.main-menu { flex: 1 1 auto; min-width: 0; display: flex; justify-content: center; }
.main-menu ul { display: flex; list-style: none; gap: clamp(14px, 1.9vw, 38px); align-items: center; flex-wrap: nowrap; min-width: 0; }
.main-menu a {
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(11.5px, .95vw, 13px);
  text-transform: uppercase;
  letter-spacing: clamp(.6px, .1vw, 1.4px);
  white-space: nowrap;
  padding: 6px 0;
  position: relative;
}
.main-menu a::after {
  content: ""; position: absolute; left: 50%; bottom: 0; width: 0; height: 2px;
  background: var(--brand); transition: width .2s, left .2s;
}
.main-menu a:hover { color: var(--brand); }
.main-menu a:hover::after { width: 100%; left: 0; }

.header-actions { display: flex; align-items: center; gap: 16px; flex: 0 0 auto; position: relative; }
/* 纯图标按钮（参考站风格：无边框盒子） */
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; padding: 0; background: none; border: none;
  color: var(--ink); cursor: pointer; position: relative; transition: color .15s;
}
.icon-btn:hover { color: var(--brand); }
.icon-btn svg { width: 22px; height: 22px; }

.nav-search {
  position: absolute; top: calc(100% + 14px); right: 0; z-index: 50;
  display: none; align-items: stretch;
  border: 1.5px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: #fff; box-shadow: var(--shadow);
}
.nav-search.is-open { display: flex; }
.nav-search input { border: none; outline: none; padding: 0 12px; font-size: 13px; width: 240px; height: 40px; background: transparent; color: var(--text); font-family: var(--font-body); }
.nav-search input::placeholder { color: var(--muted); }
.nav-search button { border: none; background: var(--ink); color: #fff; padding: 0 14px; cursor: pointer; font-weight: 700; height: 40px; }
.nav-search button:hover { background: var(--brand); }

.cart-count {
  position: absolute; top: -8px; right: -8px; background: var(--brand); color: #fff;
  font-size: 10px; font-weight: 700; min-width: 17px; height: 17px; padding: 0 4px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; border: 2px solid #fff;
}

.header-right { display: none; align-items: center; gap: 12px; }
.menu-toggle { display: none; background: transparent; border: 1.5px solid var(--line); border-radius: var(--radius); cursor: pointer; padding: 6px; width: 36px; height: 36px; flex-direction: column; justify-content: center; align-items: center; gap: 4px; }
.menu-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); }

@media (max-width: 1024px) {
  .header-row { padding: 0 1cm; gap: .6cm; }
  .main-menu ul { gap: 16px; }
  .nav-search input { width: 180px; }
}
@media (max-width: 768px) {
  .header-row { height: 64px; padding: 0 14px; }
  .logo img { height: 56px; }
  .main-menu {
    position: absolute; top: 64px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    display: none; flex-direction: column; padding: 12px 0;
  }
  .main-menu.is-open { display: flex; }
  .main-menu ul { flex-direction: column; gap: 0; width: 100%; }
  .main-menu li { width: 100%; }
  .main-menu a { display: block; padding: 12px 1cm; }
  .header-actions { display: none; }
  .header-right { display: flex; margin-left: auto; }
}

/* ===================== HERO ===================== */
.hero-section { position: relative; width: 100%; min-height: 460px; max-height: 560px; background: var(--surface); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; }
/* 纯原图，无遮罩压字 (铁律) */

/* ===================== PRODUCT SECTIONS ===================== */
.section-products { padding: 70px 0 50px; background: #fff; }
.section-products.alt { background: #fff; }
.section-head { text-align: center; margin-bottom: 38px; }
.section-title { font-size: 28px; font-weight: 700; color: var(--ink); letter-spacing: -.2px; margin-bottom: 8px; }
.section-subtitle { font-size: 15px; color: var(--muted); max-width: 600px; margin: 0 auto; }

.store-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px 24px; }
.store-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) { .store-grid, .store-grid.cols-4 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .store-grid, .store-grid.cols-4 { grid-template-columns: repeat(2, 1fr); gap: 20px 14px; } }
@media (max-width: 460px)  { .store-grid, .store-grid.cols-4 { grid-template-columns: 1fr 1fr; } }

/* 无边框白底产品卡（参考站风格） */
.product-card { background: #fff; border: none; border-radius: 0; overflow: visible; transition: transform .2s, box-shadow .2s; }
.product-card:hover { transform: translateY(-3px); }
.product-img { display: block; aspect-ratio: 1/1; background: #fff; position: relative; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: contain; padding: 0; transition: transform .3s; }
.product-card:hover .product-img img { transform: scale(1.04); }
.product-img .ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #DADADA; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; background: var(--surface); }
.product-info { padding: 14px 0 0; }
.product-cat { font-size: 11px; color: var(--muted); letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 5px; font-weight: 500; font-family: var(--font-head); }
.product-info h4 { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 6px; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-info h4 a { color: var(--ink); }
.product-info h4 a:hover { color: var(--brand); }
.product-price { font-size: 15px; color: var(--ink); font-weight: 700; font-family: var(--font-head); }
.product-price del { color: var(--muted); font-weight: 400; font-size: 13px; margin-right: 6px; font-family: var(--font-body); }
.product-price ins { text-decoration: none; color: var(--ink); }

.store-empty { grid-column: 1/-1; text-align: center; font-size: 13px; color: var(--muted); font-style: italic; padding: 12px 0; }

/* ===================== EXTRA FEATURES (trust) ===================== */
.extra-features { padding: 50px 0; background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ef-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
@media (max-width: 768px) { .ef-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; } }
.ef-item .ef-ic { font-size: 28px; display: block; margin-bottom: 8px; color: var(--cta); }
.ef-item h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; color: var(--ink); }
.ef-item p { font-size: 13px; color: var(--muted); }

/* ===================== FOOTER (light) ===================== */
.site-footer { background: #fff; color: var(--text); padding-top: 0; margin-top: 0; }
.footer-nav-band { background: var(--surface); border-top: 1px solid var(--line); padding: 20px 0; }
/* 分类导航：单行水平排列（照参考站），li 不带项目符号 */
.footer-nav-band .container { display: flex; align-items: center; justify-content: center; }
.footer-nav-band ul.footer-nav { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 44px; list-style: none; margin: 0; padding: 0; }
.footer-nav-band ul.footer-nav li { list-style: none; margin: 0; padding: 0; }
.footer-nav-band ul.footer-nav li::before { content: none; }
.footer-nav-band a { color: var(--ink); font-family: var(--font-head); font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.4px; white-space: nowrap; }
.footer-nav-band a:hover { color: var(--brand); }
@media (max-width: 768px) { .footer-nav-band ul.footer-nav { gap: 10px 22px; } .footer-nav-band a { font-size: 11.5px; letter-spacing: 1px; } }

.footer-inner { display: grid; grid-template-columns: auto 1fr 1fr; gap: 48px; padding: 48px var(--side-gutter); align-items: start; }
.footer-brand a { display: inline-block; line-height: 0; }
.footer-brand img { height: 120px; width: auto; display: block; }   /* 大 logo (铁律) */
.footer-col h4 { color: var(--ink); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.4px; margin-bottom: 16px; font-family: var(--font-head); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--text); font-size: 14px; }
.footer-col a:hover { color: var(--brand); }
.footer-contact p { font-size: 14px; color: var(--text); margin-bottom: 6px; line-height: 1.6; }
.footer-contact a { color: var(--brand); }
.footer-contact a:hover { color: var(--brand-dark); }
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding: 36px 14px; }
  .footer-brand img { height: 84px; }
}
.footer-bottom { padding: 20px var(--side-gutter); border-top: 1px solid var(--line); background: #fff; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 13px; color: var(--muted); }
/* 支付图标（品牌彩色官方原图，images/payments/*.svg；可整体替换为官方 PNG，同名即可）
   各品牌按自身比例分别设高，保证一行内视觉体量均衡 */
.footer-bottom .pay-row { display: inline-flex; align-items: center; gap: 11px; }
.footer-bottom .pay-row img { display: block; width: auto; }
.footer-bottom .pay-row img.pay-visa { height: 18px; }
.footer-bottom .pay-row img.pay-amex { height: 23px; }
.footer-bottom .pay-row img.pay-mc { height: 21px; }
.footer-bottom .pay-row img.pay-paypal { height: 19px; }
@media (max-width: 640px) {
  .footer-bottom .pay-row { gap: 8px; }
  .footer-bottom .pay-row img.pay-visa { height: 14px; }
  .footer-bottom .pay-row img.pay-amex { height: 17px; }
  .footer-bottom .pay-row img.pay-mc { height: 16px; }
  .footer-bottom .pay-row img.pay-paypal { height: 15px; }
}
@media (max-width: 900px) { .footer-bottom { padding: 16px 14px; } }

/* ===================== SINGLE PRODUCT ===================== */
.single-product-wrap { padding: 28px var(--side-gutter) 70px; max-width: 1320px; margin: 0 auto; }
.sp-breadcrumb { font-size: 12px; color: var(--muted); margin-bottom: 18px; text-transform: uppercase; letter-spacing: .5px; }
.sp-breadcrumb a { color: var(--muted); }
.sp-breadcrumb a:hover { color: var(--brand); }
.sp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: flex-start; }
@media (max-width: 768px) { .sp-grid { grid-template-columns: 1fr; gap: 30px; } }
.sp-gallery { background: var(--surface); border-radius: var(--radius-lg); overflow: hidden; }
.sp-main-img { aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; }
.sp-main-img img { width: 100%; height: 100%; object-fit: contain; padding: 16px; }
.sp-main-img .ph { color: var(--muted); }
.sp-thumbs { display: flex; gap: 8px; padding: 10px; flex-wrap: wrap; }
.sp-thumb { width: 72px; height: 72px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; cursor: pointer; }
.sp-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }

.sp-info h1 { font-size: 30px; font-weight: 700; color: var(--ink); margin-bottom: 8px; line-height: 1.2; }
.sp-info .sp-cat { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; font-weight: 600; font-family: var(--font-head); }
.sp-info .sp-price { font-size: 28px; font-weight: 700; color: var(--ink); font-family: var(--font-head); margin: 12px 0; }
.sp-info .sp-price del { color: var(--muted); font-weight: 500; font-size: 16px; margin-right: 8px; }
.sp-info .sp-price ins { text-decoration: none; color: var(--brand); }

/* Woo add-to-cart → olive CTA */
.sp-cart-form { margin-top: 18px; }
.sp-cart-form .quantity { display: inline-flex; align-items: center; }
.sp-cart-form .qty, .sp-cart-form input[type="number"], .sp-cart-form input.input-text.qty {
  width: 70px; height: 50px; border: 1.5px solid var(--line); border-radius: var(--radius); text-align: center; font-size: 16px; font-weight: 700; font-family: var(--font-body); margin-right: 10px;
}
.sp-cart-form .single_add_to_cart_button,
.sp-cart-form button.button.alt,
.sp-cart-form input[type="submit"] {
  background: var(--cta) !important; color: #fff !important; border: none; padding: 0 34px; height: 50px; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; border-radius: var(--radius); cursor: pointer; font-family: var(--font-head); transition: background .15s;
}
.sp-cart-form .single_add_to_cart_button:hover { background: var(--cta-dark) !important; }

.sp-extra { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 24px 0; }
.sp-ef { font-size: 13px; color: var(--text); display: flex; align-items: center; gap: 8px; }
.sp-ef span { color: var(--cta); font-weight: 700; font-size: 16px; }
.sp-meta { font-size: 13px; color: var(--muted); margin-top: 14px; line-height: 1.9; }
.sp-meta span { color: var(--ink); font-weight: 700; font-family: var(--font-head); margin-right: 4px; letter-spacing: .5px; }
.sp-meta a { color: var(--brand); }

/* Description 区块（单一标签，所有内容并入同一面板 —— 无多选项卡） */
.sp-detail { margin-top: 56px; border-top: 1px solid var(--line); padding-top: 30px; }
.sp-tabs { display: flex; border-bottom: 2px solid var(--line); margin-bottom: 26px; }
.sp-tab { background: none; border: none; cursor: default; padding: 0 0 12px; font-family: var(--font-head); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.4px; color: var(--ink); border-bottom: 2px solid var(--brand); margin-bottom: -2px; }
.sp-panel { display: block; }
.sp-panel h3 { font-size: 20px; font-weight: 700; margin-bottom: 14px; color: var(--ink); }
.sp-block { margin-top: 36px; }
.sp-block h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.3px; color: var(--ink); padding-bottom: 10px; border-bottom: 1px solid var(--line); margin-bottom: 16px; }
.sp-rich { font-size: 15px; line-height: 1.8; color: var(--text); }
.sp-rich p { margin-bottom: 14px; }
.sp-muted { color: var(--muted); font-size: 14px; }
.sp-spec { list-style: none; border-top: 1px solid var(--line); }
.sp-spec li { display: flex; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.sp-spec li span { width: 200px; color: var(--muted); font-family: var(--font-head); letter-spacing: .5px; text-transform: uppercase; font-size: 12px; font-weight: 600; }
.sp-spec li strong { color: var(--ink); font-weight: 600; }

/* 相关产品：标题左对齐 + 促销价高亮（照参考站；网格沿用 .store-grid 自带响应式） */
.sp-related { margin-top: 56px; }
.sp-related .section-head { text-align: left; margin-bottom: 24px; }
.sp-related .section-title { font-size: 24px; }
.sp-related .product-price ins { color: var(--cta); }   /* 促销价高亮 */
.sp-related .store-empty { text-align: left; }

/* ===================== ARCHIVE ===================== */
.archive-banner { background: var(--surface); color: var(--ink); padding: 46px 0 36px; border-bottom: 1px solid var(--line); }
.archive-banner h1 { font-size: 34px; font-weight: 700; text-transform: uppercase; letter-spacing: -.3px; }
.archive-banner .archive-desc { color: var(--muted); max-width: 720px; font-size: 15px; margin-top: 8px; }
.archive-toolbar { display: flex; align-items: center; justify-content: space-between; padding: 14px var(--side-gutter); background: #fff; border-bottom: 1px solid var(--line); font-size: 13px; color: var(--muted); flex-wrap: wrap; gap: 8px; }
.archive-toolbar select { border: 1px solid var(--line); background: #fff; padding: 6px 10px; border-radius: var(--radius); font-size: 13px; font-family: var(--font-body); }

.woocommerce ul.products { display: grid !important; grid-template-columns: repeat(4, 1fr) !important; gap: 30px 24px !important; padding: 30px var(--side-gutter) !important; }
@media (max-width: 1024px) { .woocommerce ul.products { grid-template-columns: repeat(3, 1fr) !important; } }
@media (max-width: 768px)  { .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; padding: 20px 14px !important; gap: 20px 14px !important; } }
.woocommerce ul.products li.product { background: #fff; border: none; border-radius: 0; overflow: visible; transition: transform .2s; }
.woocommerce ul.products li.product:hover { transform: translateY(-3px); }
.woocommerce ul.products li.product a.woocommerce-loop-product__link { display: block; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 14px; font-weight: 600; color: var(--ink); padding: 12px 0 0; line-height: 1.35; font-family: var(--font-head); }
.woocommerce ul.products li.product .price { color: var(--ink); font-weight: 700; padding: 6px 0 0; font-family: var(--font-head); font-size: 15px; }
.woocommerce ul.products li.product .price del { color: var(--muted); font-weight: 400; font-family: var(--font-body); }
.woocommerce ul.products li.product .price ins { color: var(--ink); text-decoration: none; }
.woocommerce ul.products li.product img { background: #fff; }

/* ===================== INNER PAGES ===================== */
.page-hero { background: var(--surface); color: var(--ink); padding: 60px 0 50px; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: 38px; font-weight: 700; text-transform: uppercase; letter-spacing: -.5px; }
.page-hero p { color: var(--muted); font-size: 16px; max-width: 720px; margin-top: 8px; }
/* 内页 hero 的文字容器与下方正文容器对齐，避免大标题比正文更靠左（留下同样的左边距） */
.page-hero .container { max-width: 880px; }
.page-content-wrap { padding: 56px 0 76px; background: #fff; }
.page-content { max-width: 880px; margin: 0 auto; padding: 0 var(--side-gutter); font-size: 16px; line-height: 1.8; color: var(--text); }
.page-content h2 { font-size: 24px; font-weight: 700; color: var(--ink); margin: 32px 0 12px; }
.page-content h3 { font-size: 19px; font-weight: 700; color: var(--ink); margin: 24px 0 10px; }
.page-content p { margin-bottom: 14px; }
.page-content ul, .page-content ol { margin: 10px 0 18px 20px; }
.page-content li { margin-bottom: 6px; }
.page-content a { color: var(--brand); }
.page-content strong { color: var(--ink); }

.contact-layout { max-width: 880px; margin: 0 auto; padding: 0 var(--side-gutter); display: grid; grid-template-columns: 1fr 1.25fr; gap: 48px; }
@media (max-width: 768px) { .contact-layout { grid-template-columns: 1fr; gap: 32px; padding: 0 14px; } }
.contact-info h2 { font-size: 26px; font-weight: 700; color: var(--ink); margin-bottom: 14px; }
.contact-info p { color: var(--text); font-size: 15px; margin-bottom: 12px; line-height: 1.7; }
.contact-info a { color: var(--brand); }
.contact-form-wrap { background: var(--surface); padding: 32px; border-radius: var(--radius-lg); border-top: 4px solid var(--brand); }
.contact-form-wrap h3 { font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .5px; }
.contact-form-wrap > p { color: var(--muted); font-size: 14px; margin-bottom: 22px; }
.wpcf7 { display: grid; gap: 14px; }
.wpcf7 label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--ink); margin-bottom: 4px; }
.wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"], .wpcf7 textarea { width: 100%; border: 1.5px solid var(--line); border-radius: var(--radius); padding: 10px 14px; font-size: 14px; background: #fff; color: var(--text); font-family: var(--font-body); }
.wpcf7 input:focus, .wpcf7 textarea:focus { outline: none; border-color: var(--brand); }
.wpcf7 textarea { min-height: 110px; resize: vertical; }
.wpcf7 input[type="submit"] { background: var(--cta); color: #fff; border: none; padding: 14px 28px; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; border-radius: var(--radius); cursor: pointer; font-family: var(--font-head); }
.wpcf7 input[type="submit"]:hover { background: var(--cta-dark); }

/* ===================== WOOCOMMERCE MISC ===================== */
.woocommerce-notices-wrapper { padding: 14px var(--side-gutter); }
.woocommerce-message, .woocommerce-info, .woocommerce-error { background: var(--surface); border-left: 3px solid var(--cta); color: var(--ink); padding: 12px 18px; border-radius: var(--radius); font-size: 13px; margin: 12px var(--side-gutter); }
.woocommerce-error { border-left-color: var(--brand); }

@media (max-width: 768px) { .container { padding: 0 14px; } .single-product-wrap { padding: 22px 14px 50px; } .footer-inner { padding: 36px 14px; } .archive-toolbar { padding: 14px 14px; } .page-content { padding: 0 14px; } }

/* ===================== INNER CONTENT PAGES (About / Returns / Privacy / Contact) ===================== */
.content-narrow { max-width: 880px; margin: 0 auto; padding: 0 var(--side-gutter); font-size: 15px; line-height: 1.8; color: var(--text); }
.content-narrow > .prose-block + .prose-block { margin-top: 40px; }
.prose-block h2 { font-size: 24px; font-weight: 700; color: var(--ink); margin: 0 0 14px; }
.prose-block h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin: 22px 0 8px; }
.prose-block p { margin-bottom: 14px; }
.prose-block a { color: var(--brand); }
.prose-block strong { color: var(--ink); }
.prose-block .note { background: var(--surface); border-left: 3px solid var(--cta); padding: 12px 16px; font-size: 14px; color: var(--text); border-radius: var(--radius); margin-top: 16px; }

.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 20px 0 4px; }
.value-card { background: var(--surface); border-radius: var(--radius-lg); padding: 22px 24px; border-top: 3px solid var(--brand); }
.value-card h3 { font-size: 15px; font-weight: 700; color: var(--ink); margin: 0 0 6px; }
.value-card p { font-size: 14px; color: var(--text); margin: 0; line-height: 1.65; }
@media (max-width: 640px) { .value-grid { grid-template-columns: 1fr; } }

ul.check-list { list-style: none; margin: 8px 0 18px; padding: 0; }
ul.check-list li { position: relative; padding-left: 26px; margin-bottom: 9px; font-size: 15px; line-height: 1.7; }
ul.check-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 13px; height: 7px; border-left: 2px solid var(--cta); border-bottom: 2px solid var(--cta); transform: rotate(-45deg); }

ol.step-list { list-style: none; counter-reset: step; margin: 10px 0 18px; padding: 0; }
ol.step-list li { position: relative; counter-increment: step; padding-left: 38px; margin-bottom: 12px; font-size: 15px; line-height: 1.7; }
ol.step-list li::before { content: counter(step); position: absolute; left: 0; top: 2px; width: 24px; height: 24px; border-radius: 50%; background: var(--cta); color: #fff; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); }

ul.contact-lines { list-style: none; margin: 12px 0 0; padding: 0; }
ul.contact-lines li { padding: 7px 0; font-size: 15px; border-bottom: 1px solid var(--line); }
ul.contact-lines li:last-child { border-bottom: none; }
ul.contact-lines strong { display: inline-block; min-width: 118px; color: var(--ink); }

.faq-list li { padding-left: 0; margin-bottom: 14px; }
.faq-list li::before { display: none; }
.faq-list strong { display: block; margin-bottom: 2px; }

@media (max-width: 768px) { .content-narrow { padding: 0 14px; } }

/* ── 页眉下拉子菜单（核心 5 类 + More 下拉） ── */
.main-menu li { position: relative; }
/* 导航整体撑满页眉高度，使下拉从页眉底边开始（避免面板压住页眉） */
.main-menu { align-self: stretch; }
.main-menu > ul { height: 100%; }
.main-menu > ul > li { height: 100%; display: flex; align-items: center; }
.main-menu .menu-item-has-children > a { padding-right: 13px; }
.main-menu .menu-item-has-children > a::before {
  content: ""; position: absolute; right: 1px; top: 50%; width: 5px; height: 5px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: translateY(-80%) rotate(45deg);
}
.main-menu .sub-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  display: none; flex-direction: column; gap: 0; min-width: 232px;
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 8px 0; z-index: 60; margin: 0;
}
.main-menu .sub-menu::before { content: ""; position: absolute; top: -8px; left: 0; right: 0; height: 8px; }
.main-menu li:hover > .sub-menu, .main-menu li:focus-within > .sub-menu { display: flex; }
.main-menu .sub-menu li { width: 100%; display: block; }
.main-menu .sub-menu a {
  display: block; padding: 9px 18px; text-transform: none; letter-spacing: 0;
  font-size: 13px; font-weight: 500; white-space: nowrap; color: var(--ink);
}
.main-menu .sub-menu a::after { display: none; }
.main-menu .sub-menu a:hover { background: #F1F6FC; color: var(--brand); }

@media (max-width: 768px) {
  .main-menu { align-self: auto; }
  .main-menu > ul { height: auto; }
  .main-menu > ul > li { height: auto; }
  .main-menu .menu-item-has-children > a::before { display: none; }
  .main-menu .sub-menu {
    position: static; transform: none; display: block; box-shadow: none;
    border: none; border-radius: 0; padding: 0 0 0 14px; min-width: 0; margin: 0;
  }
  .main-menu .sub-menu a { padding: 10px 14px; font-size: 13px; }
}

/* Astra 会往菜单项里塞自己的箭头，页眉这套自定义导航不需要，隐藏掉避免双箭头 */
.main-menu .ast-menu-toggle, .main-menu .dropdown-menu-toggle { display: none !important; }
