:root {
  --bg: #f7f8fb;
  --panel: rgba(255, 255, 255, 0.78);
  --panel-strong: #ffffff;
  --text: #111318;
  --muted: #626977;
  --border: rgba(17, 19, 24, 0.08);
  --border-strong: rgba(17, 19, 24, 0.16);
  --accent: #f15a4a;
  --accent-2: #00a88f;
  --accent-3: #f7c948;
  --ink: #101820;
  --shadow: 0 20px 60px rgba(16, 24, 32, 0.08);
  --shadow-strong: 0 24px 74px rgba(16, 24, 32, 0.14);
  --frame-gradient: linear-gradient(145deg, rgba(241, 90, 74, 0.34), rgba(255, 255, 255, 0.92) 34%, rgba(0, 168, 143, 0.18));
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(0, 168, 143, 0.12), transparent 24%),
    radial-gradient(circle at 84% 0%, rgba(241, 90, 74, 0.14), transparent 22%),
    linear-gradient(180deg, #fbfcff 0%, #f3f6f9 100%);
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(22, 21, 19, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.65;
}

a { color: inherit; text-decoration: none; }
button,
input {
  font: inherit;
}

.site-shell {
  width: min(1380px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 56px;
}

.announcement-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 42px;
  margin-bottom: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, var(--ink), #202a34 55%, #0f6c65);
  box-shadow: var(--shadow);
  font-size: 0.92rem;
}

.announcement-bar a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(145deg, var(--ink), #0f6c65);
  font-weight: 900;
  letter-spacing: 0.06em;
}

.brand-name {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-sub {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.88rem;
}

.nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  flex-wrap: wrap;
}

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

.lang-switch {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
}

.lang-btn {
  min-height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.lang-btn.active {
  color: #fff;
  background: linear-gradient(135deg, var(--ink), var(--accent));
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px 0 20px;
}

.hero-copy {
  padding: 8px 6px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(241, 90, 74, 0.18);
  background: rgba(241, 90, 74, 0.08);
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.contact-card h2,
.detail-head h1 {
  margin: 14px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: 0.98;
  max-width: 11ch;
}

.hero p,
.sidebar-note p,
.contact-card p,
.detail-summary,
.catalog-tools input,
.aside-card p,
.detail-breadcrumb,
.catalog-summary,
.detail-meta,
.related-item span {
  color: var(--muted);
  line-height: 1.75;
}

.hero p {
  margin: 18px 0 0;
  max-width: 62ch;
  font-size: 1.04rem;
}

.hero-actions,
.contact-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--ink), var(--accent));
}

.btn-secondary {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.76);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-pills span,
.meta-chip,
.chip,
.viewer-note {
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.76);
}

.hero-pills span {
  padding: 9px 13px;
  color: var(--muted);
}

.hero-visual {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 14px;
  min-height: 640px;
}

.hero-visual-main,
.hero-visual-stack img,
.card-media,
.main-shot,
.aside-card,
.contact-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}

.hero-visual-main {
  min-height: 100%;
}

.hero-visual-main img,
.hero-visual-stack img {
  transition: opacity 0.35s ease, transform 0.55s ease;
}

.hero-visual-main:hover img,
.hero-visual-stack img:hover {
  transform: scale(1.025);
}

.hero-visual-main img,
.hero-visual-stack img,
.card-media img,
.main-shot img,
.gallery-item img,
.thumb img,
.related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #fff;
}

.hero-visual-stack {
  display: grid;
  gap: 14px;
}

.featured-strip,
.promo-section,
.category-showcase,
.catalog-section,
.contact-section,
.detail-page {
  margin-top: 56px;
}

.promo-section {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 18px;
}

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

.promo-banner {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  background: var(--ink);
  box-shadow: var(--shadow-strong);
  isolation: isolate;
}

.promo-banner-large {
  min-height: 538px;
}

.promo-link,
.promo-link img,
.promo-shade,
.promo-copy {
  position: absolute;
  inset: 0;
}

.promo-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 28px;
  background:
    radial-gradient(circle at 75% 25%, rgba(247, 201, 72, 0.2), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #f5f8fb 100%);
  transition: transform 0.45s ease;
}

.promo-banner:hover img {
  transform: scale(1.04);
}

.promo-shade {
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.88) 0%, rgba(16, 24, 32, 0.52) 42%, rgba(16, 24, 32, 0.08) 100%),
    linear-gradient(0deg, rgba(16, 24, 32, 0.5), transparent 44%);
  z-index: 1;
}

.promo-copy {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: end;
  max-width: 68%;
  padding: 30px;
  color: #fff;
}

.promo-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 3.5rem);
  line-height: 1;
}

.promo-copy em {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  line-height: 1.65;
}

.promo-copy b {
  width: fit-content;
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
}

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

.section-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.section-head h2 {
  font-size: clamp(1.7rem, 2.6vw, 3rem);
}

.section-head p {
  margin: 0;
  max-width: 58ch;
}

.featured-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(250px, 26vw, 340px);
  grid-template-rows: 1fr;
  gap: 16px;
  width: max-content;
  min-width: 100%;
}

.featured-carousel {
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.featured-carousel::-webkit-scrollbar {
  height: 10px;
}

.featured-carousel::-webkit-scrollbar-thumb {
  background: rgba(154, 91, 65, 0.24);
  border-radius: 999px;
}

.featured-caption {
  margin: -2px 0 14px;
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.75;
}

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

.series-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)) padding-box,
    var(--frame-gradient) border-box;
  box-shadow: var(--shadow);
  cursor: pointer;
  text-align: left;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.series-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

.series-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 22px;
  object-fit: contain;
  opacity: 0.72;
  transform: translateX(18%);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.series-card:hover img {
  opacity: 0.9;
  transform: translateX(12%) scale(1.04);
}

.series-card span {
  position: absolute;
  inset: auto 16px 16px 16px;
  z-index: 1;
  display: grid;
  gap: 6px;
}

.series-card strong {
  max-width: 72%;
  font-size: 1.08rem;
}

.series-card em {
  color: var(--muted);
  font-style: normal;
}

.series-card b {
  width: fit-content;
  margin-top: 6px;
  color: var(--accent);
}

.carousel-btn {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  color: var(--text);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.carousel-btn:hover {
  transform: translateY(-1px);
  background: #fff;
  box-shadow: var(--shadow-strong);
}

.featured-card {
  position: relative;
  scroll-snap-align: start;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid transparent;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.82)) padding-box,
    var(--frame-gradient) border-box;
  box-shadow: var(--shadow-strong);
}

.featured-card .card-media {
  aspect-ratio: 1 / 1;
  border-radius: 0;
  box-shadow: none;
  border: 0;
  scroll-snap-align: start;
}

.featured-card .card-body {
  padding: 16px 16px 18px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.catalog-sidebar {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 96px;
}

.sidebar-card,
.aside-card {
  position: relative;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid transparent;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84)) padding-box,
    linear-gradient(145deg, rgba(154, 91, 65, 0.22), rgba(255, 255, 255, 0.88) 40%, rgba(199, 159, 111, 0.16)) border-box;
  box-shadow: var(--shadow-strong);
}

.sidebar-card h3,
.aside-title {
  margin: 0 0 14px;
  font-size: 1rem;
  font-weight: 800;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  min-height: 42px;
  padding: 0 16px;
  color: var(--muted);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.chip.active {
  color: #fff;
  background: linear-gradient(135deg, var(--ink), var(--accent-2));
  border-color: transparent;
}

.chip:hover {
  transform: translateY(-1px);
  border-color: rgba(154, 91, 65, 0.2);
  color: var(--text);
}

.catalog-tools {
  flex: 0 0 min(420px, 100%);
}

.catalog-tools input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.82);
  outline: none;
}

.catalog-tools input:focus {
  border-color: rgba(241, 90, 74, 0.38);
  box-shadow: 0 0 0 4px rgba(241, 90, 74, 0.08);
}

.catalog-summary {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}

.catalog-summary span:first-child {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}

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

.product-card {
  display: block;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid transparent;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.84)) padding-box,
    var(--frame-gradient) border-box;
  box-shadow: var(--shadow-strong);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 84px rgba(56, 38, 22, 0.16);
}

.card-media {
  aspect-ratio: 1 / 1.04;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  background: #fff;
}

.card-body {
  padding: 16px 16px 18px;
}

.card-body h3 {
  margin: 0;
  font-size: 1rem;
}

.card-body p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.93rem;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.meta-chip {
  padding: 7px 10px;
  color: var(--muted);
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.82);
}

.card-link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.card-link-row span {
  color: var(--accent);
  font-weight: 700;
}

.featured-link {
  color: var(--accent);
  font-weight: 700;
}

.contact-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: center;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid transparent;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.84)) padding-box,
    linear-gradient(145deg, rgba(154, 91, 65, 0.24), rgba(255, 255, 255, 0.92) 35%, rgba(199, 159, 111, 0.18)) border-box;
  box-shadow: var(--shadow-strong);
}

.detail-breadcrumb {
  margin-bottom: 12px;
  font-size: 0.92rem;
}

.detail-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.detail-head h1 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.98;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  gap: 18px;
  align-items: start;
}

.detail-gallery {
  display: grid;
  gap: 16px;
}

.main-shot {
  aspect-ratio: 1 / 1;
  border: 1px solid transparent;
  background:
    linear-gradient(180deg, #fff 0%, #f8f6f1 100%) padding-box,
    var(--frame-gradient) border-box;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.thumb {
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 246, 241, 0.96)) padding-box,
    linear-gradient(145deg, rgba(154, 91, 65, 0.22), rgba(255, 255, 255, 0.92) 38%, rgba(199, 159, 111, 0.15)) border-box;
  cursor: pointer;
  overflow: hidden;
}

.thumb.active {
  border-color: transparent;
  box-shadow: 0 0 0 3px rgba(154, 91, 65, 0.08);
}

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

.gallery-item {
  aspect-ratio: 1 / 1;
  border: 1px solid transparent;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 246, 241, 0.96)) padding-box,
    linear-gradient(145deg, rgba(154, 91, 65, 0.22), rgba(255, 255, 255, 0.92) 38%, rgba(199, 159, 111, 0.15)) border-box;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
}

.detail-aside {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 96px;
}

.info-list {
  display: grid;
  gap: 14px;
}

.info-list span {
  display: block;
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 4px;
}

.info-list strong {
  font-size: 1.03rem;
}

.related-list {
  display: grid;
  gap: 12px;
}

.related-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)) padding-box,
    linear-gradient(145deg, rgba(154, 91, 65, 0.16), rgba(255, 255, 255, 0.92) 42%, rgba(199, 159, 111, 0.12)) border-box;
}

.related-thumb {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.related-item strong {
  display: block;
  margin-bottom: 4px;
}

.reveal,
.promo-banner,
.series-card {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible,
.promo-banner.is-visible,
.series-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.empty-state {
  padding: 26px;
  border: 1px dashed var(--border-strong);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
}

@media (max-width: 1220px) {
  .hero,
  .promo-section,
  .detail-layout,
  .catalog-layout,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .catalog-sidebar,
  .detail-aside {
    position: static;
  }

  .hero-visual {
    min-height: 560px;
  }

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

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

  .featured-grid {
    grid-auto-columns: minmax(240px, 72vw);
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 18px, 1380px);
    padding-top: 10px;
  }

  .topbar {
    top: 8px;
    flex-direction: column;
    align-items: flex-start;
  }

  .announcement-bar {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 18px;
  }

  .hero {
    gap: 18px;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-visual,
  .product-grid,
  .angle-grid {
    grid-template-columns: 1fr;
  }

  .featured-grid {
    grid-auto-columns: minmax(220px, 84vw);
  }

  .hero-visual {
    min-height: 500px;
  }

  .promo-banner,
  .promo-banner-large {
    min-height: 380px;
  }

  .promo-copy {
    max-width: 100%;
    padding: 24px;
  }

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

  .section-head,
  .detail-head {
    align-items: start;
    flex-direction: column;
  }

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

  .catalog-summary {
    flex-wrap: wrap;
  }
}

/* Final storefront overrides: keep the homepage compact and commerce-led. */
.site-shell { max-width: 1360px; }
.topbar { position: relative; padding: 14px 20px; border-radius: 0; }
.topbar .nav { gap: 18px; font-size: .8rem; }
.commerce-tools { padding: 12px 0 7px; }
.category-rail { padding: 7px 12px 12px; background: #fff; }
.campaign-banner { margin: 18px 0 30px; min-height: 260px; border-radius: 0; }
.campaign-copy { padding: 30px 38px; }
.campaign-copy h2 { font-size: clamp(2.15rem, 4vw, 4rem); }
.hero { min-height: 440px; margin-top: 0; padding: 30px; border-radius: 0; box-shadow: none; }
.hero-copy { max-width: 580px; }
.hero h1 { font-size: clamp(2.1rem, 4vw, 4.4rem); }
.hero-visual { min-height: 400px; }
.hero-visual-main { min-height: 400px; border-radius: 10px; }
.hero-visual-stack img { min-height: 194px; border-radius: 10px; }
.featured-strip { margin-top: 42px; }
.featured-grid { grid-auto-columns: minmax(180px, 1fr); }
.featured-card { border-radius: 0; box-shadow: none; border: 1px solid #eee7ef; }
.featured-card .card-body { padding: 11px 12px 14px; }
.featured-card .meta-row, .featured-card .card-link-row { margin-top: 8px; }
.deal-section, .shop-category-section { margin: 42px 0; }
.trust-band { margin-top: 26px; border-radius: 0; }
.catalog-section { margin-top: 48px; }
.catalog-sidebar { top: 12px; }
.product-card { border-radius: 0; box-shadow: 0 7px 18px rgba(64, 25, 75, .07); }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 18px 32px rgba(64, 25, 75, .14); }
.card-media { background: #fbf5ff; }
.shop-category-card span { left: 12px; bottom: 28px; max-width: 62%; padding: 4px 7px; border-radius: 5px; background: rgba(255,255,255,.82); font-size: .82rem; line-height: 1.15; }
.shop-category-card small { left: 12px; bottom: 10px; padding: 2px 5px; border-radius: 4px; background: rgba(255,255,255,.72); font-size: .6rem; }
.featured-strip { margin-top: 28px; }
.featured-grid { grid-auto-columns: clamp(180px, 18vw, 230px); gap: 12px; }
.featured-card .card-media { aspect-ratio: 1.18 / 1; }
.featured-card .card-body { padding: 10px 12px 12px; }
.featured-caption { margin-bottom: 9px; line-height: 1.45; font-size: .84rem; }
.featured-card .card-body p { margin-top: 4px; font-size: .78rem; }
.featured-card .meta-row { gap: 5px; margin-top: 7px; }
.featured-card .meta-chip { padding: 5px 7px; font-size: .68rem; }
.featured-card .card-link-row { margin-top: 8px; font-size: .78rem; }
.featured-strip { position: relative; margin: 34px 0 58px; padding: 30px 42px 22px; background: #fff; }
.featured-strip .section-head { display: block; margin-bottom: 26px; text-align: center; }
.featured-strip .section-head .eyebrow { display: inline-block; color: #19151a; font-size: 1.45rem; font-weight: 800; letter-spacing: 0; text-transform: none; }
.featured-strip .section-head .eyebrow::after { content: ''; display: block; width: 100px; height: 2px; margin: 10px auto 0; background: #bbb; }
.featured-strip .section-head h2 { display: none; }
.featured-caption { display: none; }
.featured-carousel { overflow: hidden; padding: 0 0 5px; }
.featured-grid { grid-auto-columns: clamp(260px, 28vw, 360px); gap: 38px; justify-content: center; }
.featured-card { border: 1px solid #ddd; border-radius: 0; box-shadow: none; background: #fff; }
.featured-card .card-media { aspect-ratio: 1 / 1; background: #fff; }
.featured-card .card-body { padding: 11px 14px 16px; text-align: center; }
.featured-card .card-body h3 { font-size: .9rem; font-weight: 500; }
.featured-card .card-body p, .featured-card .meta-row, .featured-card .card-link-row { display: none; }
.featured-strip .section-actions { position: absolute; inset: 47% -2px auto; display: flex; justify-content: space-between; width: calc(100% + 4px); transform: translateY(-50%); pointer-events: none; }
.featured-strip .section-actions .carousel-btn { width: 44px; height: 64px; border: 0; border-radius: 0; box-shadow: none; background: transparent; color: #222; font-size: 3.5rem; pointer-events: auto; }
.featured-strip .section-actions .carousel-btn:hover { color: #ed2875; background: transparent; }
body { background: #fff; }
body::before { display: none; }
.site-shell, main, .featured-strip, .catalog-section, .contact-section, .deal-section, .shop-category-section { background: #fff; }
.hero { background: #fff; }
.catalog-sidebar .sidebar-card, .catalog-main, .contact-card { background-color: #fff; }
@media (max-width: 760px) { .featured-strip { padding: 24px 12px 16px; } .featured-grid { justify-content: start; gap: 14px; } .featured-strip .section-actions { inset: 46% -7px auto; } .featured-strip .section-actions .carousel-btn { font-size: 2.5rem; } }
.poster-showcase { margin: 18px 0 22px; }
.poster-track { aspect-ratio: 2.45 / 1; }
.campaign-banner { min-height: 172px; margin: 0 0 28px; grid-template-columns: .7fr 1.3fr; }
.campaign-copy { padding: 20px 28px; }
.campaign-copy h2 { margin: 7px 0 4px; font-size: clamp(1.65rem, 3vw, 2.8rem); }
.campaign-copy p { margin: 5px 0 13px; font-size: .82rem; }
.campaign-button { padding: 9px 16px; font-size: .72rem; }
.campaign-products { padding: 8px; }
.campaign-products img { transform: scale(1.42); }
.campaign-products a:first-child img { transform: scale(1.52); }
.campaign-products a:hover img { transform: scale(1.58); }
.campaign-products a:first-child:hover img { transform: scale(1.68); }
@media (max-width: 760px) { .poster-track { aspect-ratio: 1.7 / 1; } .campaign-banner { min-height: 152px; } .campaign-copy { padding: 18px; } }
.brand-mark { display: grid; place-items: center; overflow: hidden; padding: 5px; background: #fbf7f9; }
.brand-mark img { display: block; width: 100%; height: 100%; object-fit: cover; }

.poster-showcase { position: relative; margin: 0 0 34px; overflow: hidden; background: #111; box-shadow: 0 18px 50px rgba(25, 13, 28, .15); }
.poster-track { position: relative; width: 100%; aspect-ratio: 2.05 / 1; }
.poster-slide { position: absolute; inset: 0; display: block; opacity: 0; visibility: hidden; transition: opacity .55s ease, transform .55s ease; transform: scale(1.02); }
.poster-slide.active { opacity: 1; visibility: visible; transform: scale(1); }
.poster-slide img { display: block; width: 100%; height: 100%; object-fit: cover; }
.poster-arrow { position: absolute; top: 50%; z-index: 2; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; color: #fff; background: rgba(0,0,0,.35); cursor: pointer; transform: translateY(-50%); font-size: 2rem; line-height: 1; }
.poster-arrow:hover { background: rgba(237,40,117,.9); }
.poster-prev { left: 18px; }
.poster-next { right: 18px; }
.poster-dots { position: absolute; right: 24px; bottom: 18px; z-index: 2; display: flex; gap: 7px; }
.poster-dots button { width: 26px; height: 4px; padding: 0; border: 0; border-radius: 8px; background: rgba(255,255,255,.5); cursor: pointer; }
.poster-dots button.active { background: #fff; }
@media (max-width: 760px) { .poster-track { aspect-ratio: 1.35 / 1; } .poster-slide img { object-fit: cover; } .poster-arrow { width: 34px; height: 34px; font-size: 1.55rem; } }
@media (max-width: 760px) {
  .topbar { padding: 12px; }
  .topbar .nav { gap: 10px; font-size: .72rem; }
  .hero { padding: 18px; }
  .hero-visual { min-height: 330px; }
  .hero-visual-main { min-height: 330px; }
}

/* Premium storefront treatment inspired by colourful editorial ecommerce layouts. */
:root { --store-pink: #ed2875; --store-purple: #8b45dd; --store-cream: #fffafc; }
body { background: #fff; }
body::before { opacity: .18; background-size: 32px 32px; }
.site-shell { width: min(1440px, calc(100% - 42px)); padding-top: 12px; }
.commerce-notice { margin: -12px 0 10px; border-radius: 0; background: linear-gradient(90deg, #7c38da, #b046d8 55%, #ef3073); font-size: .72rem; }
.topbar { background: #fff; border-color: rgba(24, 18, 30, .1); box-shadow: 0 8px 24px rgba(50, 20, 70, .05); }
.brand-mark { background: linear-gradient(145deg, #1d1720, #762d68); }
.commerce-search { border-radius: 999px; }
.search-submit { border-radius: 999px; background: #1e1720; }
.category-rail { border-bottom-color: rgba(24, 18, 30, .16); }
.campaign-banner { display: grid; grid-template-columns: .8fr 1.2fr; min-height: 330px; margin: 28px 0 42px; overflow: hidden; border-radius: 4px; background: linear-gradient(105deg, #f52d74, #c833ad 55%, #8144dc); color: #fff; }
.campaign-copy { display: flex; flex-direction: column; justify-content: center; padding: 42px 50px; }
.campaign-kicker { font-size: .7rem; font-weight: 800; letter-spacing: .15em; opacity: .9; }
.campaign-copy h2 { margin: 12px 0 8px; color: #fff; font-family: Georgia, serif; font-size: clamp(2.5rem, 5vw, 4.8rem); line-height: .9; }
.campaign-copy h2 em { color: #ffd5e7; font-style: normal; }
.campaign-copy p { max-width: 290px; margin: 12px 0 24px; color: rgba(255,255,255,.84); line-height: 1.55; }
.campaign-button { width: fit-content; padding: 12px 22px; border-radius: 999px; background: #fff; color: #211521; font-size: .82rem; font-weight: 800; }
.campaign-products { display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: 1fr 1fr; gap: 9px; padding: 12px; background: rgba(255,255,255,.12); }
.campaign-products a { overflow: hidden; background: #fff; }
.campaign-products a:first-child { grid-row: 1 / 3; }
.campaign-products img { width: 100%; height: 100%; object-fit: contain; transition: transform .45s ease; }
.campaign-products a:hover img { transform: scale(1.08); }
.hero { margin-top: 0; background: linear-gradient(110deg, #fff6fa 0%, #fff 52%, #f1eaff 100%); border-color: rgba(139,69,221,.14); }
.hero h1 { font-family: Georgia, "Times New Roman", serif; letter-spacing: -.04em; }
.hero .eyebrow, .storefront-heading > span { color: var(--store-pink); letter-spacing: .13em; }
.btn-primary { background: linear-gradient(90deg, #e62d73, #8d43d8); }
.deal-section, .shop-category-section { margin: 64px 0; }
.storefront-heading { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.storefront-heading > span { font-size: .72rem; font-weight: 800; }
.storefront-heading h2 { margin: 0; color: #161118; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 4vw, 3.2rem); line-height: .95; }
.storefront-heading h2 b { color: var(--store-pink); font-weight: 700; }
.deal-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.deal-card { position: relative; overflow: hidden; border: 1px solid #eee7ef; background: #fff; transition: transform .22s ease, box-shadow .22s ease; }
.deal-card:hover { transform: translateY(-5px); box-shadow: 0 18px 36px rgba(64, 25, 75, .13); }
.deal-badge { position: absolute; z-index: 1; top: 8px; left: 8px; padding: 4px 7px; border-radius: 3px; background: var(--store-pink); color: #fff; font-size: .58rem; font-weight: 800; }
.deal-media { aspect-ratio: 1 / 1; background: #f8f1ff; }
.deal-media img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.deal-info { display: grid; gap: 5px; padding: 12px; }
.deal-info strong { overflow: hidden; color: #1c151e; font-size: .82rem; text-overflow: ellipsis; white-space: nowrap; }
.deal-info span { color: #8a7c89; font-size: .7rem; }
.deal-info b { color: var(--store-pink); font-size: .8rem; }
.shop-category-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.shop-category-card { position: relative; min-height: 168px; overflow: hidden; border-radius: 14px; background: linear-gradient(135deg, #ffd8e8, #eee0ff); }
.shop-category-card:nth-child(2n) { background: linear-gradient(135deg, #e2ddff, #f5d8ee); }
.shop-category-card:nth-child(3n) { background: linear-gradient(135deg, #ffe0d8, #ffd1ea); }
.shop-category-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; transition: transform .4s ease; }
.shop-category-card:hover img { transform: scale(1.1) rotate(-2deg); }
.shop-category-card span, .shop-category-card small { position: absolute; left: 16px; z-index: 1; color: #171117; }
.shop-category-card span { bottom: 33px; font-size: 1.15rem; font-weight: 900; }
.shop-category-card span { left: 12px; bottom: 28px; max-width: 58%; padding: 3px 6px; border-radius: 4px; background: rgba(255,255,255,.84); font-size: .62rem; line-height: 1.1; font-weight: 700; }
.shop-category-card small { left: 12px; bottom: 10px; padding: 1px 4px; border-radius: 3px; background: rgba(255,255,255,.72); font-size: .5rem; }
.back-to-top { position: fixed; right: 22px; bottom: 22px; z-index: 20; width: 44px; height: 44px; border: 0; border-radius: 50%; color: #fff; background: #241b18; box-shadow: 0 10px 24px rgba(36,27,24,.2); cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; font-size: 1.35rem; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: #ed2875; }
.service-points { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 18px 0 34px; border-top: 1px solid #ebe4e8; border-bottom: 1px solid #ebe4e8; background: #fff; }
.service-points > div { display: grid; grid-template-columns: auto 1fr; column-gap: 10px; padding: 17px 18px; border-right: 1px solid #ebe4e8; }
.service-points > div:last-child { border-right: 0; }
.service-points strong { grid-row: span 2; align-self: center; color: #ed2875; font-size: 1.15rem; font-weight: 800; }
.service-points span { color: #241b24; font-size: .84rem; font-weight: 800; }
.service-points small { color: #857682; font-size: .68rem; }
@media (max-width: 760px) { .service-points { grid-template-columns: repeat(2, 1fr); } .service-points > div:nth-child(2) { border-right: 0; } .service-points > div:nth-child(-n+2) { border-bottom: 1px solid #ebe4e8; } }
@media (max-width: 760px) { .back-to-top { right: 14px; bottom: 14px; width: 40px; height: 40px; } }
.shop-category-card small { bottom: 14px; font-size: .68rem; }
.trust-band { background: #201b20; color: #fff; padding: 12px; }
.trust-band div { border: 0; background: transparent; }
.trust-band span { color: #d8cbd7; }
@media (max-width: 1000px) { .deal-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } .campaign-banner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 760px) { .site-shell { width: min(100% - 20px, 680px); } .campaign-banner { grid-template-columns: 1fr; } .campaign-copy { padding: 32px 24px; } .campaign-products { min-height: 230px; } .deal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .shop-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .trust-band { padding: 6px; } }

/* Commerce layer: a warm, editorial storefront rhythm for the factory catalog. */
.commerce-notice {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 18px;
  margin-bottom: 10px;
  border-radius: 10px;
  background: #241b18;
  color: #fff9f2;
  font-size: .76rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.commerce-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 16px 0 10px;
}

.commerce-search {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 8px 0 15px;
  border: 1px solid rgba(36, 27, 24, .14);
  border-radius: 12px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 10px 26px rgba(36, 27, 24, .06);
}

.commerce-search > span { color: #9a5b41; font-size: 1.5rem; line-height: 1; }
.commerce-search input { flex: 1; min-width: 0; border: 0; outline: 0; padding: 0 12px; color: var(--text); background: transparent; }
.search-submit { padding: 10px 16px; border-radius: 8px; background: #9a5b41; color: #fff; font-size: .85rem; font-weight: 700; }
.commerce-links { display: flex; align-items: center; gap: 18px; color: #4d403a; font-size: .86rem; font-weight: 700; }
.commerce-links a:hover, .category-rail a:hover { color: #9a5b41; }

.category-rail {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  padding: 8px 2px 18px;
  border-bottom: 1px solid rgba(36, 27, 24, .12);
  color: #4d403a;
  font-size: .87rem;
  font-weight: 700;
  white-space: nowrap;
}

.category-rail a:first-child { color: #9a5b41; }
.trust-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 30px 0 8px; }
.trust-band div { display: flex; align-items: center; gap: 12px; padding: 16px; border: 1px solid rgba(154, 91, 65, .16); border-radius: 14px; background: rgba(255, 255, 255, .55); }
.trust-band strong { color: #9a5b41; font-size: 1.2rem; }
.trust-band span { color: #665852; font-size: .82rem; line-height: 1.35; }
.product-card .card-media { position: relative; }
.product-card .card-media::after { content: '查看详情'; position: absolute; right: 12px; bottom: 12px; padding: 7px 9px; border-radius: 7px; background: rgba(36, 27, 24, .82); color: #fff; font-size: .63rem; opacity: 0; transform: translateY(5px); transition: .2s ease; }
.product-card:hover .card-media::after { opacity: 1; transform: translateY(0); }

@media (max-width: 760px) {
  .commerce-notice { align-items: flex-start; flex-direction: column; gap: 4px; font-size: .68rem; }
  .commerce-tools { grid-template-columns: 1fr; gap: 10px; }
  .commerce-links { justify-content: space-between; }
  .category-rail { gap: 18px; }
  .trust-band { grid-template-columns: repeat(2, 1fr); }
}

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

/* Return to the original refined warm showroom direction. */
:root {
  --bg: #f7f1e8;
  --panel: rgba(255, 255, 255, 0.78);
  --panel-strong: #ffffff;
  --text: #161513;
  --muted: #635f58;
  --border: rgba(22, 21, 19, 0.08);
  --border-strong: rgba(22, 21, 19, 0.16);
  --accent: #9a5b41;
  --accent-2: #c79f6f;
  --ink: #1d1816;
  --shadow: 0 20px 60px rgba(56, 38, 22, 0.08);
  --shadow-strong: 0 24px 74px rgba(56, 38, 22, 0.12);
  --frame-gradient: linear-gradient(145deg, rgba(154, 91, 65, 0.34), rgba(255, 255, 255, 0.92) 34%, rgba(199, 159, 111, 0.18));
}

body {
  background:
    radial-gradient(circle at 15% 10%, rgba(199, 159, 111, 0.16), transparent 24%),
    radial-gradient(circle at 85% 0%, rgba(154, 91, 65, 0.12), transparent 22%),
    linear-gradient(180deg, #fbf7f2 0%, #f4ece3 100%);
}

.brand-mark {
  background: linear-gradient(145deg, #1d1816, #6b4130);
}

.lang-btn.active,
.btn-primary {
  background: linear-gradient(135deg, #1d1816, #6b4130);
}

.eyebrow {
  border-color: rgba(154, 91, 65, 0.16);
  background: rgba(154, 91, 65, 0.08);
  color: var(--accent);
}

.chip.active {
  background: linear-gradient(135deg, #1d1816, #6b4130);
}

.catalog-tools input:focus {
  border-color: rgba(154, 91, 65, 0.38);
  box-shadow: 0 0 0 4px rgba(154, 91, 65, 0.08);
}

.hero {
  grid-template-columns: minmax(0, 0.88fr) minmax(620px, 1.12fr);
  gap: 38px;
  min-height: calc(100vh - 132px);
  padding: 28px 0 28px;
}

.hero h1 {
  font-size: clamp(3rem, 5.4vw, 5.9rem);
}

.hero-visual {
  position: relative;
  grid-template-columns: 1.5fr 0.72fr;
  gap: 16px;
  min-height: 720px;
}

.hero-visual-main,
.hero-visual-stack img {
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 48%, rgba(199, 159, 111, 0.08), transparent 38%),
    #fff;
}

.hero-visual-main img,
.hero-visual-stack img {
  object-fit: contain;
  will-change: transform, opacity;
}

.hero-visual-main img {
  transform: scale(1.28);
}

.hero-visual-stack img {
  transform: scale(1.34);
}

.hero-visual-main:hover img {
  transform: scale(1.32);
}

.hero-visual-stack img:hover {
  transform: scale(1.38);
}

.hero-visual.is-swapping .hero-visual-main img,
.hero-visual.is-swapping .hero-visual-stack img {
  opacity: 0;
  transform: scale(1.2);
}

.hero-carousel-controls {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-control,
.hero-dot {
  border: 0;
  cursor: pointer;
}

.hero-control {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #1d1816, #6b4130);
  font-size: 1.35rem;
  line-height: 1;
}

.hero-dots {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border-radius: 999px;
  background: rgba(99, 95, 88, 0.35);
}

.hero-dot.active {
  width: 24px;
  background: var(--accent);
}

.featured-strip {
  margin-top: 72px;
}

.promo-section,
.category-showcase,
.announcement-bar {
  display: none !important;
}

@media (max-width: 1220px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    min-height: 640px;
  }
}

@media (max-width: 760px) {
  .hero-visual {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual-main {
    min-height: 520px;
  }

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

  .hero-visual-stack img {
    min-height: 260px;
  }

  .hero-carousel-controls {
    right: 12px;
    bottom: 12px;
  }
}

/* Last-pass visual overrides */
.site-shell { max-width: 1360px; }
.topbar { position: relative; padding: 14px 20px; border-radius: 0; }
.topbar .nav { gap: 18px; font-size: .8rem; }
.commerce-tools { padding: 12px 0 7px; }
.category-rail { padding: 7px 12px 12px; background: #fff; }
.campaign-banner { margin: 18px 0 30px; min-height: 260px; border-radius: 0; }
.campaign-copy { padding: 30px 38px; }
.hero { min-height: 440px; margin-top: 0; padding: 30px; border-radius: 0; box-shadow: none; }
.hero h1 { font-size: clamp(2.1rem, 4vw, 4.4rem); }
.hero-visual { min-height: 400px; }
.hero-visual-main { min-height: 400px; border-radius: 10px; }
.hero-visual-stack img { min-height: 194px; border-radius: 10px; }
.featured-strip { margin-top: 42px; }
.featured-card { border-radius: 0; box-shadow: none; border: 1px solid #eee7ef; }
.deal-section, .shop-category-section { margin: 42px 0; }
.trust-band { margin-top: 26px; border-radius: 0; }
.product-card { border-radius: 0; box-shadow: 0 7px 18px rgba(64, 25, 75, .07); }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 18px 32px rgba(64, 25, 75, .14); }
.card-media { background: #fbf5ff; }
