:root {
  color-scheme: light;
  --ink: #171412;
  --muted: #6d6861;
  --line: #ddd7cf;
  --paper: #faf8f4;
  --panel: #ffffff;
  --mist: #eef3f0;
  --sage: #6f8172;
  --rose: #b87373;
  --gold: #a88452;
  --charcoal: #262320;
  --shadow: 0 18px 50px rgba(33, 29, 24, 0.12);
  --soft-shadow: 0 10px 28px rgba(33, 29, 24, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #fffdf8 0, #faf8f4 360px),
    var(--paper);
  color: var(--ink);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
}

main,
section {
  max-width: 100vw;
}

body.modal-open {
  overflow: hidden;
}

.update-notice {
  position: fixed;
  z-index: 80;
  top: 88px;
  left: 50%;
  width: min(560px, calc(100vw - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(168, 132, 82, 0.56);
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 18px 42px rgba(38, 35, 32, 0.18);
  transform: translateX(-50%);
  backdrop-filter: blur(16px);
}

.update-notice[hidden] {
  display: none;
}

.update-notice-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.update-notice-copy strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.3;
}

.update-notice-copy span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.update-notice-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.update-notice-actions button {
  min-height: 34px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  padding: 0 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.update-notice-refresh {
  border-color: var(--charcoal) !important;
  background: var(--charcoal) !important;
  color: #fffaf2 !important;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(221, 215, 207, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--gold);
  background: var(--charcoal);
  color: #fffaf2;
  font-family: "Noto Serif SC", serif;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--ink);
}

.language-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  background: #fff;
}

.lang-button {
  min-height: 34px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  padding: 0 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.lang-button:last-child {
  border-right: 0;
}

.lang-button.active {
  background: var(--charcoal);
  color: #fffaf2;
}

.region-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  padding: 0 9px;
}

.region-switch svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
}

.region-switch select {
  max-width: 132px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  outline: 0;
}

.header-action,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  border: 1px solid transparent;
  padding: 0 18px;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.header-action,
.primary-button {
  background: var(--charcoal);
  color: #fffaf2;
}

.secondary-button {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.header-action:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  padding: 116px clamp(18px, 6vw, 86px) 76px;
  overflow: hidden;
  background: #191715;
}

.geo-banner {
  position: sticky;
  z-index: 8;
  top: 67px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(168, 132, 82, 0.26);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 12px 32px rgba(33, 29, 24, 0.08);
  backdrop-filter: blur(14px);
}

.geo-banner[hidden] {
  display: none;
}

.geo-banner > div:first-child {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.geo-banner strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.25;
}

.geo-banner span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.geo-banner-actions {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 8px;
}

.geo-banner-actions button {
  min-height: 34px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  padding: 0 12px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.geo-banner-actions button:first-child {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: #fffaf2;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 16, 14, 0.88) 0%, rgba(18, 16, 14, 0.58) 44%, rgba(18, 16, 14, 0.08) 100%),
    linear-gradient(0deg, rgba(18, 16, 14, 0.3), rgba(18, 16, 14, 0));
}

.hero-content {
  position: relative;
  width: min(680px, 100%);
  color: #fffaf2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Noto Serif SC", serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(46px, 7vw, 88px);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 52px);
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 34px;
  color: rgba(255, 250, 242, 0.84);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 76px 0 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.7fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: end;
}

.intro > p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 18px;
}

.market-advantages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 36px));
  margin: 42px auto 0;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: var(--soft-shadow);
}

.market-advantages article {
  min-height: 188px;
  padding: 28px;
  background: #fff;
}

.market-advantages span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.market-advantages strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.18;
}

.market-advantages p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 22px;
}

.filter-bar {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 100%;
}

.filter-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  justify-content: flex-start;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-row::-webkit-scrollbar {
  display: none;
}

.filter {
  flex: 0 0 auto;
  min-height: 38px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  padding: 0 14px;
  cursor: pointer;
}

.filter.active,
.filter:hover {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: #fffaf2;
}

.catalog-tools {
  position: sticky;
  z-index: 18;
  top: 74px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  padding: 12px 14px;
  background: rgba(255, 253, 248, 0.98);
  border: 1px solid rgba(221, 215, 207, 0.92);
  box-shadow: 0 16px 36px rgba(38, 35, 32, 0.16);
  backdrop-filter: blur(18px);
}

.catalog-search-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}

.category-insight {
  grid-column: 1 / -1;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  background: linear-gradient(90deg, rgba(168, 132, 82, 0.14), rgba(255, 255, 255, 0.84));
}

.category-insight strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.3;
}

.category-insight p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.floating-filter-summary {
  position: fixed;
  z-index: 24;
  top: 148px;
  left: calc(50% + 610px);
  width: 154px;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(168, 132, 82, 0.42);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 14px 34px rgba(38, 35, 32, 0.16);
  backdrop-filter: blur(18px);
  transform: translateX(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.floating-filter-summary.visible {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.floating-filter-summary span {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-filter-summary strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.2;
}

.floating-filter-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
}

.floating-filter-actions button {
  min-height: 34px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  padding: 0 11px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.floating-filter-actions button.active,
.floating-filter-actions button:hover {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: #fffaf2;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 360px;
  min-height: 50px;
  border: 2px solid var(--charcoal);
  background: #fff;
  padding: 0 16px;
  color: var(--muted);
  box-shadow: 0 8px 18px rgba(38, 35, 32, 0.08);
}

.search-box input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

#resultCount {
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.grid-layout-picker {
  position: relative;
  flex: 0 0 auto;
}

.grid-layout-trigger {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: #fffaf5;
  color: var(--charcoal);
  padding: 0 12px;
  cursor: pointer;
  font-weight: 800;
  white-space: nowrap;
}

.grid-layout-trigger:hover,
.grid-layout-trigger[aria-expanded="true"] {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: #fffaf2;
}

.grid-layout-panel {
  position: absolute;
  z-index: 30;
  top: calc(100% + 8px);
  right: 0;
  min-width: 178px;
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(168, 132, 82, 0.45);
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 16px 36px rgba(38, 35, 32, 0.16);
}

.grid-layout-panel[hidden] {
  display: none;
}

.grid-layout-panel span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.grid-layout-cells {
  display: grid;
  grid-template-columns: repeat(6, 18px);
  gap: 5px;
}

.grid-layout-cell {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(38, 35, 32, 0.28);
  background: #fff;
  padding: 0;
  cursor: pointer;
}

.grid-layout-cell.preview,
.grid-layout-cell.active {
  border-color: var(--charcoal);
  background: var(--charcoal);
}

.grid-layout-cell.disabled {
  opacity: 0.32;
  cursor: not-allowed;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(var(--catalog-columns, 4), minmax(0, 1fr));
  gap: clamp(14px, 1.25vw, 20px);
}

.product-grid[data-columns="5"],
.product-grid[data-columns="6"] {
  gap: 14px;
}

.product-grid[data-columns="5"] .product-body,
.product-grid[data-columns="6"] .product-body {
  gap: 8px;
  padding: 12px;
}

.product-grid[data-columns="5"] .product-heading h3,
.product-grid[data-columns="6"] .product-heading h3 {
  font-size: 17px;
}

.product-grid[data-columns="5"] .product-heading,
.product-grid[data-columns="6"] .product-heading {
  min-height: 86px;
}

.product-grid[data-columns="5"] .product-visual,
.product-grid[data-columns="5"] .product-visual.has-image,
.product-grid[data-columns="5"] .product-visual img,
.product-grid[data-columns="6"] .product-visual,
.product-grid[data-columns="6"] .product-visual.has-image,
.product-grid[data-columns="6"] .product-visual img {
  min-height: 168px;
}

.product-grid[data-columns="5"] .product-meta,
.product-grid[data-columns="6"] .product-meta {
  gap: 5px 7px;
  font-size: 12px;
}

.product-grid[data-columns="6"] .product-description {
  padding: 6px 8px;
  font-size: 12px;
  -webkit-line-clamp: 1;
}

.product-grid[data-columns="6"] .price-line {
  min-height: 58px;
  gap: 10px;
}

.product-grid[data-columns="6"] .price-line strong {
  align-self: flex-start;
  font-size: 20px;
}

.product-grid[data-columns="6"] .price-toggle {
  align-self: flex-start;
  font-size: 20px;
}

.empty-state {
  grid-column: 1 / -1;
  border: 1px solid var(--line);
  background: #fff;
  padding: 34px;
  color: var(--muted);
  text-align: center;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(33, 29, 24, 0.055);
  transition:
    box-shadow 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.product-card:hover {
  border-color: rgba(168, 132, 82, 0.72);
  box-shadow: 0 16px 36px rgba(33, 29, 24, 0.12);
  transform: translateY(-1px);
}

.product-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 210px;
  background: #f9f7f2;
  overflow: hidden;
}

.product-visual.has-image {
  min-height: 220px;
  background: #fff;
}

.product-visual.image-missing {
  background:
    radial-gradient(circle at 50% 22%, rgba(168, 132, 82, 0.14), transparent 38%),
    #f9f7f2;
}

.product-visual.image-missing::before,
.product-visual.image-missing::after {
  display: block;
}

.product-visual img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: contain;
  padding: 4px;
  display: block;
  transition: transform 220ms ease;
}

.product-card:hover .product-visual img {
  transform: scale(1.035);
}

.product-visual.has-image::before,
.product-visual.has-image::after {
  display: none;
}

.product-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: 74px;
  height: 116px;
  transform: translateX(-50%);
  border: 2px solid rgba(38, 35, 32, 0.72);
  border-radius: 7px 7px 18px 18px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.1) 35%, rgba(0, 0, 0, 0.07)),
    var(--bottle);
  box-shadow: 0 18px 28px rgba(38, 35, 32, 0.14);
}

.product-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 144px;
  width: 34px;
  height: 22px;
  transform: translateX(-50%);
  border: 2px solid rgba(38, 35, 32, 0.72);
  background: rgba(255, 255, 255, 0.45);
}

.product-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.product-heading {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 96px;
}

.product-heading h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.2;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: flex-start;
}

.tag {
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 3px 8px;
  font-size: 12px;
  background: #fbfaf7;
}

.product-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 8px;
  color: var(--muted);
  font-size: 13px;
}

.product-meta span,
.product-meta strong {
  min-width: 0;
  border-top: 1px solid var(--line);
  padding-top: 6px;
}

.product-meta strong {
  color: var(--ink);
  font-weight: 700;
}

.price-line {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 14px;
  min-height: 74px;
  padding-top: 2px;
}

.product-description {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 60px;
  margin: 0;
  padding: 7px 9px;
  border-left: 3px solid var(--gold);
  background: #f7f2ea;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-description:empty {
  border-left-color: rgba(168, 132, 82, 0.36);
  background:
    linear-gradient(90deg, rgba(168, 132, 82, 0.1), rgba(255, 255, 255, 0) 42%),
    #fbfaf7;
}

.product-description:empty::before {
  content: "";
  position: absolute;
  top: 15px;
  right: 12px;
  left: 12px;
  height: 1px;
  background: rgba(168, 132, 82, 0.2);
  box-shadow:
    0 14px 0 rgba(168, 132, 82, 0.16),
    0 28px 0 rgba(168, 132, 82, 0.1);
}

.price-line strong,
.price-toggle {
  align-self: center;
  flex: 0 0 auto;
  color: var(--rose);
  font-size: 22px;
}

.price-toggle {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

.price-toggle:hover,
.price-toggle:focus-visible {
  color: var(--charcoal);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.price-toggle:disabled {
  cursor: default;
  text-decoration: none;
}

.add-button {
  align-self: end;
  min-height: 40px;
  border: 1px solid var(--charcoal);
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  font-weight: 700;
}

.add-button.active {
  background: var(--sage);
  border-color: var(--sage);
  color: #fff;
}

.product-open {
  display: inline-flex;
  justify-content: center;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-grid article {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 28px;
}

.service-grid svg {
  color: var(--rose);
  margin-bottom: 18px;
}

.service-grid p,
.inquiry-copy p,
.form-note,
.proof-lead {
  color: var(--muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.faq-grid article {
  min-height: 178px;
  background: #fff;
  padding: 26px;
}

.faq-grid h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.25;
}

.faq-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.geo-page {
  background: var(--paper);
}

.geo-shell {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 42px 0 80px;
}

.geo-back {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.geo-product {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.geo-product > img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
}

.geo-product h1,
.geo-heading h1 {
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 62px);
}

.geo-product p,
.geo-heading p {
  color: var(--muted);
  font-size: 18px;
}

.geo-landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  margin-bottom: 56px;
}

.geo-landing-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 6vw, 70px);
  line-height: 1;
}

.geo-landing-hero p {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.75;
}

.geo-landing-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.geo-landing-section {
  margin-top: 48px;
}

.geo-landing-section h2 {
  margin: 0 0 16px;
  font-size: clamp(26px, 3vw, 40px);
}

.geo-landing-section > p {
  max-width: 860px;
  color: var(--muted);
  font-size: 17px;
}

.geo-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.geo-info-grid article {
  border: 1px solid var(--line);
  background: #fff;
  padding: 22px;
}

.geo-info-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.geo-info-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.geo-product table {
  width: 100%;
  margin: 28px 0;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
}

.geo-product th,
.geo-product td {
  border-bottom: 1px solid var(--line);
  padding: 12px 14px;
  text-align: left;
}

.geo-product th {
  width: 34%;
  color: var(--muted);
  font-weight: 600;
}

.geo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.secondary-geo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--charcoal);
  padding: 0 18px;
  color: var(--charcoal);
  font-weight: 800;
}

.geo-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.geo-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.geo-card-grid article {
  background: #fff;
  border: 1px solid var(--line);
}

.geo-card-grid a {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.geo-card-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fbfaf7;
}

.geo-card-grid strong {
  line-height: 1.25;
}

.geo-card-grid span {
  color: var(--muted);
  font-size: 13px;
}

.geo-zh-shell {
  width: min(1180px, calc(100% - 36px));
}

.geo-zh-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
  gap: clamp(22px, 5vw, 56px);
  align-items: start;
  margin-bottom: 58px;
}

.geo-zh-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.98;
}

.geo-zh-hero p {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.75;
}

.geo-zh-hero aside,
.geo-zh-cta,
.geo-faq-grid article {
  border: 1px solid var(--line);
  background: #fff;
}

.geo-zh-hero aside {
  padding: 26px;
}

.geo-zh-hero aside strong {
  display: block;
  margin-bottom: 16px;
  font-size: 20px;
}

.geo-zh-hero ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.65;
}

.geo-keyword-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}

.geo-keyword-row span {
  border: 1px solid var(--line);
  background: #fff;
  padding: 8px 11px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.geo-zh-section {
  margin-top: 54px;
}

.geo-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.geo-faq-grid article {
  padding: 24px;
}

.geo-faq-grid h2 {
  margin-bottom: 12px;
  font-size: 22px;
}

.geo-faq-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.geo-zh-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 58px;
  padding: 28px;
}

.geo-zh-cta h2 {
  margin-bottom: 8px;
  font-size: clamp(26px, 3vw, 38px);
}

.geo-zh-cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.geo-topic-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 22px;
  color: var(--muted);
}

.geo-topic-links strong {
  margin-right: 4px;
  color: var(--ink);
}

.geo-topic-links a {
  border: 1px solid var(--line);
  background: #fff;
  padding: 8px 11px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.proof-lead {
  width: min(460px, 100%);
  margin: 0;
}

.media-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  padding: 0;
  cursor: pointer;
  text-align: left;
  color: inherit;
}

.media-card:hover img,
.media-card:hover video {
  transform: scale(1.035);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.media-card img,
.media-card video {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  background: #f4f1ec;
  transition: transform 220ms ease;
}

.media-card video {
  pointer-events: none;
}

.media-body {
  padding: 18px;
}

.media-body strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.media-body span {
  color: var(--muted);
  font-size: 14px;
}

.media-body small {
  display: inline-flex;
  margin-top: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.media-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(38, 35, 32, 0.84);
  color: #fffaf2;
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 700;
}

.gallery-modal[hidden] {
  display: none;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 34px);
}

.gallery-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(18, 16, 14, 0.72);
  cursor: pointer;
}

.gallery-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(1120px, 100%);
  max-height: min(840px, calc(100vh - 28px));
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.gallery-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.gallery-header h2 {
  font-size: clamp(26px, 4vw, 42px);
}

.gallery-subtitle {
  max-width: 720px;
  margin: 10px 0 0;
  padding: 9px 12px;
  border-left: 3px solid var(--gold);
  background: #f7f2ea;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.gallery-subtitle[hidden] {
  display: none;
}

.gallery-close {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.qr-modal[hidden] {
  display: none;
}

.qr-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 42px);
}

.qr-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(18, 16, 14, 0.74);
  cursor: pointer;
}

.qr-dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  border: 1px solid rgba(255, 250, 242, 0.2);
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.qr-dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.qr-dialog-header h2 {
  font-size: 22px;
}

.qr-dialog-close {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.qr-dialog > img {
  display: block;
  width: 100%;
  max-height: min(72vh, 520px);
  object-fit: contain;
  padding: clamp(16px, 5vw, 34px);
  background: #fff;
}

.gallery-stage {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  min-height: 0;
  padding: 18px;
  gap: 12px;
}

.gallery-frame {
  display: grid;
  min-height: 360px;
  max-height: 560px;
  place-items: center;
  background: #111;
  overflow: hidden;
}

.gallery-empty .gallery-frame {
  background: #f7f4ef;
}

.gallery-empty-state {
  display: grid;
  width: 100%;
  min-height: 360px;
  place-items: center;
  color: var(--muted);
  font-size: 20px;
  text-align: center;
  padding: 32px;
}

.gallery-frame img,
.gallery-frame video {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: contain;
  display: block;
}

.gallery-nav {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.gallery-empty .gallery-nav {
  visibility: hidden;
}

.gallery-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 22px 22px;
}

.gallery-thumb {
  position: relative;
  flex: 0 0 94px;
  height: 70px;
  border: 2px solid transparent;
  background: #fff;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
}

.gallery-thumb.active {
  border-color: var(--gold);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumb-video {
  position: absolute;
  z-index: 1;
  top: 5px;
  left: 5px;
  background: rgba(38, 35, 32, 0.86);
  color: #fffaf2;
  padding: 2px 4px;
  font-size: 10px;
  font-weight: 700;
}

.inquiry {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: start;
  padding-bottom: 92px;
  scroll-margin-top: 90px;
}

.selected-box {
  margin-top: 18px;
  padding: 24px;
  background: var(--charcoal);
  color: #fffaf2;
}

.selected-box span {
  color: rgba(255, 250, 242, 0.64);
  font-size: 13px;
}

.selected-box strong {
  display: block;
  margin: 8px 0;
  font-size: 32px;
}

.selected-box p {
  margin-bottom: 0;
  color: rgba(255, 250, 242, 0.76);
}

.cart-lines {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.cart-line {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 38px;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(255, 250, 242, 0.18);
  background: rgba(255, 250, 242, 0.08);
}

.cart-line img {
  width: 72px;
  aspect-ratio: 1;
  object-fit: contain;
  background: #fff;
}

.cart-line-main {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.cart-line-main strong {
  margin: 0;
  color: #fffaf2;
  font-size: 14px;
  line-height: 1.35;
}

.cart-line-main > span {
  color: rgba(255, 250, 242, 0.68);
  font-size: 12px;
  line-height: 1.35;
}

.cart-line-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px;
  gap: 8px;
}

.cart-line label {
  display: grid;
  gap: 4px;
  color: rgba(255, 250, 242, 0.68);
  font-size: 11px;
  font-weight: 700;
}

.cart-line input,
.cart-line select {
  width: 100%;
  min-height: 34px;
  border: 1px solid rgba(255, 250, 242, 0.22);
  background: rgba(255, 250, 242, 0.96);
  color: var(--ink);
  padding: 7px 9px;
  outline: none;
}

.cart-remove {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 250, 242, 0.22);
  background: rgba(255, 250, 242, 0.08);
  color: #fffaf2;
  cursor: pointer;
}

.contact-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: stretch;
  margin-top: 24px;
  padding: 26px 28px;
  border: 2px solid var(--gold);
  background: var(--charcoal);
  color: #fffaf2;
  box-shadow: var(--shadow);
}

.contact-main {
  display: grid;
  gap: 10px;
  align-content: center;
}

.contact-main > span {
  color: rgba(255, 250, 242, 0.68);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-box a,
.contact-box strong {
  color: #fffaf2;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 700;
  text-decoration: none;
  line-height: 1.25;
}

.contact-box p {
  margin: 0;
  color: rgba(255, 250, 242, 0.72);
  font-size: 17px;
}

.contact-box p a {
  color: #fffaf2;
  font-size: 17px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.contact-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  border: 1px solid rgba(255, 250, 242, 0.34);
  background: rgba(255, 250, 242, 0.08);
  color: #fffaf2;
  padding: 0 13px;
  font-size: 14px;
  font-weight: 800;
}

.qr-slots {
  display: grid;
  grid-template-columns: repeat(2, 112px);
  gap: 12px;
}

.qr-slot {
  display: grid;
  min-height: 132px;
  place-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 250, 242, 0.24);
  background: rgba(255, 250, 242, 0.08);
  padding: 8px;
  color: rgba(255, 250, 242, 0.72);
  text-align: center;
  cursor: zoom-in;
}

.qr-slot:hover,
.qr-slot:focus-visible {
  border-color: var(--gold);
  background: rgba(255, 250, 242, 0.14);
  outline: none;
}

.qr-slot img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fff;
}

.qr-slot span {
  max-width: 82px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.floating-inquiry {
  position: fixed;
  z-index: 30;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 30px);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 232px;
  border: 1px solid rgba(168, 132, 82, 0.64);
  background: rgba(38, 35, 32, 0.94);
  color: #fffaf2;
  padding: 13px 16px;
  box-shadow: 0 16px 40px rgba(18, 16, 14, 0.28);
  backdrop-filter: blur(16px);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.floating-inquiry:hover {
  transform: translateY(-2px);
}

.floating-inquiry.has-selected {
  background: var(--sage);
  border-color: rgba(255, 250, 242, 0.42);
}

.floating-inquiry > svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
}

.floating-inquiry span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.floating-inquiry strong,
.floating-inquiry small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.floating-inquiry strong {
  font-size: 15px;
  line-height: 1.2;
}

.floating-inquiry small {
  color: rgba(255, 250, 242, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.qa-widget {
  position: fixed;
  z-index: 31;
  left: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 30px);
  width: min(360px, calc(100vw - 32px));
  touch-action: none;
}

.qa-launcher {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  border: 2px solid rgba(168, 132, 82, 0.82);
  background: var(--charcoal);
  color: #fffaf2;
  padding: 0 20px;
  box-shadow: 0 18px 44px rgba(38, 35, 32, 0.28);
  backdrop-filter: blur(16px);
  cursor: pointer;
  font-size: 19px;
  font-weight: 900;
  animation: qaPulse 2.8s ease-in-out infinite;
}

.qa-launcher svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.qa-launcher:hover {
  transform: translateY(-2px);
}

.qa-panel {
  position: relative;
  display: grid;
  gap: 0;
  width: 100%;
  max-height: min(620px, calc(100vh - 120px));
  border: 1px solid rgba(38, 35, 32, 0.18);
  background: #fffdf8;
  box-shadow: 0 22px 60px rgba(18, 16, 14, 0.24);
  overflow: hidden;
  resize: both;
}

.qa-drag-edge {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 42px;
  height: 12px;
  background: linear-gradient(90deg, rgba(168, 132, 82, 0.72), rgba(168, 132, 82, 0.12));
  cursor: move;
}

.qa-panel[hidden] {
  display: none;
}

.qa-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  background: var(--charcoal);
  color: #fffaf2;
  cursor: move;
  user-select: none;
  padding-top: 18px;
}

.qa-header span {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.qa-header strong {
  display: block;
  font-size: 16px;
}

.qa-close {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 250, 242, 0.28);
  background: transparent;
  color: #fffaf2;
  cursor: pointer;
}

.qa-messages {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 220px;
  max-height: 330px;
  overflow-y: auto;
  padding: 14px;
}

.qa-message {
  max-width: 88%;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.45;
  white-space: pre-line;
}

.qa-message-bot {
  justify-self: start;
  border: 1px solid var(--line);
  background: #fbfaf7;
  color: var(--ink);
}

.qa-message-user {
  justify-self: end;
  background: var(--charcoal);
  color: #fffaf2;
}

.qa-suggestions {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 0 14px 12px;
  scrollbar-width: none;
}

.qa-suggestions::-webkit-scrollbar {
  display: none;
}

.qa-suggestions button {
  flex: 0 0 auto;
  min-height: 32px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  padding: 0 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.qa-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.qa-form input {
  min-width: 0;
  border: 1px solid var(--line);
  background: #fbfaf7;
  padding: 0 12px;
  outline: none;
}

.qa-form input:focus {
  border-color: var(--gold);
  background: #fff;
}

.qa-form button {
  display: grid;
  min-height: 40px;
  place-items: center;
  border: 1px solid var(--charcoal);
  background: var(--charcoal);
  color: #fffaf2;
  cursor: pointer;
}

@keyframes qaPulse {
  0%,
  100% {
    box-shadow: 0 18px 44px rgba(38, 35, 32, 0.28);
  }

  50% {
    box-shadow: 0 18px 44px rgba(38, 35, 32, 0.28), 0 0 0 6px rgba(168, 132, 82, 0.16);
  }
}

.inquiry-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fbfaf7;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--gold);
  background: #fff;
}

.form-submit {
  width: 100%;
}

.inquiry-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.secondary-form-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid var(--charcoal);
  background: #fff;
  color: var(--charcoal);
  cursor: pointer;
  font-weight: 800;
}

.form-note {
  min-height: 24px;
  margin: 0;
  font-size: 14px;
}

.mobile-tabbar {
  display: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer > div,
.geo-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
}

.geo-footer-links {
  justify-content: flex-end;
  font-size: 13px;
}

.geo-footer-links a {
  color: var(--muted);
}

svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

@media (max-width: 1080px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-grid[data-columns="5"] .product-body,
  .product-grid[data-columns="6"] .product-body {
    gap: 10px;
    padding: 14px;
  }

  .product-grid[data-columns="5"] .product-heading,
  .product-grid[data-columns="6"] .product-heading {
    min-height: 0;
  }

  .product-grid[data-columns="5"] .product-visual,
  .product-grid[data-columns="5"] .product-visual.has-image,
  .product-grid[data-columns="5"] .product-visual img,
  .product-grid[data-columns="6"] .product-visual,
  .product-grid[data-columns="6"] .product-visual.has-image,
  .product-grid[data-columns="6"] .product-visual img {
    min-height: 190px;
  }

  .product-grid[data-columns="6"] .product-description {
    -webkit-line-clamp: 2;
  }

  .geo-landing-hero,
  .geo-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-layout-picker {
    display: none;
  }

  .catalog-tools {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 1500px) {
  .floating-filter-summary {
    top: auto;
    right: 16px;
    bottom: 24px;
    left: auto;
    width: 148px;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: sticky;
    gap: 10px;
    padding: 10px 12px;
    justify-content: space-between;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
  }

  .update-notice {
    top: 72px;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
  }

  .update-notice-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .nav-links {
    display: none;
  }

  .language-switch {
    margin-left: 0;
  }

  .region-switch {
    min-height: 34px;
    padding: 0 7px;
  }

  .region-switch select {
    max-width: 104px;
    font-size: 11px;
  }

  .geo-banner {
    top: 57px;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    padding: 10px 12px;
  }

  .geo-banner-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .lang-button {
    min-height: 34px;
    padding: 0 8px;
    font-size: 11px;
  }

  .header-action {
    display: none;
  }

  .hero {
    min-height: 82vh;
    padding-top: 80px;
    overflow-x: hidden;
  }

  .hero-content {
    width: 100%;
    max-width: calc(100vw - 36px);
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(40px, 13vw, 54px);
  }

  .hero-copy,
  .hero-actions,
  .hero-actions a {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(18, 16, 14, 0.86), rgba(18, 16, 14, 0.44));
  }

  .product-grid,
  .service-grid,
  .media-grid,
  .faq-grid,
  .geo-landing-hero,
  .geo-info-grid,
  .intro,
  .market-advantages,
  .inquiry {
    grid-template-columns: 1fr;
  }

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

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .filter-bar {
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
  }

  .filter-row {
    justify-content: flex-start;
  }

  .catalog-tools {
    top: 64px;
    margin-left: -8px;
    margin-right: -8px;
    padding: 12px;
  }

  .catalog-search-row {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .floating-filter-summary {
    top: auto;
    right: auto;
    bottom: 78px;
    left: 9px;
    width: calc(100vw - 18px);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px;
    transform: translateY(14px);
  }

  .floating-filter-summary.visible {
    transform: translateY(0);
  }

  .floating-filter-summary strong {
    font-size: 14px;
  }

  .floating-filter-actions {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .floating-filter-actions::-webkit-scrollbar {
    display: none;
  }

  .floating-filter-actions button {
    flex: 0 0 auto;
  }

  .search-box {
    flex-basis: auto;
    width: 100%;
  }

  .contact-box {
    grid-template-columns: 1fr;
  }

  .contact-actions a {
    flex: 1 1 140px;
    justify-content: center;
  }

  .qr-slots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #resultCount {
    white-space: normal;
  }

  .geo-product,
  .geo-card-grid,
  .geo-zh-hero,
  .geo-faq-grid,
  .geo-zh-cta {
    grid-template-columns: 1fr;
  }

  .geo-zh-hero aside,
  .geo-faq-grid article,
  .geo-zh-cta {
    padding: 20px;
  }

  .geo-zh-cta .primary-button {
    width: 100%;
  }

  .geo-footer-links {
    justify-content: flex-start;
  }

  body {
    padding-bottom: 82px;
  }

  .mobile-tabbar {
    position: fixed;
    z-index: 32;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    min-height: 72px;
    border-top: 1px solid rgba(221, 215, 207, 0.92);
    background: rgba(255, 253, 248, 0.97);
    box-shadow: 0 -10px 28px rgba(38, 35, 32, 0.12);
    backdrop-filter: blur(18px);
  }

  .mobile-tabbar a {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 3px;
    color: var(--charcoal);
    min-width: 0;
    padding: 8px 3px calc(8px + env(safe-area-inset-bottom));
    font-size: 10px;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
  }

  .mobile-tabbar svg {
    width: 19px;
    height: 19px;
  }

  .floating-inquiry {
    display: none;
  }

  .qa-widget {
    left: 10px;
    right: 10px;
    bottom: 84px;
    width: auto;
    touch-action: auto;
  }

  .qa-launcher {
    min-height: 52px;
    font-size: 17px;
  }

  .qa-panel {
    max-height: min(560px, calc(100vh - 112px));
    resize: none;
  }

  .qa-messages {
    min-height: 190px;
    max-height: 280px;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: auto;
    gap: 9px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .header-action {
    display: none;
  }

  .language-switch {
    position: absolute;
    top: 10px;
    right: 120px;
    flex: 0 0 auto;
    max-width: 132px;
  }

  .region-switch {
    position: absolute;
    top: 10px;
    right: 12px;
    max-width: 100px;
  }

  .region-switch svg {
    display: none;
  }

  .region-switch select {
    max-width: 84px;
  }

  .lang-button {
    min-width: 36px;
    padding: 0 7px;
  }

  .lang-button[data-lang="zh"] {
    min-width: 44px;
  }

  .hero {
    min-height: 78vh;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-content {
    width: 100%;
    max-width: calc(100vw - 36px);
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(40px, 13vw, 54px);
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-heading,
  .product-grid[data-columns="5"] .product-heading,
  .product-grid[data-columns="6"] .product-heading {
    min-height: 0;
  }

  .price-line,
  .product-grid[data-columns="6"] .price-line {
    min-height: 0;
  }

  .product-visual,
  .product-visual.has-image,
  .product-visual img {
    min-height: 196px;
  }

  .qr-slots {
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions a {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy,
  .hero-actions {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .gallery-stage {
    grid-template-columns: 1fr;
  }

  .gallery-nav {
    display: none;
  }

  .gallery-frame {
    min-height: 280px;
  }

  .site-footer {
    flex-direction: column;
    padding-bottom: 24px;
  }

  .cart-line {
    grid-template-columns: 58px minmax(0, 1fr) 34px;
    gap: 10px;
  }

  .cart-line img {
    width: 58px;
  }

  .cart-line-controls,
  .inquiry-actions {
    grid-template-columns: 1fr;
  }
}
