:root {
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --ui-fs-h2: clamp(2.05rem, 3.2vw, 2.75rem);
  --color-primary: #2563eb;
  --color-primary-light: #3b82f6;
  --color-primary-dark: #1d4ed8;
  --color-secondary: #10b981;
  --color-nav-bg: #000000;
  --color-nav-text: #ffffff;
  --design-header-search-max: 560px;
  --m3-body-large: 16px;
  --m3-label-large: 14px;
  --hub-brand-blue: #4285f4;
  --hub-brand-red: #ea4335;
  --hub-brand-yellow: #fbbc04;
  --hub-brand-green: #34a853;
}

/**
 * 设计稿主色与顶栏对齐（main.css 之后加载）；不修改导航 DOM。
 */

@media (min-width: 901px) {
  .header-top {
    --header-row-h: 44px;
  }

  .header-top {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: start;
    gap: 20px 28px;
    min-height: 92px;
    padding-top: 14px;
    padding-bottom: 8px;
  }

  .header-top > .brand,
  .header-top > .header-search-wrap,
  .header-top > .header-actions {
    align-self: start;
  }

  .header-top .brand {
    min-height: var(--header-row-h);
    display: inline-flex;
    align-items: center;
  }

  .header-top .brand img {
    transform: none;
  }

  .header-search-wrap {
    max-width: var(--design-header-search-max);
    width: 100%;
    margin-inline: auto;
    justify-self: center;
    display: grid;
    grid-template-rows: var(--header-row-h) auto;
    align-content: start;
  }

  .header-actions {
    justify-content: flex-end;
    flex-wrap: nowrap;
    align-items: center;
    min-height: var(--header-row-h);
  }

  .header-top .search-box {
    min-height: var(--header-row-h);
    height: var(--header-row-h);
    border-radius: var(--ui-radius-sm, 8px);
  }

  .header-top .search-input {
    font-size: var(--m3-body-large, 16px);
    line-height: 1;
  }

  .header-top .btn-primary,
  .header-top .btn-ghost {
    height: var(--header-row-h);
    min-height: var(--header-row-h);
    padding: 0 22px;
    font-size: var(--m3-label-large, 14px);
    font-weight: 500;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-top .search-btn {
    min-height: 100%;
    align-self: stretch;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-top .search-hot {
    margin-top: 7px;
    min-height: 18px;
    align-items: center;
    line-height: 1.2;
  }

  .header-nav .mega-menu.mega-has-pane {
    /* Overridden by final cleanup */
  }
}

/* Black Nav Bar & Category Trigger */
.header-nav {
  background: #000000 !important;
}
@media (min-width: 901px) {
  .header-nav .nav-inner {
    display: flex;
    align-items: stretch;
    min-height: 48px;
    gap: calc(30px + 10px) !important;
  }
}
.category-trigger {
  width: 240px;
  height: auto !important;
  border-radius: 0 !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 20px !important;
  font-size: 17px !important;
  font-weight: bold !important;
  font-variation-settings: "wght" 700 !important;
  background: #2563eb !important;
}
.nav-link {
  display: flex;
  align-items: center;
}
.header-nav .nav-inner > a.is-active {
  opacity: 1;
  color: var(--color-primary-light, #9ec4ff) !important;
}
.header-nav .nav-inner > a.nav-link.is-active::after {
  transform: scaleX(1);
}
@media (min-width: 901px) {
  .header-nav .nav-inner > a.nav-link {
    font-size: 18px !important;
    font-weight: bold !important;
    font-variation-settings: "wght" 700 !important;
  }
}
@media (max-width: 900px) {
  .header-nav .mobile-nav {
    gap: calc(8px + 10px) !important;
  }
  .header-nav .mobile-nav > a {
    font-size: 16px !important;
    font-weight: bold !important;
    font-variation-settings: "wght" 700 !important;
  }
  .header-nav .mobile-nav > a.is-active {
    color: var(--color-primary-light, #9ec4ff) !important;
    background: rgba(255, 255, 255, .08);
  }
}

/* Mega Menu Alignment & Split Layout */
@media (min-width: 901px) {
  .mega-menu {
    left: 0;
    width: 240px !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border: none !important;
    top: 48px !important;
  }
  .mega-menu.mega-has-pane {
    width: 100% !important;
  }
  .mega-wrap {
    display: block !important;
    position: relative;
    min-height: 440px;
    background: #ffffff !important;
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    border-radius: 0 0 12px 12px;
    overflow: hidden;
  }
  .mega-sidebar {
    width: 240px;
    background: #ffffff !important;
    min-height: 440px;
    border-right: none !important;
    padding: 12px 0 !important;
  }
  .mega-sidebar a {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 14px 24px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #1a1a1a !important;
    transition: all 0.2s ease;
  }
  .mega-sidebar a:hover, .mega-sidebar a.active {
    background: #f8f9fa !important;
    color: #1a73e8 !important;
  }
  .mega-sidebar a .ico {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mega-sidebar a .ico img {
    width: 18px;
    height: 18px;
    object-fit: contain;
  }
  .mega-content {
    position: absolute;
    left: 240px;
    top: 0;
    width: calc(100% - 240px);
    height: 100%;
    overflow-y: auto;
    background: #ffffff !important;
    padding: 32px 40px !important;
    border-left: 1px solid #f0f0f0 !important;
    box-sizing: border-box;
  }
}

.header-search-wrap .search-dropdown {
  top: 50px;
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.14);
  max-height: 610px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 10px 8px;
}

.header-search-wrap .search-highlight {
  font-weight: 800;
  color: inherit;
}

.header-search-wrap .search-more-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 6px;
  border-top: 1px solid #eef2f7;
  color: #2563eb;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.header-search-wrap .search-more-item:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.header-search-wrap .search-history-row {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 6px;
}

.header-search-wrap .search-history-row:hover {
  background: #f3f6fb;
}

.header-search-wrap .search-history-row .search-history-item {
  flex: 1;
  min-width: 0;
  padding-right: 34px;
}

.header-search-wrap .search-history-row .search-history-item:hover {
  background: transparent;
  border-color: transparent;
}

.header-search-wrap .search-history-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-search-wrap .search-history-delete {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #94a3b8;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  opacity: 0;
  transition: opacity .15s ease, background .15s ease, color .15s ease;
}

.header-search-wrap .search-history-row:hover .search-history-delete,
.header-search-wrap .search-history-delete:focus {
  opacity: 1;
}

.header-search-wrap .search-history-delete:hover {
  background: #e2e8f0;
  color: #334155;
}

.modal-overlay[data-lightbox-modal] {
  background: rgba(9, 12, 22, 0.62);
  z-index: 10040;
}

[data-lightbox-modal] .lightbox-wrap {
  position: relative;
}

[data-lightbox-modal] .lightbox-actions {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  margin-top: 0;
  padding: 7px 14px;
  background: rgba(28, 32, 44, 0.55);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

[data-lightbox-modal] .lightbox-actions button {
  border-radius: 6px;
  width: 36px;
  height: 32px;
}

.modal-overlay[data-inquiry-modal] {
  background: rgba(9, 12, 22, 0.55);
  /* 顶栏搜索/下拉 z-index 可达 120，询盘层必须在其之上，否则表现为「弹窗不出现」 */
  z-index: 10050;
}

.inquiry-modal {
  background: #fff !important;
  border: 1px solid #e8ecf4 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.18) !important;
}

.inquiry-modal h3 {
  font-size: 40px;
  font-weight: 600 !important;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.inquiry-modal p {
  font-size: 16px;
  line-height: 1.5;
  color: #5f6368;
}

.submit-btn {
  background: var(--color-primary, #2563eb) !important;
}

.submit-btn:hover {
  background: var(--color-primary-dark, #1d4ed8) !important;
}

/* 询盘弹窗 v2：白底、标签在上、社交图标行（覆盖 main.css 玻璃拟态） */
.inquiry-modal.inquiry-modal--v2 {
  position: relative;
  width: min(600px, calc(100% - 28px));
  max-height: min(92vh, 880px);
  overflow: auto;
  padding: 30px 30px 28px;
  border-radius: 14px;
}

.inquiry-modal--v2 .modal-close {
  right: 14px;
  top: 10px;
  font-size: 24px;
  line-height: 1;
}

.inquiry-modal__title {
  margin: 0 40px 0 0;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #1c1b1f;
  line-height: 1.18;
}

.inquiry-modal__lead {
  margin: 12px 0 20px;
  font-size: 18px;
  line-height: 1.55;
  color: #5f6368;
}

.inquiry-modal__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.inquiry-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f8fafc;
  color: #ffffff;
  border: none;
}

.inquiry-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.inquiry-form {
  position: relative;
}

.inquiry-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 16px;
}

.inquiry-form__field {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 0;
}

.inquiry-form__field--full {
  grid-column: 1 / -1;
}

.inquiry-form__label {
  font-size: 15px;
  font-weight: 600 !important;
  color: #3c4043;
}

.inquiry-form__label em {
  font-style: normal;
  color: #ef4444;
}

.inquiry-form__grid input,
.inquiry-form__grid textarea {
  width: 100%;
  border: 1px solid #cac4d0;
  border-radius: var(--ui-radius-md, 8px);
  padding: 13px 16px;
  font-size: var(--m3-body-large, 16px);
  line-height: 1.5;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  box-sizing: border-box;
}

.inquiry-form__grid input {
  min-height: 52px;
}

.inquiry-form__grid input:focus,
.inquiry-form__grid textarea:focus {
  outline: none;
  border-color: var(--color-primary, #2563eb);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}

.inquiry-form__grid textarea {
  min-height: 148px;
  resize: vertical;
}

.inquiry-form__privacy {
  margin: 18px 0 12px;
  font-size: 16px;
  line-height: 1.55;
  color: #5f6368;
}

.inquiry-form__field--error > .inquiry-form__label {
  color: #b91c1c;
}

.inquiry-form__field--error input,
.inquiry-form__field--error textarea {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.35);
}

.inquiry-form__field--error input:focus,
.inquiry-form__field--error textarea:focus {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.22);
}

.inquiry-form__field-msg {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #b91c1c;
  font-weight: 500;
}

.inquiry-form__captcha-section {
  margin: 0 0 28px;
}

.inquiry-form__captcha-section--error {
  padding: 10px 12px;
  margin-bottom: 10px;
  border-radius: var(--ui-radius-sm, 8px);
  border: 1px solid rgba(239, 68, 68, 0.55);
  background: rgba(254, 242, 242, 0.65);
}

.inquiry-form__privacy a {
  color: var(--color-primary, #2563eb);
  font-weight: 600;
  text-decoration: none;
}

.inquiry-form__privacy a:hover {
  text-decoration: underline;
}

.inquiry-form__status {
  min-height: 1.35em;
  margin: 0 0 14px;
  font-size: 16px;
  color: #5f6368;
}

.inquiry-form__submit {
  width: 100%;
  border: 0;
  border-radius: var(--ui-radius-md, 12px);
  padding: 14px 20px;
  font-size: 17px;
  font-weight: 600;
  min-height: 52px;
  cursor: pointer;
  color: #fff;
  background: var(--color-primary, #2563eb);
  transition: background 0.18s ease;
}

.inquiry-form__submit:hover:not(:disabled) {
  background: var(--color-primary-dark, #1d4ed8);
}

.inquiry-form__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

@media (max-width: 520px) {
  .inquiry-form__grid {
    grid-template-columns: 1fr;
  }
}

.brand-series article {
  min-height: 156px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

/* 右侧悬浮：留言 + 返回顶部 */
.float-dock {
  position: fixed;
  right: max(24px, env(safe-area-inset-right, 0px));
  bottom: max(88px, env(safe-area-inset-bottom, 0px));
  z-index: 55;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
  pointer-events: none;
}

.float-dock__item {
  position: relative;
  pointer-events: auto;
}

.float-dock__item--inquiry {
  display: flex;
  align-items: center;
  animation: floatDockBounce 3.5s ease-in-out infinite;
}

.float-dock__item--inquiry:hover {
  animation-play-state: paused;
}

.float-dock__tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  transform: translateY(10px);
  background: #ffffff;
  color: #334155;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.9);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.float-dock__tooltip-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  background: #f1f5f9;
}

.float-dock__tooltip-text {
  line-height: 1.4;
}

.float-dock__item--inquiry:hover .float-dock__tooltip,
.float-dock__tooltip.float-dock__tooltip--show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.float-dock__badge {
  position: absolute;
  top: 0px;
  right: -2px;
  width: 14px;
  height: 14px;
  background: #ef4444;
  border-radius: 50%;
  border: 2px solid #fff;
  z-index: 2;
}

@keyframes floatDockBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-dock__btn--inquiry {
  width: 56px;
  height: 56px;
  min-height: 56px;
  border-radius: 50%;
  background: var(--color-primary, #2563eb);
  color: #fff;
  border: none;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 0;
}

.float-dock__btn--inquiry:hover {
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.45);
  transform: scale(1.05);
}

.float-dock__btn--inquiry .float-dock__svg {
  width: 32px;
  height: 32px;
}

/* Progress Wrap (Back to Top) */
.progress-wrap {
  position: relative;
  height: 56px;
  width: 56px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(37, 99, 235, 0.1);
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: #fff;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  content: '';
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.05);
  z-index: 1;
  transition: all 0.3s ease;
}

.progress-wrap:hover::after {
  background: var(--color-primary, #2563eb);
}

.progress-wrap svg.progress-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transform: rotate(-90deg);
  pointer-events: none;
}

.progress-wrap svg.progress-circle path {
  fill: none;
  stroke: var(--color-primary, #2563eb);
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 0.1s linear;
}

.progress-wrap .float-dock__svg--arrow {
  position: relative;
  z-index: 3;
  width: 24px;
  height: 24px;
  color: var(--color-primary, #2563eb);
  transition: all 0.3s ease;
}

.progress-wrap:hover .float-dock__svg--arrow {
  color: #fff;
  transform: translateY(-3px);
}


.inquiry-form__captcha-hint {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.5;
  color: #5f6368;
}

.inquiry-form__captcha-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 12px;
  margin: 0 0 12px;
}

.inquiry-form__captcha-imgwrap {
  flex: 0 0 auto;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  background: #f8fafc;
}

.inquiry-form__captcha-img {
  display: block;
  vertical-align: middle;
}

.inquiry-form__captcha-refresh {
  flex: 0 0 auto;
  border: 1px solid #cac4d0;
  background: #fff;
  border-radius: 8px;
  min-height: 52px;
  padding: 0 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-primary, #2563eb);
  cursor: pointer;
}

.inquiry-form__captcha-refresh:hover {
  border-color: rgba(37, 99, 235, 0.45);
}

.inquiry-form__field--captcha {
  flex: 1 1 160px;
  min-width: 140px;
  margin: 0;
}

.inquiry-form__field--captcha input {
  min-height: 52px;
}

.inquiry-form__captcha-row--math .inquiry-form__field--full {
  flex: 1 1 100%;
}

.inquiry-form__math-gif-wrap {
  flex: 0 0 auto;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  background: #f8fafc;
  line-height: 0;
}

.inquiry-form__math-gif {
  display: block;
  vertical-align: middle;
  image-rendering: pixelated;
}

.inquiry-form__captcha-row--slider {
  flex-direction: column;
  align-items: flex-start;
}

.inquiry-slider-rail {
  width: 100%;
  max-width: var(--rail-w, 280px);
}

.inquiry-slider-rail__track {
  position: relative;
  height: 44px;
  background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
  border-radius: 22px;
  border: 1px solid #cbd5e1;
  box-sizing: content-box;
}

.inquiry-slider-rail__notch {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 22px;
  background: rgba(15, 23, 42, 0.14);
  border-radius: 3px;
  pointer-events: none;
  left: 0;
}

.inquiry-slider-rail__knob {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 36px;
  left: 0;
  margin: 0;
  padding: 0;
  border: 2px solid #2563eb;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
  cursor: grab;
  touch-action: none;
}

.inquiry-slider-rail__knob:active {
  cursor: grabbing;
}

.inquiry-success-toast {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 14px;
  z-index: 6;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transform: scale(0.96);
}

.inquiry-success-toast.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.inquiry-success-toast__inner {
  text-align: center;
  padding: 24px 20px;
}

.inquiry-success-toast__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(145deg, #34d399, #059669);
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 12px;
  animation: inquirySuccessPop 0.55s ease;
}

.inquiry-success-toast__title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #1c1b1f;
}

.inquiry-success-toast__sub {
  margin: 8px 0 0;
  font-size: 16px;
  color: #5f6368;
}

@keyframes inquirySuccessPop {
  0% {
    transform: scale(0.4);
    opacity: 0;
  }
  70% {
    transform: scale(1.08);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

.inquiry-form__status.is-success {
  color: #059669;
  font-weight: 600;
}

/* 站点 Logo（后台 site.site_logo / system.logo_url） */
.header-top .brand-logo {
  display: block;
  height: auto;
  max-height: 44px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  vertical-align: middle;
}

/* -------------------------------------------------------------------------- */
/* 首页 + 产品页（仅这两块）大气化放大覆盖：不影响导航/博客/联系页 */
/* -------------------------------------------------------------------------- */

@media (min-width: 901px) {
  body.page-home .mega-wrap {
    min-height: 520px !important;
    max-height: min(82vh, 860px) !important;
  }

  body.page-home .mega-sidebar {
    min-height: 0 !important;
    max-height: min(82vh, 860px) !important;
    overflow-y: auto !important;
  }
  body.page-home .mega-content {
    max-height: min(82vh, 860px) !important;
    overflow-y: auto !important;
  }

  body.page-home .hero-banner,
  body.page-home .banner-item {
    min-height: 650px;
  }

  body.page-home .banner-item {
    padding: 0 !important;
  }

  body.page-home .banner-bg {
    border-radius: 12px !important;
  }

  body.page-home .banner-content {
    max-width: 740px;
    padding-top: 10px;
  }

  body.page-home .banner-item h1 {
    font-size: clamp(3.25rem, 5.8vw, 4.9rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
  }

  body.page-home .banner-item p {
    font-size: clamp(1.22rem, 1.58vw, 1.48rem);
    line-height: 1.62;
  }

  body.page-home .hero-actions .btn-primary,
  body.page-home .hero-actions .btn-ghost {
    min-height: 48px;
    padding-inline: 26px;
    font-size: 16px;
    font-weight: 700;
  }

  body.page-home .hero-models {
    margin-top: 18px;
    font-size: 13px;
    gap: 4px;
  }

  body.page-home .hero-models b {
    font-size: 16px;
  }

  body.page-home .brand-series article {
    min-height: 184px;
    border-radius: 14px;
    padding: 18px 20px;
  }

  body.page-home .brand-series h3 {
    font-size: clamp(1.9rem, 2.5vw, 2.35rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
  }

  body.page-home .brand-series p {
    font-size: 15px;
    line-height: 1.56;
  }

  body.page-home .brand-series a {
    font-size: 15px;
    font-weight: 700;
  }

  body.page-home .trust-strip article {
    min-height: 122px;
    border-radius: 14px;
    padding: 16px;
  }

  body.page-home .trust-strip strong {
    font-size: clamp(1.95rem, 2.45vw, 2.3rem);
  }

  body.page-home .trust-strip span {
    font-size: 15px;
  }

  body.page-home .panel {
    padding: 22px 22px 16px;
  }

  body.page-home .section-title h2 {
    font-size: clamp(2.25rem, 3.2vw, 2.8rem);
    letter-spacing: -0.035em;
  }

  body.page-home .product-grid {
    gap: 24px;
  }

  body.page-home .product-card {
    min-height: 314px;
  }

  body.page-home .product-title {
    font-size: 14px;
    line-height: 1.45;
  }

  body.page-home .product-bottom .mini-btn {
    height: 34px;
    font-size: 13px;
    font-weight: 600;
  }


}

/* 产品列表（分类页） */
.category-page .section-title h2,
.category-page main .section-title h2 {
  font-size: clamp(2rem, 2.8vw, 2.45rem);
  letter-spacing: -0.03em;
}

.category-page {
  grid-template-columns: 268px 1fr;
  gap: 24px;
}

.category-page .category-side {
  border-radius: 14px;
  padding: 10px 0;
}

.category-page .category-side-title {
  padding: 14px 16px;
  font-size: 16px;
}

.category-page .category-side a {
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.4;
}

.category-page .product-grid {
  gap: 22px;
}

.category-page .product-card {
  min-height: 304px;
}

.category-page .product-title {
  font-size: 14px;
  line-height: 1.45;
}

.category-page .category-toolbar {
  min-height: 48px;
  margin-bottom: 14px;
}

.category-page .category-toolbar span {
  font-size: 13px;
}

@media (max-width: 980px) {
  .category-page {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* 产品详情页 */
.detail-page--product {
  gap: 34px;
}

.detail-page--product .detail-gallery--elevated,
.detail-page--product .detail-info--elevated {
  border-radius: 20px;
  padding: 24px;
}

.detail-page--product .detail-info__title {
  margin-bottom: 14px;
  font-size: clamp(2.15rem, 2.9vw, 2.65rem) !important;
  line-height: 1.16 !important;
  letter-spacing: -0.02em;
}

.detail-page--product .detail-sku {
  margin-bottom: 18px !important;
  font-size: 16px;
}

.detail-page--product .detail-tags {
  gap: 10px;
  margin-bottom: 24px;
}

.detail-page--product .detail-tags span {
  font-size: 13px;
  padding: 7px 13px;
}

.detail-page--product .detail-price-card {
  padding: 18px 20px;
  margin-bottom: 24px;
}

.detail-page--product .detail-price-hint {
  margin-top: 14px;
  font-size: 14px;
}

.detail-page--product .spec-table--product {
  margin-bottom: 26px;
}

.detail-page--product .spec-table--product > div {
  grid-template-columns: 164px 1fr;
  padding: 14px 18px;
  min-height: 56px;
}

.detail-page--product .spec-table--product dt,
.detail-page--product .spec-table--product dd {
  font-size: 16px;
}

.detail-page--product .detail-actions--lg .btn-primary,
.detail-page--product .detail-actions--lg .btn-ghost {
  min-height: 56px;
  padding: 0 30px;
  font-size: 17px;
}

.detail-page--product .detail-tabs--pill {
  gap: 10px;
  padding: 7px;
  margin-bottom: 24px;
}

.detail-page--product .detail-tabs--pill button {
  padding: 11px 22px;
  font-size: 15px;
}

/* -------------------------------------------------------------------------- */
/* Contact 合一页：大气版（page-about / page-contact / page-faq）+ 产品详情增强 */
/* -------------------------------------------------------------------------- */

.page-cms-contact .site-main,
body.page-cms-contact .site-main {
  background: linear-gradient(180deg, #f5f5f7 0%, #fafafa 22%, #ffffff 55%, #fbfbfd 100%);
}

/* 主导航与其它内页一致：不覆盖 .header-nav / .nav-inner（全站黑底白字见上文 .header-nav） */

.page-contact-unified {
  /* Apple / Material 混合：中性墨、细线、柔和 elevation */
  --ct-ink: #1d1d1f;
  --ct-ink2: #3a3a3c;
  --ct-muted: #6e6e73;
  --ct-line: rgba(0, 0, 0, 0.06);
  --ct-line2: rgba(0, 0, 0, 0.1);
  --ct-fill: rgba(255, 255, 255, 0.82);
  --ct-blue: #0071e3;
  --ct-blue-g: #1a73e8;
  --ct-sh-1: 0 1px 2px rgba(0, 0, 0, 0.04);
  --ct-sh-2: 0 4px 24px rgba(0, 0, 0, 0.06);
  --ct-sh-3: 0 12px 48px rgba(0, 0, 0, 0.08);
  /* 统一主阅读列与左右边距（全页同一节奏） */
  --ct-read: min(48rem, 100%);
  --ct-gutter-x: clamp(20px, 5vw, 56px);
  scroll-margin-top: 0;
  font-size: clamp(17px, 1.16vw, 20px);
  line-height: 1.7;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--ct-ink2);
}

.page-contact-unified .ui-h2 {
  font-size: clamp(1.95rem, 2.85vw, 2.6rem);
  letter-spacing: -0.03em;
  font-weight: 700;
}

.page-contact-unified .ui-h3 {
  font-size: clamp(1.28rem, 1.6vw, 1.52rem);
  letter-spacing: -0.02em;
  font-weight: 600;
}

.page-contact-unified .ui-body-lg {
  font-size: clamp(1.12rem, 1.25vw, 1.32rem);
}

.page-contact-unified .container {
  max-width: min(1320px, 100%);
  padding-left: var(--ct-gutter-x, clamp(20px, 5vw, 56px));
  padding-right: var(--ct-gutter-x, clamp(20px, 5vw, 56px));
}

.page-contact-unified > section.container.section-block {
  padding-bottom: clamp(40px, 5.5vw, 80px);
}

.page-contact-unified > section.container.section-block ~ section.container.section-block {
  margin-top: clamp(48px, 6vw, 88px);
}

.page-contact-unified .page-contact-grid.section-block {
  margin-top: 0;
  padding-top: clamp(12px, 2vw, 24px);
  padding-bottom: clamp(48px, 7vw, 96px);
}

.page-contact-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
}

.page-contact-anchor-nav a {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: clamp(17px, 1.2vw, 20px);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--ct-ink, #1d1d1f);
  background: var(--ct-fill, rgba(255, 255, 255, 0.82));
  border: 1px solid var(--ct-line, rgba(0, 0, 0, 0.06));
  box-shadow: var(--ct-sh-1, 0 1px 2px rgba(0, 0, 0, 0.04));
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.page-contact-anchor-nav a:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 113, 227, 0.22);
  box-shadow: var(--ct-sh-2, 0 4px 24px rgba(0, 0, 0, 0.06));
}

.page-about-hero {
  position: relative;
  margin-inline: calc(50% - 50vw);
  width: 100vw;
  min-height: clamp(340px, 42vw, 560px);
  display: flex;
  align-items: flex-end;
  padding: 62px 0 58px;
  overflow: hidden;
  color: #0f172a;
}

.page-contact-top-hero {
  /* 合一页顶区块：水平居中 + 顶对齐 + 更高留白 */
  align-items: flex-start;
  justify-content: center;
  min-height: clamp(520px, 62vw, 900px);
  padding-top: clamp(48px, 6vw, 88px);
  padding-bottom: clamp(72px, 8vw, 112px);
}

.page-contact-top-hero .page-about-hero__inner {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 100%;
}

.page-contact-top-hero .page-about-hero__kicker {
  margin-bottom: 16px;
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--ct-muted, #6e6e73);
}

.page-contact-top-hero .page-about-hero__title {
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 5.25rem);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.045em;
  color: var(--ct-ink, #1d1d1f);
  text-shadow: none;
}

.page-contact-top-hero .page-about-hero__metrics {
  justify-content: center;
  gap: 14px 16px;
  margin-bottom: 28px;
}

.page-contact-top-hero .page-contact-anchor-nav {
  justify-content: center;
}

.page-contact-top-hero .page-about-hero__lead {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  max-width: min(38em, 100%);
  font-size: clamp(1.14rem, 1.35vw, 1.42rem);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ct-ink2, #3a3a3c);
}

.page-contact-top-hero .page-about-hero__metrics span {
  min-height: 48px;
  padding: 11px 20px;
  font-size: clamp(15px, 1.12vw, 17px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ct-ink, #1d1d1f);
  background: var(--ct-fill, rgba(255, 255, 255, 0.82));
  border: 1px solid var(--ct-line, rgba(0, 0, 0, 0.06));
  box-shadow: var(--ct-sh-1, 0 1px 2px rgba(0, 0, 0, 0.04));
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
}

/* 面包屑叠在 Contact 顶区渐变 / 网格背景上 */
.page-contact-top-hero .detail-breadcrumb--in-contact-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 0 18px;
  margin: 0;
  font-size: 14px;
  color: var(--ct-muted, #6e6e73);
}

.page-contact-top-hero .detail-breadcrumb--in-contact-hero a {
  color: var(--ct-ink2, #3a3a3c);
  text-decoration: none;
}

.page-contact-top-hero .detail-breadcrumb--in-contact-hero a:hover {
  color: var(--ct-blue-g, #1a73e8);
  text-decoration: none;
}

.page-contact-top-hero .detail-breadcrumb--in-contact-hero .detail-breadcrumb__sep {
  color: rgba(0, 0, 0, 0.22);
}

.page-contact-top-hero .detail-breadcrumb--in-contact-hero .detail-breadcrumb__current {
  color: var(--ct-ink, #1d1d1f);
  font-weight: 600;
}

/* Contact 顶区：更克制的背景（偏 Apple 中性 + 极淡色晕） */
.page-contact-top-hero .page-about-hero__mesh {
  background:
    radial-gradient(ellipse 100% 80% at 10% 0%, rgba(0, 113, 227, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 90% 70% at 95% 10%, rgba(26, 115, 232, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 80% 55% at 50% 100%, rgba(0, 0, 0, 0.03) 0%, transparent 45%),
    linear-gradient(180deg, #fbfbfd 0%, #f5f5f7 38%, #ffffff 100%);
}

.page-contact-top-hero .page-about-hero__mesh::after {
  opacity: 0.4;
  background-size: 72px 72px;
}

.page-contact-top-hero .page-about-hero__glow--a {
  opacity: 0.38;
  filter: blur(96px);
  background: rgba(0, 113, 227, 0.35);
}

.page-contact-top-hero .page-about-hero__glow--b {
  opacity: 0.32;
  filter: blur(96px);
  background: rgba(99, 102, 241, 0.22);
}

.page-about-hero[data-hero-tilt] .page-about-hero__mesh,
.page-about-hero[data-hero-tilt] .page-about-hero__glow,
.page-about-hero[data-hero-tilt] .page-about-hero__inner {
  transition: transform 0.25s ease-out;
  will-change: transform;
}

.page-about-hero[data-hero-tilt] .page-about-hero__inner {
  transform: translate3d(var(--hero-tilt-x, 0px), var(--hero-tilt-y, 0px), 0);
}

.page-about-hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 12% 14%, rgba(56, 189, 248, 0.26) 0%, transparent 56%),
    radial-gradient(ellipse 100% 70% at 92% 8%, rgba(168, 85, 247, 0.24) 0%, transparent 52%),
    radial-gradient(ellipse 85% 62% at 54% 100%, rgba(52, 211, 153, 0.2) 0%, transparent 48%),
    radial-gradient(ellipse 58% 48% at 72% 58%, rgba(251, 188, 4, 0.14) 0%, transparent 44%),
    linear-gradient(145deg, #f8fbff 0%, #eef6ff 42%, #f5f3ff 78%, #eff6ff 100%);
}

.page-about-hero__mesh::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 100%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 100%);
  pointer-events: none;
}

.page-about-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
}

.page-about-hero__glow--a {
  width: min(520px, 55vw);
  height: min(520px, 55vw);
  left: -8%;
  top: -18%;
  background: var(--hub-brand-blue, #7dd3fc);
}

.page-about-hero__glow--b {
  width: min(480px, 50vw);
  height: min(480px, 50vw);
  right: -10%;
  bottom: -25%;
  background: var(--hub-brand-red, #c4b5fd);
}

.page-about-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.page-about-hero__kicker {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #475569;
}

.page-about-hero__title {
  margin: 0 0 14px;
  text-shadow: 0 8px 24px rgba(125, 211, 252, 0.22);
}

.page-about-hero__lead {
  margin: 0 0 28px;
  color: #334155;
  max-width: 56ch;
}

.page-about-hero__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 24px;
}

.page-about-hero__metrics span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 700;
  color: #1e293b;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 8px 20px rgba(14, 116, 144, 0.08);
}

.page-about-story {
  margin-top: -32px;
  position: relative;
  z-index: 2;
}

/* 联系页：与顶区 Banner 拉开，不再负 margin 叠上去 */
.page-contact-unified .page-about-story {
  margin-top: clamp(72px, 9vw, 128px);
}

.page-contact-unified .page-about-story .page-about-h2 {
  text-align: center;
  margin-bottom: clamp(20px, 2.5vw, 28px);
  color: var(--ct-ink, #1d1d1f);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.page-contact-unified .page-about-prose p {
  margin-bottom: clamp(16px, 2vw, 22px);
  font-size: 1.05em;
  line-height: 1.75;
  color: var(--ct-ink2, #3a3a3c);
}

.page-contact-unified .page-about-prose p:last-child {
  margin-bottom: 0;
}

.page-contact-unified .page-about-story .page-about-prose {
  max-width: var(--ct-read, min(48rem, 100%));
  margin-inline: auto;
  text-align: start;
}

.page-about-glass {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.04),
    0 24px 48px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* 联系页：玻璃卡更大留白与圆角（须在 .page-about-glass shorthand 之后） */
.page-contact-unified .page-about-story .page-about-glass {
  border-radius: clamp(24px, 2.5vw, 36px);
  padding: clamp(32px, 5vw, 56px);
  padding-bottom: clamp(36px, 5.5vw, 60px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--ct-line, rgba(0, 0, 0, 0.06));
  box-shadow: var(--ct-sh-1, 0 1px 2px rgba(0, 0, 0, 0.04)), var(--ct-sh-3, 0 12px 48px rgba(0, 0, 0, 0.08));
  backdrop-filter: saturate(200%) blur(24px);
  -webkit-backdrop-filter: saturate(200%) blur(24px);
}

.page-about-h2 {
  margin: 0 0 16px;
  color: #0f172a;
}

.page-about-h2--center {
  text-align: center;
}

.page-about-sub {
  margin: -8px auto 28px;
  max-width: 52ch;
  text-align: center;
  color: #64748b;
  line-height: 1.55;
}

.page-faq-unified__intro {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.page-about-prose p {
  margin: 0 0 14px;
  line-height: 1.7;
  color: #334155;
}

.page-about-prose p:last-child {
  margin-bottom: 0;
}

.page-about-why-wrap {
  margin-top: 20px;
  padding: 56px 0 64px;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 45%, #f1f5f9 100%);
}

.page-about-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.page-about-feature-card {
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 20px;
  padding: 24px 24px 22px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-about-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 46px rgba(37, 99, 235, 0.14);
}

.page-about-feature-card h3 {
  margin: 0 0 10px;
  color: #1e293b;
}

.page-about-feature-card p {
  margin: 0;
  line-height: 1.6;
  color: #64748b;
}

/* 仅联系页：Why / 表单 / FAQ / CTA 区块尺度与留白加大一档 */
.page-contact-unified .page-about-why-wrap {
  margin-top: clamp(40px, 5vw, 72px);
  padding: clamp(80px, 9vw, 140px) 0 clamp(88px, 10vw, 148px);
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f7 42%, #ffffff 100%);
}

.page-contact-unified .page-about-sub {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: min(40rem, 100%);
  text-align: center;
  font-size: clamp(1.08rem, 1.22vw, 1.3rem);
  line-height: 1.62;
  color: var(--ct-muted, #6e6e73);
}

.page-contact-unified .page-about-features {
  gap: clamp(22px, 3vw, 34px);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
}

.page-contact-unified .page-about-feature-card {
  padding: clamp(28px, 3.8vw, 42px);
  border-radius: clamp(22px, 2.4vw, 32px);
  background: #fff;
  border: 1px solid var(--ct-line, rgba(0, 0, 0, 0.06));
  box-shadow: var(--ct-sh-1, 0 1px 2px rgba(0, 0, 0, 0.04)), var(--ct-sh-2, 0 4px 24px rgba(0, 0, 0, 0.06));
  transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.25s ease, border-color 0.2s ease;
}

.page-contact-unified .page-about-feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 113, 227, 0.12);
  box-shadow: var(--ct-sh-1, 0 1px 2px rgba(0, 0, 0, 0.04)), 0 16px 40px rgba(0, 113, 227, 0.1);
}

.page-contact-unified .page-about-feature-card h3 {
  margin-bottom: 14px;
  color: var(--ct-ink, #1d1d1f);
  letter-spacing: -0.02em;
}

.page-contact-unified .page-about-feature-card p {
  font-size: 1.05em;
  line-height: 1.65;
  color: var(--ct-muted, #6e6e73);
}

.page-contact-message-band {
  background: #fff;
  border-block: 1px solid #e2e8f0;
  padding: 8px 0 48px;
}

.page-contact-unified .page-contact-message-band {
  padding: clamp(20px, 2.5vw, 28px) 0 clamp(64px, 8vw, 100px);
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  border-block-color: var(--ct-line, rgba(0, 0, 0, 0.06));
}

.page-contact-unified .page-contact-grid {
  gap: clamp(40px, 5vw, 64px);
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.92fr);
}

.page-contact-unified .page-contact-form-card,
.page-contact-unified .page-contact-aside {
  padding: clamp(32px, 4.2vw, 52px);
  border-radius: clamp(24px, 2.6vw, 34px);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--ct-line, rgba(0, 0, 0, 0.06));
  box-shadow: var(--ct-sh-1, 0 1px 2px rgba(0, 0, 0, 0.04)), var(--ct-sh-3, 0 12px 48px rgba(0, 0, 0, 0.08));
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.page-contact-unified .page-contact-card-title {
  margin-bottom: clamp(20px, 2.2vw, 28px);
  color: var(--ct-ink, #1d1d1f);
  letter-spacing: -0.03em;
}

.page-contact-unified .page-contact-lead-inline {
  margin: -10px 0 clamp(22px, 2.5vw, 30px);
  font-size: 1.06em;
  color: var(--ct-muted, #6e6e73);
}

.page-contact-unified .page-contact-dl dt {
  font-size: 12px;
  margin: 22px 0 8px;
  color: var(--ct-muted, #6e6e73);
  letter-spacing: 0.08em;
}

.page-contact-unified .page-contact-dl dt:first-child {
  margin-top: 0;
}

.page-contact-unified .page-contact-dl dd {
  font-size: 1.05em;
  color: var(--ct-ink2, #3a3a3c);
}

.page-contact-unified .page-contact-dl a {
  color: var(--ct-blue-g, #1a73e8);
}

.page-contact-unified .contact-form-grid {
  gap: 20px 22px;
}

.page-contact-unified .contact-form-grid input,
.page-contact-unified .contact-form-grid textarea {
  padding: 15px 16px;
  font-size: 17px;
  border-radius: 14px;
  border: 1px solid #d2d2d7;
  background: #fff;
  color: var(--ct-ink, #1d1d1f);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-contact-unified .contact-form-grid input:focus,
.page-contact-unified .contact-form-grid textarea:focus {
  border-color: rgba(0, 113, 227, 0.55);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.14);
  outline: none;
}

.page-contact-unified .contact-form-grid textarea {
  min-height: 168px;
}

.page-contact-unified .contact-form-actions {
  margin-top: clamp(24px, 3vw, 32px);
  gap: 16px;
}

.page-contact-unified .contact-form-actions .inquiry-form__submit,
.page-contact-unified .contact-form-actions .btn-ghost {
  min-height: 50px;
  padding-inline: 32px;
  font-size: 17px;
  border-radius: 14px;
}

.page-contact-unified .page-faq-list {
  max-width: var(--ct-read, min(48rem, 100%));
  margin-inline: auto;
}

.page-contact-unified .page-faq-unified .page-about-h2 {
  text-align: center;
}

.page-contact-unified .page-faq-item {
  border-radius: clamp(18px, 2vw, 24px);
  padding: 0 clamp(18px, 2.2vw, 26px);
  margin-bottom: 14px;
  background: #fff;
  border: 1px solid var(--ct-line, rgba(0, 0, 0, 0.06));
  box-shadow: var(--ct-sh-1, 0 1px 2px rgba(0, 0, 0, 0.04)), var(--ct-sh-2, 0 4px 24px rgba(0, 0, 0, 0.06));
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-contact-unified .page-faq-item:hover {
  border-color: rgba(0, 113, 227, 0.14);
  box-shadow: var(--ct-sh-1, 0 1px 2px rgba(0, 0, 0, 0.04)), 0 8px 28px rgba(0, 113, 227, 0.1);
}

.page-contact-unified .page-faq-item summary {
  padding: 22px 8px 22px 0;
  letter-spacing: -0.02em;
  color: var(--ct-ink, #1d1d1f);
}

.page-contact-unified .page-faq-answer {
  padding: 0 8px 22px 0;
  padding-top: 16px;
  font-size: 1.05em;
  color: var(--ct-ink2, #3a3a3c);
  border-top-color: var(--ct-line, rgba(0, 0, 0, 0.06));
}

.page-contact-unified .page-about-cta-strip {
  margin: clamp(56px, 7vw, 90px) auto clamp(72px, 9vw, 112px);
}

.page-contact-unified .page-about-cta-inner {
  padding: clamp(32px, 5vw, 52px);
  border-radius: clamp(26px, 3vw, 36px);
  gap: 28px;
  background: linear-gradient(145deg, #f5f5f7 0%, #eef2ff 42%, #fbfbfd 100%);
  border: 1px solid var(--ct-line, rgba(0, 0, 0, 0.06));
  box-shadow: var(--ct-sh-1, 0 1px 2px rgba(0, 0, 0, 0.04)), var(--ct-sh-3, 0 12px 48px rgba(0, 0, 0, 0.08));
}

.page-contact-unified .page-about-cta-text {
  max-width: 54ch;
  font-size: 1.06em;
  color: var(--ct-ink2, #3a3a3c);
}

.page-contact-unified .page-about-cta-title {
  color: var(--ct-ink, #1d1d1f);
  letter-spacing: -0.03em;
}

.page-contact-unified .page-faq-unified__intro {
  margin-inline: auto;
  max-width: min(40rem, 100%);
  text-align: center;
  color: var(--ct-muted, #6e6e73);
  line-height: 1.62;
}

.page-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.page-contact-form-card,
.page-contact-aside {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.48);
  border-radius: 22px;
  padding: clamp(24px, 3.2vw, 36px);
  box-shadow: 0 20px 52px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.page-contact-card-title {
  margin: 0 0 20px;
  color: #0f172a;
}

.page-contact-lead-inline {
  margin: -12px 0 20px;
  color: #64748b;
  line-height: var(--ui-lh-body);
}

.page-contact-dl {
  margin: 0;
}

.page-contact-dl dt {
  margin: 18px 0 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

.page-contact-dl dt:first-child {
  margin-top: 0;
}

.page-contact-dl dd {
  margin: 0;
  line-height: var(--ui-lh-body);
  color: #1e293b;
}

.page-contact-dl a {
  color: var(--color-primary, #2563eb);
  text-decoration: none;
}

.page-contact-dl a:hover {
  text-decoration: underline;
}

.page-contact-inquiry-wide {
  width: 100%;
  justify-content: center;
}

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

.contact-form-grid .inquiry-form__field--full {
  grid-column: 1 / -1;
}

.contact-form-grid input,
.contact-form-grid textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #b9c7dc;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 16px;
  font-family: var(--font-sans);
  background: #fff;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.contact-form-grid input:focus,
.contact-form-grid textarea:focus {
  border-color: #60a5fa;
  box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.18);
  outline: none;
}

.contact-form-grid textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.contact-form-actions .inquiry-form__submit,
.contact-form-actions .btn-ghost {
  min-height: 46px;
  padding-inline: 26px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .page-contact-unified .contact-form-actions {
    flex-wrap: nowrap;
  }

  .page-contact-unified .contact-form-actions .inquiry-form__submit,
  .page-contact-unified .contact-form-actions .btn-ghost {
    flex: 1 1 0;
    width: auto;
  }
}

.page-cms-contact .btn-primary,
.page-cms-contact .inquiry-form__submit {
  /* background: linear-gradient(135deg, #2563eb 0%, #3b82f6 52%, #06b6d4 100%); */
  border-radius: var(--ui-radius-md, 12px);
  font-weight: 600;
  background: var(--color-primary, #2563eb);
  transition: background 0.18s ease;
  color: #fff;
  /* border: 1px solid rgba(37, 99, 235, 0.45);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.24); */
}

.page-cms-contact .btn-primary:hover,
.page-cms-contact .inquiry-form__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(37, 99, 235, 0.3);
}

.page-cms-contact .btn-ghost,
.page-cms-contact .contact-form-reset {
  border: 1px solid rgba(148, 163, 184, 0.52);
  background: rgba(255, 255, 255, 0.88);
  color: #0f172a;
}

/* 合一页内覆盖：主色偏 Google Material 蓝；层次更收敛 */
.page-contact-unified .btn-primary,
.page-contact-unified .inquiry-form__submit,
.page-contact-unified .contact-form-submit,
.page-contact-unified .page-about-cta-btn {
  border-radius: var(--ui-radius-md, 12px);
  font-weight: 600;
  background: var(--color-primary, #2563eb);
  transition: background 0.18s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06), 0 8px 20px rgba(26, 115, 232, 0.28);
  letter-spacing: -0.015em;
}

.page-contact-unified .btn-primary:hover,
.page-contact-unified .inquiry-form__submit:hover,
.page-contact-unified .contact-form-submit:hover,
.page-contact-unified .page-about-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06), 0 12px 26px rgba(26, 115, 232, 0.34);
}

.page-contact-unified .btn-ghost,
.page-contact-unified .contact-form-reset {
  border: 1px solid var(--ct-line2, rgba(0, 0, 0, 0.1));
  background: rgba(255, 255, 255, 0.72);
  color: var(--ct-ink, #1d1d1f);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.page-faq-unified {
  padding-bottom: 32px;
}

.page-faq-list {
  max-width: 880px;
  margin-inline: auto;
}

.page-faq-item {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.52);
  border-radius: 18px;
  padding: 0 18px;
  margin-bottom: 14px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.page-faq-item:hover {
  border-color: rgba(59, 130, 246, 0.42);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.13);
}

.page-faq-item summary {
  cursor: pointer;
  padding: 16px 8px 16px 0;
  font-weight: 700;
  font-size: var(--ui-fs-h3);
  color: #0f172a;
  list-style: none;
}

.page-faq-item summary::-webkit-details-marker {
  display: none;
}

.page-faq-item[open] {
  padding-bottom: 8px;
}

.page-faq-answer {
  padding: 0 8px 16px 0;
  font-size: var(--ui-fs-body);
  line-height: var(--ui-lh-body);
  color: #475569;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  padding-top: 14px;
}

.page-about-cta-strip {
  margin: 48px auto 64px;
}

.page-about-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(24px, 4vw, 36px);
  border-radius: 24px;
  background: linear-gradient(120deg, #dbeafe 0%, #ede9fe 48%, #f0f9ff 100%);
  color: #0f172a;
  border: 1px solid rgba(148, 163, 184, 0.38);
  box-shadow: 0 18px 44px rgba(30, 64, 175, 0.18);
}

.page-about-cta-title {
  margin: 0 0 8px;
  letter-spacing: 0.04em;
}

.page-about-cta-text {
  margin: 0;
  max-width: 48ch;
  line-height: var(--ui-lh-body);
  color: #334155;
}

#hub-about,
#hub-message,
#hub-faq {
  scroll-margin-top: 96px;
}

/* 产品详情增强 */
.detail-breadcrumb {
  padding-top: 16px;
  padding-bottom: 8px;
  font-size: 14px;
  color: #64748b;
}

.detail-breadcrumb a {
  color: #475569;
  text-decoration: none;
  cursor: pointer;
}

.detail-breadcrumb a:hover {
  color: var(--color-primary, #2563eb);
  text-decoration: none;
}

.detail-breadcrumb__sep {
  margin: 0 6px;
  color: #94a3b8;
}

.detail-breadcrumb__current {
  color: #0f172a;
  font-weight: 600;
}

.detail-page--product {
  gap: 24px;
  align-items: start;
}

.detail-gallery--elevated,
.detail-info--elevated {
  border-radius: 16px;
  padding: clamp(16px, 2vw, 22px);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 20px 50px rgba(15, 23, 42, 0.08);
}

.detail-gallery__stage {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, #f1f5f9, #fff);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

/* 产品内页主图：正方形展示（勿用固定宽×扁高矩形） */
.detail-page--product .detail-gallery__stage #mainImage {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: cover;
  object-position: center;
  display: block;
}

.detail-gallery__stage img:not(.cms-hd-watermark):not(.lcd-quality-badge__img) {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.thumbs--detail img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.thumbs--detail img.active {
  border-color: var(--color-primary, #2563eb);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.25);
}

.detail-product-line {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.detail-info__title {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem) !important;
  line-height: 1.3 !important;
}

.detail-sku {
  margin: 0 0 16px !important;
  font-size: 14px;
  color: #64748b;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.detail-tags span {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(16, 185, 129, 0.1));
  color: #1e40af;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.detail-price-card {
  padding: 16px 18px;
  border-radius: 14px;
  background: linear-gradient(125deg, #f8fafc 0%, #eff6ff 100%);
  border: 1px solid rgba(148, 163, 184, 0.45);
  margin-bottom: 20px;
}

.detail-signin-box {
  margin: 0 !important;
  text-align: center;
  padding: 14px !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  background: #fff !important;
  border: 1px dashed rgba(37, 99, 235, 0.45) !important;
}

.detail-price-hint {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: #64748b;
}

.spec-table--product {
  margin-bottom: 22px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.spec-table--product > div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid #f1f5f9;
  align-items: baseline;
}

.spec-table--product > div:last-child {
  border-bottom: none;
}

.spec-table--product dt {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
}

.spec-table--product dd {
  margin: 0;
  font-size: 14px;
  color: #0f172a;
}

.detail-actions--lg {
  gap: 14px;
}

.detail-actions--lg .btn-primary,
.detail-actions--lg .btn-ghost {
  min-height: 48px;
  padding: 0 28px;
  font-size: 15px;
  font-weight: 600;
}

.detail-tabs-wrap {
  margin-top: 8px;
}

.detail-tabs--pill {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 6px;
  background: #f1f5f9;
  border-radius: 999px;
  margin-bottom: 20px;
}

.detail-tabs--pill button {
  border: none;
  background: transparent;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.detail-tabs--pill button.active {
  background: #fff;
  color: var(--color-primary, #2563eb);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.detail-description {
  padding: 8px 0 24px;
}

.detail-description.hidden {
  display: none;
}

.detail-description h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  color: #0f172a;
}

.detail-description ul {
  margin: 0 0 20px;
  padding-left: 1.2em;
  color: #475569;
  line-height: 1.65;
}

.detail-description img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

@media (max-width: 900px) {
  .page-contact-grid {
    grid-template-columns: 1fr;
  }

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

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

/* ========================================================================== */
/* Google Material Design / Clean Workspace Style Alignment                   */
/* ========================================================================== */

:root {
  /* Google standard web fonts */
  --font-sans: "Google Sans", "Roboto", "Segoe UI", system-ui, -apple-system, sans-serif;
  
  /* Classic Google Blue & Neutral tones */
  --color-primary: #1a73e8;
  --color-primary-dark: #1558d6;
  --color-primary-light: #e8f0fe;
  --ui-card-border: #dadce0;
  
  /* Softer, standard border radii */
  --ui-radius-sm: 4px;
  --ui-radius-md: 8px;
  --ui-radius-lg: 12px;
  
  /* Material Design Elevation Shadows (Adjusted for softer, natural look) */
  --ui-elev-1: 0 2px 8px rgba(15, 23, 42, 0.03), 0 1px 2px rgba(15, 23, 42, 0.02);
  --ui-elev-2: 0 10px 28px rgba(15, 23, 42, 0.06), 0 4px 12px rgba(15, 23, 42, 0.03);

  /* Unified Typography Scale */
  --ui-fs-display: clamp(2.25rem, 4vw, 3rem);
  --ui-fs-h1: clamp(1.75rem, 2.5vw, 2.25rem);
  --ui-fs-h2: clamp(1.375rem, 2vw, 1.75rem);
  --ui-fs-h3: clamp(1.125rem, 1.5vw, 1.25rem);
  --ui-fs-body-lg: 1.125rem;
  --ui-fs-body: 0.875rem;
}

body {
  font-family: var(--font-sans) !important;
  color: #202124 !important;
  letter-spacing: 0.014em !important;
  background: #ffffff !important; /* White background */
}

/* Tidy up Headers */
h1, h2, h3, h4, h5, h6, .ui-display, .ui-h1, .ui-h2, .ui-h3, .section-title h2 {
  font-family: "Google Sans", var(--font-sans) !important;
  color: #202124 !important;
  font-weight: 400 !important; /* Google usually prefers regular weight for large text */
  letter-spacing: normal !important;
}

/* ========================================================================== */
/* Clean Card Styles                                                          */
/* ========================================================================== */
.panel, 
.product-card, 
.blog-grid article, 
.testimonial-slider .swiper-slide, 
.company-feature-grid article, 
.brand-series article, 
.trust-strip article,
.page-wrap .page-card,
.category-side,
.detail-gallery,
.detail-info {
  background: #ffffff !important;
  border: 1px solid var(--ui-card-border) !important;
  border-radius: var(--ui-radius-md) !important;
  box-shadow: none !important;
  transition: transform 0.2s cubic-bezier(0.4, 0.0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0.0, 0.2, 1), border-color 0.2s ease !important;
}

/* Card Hover Elevation (The Material "Lift") */
.panel:hover, 
.product-card:hover, 
.blog-grid article:hover,
.brand-series article:hover {
  transform: translateY(-2px) !important;
  box-shadow: var(--ui-elev-2) !important;
  border-color: transparent !important;
}

.product-card::before, .product-card::after {
  content: none !important; /* Remove legacy decorative dots/sweeps */
}

/* ========================================================================== */
/* Pill-shaped Buttons (Material 3 / Workspace vibe)                          */
/* ========================================================================== */
.btn-primary, 
.search-btn, 
.mini-btn.primary, 
.contact-form-actions .inquiry-form__submit, 
.page-about-cta-btn {
  background-color: var(--color-primary) !important;
  color: #ffffff !important;
  border-radius: 10px !important; /* Pill shape */
  padding: 0 24px !important;
  border: none !important;
  font-family: "Google Sans", var(--font-sans) !important;
  font-weight: 500 !important;
  letter-spacing: 0.25px !important;
  box-shadow: none !important;
  transition: background-color 0.2s, box-shadow 0.2s !important;
}

.btn-primary:hover, 
.search-btn:hover, 
.mini-btn.primary:hover, 
.contact-form-actions .inquiry-form__submit:hover, 
.page-about-cta-btn:hover {
  background-color: var(--color-primary-dark) !important;
  box-shadow: var(--ui-elev-1) !important;
  transform: none !important; /* Override legacy jump */
}

.btn-ghost, 
.mini-btn, 
.contact-form-actions .btn-ghost, 
.contact-form-reset {
  background-color: transparent !important;
  color: var(--color-primary) !important;
  border: 1px solid var(--ui-card-border) !important;
  border-radius: 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  font-family: "Google Sans", var(--font-sans) !important;
  font-weight: 500 !important;
  box-shadow: none !important;
  transition: background-color 0.2s, border-color 0.2s !important;
}

.btn-ghost:hover, 
.mini-btn:hover, 
.contact-form-actions .btn-ghost:hover, 
.contact-form-reset:hover {
  background-color: var(--color-primary-light) !important;
  border-color: transparent !important;
  transform: none !important;
}

/* ========================================================================== */
/* Inputs & Forms                                                             */
/* ========================================================================== */
.search-box {
  border-radius: 10px !important;
  border: 1px solid var(--ui-card-border) !important;
  box-shadow: none !important;
  overflow: hidden;
  transition: border-color 0.2s ease !important;
}

.search-box:focus-within {
  border-color: var(--color-primary) !important;
  /* Material outline approach */
  box-shadow: inset 0 0 0 1px var(--color-primary) !important; 
}

.search-btn {
  border-radius: 0 10px 10px 0 !important;
  padding: 0 18px !important;
  border-left: none !important;
}

.inquiry-form__grid input, 
.inquiry-form__grid textarea, 
.contact-form-grid input, 
.contact-form-grid textarea {
  border: 1px solid var(--ui-card-border) !important;
  border-radius: var(--ui-radius-md) !important;
  color: #202124 !important;
  font-family: var(--font-sans) !important;
}

.inquiry-form__grid input:focus, 
.inquiry-form__grid textarea:focus, 
.contact-form-grid input:focus, 
.contact-form-grid textarea:focus {
  border-color: var(--color-primary) !important;
  box-shadow: inset 0 0 0 1px var(--color-primary) !important;
}

/* ========================================================================== */
/* Detail Adjustments                                                         */
/* ========================================================================== */
.product-title {
  color: #202124 !important;
  font-weight: 500 !important;
  font-size: 0.95rem !important;
  line-height: 1.4 !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 3 !important;
  line-clamp: 3 !important;
  overflow: hidden !important;
}

.product-tag {
  background: #e8f0fe !important;
  color: #1a73e8 !important;
  border-radius: 4px !important;
  font-weight: 500 !important;
  letter-spacing: 0.3px !important;
}

.product-bottom .mini-btn {
  font-size: 0.875rem !important;
}

/* 首页首屏 Banner：与模板主样式统一；不参与 data-reveal/GSAP 整块透明 */
body.page-home .home-top {
  opacity: 1 !important;
  transform: none !important;
  background: #ffffff !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
body.page-home .hero-banner {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid var(--ui-card-border) !important;
}
body.page-home .hero-banner::before {
  content: none !important;
}
/* 仅展示后台 Banner 图，去掉主样式里右侧装饰伪元素挡层 */
body.page-home .hero-banner::after {
  content: none !important;
}
body.page-home .hero-banner-swiper {
  position: relative;
  width: 100%;
}
body.page-home .hero-banner-swiper:not(.swiper-container-initialized) .swiper-slide {
  opacity: 1 !important;
}
body.page-home .hero-banner-swiper .swiper-wrapper {
  align-items: stretch;
}
body.page-home .hero-banner-swiper .swiper-slide {
  width: 100% !important;
}
body.page-home .hero-banner-swiper.hero-native-carousel .swiper-wrapper {
  display: block;
  height: 100%;
}
body.page-home .hero-banner-swiper.hero-native-carousel .swiper-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}
body.page-home .hero-banner-swiper.hero-native-carousel .swiper-slide.swiper-slide-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
body.page-home .hero-banner-swiper .banner-item {
  width: 100% !important;
  display: block !important;
}
body.page-home .hero-banner-swiper .banner-item .banner-bg {
  z-index: 0;
  opacity: 1;
  width: 100% !important;
  max-width: none !important;
  left: 0 !important;
  right: 0 !important;
}
body.page-home .hero-banner-ui {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}
body.page-home .hero-nav {
  position: absolute;
  top: 50%;
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.32);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
body.page-home .hero-nav svg,
.slider-arrow svg {
  display: none !important;
}
body.page-home .hero-nav::before,
.slider-arrow::before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  border: solid currentColor;
  border-width: 0 2.4px 2.4px 0;
}
body.page-home .hero-nav--prev::before,
.slider-arrow.slider-prev::before,
.slider-arrow.category-series-prev::before {
  transform: rotate(135deg);
}
body.page-home .hero-nav--next::before,
.slider-arrow.slider-next::before,
.slider-arrow.category-series-next::before {
  transform: rotate(-45deg);
}
body.page-home .hero-nav--prev {
  left: max(18px, calc((100vw - var(--ui-max-width)) / 2 + 18px));
  transform: translateY(-50%);
}
body.page-home .hero-nav--next {
  right: max(18px, calc((100vw - var(--ui-max-width)) / 2 + 18px));
  transform: translateY(-50%);
}
body.page-home .hero-nav:hover {
  background: rgba(37, 99, 235, 0.86);
}
body.page-home .hero-nav--prev:hover {
  transform: translateY(-50%) translateX(-2px);
}
body.page-home .hero-nav--next:hover {
  transform: translateY(-50%) translateX(2px);
}
body.page-home .hero-banner-pagination {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: auto !important;
  max-width: calc(100% - 48px);
  pointer-events: auto;
  line-height: 1;
  text-align: center;
}
body.page-home .hero-banner-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 !important;
}
body.page-home .hero-banner-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  margin: 0;
  opacity: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  transition: transform 0.2s ease, background 0.2s ease;
}
body.page-home .hero-banner-pagination .swiper-pagination-bullet-active {
  background: #ffffff;
  transform: scale(1.15);
}
body.page-home .hero-banner-pagination .hero-native-bullet {
  display: inline-flex;
  width: 9px;
  height: 9px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  cursor: pointer;
}
body.page-home .hero-banner-pagination .hero-native-bullet.is-active {
  background: #ffffff;
  transform: scale(1.15);
}
body.page-home .banner-item h1,
body.page-home .banner-item p,
body.page-home .hero-models,
body.page-home .hero-models b {
  color: #202124 !important;
  text-shadow: none !important;
}
body.page-home .banner-item p {
  color: #5f6368 !important;
}
.banner-item .badge {
  background: #e8f0fe !important;
  color: #1a73e8 !important;
}

/* ========================================================================== */
/* Footer Redesign (Google Workspace Style)                                   */
/* ========================================================================== */
.footer {
  background: #ffffff !important;
  border-top: 1px solid var(--ui-card-border) !important;
  padding-top: 60px;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 40px !important;
  padding-bottom: 60px !important;
  padding-top: 40px !important;
  border-top: none !important;
}

.footer-col h4, .footer-heading {
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  color: #202124 !important;
  margin-bottom: 24px !important;
  margin-top: 0 !important;
}

.footer-col a, .footer-col p {
  display: block;
  font-size: 0.95rem !important;
  color: #5f6368 !important;
  margin-bottom: 16px !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col-contact .footer-contact-item {
  display: flex;
  margin-bottom: 12px !important;
}

.footer-col-contact .contact-label {
  width: 60px;
  color: #5f6368 !important;
}

.footer-col-contact .contact-text {
  color: #1a1a1a !important;
  margin-bottom: 0 !important;
}

.footer-col-contact .contact-link {
  color: #1a73e8 !important;
}

/* Contact Us 栏内：Email 与 Address 之间的自媒体（与 Inquiry 弹窗同款） */
.footer-contact-social {
  margin: 12px 0 16px;
  min-height: 40px;
}

.footer-col-contact .footer-socials--inline {
  margin-top: 0;
  margin-bottom: 0;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

.footer-col-contact .footer-socials--inline.inquiry-modal__social {
  margin-bottom: 0;
}

.footer-col-contact .footer-socials--inline .inquiry-social__link img {
  display: block;
  vertical-align: middle;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 32px;
}
.inquiry-modal .footer-socials {
  margin-bottom: 36px;
}

.footer-socials .inquiry-social__link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-socials .inquiry-social__link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-qr-img {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.footer-qr-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-col a:hover {
  color: var(--color-primary) !important;
}

/* Social Icons Backgrounds (used for both modal and footer) */
.bg-fb { background-color: #1877f2 !important; color: #fff !important; border: none !important; }
.bg-tw { background-color: #000000 !important; color: #fff !important; border: none !important; }
.bg-in { background-color: #0a66c2 !important; color: #fff !important; border: none !important; }
.bg-ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%) !important; color: #fff !important; border: none !important; }
.bg-yt { background-color: #ff0000 !important; color: #fff !important; border: none !important; }

/* CMS 站点配置 SNS：白标 SVG 需品牌色底（与 resolveFooterSocialSlug 一致） */
a.cms-social {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  overflow: hidden;
  border: none !important;
  text-decoration: none !important;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.12);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
a.cms-social:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.18);
}
a.cms-social .cms-social-icon,
a.cms-social .footer-social-icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  flex-shrink: 0;
}
a.cms-social .cms-social-initial {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
  user-select: none;
}
a.cms-social.cms-social--generic {
  background-color: #ffffff !important;
}
a.cms-social.cms-social--facebook {
  background-color: #1877f2 !important;
}
a.cms-social.cms-social--x {
  background-color: #000000 !important;
}
a.cms-social.cms-social--youtube {
  background-color: #ff0000 !important;
}
a.cms-social.cms-social--linkedin {
  background-color: #0a66c2 !important;
}
a.cms-social.cms-social--instagram {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  ) !important;
}
a.cms-social.cms-social--tiktok {
  background-color: #000000 !important;
}
a.cms-social.cms-social--wechat {
  background-color: #07c160 !important;
}

/* Footer Bottom Strip */
.footer-bottom {
  padding: 20px 0;
  border-top: 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-nav {
  display: flex;
  gap: 24px;
}
.footer-nav a {
  font-size: 0.85rem !important;
  color: #5f6368 !important;
  text-decoration: none;
}
.footer-nav a:hover {
  color: var(--color-primary) !important;
}
.footer-copy {
  font-size: 0.85rem;
  color: #9aa0a6;
  margin: 0;
  padding: 0;
  border-top: none;
}

/* Friendship Links */
.footer-friendship-links {
  background: #f8fafc;
  padding: 10px 0;
  border-top: 1px solid var(--ui-card-border);
}
.footer-friendship-links .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.friendship-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1a1a;
}
.footer-friendship-links a {
  font-size: 0.85rem;
  color: #5f6368;
  text-decoration: none;
}
.footer-friendship-links a:hover {
  color: var(--color-primary);
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .footer-bottom-inner {
    flex-direction: column-reverse;
    text-align: center;
    justify-content: center;
  }
  .footer-nav {
    justify-content: center;
    flex-wrap: wrap;
  }
  .footer-copy {
    text-align: center !important;
  }
}
@media (max-width: 500px) {
  .footer-main {
    grid-template-columns: 1fr !important;
  }
}

:root {
  /* 内容区加宽，便于产品正方形封面与多列栅格（非删需求，仅满足展示） */
  --ui-max-width: 1680px;
  --font-sans: "Google Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body {
  font-family: var(--font-sans) !important;
  color: #1a1a1a !important;
  background: #ffffff !important;
  overflow-x: hidden;
}

.site-wrap {
  overflow-x: hidden;
}

.container {
  max-width: var(--ui-max-width) !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
}

/* Home Band Alternating Colors */
.home-band {
  width: 100%;
  padding: 80px 0;
}
.home-band--white { background-color: #ffffff; }
.home-band--gray { background-color: #f4f5f7; }
.home-band--light { background-color: #f9fafb; }
.home-band--promo {
  background: linear-gradient(180deg, #fffbeb 0%, #fff7ed 100%);
}

.trust-strip-wrap {
  margin-top: 8px;
  margin-bottom: 8px;
}

.home-promo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  align-items: stretch;
}
.home-promo-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #f59e0b33;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 18px rgba(180, 83, 9, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.home-promo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(180, 83, 9, 0.12);
}
.home-promo-card__media {
  aspect-ratio: 16 / 9;
  background: #fff7ed;
  overflow: hidden;
}
.home-promo-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-promo-card__body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.home-promo-card__title {
  font-weight: 700;
  font-size: 15px;
  color: #9a3412;
  line-height: 1.35;
}
.home-promo-card__sub {
  font-size: 13px;
  color: #78716c;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
.home-promo-fallback {
  margin: 12px 0 0;
  font-size: 14px;
  color: #78716c;
}
.home-promo-fallback a {
  color: #c2410c;
  font-weight: 600;
}

body.page-home .banner-content h1 {
  font-size: clamp(3.5rem, 5vw, 4.5rem) !important;
  font-weight: 700 !important;
  color: #1a73e8 !important; /* Make it pop like Google */
  line-height: 1.1 !important;
  margin-bottom: 24px !important;
}
body.page-home .banner-content p {
  font-size: 1.25rem !important;
  color: #5f6368 !important;
  margin-bottom: 32px !important;
}
.banner-item .badge {
  background: linear-gradient(135deg, #1a73e8, #8ab4f8) !important;
  color: #ffffff !important;
  padding: 8px 16px !important;
  font-size: 1rem !important;
  border-radius: 8px !important;
}

/* 首页 Banner 下：金刚区 Swiper（数据来自区块 shouyejinggangqu） */
.home-recommend-channels {
  margin-top: 22px;
  margin-bottom: 54px;
  position: relative;
  z-index: 2;
}
.home-recommend-channels .home-diamond-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.home-recommend-channels .home-diamond-title h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.6vw, 2.3rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}
.home-recommend-channels .home-diamond-title a {
  color: #2563eb;
  font-weight: 700;
  text-decoration: none;
}
.home-recommend-channels .category-series-toolbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 14px;
}
.home-recommend-channels .category-series-slider {
  padding-bottom: 24px;
  overflow: hidden;
}
.home-recommend-channels .category-series-slider .swiper-slide {
  height: auto;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.home-recommend-channels .series-card {
  background: #fff;
  border: 1px solid #e7ebf3;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 315px;
  box-shadow: 0 6px 24px rgba(19, 35, 72, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.home-recommend-channels .series-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(19, 35, 72, 0.12);
}
.home-recommend-channels .series-card__top {
  text-align: center;
  padding: 22px 18px 14px;
  flex: 1 1 auto;
}
.home-recommend-channels .series-card__top h3 {
  margin: 0 0 8px;
  font-size: clamp(1.18rem, 1.6vw, 1.55rem);
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
}
.home-recommend-channels .series-card__top p {
  margin: 0 0 16px;
  color: #8b92a3;
  font-size: 13px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
.home-recommend-channels .series-card__cta {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 999px;
  border: 1px solid rgba(36, 86, 219, 0.35);
  color: #2456db;
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.home-recommend-channels .series-card__cta:hover {
  border-color: #2456db;
}
.home-recommend-channels .series-card__bottom {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 1.08 / 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.home-recommend-channels .series-card__go {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(70px, 10vw, 118px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.16);
  letter-spacing: -0.06em;
  pointer-events: none;
  font-family: Arial, Helvetica, sans-serif;
}
.home-recommend-channels .series-card__bottom .series-img {
  position: absolute;
  inset: 10px;
  z-index: 2;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  max-height: none;
  object-fit: contain;
  margin: 0;
  display: block;
  border-radius: 12px;
}
.home-recommend-channels .swiper-slide:nth-child(4n + 1) .series-card__bottom {
  background: linear-gradient(135deg, #1ea3f6, #3b82f6);
}
.home-recommend-channels .swiper-slide:nth-child(4n + 2) .series-card__bottom {
  background: linear-gradient(135deg, #ff4c4c, #ef4444);
}
.home-recommend-channels .swiper-slide:nth-child(4n + 3) .series-card__bottom {
  background: linear-gradient(135deg, #ffc107, #f59e0b);
}
.home-recommend-channels .swiper-slide:nth-child(4n + 4) .series-card__bottom {
  background: linear-gradient(135deg, #12c56a, #10b981);
}

/* Section Titles */
.home-band .section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px !important;
}
.home-band .section-title--tabs {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.home-band .section-title h2 {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  margin: 0 !important;
}

/* Featured Tabs */
.featured-tabs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.featured-tabs button {
  background: transparent;
  border: 1px solid #dadce0;
  font-size: 1.1rem;
  color: #5f6368;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 16px;
  border-radius: 100px;
  transition: all 0.2s ease;
  height: auto;
}
.featured-tabs button:not(.active):hover {
  background: #f1f3f4;
  color: #202124;
  border-color: #bdc1c6;
}
.featured-tabs button.active {
  background-color: #1a73e8 !important;
  color: #ffffff !important;
  border-color: #1a73e8 !important;
}
.blog-section-head {
  display: grid !important;
  grid-template-columns: 1fr;
  align-items: flex-start;
  justify-items: flex-start;
  text-align: left;
  gap: 14px;
  margin-bottom: 32px !important;
}
.home-band .blog-section-head {
  display: grid !important;
  grid-template-columns: 1fr;
  align-items: flex-start;
  justify-items: flex-start;
  text-align: left;
  gap: 14px;
  margin-bottom: 32px !important;
}
.blog-section-head h2 {
  display: block;
  width: 100%;
  font-size: clamp(2.35rem, 4vw, 3.25rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0 !important;
}
.blog-section-head p {
  display: block;
  width: 100%;
  max-width: 760px;
  margin: 0;
  color: #5f6368;
  font-size: 1.08rem;
  line-height: 1.7;
}
.blog-category-tabs {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
}
.blog-category-tabs a {
  background: transparent;
  border: 1px solid #dadce0;
  color: #5f6368;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  line-height: 1.2;
  text-decoration: none;
  transition: all 0.2s ease;
}
.blog-category-tabs a:not(.active):hover {
  background: #f1f3f4;
  color: #202124;
  border-color: #bdc1c6;
}
.blog-category-tabs a.active {
  background-color: #1a73e8 !important;
  color: #ffffff !important;
  border-color: #1a73e8 !important;
}
.featured-panel.product-grid {
  display: none;
}
.featured-panel.product-grid.is-active {
  display: grid;
}
.featured-loading {
  grid-column: 1 / -1;
  padding: 24px 0;
  color: #6b7280;
  text-align: center;
}

/* Product Cards Restyling */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
/* 显式四列：避免被下方「响应式整站」规则误伤（首页/内页通用） */
.product-grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}
@media (max-width: 1100px) {
  .product-grid.cols-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 768px) {
  .product-grid.cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 500px) {
  .product-grid.cols-4 {
    grid-template-columns: 1fr !important;
  }
}
.product-card {
  background: #ffffff !important;
  border: none !important;
  border-radius: 20px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04) !important;
  padding: 24px !important;
  position: relative;
  text-align: left;
}
/* LCD 质量角标：PNG 置于 /assets/addons/cms/gooyee/images/lcd-quality/{slug}.png */
.lcd-quality-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 3;
  pointer-events: none;
  line-height: 0;
}
.lcd-quality-badge__img {
  display: block;
  width: auto;
  height: auto;
  max-width: 72px;
  max-height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(15, 23, 42, 0.14));
}
.product-cover .lcd-quality-badge__img {
  max-width: 56px !important;
  max-height: 56px !important;
}
.detail-gallery__stage .lcd-quality-badge__img {
  max-width: 96px !important;
  max-height: 96px !important;
}
.channel-focus-hero .lcd-quality-badge__img {
  max-width: 80px !important;
  max-height: 80px !important;
}
.channel-focus-side .lcd-quality-badge__img {
  max-width: 40px !important;
  max-height: 40px !important;
}

/* HD 水印：左上角叠层；限制尺寸避免遮挡主图 */
.cms-hd-watermark {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  pointer-events: none;
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}
.product-cover .cms-hd-watermark {
  width: auto !important;
  height: auto !important;
  max-width: 60px !important;
  max-height: 60px !important;
  object-fit: contain !important;
}
.detail-gallery__stage .cms-hd-watermark {
  width: auto !important;
  height: auto !important;
  max-width: 100px !important;
  max-height: 100px !important;
  object-fit: contain !important;
}
.product-cover {
  position: relative;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden !important;
  border-radius: 12px !important;
  margin-bottom: 20px !important;
}
.product-cover .product-cover__img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  margin-bottom: 0 !important;
}
.product-body {
  align-items: flex-start;
}
.product-tag {
  background: #e6f4ea !important;
  color: #137333 !important;
  padding: 4px 12px !important;
  border-radius: 100px !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  display: inline-block;
  margin-bottom: 12px !important;
  align-self: flex-start;
}
.product-title {
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  color: #1a1a1a !important;
  line-height: 1.4 !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 3 !important;
  line-clamp: 3 !important;
  overflow: hidden !important;
  margin-bottom: 16px !important;
}
.product-bottom {
  margin-top: auto;
}
.text-btn {
  color: #1a73e8 !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

/* Feature Grid 6 items */
.company-feature-grid--6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
  margin-top: 40px;
}
.company-feature-grid--6 article {
  display: flex;
  align-items: center;
  padding: 24px !important;
  background: #ffffff !important;
  border-radius: 20px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04) !important;
  border: 1px solid #f0f0f0 !important;
  min-height: auto !important;
}
.feat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}
.feat-icon svg { width: 28px; height: 28px; color: #ffffff; }
.icon-blue { background: #1a73e8; }
.icon-red { background: #ea4335; }
.icon-yellow { background: #fbbc04; }
.icon-green { background: #34a853; }
.icon-purple { background: #9333ea; }
.icon-orange { background: #f97316; }

.company-feature-grid--6 h4 {
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  margin-bottom: 4px !important;
}
.company-feature-grid--6 p {
  color: #5f6368 !important;
  margin: 0 !important;
  font-size: 0.95rem !important;
}

/* Testimonials (Swiper) */
.testimonial-slider {
  padding-bottom: 24px;
}
.testimonial-slider .swiper-slide {
  background: #ffffff !important;
  padding: 32px !important;
  border-radius: 20px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04) !important;
  height: auto;
}
.slider-arrows {
  display: flex;
  gap: 12px;
}
.slider-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #dadce0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #5f6368;
  transition: all 0.2s ease;
}
.slider-arrow:not(.swiper-button-disabled):hover {
  background: #f8f9fa;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.slider-arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.stars {
  color: #fbbc04;
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-slider p {
  font-size: 1.1rem !important;
  line-height: 1.6 !important;
  color: #1a1a1a !important;
  margin-bottom: 24px !important;
  font-style: italic;
}
.customer-info {
  display: flex;
  align-items: center;
}
.customer-info .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e8f0fe;
  color: #1a73e8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-right: 16px;
}
.customer-info h4 {
  margin: 0 0 4px 0 !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
}
.customer-info span {
  font-size: 0.85rem !important;
  color: #5f6368 !important;
}

/* Blogs */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.blog-card {
  background: #ffffff !important;
  border-radius: 20px !important;
  padding: 12px !important;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04) !important;
  border: 1px solid #f1f5f9 !important;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.blog-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08) !important;
}
.blog-card-img {
  width: 100%;
  height: 190px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.06) rotate(1deg);
}
.blog-card-body {
  padding: 20px 8px 8px !important;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-body h3 {
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  margin: 0 0 12px 0 !important;
  line-height: 1.4 !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-card-body h3 a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s ease;
}
.blog-card:hover .blog-card-body h3 a {
  color: var(--color-primary, #1a73e8);
}
.blog-date {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 24px;
}
.blog-read-more {
  margin-top: auto;
  color: var(--color-primary, #1a73e8);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-read-more .arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
}
.blog-card:hover .blog-read-more .arrow {
  transform: translateX(6px);
}


/* Responsive Restyling */
@media (max-width: 1100px) {
  .brand-series, .product-grid:not(.cols-4), .blog-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .company-feature-grid--6 { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 900px) {
  /* 仅小屏隐藏「导航栏内」桌面 mega，避免与汉堡菜单重复；首页桌面仍用 is-open，不在此断点下展示 */
  .header-nav .nav-inner > .mega-menu {
    display: none !important;
  }
  .footer-main { grid-template-columns: repeat(2, 1fr) !important; }
  .footer-bottom { flex-direction: column; text-align: center; justify-content: center; }
  .footer-copy { text-align: center !important; }
}
@media (max-width: 768px) {
  body.page-home .banner-content h1 { font-size: clamp(2.5rem, 8vw, 3rem) !important; }
  body.page-home .banner-item { min-height: 480px; }
  .brand-series { margin-top: -20px; grid-template-columns: repeat(2, 1fr) !important; }
  .product-grid:not(.cols-4), .blog-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .company-feature-grid--6 { grid-template-columns: 1fr !important; }
  .home-band { padding: 40px 0; }
  .home-band .section-title { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (max-width: 500px) {
  .brand-series, .product-grid:not(.cols-4), .blog-grid { grid-template-columns: 1fr !important; }
  .footer-main { grid-template-columns: 1fr !important; }
}

/* Lozad：不再默认 opacity:0，避免 Swiper/overflow 下 IO 不触发时整页「有 data-src 但永远透明」 */
.lozad {
  transition: opacity 0.28s ease-in-out;
  opacity: 1;
}
.lozad.loaded {
  opacity: 1;
}

/* Override mega menu typography for better hierarchy */
.mega-col a.level-2 {
  color: #1a1a1a;
  font-weight: 700;
  font-size: 14px;
  padding-top: 0;
  margin-bottom: 12px;
}
.mega-col a.level-3 {
  padding-left: 0;
  color: #5f6368;
  font-size: 13px;
  line-height: 2.2;
}
.mega-col a.level-4 {
  padding-left: 12px;
  color: #8b92a3;
  font-size: 12px;
  line-height: 2;
}

/* Custom scrollbar for mega menu */
.mega-sidebar::-webkit-scrollbar,
.mega-content::-webkit-scrollbar {
  width: 4px;
}
.mega-sidebar::-webkit-scrollbar-track,
.mega-content::-webkit-scrollbar-track {
  background: transparent;
}
.mega-sidebar::-webkit-scrollbar-thumb,
.mega-content::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.06);
  border-radius: 4px;
}
.mega-sidebar:hover::-webkit-scrollbar-thumb,
.mega-content:hover::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.15);
}

/* Overrides applied by assistant (Final) */

/* 1. Nav-link blue hover line should be close to text */
.nav-link::after {
  bottom: -2px !important;
}

/* 2. Mega Menu Default Alignment and Width Fixing */
@media (min-width: 901px) {
  /* The menu itself defaults to 240px and aligns perfectly to left edge of relative container */
  .mega-menu {
    left: 0;
    width: 240px !important; 
    border-radius: 0 0 12px 12px !important;
    transition: opacity 0.15s ease, margin-top 0.15s ease !important; /* Removed width from transition to prevent flashing/sliding */
  }
  
  /* When a right pane is active, the menu snaps to 100% width instantly */
  .mega-menu.mega-has-pane {
    width: 100% !important;
  }
  
  /* Make the background wrapper transparent so we don't see a giant white box when the menu expands but content is hidden */
  .mega-wrap {
    background: transparent !important;
    box-shadow: none !important;
  }
  
  /* Apply backgrounds and shadows directly to the visible elements instead */
  .mega-sidebar {
    background: #ffffff !important;
    box-shadow: 0 16px 40px rgba(0,0,0,0.12) !important;
    border-radius: 0 0 12px 12px !important;
  }
  
  .mega-content {
    background: #ffffff !important;
    box-shadow: 16px 16px 40px rgba(0,0,0,0.12) !important;
    border-radius: 0 0 12px 0 !important;
    /* Ensure content only shows when active to avoid white block */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease;
  }
  
  .mega-wrap.has-active-pane .mega-content {
    opacity: 1;
    pointer-events: auto;
  }
}

/* 3. Hide annoying default scrollbars inside the mega menu */
.mega-sidebar::-webkit-scrollbar,
.mega-content::-webkit-scrollbar {
  display: none !important;
}
.mega-sidebar, .mega-content {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

/* 4. 推荐栏目：.home-recommend-channels + .category-series-slider（产品分类 Swiper） */

/* 5. Flat Mega Grid Columns Heights & Font Sizes */
.mega-grid-flat {
  column-count: 4;
  column-gap: 20px;
}
.mega-col-flat {
  break-inside: avoid;
  page-break-inside: avoid;
}
.mega-grid-flat a.level-3 {
  display: block;
  color: #1a1a1a;
  font-size: 14px;
  line-height: 2.2;
  padding: 0;
  margin-bottom: 8px;
}
/* Revert any tiny font overrides for level 3/4 */
.mega-col a.level-3, .mega-col a.level-4 {
  font-size: 14px !important;
  color: #4a5568 !important;
  line-height: 2.4 !important;
}
.mega-col a.level-2 {
  font-size: 15px !important;
  color: #111827 !important;
}

.nav-inner {
  position: relative !important;
}









/* CSS Fixes for Mega Menu */
.mega-sidebar-text { flex: 1; }
.mega-sidebar-arrow {
  color: #9ca3af;
  font-family: monospace;
  font-size: 14px;
  font-weight: bold;
  padding-right: 4px;
  margin-left: auto;
  transition: color 0.2s;
}
.mega-sidebar a:hover .mega-sidebar-arrow,
.mega-sidebar a.active .mega-sidebar-arrow {
  color: #2563eb;
}

.mega-sidebar-img {
  width: 20px !important;
  height: 20px !important;
  object-fit: contain !important;
  border-radius: 4px;
}

.mega-sidebar a {
  grid-template-columns: 22px 1fr auto !important;
}

/* ---------- News / blog article detail ---------- */
.news-detail-breadcrumb .news-detail-breadcrumb__current {
  color: #6b7280;
  font-weight: 500;
}
.news-detail {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.news-detail__header {
  margin-bottom: 28px;
}
.news-detail__meta {
  font-size: 14px;
  color: #6b7280;
  margin: 0 0 12px;
}
.news-detail__title {
  margin: 0 0 16px;
  line-height: 1.25;
}
.news-detail__excerpt {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: #4b5563;
}
.news-detail__cover {
  margin: 0 0 32px;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f4f6;
}
.news-detail__cover img {
  display: block;
  width: 100%;
  height: auto;
}
.cms-rich-text {
  font-size: 16px;
  line-height: 1.75;
  color: #1f2937;
}
.cms-rich-text p {
  margin: 0 0 1em;
}
.cms-rich-text h2,
.cms-rich-text h3 {
  margin: 1.4em 0 0.6em;
  line-height: 1.35;
}
.cms-rich-text img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.cms-rich-text table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
}
.cms-rich-text table td,
.cms-rich-text table th {
  border: 1px solid #e5e7eb;
  padding: 8px 10px;
}

/* Home: topic specials strip */
.home-topic-strip-wrap .section-title {
  margin-bottom: 16px;
}
.home-topic-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.home-topic-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 22px;
  border: 1px solid #e6ebf4;
  border-radius: 12px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.home-topic-card:hover {
  border-color: #2563eb;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
}
.home-topic-card__kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2563eb;
}
.home-topic-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}
.home-topic-card__desc {
  font-size: 13px;
  color: #6b7280;
}
@media (max-width: 640px) {
  .home-topic-strip {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Share block: official sharer URLs, new tab */
.cms-share {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid #e5e7eb;
}
.cms-share__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
  margin-bottom: 14px;
}
.cms-share__title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #111827;
}
.cms-share__url {
  font-size: 12px;
  color: #6b7280;
  word-break: break-all;
  max-width: 100%;
}
.cms-share__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}
.cms-share__links li {
  margin: 0;
}
.cms-share__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 11px;
  font-size: 13px;
  font-weight: 600;
  color: #1d4ed8;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.cms-share__link i {
  font-size: 15px;
  width: 1.25em;
  text-align: center;
  line-height: 1;
}
.cms-share__link:hover {
  background: #dbeafe;
  border-color: #93c5fd;
  color: #1e40af;
}
.cms-share__link--facebook:hover {
  color: #fff;
  background: #1877f2;
  border-color: #1877f2;
}
.cms-share__link--x:hover {
  color: #fff;
  background: #000;
  border-color: #000;
}
.cms-share__link--linkedin:hover {
  color: #fff;
  background: #0a66c2;
  border-color: #0a66c2;
}
.cms-share__link--whatsapp:hover {
  color: #fff;
  background: #25d366;
  border-color: #25d366;
}
.cms-share__link--telegram:hover {
  color: #fff;
  background: #26a5e4;
  border-color: #26a5e4;
}
.cms-share__link--line:hover {
  color: #fff;
  background: #06c755;
  border-color: #06c755;
}
.cms-share__link--reddit:hover {
  color: #fff;
  background: #ff4500;
  border-color: #ff4500;
}
.cms-share__link--pinterest:hover {
  color: #fff;
  background: #bd081c;
  border-color: #bd081c;
}
.cms-share__link--vk:hover {
  color: #fff;
  background: #0077ff;
  border-color: #0077ff;
}
.cms-share__link--ok:hover {
  color: #fff;
  background: #ee8208;
  border-color: #ee8208;
}
.cms-share__link--flipboard:hover {
  color: #fff;
  background: #e12828;
  border-color: #e12828;
}
.cms-share__link--hackernews:hover {
  color: #fff;
  background: #ff6600;
  border-color: #ff6600;
}
.cms-share__link--threads:hover {
  color: #fff;
  background: #101010;
  border-color: #101010;
}
.cms-share__link--bluesky:hover {
  color: #fff;
  background: #1185fe;
  border-color: #1185fe;
}
.cms-share__link--email {
  color: #374151;
  background: #f9fafb;
  border-color: #e5e7eb;
}
.cms-share__link--email:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
  color: #111827;
}
.detail-tabs-wrap + .cms-share {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

/* --------------------------------------------------------------------------
 * Mega：限制总高度 + 一级侧栏可滚；右侧二级区垂直起点随悬停项（--mega-content-top 由 main.js 写入）
 * -------------------------------------------------------------------------- */
@media (min-width: 901px) {
  .mega-wrap {
    max-height: min(78vh, 820px);
  }

  .mega-sidebar {
    max-height: min(78vh, 820px);
    overflow-y: auto !important;
    min-height: 0 !important;
  }

  .mega-content {
    max-height: min(78vh, 820px);
  }

  .mega-wrap.has-active-pane .mega-content {
    display: block !important;
    top: 0 !important;
    height: 100% !important;
    min-height: 220px !important;
    overflow-y: auto !important;
  }
}

.mega-sidebar {
  scrollbar-width: thin !important;
  -ms-overflow-style: auto !important;
}

.mega-sidebar::-webkit-scrollbar {
  width: 6px !important;
  height: 6px !important;
  display: block !important;
}

.mega-sidebar::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.22);
  border-radius: 6px;
}

.mega-content {
  scrollbar-width: thin !important;
  -ms-overflow-style: auto !important;
}

.mega-content::-webkit-scrollbar {
  width: 6px !important;
  display: block !important;
}

.mega-content::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.18);
  border-radius: 6px;
}

/* 首页客户评价：标题行与箭头对齐，避免与 Swiper 导航冲突 */
.home-testimonial-root .section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.home-testimonial-root .section-title h2 {
  margin: 0;
}
.home-testimonial-root .slider-arrows {
  flex-shrink: 0;
}

/* GooYee：首页产品列表四列（arclist 与 grid 正确嵌套）；客户评价 Swiper 宽度 */
body.page-home .home-band .product-grid.cols-4 {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important;
  width: 100%;
}
@media (max-width: 1100px) {
  body.page-home .home-band .product-grid.cols-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 768px) {
  body.page-home .home-band .product-grid.cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
.home-testimonial-root .testimonial-slider.swiper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.home-testimonial-root .testimonial-slider .swiper-wrapper {
  align-items: stretch;
}
.home-testimonial-root .testimonial-slider .swiper-slide {
  box-sizing: border-box;
  height: auto !important;
  flex-shrink: 0;
  width: 35% !important;
  max-width: 35% !important;
}
@media (max-width: 1199px) {
  .home-testimonial-root .testimonial-slider .swiper-slide {
    width: 45% !important;
    max-width: 45% !important;
  }
}
@media (max-width: 899px) {
  .home-testimonial-root .testimonial-slider .swiper-slide {
    width: 72% !important;
    max-width: 72% !important;
  }
}
@media (max-width: 560px) {
  .home-testimonial-root .testimonial-slider .swiper-slide {
    width: 88% !important;
    max-width: 88% !important;
  }
}

/* 产品内页分享条 */
.detail-share--gooyee {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #eef0f4;
}
.detail-share__label {
  font-weight: 600;
  color: #1a1a1a;
}
.detail-share__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.detail-share__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #dadce0;
  background: #fff;
  color: #1a73e8;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
}
.detail-share__btn--ghost {
  color: #5f6368;
}
.detail-share__fav {
  margin-left: auto;
  text-decoration: none;
  color: #ea4335;
  font-weight: 600;
  font-size: 13px;
}








/* 导航一级分类图标样式调整 */
.mega-sidebar .ico.has-img {
  background: transparent !important;
  border-color: transparent !important;
}
.mega-sidebar a:hover .ico.has-img,
.mega-sidebar a.active .ico.has-img {
  background: transparent !important;
  border-color: transparent !important;
}

.mega-sidebar .ico.no-img {
  background: #f3f4f6 !important;
  border: 1px solid #e5e7eb !important;
}
.mega-sidebar a:hover .ico.no-img,
.mega-sidebar a.active .ico.no-img {
  background: #e5e7eb !important;
  border-color: #d1d5db !important;
}

/* =============================================================================
 * CMS Gooyee front templates — extracted from *.html (do not scatter <style>)
 * Scoped with existing page classes where possible.
 * ========================================================================== */

@font-face {
  font-family: "socialshare";
  src: url("../fonts/share/iconfont.eot");
  src: url("../fonts/share/iconfont.eot?#iefix") format("embedded-opentype"),
    url("../fonts/share/iconfont.woff") format("woff"),
    url("../fonts/share/iconfont.ttf") format("truetype"),
    url("../fonts/share/iconfont.svg#iconfont") format("svg");
}

/* ----- Product hub：专题页 + 产品列表（layout_gooyee） ----- */
body.page-product-hub .site-main {
  padding-top: 16px;
}
.product-hub-page {
  margin: 0 auto;
  padding: 0 0 48px;
}
.product-hub-row {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
.product-hub-sidebar-spacer {
  flex: 0 0 240px;
  min-width: 240px;
  width: 240px;
  pointer-events: none;
}
.product-hub-main {
  flex: 1;
  min-width: 0;
}
.product-hub-page .product-hub-row .product-hub-main > .detail-breadcrumb.product-hub-main__crumb {
  padding-top: 0;
}
.product-hub-page > .product-hub-main > .detail-breadcrumb.product-hub-main__crumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  min-height: 40px;
}
.product-hub-main__filters {
  margin-top: 8px;
  margin-bottom: 8px;
}
.product-hub-main .section-block {
  margin-top: var(--space-3, 16px);
}

.product-hub-page .pagination-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 28px;
  padding-top: 8px;
}
.product-hub-page .pagination-wrap .pagination-nav {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.product-hub-page .pagination-wrap .pagination-nav .pagination,
.product-hub-page .pagination-wrap .pagination-nav .pager {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  gap: 8px;
  justify-content: center;
  margin: 0;
  padding: 0 2px 4px;
  align-items: stretch;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}
.product-hub-page .pagination-wrap .pagination li,
.product-hub-page .pagination-wrap .pager li {
  display: flex;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}
.product-hub-page .pagination-wrap .pagination li a,
.product-hub-page .pagination-wrap .pagination li span,
.product-hub-page .pagination-wrap .pager li a,
.product-hub-page .pagination-wrap .pager li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  line-height: 1.2;
}
.product-hub-page .pagination-wrap .pagination li.active span,
.product-hub-page .pagination-wrap .pager li.active span {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}
.product-hub-page .pagination-wrap .pagination-prev a,
.product-hub-page .pagination-wrap .pagination-next a {
  font-weight: 600;
  padding: 0 14px;
}
.product-hub-page .pagination-wrap .pagination-ellipsis span {
  border: none;
  color: #9ca3af;
  min-width: 2rem;
  padding: 0 6px;
  background: transparent;
}
.product-hub-page .pagination-wrap .pagination-disabled span,
.product-hub-page .pagination-wrap .pager li.disabled span {
  color: #9ca3af;
  background: #f9fafb;
  cursor: not-allowed;
}

.product-hub-page .product-filter-panel,
.blog-list-page .product-filter-panel {
  background: #fff;
  border-radius: 12px;
  padding: 16px 20px 12px;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
  transition: opacity 0.2s ease;
}
.product-hub-page .product-filter-panel[aria-busy="true"] {
  opacity: 0.72;
  pointer-events: none;
}
.product-filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px 16px;
  padding: 8px 0;
  border-bottom: 1px solid #f3f4f6;
}
.product-filter-row:last-of-type {
  border-bottom: none;
}
.product-filter-row__label {
  flex: 0 0 auto;
  min-width: 120px;
  font-weight: 700;
  color: #111827;
  font-size: 14px;
  padding-top: 2px;
}
.blog-list-page .product-filter-row__label {
  padding-top: 0;
}
.product-filter-row__opts {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
}
.product-filter-opt {
  font-size: 14px;
  color: #111827;
  text-decoration: none;
  white-space: nowrap;
  padding: 2px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.product-filter-opt:hover {
  color: #2563eb;
}
.product-filter-opt.is-active {
  color: #2563eb;
  font-weight: 600;
  border-bottom-color: #2563eb;
}
.product-filter-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  margin-top: 4px;
}
.product-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #93c5fd;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 13px;
  text-decoration: none;
}
.product-filter-chip:hover {
  background: #dbeafe;
}
.product-filter-chip__x {
  font-weight: 700;
  line-height: 1;
  opacity: 0.8;
}
.product-filter-clear {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  font-size: 13px;
  color: #2563eb;
  text-decoration: none;
}
.product-filter-clear:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .product-hub-row {
    flex-direction: column;
    gap: 20px;
  }
  .product-hub-sidebar-spacer {
    display: none;
  }
  .channel-focus-grid {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 640px) {
  .product-filter-row {
    flex-direction: column;
  }
  .product-filter-row__label {
    min-width: 0;
  }
  .product-filter-clear {
    margin-left: 0;
  }
}

/* ----- 频道产品 focal 网格 ----- */
.channel-product-page {
  padding: 0 0 48px;
}
.channel-product-section {
  margin-top: 24px;
}
.channel-son-block {
  margin-bottom: 40px;
}
.channel-son-block h3 {
  font-size: 1.25rem;
  margin: 0 0 16px;
  color: #111827;
}
.channel-son-block h3 a {
  color: inherit;
  text-decoration: none;
}
.channel-son-block h3 em {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  margin-left: 12px;
}
.channel-son-block h3 em a {
  color: #2563eb;
}
.channel-pager {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  text-align: center;
}
.channel-pager .pager,
.channel-pager .pagination {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: center;
  gap: 8px;
  width: max-content;
  margin: 0 auto;
  padding: 0 2px 4px;
  list-style: none;
}
.channel-pager .pager li,
.channel-pager .pagination li {
  display: flex;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}
.channel-pager .pager li a,
.channel-pager .pager li span,
.channel-pager .pagination li a,
.channel-pager .pagination li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  color: #333;
  font-size: 14px;
  line-height: 1.2;
  text-decoration: none;
}
.channel-pager .pagination li.active span {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}
.channel-pager .pager li.disabled span,
.channel-pager .pagination li.disabled span {
  color: #9ca3af;
  background: #f9fafb;
  cursor: not-allowed;
}

.channel-focus-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  align-items: start;
}
.channel-focus-hero {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}
.channel-focus-hero__ratio {
  display: block;
  aspect-ratio: 16 / 9;
  background: #f3f4f6;
  position: relative;
}
.channel-focus-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.channel-focus-hero__body {
  padding: 12px 14px;
  background: #fff;
}
.channel-focus-hero__title {
  font-size: 16px;
  color: #111827;
}
.channel-focus-side {
  display: grid;
  gap: 12px;
}
.channel-focus-side__link {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
}
.channel-focus-side__thumb {
  position: relative;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}
.channel-focus-side__img {
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}
.channel-focus-side__title {
  font-size: 14px;
  color: #111827;
  line-height: 1.35;
}

/* ----- 资讯列表 ----- */
.blog-list-page {
  padding: 16px 0 48px;
}
.blog-list-page .pagination-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 28px;
  padding-top: 8px;
}
.blog-list-page .pagination-nav {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
}
.blog-list-page .pagination-nav .pagination {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  gap: 8px;
  justify-content: center;
  margin: 0;
  padding: 0 2px 4px;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}
.blog-list-page .pagination-nav .pagination li a,
.blog-list-page .pagination-nav .pagination li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}
.blog-list-page .pagination-nav .pagination li.active span {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}
.blog-list-page .blog-section-head {
  align-items: flex-start;
  justify-items: flex-start;
  text-align: left;
  margin-bottom: 34px !important;
}
.blog-list-page .blog-section-head h2 {
  font-size: clamp(2.35rem, 4vw, 3.25rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.04em;
  line-height: 1.08;
}
.blog-list-page .blog-section-head p {
  max-width: 820px;
  font-size: 1.08rem;
}
.blog-list-page .blog-category-tabs {
  justify-content: flex-start;
  gap: 16px;
  margin-top: 4px;
}
.blog-list-page .blog-category-tabs a {
  background: transparent;
  border: 1px solid #dadce0;
  color: #5f6368;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.blog-list-page .blog-category-tabs a:not(.active):hover {
  background: #f1f3f4;
  color: #202124;
  border-color: #bdc1c6;
}
.blog-list-page .blog-category-tabs a.active {
  background-color: #1a73e8 !important;
  color: #ffffff !important;
  border-color: #1a73e8 !important;
}
.blog-multiple-form {
  margin-top: 12px;
}
.blog-multiple-form .blog-multiple-label {
  font-size: 13px;
  color: #6b7280;
}

/* ----- 文章详情 ----- */
.news-detail .entry-meta {
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  color: #374151;
}
.news-detail .entry-meta ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.news-detail .entry-meta li {
  margin: 8px 0;
  line-height: 1.6;
}
.news-detail .entry-meta a {
  color: #2563eb;
  text-decoration: none;
}
.news-detail .entry-meta a:hover {
  text-decoration: underline;
}
.news-detail .entry-meta .article-prevnext {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #e5e7eb;
}
.news-detail .entry-meta .tag {
  display: inline-block;
  margin-right: 8px;
}

/* ----- Tag 聚合页 ----- */
.tag-gooyee-breadcrumb {
  padding-top: 16px;
  padding-bottom: 0;
}
.tag-gooyee-page {
  padding: 24px 0 48px;
}
.tag-gooyee-page .section-block {
  margin-top: 0;
}
.tag-gooyee-head {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}
.tag-gooyee-kicker {
  margin: 0;
  color: #2563eb;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tag-gooyee-title {
  margin: 0;
  color: #111827;
  font-size: clamp(2.35rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
}
.tag-gooyee-desc {
  max-width: 760px;
  margin: 0;
  color: #6b7280;
  font-size: 1.05rem;
  line-height: 1.7;
}
.tag-gooyee-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 16px;
  margin: 0 0 18px;
}
.tag-gooyee-toolbar .category-order {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.tag-gooyee-toolbar .category-order a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 4px 10px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  color: #374151;
  font-size: 14px;
  text-decoration: none;
  transition:
    color 0.15s,
    border-color 0.15s,
    background 0.15s;
}
.tag-gooyee-toolbar .category-order a:hover {
  color: #2563eb;
  border-color: #bfdbfe;
}
.tag-gooyee-toolbar .category-order a.active {
  color: #fff;
  background: #2563eb;
  border-color: #2563eb;
  font-weight: 600;
}
.tag-gooyee-page .blog-grid {
  margin-top: 0;
}
.tag-gooyee-page .blog-card-body p {
  margin: 8px 0 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}
.tag-gooyee-page .blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-top: 10px;
  color: #6b7280;
  font-size: 13px;
}
.tag-gooyee-page .blog-card-meta a {
  color: #2563eb;
  text-decoration: none;
}
.tag-gooyee-page .blog-card-meta a:hover {
  text-decoration: underline;
}
.tag-gooyee-page .pagination-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 28px;
  padding-top: 8px;
}
.tag-gooyee-page .pagination-nav {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.tag-gooyee-page .pagination-nav .pagination {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  gap: 8px;
  justify-content: center;
  margin: 0;
  padding: 0 2px 4px;
  align-items: stretch;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}
.tag-gooyee-page .pagination-nav .pagination li {
  display: flex;
  align-items: stretch;
}
.tag-gooyee-page .pagination-nav .pagination li a,
.tag-gooyee-page .pagination-nav .pagination li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #333;
  font-size: 14px;
  line-height: 1.2;
  text-decoration: none;
}
.tag-gooyee-page .pagination-nav .pagination li.active span {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}
.tag-gooyee-empty {
  padding: 50px 0;
  text-align: center;
  color: #999;
}
@media (max-width: 640px) {
  .tag-gooyee-toolbar {
    justify-content: flex-start;
  }
}

/* ----- 搜索 ----- */
.search-breadcrumb {
  padding-top: 16px;
  padding-bottom: 0;
}
.search-gooyee {
  padding: 24px 0 48px;
}
.search-gooyee .section-block {
  margin-top: 0;
}
.search-gooyee .section-title {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px;
  text-align: center;
}
.search-gooyee .section-title h2 {
  margin: 0;
}
.search-gooyee .pagination-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 28px;
  padding-top: 8px;
}
.search-gooyee .pagination-wrap .pagination-nav {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.search-gooyee .pagination-wrap .pagination-nav .pagination {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  gap: 8px;
  justify-content: center;
  margin: 0;
  padding: 0 2px 4px;
  align-items: stretch;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}
.search-gooyee .pagination-wrap .pagination li {
  display: flex;
  align-items: stretch;
}
.search-gooyee .pagination-wrap .pagination li a,
.search-gooyee .pagination-wrap .pagination li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  line-height: 1.2;
}
.search-gooyee .pagination-wrap .pagination li.active span {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}
.search-gooyee .pagination-wrap .pagination-prev a,
.search-gooyee .pagination-wrap .pagination-next a {
  font-weight: 600;
  padding: 0 14px;
}
.search-gooyee .pagination-wrap .pagination-ellipsis span {
  border: none;
  color: #9ca3af;
  min-width: 2rem;
  padding: 0 6px;
  background: transparent;
}
.search-gooyee .pagination-wrap .pagination-disabled span {
  color: #9ca3af;
  background: #f9fafb;
  cursor: not-allowed;
}
.search-gooyee .pagination-wrap .pager {
  margin: 0;
  padding: 0;
}
.search-gooyee .pagination-wrap ul.pager {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  gap: 8px;
  justify-content: center;
  align-items: stretch;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2px 4px;
}
.search-gooyee .pagination-wrap ul.pager li {
  display: flex;
  align-items: stretch;
  margin: 0;
}
.search-gooyee .pagination-wrap ul.pager li a,
.search-gooyee .pagination-wrap ul.pager li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  line-height: 1.2;
  background: #fff;
}
.search-gooyee .pagination-wrap ul.pager li.active span {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}
.search-gooyee .pagination-wrap ul.pager li.disabled span {
  color: #9ca3af;
  background: #f9fafb;
  cursor: not-allowed;
}
.search-gooyee .product-grid {
  margin-top: 0;
}

/* 空列表提示（列表 / 搜索 共用） */
.cms-empty-hint {
  padding: 40px 0;
  text-align: center;
  color: #999;
}
.cms-empty-hint--lg {
  padding: 50px 0;
}

/* 首页区块标题（若取消注释即用） */
.home-diamond-title {
  margin-bottom: 16px;
}

/* ----- 文末分享条 cms-share ----- */
.cms-share {
  margin-top: 24px;
  padding: 16px 20px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fafafa;
}
.cms-share__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
  margin-bottom: 12px;
}
.cms-share__title {
  font-weight: 700;
  color: #111827;
}
.cms-share__url {
  font-size: 13px;
  color: #6b7280;
  word-break: break-all;
}
.cms-share .social-share {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-family: "socialshare" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cms-share .social-share * {
  font-family: "socialshare" !important;
}
.cms-share .social-share .social-share-icon {
  --share-brand: #666;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0;
  border-radius: 50%;
  border: 1px solid var(--share-brand) !important;
  color: var(--share-brand) !important;
  background: transparent !important;
  font-size: 22px;
  line-height: 42px;
  text-decoration: none !important;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.cms-share .social-share .social-share-icon:hover {
  background: var(--share-brand) !important;
  border-color: var(--share-brand) !important;
  color: #fff !important;
  text-decoration: none !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.16);
}
.cms-share .social-share .social-share-icon:before {
  color: inherit !important;
}
.cms-share .icon-facebook:before {
  content: "\e620";
}
.cms-share .icon-twitter:before {
  content: "\e697";
}
.cms-share .icon-linkedin:before {
  content: "\e66e";
}
.cms-share .icon-whatsapp:before {
  content: "\e97b";
}
.cms-share .icon-telegram:before {
  content: "\f63a";
}
.cms-share .icon-vk:before {
  content: "\f68a";
}
.cms-share .icon-email:before {
  content: "\f29a";
}
.cms-share .social-share .icon-facebook {
  --share-brand: #44619d;
}
.cms-share .social-share .icon-twitter {
  --share-brand: #000;
}
.cms-share .social-share .icon-linkedin {
  --share-brand: #0077b5;
}
.cms-share .social-share .icon-whatsapp {
  --share-brand: #25d366;
}
.cms-share .social-share .icon-telegram {
  --share-brand: #229ed9;
}
.cms-share .social-share .icon-vk {
  --share-brand: #4d76a1;
}
.cms-share .social-share .icon-email {
  --share-brand: #2563eb;
}
