/* 站点框架：顶栏选项卡 + 关于页 */

/* ---------- 顶栏 ---------- */
.topbar {
  position: sticky; top: 0; z-index: 20;
  background: rgba(246,242,233,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  max-width: 900px; margin: 0 auto;
  padding-left: calc(16px + env(safe-area-inset-left, 0px));
  padding-right: calc(16px + env(safe-area-inset-right, 0px));
  height: 54px; display: flex; align-items: center; gap: 18px;
}
.brand { display: flex; align-items: baseline; gap: 9px; text-decoration: none; flex-shrink: 0; }
.brand .name {
  font-family: var(--serif); font-size: 18px; letter-spacing: .2em;
  color: var(--ink); font-weight: 600;
}
.brand .seal-dot {
  width: 6px; height: 6px; border-radius: 1px; background: var(--clay);
  transform: rotate(45deg); opacity: .75;
}
.tabs-nav { display: flex; gap: 2px; margin-left: auto; }
.tabs-nav a {
  padding: 6px 15px; font-size: 13.5px; color: var(--ink-soft);
  border-radius: 20px; transition: all .16s; letter-spacing: .04em;
}
.tabs-nav a:hover { color: var(--green-deep); background: rgba(61,92,72,.06); }
.tabs-nav a.on { background: var(--green); color: #fff; }

/* ---------- 关于页：主视觉 ---------- */
.hero { text-align: center; padding: 56px 0 40px; }
.hero .mark {
  display: inline-block; font-family: var(--serif); font-size: 13px; letter-spacing: .4em;
  color: var(--clay); opacity: .8; margin-bottom: 18px; padding-left: .4em;
}
.hero h1 {
  font-family: var(--serif); font-size: 42px; letter-spacing: .34em;
  margin: 0 0 14px; font-weight: 600; padding-left: .34em; color: var(--ink);
}
.hero .slogan { margin: 0; color: var(--ink-soft); font-size: 14px; letter-spacing: .22em; }
.hero .rule {
  width: 34px; height: 2px; background: var(--clay); opacity: .5;
  margin: 26px auto 0; border-radius: 2px;
}

/* 三个数字 */
.stats {
  display: flex; justify-content: center; gap: 0;
  margin: 34px auto 0; max-width: 460px;
}
.stat { flex: 1; text-align: center; position: relative; padding: 0 8px; }
.stat + .stat::before {
  content: ''; position: absolute; left: 0; top: 14%; bottom: 14%;
  width: 1px; background: var(--line);
}
.stat .num {
  font-family: var(--serif); font-size: 30px; color: var(--green-deep);
  line-height: 1.1; font-weight: 600;
}
.stat .num small { font-size: 14px; margin-left: 2px; font-weight: 400; }
.stat .cap { font-size: 12px; color: var(--ink-faint); letter-spacing: .14em; margin-top: 6px; }

/* ---------- 分节标题 ---------- */
.section { padding: 40px 0 0; }
.section-title {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--serif); font-size: 16px; letter-spacing: .22em;
  color: var(--green-deep); margin: 0 0 22px; font-weight: 600;
  justify-content: center; text-align: center;
}
.section-title::before, .section-title::after {
  content: ''; height: 1px; background: var(--line); flex: 1; max-width: 90px;
}

/* ---------- 店主的话：不套框，就是一段话 ---------- */
.words-plain { text-align: center; padding-top: 46px; }
.words-text {
  white-space: pre-line;
  font-family: var(--serif);
  font-size: 15px; line-height: 2.15; letter-spacing: .04em;
  color: #4b463d; margin: 0 auto; max-width: 560px;
}
.words-sign {
  font-family: var(--serif); font-size: 13px; color: var(--ink-faint);
  letter-spacing: .2em; margin-top: 22px;
}
.words-sign::before {
  content: ''; display: block; width: 22px; height: 1px;
  background: var(--clay); opacity: .45; margin: 0 auto 16px;
}

/* ---------- 好物盘点 ---------- */
.picks {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(158px, 1fr)); gap: 14px;
}
.pick {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); display: block;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
a.pick:hover {
  transform: translateY(-4px); border-color: rgba(61,92,72,.4);
  box-shadow: 0 6px 12px rgba(60,50,30,.07), 0 20px 40px rgba(60,50,30,.10);
}
.pick .shot { position: relative; aspect-ratio: 3 / 4; background: #ece5d6; overflow: hidden; }
.pick .shot img { width: 100%; height: 100%; object-fit: cover; }
.pick .shot .none {
  width: 100%; height: 100%; display: grid; place-items: center;
  font-family: var(--serif); font-size: 26px; color: var(--ink-faint); letter-spacing: .1em;
}
.pick .shot .ribbon {
  position: absolute; left: 0; bottom: 0; right: 0;
  background: linear-gradient(transparent, rgba(20,18,14,.62));
  color: #fff; font-size: 11.5px; padding: 22px 10px 8px; line-height: 1.4;
}
.pick .info { padding: 11px 12px 13px; }
.pick .nm {
  font-family: var(--serif); font-size: 15.5px; letter-spacing: .05em;
  color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 6px;
}
.pick .nm .go { color: var(--ink-faint); font-size: 13px; }
.pick.soon { opacity: .72; }
.pick.soon .nm .go { font-size: 10.5px; letter-spacing: .05em; }

/* ---------- 底部行动区 ---------- */
.cta { text-align: center; padding: 44px 0 60px; }
.cta .btn { padding: 12px 34px; border-radius: 24px; font-size: 15px; letter-spacing: .12em; }
.cta .note { margin: 14px 0 0; font-size: 12.5px; color: var(--ink-faint); letter-spacing: .08em; }

@media (max-width: 480px) {
  .hero { padding: 38px 0 30px; }
  .hero h1 { font-size: 33px; letter-spacing: .26em; padding-left: .26em; }
  .stat .num { font-size: 25px; }
  .picks { grid-template-columns: repeat(2, 1fr); gap: 11px; }
  .section-title::before, .section-title::after { max-width: 40px; }
}

.cta .note .wx {
  font-family: ui-monospace, Menlo, Consolas, monospace; font-weight: 600;
  color: var(--green-deep); border-bottom: 1px dashed var(--green);
  cursor: pointer; padding-bottom: 1px; letter-spacing: .02em;
}
.cta .note .wx:hover { color: var(--clay); border-color: var(--clay); }

/* 盘点里对不上商品的行，原样显示，方便店主发现哪行写错了 */
.pick.unmatched {
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 20px 14px; font-size: 13px; color: var(--ink-faint);
  border-style: dashed; box-shadow: none; aspect-ratio: auto;
}

@media (max-width: 480px) {
  .words-plain { padding-top: 36px; }
  .words-text { font-size: 14.5px; line-height: 2.05; }
}
