/* =========================================================
   Me too — 高端女士裤装品牌网站
   样式规范：极简奢华 / 编辑感排版 / 响应式
   ========================================================= */

:root {
  /* 色彩 */
  --bg: #ffffff;
  --bg-soft: #f7f5f2;      /* 暖白 */
  --bg-dark: #14110f;      /* 近黑，非纯黑 */
  --ink: #1a1a1a;          /* 主文字 */
  --muted: #6b6763;        /* 次级文字 */
  --faint: #9a958f;        /* 弱化文字 */
  --line: #e7e2db;         /* 分割线 */
  --gold: #b1894e;         /* 低调奢华点缀 */
  --gold-soft: #c9a877;

  /* 字体 */
  --font-display: "Playfair Display", "Noto Serif SC", Georgia, "Songti SC", serif;
  --font-body: "Jost", "Outfit", "Sarasa Gothic SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;

  /* 间距 */
  --page-pad: 80px;
  --section-y: 96px;
  --gap: 24px;

  /* 阴影 */
  --shadow-soft: 0 18px 50px -28px rgba(20, 17, 15, 0.30);
  --shadow-card: 0 10px 30px -22px rgba(20, 17, 15, 0.35);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

/* ---------- 排版工具 ---------- */
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 500;
}
.display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.01em;
}
.section-head { text-align: center; margin-bottom: 48px; }
.section-head .eyebrow { display: block; margin-bottom: 14px; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 34px;
  letter-spacing: 0.01em;
}

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  transition: all .35s ease;
}
.btn:hover { background: transparent; color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--light { background: #fff; color: var(--ink); border-color: #fff; }
.btn--light:hover { background: transparent; color: #fff; border-color: #fff; }

.link-underline {
  position: relative;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-bottom: 4px;
}
.link-underline::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0.4); transform-origin: left; transition: transform .35s ease;
}
.link-underline:hover::after { transform: scaleX(1); }

/* =========================================================
   页头
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s ease, color .4s ease, box-shadow .4s ease;
  color: #fff;
}
.site-header.solid {
  background: rgba(255,255,255,0.96);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
}
.nav-left, .nav-right { display: flex; align-items: center; gap: 30px; }
.nav-left a, .nav-right a {
  font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  position: relative; padding: 6px 0; transition: opacity .3s;
}
.nav-left a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.nav-left a:hover::after { transform: scaleX(1); }
.nav-left a.active::after { transform: scaleX(1); }
.brand {
  font-family: var(--font-display);
  font-size: 26px; letter-spacing: 0.34em; padding-left: 0.34em;
  text-transform: uppercase; font-weight: 500;
}
.cart-link { display: inline-flex; align-items: center; gap: 6px; }
.cart-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 18px; height: 18px; padding: 0 5px; border-radius: 9px;
  background: var(--gold); color: #fff; font-size: 11px; letter-spacing: 0;
}
.header-icons { display: flex; align-items: center; gap: 22px; }
.icon-btn { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; width: 26px; }
.menu-toggle span { height: 1.5px; background: currentColor; transition: .3s; }

/* =========================================================
   首屏 Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, #2b2622 0%, #4a4138 45%, #6f6354 100%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 80% 20%, rgba(177,137,78,0.22), transparent 60%);
}
.hero-content { position: relative; max-width: 520px; padding-top: 60px; }
.hero-content .eyebrow { color: rgba(255,255,255,0.7); }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 500; font-size: 68px; line-height: 1.05;
  margin: 18px 0 22px;
}
.hero p { font-size: 16px; color: rgba(255,255,255,0.82); max-width: 420px; margin-bottom: 34px; }
.scroll-hint {
  position: absolute; bottom: 36px; left: var(--page-pad);
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 12px;
}
.scroll-hint::before { content: ""; width: 46px; height: 1px; background: rgba(255,255,255,0.5); }

/* ---------- 品牌标语 ---------- */
.brand-statement {
  text-align: center; padding: 56px var(--page-pad);
  background: var(--bg-soft);
}
.brand-statement p {
  font-family: var(--font-display); font-size: 20px; color: var(--muted);
  letter-spacing: 0.04em;
}

/* =========================================================
   产品栅格
   ========================================================= */
.section { padding: var(--section-y) 0; }
.product-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px;
}
.product-card { display: flex; flex-direction: column; }
.product-media {
  position: relative; aspect-ratio: 3 / 4; overflow: hidden;
  background: linear-gradient(135deg, #efe9e2, #ddd4c8);
  margin-bottom: 16px;
}
.product-media .ph-label {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 22px; color: rgba(26,26,26,0.28); letter-spacing: 0.1em;
}
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.product-card:hover .product-media img { transform: scale(1.06); }
.product-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,0.92); color: var(--ink);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 10px;
}
.quick-add {
  position: absolute; left: 14px; right: 14px; bottom: 14px;
  background: rgba(255,255,255,0.96); color: var(--ink);
  padding: 12px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0; transform: translateY(10px); transition: .35s ease;
}
.product-card:hover .quick-add { opacity: 1; transform: translateY(0); }
.product-info { display: flex; flex-direction: column; gap: 4px; }
.product-info .name { font-size: 15px; }
.product-info .cat { font-size: 12px; color: var(--faint); letter-spacing: 0.06em; }
.product-info .price { font-size: 14px; color: var(--muted); margin-top: 2px; }

.view-all-wrap { text-align: center; margin-top: 52px; }

/* =========================================================
   促销 Banner
   ========================================================= */
.banner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.banner {
  position: relative; height: 480px; overflow: hidden; color: #fff;
  display: flex; align-items: flex-end;
  text-decoration: none;
}
.banner:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.banner-bg { position: absolute; inset: 0; transition: transform 1s ease; }
.banner:hover .banner-bg { transform: scale(1.05); }
.banner::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,17,15,0) 30%, rgba(20,17,15,0.72) 100%);
}
.banner-content { position: relative; padding: 36px; z-index: 2; }
.banner-content .eyebrow { color: rgba(255,255,255,0.78); }
.banner-content h3 { font-family: var(--font-display); font-size: 30px; font-weight: 500; margin: 10px 0 14px; }
.banner-content .link-cta {
  display: inline-block; font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,0.6);
  padding-bottom: 3px; transition: border-color .3s, color .3s;
}
.banner:hover .link-cta { border-color: #fff; }

/* =========================================================
   Lookbook / 品牌故事
   ========================================================= */
.lookbook { display: grid; grid-template-columns: 1.5fr 1fr; gap: 24px; align-items: stretch; }
.lookbook .lb-large {
  position: relative; min-height: 560px; overflow: hidden; color: #fff;
  display: flex; align-items: flex-end;
}
.lookbook .lb-large .banner-bg { background: linear-gradient(135deg, #3a332c, #5c5145); }
.lookbook .lb-large .banner-bg::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 30% 30%, rgba(177,137,78,0.18), transparent 60%);
}
.lookbook .lb-large::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,17,15,0) 40%, rgba(20,17,15,0.6) 100%);
}
.lb-small {
  position: relative; display: block; height: 280px; overflow: hidden; margin-bottom: 24px;
  background: linear-gradient(135deg, #ece4d8, #d8cdbd);
}
.lb-large { cursor: pointer; }
.lb-large .banner-bg { transition: transform .8s ease; }
.lb-large:hover .banner-bg { transform: scale(1.04); }
.lb-cta {
  display: inline-block; margin-top: 6px; font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: #fff; border-bottom: 1px solid rgba(255,255,255,0.6);
  padding-bottom: 3px; transition: border-color .3s;
}
.lb-large:hover .lb-cta { border-color: #fff; }
.lb-text { padding-top: 6px; }
.lb-text h3 { font-family: var(--font-display); font-size: 30px; font-weight: 500; line-height: 1.2; margin-bottom: 18px; }
.lb-text p { color: var(--muted); margin-bottom: 22px; }

/* =========================================================
   服务承诺
   ========================================================= */
.services { background: var(--bg-soft); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.service-item { text-align: center; padding: 12px; }
.service-item .s-icon {
  width: 46px; height: 46px; margin: 0 auto 18px; color: var(--gold);
}
.service-item h4 { font-size: 15px; letter-spacing: 0.04em; margin-bottom: 8px; font-weight: 600; }
.service-item p { font-size: 13px; color: var(--muted); }

/* =========================================================
   用户评价
   ========================================================= */
.testimonial { position: relative; color: #fff; text-align: center; padding: 120px 0; overflow: hidden; }
.testimonial .banner-bg { background: linear-gradient(135deg, #2a2420, #463d33); }
.testimonial::after {
  content: ""; position: absolute; inset: 0; background: rgba(20,17,15,0.55);
}
.testimonial .container { position: relative; z-index: 2; max-width: 820px; }
.testimonial blockquote {
  font-family: var(--font-display); font-size: 30px; font-weight: 500; line-height: 1.4; margin-bottom: 26px;
}
.testimonial .who { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.75); }

/* =========================================================
   品牌日志 Journal
   ========================================================= */
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.journal-card { display: block; cursor: pointer; }
.journal-card .j-media {
  aspect-ratio: 4 / 3; overflow: hidden; margin-bottom: 18px;
  background: linear-gradient(135deg, #eee7df, #d9cfc0);
}
.journal-card .j-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.journal-card:hover .j-media img { transform: scale(1.05); }
.journal-card .j-meta { font-size: 12px; color: var(--faint); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.journal-card h4 { font-family: var(--font-display); font-size: 21px; font-weight: 500; margin-bottom: 10px; line-height: 1.25; transition: color .3s; }
.journal-card:hover h4 { color: var(--gold); }
.journal-card p { font-size: 14px; color: var(--muted); margin-bottom: 12px; }
.journal-card .j-cta {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink);
  border-bottom: 1px solid var(--line); padding-bottom: 3px; transition: .3s;
}
.journal-card:hover .j-cta { color: var(--gold); border-color: var(--gold); }

/* =========================================================
   合作品牌
   ========================================================= */
.partners { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.partners-grid { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 40px; padding: 44px 0; }
.partner-logo { font-family: var(--font-display); font-size: 22px; color: var(--faint); letter-spacing: 0.08em; transition: color .3s; }
.partner-logo:hover { color: var(--ink); }

/* =========================================================
   页脚（联系方式 / 客服电话 / 技术支持）
   ========================================================= */
/* 整个页脚：浅色背景 + 纯黑 #000 文字（品牌简介、订阅、各列链接全部黑字，不保留灰色/浅色） */
.site-footer { background: var(--bg-soft); color: #000000; padding: 76px 0 34px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 52px; border-bottom: 1px solid var(--line); }
.footer-brand .brand { color: #000000; display: inline-block; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; max-width: 280px; line-height: 1.8; color: #000000; }
.footer-col h5 {
  color: #000000; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 20px; font-weight: 500;
  min-height: 1.4em; /* 空标题也预留行高，使各列链接垂直对齐 */
}
.footer-col ul { line-height: 1.6; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 14px; line-height: 1.6; color: #000000; transition: color .3s; }
.footer-col ul li a:hover { color: var(--gold); }

/* 联系与支持 详情页（contact.html）：浅色页面、黑色文字，信息以卡片呈现 */
.contact-page { background: var(--bg-soft); }
.contact-page .contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 34px 28px; box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 12px; min-height: 210px;
}
.contact-card .ci-icon { width: 28px; height: 28px; color: var(--ink); }
.contact-card .ci-icon svg { width: 100%; height: 100%; }
.contact-card .ci-body strong {
  color: var(--ink); font-size: 13px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 600; display: block;
}
.contact-card .hotline {
  font-family: var(--font-display); font-size: 28px; color: var(--ink);
  letter-spacing: 0.04em; line-height: 1.2;
}
.contact-card .ci-body span, .contact-card .ci-body a {
  color: var(--muted); line-height: 1.6; display: block; font-size: 14px;
}
.contact-card .ci-body a:hover { color: var(--ink); }
.contact-card .support-hours { font-size: 13px; color: var(--muted); margin-top: 2px; }
.contact-visit {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 26px 28px; box-shadow: var(--shadow-card); margin-top: 26px;
  display: flex; align-items: center; gap: 18px;
}
.contact-visit .ci-icon { width: 30px; height: 30px; color: var(--ink); flex-shrink: 0; }
.contact-visit .ci-icon svg { width: 100%; height: 100%; }
.contact-visit .ci-body strong {
  color: var(--ink); font-size: 13px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 600; display: block; margin-bottom: 4px;
}
.contact-visit .ci-body span { color: var(--muted); line-height: 1.6; font-size: 15px; }

/* 常见问题 */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h4 { color: var(--ink); font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.faq-item p { color: var(--muted); line-height: 1.7; font-size: 15px; }

@media (max-width: 860px) {
  .contact-page .contact-grid { grid-template-columns: 1fr; }
  .contact-visit { flex-direction: column; align-items: flex-start; }
}

.newsletter { margin-top: 22px; }
.newsletter p { font-size: 13px; color: #000000; margin-bottom: 12px; }
.newsletter form { display: flex; border-bottom: 1px solid rgba(0,0,0,0.25); }
.newsletter input {
  flex: 1; background: transparent; border: none; color: #000000; padding: 10px 0;
  font-family: inherit; font-size: 14px; outline: none;
}
.newsletter input::placeholder { color: rgba(0,0,0,0.4); }
.newsletter button { color: #000000; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; padding: 0 4px; }
.newsletter .nl-msg { font-size: 12px; color: var(--gold); margin-top: 10px; min-height: 16px; }

/* 最底部区域：与新的浅色页脚融为一体，纯黑 #000 文字；hover 仅以品牌金色作交互反馈（非灰色/浅色） */
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
  padding: 22px 0 0; margin-top: 28px; font-size: 12px; color: #000000; letter-spacing: 0.04em;
  border-top: 1px solid var(--line);
}
.footer-bottom a { color: #000000; }
.footer-bottom .socials { display: flex; gap: 20px; }
.footer-bottom .socials a:hover { color: var(--gold); }
.footer-legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-legal a:hover { color: var(--gold); }

/* =========================================================
   商店页 shop.html
   ========================================================= */
.page-hero { padding: 150px 0 40px; text-align: center; background: var(--bg-soft); }
.page-hero .eyebrow { display: block; margin-bottom: 14px; }
.page-hero h1 { font-family: var(--font-display); font-size: 48px; font-weight: 500; }
.page-hero p { color: var(--muted); margin-top: 14px; }

.shop-toolbar {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center;
  padding: 28px 0; border-bottom: 1px solid var(--line); margin-bottom: 40px;
}
.filters { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-chip {
  padding: 9px 20px; border: 1px solid var(--line); font-size: 13px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted); transition: .3s;
}
.filter-chip:hover { border-color: var(--ink); color: var(--ink); }
.filter-chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.sort-select {
  padding: 10px 16px; border: 1px solid var(--line); font-family: inherit; font-size: 13px;
  background: #fff; color: var(--ink); outline: none;
}
.shop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.empty-note { grid-column: 1 / -1; text-align: center; color: var(--muted); padding: 60px 0; }

/* =========================================================
   商品详情 product.html
   ========================================================= */
.breadcrumb { padding: 120px 0 0; font-size: 13px; color: var(--faint); letter-spacing: 0.04em; }
.breadcrumb a:hover { color: var(--ink); }
.product-detail { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; padding: 30px 0 90px; align-items: start; }
.pd-gallery .pd-main {
  aspect-ratio: 4 / 5; overflow: hidden; background: linear-gradient(135deg, #efe9e2, #ddd4c8); margin-bottom: 16px;
}
.pd-gallery .pd-main img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.pd-thumbs .thumb {
  aspect-ratio: 1; overflow: hidden; background: linear-gradient(135deg, #efe9e2, #ddd4c8);
  border: 1px solid transparent; cursor: pointer;
}
.pd-thumbs .thumb.active { border-color: var(--ink); }
.pd-thumbs .thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-info .pd-cat { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); }
.pd-info h1 { font-family: var(--font-display); font-size: 38px; font-weight: 500; margin: 12px 0 14px; }
.pd-info .pd-price { font-size: 22px; color: var(--ink); margin-bottom: 22px; }
.pd-info .pd-desc { color: var(--muted); margin-bottom: 30px; max-width: 460px; }
.pd-option-label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.size-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.size-box {
  min-width: 50px; padding: 12px 14px; border: 1px solid var(--line); font-size: 14px;
  text-align: center; transition: .25s;
}
.size-box:hover { border-color: var(--ink); }
.size-box.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.size-box.disabled { opacity: 0.35; text-decoration: line-through; cursor: not-allowed; }
.qty-row { display: flex; align-items: center; gap: 18px; margin-bottom: 26px; }
.qty-control { display: flex; align-items: center; border: 1px solid var(--line); }
.qty-control button { width: 44px; height: 46px; font-size: 18px; color: var(--ink); }
.qty-control input { width: 50px; height: 46px; text-align: center; border: none; border-left: 1px solid var(--line); border-right: 1px solid var(--line); font-family: inherit; font-size: 15px; outline: none; }
.pd-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.pd-meta { border-top: 1px solid var(--line); padding-top: 22px; display: flex; flex-direction: column; gap: 12px; font-size: 13px; color: var(--muted); }
.pd-meta div { display: flex; gap: 10px; }
.pd-meta .mi { color: var(--ink); }

.related { border-top: 1px solid var(--line); }

/* =========================================================
   购物车 cart.html
   ========================================================= */
.cart-layout { display: grid; grid-template-columns: 1.7fr 1fr; gap: 50px; padding: 30px 0 90px; align-items: start; }
.cart-table { width: 100%; }
.cart-row {
  display: grid; grid-template-columns: 96px 1fr auto auto auto; gap: 22px; align-items: center;
  padding: 22px 0; border-bottom: 1px solid var(--line);
}
.cart-row .c-media { width: 96px; height: 120px; overflow: hidden; background: linear-gradient(135deg, #efe9e2, #ddd4c8); }
.cart-row .c-media img { width: 100%; height: 100%; object-fit: cover; }
.cart-row .c-name { font-size: 15px; }
.cart-row .c-cat { font-size: 12px; color: var(--faint); margin-top: 4px; }
.cart-row .c-size { font-size: 12px; color: var(--muted); margin-top: 6px; }
.cart-row .c-price { font-size: 15px; min-width: 90px; text-align: right; }
.cart-row .c-qty { display: flex; align-items: center; border: 1px solid var(--line); }
.cart-row .c-qty button { width: 34px; height: 36px; font-size: 16px; }
.cart-row .c-qty input { width: 40px; height: 36px; text-align: center; border: none; border-left: 1px solid var(--line); border-right: 1px solid var(--line); outline: none; font-family: inherit; }
.cart-row .c-remove { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); }
.cart-row .c-remove:hover { color: var(--gold); }

.cart-summary { background: var(--bg-soft); padding: 34px; align-self: start; }
.cart-summary h3 { font-family: var(--font-display); font-size: 24px; font-weight: 500; margin-bottom: 22px; }
.summary-line { display: flex; justify-content: space-between; padding: 12px 0; font-size: 14px; color: var(--muted); border-bottom: 1px solid var(--line); }
.summary-line.total { color: var(--ink); font-size: 18px; border-bottom: none; padding-top: 18px; }
.summary-line.total strong { font-weight: 600; }
.cart-summary .btn { width: 100%; justify-content: center; margin-top: 22px; }
.cart-empty { text-align: center; padding: 80px 0; color: var(--muted); }
.cart-empty .btn { margin-top: 24px; }

/* 结算表单 */
.checkout-form { margin-top: 26px; display: none; }
.checkout-form.open { display: block; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); font-family: inherit; font-size: 14px;
  background: #fff; outline: none; color: var(--ink);
}
.field input:focus, .field textarea:focus { border-color: var(--ink); }
.checkout-note { font-size: 12px; color: var(--faint); margin-top: 10px; }

/* 提示 Toast */
.toast {
  position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--bg-dark); color: #fff; padding: 14px 26px; font-size: 14px; letter-spacing: 0.04em;
  opacity: 0; pointer-events: none; transition: .35s ease; z-index: 200;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* =========================================================
   编辑 / 日志子页（editorial.html / journal.html）
   极简奢华 · 编辑感排版
   ========================================================= */
.article-hero {
  position: relative; min-height: 78vh; display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
}
.article-hero-bg { position: absolute; inset: 0; }
.article-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,17,15,0.10) 30%, rgba(20,17,15,0.72) 100%);
}
.article-hero .container { position: relative; z-index: 2; padding-bottom: 72px; padding-top: 150px; }
.article-hero .eyebrow { display: block; color: rgba(255,255,255,0.8); margin-bottom: 18px; }
.article-hero h1 { font-size: 54px; font-weight: 500; line-height: 1.1; max-width: 18em; }

.article-body { max-width: 760px; padding-top: 72px; padding-bottom: 90px; margin: 0 auto; }
.article-body .a-lead {
  font-family: var(--font-display); font-size: 24px; line-height: 1.5;
  color: var(--ink); margin-bottom: 40px; font-weight: 500;
}
.article-body .a-p { color: var(--muted); font-size: 16px; line-height: 1.95; margin-bottom: 26px; }
.article-body .a-h3 {
  font-family: var(--font-display); font-size: 27px; font-weight: 500;
  margin: 52px 0 20px; letter-spacing: 0.01em;
}
.article-body .a-quote {
  font-family: var(--font-display); font-size: 26px; font-weight: 500; line-height: 1.45;
  color: var(--gold); margin: 54px 0; padding-left: 30px;
  border-left: 2px solid var(--gold);
}
.article-body .a-fig { margin: 52px 0; }
.article-body .a-fig img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.article-body .a-fig figcaption {
  margin-top: 14px; font-size: 13px; color: var(--faint);
  letter-spacing: 0.04em; text-align: center;
}
.article-body .a-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 52px 0; }
.article-body .a-duo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }

/* =========================================================
   响应式
   ========================================================= */
@media (max-width: 1200px) {
  :root { --page-pad: 48px; }
  .product-grid { grid-template-columns: repeat(4, 1fr); }
  .shop-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 980px) {
  .nav-left, .nav-right .icon-btn:not(.cart-link) { display: none; }
  .menu-toggle { display: flex; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .lookbook { grid-template-columns: 1fr; }
  .lookbook .lb-large { min-height: 380px; }
  .product-detail { grid-template-columns: 1fr; gap: 36px; }
  .cart-layout { grid-template-columns: 1fr; }
  .banner-grid { grid-template-columns: 1fr; }
  .journal-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 52px; }
}
@media (max-width: 680px) {
  :root { --page-pad: 22px; --section-y: 64px; }
  .product-grid, .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .journal-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero h1 { font-size: 40px; }
  .page-hero h1 { font-size: 34px; }
  .cart-row { grid-template-columns: 72px 1fr auto; row-gap: 10px; }
  .cart-row .c-qty, .cart-row .c-remove { grid-column: 2 / -1; justify-self: start; }
  .pd-info h1 { font-size: 30px; }
  .article-hero { min-height: 62vh; }
  .article-hero h1 { font-size: 34px; }
  .article-hero .container { padding-bottom: 44px; }
  .article-body { padding-top: 48px; padding-bottom: 60px; }
  .article-body .a-lead { font-size: 20px; }
  .article-body .a-quote { font-size: 21px; }
  .article-body .a-duo { grid-template-columns: 1fr; }
  .fab-bar { right: 18px; bottom: 18px; gap: 12px; }
  .fab { width: 48px; height: 48px; }
  .fab svg { width: 20px; height: 20px; }
}

/* 移动端抽屉菜单 */
.mobile-nav {
  position: fixed; inset: 0; background: #fff; z-index: 150;
  transform: translateX(100%); transition: transform .4s ease;
  display: flex; flex-direction: column; padding: 90px 32px 32px;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { font-family: var(--font-display); font-size: 26px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.mobile-nav .mn-close { position: absolute; top: 30px; right: 32px; font-size: 28px; }

/* =========================================================
   右下角悬浮操作区（帮助 ? + 购物袋）
   固定右下角：两枚圆形按钮等尺寸、等间距、垂直基线对齐
   ========================================================= */
.fab-bar {
  position: fixed; right: 28px; bottom: 28px; z-index: 90;
  display: flex; align-items: center; gap: 14px;
}
.fab {
  width: 52px; height: 52px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink); color: #fff;
  box-shadow: var(--shadow-card);
  transition: transform .3s ease, box-shadow .3s ease, opacity .3s ease;
  position: relative;
}
.fab svg { width: 22px; height: 22px; }
.fab:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.fab:active { transform: translateY(-1px); }
.fab-cart .cart-count {
  position: absolute; top: -4px; right: -4px;
  min-width: 19px; height: 19px; padding: 0 5px; border-radius: 10px;
  background: var(--gold); color: #fff; font-size: 11px; letter-spacing: 0;
  display: inline-flex; align-items: center; justify-content: center;
}

/* =========================================================
   主橱窗轮播（Hero Carousel）
   ========================================================= */
.hero { position: relative; min-height: 92vh; color: #fff; overflow: hidden; }
.hero-slider {
  display: flex; height: 100%; min-height: 92vh;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94);
}
.hero-slide {
  position: relative; flex: 0 0 100%; height: 92vh;
  display: flex; align-items: center;
}
.hero-slide img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,17,15,.55) 0%, rgba(20,17,15,.25) 55%, rgba(20,17,15,.35) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 560px; padding-top: 70px; }
.hero-content .eyebrow { color: rgba(255,255,255,.78); }
.hero h1 {
  font-family: var(--font-display); font-weight: 500; font-size: 64px; line-height: 1.06;
  margin: 18px 0 22px;
}
.hero p { font-size: 16px; color: rgba(255,255,255,.84); max-width: 440px; margin-bottom: 34px; }

.hero-arrow {
  position: absolute; top: 50%; z-index: 5;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.12); color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(4px);
  transform: translateY(-50%);
  transition: background .3s, transform .3s;
}
.hero-arrow:hover { background: rgba(255,255,255,.26); transform: translateY(-50%) scale(1.05); }
.hero-arrow.prev { left: var(--page-pad); }
.hero-arrow.next { right: var(--page-pad); }
.hero-arrow svg { width: 22px; height: 22px; }

.hero-dots {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  z-index: 5; display: flex; gap: 12px;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.35); cursor: pointer; transition: .3s;
}
.hero-dot.active { background: #fff; transform: scale(1.2); }

/* =========================================================
   橱窗画廊 / 用户上传展示
   ========================================================= */
.showcase-section { background: var(--bg-soft); }
.showcase-head { text-align: center; margin-bottom: 42px; }
.showcase-head h2 { font-family: var(--font-display); font-size: 34px; font-weight: 500; }
.showcase-head p { color: var(--muted); margin-top: 10px; }

.showcase-toolbar {
  display: flex; justify-content: center; align-items: center; gap: 18px;
  margin-bottom: 36px; flex-wrap: wrap;
}
.upload-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 26px; border: 1px solid var(--ink); background: var(--ink); color: #fff;
  font-size: 13px; letter-spacing: .1em; text-transform: uppercase; cursor: pointer;
  transition: .3s;
}
.upload-btn:hover { background: transparent; color: var(--ink); }
.upload-btn input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.upload-note { font-size: 13px; color: var(--faint); }

.showcase-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.gallery-item {
  position: relative; display: block; aspect-ratio: 3 / 4; overflow: hidden;
  background: var(--bg-soft); cursor: pointer; color: inherit;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

/* 子页面橱窗（更紧凑） */
.page-showcase { padding: var(--section-y) 0; border-top: 1px solid var(--line); }
.page-showcase .showcase-grid { grid-template-columns: repeat(6, 1fr); }

/* 修复占位：产品卡真实图片模式 */
.product-media { background: #f0ede8; }
.product-media .ph-label { display: none; }

@media (max-width: 1200px) {
  .showcase-grid { grid-template-columns: repeat(4, 1fr); }
  .page-showcase .showcase-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 980px) {
  .hero h1 { font-size: 52px; }
  .showcase-grid { grid-template-columns: repeat(3, 1fr); }
  .page-showcase .showcase-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
  .hero h1 { font-size: 38px; }
  .hero-arrow { width: 42px; height: 42px; }
  .hero-arrow.prev { left: 14px; }
  .hero-arrow.next { right: 14px; }
  .showcase-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .page-showcase .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item { aspect-ratio: 1; }
}
