:root {
  --container-width: 1440px;
  --container-padding: clamp(16px, 3vw, 40px);
}

/* 鍏ㄥ眬閫氱敤甯冨眬瀹瑰櫒 */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

:root {
  --gold: #e5b54d;
  --gold-bright: #ffd978;
  --header-bg: rgba(48, 41, 30, 0.58);
  --header-bg-deep: rgba(36, 31, 23, 0.68);
  --line: rgba(229, 181, 77, 0.42);
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #17130e;
  color: var(--white);
  font-family: "Montserrat", "Poppins", "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

/* -------------------------------------------------------------
   Site Preloader (全屏高质感页面加载动画 - 全站共用，放于 common.css)
------------------------------------------------------------- */
.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #11284b 0%, #0b1d3a 100%);
  color: #ffffff;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: auto;
}

.site-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.preloader-brand {
  margin-bottom: 28px;
  animation: preloaderPulse 2s infinite ease-in-out;
}

.preloader-brand img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(220, 163, 44, 0.3));
}

.preloader-spinner-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
}

.preloader-spinner {
  position: absolute;
  inset: 0;
  border: 3px solid rgba(220, 163, 44, 0.15);
  border-top-color: #dca32c;
  border-radius: 50%;
  animation: preloaderSpin 1s infinite linear;
}

.preloader-spinner-inner {
  position: absolute;
  inset: 8px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-bottom-color: #ffd978;
  border-radius: 50%;
  animation: preloaderSpinReverse 1.5s infinite linear;
}

.preloader-bar-wrap {
  width: 180px;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 14px;
  position: relative;
}

.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #dca32c, #ffd978);
  border-radius: 2px;
  animation: preloaderBar 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.preloader-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

@keyframes preloaderSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes preloaderSpinReverse {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); opacity: 0.92; }
  50% { transform: scale(1.04); opacity: 1; }
}

@keyframes preloaderBar {
  0% { width: 0%; }
  60% { width: 70%; }
  100% { width: 100%; }
}

/* -------------------------------------------------------------
   Header 瀵艰埅鏍?(鍏ㄩ€忔槑+榛勯噾楂樺害+鍗婇€忔槑鐧介噾鍥炬爣+鏋佺畝 Active 鎸囩ず鐏?
------------------------------------------------------------- */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  color: #ffffff;
  background: transparent;
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

/* 椤甸潰涓嬫粦鍚搁《鍥哄畾鐘舵€?(Sticky Active State - scrollY > 50px) */
.site-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid #eaeaea;
  animation: headerSlideDown 0.35s ease forwards;
}

@keyframes headerSlideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.site-header.is-sticky .top-bar {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  border-bottom: 0;
}

.site-header.is-sticky .main-nav {
  background: transparent;
}

.site-header.is-sticky .main-nav__inner {
  min-height: 78px;
}

.site-header.is-sticky .nav-links a {
  color: #1a1c22;
  text-shadow: none;
}

.site-header.is-sticky .nav-links a.is-active,
.site-header.is-sticky .nav-links a:hover {
  color: #dca32c;
}

.site-header.is-sticky .nav-links a.is-active::after {
  background: linear-gradient(90deg, #dca32c, #f5cb66);
  box-shadow: 0 0 8px rgba(220, 163, 44, 0.5);
}

.site-header.is-sticky .brand img {
  mix-blend-mode: multiply;
  filter: brightness(0.95);
}

/* Header 瀹藉睆瀹瑰櫒 */
.header-shell {
  max-width: var(--container-width);
}

/* 1. 椤舵爮 (Top Bar) - 38px 楂樺害 & 閫忔槑搴?*/
.top-bar {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.top-bar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.contact-links,
.social-links {
  display: flex;
  align-items: center;
}

.contact-links {
  gap: 20px;
  font-size: 13.5px;
  font-weight: 500;
  color: #ffffff;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: #ffffff;
  transition: color 0.2s ease;
}

.contact-links a:hover {
  color: #ffd978;
}

.contact-links i {
  color: #ffd978;
  font-size: 14px;
}

.divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.3);
}

/* 绀句氦鍥炬爣 - 鍗婇€忔槑鐧介噾纾ㄧ爞妗?*/
.social-links {
  gap: 10px;
}

.social-links a {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 13px;
  backdrop-filter: blur(4px);
  transition: all 0.25s ease;
}

.social-links a:hover {
  background: #dca32c;
  border-color: #dca32c;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 163, 44, 0.4);
}

/* 2. 涓诲鑸爮 (Main Nav) - 72px 楂樺害 & 閫忔槑搴?*/
.main-nav {
  background: transparent;
  transition: background 0.35s ease;
}

.main-nav__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 3.5vw, 60px);
  transition: min-height 0.3s ease;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  width: clamp(150px, 14vw, 220px);
  overflow: hidden;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
  transition: filter 0.3s ease, mix-blend-mode 0.3s ease;
}

.nav-links {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.5vw, 42px);
  min-width: 0;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
  font-size: clamp(13px, 0.95vw, 15.5px);
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.5px;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  transition: color 0.25s ease;
}

.nav-links a.is-active,
.nav-links a:hover {
  color: #ffd978;
}

/* 含下拉菜单的一级导航项选中态 (如 Products 页) */
.nav-dropdown-link.is-active {
  color: #ffd978;
}

.site-header.is-sticky .nav-dropdown-link.is-active {
  color: #dca32c;
}

/* PC 端二级下拉菜单系统 (Mega PC Dropdown System) */
.nav-dropdown-group {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  font-size: clamp(13px, 0.95vw, 15.5px);
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.5px;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  text-decoration: none;
  transition: color 0.25s ease;
}

.nav-dropdown-group:hover .nav-dropdown-link {
  color: #ffd978;
}

.nav-arrow {
  font-size: 11px;
  opacity: 0.85;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s ease;
}

.nav-dropdown-group:hover .nav-arrow {
  transform: rotate(180deg);
  color: #ffd978;
}

.pc-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: max-content;
  min-width: 300px;
  max-width: 400px;
  background: #ffffff;
  border-radius: 8px;
  border-top: 3.5px solid #dca32c;
  box-shadow: 0 16px 42px rgba(11, 29, 58, 0.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}

.nav-dropdown-group:hover .pc-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px;
}

.dropdown-item {
  display: flex;
  align-items: center;
  padding: 12px 18px;
  border-radius: 6px;
  border-left: 3px solid transparent;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.dropdown-item .item-title {
  color: #0b1d3a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0.2px;
  text-shadow: none;
  text-transform: none;
  transition: color 0.25s ease;
}

.dropdown-item:hover,
.dropdown-item.is-active {
  background: linear-gradient(90deg, rgba(220, 163, 44, 0.14), rgba(245, 203, 102, 0.05));
  border-left-color: #dca32c;
  box-shadow: inset 0 0 0 1px rgba(220, 163, 44, 0.16);
}

.dropdown-item:hover .item-title,
.dropdown-item.is-active .item-title {
  color: #b8860b;
  font-weight: 700;
}

.dropdown-item:hover .item-title::before,
.dropdown-item.is-active .item-title::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 9px;
  border-radius: 50%;
  background: #dca32c;
  vertical-align: 2px;
}

/* 悬停 / 选中项保持辨识，不再位移 */
.dropdown-item:hover,
.dropdown-item.is-active,
.dropdown-item.is-active:hover {
  transform: none;
}

.dropdown-item.is-active:hover {
  background: linear-gradient(90deg, rgba(220, 163, 44, 0.18), rgba(245, 203, 102, 0.08));
}

/* 粘性吸顶 Header 下拉菜单颜色微调 */
.site-header.is-sticky .nav-dropdown-link {
  color: #1a1c22;
  text-shadow: none;
}

.site-header.is-sticky .nav-dropdown-group:hover .nav-dropdown-link {
  color: #dca32c;
}

/* 3. 鏋佺畝 Active 閫変腑鎸囩ず鐏?(24px 灞呬腑鏆栭噾涓嬪垝鑳跺泭鏉? */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #dca32c, #ffd978);
  transform: translateX(-50%);
  opacity: 0;
  transition: width 0.25s ease, opacity 0.25s ease;
}

.nav-links a.is-active::after {
  width: 24px;
  opacity: 1;
  box-shadow: 0 0 10px rgba(255, 217, 120, 0.7);
}

/* 悬停时预览弱化下划线，增强导航反馈层次感 */
.nav-links a:not(.is-active):hover::after {
  width: 24px;
  opacity: 0.45;
}

.nav-links a.is-active::before {
  display: none;
}

/* -------------------------------------------------------------
   閫氱敤妯″潡鏍囬 (Section Heading - 1:1 绮剧‘鍙傜収鎴浘閲嶆瀯)
------------------------------------------------------------- */
.section-heading {
  text-align: center;
  margin-bottom: clamp(34px, 3.8vw, 52px);
}

/* 1. 閲戣壊鍒嗙被灏忔爣棰?(Kicker) */
.section-heading .heading-kicker {
  margin: 0 0 6px;
  color: #f5a623;
  font-size: clamp(13px, 0.95vw, 15px);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* 2. 娣辫棌钃濆姞绮楀ぇ鏍囬 (Main Title) */
.section-heading .heading-title {
  margin: 0 0 16px;
  color: #0b1d3a;
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* 3. 閲戣壊娓愬彉绾?+ 涓ぎ瀹炲績閲戣壊鑿卞舰 (Line with Center Diamond) */
.heading-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 18px;
  width: 100%;
  max-width: 240px;
}

.heading-divider .line-left {
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, #f5a623);
}

.heading-divider .diamond {
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  background: #f5a623;
  transform: rotate(45deg);
  box-shadow: 0 0 8px rgba(245, 166, 35, 0.5);
}

.heading-divider .line-right {
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(-90deg, transparent, #f5a623);
}

/* 4. 鎻忚堪娈佃惤鏂囨 (Description) */
.section-heading .heading-desc {
  margin: 0 auto;
  max-width: 720px;
  color: #666670;
  font-size: clamp(13.5px, 1.05vw, 16px);
  line-height: 1.6;
  font-weight: 400;
}

/* -------------------------------------------------------------
   鍏ㄧ珯缁熶竴鏍囧噯鎸夐挳绯荤粺 (Unified Standard Capsule Button System)
------------------------------------------------------------- */
.btn-primary-capsule {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 44px;
  padding: 0 32px;
  border: 1.5px solid #dca32c;
  border-radius: 22px;
  background: #ffffff;
  color: #dca32c;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(220, 163, 44, 0.12);
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
}

.btn-primary-capsule:hover {
  background: linear-gradient(135deg, #dca32c, #f5cb66);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(220, 163, 44, 0.35);
}

.btn-primary-capsule i {
  font-size: 12px;
  transition: transform 0.25s ease, color 0.25s ease;
}

.btn-primary-capsule:hover i {
  transform: translateX(4px);
  color: #ffffff;
}

.products-action,
.news-action {
  text-align: center;
  margin-top: clamp(38px, 4vw, 56px);
}

/* -------------------------------------------------------------
   Common Responsive Rules
------------------------------------------------------------- */
@media (max-width: 1200px) {
  .top-bar__inner {
    min-height: 42px;
  }

  .main-nav__inner {
    min-height: 72px;
  }

  .nav-links {
    gap: 16px;
  }

  .social-links {
    gap: 10px;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: relative;
    background: var(--header-bg-deep);
  }

  .top-bar__inner,
  .main-nav__inner {
    padding-block: 14px;
  }

  .top-bar__inner,
  .main-nav__inner,
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .contact-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 20px;
    font-size: 14px;
  }

  .divider {
    display: none;
  }

  .brand {
    width: min(78vw, 330px);
  }

  .nav-links {
    flex-basis: 100%;
    gap: 8px 22px;
  }

  .nav-links a {
    padding: 8px 0 14px;
    font-size: 13px;
  }

  .nav-links a.is-active::before {
    width: 72px;
    bottom: 2px;
  }

  .nav-links a.is-active::after {
    display: none;
  }
}

@media (max-width: 560px) {
  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading p {
    width: min(100%, 320px);
    margin-inline: auto;
    line-height: 1.55;
  }

  .header-shell {
    padding-inline: 16px;
  }

  .top-bar__inner {
    gap: 14px;
  }

  .social-links a {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }

  .main-nav__inner {
    min-height: auto;
  }

  .nav-links {
    justify-content: center;
    overflow: visible;
    width: 100%;
    padding-bottom: 4px;
    flex-wrap: wrap;
  }
}

/* -------------------------------------------------------------
   Site Footer (椤佃剼妯″潡 - 鏋佺畝绾櫧 Ultra-Clean Luxury White Theme)
------------------------------------------------------------- */
.site-footer {
  position: relative;
  background: #ffffff;
  color: #2b2d35;
  font-family: inherit;
  overflow: hidden;
  border-top: 1px solid #eaeaea;
}

.footer-top-accent {
  height: 3px;
  background: linear-gradient(90deg, #dca32c 0%, #f5cb66 50%, #dca32c 100%);
}

/* 1. 璁㈤槄鏍?(Newsletter Bar) */
.footer-newsletter {
  padding: clamp(36px, 3.8vw, 54px) 0;
  background: #ffffff;
  border-bottom: 1px solid #f0f0f4;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.newsletter-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.newsletter-icon-wrap {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(220, 163, 44, 0.1);
  border: 1px solid rgba(220, 163, 44, 0.2);
  color: #dca32c;
  font-size: 24px;
}

.newsletter-text h2 {
  margin: 0 0 3px;
  color: #1a1c22;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.newsletter-text h2 span {
  color: #dca32c;
}

.newsletter-text p {
  margin: 0;
  color: #666670;
  font-size: clamp(13px, 0.95vw, 15px);
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 0;
  width: min(100%, 500px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  border-radius: 6px;
  overflow: hidden;
}

.newsletter-form .input-group {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #dcdde4;
  border-right: 0;
  border-radius: 6px 0 0 6px;
}

.newsletter-form .input-icon {
  position: absolute;
  left: 16px;
  color: #dca32c;
  font-size: 15px;
}

.newsletter-form input {
  width: 100%;
  height: 48px;
  padding: 0 16px 0 44px;
  border: 0;
  outline: none;
  background: transparent;
  color: #1a1c22;
  font-size: 14px;
  font-family: inherit;
}

.newsletter-form input::placeholder {
  color: #9999a3;
}

.newsletter-form .submit-btn {
  flex: 0 0 auto;
  height: 48px;
  padding: 0 30px;
  border: 0;
  border-radius: 0 6px 6px 0;
  background: #dca32c;
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(220, 163, 44, 0.25);
  transition: all 0.25s ease;
}

.newsletter-form .submit-btn:hover {
  background: #c89429;
  box-shadow: 0 5px 18px rgba(220, 163, 44, 0.4);
}

/* 2. 绀句氦濯掍綋鍥炬爣琛?(Social Media Row) */
.footer-social-row {
  padding: 34px 0 0;
  text-align: center;
  background: #ffffff;
}

.social-circle-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 30px;
}

.social-circle-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid #e2e4ed;
  background: #ffffff;
  color: #555866;
  font-size: 16px;
  transition: all 0.25s ease;
}

.social-circle-links a:hover {
  border-color: #dca32c;
  background: #dca32c;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(220, 163, 44, 0.3);
}

.footer-divider-line {
  height: 1px;
  background: #eeeeef;
  width: 100%;
}

/* 3. 4 列主导航网格区 (4-Column Main Grid) */
.footer-main-nav {
  padding: 44px 0 48px;
  background: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 42px);
}

.footer-col-title {
  position: relative;
  margin: 0 0 20px;
  padding-bottom: 10px;
  color: #1a1c22;
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.footer-col-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 26px;
  height: 2px;
  background: #dca32c;
  border-radius: 1px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 11px;
}

.footer-links-list li a {
  color: #555866;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  display: inline-block;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links-list li a:hover {
  color: #dca32c;
  transform: translateX(4px);
}

/* 第 4 列 CONTACT US (带竖线分隔) */
.footer-col-contact {
  position: relative;
  padding-left: clamp(16px, 2.5vw, 36px);
  border-left: 1px solid #efeff4;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  color: #555866;
  font-size: 13.5px;
  line-height: 1.5;
}

.footer-contact-list .contact-icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(220, 163, 44, 0.1);
  border: 1px solid rgba(220, 163, 44, 0.2);
  color: #dca32c;
  font-size: 14px;
  margin-top: 1px;
}

.footer-contact-list .contact-text {
  flex: 1 1 auto;
}

.contact-success-page {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(8, 12, 20, 0.58);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.contact-success-page.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-success-page__panel {
  width: min(440px, 100%);
  padding: 38px 34px;
  border-radius: 8px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.contact-success-page__icon {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #dca32c;
  color: #ffffff;
  font-size: 28px;
}

.contact-success-page.is-error .contact-success-page__icon {
  background: #c2410c;
}

.contact-success-page__panel h2 {
  margin: 0 0 10px;
  color: #151923;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
}

.contact-success-page__panel p {
  margin: 0;
  color: #555866;
  font-size: 15px;
  line-height: 1.7;
}

.contact-success-page__panel small {
  display: block;
  margin-top: 16px;
  color: #8a8f9d;
  font-size: 13px;
}

/* 4. 缁熶竴鏋佺畝绾櫧鐗堟潈鏍?(Copyright Bottom Bar) */
.footer-bottom-bar {
  background: #ffffff;
  color: #7b8092;
  padding: 20px 0;
  font-size: 13px;
  border-top: 1px solid #eeeeef;
}

.bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.copyright-text {
  margin: 0;
  color: #7b8092;
}

.legal-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.legal-links a {
  color: #7b8092;
  transition: color 0.2s ease;
}

.legal-links a:hover {
  color: #dca32c;
}

.legal-divider {
  color: #cccccc;
}

/* 5. 鎮诞鍥哄畾蹇嵎鎸夐挳 (Floating Action Buttons) */
.floating-actions {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 0;
  outline: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.float-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.float-whatsapp {
  background: #25D366;
  color: #ffffff;
  font-size: 26px;
}

.float-totop {
  background: linear-gradient(135deg, #f5cb66, #dca32c);
  color: #ffffff;
  font-size: 18px;
}

/* 鍝嶅簲寮忔柇鐐规帶鍒?*/
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-col-contact {
    border-left: 0;
    padding-left: 0;
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .newsletter-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-form {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-col-contact {
    grid-column: span 1;
  }

  .bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* =============================================================
   Mobile Drawer Sidebar System (移动端抽屉式侧边栏导航菜单)
============================================================= */

/* 1. 顶栏汉堡包 toggle 按钮 (现代精美动效) */
.mobile-menu-toggle {
  display: none;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: #ffffff;
  border: 1.5px solid #dca32c;
  border-radius: 8px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(220, 163, 44, 0.18);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-toggle:hover {
  background: rgba(220, 163, 44, 0.08);
  transform: scale(1.04);
}

.hamburger-bar {
  display: block;
  width: 20px;
  height: 2.2px;
  background-color: #0b1d3a;
  border-radius: 4px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, background-color 0.3s ease;
}

/* 点击/打开时的 X 变型转换 */
.mobile-menu-toggle.is-open .hamburger-bar:nth-child(1) {
  transform: translateY(7.2px) rotate(45deg);
  background-color: #dca32c;
}

.mobile-menu-toggle.is-open .hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.mobile-menu-toggle.is-open .hamburger-bar:nth-child(3) {
  transform: translateY(-7.2px) rotate(-45deg);
  background-color: #dca32c;
}

/* 2. 锁定背景页面滚动 */
body.drawer-active {
  overflow: hidden !important;
}

/* 3. 抽屉毛玻璃背景遮罩 */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 29, 58, 0.68);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.42s ease, visibility 0.42s ease;
  z-index: 9998;
}

.mobile-drawer-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* 4. 抽屉侧边栏主体面板 (改在左侧 + 纯白背景) */
.mobile-drawer-panel {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(85vw, 340px);
  background: #ffffff;
  box-shadow: 10px 0 36px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(-105%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 9999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-drawer-panel.is-active {
  transform: translateX(0);
}

/* 抽屉头部 Header */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #f0f1f5;
  background: #ffffff;
}

.drawer-brand img {
  height: 38px;
  width: auto;
  display: block;
}

.drawer-close-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  background: #f8fafc;
  color: #1b2537;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.drawer-close-btn:hover {
  background: #dca32c;
  border-color: #dca32c;
  color: #ffffff;
  transform: rotate(90deg);
}

/* 抽屉导航链接列表与二级菜单层级 */
.drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  flex: 1;
}

.drawer-nav-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.drawer-nav-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.drawer-nav-parent .drawer-nav-item {
  flex: 1;
}

.submenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-right: 12px;
  background: transparent;
  border: 0;
  color: #6b7280;
  font-size: 13px;
  cursor: pointer;
  transition: color 0.25s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.submenu-toggle:hover {
  color: #dca32c;
}

.drawer-nav-group.is-expanded .submenu-toggle {
  transform: rotate(180deg);
  color: #dca32c;
}

.drawer-nav-item {
  display: flex;
  align-items: center;
  padding: 13px 26px;
  color: #2c3647;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.25s ease;
}

.drawer-nav-item:hover,
.drawer-nav-item.is-active {
  color: #dca32c;
  background: rgba(220, 163, 44, 0.08);
  border-left-color: #dca32c;
}

/* 移动端二级子菜单手风琴精细美化 */
.drawer-submenu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 0;
  overflow: hidden;
  background: #f8fafc;
  border-left: 3px solid #cbd5e1;
  margin: 4px 18px 8px 26px;
  padding: 0 10px;
  border-radius: 0 8px 8px 0;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
}

.drawer-nav-group.is-expanded .drawer-submenu {
  max-height: 380px;
  padding: 8px 10px;
  border-left-color: #dca32c;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.03);
}

.drawer-submenu-item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 12px 14px 12px 24px;
  color: #475569;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.22s ease;
}

.drawer-submenu-item::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #94a3b8;
  transition: background 0.2s ease, transform 0.2s ease;
}

.drawer-submenu-item:hover {
  color: #dca32c;
  background: #ffffff;
  padding-left: 26px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.drawer-submenu-item:hover::before {
  background: #dca32c;
  transform: translateY(-50%) scale(1.5);
}

/* 抽屉底部联系信息与 CTA */
.drawer-footer {
  padding: 24px;
  border-top: 1px solid #f0f1f5;
  background: #fdfdfd;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.drawer-contact-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawer-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4b5563;
  font-size: 13.5px;
  text-decoration: none;
  transition: color 0.25s ease;
}

.drawer-contact-row i {
  color: #dca32c;
  font-size: 14px;
}

.drawer-contact-row:hover {
  color: #dca32c;
}

.drawer-cta-btn {
  width: 100%;
  height: 42px;
  font-size: 12.5px;
}

/* 响应式断点显示控制 (< 992px 移动端导航栏：默认纯白背景、Logo 尺寸自适应防换行、汉堡包高亮清晰) */
@media (max-width: 992px) {
  /* 1. 隐藏桌面端 Top Bar 与导航链接 */
  .top-bar {
    display: none !important;
  }

  .nav-links {
    display: none !important;
  }

  /* 2. 移动端 Header & Main Nav 默认显示纯白色背景 */
  .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background: #ffffff !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
    border-bottom: 1px solid #eaeaea !important;
  }

  .main-nav {
    background: #ffffff !important;
    padding: 0 !important;
  }

  .main-nav__inner {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    min-height: 58px !important;
    height: 58px !important;
    padding: 0 16px !important;
    gap: 0 !important;
  }

  /* 3. 彻底解决 .brand 宽度过宽导致换行的问题 */
  .brand {
    flex: 0 1 auto !important;
    width: auto !important;
    max-width: 65% !important;
    min-width: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    margin: 0 !important;
  }

  .brand img {
    height: 32px !important;
    max-height: 32px !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
    mix-blend-mode: normal !important;
    filter: none !important;
  }

  /* 4. 汉堡包按钮：默认状态清晰突出 (暖金边框 + 醒目深色横杠) */
  .mobile-menu-toggle {
    display: flex !important;
    flex: 0 0 auto !important;
    margin-left: auto !important;
    width: 40px !important;
    height: 38px !important;
    padding: 8px 6px !important;
    background: #ffffff !important;
    border: 1.5px solid #dca32c !important;
    border-radius: 6px !important;
    box-shadow: 0 2px 6px rgba(220, 163, 44, 0.15) !important;
  }

  .hamburger-bar {
    display: block !important;
    width: 100% !important;
    height: 2.5px !important;
    background-color: #0b1d3a !important;
    border-radius: 2px !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* 悬停/点击激活时横杠变暖金色 */
  .mobile-menu-toggle:hover .hamburger-bar,
  .mobile-menu-toggle:active .hamburger-bar {
    background-color: #dca32c !important;
  }
}
