:root {
  --bg: #f4f0e8;
  --bg-soft: #fbf8f3;
  --panel: rgba(255, 252, 247, 0.9);
  --panel-strong: #fffdf9;
  --line: rgba(24, 41, 46, 0.1);
  --line-strong: rgba(24, 41, 46, 0.16);
  --text: #1c2426;
  --muted: #687275;
  --soft: #9ba5a8;
  --brand: #234b54;
  --brand-dark: #132d33;
  --brand-soft: #e3ece9;
  --chip: #eef3f1;
  --shadow: 0 24px 56px rgba(20, 30, 34, 0.08);
  --shadow-soft: 0 12px 28px rgba(20, 30, 34, 0.055);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

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

html {
  scroll-behavior: auto;
}

body {
  font-family: "Helvetica Neue", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(227, 221, 210, 0.92), transparent 26%),
    radial-gradient(circle at top right, rgba(216, 228, 227, 0.8), transparent 22%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  font-size: 14px;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.wrapper {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: 0 14px;
}

.page-shell {
  padding-top: 18px;
  padding-bottom: 36px;
}

.site-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 44px 8px 16px;
  font-size: 12px;
  color: #f5f3ee;
  background: linear-gradient(90deg, rgba(19, 45, 51, 0.98), rgba(31, 67, 74, 0.96));
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-banner .banner-main {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-banner .banner-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
}

.banner-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(252, 249, 244, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  min-width: fit-content;
  position: relative;
  z-index: 3;
  opacity: 1;
  visibility: visible;
}

.logo-image {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  object-fit: contain;
  padding: 0;
  background: transparent;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(19, 45, 51, 0.12);
}

.logo-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-en {
  font-size: 19px;
  letter-spacing: 0.04em;
  font-weight: 800;
  color: var(--brand-dark);
  white-space: nowrap;
  font-family: "Iowan Old Style", "Baskerville", Georgia, serif;
}

.logo-sub {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.header-links {
  display: none;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  margin-left: auto;
}

.header-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(19, 45, 51, 0.08);
  background: rgba(255, 253, 249, 0.92);
  color: var(--brand-dark);
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(20, 30, 34, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.header-links a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease, opacity 0.18s ease;
  opacity: 0;
}

.header-links a:hover,
.header-links a:focus-visible {
  background: #fff;
  border-color: rgba(19, 45, 51, 0.18);
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(20, 30, 34, 0.08);
}

.header-links a:hover::after,
.header-links a:focus-visible::after {
  transform: scaleX(1);
  opacity: 0.7;
}

.header-links a.active {
  background: linear-gradient(135deg, #eef5f3, #dfece7);
  border-color: rgba(35, 75, 84, 0.22);
  box-shadow: 0 12px 22px rgba(35, 75, 84, 0.12);
}

.header-links a.active::after {
  transform: scaleX(1);
  opacity: 0.72;
}

.site-nav {
  position: sticky;
  top: 66px;
  z-index: 25;
  padding: 10px 0 12px;
  background: linear-gradient(180deg, rgba(251, 248, 243, 0.96), rgba(251, 248, 243, 0.84));
  backdrop-filter: blur(14px);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 253, 249, 0.88);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 12px;
  box-shadow: var(--shadow-soft);
}

#nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
}

#nav-links::-webkit-scrollbar {
  display: none;
}

.nav-inner a,
.nav-soon {
  flex: 0 0 auto;
  padding: 9px 14px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.nav-inner a:hover,
.nav-inner a.active {
  background: var(--chip);
  color: var(--brand-dark);
  transform: translateY(-1px);
}

.nav-soon {
  color: rgba(104, 114, 117, 0.5);
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.mobile-channel-links {
  display: none;
  width: 100%;
  align-items: center;
  gap: 12px;
  padding: 2px 8px 0;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.mobile-channel-links::-webkit-scrollbar {
  display: none;
}

.mobile-channel-links a {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(19, 45, 51, 0.16);
  background: linear-gradient(135deg, rgba(19, 45, 51, 0.96), rgba(35, 75, 84, 1));
  color: #fff;
  box-shadow: 0 12px 26px rgba(20, 30, 34, 0.16);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.mobile-channel-links a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-dark);
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.mobile-channel-links a:hover::after,
.mobile-channel-links a:focus-visible::after {
  opacity: 0.72;
  transform: scaleX(1);
}

.mobile-channel-links a:hover,
.mobile-channel-links a:focus-visible {
  background: linear-gradient(135deg, rgba(20, 51, 58, 0.96), rgba(31, 70, 78, 1));
  border-color: rgba(19, 45, 51, 0.32);
  transform: translateY(-1px);
}

.mobile-channel-links a.active::after {
  opacity: 0.72;
  transform: scaleX(1);
}

.mobile-channel-links a.active {
  background: linear-gradient(135deg, #eef5f3, #dfece7);
  color: var(--brand-dark);
  border-color: rgba(35, 75, 84, 0.24);
  box-shadow: 0 12px 26px rgba(35, 75, 84, 0.18);
}

.nav-search input[type="text"] {
  width: 170px;
  border: 0;
  background: #f4f0e8;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  outline: none;
}

.nav-search button,
.search-bar-big button {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: #fff;
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(19, 45, 51, 0.2);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.nav-search button:hover,
.search-bar-big button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(19, 45, 51, 0.24);
}

/* ===== Language Toggle Button ===== */
.lang-toggle-btn {
  border: 1.5px solid var(--brand);
  border-radius: 999px;
  background: transparent;
  color: var(--brand);
  padding: 5px 13px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.18s, color 0.18s;
}
.lang-toggle-btn:hover {
  background: var(--brand);
  color: #fff;
}

.store-hero {
  display: grid;
  gap: 18px;
  padding: 20px;
  margin-bottom: 18px;
  background:
    radial-gradient(circle at right top, rgba(35, 75, 84, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(255, 253, 249, 0.84));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.store-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.store-title {
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.store-summary {
  max-width: 720px;
  color: var(--muted);
  font-size: 14px;
}

.store-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(227, 236, 233, 0.92);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 700;
}

.showcase-section {
  margin-bottom: 18px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.84), rgba(255, 251, 246, 0.78));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.showcase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(24, 41, 46, 0.08);
}

.showcase-kicker {
  color: var(--brand-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.showcase-title {
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-family: "Iowan Old Style", "Baskerville", Georgia, serif;
  font-weight: 700;
}

.showcase-rail {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.showcase-rail::-webkit-scrollbar {
  display: none;
}

.showcase-card,
.feedback-card {
  flex: 0 0 300px;
  background: rgba(255, 252, 247, 0.92);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.showcase-card:hover,
.feedback-card:hover {
  transform: translateY(-3px);
  border-color: rgba(35, 75, 84, 0.2);
  box-shadow: 0 18px 36px rgba(20, 30, 34, 0.09);
}

.showcase-viewall {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.94);
  border: 1px solid var(--line);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.showcase-viewall:hover {
  background: var(--chip);
  border-color: rgba(35, 75, 84, 0.18);
  transform: translateY(-1px);
  text-decoration: none;
}

.showcase-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}

.showcase-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.showcase-filter-btn {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.92);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.showcase-filter-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(35, 75, 84, 0.16);
  background: rgba(248, 245, 239, 0.98);
}

.showcase-filter-btn.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}

.showcase-card-media {
  aspect-ratio: 1 / 1.1;
  position: relative;
  background: #f1ece4;
}

.showcase-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-card-body {
  padding: 12px 14px 16px;
}

.showcase-card-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.showcase-card-date {
  color: var(--soft);
  font-size: 11px;
  font-weight: 700;
}

.showcase-card-tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(227, 236, 233, 0.96);
  color: var(--brand-dark);
  font-size: 11px;
  font-weight: 700;
}

.showcase-card-text {
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
}

.showcase-video-badge {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 18, 17, 0.62);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.feedback-rail .feedback-card {
  flex-basis: 320px;
}

.feedback-shot {
  display: grid;
  gap: 12px;
  padding: 14px;
  min-height: 340px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.72)),
    linear-gradient(135deg, #f5f1ea, #ece8e0);
}

.feedback-shot.feedback-shot-image {
  min-height: 0;
  padding: 0;
  background: #f4f0e8;
}

.feedback-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.feedback-bubble {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.45;
  box-shadow: 0 10px 18px rgba(19, 45, 51, 0.08);
}

.feedback-bubble-light {
  background: #fff;
  color: var(--text);
}

.feedback-bubble-dark {
  margin-left: auto;
  background: #dceee7;
  color: #1d4a3d;
}

.feedback-footer {
  padding: 12px 14px 16px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
}

.feedback-title {
  font-weight: 700;
  margin-bottom: 4px;
}

.feedback-meta {
  color: var(--muted);
  font-size: 12px;
}

.showcase-detail-shell {
  padding: 18px;
  background: rgba(255, 252, 247, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.showcase-detail-stage {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 14px;
  margin-bottom: 14px;
}

.showcase-detail-video,
.showcase-detail-image {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 16px;
  background: #f5f0e9;
}

.showcase-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
}

.showcase-detail-copy {
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
  white-space: pre-wrap;
}

.category-directory-panel {
  margin-bottom: 18px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.84), rgba(255, 251, 246, 0.78));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  scroll-margin-top: 112px;
}

.channel-preview-stack {
  display: grid;
  gap: 18px;
}

.channel-preview-panel {
  margin-bottom: 0;
}

.channel-preview-note {
  margin-top: 8px;
  max-width: 760px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.progressive-grid-sentinel {
  width: 100%;
  height: 1px;
  margin-top: 1px;
  opacity: 0;
  pointer-events: none;
}

.deferred-section-loading {
  min-height: 120px;
}

.channel-preview-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.94);
  color: var(--brand-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.channel-preview-panel[data-channel="accessory"] .channel-preview-badge {
  background: rgba(224, 236, 237, 0.88);
}

.channel-preview-panel[data-channel="bags"] .channel-preview-badge {
  background: rgba(236, 231, 223, 0.88);
}

.channel-preview-panel[data-channel="shoes"] .channel-preview-badge {
  background: rgba(231, 237, 232, 0.88);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  color: var(--soft);
  font-size: 12px;
}

.breadcrumb a {
  color: var(--muted);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(24, 41, 46, 0.08);
}

.section-title {
  display: inline-block;
  color: var(--brand-dark);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-family: "Iowan Old Style", "Baskerville", Georgia, serif;
}

.cat-grid,
.batch-grid,
.product-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.cat-grid {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

.batch-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.product-grid {
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

.cat-card,
.batch-card,
.product-card {
  display: block;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

/* Home category sections should feel closer to the source catalog:
   flatter cards, tighter spacing, and uncropped category covers. */
.page-home .category-directory-panel .cat-grid,
.page-channel .cat-grid {
  gap: 12px;
}

.page-home .category-directory-panel .cat-card,
.page-channel .cat-card {
  border-radius: 0;
  box-shadow: none;
  border-color: #d9d9d9;
  background: #fff;
}

.page-home .category-directory-panel .cat-card-no-cover,
.page-channel .cat-card-no-cover {
  min-height: 148px;
}

.page-home .category-directory-panel .cat-card:hover,
.page-channel .cat-card:hover {
  transform: none;
  box-shadow: none;
  border-color: #c8c8c8;
}

.cat-card:hover,
.batch-card:hover,
.product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(35, 75, 84, 0.2);
  box-shadow: 0 18px 34px rgba(20, 30, 34, 0.08);
  text-decoration: none;
}

.cat-card-preview {
  cursor: default;
}

.cat-card-preview:hover {
  transform: none;
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
}

.cat-card-disabled {
  cursor: default;
  opacity: 0.9;
}

.cat-card-disabled:hover {
  transform: none;
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
}

.cat-card-img-wrap,
.batch-card-img-wrap,
.product-card-img-wrap {
  position: relative;
  overflow: hidden;
  background: #f1ebe3;
}

.cat-card-img-wrap {
  aspect-ratio: 1 / 0.74;
  padding: 10px;
  background: #fff;
  border: 1px solid rgba(24, 41, 46, 0.08);
}

.page-home .category-directory-panel .cat-card-img-wrap,
.page-channel .cat-card-img-wrap {
  aspect-ratio: 1 / 0.72;
  padding: 12px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 0;
}

.cat-card-cover {
  position: absolute;
  inset: 10px;
  background-image: var(--cat-cover);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 1;
}

.page-home .category-directory-panel .cat-card-cover,
.page-channel .cat-card-cover {
  inset: 12px;
}

.channel-preview-face {
  background: linear-gradient(145deg, #faf6ef, #f0ebe2);
}

.batch-card-img-wrap {
  aspect-ratio: 1 / 0.92;
}

.product-card-img-wrap {
  aspect-ratio: 1 / 1.16;
}

.cat-card-img,
.batch-card-img,
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat-card-img {
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 1;
}

.page-home .category-directory-panel .cat-card-img,
.page-channel .cat-card-img {
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.cat-card-img-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  text-align: center;
  color: var(--brand-dark);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(145deg, #f7f3ed, #ebe7df);
  z-index: 0;
  pointer-events: none;
}

.channel-preview-face .cat-card-img-fallback {
  padding: 20px;
  font-size: 18px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-family: "Iowan Old Style", "Baskerville", Georgia, serif;
}

.cat-card-img-wrap.img-failed .cat-card-img-fallback {
  z-index: 2;
}

.cat-card-name,
.batch-card-info,
.product-id {
  padding: 12px 12px 14px;
}

.cat-card-name {
  text-align: center;
  padding-top: 10px;
}

.page-home .category-directory-panel .cat-card-name,
.page-channel .cat-card-name {
  padding: 10px 8px 12px;
}

.page-home .category-directory-panel .cat-card-no-cover .cat-card-name,
.page-channel .cat-card-no-cover .cat-card-name {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 10px 18px;
}

/* Logo placeholder for no-cover category cards */
.cat-card-emoji-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f5f2;
}
.cat-card-logo-placeholder {
  width: 54%;
  max-width: 72px;
  object-fit: contain;
  opacity: 0.45;
}
/* Reset centering when emoji placeholder is present */
.cat-card-no-cover .cat-card-emoji-wrap ~ .cat-card-name,
.page-home .category-directory-panel .cat-card-no-cover .cat-card-emoji-wrap ~ .cat-card-name,
.page-channel .cat-card-no-cover .cat-card-emoji-wrap ~ .cat-card-name {
  min-height: unset;
  justify-content: flex-start;
  padding: 10px 8px 12px;
}

.cat-card-title {
  display: block;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 3px;
}

.page-home .category-directory-panel .cat-card-title,
.page-channel .cat-card-title {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  color: #1e1e1e;
}

.cat-card-count {
  color: var(--muted);
  font-size: 12px;
}

.page-home .category-directory-panel .cat-card-count,
.page-channel .cat-card-count {
  font-size: 11px;
  color: #5f5f5f;
}

.cat-card-status {
  margin-top: 6px;
  color: var(--soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.batch-card-date,
.product-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(227, 236, 233, 0.96);
  color: var(--brand-dark);
  font-size: 11px;
  font-weight: 700;
}

.batch-card-info {
  text-align: left;
}

.batch-card-name {
  font-size: 15px;
  line-height: 1.25;
  color: var(--text);
  font-weight: 800;
  margin-bottom: 4px;
}

.batch-card-count {
  color: var(--muted);
  font-size: 12px;
}

.batch-card-overlay,
.product-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 14px;
  background: linear-gradient(180deg, transparent 30%, rgba(16, 28, 31, 0.56) 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.batch-card:hover .batch-card-overlay,
.product-card:hover .product-card-overlay {
  opacity: 1;
}

.batch-card-overlay span,
.product-card-overlay span {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
}

.product-card {
  color: inherit;
}

.product-card .product-date {
  margin: 12px 12px 0;
}

.product-id {
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
}

.search-bar-big {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  padding: 12px;
  background: rgba(255, 252, 247, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.search-bar-big input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: #f4f0e8;
  border-radius: 999px;
  padding: 12px 16px;
  font-size: 14px;
  outline: none;
}

#result-count {
  margin-bottom: 12px !important;
  color: var(--muted) !important;
  font-size: 13px !important;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.pagination a:hover,
.pagination .active {
  background: var(--chip);
  color: var(--brand-dark);
  border-color: rgba(35, 75, 84, 0.18);
  text-decoration: none;
}

.pagination .disabled {
  opacity: 0.45;
}

.loading,
.empty-state {
  padding: 42px 22px;
  text-align: center;
  background: rgba(255, 252, 247, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.loading {
  color: var(--muted);
}

.loading-spinner {
  width: 30px;
  height: 30px;
  margin: 0 auto 12px;
  border-radius: 999px;
  border: 3px solid rgba(35, 75, 84, 0.12);
  border-top-color: var(--brand);
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.empty-state {
  color: var(--muted);
}

.empty-state .icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.product-detail-shell {
  padding: 18px;
  background: rgba(255, 252, 247, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.product-detail-toolbar {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

.product-detail-label {
  color: var(--brand-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.product-detail-title {
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.product-detail-subtitle {
  color: var(--muted);
  font-size: 12px;
}

.product-detail-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-tool {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.94);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
}

.detail-tool:hover {
  background: var(--chip);
  color: var(--brand-dark);
}

.detail-tool.disabled {
  opacity: 0.45;
}

.product-detail-main {
  display: grid;
  gap: 16px;
  margin-bottom: 18px;
}

.product-detail-stage {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 14px;
}

.product-detail-image {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 18px;
  background: #f6f2eb;
}

.product-detail-review {
  text-align: right;
  margin-top: 10px;
  font-size: 12px;
}

.product-detail-review a {
  color: var(--brand-dark);
}

.product-detail-side {
  display: grid;
  gap: 12px;
}

.product-detail-meta {
  display: grid;
  gap: 8px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  color: var(--muted);
}

.product-detail-inquire {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  background: #25D366;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.30);
  transition: background .15s;
}

.product-detail-inquire:hover {
  background: #1fb457;
  color: #fff;
  text-decoration: none;
}

.batch-whatsapp-btn {
  display: inline-flex;
  margin: 8px 0 16px;
}

.copy-id-btn {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid var(--brand);
  border-radius: 4px;
  background: var(--brand);
  color: #fff;
  cursor: pointer;
  vertical-align: middle;
  transition: opacity .15s;
}
.copy-id-btn:hover { opacity: .85; }

.product-thumb-header {
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}

.product-thumb-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.product-thumb-strip::-webkit-scrollbar {
  display: none;
}

.product-thumb {
  flex: 0 0 88px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 6px;
}

.product-thumb.active {
  border-color: rgba(35, 75, 84, 0.28);
  box-shadow: inset 0 0 0 1px rgba(35, 75, 84, 0.18);
}

.product-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  background: #f1ece4;
}

.product-thumb span {
  display: block;
  margin-top: 6px;
  text-align: center;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.site-footer {
  margin-top: 42px;
  padding: 28px 18px 40px;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  border-top: 1px solid rgba(24, 41, 46, 0.08);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.whatsapp-btn {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.32);
  cursor: pointer;
}

.whatsapp-btn svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.whatsapp-label {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(19, 45, 51, 0.82);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.04em;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 94px;
  z-index: 55;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  display: none;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: #fff;
  box-shadow: 0 10px 18px rgba(19, 45, 51, 0.24);
  cursor: pointer;
}

.back-to-top.visible {
  display: inline-flex;
}

@media (min-width: 900px) {
  .header-links {
    display: inline-flex;
  }

  .store-hero {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .product-detail-toolbar {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }

  .product-detail-main {
    grid-template-columns: minmax(0, 1fr) 280px;
  }
}

@media (max-width: 899px) {
  .site-nav {
    top: 66px;
    padding: 8px 0 0;
  }

  .nav-inner {
    align-items: stretch;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: 1px solid var(--line);
    padding: 8px 12px 0;
    flex-wrap: wrap;
    gap: 6px;
    background: rgba(251, 248, 243, 0.97);
    box-shadow: none;
  }

  #nav-links {
    display: none;
  }

  .nav-search {
    order: 1;
    width: 100%;
  }

  .nav-search input[type="text"] {
    flex: 1;
    width: auto;
  }

  .mobile-channel-links {
    display: flex;
    order: 2;
    justify-content: flex-start;
    padding: 6px 0 0;
    gap: 0;
  }

  .mobile-channel-links a {
    min-height: 34px;
    padding: 0 14px;
    border-radius: 0;
    border: none;
    background: transparent;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    box-shadow: none;
    border-bottom: 2px solid transparent;
  }

  .mobile-channel-links a.active {
    background: transparent;
    color: var(--brand-dark);
    border-bottom: 2px solid var(--brand-dark);
    box-shadow: none;
  }

  .mobile-channel-links a:hover,
  .mobile-channel-links a:focus-visible {
    background: transparent;
    color: var(--brand-dark);
    border-color: transparent;
    transform: none;
  }

  .mobile-channel-links a::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .wrapper {
    padding: 0 12px;
  }

  /* ── Header 压缩 ── */
  .header-inner {
    min-height: 52px;
  }

  .site-nav {
    top: 52px;
  }

  .logo-image {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }

  .logo-sub {
    display: none;
  }

  /* ── 面包屑溢出省略 ── */
  .breadcrumb {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
  }

  /* ── 商品卡片：手机始终显示渐变，隐藏文字按钮 ── */
  .product-card-overlay,
  .batch-card-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(19,45,51,0.3) 0%, transparent 50%);
  }

  .product-card-overlay span,
  .batch-card-overlay span {
    display: none;
  }

  /* ── WhatsApp 悬浮：手机只显示图标 ── */
  .whatsapp-label {
    display: none;
  }

  .whatsapp-float {
    bottom: 16px;
    right: 14px;
  }

  .back-to-top {
    bottom: 80px;
    right: 14px;
  }

  /* ── 商品详情页 ── */
  .product-detail-toolbar {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .product-detail-title {
    font-size: 18px;
  }

  .product-detail-tools {
    justify-content: space-between;
  }

  .detail-tool {
    flex: 1;
    min-width: unset;
  }

  .product-detail-image {
    max-height: 55vh;
  }

  .store-title {
    font-size: 22px;
  }

  .cat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .batch-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  /* ── 批次卡片：移动端图片占比更大（约7:3）── */
  .batch-card-img-wrap {
    aspect-ratio: 3 / 4;
  }

  .batch-card-info {
    padding: 6px 8px 8px;
  }

  .batch-card-date {
    font-size: 10px;
    padding: 2px 6px;
    margin-bottom: 3px;
  }

  .batch-card-name {
    font-size: 11px;
    line-height: 1.2;
    margin-bottom: 2px;
  }

  .batch-card-count {
    font-size: 10px;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section-title {
    font-size: 21px;
  }

  .showcase-card,
  .feedback-card {
    flex-basis: 200px;
  }

  .showcase-list-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  /* 3列时卡片内容收紧 */
  .showcase-list-grid .showcase-card,
  .showcase-list-grid .feedback-card {
    border-radius: 10px;
  }

  .showcase-list-grid .showcase-card-body {
    padding: 7px 8px 10px;
  }

  .showcase-list-grid .showcase-card-text {
    font-size: 11px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .showcase-list-grid .showcase-card-meta-row {
    margin-bottom: 3px;
    gap: 4px;
  }

  .showcase-list-grid .showcase-card-tag {
    font-size: 9px;
    min-height: 18px;
    padding: 0 6px;
  }

  .showcase-list-grid .showcase-card-date {
    font-size: 9px;
  }

  .showcase-list-grid .showcase-video-badge {
    width: 26px;
    height: 26px;
    font-size: 10px;
    right: 6px;
    top: 6px;
  }

  .showcase-list-grid .feedback-image {
    aspect-ratio: 1 / 1;
  }

  .showcase-list-grid .feedback-footer {
    padding: 6px 8px 8px;
  }

  .showcase-list-grid .feedback-title {
    font-size: 11px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .showcase-list-grid .feedback-meta {
    font-size: 9px;
  }

  .product-detail-shell {
    padding: 14px;
  }
}
