/* ============================================================
   鎏金臻选 AURELIA 数码 - 全站样式
   杂志 / 画廊式商务布局  ·  Ivory × 鎏金 × 墨褐
   ------------------------------------------------------------
   设计语言摘要
   · 深空间：大幅留白 + 居中构图 + 衬线大标题
   · 通栏仪式：页面顶部 2px 渐变鎏金线 + 导航细金描边
   · 组件造型：极细金线 / 编号角标 / 细分隔线 / 小圆角(2-4px)
   · 字体现系：--font-display 衬线(杂志感) · --font-body 黑体
   · 反缀：克制商务，告别浮夸发光、深色巨幅的科技风
   ============================================================ */

:root {
  /* 色板（保持取值，仅统一语义） */
  --color-primary: #C29B3C;        /* 主金 */
  --color-primary-dark: #8A6A2E;   /* 深金 */
  --color-primary-light: #D9B86A;  /* 浅金 */
  --color-accent: #3F6B5C;         /* 墨绿点缀 */
  --color-accent-dark: #2F5448;
  --color-accent-light: #5F8A7A;
  --color-text: #2E2620;           /* 墨褐文字 */
  --color-text-light: #8A7F72;     /* 次级 */
  --color-bg: #FBF8F2;             /* 米白 */
  --color-bg-soft: #F5EFE4;        /* 柔和米白 */
  --color-bg-section: #F0E8D8;     /* 区块米黄 */
  --color-border: #E3D9C4;         /* 边框 */
  --color-line: #ECE3D2;           /* 分隔细线 */
  --color-gold: #C29B3C;
  --color-success: #3F6B5C;
  --color-danger: #A0522D;
  --color-warning: #C08A3E;

  /* 极浅投影（商务克制） */
  --shadow-sm: 0 1px 2px rgba(78, 62, 38, .05);
  --shadow: 0 6px 18px rgba(78, 62, 38, .07), 0 1px 3px rgba(78, 62, 38, .04);
  --shadow-lg: 0 18px 40px rgba(78, 62, 38, .12), 0 4px 10px rgba(78, 62, 38, .05);

  /* 小圆角 2-4px（商务方形） */
  --radius: 3px;
  --radius-sm: 2px;
  --radius-lg: 6px;

  --max-width: 1200px;

  /* 衬线展示字 · 黑体正文 */
  --font-display: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "STSong", "SimSun", serif;
  --font-body: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

/* ============= 基础 ============= */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}
/* 极淡纸纹（杂志纸感） */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .4;
  background-image:
    linear-gradient(90deg, rgba(120,90,40,.020) 0, rgba(120,90,40,.020) 1px, transparent 1px, transparent 100%);
  background-size: 96px 100%;
}
img { max-width: 100%; display: block; }
a { color: #7A5E29; text-decoration: none; transition: color .2s; }
a:hover { color: var(--color-gold); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* 表单：细边框 + 下划线式输入（杂志线框） */
input, textarea, select {
  font-family: inherit;
  font-size: 14px;
  padding: 8px 0;
  border: none;
  border-bottom: 1px solid var(--color-border);
  border-radius: 0;
  background: transparent;
  color: var(--color-text);
  transition: border-color .2s;
  outline: none;
  width: 100%;
}
input::placeholder, textarea::placeholder { color: #B8AD98; }
input:focus, textarea:focus, select:focus { border-bottom-color: var(--color-primary); }
select { cursor: pointer; }
select option { background: #fff; color: var(--color-text); }
textarea { resize: vertical; min-height: 100px; border: 1px solid var(--color-border); border-radius: var(--radius-sm); padding: 10px 12px; }

h1, h2, h3, h4, h5, h6 { font-weight: 600; line-height: 1.4; color: var(--color-text); }
h1 { font-size: 30px; }
h2 { font-size: 22px; }
h3 { font-size: 17px; }
h1, h2, .hero h1, .section-title h2, .footer-brand .fb-name, .modal-title { font-family: var(--font-display); letter-spacing: .02em; }

/* ============= 容器 ============= */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; width: 100%; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; width: 100%; }
main { flex: 1; padding-bottom: 48px; }

/* 页面顶部通栏仪式：极细鎏金渐变线 + 次级顶端细线 */
.mast-gold-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, #D9B86A 18%, #C29B3C 50%, #8A6A2E 82%, transparent);
}

/* ============= 顶部信息条 ============= */
.topbar {
  background: #FFFDF8;
  color: #A1967E;
  font-size: 12px;
  padding: 5px 0;
  border-bottom: 1px solid var(--color-line);
  letter-spacing: .04em;
}
.topbar a { color: #A1967E; }
.topbar a:hover { color: var(--color-primary-dark); }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; }
.topbar-info { display: flex; gap: 22px; }
.topbar-info .tb-item { position: relative; }
.topbar-info .tb-item + .tb-item { padding-left: 22px; }
.topbar-info .tb-item + .tb-item::before { content: ""; position: absolute; left: 0; top: 50%; width: 1px; height: 12px; background: var(--color-border); transform: translateY(-50%); }
.topbar-links { display: flex; gap: 18px; }
.tb-item { letter-spacing: .04em; }

/* ============= 导航（商务横栏 · 左标识右大间距） ============= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 241, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  /* 顶部细金色描边 */
  border-top: 1px solid #C9AE6E;
  border-bottom: 1px solid var(--color-line);
  transition: background .3s, box-shadow .3s;
}
.navbar.is-frosted, .navbar:hover {
  background: rgba(251, 247, 241, .96);
  box-shadow: 0 1px 10px rgba(78, 62, 38, .05);
}
/* 导航底部金色生长细线（hover） */
.navbar::after {
  content: ""; display: block; height: 1px;
  background: linear-gradient(90deg, transparent, #C29B3C 50%, transparent);
  transform-origin: center;
  transition: transform .3s ease;
}
.navbar:hover::after { transform: scaleX(1); }
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 28px;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
/* 方形印章（去圆角） */
.brand-seal {
  width: 42px; height: 42px; border-radius: 2px;
  background: #8A6A2E;
  color: #F7F1E3;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 600; letter-spacing: .04em;
  position: relative; flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(247,241,227,.35);
}
.brand-seal::after {
  content: ""; position: absolute; inset: 3px;
  border: 1px solid rgba(247, 241, 227, .4);
}
.brand-seal.small { width: 32px; height: 32px; font-size: 12px; border-radius: 2px; }
.brand-seal.small::after { inset: 2px; }
.brand-text b { display: block; font-size: 16px; color: var(--color-text); letter-spacing: .18em; font-family: var(--font-display); font-weight: 600; }
.brand-text small { display: block; font-size: 10px; color: #A08F6C; font-weight: 500; letter-spacing: .22em; margin-top: 3px; text-transform: uppercase; }

/* 右侧大间距导航 */
.nav-list { display: flex; gap: 34px; list-style: none; flex: 1; justify-content: flex-end; }
.nav-list a {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 2px;
  color: #4A4238;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  position: relative;
  white-space: nowrap;
  transition: color .2s;
}
/* 小写编号前缀 */
.nav-list a .nav-num { font-size: 10px; color: #C29B3C; letter-spacing: .06em; font-family: var(--font-display); opacity: .8; }
/* 金色下划线（宽度生长动效） */
.nav-list a::after {
  content: ""; position: absolute; left: 10%; bottom: 2px; width: 80%; height: 2px;
  background: var(--color-primary);
  transform: scaleX(0); transform-origin: center;
  transition: transform .32s ease;
}
.nav-list a:hover { color: var(--color-primary-dark); }
.nav-list a:hover::after { transform: scaleX(1); }
.nav-list a.active { color: var(--color-primary-dark); font-weight: 600; }
.nav-list a.active::after { transform: scaleX(1); }
.nav-list a.active .nav-num { opacity: 1; }

/* 商城专属入口（方形深金） */
.nav-mall-btn {
  background: #8A6A2E;
  color: #F7F1E3 !important;
  padding: 8px 16px !important;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: .1em;
  gap: 4px;
  box-shadow: inset 0 0 0 1px rgba(247,241,227,.25);
  transition: background .2s;
}
.nav-mall-btn::after { display: none !important; }
.nav-mall-btn:hover { background: #9B7A38; color: #fff !important; }

/* 购物车 / 搜索：细线框图标化按钮 */
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; padding: 0 10px;
  color: #5C5246;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  font-size: 13px; letter-spacing: .04em;
  background: transparent;
  transition: border-color .2s, color .2s, background .2s;
}
.nav-icon-btn:hover { border-color: var(--color-primary); color: var(--color-primary-dark); background: rgba(194,155,60,.05); }
.cart-icon { position: relative; display: inline-flex; align-items: center; gap: 6px; }
.cart-count {
  position: absolute; top: -5px; right: -8px;
  background: #A0522D; color: #fff;
  font-size: 10px; padding: 1px 5px; border-radius: 2px;
  min-width: 15px; text-align: center; display: none;
  font-family: var(--font-body);
}
.cart-count.active { display: block; }
.mobile-menu-btn { display: none; font-size: 18px; color: var(--color-text); padding: 4px 10px; border: 1px solid var(--color-border); border-radius: 2px; letter-spacing: .08em; }
.mobile-menu-btn:hover { border-color: var(--color-primary); color: var(--color-primary-dark); }

/* ============= 页脚（多分栏 · 细金分隔 · 米黄细腻） ============= */
.footer {
  background:
    linear-gradient(180deg, #F5EFE4 0%, #EFE7D6 100%);
  color: #6E6252;
  padding: 52px 0 24px;
  margin-top: 64px;
  font-size: 14px;
  position: relative;
  border-top: 1px solid #D8C9A8;
}
.footer::before {
  content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #C29B3C 50%, transparent);
}
.footer-gold-line { display: none; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  position: relative;
}
/* 各分栏之间的细金分隔竖线 */
.footer-grid > div { position: relative; padding-left: 24px; }
.footer-grid > div::before {
  content: ""; position: absolute; left: 0; top: 6%; bottom: 6%; width: 1px;
  background: #D8C9A8;
}
.footer-grid > div:first-child { padding-left: 0; }
.footer-grid > div:first-child::before { display: none; }
.footer h4 { color: #5C5246; font-size: 13px; font-weight: 600; letter-spacing: .16em; margin-bottom: 16px; font-family: var(--font-body); }
.footer-list { list-style: none; }
.footer-list li { margin-bottom: 9px; }
.footer-list a { color: #7E7260; font-size: 13px; }
.footer-list a:hover { color: var(--color-primary-dark); }
.footer-info p { margin-bottom: 5px; color: #8A7E6A; font-size: 13px; line-height: 1.8; }
.footer-info p strong { color: #5C5246; font-weight: 600; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand .fb-name { margin: 0; font-size: 17px; letter-spacing: .14em; color: var(--color-primary-dark); font-family: var(--font-display); }
.footer-brand .fb-en { display: block; font-size: 10px; letter-spacing: .24em; color: #A08F6C; text-transform: uppercase; margin-top: 3px; }
.footer-slogan { color: var(--color-primary-dark) !important; letter-spacing: .12em; font-size: 12px; margin-top: 2px; }
.footer-scope { margin-top: 8px; line-height: 1.8; }
.footer-copy { color: #A1967E; }
.footer-bottom {
  border-top: 1px solid #D8C9A8;
  padding-top: 20px;
  text-align: center;
  color: #9B8F7A;
  font-size: 12px;
  line-height: 1.9;
}
.footer-bottom a { color: #9B8F7A; }
.footer-bottom a:hover { color: var(--color-primary-dark); }
.beian { display: inline-flex; align-items: center; gap: 4px; }

/* ============= 按钮体系（方形窄高 · 金 / 褐商务双态） ============= */
.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all .22s ease;
  border: 1px solid transparent;
  text-decoration: none;
  letter-spacing: .1em;
  line-height: 1.4;
}
/* 主按钮 = 金色实底 + 深褐文字 */
.btn-primary {
  background: #C29B3C;
  color: #3A2E1E;
  box-shadow: inset 0 0 0 1px rgba(58,46,30,.06);
}
.btn-primary:hover { background: #D2AD4F; color: #2E2416; transform: translateX(2px); }
/* 深褐底金字商务态 */
.btn-dark {
  background: #4A4136;
  color: #E6D7AE;
}
.btn-dark:hover { background: #5A5040; color: #F0E4C0; transform: translateX(2px); }
.btn-accent { background: #3F6B5C; color: #F2F7F4; }
.btn-accent:hover { background: #4C7A69; transform: translateX(2px); }
/* 次按钮 = 细描边 + 下划线箭头 */
.btn-outline {
  background: transparent;
  color: #6B552A;
  border-color: #D8C9A8;
}
.btn-outline:hover { border-color: var(--color-primary); color: var(--color-primary-dark); transform: translateX(2px); }
.btn-ghost { background: transparent; color: #5C5246; border-color: var(--color-border); }
.btn-ghost:hover { border-color: var(--color-primary); color: var(--color-primary-dark); }
.btn-underline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--color-primary-dark);
  padding: 8px 0; font-weight: 500; letter-spacing: .12em;
  border-radius: 0; position: relative;
}
.btn-underline::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--color-primary); transform-origin: left;
  transition: transform .28s ease;
}
.btn-underline:hover { color: var(--color-primary-dark); transform: none; }
.btn-underline:hover::after { transform: scaleX(1); }
.btn-underline .lnk-arrow { transition: transform .22s; }
.btn-underline:hover .lnk-arrow { transform: translateX(5px); }
.btn-lg { padding: 14px 30px; font-size: 15px; letter-spacing: .14em; }
.btn-sm { padding: 6px 12px; font-size: 12px; letter-spacing: .06em; }
.btn-block { display: block; width: 100%; }
.btn-danger { background: #A0522D; color: #fff; }
.btn-danger:hover { background: #B05A36; color: #fff; transform: translateX(2px); }

/* ============= 卡片（极简浅投影 · 衬线标题 · 细边框） ============= */
.card {
  background: #FFFFFF;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .25s, border-color .25s, transform .25s;
}
.card:hover { box-shadow: var(--shadow); border-color: #C9AE6E; }
.card-body { padding: 20px; }
.card-img { width: 100%; height: 180px; object-fit: cover; background: var(--color-bg-section); }

/* ============= 栅格 ============= */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

/* ============= 通用区块（大留白 + 衬线标题 + 编号） ============= */
.section { padding: 56px 0; }
.section-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
  position: relative;
}
.section-title::before {
  content: ""; position: absolute; left: 0; bottom: -1px; width: 56px; height: 2px;
  background: linear-gradient(90deg, var(--color-primary), #D9B86A);
}
.section-title h2 { font-size: 20px; letter-spacing: .1em; font-family: var(--font-display); color: #3A3226; }
.section-title h2 small { color: var(--color-text-light); font-size: 13px; font-weight: 400; margin-left: 12px; letter-spacing: .06em; }
.section-title a { color: var(--color-text-light); font-size: 13px; }
.section-title a:hover { color: var(--color-primary-dark); }
.section-title .sec-kicker {
  display: block; font-size: 11px; letter-spacing: .26em; color: var(--color-primary-dark);
  font-family: var(--font-display); margin-bottom: 6px;
}
/* 区块细金顶横线装饰 */
.section.alt-section { background: #F5EFE4; border-top: 1px solid #E4D8BD; border-bottom: 1px solid #E4D8BD; }

/* ============= 页头 / 内页 hero ============= */
.page-hero {
  padding: 48px 0 36px;
  position: relative;
  border-bottom: 1px solid var(--color-line);
  background: #FBF8F2;
}
.page-hero h1 { font-size: 26px; font-family: var(--font-display); letter-spacing: .06em; color: #3A3226; }
.page-hero .ph-kicker { display: block; font-size: 11px; letter-spacing: .3em; color: var(--color-primary-dark); margin-bottom: 8px; font-family: var(--font-display); }
.page-hero p { color: var(--color-text-light); font-size: 14px; margin-top: 8px; }
.page-hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px; background: linear-gradient(90deg, var(--color-primary) 0, transparent 90%); }

/* ============= 首页 Hero（杂志封面 · 居中） ============= */
.hero {
  background: #FBF8F2;
  color: var(--color-text);
  padding: 92px 0 72px;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid var(--color-line);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, transparent 0, rgba(194,155,60,.035) 30%, transparent 70%),
    linear-gradient(180deg, transparent 70%, rgba(63,107,92,.04) 100%);
}
/* 巨幅衬线英文水印 */
.hero-watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -52%);
  font-family: var(--font-display);
  font-size: 15vw;
  line-height: 1;
  letter-spacing: .18em;
  white-space: nowrap;
  color: rgba(138, 106, 46, .055);
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; padding: 0 20px; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: .34em; color: var(--color-primary-dark);
  margin-bottom: 22px; font-weight: 600; font-family: var(--font-display);
}
.hero-kicker::before, .hero-kicker::after { content: ""; width: 44px; height: 1px; background: linear-gradient(90deg, transparent, var(--color-primary)); }
.hero-kicker::after { background: linear-gradient(90deg, var(--color-primary), transparent); }
.hero h1 {
  font-size: 44px; margin-bottom: 20px; line-height: 1.28;
  color: #2E2620; font-family: var(--font-display); font-weight: 600;
  letter-spacing: .04em;
}
.hero h1 em { font-style: normal; color: var(--color-primary-dark); }
.hero .hero-sub {
  font-size: 15px; color: #6E6252; line-height: 1.9; margin-bottom: 34px;
  max-width: 640px; margin-left: auto; margin-right: auto; letter-spacing: .03em;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; align-items: center; }
.hero-actions .btn { border-radius: 2px; }
.hero-actions .btn-underline { letter-spacing: .12em; }

/* 编号数据列：01 严选品牌 / 02 48h发货 ... */
.hero-stats {
  display: flex; justify-content: center; gap: 0;
  margin: 40px auto 0; padding-top: 30px;
  border-top: 1px solid #E4D8BD;
  max-width: 720px;
}
.hero-stats .hs { flex: 1; padding: 0 18px; position: relative; min-width: 0; }
.hero-stats .hs + .hs::before { content: ""; position: absolute; left: 0; top: 8px; bottom: 8px; width: 1px; background: #E4D8BD; }
.hero-stats .hs b {
  display: block; font-size: 22px; color: var(--color-primary-dark);
  font-family: var(--font-display); letter-spacing: .04em; font-weight: 600;
}
.hero-stats .hs .hs-num { display: block; font-size: 10px; color: #A08F6C; letter-spacing: .3em; font-family: var(--font-display); margin-bottom: 6px; }
.hero-stats .hs span { font-size: 12px; color: var(--color-text-light); letter-spacing: .12em; }

/* ============= 分类区：横向双栏图文条（去网格小卡） ============= */
.industry-entries { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 14px; }
.entry-bar {
  display: flex; align-items: center; gap: 18px;
  background: #FBF8F2;
  border: 1px solid var(--color-border);
  border-left: 2px solid #C9AE6E;
  padding: 18px 20px;
  position: relative;
  overflow: hidden;
  transition: all .25s;
  color: var(--color-text);
}
.entry-bar::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--color-primary), #D9B86A);
  transition: width .32s ease;
}
.entry-bar:hover { border-color: var(--color-primary); box-shadow: var(--shadow-sm); color: var(--color-text); background: #FFFDF8; }
.entry-bar:hover::after { width: 100%; }
.entry-bar .eb-num {
  font-family: var(--font-display); font-size: 15px; color: var(--color-primary);
  letter-spacing: .06em; flex-shrink: 0; width: 26px; border-right: 1px solid var(--color-border);
  padding-right: 10px;
}
.entry-bar .eb-icon { font-size: 24px; width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center; background: #F0E8D8; border: 1px solid #E4D8BD; flex-shrink: 0; color: #7A5E29; }
.entry-bar .eb-body { flex: 1; min-width: 0; }
.entry-bar h3 { font-size: 16px; margin-bottom: 2px; font-family: var(--font-display); font-weight: 600; color: #3A3226; }
.entry-bar p { font-size: 12.5px; color: var(--color-text-light); }
.entry-bar .eb-arrow { flex-shrink: 0; color: #C9AE6E; font-size: 14px; transition: transform .22s, color .22s; }
.entry-bar:hover .eb-arrow { transform: translateX(4px); color: var(--color-primary); }
/* 旧 entry-card（网格小卡）向后兼容，同样改造为横条 */
.entry-card {
  display: flex; align-items: center; gap: 14px;
  background: #FBF8F2;
  border: 1px solid var(--color-border);
  border-left: 2px solid #C9AE6E;
  padding: 16px 18px;
  position: relative; overflow: hidden;
  transition: all .25s; color: var(--color-text);
}
.entry-card::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: linear-gradient(90deg, #C29B3C, #D9B86A); transition: width .3s; }
.entry-card:hover { border-color: var(--color-primary); color: var(--color-text); box-shadow: var(--shadow-sm); }
.entry-card:hover::after { width: 100%; }
.entry-icon {
  font-size: 22px; width: 44px; height: 44px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: #F0E8D8; border: 1px solid #E4D8BD; color: #7A5E29;
}
.entry-card h3 { font-size: 15px; margin-bottom: 1px; font-family: var(--font-display); color: #3A3226; }
.entry-card p { font-size: 12px; color: var(--color-text-light); }

/* ============= 信息卡 ============= */
.info-card {
  display: flex;
  gap: 18px;
  background: #FFFFFF;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  padding: 16px;
  margin-bottom: 12px;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.info-card:hover { box-shadow: var(--shadow); border-color: #C9AE6E; }
.info-card img { width: 168px; height: 112px; object-fit: cover; flex-shrink: 0; border-radius: 2px; }
.info-card-body { flex: 1; min-width: 0; }
.info-card h3 { font-size: 16px; margin-bottom: 6px; font-family: var(--font-display); }
.info-card h3 a { color: #3A3226; }
.info-card h3 a:hover { color: var(--color-primary-dark); }
.info-card-meta { display: flex; gap: 12px; color: var(--color-text-light); font-size: 12px; margin-bottom: 6px; flex-wrap: wrap; align-items: center; }
.info-card-meta .tag { background: rgba(194,155,60,.08); color: var(--color-primary-dark); border-color: rgba(194,155,60,.35); }
.info-card p { color: var(--color-text-light); font-size: 13px; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ============= 商品卡：画廊式（竖向大图 · 图下信息条） ============= */
.product-card {
  background: #FFFFFF;
  border-radius: 3px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: box-shadow .25s, border-color .25s, transform .25s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover { box-shadow: var(--shadow); border-color: var(--color-primary); transform: translateY(-2px); }
/* 图区：米黄 / 象牙底，hover 图片轻微放大 */
.product-card .img { width: 100%; height: 210px; background: var(--color-bg-section); object-fit: cover; }
.product-img {
  height: 210px;
  background: #F3ECDD center/contain no-repeat;
  position: relative;
  overflow: hidden;
}
.product-img::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 50% 0%, transparent 62%, rgba(63,107,92,.05) 100%);
  pointer-events: none;
}
.product-card:hover .product-img { background-size: 110% 110%; }
.product-img .cat-chip {
  position: absolute; left: 8px; bottom: 8px;
  background: #FBF8F2; color: #6B552A;
  padding: 3px 9px; border-radius: 2px; font-size: 11px; font-weight: 600;
  border: 1px solid #E4D8BD;
  letter-spacing: .1em;
}
/* 图下信息条 */
.product-card-body { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; }
.product-card .pc-top { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 6px; }
.product-card h3 { font-size: 14px; line-height: 1.5; font-family: var(--font-display); color: #3A3226; font-weight: 600; }
.product-card .pc-cat { font-size: 10.5px; color: #A08F6C; letter-spacing: .16em; border-top: 1px solid var(--color-border); padding-top: 6px; margin-top: 8px; display: block; }
.product-card .price { color: #8A6A2E; font-size: 20px; font-weight: 600; font-family: var(--font-display); margin-bottom: 4px; }
.product-card .price small { font-size: 12px; color: #BCB19C; text-decoration: line-through; margin-left: 8px; font-weight: 400; }
.product-card .meta { display: flex; justify-content: space-between; font-size: 12px; color: var(--color-text-light); margin-top: auto; align-items: center; }
.product-card .meta .stars { color: var(--color-primary-dark); }
/* hover：金色细边框显现 + 操作条浮现 */
.product-card .actions {
  display: flex; gap: 8px; margin-top: 12px;
  max-height: 0; opacity: 0; overflow: hidden;
  transform: translateY(-6px);
  transition: max-height .28s ease, opacity .28s ease, transform .28s ease;
}
.product-card .actions .btn { flex: 1; }
.product-card:hover .actions { max-height: 60px; opacity: 1; transform: translateY(0); }

/* ============= 面包屑：衬线 + 金色分隔点 ============= */
.breadcrumb {
  background: #FBF8F2;
  padding: 14px 0;
  font-size: 13px;
  color: var(--color-text-light);
  border-bottom: 1px solid var(--color-line);
  letter-spacing: .04em;
}
.breadcrumb a { color: #6E6252; font-family: var(--font-display); }
.breadcrumb a:hover { color: var(--color-primary-dark); }
.breadcrumb .sep { margin: 0 8px; color: var(--color-primary); font-family: var(--font-display); }
.breadcrumb .current { color: #3A3226; font-weight: 600; font-family: var(--font-display); }

/* ============= 标签 / 徽章 ============= */
.tag {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 2px;
  font-size: 12px;
  background: #F5F1E8;
  color: var(--color-text-light);
  margin-right: 4px;
  border: 1px solid var(--color-border);
}
.tag-primary { background: rgba(194,155,60,.09); color: var(--color-primary-dark); border-color: rgba(194,155,60,.4); }
.tag-accent { background: rgba(63,107,92,.09); color: var(--color-accent); border-color: rgba(63,107,92,.35); }
.tag-danger { background: rgba(160,82,45,.09); color: var(--color-danger); border-color: rgba(160,82,45,.35); }
.tag-success { background: rgba(63,107,92,.09); color: var(--color-accent); border-color: rgba(63,107,92,.35); }
.tag-info { background: rgba(63,107,92,.07); color: var(--color-accent-dark); border-color: rgba(63,107,92,.3); }
.tag-warn { background: rgba(192,138,62,.09); color: var(--color-warning); border-color: rgba(192,138,62,.35); }

/* ============= Tab（下划线式） ============= */
.tabs { display: flex; gap: 0; border-bottom: 1px solid var(--color-border); margin-bottom: 28px; flex-wrap: wrap; }
.tab {
  padding: 12px 20px;
  font-size: 15px;
  color: var(--color-text-light);
  cursor: pointer;
  position: relative;
  transition: color .2s;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-family: var(--font-display);
}
.tab::after { content: ""; position: absolute; left: 20%; right: 20%; bottom: -1px; height: 2px; background: var(--color-primary); transform: scaleX(0); transition: transform .28s; }
.tab:hover { color: var(--color-primary-dark); }
.tab.active { color: var(--color-primary-dark); font-weight: 600; border-bottom-color: var(--color-primary); }
.tab.active::after { transform: scaleX(1); }

/* ============= 表单（下划线式） ============= */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; color: #3A3226; letter-spacing: .05em; }
.form-group label .req { color: var(--color-danger); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-actions { display: flex; gap: 12px; margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--color-border); }
.form-help { font-size: 12px; color: var(--color-text-light); margin-top: 6px; }
.radio-group, .checkbox-group { display: flex; flex-wrap: wrap; gap: 12px; }
.radio-item, .checkbox-item {
  display: flex; align-items: center; gap: 6px;
  cursor: pointer; padding: 7px 14px;
  border: 1px solid var(--color-border); border-radius: 2px;
  transition: all .2s; color: var(--color-text);
  font-size: 13px;
}
.radio-item:hover, .checkbox-item:hover { border-color: var(--color-primary); }
.radio-item input, .checkbox-item input { width: auto; margin: 0; accent-color: var(--color-primary); }
.radio-item.checked, .checkbox-item.checked { background: rgba(194,155,60,.07); border-color: var(--color-primary); color: var(--color-primary-dark); }

/* ============= 模态框（方形 + 金描边 + 衬线标题） ============= */
.modal-mask {
  position: fixed; inset: 0;
  background: rgba(46, 38, 32, .38);
  backdrop-filter: blur(3px);
  z-index: 9999;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.modal-mask.active { display: flex; }
.modal {
  background: #FBF8F2;
  border: 1px solid #C9AE6E;
  border-top: 2px solid var(--color-primary);
  border-radius: 4px;
  width: 100%; max-width: 380px;
  padding: 30px 28px 26px;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.modal-close {
  position: absolute; top: 12px; right: 12px;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-light); font-size: 15px; line-height: 1; cursor: pointer;
  border-radius: 2px;
}
.modal-close:hover { border-color: var(--color-danger); color: var(--color-danger); }
.modal-title { text-align: center; font-size: 17px; margin-bottom: 20px; font-family: var(--font-display); letter-spacing: .12em; color: #3A3226; }
.modal-body { text-align: center; }
.modal-qr {
  width: 200px; height: 200px;
  margin: 0 auto 16px;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding: 8px; background: #fff;
}
.modal-qr img { width: 100%; height: 100%; object-fit: contain; }
.modal-amount { font-size: 15px; margin: 12px 0; color: var(--color-text); }
.modal-amount .price { color: var(--color-danger); font-size: 24px; font-weight: 600; margin-left: 4px; font-family: var(--font-display); }
.modal-tip { font-size: 13px; color: var(--color-text-light); margin: 12px 0 20px; line-height: 1.7; }
.modal-actions { display: flex; gap: 12px; }
.modal-actions .btn { flex: 1; }

/* ============= Toast（方形） ============= */
.toast {
  position: fixed; top: 20px; left: 50%;
  transform: translateX(-50%) translateY(-100px);
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-left: 2px solid var(--color-primary);
  color: var(--color-text);
  padding: 12px 24px;
  border-radius: 2px;
  z-index: 10000;
  font-size: 14px;
  transition: transform .3s;
  box-shadow: var(--shadow-lg);
  max-width: 90%;
  letter-spacing: .04em;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { background: #3F6B5C; border-color: #3F6B5C; border-left-color: #D9B86A; color: #F3FAF6; }
.toast.error { background: #A0522D; border-color: #A0522D; border-left-color: #E8C9A8; color: #fff; }
.toast.warn { background: #C08A3E; border-color: #C08A3E; border-left-color: #F0DFC0; color: #fff; }

/* ============= 通用辅助 ============= */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-primary { color: var(--color-primary-dark); }
.text-accent { color: var(--color-accent); }
.text-danger { color: var(--color-danger); }
.text-light { color: var(--color-text-light); }
.text-sm { font-size: 13px; }
.text-lg { font-size: 18px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-center { display: flex; align-items: center; justify-content: center; gap: 8px; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.hidden { display: none !important; }
.divider { height: 1px; background: var(--color-border); margin: 20px 0; }
.placeholder-img { width: 100%; height: 100%; background: var(--color-bg-section); display: flex; align-items: center; justify-content: center; color: var(--color-text-light); font-size: 13px; }

/* ============= 编号角标 / 细分隔线 ============= */
.num-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border: 1px solid #C9AE6E; border-radius: 2px;
  color: var(--color-primary-dark); font-family: var(--font-display);
  font-size: 12px; letter-spacing: .05em; flex-shrink: 0;
}
.gold-divider { height: 1px; background: linear-gradient(90deg, var(--color-primary) 0, #E4D8BD 40%, transparent 100%); margin: 18px 0; border: 0; }

/* ============= 分页 ============= */
.pagination { display: flex; gap: 4px; justify-content: center; margin-top: 36px; }
.pagination a, .pagination span {
  min-width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 10px;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  font-size: 14px;
  color: var(--color-text);
  background: #fff;
}
.pagination a:hover { border-color: var(--color-primary); color: var(--color-primary-dark); }
.pagination .active { background: #8A6A2E; color: #F7F1E3; border-color: transparent; font-weight: 600; }
.pagination .disabled { color: #C9BCA2; pointer-events: none; }

/* ============= 列表/详情布局 ============= */
.list-layout { display: grid; grid-template-columns: 210px 1fr; gap: 28px; }
.detail-layout { display: grid; grid-template-columns: 500px 1fr; gap: 36px; }
.news-layout, .review-layout, .service-layout { display: grid; grid-template-columns: 300px 1fr; gap: 28px; }
.news-layout > aside:last-child, .review-layout > aside:last-child, .service-layout > aside:last-child { align-self: start; }
.cat-link { padding: 9px 14px; border-bottom: 1px solid var(--color-line); color: #5C5246; font-size: 14px; transition: all .2s; display: block; position: relative; }
.cat-link:hover { color: var(--color-primary-dark); padding-left: 18px; }
.cat-link.active { color: var(--color-primary-dark); font-weight: 600; }
.cat-link.active::before { content: ""; position: absolute; left: 0; top: 12px; height: 3px; width: 3px; background: var(--color-primary); }
.sort-btn {
  padding: 5px 14px;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  background: #fff;
  color: var(--color-text-light);
  font-size: 13px; cursor: pointer; letter-spacing: .04em;
}
.sort-btn.active { background: #8A6A2E; border-color: transparent; color: #F7F1E3; font-weight: 600; }

/* ============= 后台（轻量治理） ============= */
.admin-topbar {
  background: #4A4136;
  border-bottom: 2px solid var(--color-primary);
  padding: 14px 0;
}
.admin-topbar .inner { display: flex; align-items: center; justify-content: space-between; }
.admin-topbar h1 { font-size: 20px; color: #F3ECDD; font-family: var(--font-display); letter-spacing: .1em; }
.admin-topbar a { color: #D9B86A; }
.admin-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 22px; }
.admin-tab {
  padding: 10px 18px;
  border-radius: 2px;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  color: var(--color-text-light);
  font-size: 14px; cursor: pointer; transition: all .2s; letter-spacing: .04em;
}
.admin-tab:hover { color: var(--color-primary-dark); border-color: var(--color-primary); }
.admin-tab.active { background: #8A6A2E; color: #F7F1E3; font-weight: 600; border-color: transparent; }
.module-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 22px; }
.module-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  padding: 20px;
  cursor: pointer;
  transition: all .2s;
  text-align: center;
}
.module-card:hover { border-color: var(--color-primary); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.module-card.active { border-color: var(--color-primary); background: #FBF6EA; }
.module-card .m-icon { font-size: 30px; margin-bottom: 8px; }
.module-card h3 { font-size: 15px; margin-bottom: 4px; font-family: var(--font-display); }
.module-card p { font-size: 12px; color: var(--color-text-light); }

/* ============= 表格 ============= */
.data-table-wrap { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.data-table th {
  background: #F0E8D8;
  color: #3A3226;
  text-align: left;
  padding: 12px 14px;
  font-weight: 600;
  border-bottom: 2px solid var(--color-primary);
  white-space: nowrap;
  letter-spacing: .04em;
}
.data-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--color-line);
  color: #5C5246;
  vertical-align: middle;
}
.data-table tbody tr:nth-child(even) { background: #FBF8F2; }
.data-table tbody tr:hover { background: #F7F1E3; }
.data-table .op a, .data-table .op button { font-size: 13px; margin-right: 10px; }

/* ============= 统计卡片 ============= */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 22px; }
.stat-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  padding: 20px;
  text-align: center;
  border-top: 2px solid var(--color-primary);
}
.stat-card .num { font-size: 28px; font-weight: 600; color: var(--color-primary-dark); font-family: var(--font-display); }
.stat-card .label { font-size: 13px; color: var(--color-text-light); margin-top: 4px; }

/* ============= 状态灯 ============= */
.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 6px; }
.dot-ok { background: var(--color-success); }
.dot-pending { background: var(--color-warning); }
.dot-bad { background: var(--color-danger); }

/* ============= 首页内联自定义（供 index.html 使用，含在整站以保一致性） ============= */
/* 资讯卡：衬线标题 + 金侧边线 */
.news-card { display: flex; flex-direction: column; padding: 20px; transition: transform .25s, box-shadow .25s, border-color .25s; cursor: pointer; border-left: 2px solid #C9AE6E; background: #FFFFFF; border-radius: 3px; }
.news-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: #C9AE6E; }
.news-title { font-size: 16px; line-height: 1.5; margin-bottom: 8px; font-weight: 600; color: #3A3226; font-family: var(--font-display); letter-spacing: .02em; }
.news-excerpt { font-size: 13px; line-height: 1.75; color: var(--color-text-light); height: 68px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; margin-bottom: 14px; }
.news-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.news-price { color: var(--color-primary-dark); font-weight: 600; font-size: 16px; font-family: var(--font-display); }
.news-price small { font-size: 12px; font-weight: 400; color: var(--color-text-light); margin-left: 2px; }
/* 商家卡：图文条 + 编号 */
.merchant-card { display: flex; gap: 18px; align-items: flex-start; transition: all .25s; border-left-width: 2px; }
.merchant-card:hover { border-color: var(--color-primary); box-shadow: var(--shadow); }
.merchant-logo { font-size: 26px; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; background: #F0E8D8; border: 1px solid #E4D8BD; flex-shrink: 0; color: #7A5E29; border-radius: 2px; }
/* 保障 / 流程图标：方形金字底 */
.promise-icon { font-size: 24px; margin-bottom: 12px; display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px; border-radius: 2px; background: #F0E8D8; border: 1px solid #E4D8BD; color: #7A5E29; }
.step-num { position: absolute; top: 12px; right: 16px; color: rgba(138,106,46,.35); font-weight: 600; font-size: 18px; font-family: var(--font-display); letter-spacing: .06em; }
.alt-section { background: #F5EFE4; border-top: 1px solid #E4D8BD; border-bottom: 1px solid #E4D8BD; }

/* ============= 详情页 / 弹窗说明等排版 ============= */
.prod-gallery { background: #F3ECDD; border: 1px solid var(--color-border); border-radius: 3px; padding: 12px; }
.detail-name { font-family: var(--font-display); font-size: 22px; color: #3A3226; letter-spacing: .04em; }
.detail-price { color: #8A6A2E; font-size: 28px; font-family: var(--font-display); font-weight: 600; }
.detail-price del { font-size: 15px; color: #BCB19C; font-weight: 400; margin-left: 8px; font-family: var(--font-body); }

/* ============= 购物车 / 订单 ============= */
.cart-item, .order-item { border: 1px solid var(--color-border); border-left: 2px solid #C9AE6E; border-radius: 3px; padding: 16px; margin-bottom: 12px; background: #fff; transition: border-color .2s; }
.cart-item:hover, .order-item:hover { border-color: #C9AE6E; }

/* ============= 滚动条 ============= */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #F3ECDD; }
::-webkit-scrollbar-thumb { background: #CBBFA4; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #B8AC92; }

/* ============= 响应式 ============= */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr !important; }
  .grid-4, .grid-5, .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:nth-child(3) { padding-left: 0; }
  .footer-grid > div:nth-child(3)::before { display: none; }
  .footer-grid > div:nth-child(5)::before { top: 10%; bottom: auto; height: 1px; left: 0; right: 0; width: 100%; }
  .news-layout, .review-layout, .service-layout { grid-template-columns: 200px 1fr !important; }
  .news-layout > aside:last-child, .review-layout > aside:last-child, .service-layout > aside:last-child { display: none; }
  .list-layout { grid-template-columns: 170px 1fr !important; }
  .detail-layout { grid-template-columns: 1fr !important; }
  .module-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 36px; }
  .nav-list { gap: 22px; }
}
@media (max-width: 768px) {
  h1 { font-size: 24px; }
  h2 { font-size: 19px; }
  .hero { padding: 60px 0 48px; }
  .hero h1 { font-size: 30px; }
  .hero .hero-sub { font-size: 14px; }
  .hero-watermark { font-size: 20vw; }
  .industry-entries { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .grid-5, .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .topbar-info, .topbar-links { gap: 10px; font-size: 11px; }
  .topbar-info span:nth-child(2) { display: none; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stats .hs { flex: 1 1 40%; border: 0; }
  .hero-stats .hs + .hs::before { display: none; }
  .nav-list { display: none; }
  .mobile-menu-btn { display: block; }
  .nav-list.mobile-open {
    display: flex;
    position: absolute;
    top: 74px; left: 0; right: 0;
    background: rgba(251, 247, 241, .99);
    flex-direction: column;
    padding: 14px 24px;
    gap: 4px;
    align-items: stretch;
    box-shadow: var(--shadow-lg);
    z-index: 99;
    border-bottom: 1px solid var(--color-line);
  }
  .nav-list.mobile-open a { padding: 13px 2px; border-bottom: 1px solid var(--color-line); gap: 8px; }
  .nav-list.mobile-open a::after { display: none; }
  .brand-text { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-grid > div { padding-left: 0; }
  .footer-grid > div::before { display: none; }
  .info-card { flex-direction: column; }
  .info-card img { width: 100%; height: 180px; }
  .section { padding: 40px 0; }
  .navbar-inner { height: 64px; }
  .news-layout, .review-layout, .service-layout { grid-template-columns: 1fr !important; }
  .news-layout > aside, .review-layout > aside, .service-layout > aside { display: block; }
  .list-layout { grid-template-columns: 1fr !important; }
  .list-layout > aside { margin-bottom: 16px; }
  .admin-tabs { font-size: 12px; }
  .admin-tab { padding: 10px 12px; }
  .module-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .product-img, .product-card .img, .product-card:hover .product-img { background-size: contain; }
}
@media (max-width: 480px) {
  .grid-3, .grid-4, .grid-5, .grid-6 { grid-template-columns: 1fr; }
  .industry-entries { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero h1 { font-size: 26px; }
  .hero-stats .hs { flex: 1 1 50%; }
  .section-title { flex-direction: column; align-items: flex-start; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}