﻿:root {
  --olive: #696a4b;
  --olive-dark: #35422c;
  --warm-beige: #a58b67;
  --ink: #171717;
  --sale: #d32129;
  --cs-page-pad: clamp(16px, 1.55vw, 32px);
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--font-family-sans-serif);
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.cs-px-fluid { padding-left: var(--cs-page-pad); padding-right: var(--cs-page-pad); }

.promo-bar {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--sf-bulletin-text, #ffffff);
  background: var(--sf-bulletin-bg, var(--olive));
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .045em;
}
.promo-bar a { color: inherit; text-decoration: none; }
.promo-bar span:first-child,
.promo-bar span:last-child { color: inherit; opacity: 0.82; font-size: 10px; }

.cs-storefront-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: var(--sf-nav-bg, #ffffff);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.site-header { position: relative; z-index: 1; border-bottom: 1px solid #efefef; background: var(--sf-nav-bg, #ffffff); }
.header-shell {
  min-height: 145px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: 86px 59px;
  align-items: center;
}
.brand-logo {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  text-align: center;
  color: var(--sf-nav-link, var(--olive));
  line-height: 1;
}
.brand-main { display: block; font-size: 23px; font-weight: 700; letter-spacing: .14em; }
.brand-sub { display: block; margin-top: 8px; font-size: 7px; letter-spacing: .31em; }
.brand-logo-img { display: block; max-height: 56px; width: auto; margin: 0 auto; }
.header-icons .nav-locale-rail {
  gap: 8px;
}
.header-icons .zjz-locale-pill {
  border: 0;
  background: transparent;
  padding: 0;
  min-height: 34px;
}
.header-icons .zjz-locale-select {
  border: 0;
  background: transparent;
  font-family: var(--font-family-sans-serif);
  font-size: 13px;
  font-weight: 500;
  color: #2d2d2d;
  padding: 0 2px;
  max-width: 72px;
}
.header-icons .zjz-locale-icon {
  font-size: 16px;
  color: #2d2d2d;
}
.header-icons {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  padding-right: var(--cs-page-pad);
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-icons a { position: relative; display: inline-grid; place-items: center; width: 18px; height: 18px; }
.header-icons svg { width: 17px; height: 17px; fill: none; stroke: var(--sf-nav-link, #2d2d2d); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.header-icons a:hover svg { stroke: var(--sf-nav-link, var(--olive)); opacity: 0.82; }
.cart-count {
  position: absolute;
  right: -8px;
  top: -9px;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--warm-beige);
  font: 700 9px/1 var(--font-family-sans-serif);
}
.desktop-menu { grid-column: 1 / -1; grid-row: 2; align-self: stretch; }
.desktop-menu .navbar-nav { height: 100%; gap: 25px; }
.navbar .nav-link {
  position: relative;
  padding: 22px 3px 15px;
  color: var(--sf-nav-link, #252525);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .015em;
  text-decoration: none;
}

/* 桌面导航：hover 时底部横线自中间展开 */
.desktop-menu .navbar-nav > .nav-item > .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: calc(100% - 6px);
  max-width: 56px;
  height: 2px;
  background: var(--olive-dark);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
  pointer-events: none;
}

.desktop-menu .navbar-nav > .nav-item > .nav-link:hover::after,
.desktop-menu .navbar-nav > .nav-item > .nav-link:focus-visible::after {
  transform: translateX(-50%) scaleX(1);
}

.desktop-menu .navbar-nav > .nav-item > .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
  background: var(--olive);
}

.navbar .nav-link:hover,
.navbar .nav-link.active { color: var(--sf-nav-link, var(--olive)); opacity: 0.88; }
.navbar .dropdown-toggle::after { display: none; }
.hot-label {
  position: absolute;
  left: 50%;
  top: 4px;
  transform: translateX(-50%);
  padding: 2px 6px 1px;
  color: #fff;
  background: #4f583b;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.25;
}
.dropdown-menu { min-width: 190px; padding: 9px 0; font-size: 13px; }
.dropdown-item { padding: 10px 18px; }
.dropdown-item:active { background: var(--olive); }
.navbar-toggler { display: none; }

.hero-carousel {
  position: relative;
}

.hero-carousel .carousel-inner {
  overflow: hidden;
}

.hero-carousel .carousel-item {
  height: clamp(390px, 42vw, 637px);
  min-height: 390px;
  background: #f5f3ef;
}

.hero-carousel .hero-slide-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.hero-carousel .hero-bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-carousel__control {
  width: 42px;
  height: 42px;
  top: 50%;
  bottom: auto;
  opacity: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  transform: translateY(-50%);
}

.hero-carousel__control.carousel-control-prev { left: clamp(12px, 2vw, 28px); }
.hero-carousel__control.carousel-control-next { right: clamp(12px, 2vw, 28px); }

.hero-carousel__control .carousel-control-prev-icon,
.hero-carousel__control .carousel-control-next-icon {
  display: none;
}

.section-block { padding-left: 0; padding-right: 0; }
.section-title { margin: 0; text-align: center; font-size: 23px; font-weight: 600; line-height: 1.2; }
.collection-section:has(.collection-grid > .col) { min-height: 555px; padding-top: 58px; padding-bottom: 60px; }
.collection-section:not(:has(.collection-grid > .col)) { min-height: 0; padding-top: 28px; padding-bottom: 28px; }
.collection-section .section-title { margin-bottom: 42px; }
.collection-card__media:not(:has(img[src]:not([src=""]))) { display: none; }
.collection-card { display: block; text-align: center; transition: transform .2s ease; color: inherit; }
.collection-card:hover { transform: translateY(-4px); color: inherit; }
.collection-card__hit { display: block; color: inherit; text-decoration: none; }
.collection-card__hit:hover { color: inherit; }
.collection-card__media {
  position: relative;
  display: block;
  margin: 0 12px 12px 0;
}
.collection-card__media::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  width: 100%;
  height: 100%;
  background: #dcdcdc;
  z-index: 0;
  pointer-events: none;
}
.collection-card__media img {
  position: relative;
  z-index: 1;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  background: #fff;
}
.collection-card img { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; }
.collection-card__label { display: block; margin-top: 16px; font-size: 13px; line-height: 1.25; }
.collection-card span { display: block; margin-top: 16px; font-size: 13px; line-height: 1.25; }

.recommended-section { padding-top: 38px; padding-bottom: 27px; }
.recommended-section .section-title { margin-bottom: 44px; }
.product-carousel { position: relative; }
.product-carousel .carousel-inner { overflow: hidden; }
.product-carousel .carousel-control-prev,
.product-carousel .carousel-control-next {
  width: 36px;
  height: 36px;
  top: 44%;
  bottom: auto;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  box-shadow: 0 1px 8px rgba(0,0,0,.12);
  opacity: 1;
  transform: translateY(-50%);
}
.product-carousel .carousel-control-prev { left: 4px; }
.product-carousel .carousel-control-next { right: 4px; }
.carousel-arrow { color: #555; font: 30px/1 var(--font-family-sans-serif); transform: translateY(-2px); }
.product-card { text-align: center; }
.product-image-wrap { position: relative; overflow: hidden; background: #f5f5f5; }
.product-image-wrap img { aspect-ratio: 1 / 1; object-fit: cover; transition: transform .35s ease; }
.product-card:hover .product-image-wrap .zjz-product-hover-media.is-hover-swap img {
  transform: none;
}
.product-card:hover .product-image-wrap img:not(.zjz-product-img-hover) { transform: scale(1.02); }
.add-cart {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 32px;
  border: 0;
  color: #fff;
  background: rgba(153,127,91,.84);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.add-cart:hover { background: var(--olive-dark); }
.product-card h3 { min-height: 46px; margin: 13px 8px 3px; font-size: 14px; font-weight: 400; line-height: 1.42; }
.price { margin: 4px 0 0; color: var(--sale); font-size: 14px; }
.price del { margin-left: 5px; color: #4d4d4d; font-size: 11px; }

/* 商品促销角标（与 themes/common/partials/product_badge.html 对齐） */
.product-image-wrap,
.zjz-pb-scroll-card-media {
  position: relative;
}

.product-badge {
  position: absolute;
  z-index: 99;
  color: #fff;
  font-weight: bold;
  line-height: 1.2;
  background: var(--sale, #ef424b);
}

.product-badge--corner_ribbon {
  top: 0;
  right: 0;
  font-size: 11px;
  padding: 5px 10px;
}

.product-badge--corner_ribbon::before,
.product-badge--corner_ribbon::after {
  content: "";
  position: absolute;
  bottom: -10px;
  border-style: solid;
  border-color: var(--sale, #ef424b) transparent transparent transparent;
}

.product-badge--corner_ribbon::before {
  right: 0;
  border-width: 10px 0 0 20px;
}

.product-badge--corner_ribbon::after {
  left: 0;
  border-width: 10px 20px 0 0;
}

.product-badge--circle_stamp {
  top: 9px;
  right: 9px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
}

.product-badge--pill_tag {
  top: 12px;
  left: 12px;
  right: auto;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .02em;
}

/* shop_0001 默认：花形省额标 */
.product-badge--scallop_save {
  top: 9px;
  right: 9px;
  width: 48px;
  height: 48px;
  padding: 3px 0 0;
  background: transparent url('/static/common/img/product-badge-scallop.png') center / contain no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: 8px;
  line-height: 1.05;
  text-align: center;
  box-shadow: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .2);
}

.product-badge--scallop_save .product-badge__save-label {
  font: 800 7px/1 var(--font-family-sans-serif);
  letter-spacing: .03em;
  max-width: 38px;
  overflow: hidden;
  white-space: nowrap;
}

.product-badge--scallop_save .product-badge__save-amt {
  font: 700 7px/1 var(--font-family-sans-serif);
  letter-spacing: -.02em;
  margin-top: 1px;
  max-width: 40px;
  overflow: hidden;
  white-space: nowrap;
}

.product-badge--scallop_save .product-badge__save-only {
  font: 800 7px/1 var(--font-family-sans-serif);
  letter-spacing: .03em;
}

.product-badge-clip {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 99;
  width: 88px;
  height: 88px;
  overflow: hidden;
  pointer-events: none;
}

.product-badge-clip .product-badge--slash_corner {
  position: absolute;
  top: 10px;
  right: -38px;
  width: 130px;
  padding: 6px 0;
  font-size: 11px;
  text-align: center;
  transform: rotate(45deg);
  transform-origin: center center;
  box-shadow: none;
  pointer-events: auto;
}

.more-info-wrap { margin-top: 54px; }
.more-info-btn { padding: 10px 22px; border-radius: 0; color: #fff; background: #050505; font-size: 9px; }
.more-info-btn:hover { color: #fff; background: var(--olive); }

.hot-sale-section { padding-top: 35px; padding-bottom: 50px; }
.hot-sale-section .section-title { margin-bottom: 45px; }
.ornament-title span { margin-inline: 4px; font-size: 14px; }
.product-grid { row-gap: 36px !important; }
.view-all-wrap { margin-top: 55px; }
.view-all-btn { padding: 10px 25px; border-radius: 0; color: #fff; background: var(--warm-beige); font-size: 9px; }
.view-all-btn:hover { color: #fff; background: var(--olive-dark); }

.brand-story:has(.story-content p:not([style*="display: none"]):not([style*="display:none"])) {
  min-height: 442px;
}
.brand-story:not(:has(.story-content p:not([style*="display: none"]):not([style*="display:none"]))) {
  min-height: 0;
}
.brand-story {
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: #f5f3ef;
}
.brand-story__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.brand-story__bg-main,
.brand-story__bg-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: auto;
}
.brand-story__bg-main {
  object-position: center bottom;
}
.brand-story__bg-overlay {
  object-position: center;
  z-index: 1;
}
.brand-story__bg-overlay:not([src]),
.brand-story__bg-overlay[src=""] {
  display: none;
}
.brand-story::before { content: ""; position: absolute; inset: 0; z-index: 2; background: rgba(255,255,255,.08); pointer-events: none; }
.story-content { position: relative; z-index: 3; padding: 22px; text-align: center; color: #1d1d1d; text-shadow: 0 1px rgba(255,255,255,.5); }
.story-content p { margin: 0 0 17px; font-size: 16px; line-height: 1.5; }
.story-kicker { font-size: 18px !important; }
.story-brand { font-size: 17px !important; }

.site-footer {
  padding: 72px 0 40px;
  background: var(--sf-footer-bg, #ffffff);
  color: var(--sf-footer-text, var(--ink));
}
.site-footer h2 { margin: 0 0 20px; font-size: 14px; font-weight: 700; letter-spacing: .02em; color: var(--sf-footer-text, inherit); }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 12px; line-height: 1.35; color: var(--sf-footer-text, inherit); }
.footer-links a:hover { color: var(--sf-footer-text, var(--olive)); opacity: 0.82; }
.copyright { margin-top: 72px; font-size: 10px; color: var(--sf-footer-text, inherit); }
.copyright.footer-copyright-standalone { margin-top: 32px; text-align: center; }
.newsletter-column { display: flex; justify-content: center; }
.newsletter-inner { width: min(100%, 440px); }
.newsletter-column h2 { text-transform: none; font-size: 14px; color: var(--sf-footer-text, inherit); }
.newsletter-column p { font-size: 11px; line-height: 1.65; color: var(--sf-footer-text, inherit); }
.newsletter-form { display: flex; width: 100%; max-width: 390px; }
.newsletter-form input { flex: 1; min-width: 0; height: 38px; padding: 0 12px; border: 1px solid #ddd; outline: 0; font-size: 11px; }
.newsletter-form input:focus { border-color: var(--olive); }
.newsletter-form button { width: 116px; border: 0; color: #fff; background: var(--warm-beige); font-size: 11px; }
.newsletter-message { height: 12px; margin: 5px 0 0 !important; color: var(--olive-dark); }
.social-icons { display: flex; gap: 13px; margin-top: 7px; }
.social-icons a { display: inline-grid; place-items: center; width: 16px; height: 16px; color: var(--sf-footer-text, inherit); font: 700 12px/1 var(--font-family-sans-serif); }
.policy-column { text-align: right; }
.payment-wrap { margin-top: 74px; }
.payment-wrap p { margin: 0 0 12px; font-size: 11px; }
.payment-icons { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 5px; }
.payment-icons span { min-width: 38px; padding: 5px 6px; border: 1px solid #d8d8d8; border-radius: 2px; color: #2358a6; background: #fff; font: 700 8px/1 var(--font-family-sans-serif); text-align: center; }

.cart-toast { position: fixed; left: 50%; bottom: 28px; z-index: 60; padding: 10px 18px; color: #fff; background: rgba(34,34,34,.92); font: 12px/1.2 var(--font-family-sans-serif); opacity: 0; pointer-events: none; transform: translate(-50%,15px); transition: .25s ease; }
.cart-toast.show { opacity: 1; transform: translate(-50%,0); }

@media (min-width: 768px) {
  .carousel-item .row > .col { display: block; }
}

@media (max-width: 1199.98px) {
  .hero-carousel .carousel-item { min-height: 500px; }
  .collection-section { min-height: auto; }
  .site-footer { min-height: auto; }
}

@media (max-width: 767.98px) {
  :root { --cs-page-pad: 14px; }
  .promo-bar { height: 28px; font-size: 10px; }
  .header-shell { min-height: 72px; grid-template-columns: 46px 1fr auto; grid-template-rows: 72px; padding: 0 var(--cs-page-pad) !important; }
  .navbar-toggler { display: block; grid-column: 1; grid-row: 1; justify-self: start; padding: 0; }
  .menu-lines { width: 21px; display: grid; gap: 4px; }
  .menu-lines i { display: block; width: 21px; height: 1px; background: var(--sf-nav-link, #222); }
  .brand-logo { grid-column: 2; grid-row: 1; }
  .brand-main { font-size: 16px; }
  .brand-sub { margin-top: 5px; font-size: 5px; }
  .header-icons { grid-column: 3; grid-row: 1; padding-right: 0; gap: 11px; }
  .header-icons a:nth-child(2), .header-icons a:nth-child(3) { display: none; }
  .desktop-menu { display: none !important; }
  .hero-carousel .carousel-item { min-height: 390px; }
  .collection-section, .recommended-section, .hot-sale-section { padding-top: 36px; padding-bottom: 38px; }
  .section-title { font-size: 20px; }
  .collection-section .section-title, .recommended-section .section-title, .hot-sale-section .section-title { margin-bottom: 25px; }
  .collection-card__media {
    margin: 0 8px 8px 0;
  }
  .collection-card__media::before {
    top: 8px;
    left: 8px;
  }
  .collection-card span { margin-top: 10px; min-height: 26px; font-size: 10px; }
  .product-carousel .carousel-control-prev, .product-carousel .carousel-control-next { display: none; }
  .hero-carousel__control { display: none; }
  .product-card h3 { min-height: 42px; margin: 10px 4px 2px; font-size: 12px; line-height: 1.4; }
  .price { font-size: 12px; }
  .add-cart { height: 28px; font-size: 10px; }
  .product-badge--scallop_save,
  .product-badge--circle_stamp {
    width: 40px;
    height: 40px;
    right: 5px;
    top: 5px;
  }
  .product-badge--scallop_save .product-badge__save-label,
  .product-badge--scallop_save .product-badge__save-amt,
  .product-badge--scallop_save .product-badge__save-only {
    font-size: 6px;
  }
  .more-info-wrap, .view-all-wrap { margin-top: 30px; }
  .product-grid { row-gap: 25px !important; }
  .brand-story { min-height: 315px; }
  .story-content p { font-size: 13px; }
  .story-kicker { font-size: 15px !important; }
  .story-brand { font-size: 14px !important; }
  .site-footer { padding: 42px 0 30px; }
  .footer-main { min-height: auto; }
  .newsletter-column { justify-content: flex-start; }
  .policy-column { text-align: left; }
  .payment-wrap, .copyright { margin-top: 25px; }
  .payment-icons { justify-content: flex-start; }
}

@media (max-width: 420px) {
  .header-icons a:first-child { display: none; }
}

/* Keep Bootstrap's navbar container from overriding the two-row grid header. */
.navbar > .header-shell {
  display: grid !important;
  flex-wrap: initial;
  align-items: center;
  justify-content: initial;
}

/* Typography adjustments requested for the desktop and responsive layouts. */
.promo-bar {
  min-height: 38px;
  height: auto;
  padding: 9px var(--cs-page-pad);
  font-size: 14px;
  line-height: 1.2;
}

.navbar .nav-link,
.mobile-nav .nav-link {
  font-size: 16px;
}

.mobile-nav .nav-link {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.mobile-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--olive-dark);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.24s ease;
}

.mobile-nav .nav-link:hover::after,
.mobile-nav .nav-link:focus-visible::after {
  transform: scaleX(1);
}

.dropdown-menu,
.dropdown-item {
  font-size: 16px;
}

.product-card h3 {
  min-height: 56px;
  font-size: 16px;
  line-height: 1.45;
}

.brand-story .story-content p,
.brand-story .story-kicker,
.brand-story .story-brand {
  font-size: 24px !important;
  line-height: 1.5;
}

.site-footer,
.site-footer h2,
.site-footer .footer-links a,
.site-footer .newsletter-column h2,
.site-footer .newsletter-column p,
.site-footer .newsletter-form input,
.site-footer .newsletter-form button,
.site-footer .payment-wrap p,
.site-footer .copyright {
  font-size: 16px;
}

.site-footer h2 {
  line-height: 1.3;
}

.site-footer .footer-links a,
.site-footer .newsletter-column p,
.site-footer .payment-wrap p,
.site-footer .copyright {
  line-height: 1.55;
}

.site-footer .newsletter-form input,
.site-footer .newsletter-form button {
  height: 44px;
}

.site-footer .social-icons a {
  width: 20px;
  height: 20px;
  font-size: 16px;
}

@media (max-width: 767.98px) {
  .promo-bar {
    min-height: 38px;
    height: auto;
    font-size: 14px;
  }

  .product-card h3 {
    min-height: 56px;
    font-size: 16px;
    line-height: 1.45;
  }

  .brand-story .story-content p,
  .brand-story .story-kicker,
  .brand-story .story-brand {
    font-size: 24px !important;
  }

  .site-footer,
  .site-footer h2,
  .site-footer .footer-links a,
  .site-footer .newsletter-column h2,
  .site-footer .newsletter-column p,
  .site-footer .newsletter-form input,
  .site-footer .newsletter-form button,
  .site-footer .payment-wrap p,
  .site-footer .copyright {
    font-size: 16px;
  }
}

/* v5: price and section CTA sizing adjustments. */
.price,
.price .sale-price,
.price del {
  font-size: 16px;
  line-height: 1.35;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 9px;
  flex-wrap: wrap;
}

.price del {
  margin-left: 0;
  color: #777;
  font-weight: 400;
  text-decoration-thickness: 1px;
  text-decoration-color: currentColor;
}

.more-info-btn,
.view-all-btn {
  min-width: 132px;
  padding: 13px 30px;
  font-size: 14px;
  line-height: 1.2;
}

@media (max-width: 767.98px) {
  .price,
  .price .sale-price,
  .price del {
    font-size: 16px;
  }

  .more-info-btn,
  .view-all-btn {
    min-width: 126px;
    padding: 12px 26px;
    font-size: 14px;
  }
}

/* v6: header tools 鈥?search, language/currency switcher and cart only. */
.header-icons {
  gap: 20px;
}

.header-icons .header-icon-button {
  flex: 0 0 auto;
}

.locale-currency-dropdown {
  display: flex;
  align-items: center;
}

.locale-currency-toggle {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 4px 1px;
  border: 0;
  border-radius: 0;
  color: var(--sf-nav-link, #2d2d2d);
  background: transparent;
  font-family: var(--font-family-sans-serif);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .02em;
  white-space: nowrap;
}

.locale-currency-toggle:hover,
.locale-currency-toggle:focus-visible,
.locale-currency-toggle[aria-expanded="true"] {
  color: var(--sf-nav-link, var(--olive));
  outline: 0;
}

.locale-currency-toggle svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.locale-currency-toggle .globe-icon {
  width: 18px;
  height: 18px;
}

.locale-currency-toggle .switcher-chevron {
  width: 9px;
  height: 6px;
  transition: transform .2s ease;
}

.locale-currency-toggle[aria-expanded="true"] .switcher-chevron {
  transform: rotate(180deg);
}

.locale-currency-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.locale-currency-menu {
  width: 254px;
  min-width: 254px;
  margin-top: 12px !important;
  padding: 13px 0 11px;
  border: 1px solid #e3e0da !important;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .1) !important;
}

.switcher-title {
  margin: 0;
  padding: 4px 18px 8px;
  color: #777;
  font-family: var(--font-family-sans-serif);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.locale-currency-menu .dropdown-item {
  position: relative;
  padding: 9px 40px 9px 18px;
  color: #242424;
  background: transparent;
  font-family: var(--font-family-sans-serif);
  font-size: 14px;
  line-height: 1.25;
}

.locale-currency-menu .dropdown-item:hover,
.locale-currency-menu .dropdown-item:focus {
  color: var(--olive-dark);
  background: #f5f4f0;
}

.locale-currency-menu .switcher-option.active {
  color: var(--olive-dark);
  background: transparent;
  font-weight: 700;
}

.locale-currency-menu .switcher-option.active::after {
  content: "鉁?;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--olive);
  font-family: var(--font-family-sans-serif);
  font-size: 14px;
}

.locale-currency-menu .dropdown-divider {
  margin: 10px 18px;
  border-color: #ece9e2;
}

@media (max-width: 767.98px) {
  .header-icons {
    gap: 10px;
  }

  .header-icons a:nth-child(2),
  .header-icons a:nth-child(3),
  .header-icons a:first-child {
    display: inline-grid;
  }

  .locale-currency-toggle {
    min-height: 30px;
    gap: 5px;
    font-size: 11px;
  }

  .locale-currency-toggle .globe-icon {
    width: 16px;
    height: 16px;
  }

  .locale-currency-toggle .switcher-chevron {
    width: 8px;
    height: 5px;
  }

  .locale-currency-menu {
    width: 236px;
    min-width: 236px;
  }
}

@media (max-width: 420px) {
  .header-icons {
    gap: 7px;
  }

  .header-icons a:first-child {
    display: inline-grid;
  }

  .header-icons svg {
    width: 16px;
    height: 16px;
  }

  .locale-currency-toggle {
    gap: 3px;
    font-size: 10px;
    letter-spacing: 0;
  }

  .locale-currency-toggle .switcher-chevron {
    display: none;
  }

  .brand-main {
    font-size: 14px;
    letter-spacing: .09em;
  }
}

/* ========== 项目集成：装修区 / 页脚 / 导航 ========== */
:root {
  --zjz-home-content-max: 100%;
  --cs-page-pad: clamp(16px, 1.55vw, 32px);
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

html {
  scrollbar-gutter: stable;
}

body.theme-shop-0001 {
  font-family: var(--font-family-sans-serif);
  --bs-font-sans-serif: var(--font-family-sans-serif);
  --bs-font-monospace: var(--font-family-monospace);
}

/* 短内容页：主内容不足一屏时页脚贴底；右下角 FAB 不占文档流（同 shop_default） */
body.theme-shop-0001:has(.site-footer) {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body.theme-shop-0001:has(.site-footer) > :not(.site-footer):not(.zjz-fab-root):not(.cs-fab-root) {
  flex-shrink: 0;
  align-self: stretch;
  width: 100%;
  box-sizing: border-box;
}

body.theme-shop-0001:has(.site-footer) > .zjz-fab-root {
  flex-shrink: 0;
  align-self: auto;
  width: auto;
}

body.theme-shop-0001:has(.site-footer) .site-footer {
  margin-top: auto;
  flex-shrink: 0;
  width: 100%;
}

#zjz-home-editable {
  width: 100%;
}

#zjz-home-layout-zone {
  width: 100%;
}

#zjz-home-layout-zone .product-grid,
#zjz-home-layout-zone .zjz-pb-scroll-inner,
#zjz-home-layout-zone .zjz-layout-richtext {
  max-width: none;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--cs-page-pad);
  padding-right: var(--cs-page-pad);
  box-sizing: border-box;
}

#zjz-home-layout-zone .section-title,
#zjz-home-layout-zone .zjz-pb-scroll-title {
  margin: 0 0 44px;
  text-align: center;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.2;
}

#zjz-home-layout-zone .product-grid.zjz-pb-block {
  padding-top: 38px;
  padding-bottom: 27px;
}

#zjz-home-layout-zone .zjz-pb-scroll-block {
  padding-top: 38px;
  padding-bottom: 27px;
}

#zjz-home-layout-zone .product-card-link .product-card,
#zjz-home-layout-zone .zjz-pb-scroll-card {
  text-align: center;
}

#zjz-home-layout-zone .product-card-link .img-wrapper,
#zjz-home-layout-zone .product-card-link .product-image-wrap {
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
}

#zjz-home-layout-zone .product-card-link img,
#zjz-home-layout-zone .zjz-pb-scroll-card-media img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

#zjz-home-layout-zone .product-card-link h3,
#zjz-home-layout-zone .zjz-pb-scroll-card-title {
  min-height: 46px;
  margin: 13px 8px 3px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

#zjz-home-layout-zone .product-card-link .price-now,
#zjz-home-layout-zone .product-card-link .price-was,
#zjz-home-layout-zone .zjz-pb-scroll-price-now,
#zjz-home-layout-zone .zjz-pb-scroll-price-was {
  font-size: 16px;
}

#zjz-home-layout-zone .product-card-link .price-now,
#zjz-home-layout-zone .zjz-pb-scroll-price-now {
  color: var(--sale);
}

#zjz-home-layout-zone .product-card .add-cart,
#zjz-home-layout-zone .product-card-link .add-cart {
  z-index: 3;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

#zjz-home-layout-zone .btn.btn-view-more,
#zjz-home-layout-zone .zjz-pb-scroll-card-btn {
  border-radius: 0;
}

#zjz-home-layout-zone .btn.btn-view-more {
  min-width: 132px;
  padding: 13px 30px;
  font-size: 14px;
  color: #fff;
  background: #050505;
}

#zjz-home-layout-zone .btn.btn-view-more:hover {
  color: #fff;
  background: var(--olive);
}

.site-footer .footer-links a:hover {
  color: var(--sf-footer-text, var(--olive));
  opacity: 0.82;
}

.nav-cart-badge {
  position: absolute;
  right: -8px;
  top: -9px;
  min-width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--warm-beige);
  font: 700 9px/1 var(--font-family-sans-serif);
  padding: 0 4px;
}

@media (max-width: 767.98px) {
  #zjz-home-layout-zone .product-grid.zjz-pb-block,
  #zjz-home-layout-zone .zjz-pb-scroll-block {
    padding-top: 36px;
    padding-bottom: 38px;
  }

  #zjz-home-layout-zone .section-title,
  #zjz-home-layout-zone .zjz-pb-scroll-title {
    margin-bottom: 25px;
    font-size: 20px;
  }
}

/* ========== shop_0001：右下角客服浮层 + 回到顶部（定位与 shop_default .zjz-fab-root 一致） ========== */
.zjz-fab-root,
.cs-fab-root {
  position: fixed;
  right: var(--cs-page-pad);
  bottom: 18px;
  z-index: 1040;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 10px;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

.theme-shop-0001 .cs-fab-root,
.theme-shop-0001 .zjz-fab-root {
  right: var(--cs-page-pad);
  bottom: 18px;
}

.zjz-fab-root > *,
.cs-fab-root > *,
.theme-shop-0001 .cs-fab-root > *,
.theme-shop-0001 .zjz-fab-root > * {
  pointer-events: auto;
}

/* 折叠态不占文档流；展开时强制显示（避免 !important 折叠规则残留） */
.zjz-support-panel:not(.is-open),
.cs-support-panel:not(.is-open) {
  display: none !important;
}

.zjz-support-panel.is-open,
.cs-support-panel.is-open {
  display: block !important;
  flex-shrink: 0;
  max-width: min(92vw, 340px);
  opacity: 1;
  pointer-events: auto;
}

.theme-shop-0001 .cs-support-panel.is-open,
.theme-shop-0001 .zjz-support-panel.is-open {
  display: block !important;
  max-width: min(92vw, 340px);
  opacity: 1;
  pointer-events: auto;
}

.theme-shop-0001 .cs-support-panel-inner,
.theme-shop-0001 .zjz-support-panel-inner {
  width: min(92vw, 340px);
  padding: 18px 18px 16px;
  background: #fff;
  border: 1px solid #e3e0da;
  border-radius: 0;
  box-shadow: 0 12px 36px rgba(53, 66, 44, 0.14);
}

.theme-shop-0001 .cs-support-head,
.theme-shop-0001 .zjz-support-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ece9e2;
}

.theme-shop-0001 .cs-support-title,
.theme-shop-0001 .zjz-support-title {
  margin: 0;
  color: var(--olive-dark);
  font-family: var(--font-family-sans-serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.theme-shop-0001 .cs-support-close,
.theme-shop-0001 .zjz-support-close {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid #ddd;
  border-radius: 0;
  color: #666;
  background: #fff;
  font: 400 22px/1 var(--font-family-sans-serif);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.theme-shop-0001 .cs-support-close:hover,
.theme-shop-0001 .zjz-support-close:focus-visible {
  color: var(--olive-dark);
  border-color: var(--olive);
  background: #f5f4f0;
  outline: 0;
}

.theme-shop-0001 .cs-support-panel-inner .zjz-support-cf-form {
  max-height: min(56vh, 380px);
  overflow-y: auto;
  padding-right: 2px;
  font-family: var(--font-family-sans-serif);
}

.theme-shop-0001 .cs-support-panel-inner .zjz-cf-label {
  color: var(--olive-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.theme-shop-0001 .cs-support-panel-inner .zjz-cf-control .form-control,
.theme-shop-0001 .cs-support-panel-inner .zjz-cf-control .form-select {
  border-radius: 0;
  border-color: #ddd;
  font-size: 13px;
}

.theme-shop-0001 .cs-support-panel-inner .zjz-cf-control .form-control:focus,
.theme-shop-0001 .cs-support-panel-inner .zjz-cf-control .form-select:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 2px rgba(105, 106, 75, 0.12);
}

.theme-shop-0001 .cs-support-form-actions,
.theme-shop-0001 .zjz-support-form-actions {
  margin-top: 14px;
}

.theme-shop-0001 .cs-support-submit,
.theme-shop-0001 .zjz-support-panel-inner .zjz-cf-submit {
  width: 100%;
  min-height: 42px;
  padding: 11px 18px;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: var(--warm-beige);
  font-family: var(--font-family-sans-serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.theme-shop-0001 .cs-support-submit:hover,
.theme-shop-0001 .zjz-support-panel-inner .zjz-cf-submit:hover {
  background: var(--olive-dark);
}

.theme-shop-0001 .cs-support-success,
.theme-shop-0001 .zjz-support-panel-inner .zjz-cf-success {
  margin-top: 10px;
  margin-bottom: 0;
  border-radius: 0;
  border: 1px solid #d8e8d0;
  background: #f7faf5;
  color: var(--olive-dark);
  font-family: var(--font-family-sans-serif);
  font-size: 13px;
}

.theme-shop-0001 .cs-fab-stack,
.theme-shop-0001 .zjz-fab-stack {
  position: relative;
  flex-shrink: 0;
  width: 40px;
  min-height: 40px;
}

.theme-shop-0001 .cs-fab-root[data-customer-service-form-id] .cs-fab-stack,
.theme-shop-0001 .zjz-fab-root[data-customer-service-form-id] .zjz-fab-stack {
  height: 96px;
  min-height: 96px;
}

.theme-shop-0001 .cs-fab-btn,
.theme-shop-0001 .zjz-fab-btn {
  position: absolute;
  right: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #ddd;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.theme-shop-0001 .cs-fab-btn--top,
.theme-shop-0001 .zjz-fab-btn--top {
  bottom: 0;
  border-radius: 50%;
  color: #777;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.theme-shop-0001 .cs-fab-btn--top svg,
.theme-shop-0001 .zjz-fab-btn--top svg {
  display: block;
  width: 18px;
  height: 18px;
  margin: 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-shop-0001 .cs-fab-btn--support,
.theme-shop-0001 .zjz-fab-btn--support {
  bottom: 52px;
  border-radius: 0;
  color: #fff;
  background: var(--olive);
  border-color: var(--olive);
  box-shadow: 0 4px 14px rgba(53, 66, 44, 0.22);
}

.theme-shop-0001 .cs-fab-btn--support svg,
.theme-shop-0001 .zjz-fab-btn--support svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-shop-0001 .cs-fab-btn:hover,
.theme-shop-0001 .zjz-fab-btn:hover {
  transform: translateY(-2px);
}

.theme-shop-0001 .cs-fab-btn--support:hover,
.theme-shop-0001 .zjz-fab-btn--support:hover {
  background: var(--olive-dark);
  border-color: var(--olive-dark);
}

.theme-shop-0001 .cs-fab-btn--top:hover,
.theme-shop-0001 .zjz-fab-btn--top:hover {
  color: var(--olive-dark);
  border-color: var(--olive);
}

.theme-shop-0001 .cs-fab-btn:focus-visible,
.theme-shop-0001 .zjz-fab-btn:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 2px;
}

.theme-shop-0001 .cs-fab-btn[hidden],
.theme-shop-0001 .zjz-fab-btn[hidden] {
  display: none !important;
}

@media (max-width: 767.98px) {
  .theme-shop-0001 .cs-fab-root,
  .theme-shop-0001 .zjz-fab-root {
    right: 14px;
    bottom: 14px;
  }

  .theme-shop-0001 .cs-support-panel.is-open,
  .theme-shop-0001 .zjz-support-panel.is-open {
    display: flex !important;
    position: fixed;
    inset: 0;
    z-index: 1050;
    width: 100%;
    max-width: none !important;
    max-height: none !important;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 14px;
    background: rgba(53, 66, 44, 0.52);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .theme-shop-0001 .cs-support-panel-inner,
  .theme-shop-0001 .zjz-support-panel-inner {
    width: min(100%, 360px);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
  }

  .theme-shop-0001 .cs-fab-root[data-customer-service-form-id] .cs-fab-stack,
  .theme-shop-0001 .zjz-fab-root[data-customer-service-form-id] .zjz-fab-stack {
    height: 88px;
    min-height: 88px;
  }

  .theme-shop-0001 .cs-fab-btn,
  .theme-shop-0001 .zjz-fab-btn {
    width: 38px;
    height: 38px;
  }

  .theme-shop-0001 .cs-fab-btn--support,
  .theme-shop-0001 .zjz-fab-btn--support {
    bottom: 48px;
  }
}

/* ========== 分类列表页（All Products） ========== */
.page-collection main.collection-page {
  flex: 1 0 auto;
  width: 100%;
}

.collection-page__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 28px;
  padding-bottom: 56px;
}

.collection-breadcrumb {
  font-size: 12px;
  line-height: 1.4;
  color: #8a8a8a;
  margin-bottom: 18px;
}

.collection-breadcrumb__link {
  color: #8a8a8a;
  text-decoration: none;
}

.collection-breadcrumb__link:hover {
  color: var(--ink);
}

.collection-breadcrumb__sep {
  margin: 0 6px;
}

.collection-breadcrumb__current {
  color: #666;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.collection-toolbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-bottom: 34px;
}

.collection-page-title {
  margin: 0;
  text-align: center;
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.collection-sort-form {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.collection-sort-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.collection-sort-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  pointer-events: none;
  user-select: none;
}

.collection-sort-chevron {
  font-size: 14px;
  line-height: 1;
  transform: translateY(-1px);
}

.collection-sort-select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  border: 0;
  background: transparent;
}

.collection-product-grid {
  margin-bottom: 40px;
}

.collection-product-grid .product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.collection-product-grid .product-card-body {
  flex: 1 1 auto;
}

.collection-product-grid .product-card-media-link {
  display: block;
}

.collection-product-grid .add-cart {
  z-index: 3;
  font-size: 11px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collection-product-grid .price-now {
  color: var(--sale);
  font-size: 14px;
  font-weight: 500;
}

.collection-product-grid .price-was {
  margin-left: 6px;
  color: #666;
  font-size: 12px;
}

.collection-pagination .page-link {
  border-radius: 0;
  color: var(--ink);
  border-color: #ddd;
  min-width: 38px;
  text-align: center;
}

.collection-pagination .page-item.disabled .page-link {
  color: #999;
  background: #fafafa;
}

.collection-empty-state {
  padding: 48px 16px;
  text-align: center;
}

.collection-status {
  padding: 32px 0;
}

@media (max-width: 767.98px) {
  .collection-page__inner {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .collection-toolbar {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    gap: 12px;
    margin-bottom: 24px;
  }

  .collection-page-title {
    font-size: 22px;
  }

  .collection-sort-form {
    position: static;
    transform: none;
    align-self: flex-end;
  }
}
