/*
Theme Name: Euro Warehouse
Theme URI: https://www.farseasty.com
Description: EuroWarehouse 欧洲海外仓主题 - 基于 Astra 子主题定制（Stripe 风格设计系统）
Version: 1.0.8
Author: WorkBuddy
Author URI: https://workbuddy.ai
Template: astra
Text Domain: euro-warehouse
*/

/* ============================================================
   欧洲海外仓 · Astra 子主题
   设计系统：Stripe 风格现代极简
   主色：科技蓝 #3b82f6 + 琥珀色 #f59e0b
   ============================================================ */

/* ===== CSS Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* === 主色调 === */
    --color-primary: #3b82f6;
    --color-primary-hover: #2563eb;
    --color-primary-light: #dbeafe;
    --color-primary-50: #eff6ff;
    --color-amber: #f59e0b;
    --color-amber-hover: #d97706;

    /* === 中性色 === */
    --color-bg: #ffffff;
    --color-surface: #f8fafc;
    --color-surface-hover: #f1f5f9;
    --color-border: #e2e8f0;
    --color-border-light: #f1f5f9;
    --color-text-primary: #0f172a;
    --color-text-secondary: #475569;
    --color-text-muted: #94a3b8;
    --color-dark: #0f172a;

    /* === 状态色 === */
    --color-success: #10b981;
    --color-success-light: #d1fae5;
    --color-warning: #f59e0b;
    --color-warning-light: #fef3c7;
    --color-danger: #ef4444;
    --color-danger-light: #fee2e2;
    --color-info: #3b82f6;
    --color-info-light: #dbeafe;

    /* === 辅助色 === */
    --color-purple-light: #ede9fe;
    --color-purple: #7c3aed;

    /* === 字体 === */
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', 'PingFang SC', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', 'PingFang SC', sans-serif;

    /* === 间距 === */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;

    /* === 圆角 === */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;

    /* === 阴影 === */
    --shadow-raised: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-floating: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-overlay: 0 8px 24px rgba(0,0,0,0.15);
    --shadow-hover: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);

    /* === 过渡 === */
    --transition: all 0.2s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-primary);
    background: var(--color-bg);
    line-height: 1.6;
    font-size: 16px;
}

img { max-width: 100%; height: auto; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-primary-hover); }

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-text-primary);
    line-height: 1.3;
    letter-spacing: -0.01em;
}
h1 { font-size: 36px; font-weight: 700; line-height: 1.2; margin-bottom: 20px; }
h2 { font-size: 28px; font-weight: 600; line-height: 1.3; margin-bottom: 16px; }
h3 { font-size: 22px; font-weight: 600; line-height: 1.4; margin-bottom: 12px; }
h4 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }

/* ===== Layout ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.section { padding: 80px 0; }
.section--surface { background: var(--color-surface); }

/* ===== Grid ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    gap: 8px;
}
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-primary-hover); transform: translateY(-2px); box-shadow: var(--shadow-hover); color: #fff; }
.btn-secondary { background: transparent; color: var(--color-primary); border: 2px solid var(--color-primary); }
.btn-secondary:hover { background: var(--color-primary); color: #fff; }
.btn-amber { background: var(--color-amber); color: #fff; font-weight: 700; }
.btn-amber:hover { background: var(--color-amber-hover); transform: translateY(-2px); box-shadow: var(--shadow-hover); color: #fff; }
.btn-lg { padding: 14px 32px; font-size: 18px; }
.btn-sm { padding: 8px 16px; font-size: 14px; }
.btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background: var(--color-primary);
    color: #fff !important;
    font-weight: 600;
    font-size: 14px;
    border-radius: 20px;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-quote:hover {
    background: var(--color-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59,130,246,0.35);
    color: #fff !important;
}
/* 移动端菜单内的获取报价项：桌面隐藏，移动菜单展开时显示 */
.nav-menu-item-quote {
    display: none;
    margin-top: 8px;
}
@media (max-width: 767px) {
    .nav-menu.open .nav-menu-item-quote {
        display: block;
    }
    .nav-menu-item-quote .btn-quote {
        width: 100%;
        justify-content: center;
        margin-top: 8px;
    }
}

/* ===== Card ===== */
.card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-floating); transform: translateY(-4px); }

/* ===== Footer ===== */
.site-footer {
    background: var(--color-dark);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.footer-badge { font-size: 13px; color: rgba(255,255,255,0.6); }
.footer-badge::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: var(--color-success);
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    margin-right: 4px;
}

/* ===== Hero ===== */
.page-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1d4ed8 100%);
    color: #fff;
    padding: 96px 0 80px;
}
.page-hero h1 { color: #fff; font-size: 40px; max-width: 720px; }
.page-hero .lead { color: rgba(255,255,255,0.85); font-size: 18px; margin-bottom: 32px; }

/* ===== Responsive ===== */
@media (max-width: 1023px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 767px) {
    h1 { font-size: 28px; }
    h2 { font-size: 24px; }
    .section { padding: 56px 0; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .page-hero { padding: 72px 0 56px; }
    .page-hero h1 { font-size: 30px; }
}
/* ============================================================
   欧洲海外仓 · 多页面站点共享样式
   设计系统：Stripe 风格现代极简（科技蓝 #3b82f6 + 琥珀 #f59e0b）
   版本：v2.0（扩展规范） 维护：原型构建师 筑原型
   说明：本文件包含 v1 全部核心样式 + 8 个新增组件样式
         （Breadcrumb / NewsCard / Pagination / TagFilter /
          Sidebar / CTASection / ServiceTable / FAQAccordion）
   ============================================================ */

/* ===== CSS Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* === 主色调 === */
    --color-primary: #3b82f6;
    --color-primary-hover: #2563eb;
    --color-primary-light: #dbeafe;
    --color-primary-50: #eff6ff;
    --color-amber: #f59e0b;
    --color-amber-hover: #d97706;

    /* === 中性色 === */
    --color-bg: #ffffff;
    --color-surface: #f8fafc;
    --color-surface-hover: #f1f5f9;
    --color-border: #e2e8f0;
    --color-border-light: #f1f5f9;
    --color-text-primary: #0f172a;
    --color-text-secondary: #475569;
    --color-text-muted: #94a3b8;
    --color-dark: #0f172a;

    /* === 状态色 === */
    --color-success: #10b981;
    --color-success-light: #d1fae5;
    --color-warning: #f59e0b;
    --color-warning-light: #fef3c7;
    --color-danger: #ef4444;
    --color-danger-light: #fee2e2;
    --color-info: #3b82f6;
    --color-info-light: #dbeafe;

    /* === 新闻栏目色 === */
    --color-category-industry: #3b82f6;
    --color-category-company: #8b5cf6;
    --color-category-logistics: #10b981;
    --color-category-seller: #f59e0b;

    /* === 辅助色 === */
    --color-purple-light: #ede9fe;
    --color-purple: #7c3aed;

    /* === 字体 === */
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', 'PingFang SC', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', 'PingFang SC', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* === 间距 === */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;

    /* === 圆角 === */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;

    /* === 阴影 === */
    --shadow-flat: none;
    --shadow-raised: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-floating: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-overlay: 0 8px 24px rgba(0,0,0,0.15);
    --shadow-hover: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);

    /* === Z-index === */
    --z-base: 0;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-modal: 300;
    --z-toast: 400;

    --transition: all 0.2s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-primary);
    background: var(--color-bg);
    line-height: 1.6;
    font-size: 16px;
}

img { max-width: 100%; height: auto; }
a { color: var(--color-primary); }

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-text-primary);
    line-height: 1.3;
    letter-spacing: -0.01em;
}
h1 { font-size: 36px; font-weight: 700; line-height: 1.2; margin-bottom: 20px; }
h2 { font-size: 28px; font-weight: 600; line-height: 1.3; margin-bottom: 16px; }
h3 { font-size: 22px; font-weight: 600; line-height: 1.4; margin-bottom: 12px; }
h4 { font-size: 18px; font-weight: 600; line-height: 1.5; margin-bottom: 8px; }
p { line-height: 1.7; }

.display-title { font-size: 48px; font-weight: 700; line-height: 1.1; }
.lead { font-size: 18px; color: var(--color-text-secondary); line-height: 1.6; }

/* ===== Layout ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.section { padding: 80px 0; }
.section--surface { background: var(--color-surface); }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { margin-bottom: 8px; }
.section-title p { color: var(--color-text-secondary); font-size: 18px; max-width: 640px; margin: 0 auto; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ===== 业务组件栅格（响应式） ===== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.warehouse-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}
@media (max-width: 1023px) {
    .warehouse-detail-grid { gap: 32px; }
}
@media (max-width: 767px) {
    .news-grid { grid-template-columns: 1fr; gap: 20px; }
    .warehouse-detail-grid { grid-template-columns: 1fr; gap: 28px; }
    .services-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-primary-hover); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-secondary { background: transparent; color: var(--color-primary); border: 2px solid var(--color-primary); }
.btn-secondary:hover { background: var(--color-primary); color: #fff; }
.btn-amber { background: var(--color-amber); color: #fff; font-weight: 700; }
.btn-amber:hover { background: var(--color-amber-hover); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-ghost { background: transparent; color: var(--color-text-secondary); border: 1px solid var(--color-border); }
.btn-ghost:hover { border-color: var(--color-primary); color: var(--color-primary); }
.btn-lg { padding: 14px 32px; font-size: 18px; }
.btn-sm { padding: 8px 16px; font-size: 14px; }

/* ===== Cards ===== */
.card {
    position: relative;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.card:hover {
    box-shadow: var(--shadow-floating);
    transform: translateY(-2px);
}

/* ===== Header / Nav ===== */
.wp-child-theme-euro-warehouse .site-header,
.site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 999 !important;
    background: rgba(255,255,255,0.88) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid var(--color-border-light) !important;
    height: 72px !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}
.main-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 32px;
}
.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    gap: 8px;
}
.logo img {
    height: 48px;
    width: auto;
    display: block;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
    display: block;
    text-decoration: none;
    color: var(--color-text-primary);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    transition: var(--transition);
    position: relative;
}
.nav-menu > li > a:hover { color: var(--color-primary); }
/* 当前页面高亮：WordPress 标准类 current-menu-item / current_page_item /
   current-menu-ancestor（父级）—— 兼容 .active 旧类 */
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current_page_item > a,
.nav-menu > li.current-menu-ancestor > a,
.nav-menu > li > a.active {
    color: var(--color-primary);
    font-weight: 600;
}
.nav-menu > li.current-menu-item > a::after,
.nav-menu > li.current_page_item > a::after,
.nav-menu > li.current-menu-ancestor > a::after,
.nav-menu > li > a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
}
/* 有子菜单的当前项：箭头用 ::before，下划线用 ::after（覆盖箭头） */
.nav-menu > li.menu-item-has-children.current-menu-item > a::after,
.nav-menu > li.menu-item-has-children.current-menu-ancestor > a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
}
.nav-menu > li.menu-item-has-children > a::after {
    content: '▾';
    display: inline-block;
    margin-left: 4px;
    font-size: 11px;
    color: var(--color-text-muted);
}
.sub-menu {
    position: absolute;
    top: 100%;
    left: -12px;
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-overlay);
    padding: 8px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: var(--z-dropdown);
}
.nav-menu > li.menu-item-has-children:hover .sub-menu,
.nav-menu > li.menu-item-has-children:focus-within .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.sub-menu li a {
    display: block;
    padding: 10px 14px;
    border-radius: 6px;
    text-decoration: none;
    color: var(--color-text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}
.sub-menu li a:hover {
    background: var(--color-surface);
    color: var(--color-primary);
}
.sub-menu li.current-menu-item a {
    color: var(--color-primary);
    font-weight: 600;
    background: var(--color-surface);
}
.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch {
    padding: 6px 10px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    color: var(--color-text-primary);
    font-family: var(--font-body);
}
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text-primary);
    margin: 5px 0;
    border-radius: 2px;
    transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Breadcrumb ===== */
.breadcrumb {
    padding: 16px 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border-light);
}
.breadcrumb__list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    flex-wrap: wrap;
    font-size: 14px;
}
.breadcrumb__list a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb__list a:hover { color: var(--color-primary); }
.breadcrumb__separator { color: var(--color-text-muted); }
.breadcrumb__list li:last-child {
    color: var(--color-text-primary);
    font-weight: 500;
}

/* ===== Page Hero（子页面通用 Hero） ===== */
.page-hero {
    background: linear-gradient(135deg, var(--color-dark) 0%, #1e3a8a 45%, var(--color-primary-hover) 100%);
    color: #fff;
    padding: 96px 0 72px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom center no-repeat;
    background-size: cover;
}
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; font-size: 40px; max-width: 720px; }
.page-hero .lead { color: rgba(255,255,255,0.85); font-size: 18px; max-width: 640px; margin-bottom: 32px; }
.page-hero .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.page-hero .btn-secondary { border-color: #fff; color: #fff; }
.page-hero .btn-secondary:hover { background: #fff; color: var(--color-primary); }

/* ===== Service Advantage Cards ===== */
.advantage-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    transition: var(--transition);
    height: 100%;
}
.advantage-card:hover {
    box-shadow: var(--shadow-floating);
    transform: translateY(-4px);
    border-color: var(--color-primary);
}
.advantage-card .icon {
    width: 56px;
    height: 56px;
    background: var(--color-primary-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 20px;
}
.advantage-card .icon svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}
.advantage-card h3 { font-size: 18px; margin-bottom: 10px; }
.advantage-card p { color: var(--color-text-secondary); font-size: 14px; }

/* ===== Process Steps ===== */
.process-steps {
    display: flex;
    justify-content: center;
    gap: 32px;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: var(--color-primary);
    z-index: 1;
    opacity: 0.25;
}
.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 260px;
}
.step-number {
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 16px;
    box-shadow: 0 4px 16px rgba(37,99,235,0.3);
}
.process-step h4 { margin-bottom: 8px; }
.process-step p { color: var(--color-text-secondary); font-size: 14px; }

/* ===== ServiceTable ===== */
.service-table-wrapper {
    overflow-x: auto;
    margin: 24px 0;
    border-radius: var(--radius-md);
}
.service-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-raised);
    min-width: 600px;
}
.service-table thead { background: var(--color-primary); color: #fff; }
.service-table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.service-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--color-border);
    font-size: 14px;
    color: var(--color-text-secondary);
}
.service-table tbody tr:last-child td { border-bottom: none; }
.service-table tbody tr:hover { background: var(--color-surface-hover); }
.icon-check { color: var(--color-success); font-weight: 700; margin-right: 6px; }
.icon-cross { color: var(--color-danger); font-weight: 700; margin-right: 6px; }

/* ===== FAQ Accordion ===== */
.faq-accordion { margin: 24px 0; }
.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s;
    background: #fff;
}
.faq-item:hover { box-shadow: var(--shadow-raised); }
.faq-item[open] { border-color: var(--color-primary); }
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: var(--color-text-primary);
    background: #fff;
    transition: background 0.2s;
    list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { background: var(--color-surface-hover); }
.faq-item[open] .faq-question { background: var(--color-primary-light); }
.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-text-secondary);
    transition: transform 0.3s, color 0.2s;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); color: var(--color-primary); }
.faq-answer {
    padding: 0 24px 20px 24px;
    color: var(--color-text-secondary);
    font-size: 15px;
    line-height: 1.7;
}
.faq-answer p { margin: 0; }
.faq-answer p + p { margin-top: 12px; }

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    padding: 64px 0;
    margin-top: 0;
}
.cta-section__content { text-align: center; color: #fff; }
.cta-section__title { font-size: 32px; font-weight: 700; margin: 0 0 16px 0; color: #fff; }
.cta-section__text { font-size: 18px; margin: 0 0 32px 0; opacity: 0.9; color: #fff; }
.cta-section__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-section .btn-amber { background: var(--color-amber); color: #fff; }
.cta-section .btn-amber:hover { background: var(--color-amber-hover); }
.cta-section .btn-secondary { border-color: #fff; color: #fff; }
.cta-section .btn-secondary:hover { background: #fff; color: var(--color-primary); }

.cta-section--light {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
}
.cta-section--light .cta-section__title { color: var(--color-text-primary); }
.cta-section--light .cta-section__text { color: var(--color-text-secondary); opacity: 1; }
.cta-section--light .btn-secondary { border-color: var(--color-primary); color: var(--color-primary); }
.cta-section--light .btn-secondary:hover { background: var(--color-primary); color: #fff; }

/* ===== NewsCard ===== */
.news-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    height: 100%;
}
.news-card:hover {
    box-shadow: var(--shadow-floating);
    transform: translateY(-4px);
}
.news-card__link { text-decoration: none; color: inherit; display: block; }
.news-card__image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: var(--color-border-light);
}
.news-card__image .img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
}
.news-card__category {
    position: absolute;
    top: 12px;
    left: 12px;
    color: #fff;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
}
.news-card__body { padding: 20px; }
.news-card__title {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 12px 0;
    color: var(--color-text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-card__excerpt {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--color-text-muted);
}
.news-card__date { color: var(--color-text-muted); }

/* ===== TagFilter ===== */
.tag-filter__title { font-size: 14px; font-weight: 600; margin: 0 0 12px 0; color: var(--color-text-primary); }
.tag-filter__list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-filter__item {
    padding: 8px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    background: #fff;
    color: var(--color-text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-body);
}
.tag-filter__item:hover { border-color: var(--color-primary); color: var(--color-primary); }
.tag-filter__item--active { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
.tag-filter__item--active:hover { background: var(--color-primary-hover); color: #fff; }

/* ===== News category tags ===== */
.tag-industry { background: var(--color-category-industry); }
.tag-company { background: var(--color-category-company); }
.tag-logistics { background: var(--color-category-logistics); }
.tag-seller { background: var(--color-category-seller); }

/* ===== 新闻页 Hero 增强 ===== */
.news-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1d4ed8 100%);
    padding: 48px 0 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.news-hero::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}
.news-hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -30px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.news-hero .container { position: relative; z-index: 1; }
.news-hero__title {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.news-hero__desc {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
}
.news-hero__stats {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    padding: 6px 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}
.news-hero__stat strong { font-size: 18px; color: #fff; margin-right: 4px; }
.news-hero__stat-divider { color: rgba(255,255,255,0.4); }

/* 分类筛选标签（Hero 内） */
.news-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.news-filter__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}
.news-filter__tag:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
    color: #fff;
}
.news-filter__tag--active {
    background: #fff;
    border-color: #fff;
    color: var(--color-primary);
    font-weight: 600;
}
.news-filter__tag--active:hover {
    background: #fff;
    color: var(--color-primary);
}
.news-filter__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 10px;
    background: rgba(0,0,0,0.18);
    font-size: 12px;
    font-weight: 600;
}
.news-filter__tag--active .news-filter__count {
    background: var(--color-primary);
    color: #fff;
}

/* 当前分类提示条 */
.news-filter-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    margin-bottom: 28px;
    font-size: 14px;
}
.news-filter-bar__label { color: var(--color-text-muted); }
.news-filter-bar__value {
    color: var(--color-primary);
    font-weight: 600;
}
.news-filter-bar__clear {
    margin-left: auto;
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}
.news-filter-bar__clear:hover { color: var(--color-danger); }

/* 空状态 */
.news-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--color-text-secondary);
}
.news-empty p { font-size: 16px; margin-bottom: 20px; }
.news-empty .btn { display: inline-block; }

/* 新闻卡片图片（统一高度） */
.news-card__image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    transition: transform 0.3s;
}
.news-card:hover .news-card__image img { transform: scale(1.05); }

/* ===== Pagination ===== */
.pagination { display: flex; justify-content: center; margin-top: 48px; }
.pagination__list { display: flex; align-items: center; gap: 8px; list-style: none; }
.pagination__link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: #fff;
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}
.pagination__link:hover { background: var(--color-surface-hover); border-color: var(--color-primary); color: var(--color-primary); }
.pagination__link--active { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
.pagination__link--active:hover { background: var(--color-primary-hover); color: #fff; }
.pagination__item--ellipsis { color: var(--color-text-muted); padding: 0 8px; }

/* ===== Sidebar ===== */
.sidebar { position: sticky; top: 96px; }
.sidebar__section {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 24px;
}
.sidebar__title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-border);
    color: var(--color-text-primary);
}
.sidebar__list { list-style: none; }
.sidebar__list li { margin-bottom: 12px; }
.sidebar__list li:last-child { margin-bottom: 0; }
.sidebar__link {
    display: block;
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s;
}
.sidebar__link:hover { background: var(--color-surface-hover); color: var(--color-primary); }
.sidebar__link--active { background: var(--color-primary-light); color: var(--color-primary); font-weight: 600; }
.sidebar__list--numbered { counter-reset: sidebar-counter; }
.sidebar__list--numbered li { counter-increment: sidebar-counter; position: relative; padding-left: 32px; }
.sidebar__list--numbered li::before {
    content: counter(sidebar-counter);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* ===== News Layout (Template B) ===== */
.news-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 32px;
}
.news-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* ===== Support Layout (Template E) ===== */
.support-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 32px;
}

/* ===== Article (Template C) ===== */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 32px;
}
.article-header { margin-bottom: 32px; }
.article-category {
    display: inline-block;
    color: #fff;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}
.article-header h1 { font-size: 34px; margin-bottom: 16px; }
.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--color-text-muted);
    font-size: 14px;
    flex-wrap: wrap;
}
.article-meta .meta-author { color: var(--color-text-secondary); font-weight: 500; }

/* ===== Article body typography ===== */
.article-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-primary);
}
.article-body p { margin: 0 0 20px 0; }
.article-body h2 {
    font-size: 26px;
    font-weight: 700;
    margin: 40px 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-border);
}
.article-body h3 { font-size: 21px; font-weight: 600; margin: 32px 0 16px 0; }
.article-body h4 { font-size: 18px; font-weight: 600; margin: 24px 0 12px 0; }
.article-body blockquote {
    margin: 32px 0;
    padding: 20px 24px;
    background: var(--color-surface);
    border-left: 4px solid var(--color-primary);
    font-style: italic;
    color: var(--color-text-secondary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.article-body blockquote p { margin: 0; }
.article-body ul, .article-body ol { margin: 20px 0; padding-left: 24px; }
.article-body li { margin-bottom: 12px; color: var(--color-text-secondary); }
.article-body ul li { list-style-type: disc; }
.article-body ol li { list-style-type: decimal; }
.article-body a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 2px; }
.article-body a:hover { color: var(--color-primary-hover); }
.article-body table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
    font-size: 14px;
}
.article-body th, .article-body td { padding: 12px 16px; border: 1px solid var(--color-border); text-align: left; }
.article-body th { background: var(--color-surface); font-weight: 600; color: var(--color-text-primary); }
.article-body td { color: var(--color-text-secondary); }
.article-body hr { margin: 40px 0; border: none; height: 1px; background: var(--color-border); }

/* ===== Share buttons ===== */
.share-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: #fff;
    color: var(--color-text-secondary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}
.share-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }

/* ===== Forms ===== */
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 8px;
}
.form-group label .required { color: var(--color-danger); }
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--color-text-primary);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}
textarea.form-control { min-height: 140px; resize: vertical; }
.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--color-text-secondary); }
.form-check input { margin-top: 4px; accent-color: var(--color-primary); }
.form-hint { font-size: 12px; color: var(--color-text-muted); margin-top: 6px; }
.form-error {
    background: var(--color-danger-light);
    color: var(--color-danger);
    border-left: 4px solid var(--color-danger);
    padding: 12px 16px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-size: 14px;
    margin-bottom: 20px;
    display: none;
}
.form-success {
    background: var(--color-success-light);
    color: var(--color-success);
    border-left: 4px solid var(--color-success);
    padding: 12px 16px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-size: 14px;
    margin-bottom: 20px;
    display: none;
}

/* ===== Contact Form 7 样式 ===== */
.wpcf7-form {
    display: block;
}
.wpcf7-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 8px;
}
.wpcf7-form .wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 20px;
}
.wpcf7-form .wpcf7-form-control-wrap[data-name="your-message"] {
    margin-bottom: 24px;
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--color-text-primary);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}
.wpcf7-form textarea {
    min-height: 140px;
    resize: vertical;
}
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}
.wpcf7-form .wpcf7-submit {
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}
.wpcf7-form .wpcf7-submit:hover {
    background: #2563eb;
    transform: translateY(-1px);
}
.wpcf7-form .wpcf7-submit:active {
    transform: translateY(0);
}
/* 数学验证码 */
.ew-cf7-captcha {
    margin: 12px 0;
}
.ew-captcha-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.ew-captcha-label {
    display: block;
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--color-text);
}
.ew-captcha-label .required {
    color: var(--color-danger);
}
.ew-captcha-question {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef3ff;
    border: 1px solid #c9d8ff;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 16px;
    font-weight: 700;
    color: #1a3f8f;
    min-width: 90px;
    user-select: none;
}
.ew-captcha-input {
    flex: 1;
    min-width: 160px;
}
.wpcf7-form .ew-captcha-input {
    border: 1px solid var(--color-border) !important;
}
.wpcf7-form .ew-captcha-input:focus {
    border-color: var(--color-primary) !important;
}
.wpcf7-form .wpcf7-response-output {
    margin: 20px 0 0;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    font-size: 14px;
    line-height: 1.6;
}
.wpcf7-form .wpcf7-validation-errors,
.wpcf7-form .wpcf7-acceptance-missing {
    border: 1px solid var(--color-danger);
    background: var(--color-danger-light);
    color: var(--color-danger);
}
.wpcf7-form .wpcf7-mail-sent-ok {
    border: 1px solid var(--color-success);
    background: var(--color-success-light);
    color: var(--color-success);
}
.wpcf7-form .wpcf7-not-valid-tip {
    color: var(--color-danger);
    font-size: 13px;
    margin-top: 6px;
}
.wpcf7-form .wpcf7-form-control.wpcf7-not-valid {
    border-color: var(--color-danger);
}
.wpcf7-form .wpcf7-list-item {
    margin: 0 16px 0 0;
}
.wpcf7-form input[type="checkbox"],
.wpcf7-form input[type="radio"] {
    accent-color: var(--color-primary);
    margin-right: 6px;
}

/* ===== Alerts ===== */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-md);
    font-size: 14px;
    margin-bottom: 20px;
    border-left: 4px solid;
}
.alert-success { background: var(--color-success-light); border-color: var(--color-success); color: var(--color-success); }
.alert-warning { background: var(--color-warning-light); border-color: var(--color-warning); color: var(--color-amber-hover); }
.alert-danger { background: var(--color-danger-light); border-color: var(--color-danger); color: var(--color-danger); }
.alert-info { background: var(--color-info-light); border-color: var(--color-info); color: var(--color-primary-hover); }

/* ===== Legal typography ===== */
.legal-content { padding: 64px 0 96px; }
.legal-content .container { max-width: 800px; }
.legal-update {
    display: block;
    color: var(--color-text-muted);
    font-size: 14px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}
.legal-body { font-size: 15px; line-height: 1.8; color: var(--color-text-primary); }
.legal-body p { margin: 0 0 20px 0; }
.legal-body h2 { font-size: 22px; font-weight: 700; margin: 32px 0 16px 0; }
.legal-body h3 { font-size: 18px; font-weight: 600; margin: 24px 0 12px 0; }
.legal-body ul, .legal-body ol { margin: 16px 0 20px 0; padding-left: 24px; }
.legal-body li { margin-bottom: 10px; color: var(--color-text-secondary); }
.legal-body ul li { list-style-type: disc; }
.legal-body ol li { list-style-type: decimal; }

/* ===== Stats ===== */
.stats-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    color: #fff;
    padding: 64px 0;
}
.stat-item { text-align: center; color: #fff; }
.stat-number { font-size: 44px; font-weight: 700; margin-bottom: 8px; }
.stat-label { font-size: 16px; opacity: 0.9; }

/* ===== Team ===== */
.team-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}
.team-card:hover { box-shadow: var(--shadow-floating); transform: translateY(-4px); }
.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-primary-50);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 16px;
}
.team-card h4 { margin-bottom: 4px; }
.team-role { color: var(--color-primary); font-size: 13px; font-weight: 600; margin-bottom: 10px; }
.team-card p { color: var(--color-text-secondary); font-size: 13px; }

/* ===== Contact info ===== */
.contact-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-floating); }
.contact-card .icon {
    width: 52px;
    height: 52px;
    background: var(--color-primary-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin: 0 auto 16px;
}
.contact-card h4 { margin-bottom: 8px; }
.contact-card p { color: var(--color-text-secondary); font-size: 14px; margin-bottom: 4px; }

/* ===== Footer ===== */
.site-footer { background: var(--color-dark); color: #fff; padding: 64px 0 32px; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.site-footer h4 { color: #fff; margin-bottom: 20px; font-size: 17px; }
.site-footer p, .site-footer li { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.8; }
.footer-links,
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links li,
.footer-links ul li { margin-bottom: 8px; }
.footer-links a,
.footer-links ul a { color: rgba(255,255,255,0.7); text-decoration: none; transition: var(--transition); }
.footer-links a:hover,
.footer-links ul a:hover { color: #fff; }
.footer-contact p { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 10px; white-space: nowrap; }
.footer-contact p strong { flex-shrink: 0; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}
.footer-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.footer-badge {
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
    font-size: 12px;
    color: rgba(255,255,255,0.8);
}
.social-icons { display: flex; gap: 12px; margin-top: 16px; }
.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}
.social-icon:hover { background: var(--color-primary); color: #fff; }

/* ===== Image placeholders ===== */
.img-placeholder {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, #d1e3ff 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 13px;
    text-align: center;
    padding: 16px;
    width: 100%;
    height: 100%;
}
.img-placeholder .ph-icon { font-size: 40px; margin-bottom: 8px; }
.img-placeholder--dark {
    background: linear-gradient(135deg, #1e293b 0%, var(--color-dark) 100%);
    color: rgba(255,255,255,0.7);
}
.img-placeholder--green {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #059669;
}

/* ===== Utility ===== */
.text-center { text-align: center; }
.mt-1 { margin-top: 16px; }
.mt-2 { margin-top: 32px; }
.mt-3 { margin-top: 48px; }
.mb-1 { margin-bottom: 16px; }
.mb-2 { margin-bottom: 32px; }
.mb-3 { margin-bottom: 48px; }
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}
.badge-primary { background: var(--color-primary-light); color: var(--color-primary-hover); }
.badge-amber { background: var(--color-warning-light); color: var(--color-amber-hover); }
.badge-success { background: var(--color-success-light); color: #059669; }
.badge-purple { background: #ede9fe; color: #7c3aed; }

/* ===== Responsive ===== */
/* 平板 768-1023 */
@media (max-width: 1023px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .news-layout, .support-layout, .article-layout { grid-template-columns: 1fr; }
    .sidebar { position: static; width: 100%; }
    .news-list { grid-template-columns: repeat(2, 1fr); }
    .display-title { font-size: 38px; }
    .process-steps { flex-wrap: wrap; }
    .process-steps::before { display: none; }
}

/* 移动 ≤767 */
@media (max-width: 767px) {
    h1 { font-size: 28px; }
    h2 { font-size: 24px; }
    .display-title { font-size: 30px; }
    .lead { font-size: 16px; }
    .section { padding: 56px 0; }
    .container { padding: 0 20px; }

    /* 导航 */
    .nav-menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-overlay);
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 24px 24px;
        gap: 4px;
    }
    .nav-menu.open { display: flex; }
    .nav-menu > li { width: 100%; }
    .nav-menu > li > a { padding: 12px 0; font-size: 16px; }
    .nav-menu > li > a.active::after { display: none; }
    .nav-menu > li.menu-item-has-children > a::after { display: none; }
    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 8px 0 0 16px;
        display: none;
        background: transparent;
    }
    .nav-menu > li.menu-open > .sub-menu,
    .sub-menu.open { display: block; }
    .nav-toggle { display: block; }
    .nav-actions .lang-switch { display: none; }
    .nav-actions .btn { padding: 8px 14px; font-size: 14px; }
    /* 移动端：右上角报价按钮隐藏（菜单内已有） */
    .nav-actions .btn-quote { display: none; }

    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .news-list { grid-template-columns: 1fr; }
    .news-card__image { height: 170px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-contact p { white-space: normal; flex-wrap: wrap; }

    /* 仓库详情页适配 */
    .warehouse-hero { padding: 48px 0 40px !important; }
    .warehouse-hero h1 { font-size: 26px !important; }
    .warehouse-hero > .container > div:first-child { flex-wrap: wrap; }
    .warehouse-gallery-main img { height: 240px !important; }
    .page-hero { padding: 72px 0 56px; }
    .page-hero h1 { font-size: 30px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { text-align: center; }
    .cta-section { padding: 48px 0; }
    .cta-section__title { font-size: 24px; }
    .cta-section__text { font-size: 16px; }
    .cta-section__actions { flex-direction: column; align-items: center; }
    .cta-section__actions .btn { width: 100%; max-width: 280px; }
    .pagination__list { gap: 4px; }
    .pagination__link { min-width: 36px; height: 36px; padding: 0 8px; font-size: 13px; }
    .pagination__item--ellipsis { padding: 0 4px; }
    .faq-question { padding: 16px 20px; font-size: 15px; }
    .faq-answer { padding: 0 20px 16px 20px; font-size: 14px; }
    .service-table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .service-table { min-width: 600px; }
    .service-table th, .service-table td { padding: 12px; font-size: 13px; }
    .process-steps { flex-direction: column; align-items: center; gap: 32px; }
    .process-step { max-width: 100%; }
    .article-header h1 { font-size: 26px; }
    .stat-number { font-size: 34px; }
}

/* 相关服务卡片链接 */
.card-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}
.card-link:hover {
    text-decoration: underline;
}

/* ===== 图标圆形背景 ===== */
.icon-circle {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}
.icon-circle--sm {
    width: 56px;
    height: 56px;
    background: var(--color-primary-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 20px;
}
.icon-circle--sm svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

/* ===== Hero 信任条 ===== */
.hero-trust {
    margin-top: 48px;
    display: flex;
    gap: 40px;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    flex-wrap: wrap;
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ===== 统计面板 ===== */
.stat-panel {
    padding: 12px 20px;
    border-radius: var(--radius-md);
}
.stat-panel--primary {
    background: var(--color-primary-light);
}
.stat-panel--success {
    background: var(--color-success-light);
}
.stat-panel--purple {
    background: var(--color-purple-light);
}
.stat-panel .stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 4px;
}
.stat-panel .stat-label {
    font-size: 13px;
    color: var(--color-text-secondary);
}

/* ===== Footer 徽章 ===== */
.footer-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}
.footer-badge {
    font-size: 13px;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 4px;
}
.footer-badge::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: var(--color-success);
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
}

/* ===== 卡片水平布局 ===== */
.card--horizontal {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

/* ===== 服务表格图标（替代 ✓/✗ 字符） ===== */
.icon-check::before { content: "✓"; }
.icon-cross::before { content: "✗"; }

/* ===== 表单卡片 ===== */
.form-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 32px;
}

/* ===== 文章页脚 ===== */
.article-footer { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--color-border); }
.article-footer__top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; margin-bottom: 32px; }

/* ===== 相关服务卡片图标（margin-bottom 16px 变体） ===== */
.icon-circle--related { margin-bottom: 16px; }

/* ===== Footer 额外配置项（ICP、友情链接、微信二维码） ===== */
.ew-footer-extra {
    background: transparent;
    border-top: 1px solid rgba(255,255,255,0.15);
    /* padding: 20px 0; */
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}
.ew-footer-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.ew-footer-row--top {
    margin-bottom: 12px;
}
.ew-footer-row--links {
    /* border-top: 1px solid #e5e7eb; */
    padding-top: 12px;
}
.ew-footer-icp a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}
.ew-footer-icp a:hover {
    color: #fff;
}
.ew-footer-friendlinks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.ew-footer-friendlinks a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}
.ew-footer-friendlinks a:hover {
    color: #fff;
}
.ew-footer-friendlinks a::after {
    content: "|";
    margin-left: 12px;
    color: rgba(255,255,255,0.25);
}
.ew-footer-friendlinks a:last-child::after {
    display: none;
}
.ew-footer-wechat-qr-bar {
    display: flex;
    align-items: center;
    gap: 8px;
}
.ew-footer-wechat-qr {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    object-fit: cover;
    background: #fff;
    padding: 2px;
}
.ew-footer-wechat-text {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
}
@media (max-width: 640px) {
    .ew-footer-row {
        flex-direction: column;
        gap: 12px;
    }
    .ew-footer-row--links {
        border-top: 1px solid #e5e7eb;
        padding-top: 12px;
    }
}

/* ===== 联系我们页面微信二维码 ===== */
.ew-contact-wechat {
    margin-top: 24px;
}
.ew-contact-wechat-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
}
.ew-contact-wechat-img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #e5e7eb;
}
.ew-contact-wechat-text {
    color: #6b7280;
    font-size: 14px;
}

/* ===== About 页面新样式 ===== */

/* Hero 标签 */
.hero-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-primary);
    background: var(--color-primary-50);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

/* 关于我们 Hero */
.page-hero--about {
    background: linear-gradient(135deg, #1a56db 0%, #1e40af 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}
.page-hero--about h1 {
    color: #fff;
    font-size: 40px;
    margin-bottom: 16px;
}
.page-hero--about .hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    max-width: 640px;
    margin: 0 auto 32px;
}
.page-hero--about .hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.page-hero--about .btn-outline {
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}
.page-hero--about .btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

/* 公司简介 两栏布局 */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.about-intro__text p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--color-text-secondary);
}
.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-primary);
    background: var(--color-primary-50);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.about-intro__visual .img-placeholder {
    width: 100%;
    min-height: 360px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

/* 核心数据网格 */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stat-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.stat-card__icon {
    color: var(--color-primary);
    margin-bottom: 16px;
}
.stat-card__icon svg {
    width: 32px;
    height: 32px;
}
.stat-card__number {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
}
.stat-card__suffix {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    display: inline;
}
.stat-card__label {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-top: 8px;
}

/* 核心优势网格 */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.advantage-card__icon {
    width: 56px;
    height: 56px;
    background: var(--color-primary-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 20px;
}
.advantage-card__icon svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

/* 时间线 */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 60px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border);
}
.timeline__item {
    position: relative;
    margin-bottom: 32px;
}
.timeline__item:last-child {
    margin-bottom: 0;
}
.timeline__year {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary);
    background: var(--color-primary-50);
    border-radius: 6px;
    padding: 3px 12px;
    display: inline-block;
    margin-bottom: 8px;
}
.timeline__dot {
    position: absolute;
    left: -48px;
    top: 9px;
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border-radius: 50%;
    border: 3px solid var(--color-surface);
    box-shadow: 0 0 0 2px var(--color-primary-50);
    z-index: 1;
}
.timeline__content {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 20px 24px;
}
.timeline__content h4 {
    font-size: 16px;
    margin-bottom: 6px;
}
.timeline__content p {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin: 0;
}

/* Section header 居中 */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-header .section-label {
    margin-bottom: 12px;
}
.section-header .section-title {
    margin-bottom: 12px;
}
.section-desc {
    color: var(--color-text-secondary);
    font-size: 16px;
}

/* 响应式 */
@media (max-width: 1024px) {
    .stats-grid,
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .about-intro {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .page-hero--about h1 {
        font-size: 28px;
    }
    .page-hero--about .hero-desc {
        font-size: 16px;
    }
    .stats-grid,
    .advantages-grid {
        grid-template-columns: 1fr 1fr;
    }
    .timeline {
        padding-left: 56px;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline__year {
        font-size: 11px;
    }
    .timeline__dot {
        left: -48px;
    }
}
@media (max-width: 480px) {
    .stats-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    .stat-card__number {
        font-size: 28px;
    }
}

/* ===== 仓库分布面板容器 ===== */
.warehouse-panel {
    background: var(--color-bg, #ffffff);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0,0, 0.06);
}
.warehouse-panel .grid-3 {
    gap: 24px;
}
@media (max-width: 768px) {
    .warehouse-panel {
        padding: 24px 16px;
        border-radius: 16px;
    }
}

/* ===== 仓库卡片（wh-card） ===== */
.warehouse-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.wh-card {
    background: var(--color-bg, #ffffff);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}
.wh-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}
.wh-card__media {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: var(--color-surface, #f8fafc);
}
.wh-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.wh-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wh-card__ph-icon {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 0.9;
}
.wh-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.wh-card__body {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.wh-card__title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: var(--color-text-primary, #111827);
}
.wh-card__meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.wh-card__meta li {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 14px;
    line-height: 1.5;
}
.wh-card__meta-label {
    flex-shrink: 0;
    min-width: 36px;
    color: var(--color-text-secondary, #6b7280);
}
.wh-card__meta-value {
    color: var(--color-text-primary, #111827);
    font-weight: 500;
}
@media (max-width: 1024px) {
    .warehouse-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .warehouse-grid {
        grid-template-columns: 1fr;
    }
    .wh-card__media {
        height: 200px;
    }
}

/* ===== 仓库卡片链接（可点击跳转详情页） ===== */
.wh-card-link {
    display: block;
    text-decoration: none;
    border-radius: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wh-card-link:hover {
    transform: translateY(-4px);
}

.wh-card-link:hover .wh-card {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.wh-card-link .wh-card {
    height: 100%;
    transition: box-shadow 0.2s ease;
}

.wh-card__more {
    display: inline-block;
    margin-top: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary, #046BD2);
}

/* 联系我们页仓库卡片 */
.warehouse-contact-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.warehouse-contact-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* ============================================
   合作品牌 LOGO 网格（物流公司 + 电商平台）
   ============================================ */
.logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.logos-grid--lg {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--color-border, #e5e7eb);
    border-radius: 14px;
    padding: 24px 16px 18px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.logo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
}

.logo-card__icon {
    width: 120px;
    height: 40px;
    flex-shrink: 0;
}
.logo-card__icon svg {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 8px;
}

.logo-card__name {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-primary, #111827);
    line-height: 1.3;
}
.logo-card__desc {
    font-size: 12px;
    color: var(--color-text-secondary, #6b7280);
    line-height: 1.4;
}

/* 响应式 */
@media (max-width: 1024px) {
    .logos-grid--lg {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 640px) {
    .logos-grid,
    .logos-grid--lg {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .logo-card {
        padding: 16px 10px 14px;
    }
    .logo-card__icon {
        width: 100px;
        height: 34px;
    }
    .logo-card__name {
        font-size: 13px;
    }
    .logo-card__desc {
        font-size: 11px;
    }
}

/* ===== 仓库详情页 ===== */
.warehouse-detail-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.warehouse-content h2,
.warehouse-content h3 {
    margin-top: 24px;
    margin-bottom: 12px;
}

.warehouse-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 16px 0;
}

.warehouse-content ul {
    padding-left: 20px;
    margin: 12px 0;
}

.warehouse-content li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .warehouse-detail-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .warehouse-hero h1 {
        font-size: 28px !important;
    }
}

/* ============================================
   仓库多图画廊（详情页）
   ============================================ */
.warehouse-gallery-main img {
    transition: transform 0.3s ease;
}
.warehouse-gallery-main img:hover {
    transform: scale(1.02);
}
.wh-thumb {
    opacity: 0.7;
    transition: opacity 0.2s ease;
}
.wh-thumb:hover {
    opacity: 1;
}
.wh-thumb-active {
    opacity: 1;
}

/* ============================================
   自营仓库标识（badge）
   ============================================ */
.ew-own-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #FFB800 0%, #f59e0b 100%);
    color: #1a1a2e;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(245, 158, 11, 0.35);
}
.ew-own-badge svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

/* 卡片媒体区自营 badge（绝对定位，右上角） */
.wh-card__media .ew-own-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
}

/* 联系页仓库卡片自营 badge */
.warehouse-contact-card .ew-own-badge {
    margin-left: auto;
}

/* ============================================
   Rank Math SEO 相关微调
   ============================================ */
/* 防止 Rank Math 注入的隐藏容器影响布局 */
#rank-math-faq, .rank-math-faq-block {
    margin: 24px 0;
}
/* 面包屑样式 */
.rank-math-breadcrumb {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 12px;
}
.rank-math-breadcrumb a {
    color: #046BD2;
    text-decoration: none;
}
.rank-math-breadcrumb a:hover {
    text-decoration: underline;
}

/* ============================================
   价格区间卡片（Price Range Card）
   用于服务页面替代固定价格表
   ============================================ */
.price-range-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    margin: 0 auto;
    max-width: 800px;
}

/* 价格模块 section 上下间距压缩（原 .section 80px 过宽） */
.section--price {
    padding: 48px 0;
}

.price-range-card__header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    padding: 24px 40px 20px;
    text-align: center;
}

.price-range-card__header h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 6px;
    color: #ffffff;
}

.price-range-card__header p {
    font-size: 14px;
    margin: 0;
    opacity: 0.85;
    line-height: 1.5;
}

.price-range-card__body {
    padding: 28px 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.price-range-card__range {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.price-range-card__label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
}

.price-range-card__value {
    font-size: 34px;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.price-range-card__note {
    font-size: 12px;
    color: #9ca3af;
    max-width: 360px;
    line-height: 1.5;
}

.price-range-card__features {
    width: 100%;
    max-width: 480px;
}

.price-range-card__features ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-range-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: #374151;
}

.price-range-card__features .icon-check {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 14px;
}

.price-range-card__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.price-range-card__cta .btn-lg {
    font-size: 15px;
    padding: 12px 40px;
    border-radius: 12px;
    width: 100%;
    max-width: 320px;
}

.price-range-card__cta-note {
    font-size: 12px;
    color: #9ca3af;
}

/* 响应式 */
@media (max-width: 768px) {
    .section--price {
        padding: 40px 0;
    }
    .price-range-card__header {
        padding: 20px 24px 16px;
    }
    .price-range-card__header h2 {
        font-size: 20px;
    }
    .price-range-card__body {
        padding: 24px 24px 28px;
        gap: 18px;
    }
    .price-range-card__value {
        font-size: 28px;
    }
    .price-range-card__features li {
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    .price-range-card {
        border-radius: 16px;
    }
    .section--price {
        padding: 32px 0;
    }
    .price-range-card__header h2 {
        font-size: 18px;
    }
    .price-range-card__value {
        font-size: 24px;
    }
    .price-range-card__cta .btn-lg {
        padding: 11px 24px;
        font-size: 14px;
    }
}

/* ============================================
   联系表单必填校验样式
   ============================================ */
.ew-field-error {
    border-color: #DC2626 !important;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12) !important;
}

.ew-error-tip {
    display: block;
    color: #DC2626;
    font-size: 13px;
    line-height: 1.5;
    margin-top: 6px;
    font-weight: 500;
    padding-left: 2px;
}

/* 必填星号样式 */
.wpcf7-form .required {
    color: #DC2626;
    font-weight: 700;
    margin-left: 2px;
}

/* 验证码输入框样式 */
.ew-captcha-input {
    margin-top: 8px;
}

/* 验证码题目样式 */
.ew-captcha-question {
    display: inline-block;
    background: #F3F4F6;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    font-variant-numeric: tabular-nums;
    margin-bottom: 4px;
}

/* 提交按钮禁用状态 */
.wpcf7-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* 表单整体错误提示 */
.wpcf7-form .wpcf7-response-output {
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1.5;
}

.wpcf7-form .wpcf7-response-output.wpcf7-validation-errors {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #DC2626;
}

.wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok {
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    color: #16A34A;
}

/* 响应式：移动端表单优化 */
@media (max-width: 640px) {
    .ew-error-tip {
        font-size: 12px;
    }
    .wpcf7-form input.wpcf7-form-control,
    .wpcf7-form select.wpcf7-form-control,
    .wpcf7-form textarea.wpcf7-form-control {
        font-size: 16px; /* 防止 iOS 自动缩放 */
    }
}

/* ============================================
   原生联系表单样式
   ============================================ */
.contact-native-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.contact-native-form input[type="text"],
.contact-native-form input[type="email"],
.contact-native-form input[type="tel"],
.contact-native-form select,
.contact-native-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.5;
    color: #111827;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-native-form input:focus,
.contact-native-form select:focus,
.contact-native-form textarea:focus {
    outline: none;
    border-color: #046BD2;
    box-shadow: 0 0 0 3px rgba(4, 107, 210, 0.12);
}

.contact-native-form .required {
    color: #DC2626;
    font-weight: 700;
}

.contact-native-form .ew-captcha-question {
    display: inline-block;
    background: #F3F4F6;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.contact-native-form .btn-lg {
    margin-top: 8px;
}

.form-success {
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.form-success p {
    margin: 0;
    color: #166534;
    font-size: 15px;
    font-weight: 500;
}

.form-errors {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 20px;
}

.form-errors .error-item {
    margin: 4px 0;
    color: #DC2626;
    font-size: 14px;
}
