:root {
  --primary: #146b47;
  --secondary: #315f73;
  --dark: #142c3a;
  --green: #557f70;
  --cream: #f7fbf9;
  --cream2: #eef3f4;
  --light: #f4f8f4;
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Source Han Sans SC", "Noto Sans CJK SC", "Noto Sans SC", sans-serif;
  color: #444;
  background: #fff;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Source Han Sans SC", "Noto Sans CJK SC", "Noto Sans SC", sans-serif;
  color: var(--dark);
}
a {
  text-decoration: none;
  transition: all 0.3s;
}
img {
  max-width: 100%;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

/* ===================== TOP BAR ===================== */
#topbar {
  background: #111;
  padding: 8px 0;
  font-size: 0.82rem;
}
#topbar span {
  color: #aaa;
  margin-right: 16px;
}
#topbar span i {
  color: var(--secondary);
  margin-right: 5px;
}
#topbar .tsoc a {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 0.75rem;
  margin-left: 5px;
  transition: 0.3s;
}
#topbar .tsoc a:hover {
  background: var(--primary);
  color: #fff;
}
.ttag {
  background: var(--primary);
  color: #fff;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* ===================== NAVBAR ===================== */
#nav {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 990;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  transition: 0.4s;
}
#nav.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.14);
}
.blogo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bico {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  box-shadow: 0 4px 15px rgba(19, 131, 79, 0.35);
}
.bname {
  font-family: "Source Han Sans SC", "Noto Sans CJK SC", "Noto Sans SC", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--dark);
}
.bname span {
  color: var(--primary);
}
.bsub {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #aaa;
}
.navbar-nav .nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: #333 !important;
  padding: 26px 18px !important;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 3px 3px 0 0;
  transition: 0.3s;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 55%;
}
.navbar-nav .nav-link:hover {
  color: var(--primary) !important;
}
/* FIX 1 â€” Search btn in navbar */
#navSearchBtn {
  background: none;
  border: none;
  cursor: pointer;
  color: #555;
  font-size: 1rem;
  padding: 8px 10px;
  border-radius: 8px;
  transition: 0.3s;
}
#navSearchBtn:hover {
  background: rgba(19, 131, 79, 0.08);
  color: var(--primary);
}

.nav-hover-search {
  position: relative;
  display: flex;
  align-items: center;
  height: 42px;
  margin-right: 4px;
}

.nav-hover-search input {
  position: absolute;
  right: 42px;
  width: 0;
  height: 42px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 8px 0 0 8px;
  background: rgba(247, 251, 249, .96);
  color: #23352f;
  font-size: 14px;
  outline: none;
  opacity: 0;
  box-shadow: 0 10px 26px rgba(20, 44, 58, .1);
  transition: width .24s ease, padding .24s ease, opacity .2s ease, border-color .2s ease;
}

.nav-hover-search:hover input,
.nav-hover-search:focus-within input {
  width: 230px;
  padding: 0 14px;
  border-color: rgba(20, 107, 71, .16);
  opacity: 1;
}

.nav-hover-search button {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #555;
  cursor: pointer;
  transition: background .22s ease, color .22s ease, border-radius .22s ease;
}

.nav-hover-search:hover button,
.nav-hover-search:focus-within button {
  border-radius: 0 8px 8px 0;
  background: rgba(20, 107, 71, .1);
  color: #146b47;
}
.nav-cta {
  background: linear-gradient(135deg, var(--primary), #0f6840);
  color: #fff !important;
  border-radius: 8px;
  padding: 10px 20px !important;
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(19, 131, 79, 0.3);
  margin-left: 6px;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(19, 131, 79, 0.4);
}

.navbar .dropdown-toggle::after {
  position: static !important;
  display: inline-block !important;
  width: 0 !important;
  height: 0 !important;
  margin-left: 6px;
  vertical-align: 0.12em;
  background: transparent !important;
  transform: none !important;
  border-top-color: currentColor;
}

.navbar .jl-submenu {
  min-width: 168px;
  padding: 10px;
  border: 1px solid rgba(20, 107, 71, .1);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(20, 44, 58, .12);
}

.navbar .jl-submenu .dropdown-item {
  border-radius: 6px;
  padding: 10px 14px;
  color: #23352f;
  font-size: 15px;
}

.navbar .jl-submenu .dropdown-item:hover,
.navbar .jl-submenu .dropdown-item.active {
  background: rgba(20, 107, 71, .1);
  color: #146b47;
}

@media (min-width: 992px) {
  .navbar .dropdown:hover > .jl-submenu,
  .navbar .dropdown:focus-within > .jl-submenu {
    display: block;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
  }
}

/* ===================== SECTION COMMONS ===================== */
section {
  padding: 88px 0;
}
.slbl {
  font-family: "Source Han Sans SC", "Noto Sans CJK SC", "Noto Sans SC", sans-serif;
  font-size: 1.35rem;
  color: var(--primary);
  display: block;
  margin-bottom: 4px;
}
.stitle {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 12px;
}
.stitle span {
  color: var(--primary);
}
.sline {
  width: 58px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin: 0 auto 12px;
}
.sline.lft {
  margin-left: 0;
}
.sdesc {
  color: #777;
  font-size: 0.93rem;
  line-height: 1.8;
}
.btn-red {
  background: linear-gradient(135deg, var(--primary), #0f6840);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 0.93rem;
  box-shadow: 0 8px 24px rgba(19, 131, 79, 0.35);
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  font-family: "Source Han Sans SC", "Noto Sans CJK SC", "Noto Sans SC", sans-serif;
}
.btn-red:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(19, 131, 79, 0.45);
  color: #fff;
}

/* ===================== HERO ===================== */
#hero {
  background: var(--cream);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hbgtxt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22vw;
  font-weight: 900;
  font-family: "Source Han Sans SC", "Noto Sans CJK SC", "Noto Sans SC", sans-serif;
  color: rgba(0, 0, 0, 0.04);
  pointer-events: none;
  white-space: nowrap;
}
.hs {
  position: absolute;
  border-radius: 50%;
}
.hs1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(19, 131, 79, 0.07), transparent 70%);
  top: -90px;
  right: -80px;
  animation: fsh 8s ease-in-out infinite;
}
.hs2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(49, 95, 115, 0.09),
    transparent 70%
  );
  bottom: -50px;
  left: 8%;
  animation: fsh 10s ease-in-out infinite reverse;
}
@keyframes fsh {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-28px);
  }
}
.hbadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 30px;
  padding: 6px 16px 6px 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 22px;
}
.hbadge .hbi {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.78rem;
}
.hbadge span {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--dark);
}
.htitle {
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
}
.htitle .hl {
  color: var(--primary);
  position: relative;
  display: inline-block;
}
.htitle .hl::before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 7px;
  background: rgba(19, 131, 79, 0.14);
  border-radius: 4px;
  z-index: -1;
}
.hdesc {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  max-width: 470px;
  margin-bottom: 30px;
}
/* FIX 2 â€” Video play button */
.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--dark);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 16px;
  transition: 0.3s;
  cursor: pointer;
}
.btn-play .pico {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  color: var(--primary);
  font-size: 0.95rem;
  transition: 0.3s;
  flex-shrink: 0;
}
.btn-play:hover .pico {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}
.btn-play:hover {
  color: var(--primary);
}
.hstats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.hstat .snum {
  font-family: "Source Han Sans SC", "Noto Sans CJK SC", "Noto Sans SC", sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--dark);
  display: block;
  line-height: 1;
}
.hstat .snum em {
  color: var(--primary);
  font-style: normal;
}
.hstat small {
  font-size: 0.7rem;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sdiv {
  width: 1px;
  background: #ddd;
  height: 38px;
  align-self: center;
}
.hcircle {
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #eef3f4, #dceee4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 28px 76px rgba(19, 131, 79, 0.14);
}
.hcircle img {
  width: 90%;
  height: 90%;
  object-fit: cover;
  border-radius: 50%;
}
.fcard {
  position: absolute;
  background: #fff;
  border-radius: 11px;
  padding: 10px 15px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 9px;
}
.fcard.fc1 {
  top: 55px;
  left: -15px;
  animation: fltc 4s ease-in-out infinite;
}
.fcard.fc2 {
  bottom: 75px;
  right: -25px;
  animation: fltc 4s ease-in-out infinite 1.5s;
}
.fcard.fc3 {
  top: 38%;
  right: -45px;
  animation: fltc 4s ease-in-out infinite 0.8s;
}
@keyframes fltc {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}
.fcoi {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
.fcoi.r {
  background: rgba(19, 131, 79, 0.11);
  color: var(--primary);
}
.fcoi.y {
  background: rgba(49, 95, 115, 0.14);
  color: var(--secondary);
}
.fcoi.g {
  background: rgba(45, 106, 79, 0.11);
  color: var(--green);
}
.fcnum {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--dark);
  display: block;
  line-height: 1;
}
.fcsm {
  font-size: 0.66rem;
  color: #999;
}

/* ===================== MARQUEE ===================== */
.mqsec {
  background: var(--primary);
  padding: 13px 0;
  overflow: hidden;
}
.mqtrack {
  display: flex;
  gap: 38px;
  white-space: nowrap;
  animation: mqrun 22s linear infinite;
}
.mqitem {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 500;
}
.mqitem i {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.55rem;
}
@keyframes mqrun {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===================== CATEGORY ===================== */
#category {
  background: var(--cream);
}
.catcard {
  background: #fff;
  border-radius: 15px;
  padding: 22px 14px;
  text-align: center;
  cursor: pointer;
  transition: 0.4s;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  border: 2px solid transparent;
}
.catcard:hover,
.catcard.active {
  transform: translateY(-7px);
  box-shadow: 0 14px 38px rgba(19, 131, 79, 0.14);
  border-color: var(--primary);
}
.catimg {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  display: block;
  transition: 0.4s;
}
.catcard:hover .catimg {
  transform: scale(1.1) rotate(-4deg);
}
.catnm {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 3px;
}
.catct {
  font-size: 0.73rem;
  color: #bbb;
}

/* ===================== ABOUT ===================== */
#about {
  background: #fff;
}
.astack {
  position: relative;
}
.amain {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.amain img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}
.asm {
  position: absolute;
  bottom: -26px;
  right: -26px;
  width: 170px;
  height: 170px;
  border-radius: 14px;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: var(--shadow);
}
.asm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aexp {
  position: absolute;
  top: 28px;
  left: -16px;
  background: var(--primary);
  color: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(19, 131, 79, 0.4);
}
.aexp .anum {
  font-family: "Source Han Sans SC", "Noto Sans CJK SC", "Noto Sans SC", sans-serif;
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}
.aexp small {
  font-size: 0.7rem;
  opacity: 0.9;
}
.fti {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 18px;
}
.ftico {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: 0.3s;
}
.ftico.r {
  background: rgba(19, 131, 79, 0.1);
  color: var(--primary);
}
.ftico.y {
  background: rgba(49, 95, 115, 0.11);
  color: var(--secondary);
}
.ftico.g {
  background: rgba(45, 106, 79, 0.1);
  color: var(--green);
}
.fti:hover .ftico {
  transform: scale(1.1);
}
.fti h6 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
  font-family: "Source Han Sans SC", "Noto Sans CJK SC", "Noto Sans SC", sans-serif;
}
.fti p {
  font-size: 0.8rem;
  color: #888;
  margin: 0;
  line-height: 1.6;
}

/* ===================== MENU ===================== */
#menu {
  background: var(--light);
}
/* FIX 3 â€” Filter buttons */
.filtbtn {
  border: 2px solid #e5e5e5;
  background: #fff;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: 0.3s;
  margin: 3px;
  font-family: "Source Han Sans SC", "Noto Sans CJK SC", "Noto Sans SC", sans-serif;
}
.filtbtn.active,
.filtbtn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 5px 18px rgba(19, 131, 79, 0.24);
}
.mwrap {
  transition: 0.35s;
}
.mwrap.gone {
  display: none !important;
}
.mcard {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.07);
  cursor: pointer;
}
.mcard:hover {
  transform: translateY(-9px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.13);
}
.mimg {
  position: relative;
  overflow: hidden;
  height: 215px;
  background: var(--cream2);
}
.mimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.mcard:hover .mimg img {
  transform: scale(1.09);
}
.mbdg {
  position: absolute;
  top: 13px;
  left: 13px;
  background: var(--primary);
  color: #fff;
  border-radius: 7px;
  padding: 3px 11px;
  font-size: 0.7rem;
  font-weight: 700;
}
.mbdg.new {
  background: var(--green);
}
.mbdg.hot {
  background: var(--secondary);
  color: var(--dark);
}
/* FIX 4 â€” Heart & Plus buttons stop propagation */
.mhrt {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 2px 9px rgba(0, 0, 0, 0.1);
}
.mhrt:hover {
  color: var(--primary);
  transform: scale(1.18);
}
.mbody {
  padding: 18px;
}
.mcat {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.mtit {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: "Source Han Sans SC", "Noto Sans CJK SC", "Noto Sans SC", sans-serif;
}
.mdesc {
  font-size: 0.78rem;
  color: #aaa;
  margin-bottom: 13px;
  line-height: 1.5;
}
.mfoot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mprice {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  font-family: "Source Han Sans SC", "Noto Sans CJK SC", "Noto Sans SC", sans-serif;
}
.mprice small {
  font-size: 0.72rem;
  font-weight: 400;
  color: #ccc;
  text-decoration: line-through;
  margin-left: 5px;
}
.mstars {
  font-size: 0.73rem;
  color: var(--secondary);
}
/* FIX 4 â€” Plus button opens detail popup */
.madd {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #0f6840);
  border: none;
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 11px rgba(19, 131, 79, 0.28);
}
.madd:hover {
  transform: scale(1.15) rotate(90deg);
}

/* ===================== SPECIAL OFFER ===================== */
#special {
  background: linear-gradient(135deg, #1a0000 0%, #2d0000 100%);
  position: relative;
  overflow: hidden;
}
.spbg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  background: repeating-linear-gradient(
    45deg,
    #fff 0,
    #fff 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 40px 40px;
}
.sptag {
  display: inline-block;
  background: var(--secondary);
  color: var(--dark);
  border-radius: 6px;
  padding: 4px 15px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.sptitle {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}
.sptitle span {
  color: var(--secondary);
}
.spdesc {
  color: rgba(255, 255, 255, 0.62);
  margin: 18px 0;
  font-size: 0.93rem;
  line-height: 1.8;
}
.cdwrap {
  display: flex;
  gap: 14px;
  margin: 26px 0;
}
.cditem {
  text-align: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 11px;
  padding: 13px 18px;
  min-width: 72px;
}
.cdnum {
  font-family: "Source Han Sans SC", "Noto Sans CJK SC", "Noto Sans SC", sans-serif;
  font-size: 2.1rem;
  font-weight: 900;
  color: #fff;
  display: block;
  line-height: 1;
}
.cdlbl {
  font-size: 0.63rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.48);
  margin-top: 3px;
  display: block;
}
.spimgw {
  position: relative;
  text-align: center;
}
.spglow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(49, 95, 115, 0.24),
    transparent 70%
  );
}
.spimgw img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 440px;
  filter: drop-shadow(0 28px 56px rgba(49, 95, 115, 0.28));
  animation: fltimg 5s ease-in-out infinite;
}
@keyframes fltimg {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-17px);
  }
}
.sppbdg {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  background: var(--primary);
  color: #fff;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 24px rgba(19, 131, 79, 0.5);
  animation: plsbdg 2.5s ease-in-out infinite;
}
@keyframes plsbdg {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 12px 34px rgba(19, 131, 79, 0.7);
  }
}
.sppbdg .old {
  font-size: 0.68rem;
  text-decoration: line-through;
  opacity: 0.7;
}
.sppbdg .np {
  font-size: 1.25rem;
  font-weight: 900;
}

/* ===================== GALLERY ===================== */
#gallery {
  background: var(--light);
}
.ggrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 215px);
  gap: 13px;
}
.gitem {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gitem:first-child {
  grid-row: span 2;
}
.gitem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.gitem:hover img {
  transform: scale(1.08);
}
.gover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.76), transparent 60%);
  opacity: 0;
  transition: 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.gitem:hover .gover {
  opacity: 1;
}
.gover span {
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
}
.gover i {
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  border-radius: 0;
  color: #fff;
  background: transparent;
  box-shadow: none;
}

/* ===================== HISTORY â€” FIX 8 ===================== */
#history {
  background: var(--cream);
}
.timeline {
  position: relative;
  padding: 18px 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  top: 0;
  bottom: 0;
}
/* Grid: left-col | dot-col | right-col */
.tli {
  display: grid;
  grid-template-columns: 1fr 36px 1fr;
  margin-bottom: 50px;
  align-items: start;
}
.tl-left {
  padding-right: 32px;
  text-align: right;
}
.tl-center {
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.tl-right {
  padding-left: 32px;
  text-align: left;
}
/* ODD â†’ show LEFT text, hide RIGHT */
.tli:nth-child(odd) .tl-right {
  visibility: hidden;
}
/* EVEN â†’ hide LEFT, show RIGHT */
.tli:nth-child(even) .tl-left {
  visibility: hidden;
}
.tldot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  border: 4px solid #fff;
  box-shadow: 0 0 0 3px rgba(19, 131, 79, 0.3);
  flex-shrink: 0;
}
.tlyear {
  font-family: "Source Han Sans SC", "Noto Sans CJK SC", "Noto Sans SC", sans-serif;
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 3px;
}
.tl-left h5,
.tl-right h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 7px;
  font-family: "Source Han Sans SC", "Noto Sans CJK SC", "Noto Sans SC", sans-serif;
  color: var(--dark);
}
.tl-left p,
.tl-right p {
  font-size: 0.83rem;
  color: #888;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 767px) {
  .timeline::before {
    left: 16px;
  }
  .tli {
    grid-template-columns: 32px 1fr;
    gap: 0;
  }
  .tl-left {
    display: none;
  }
  .tl-right {
    display: block !important;
    visibility: visible !important;
    padding-left: 18px;
    text-align: left;
  }
  .tl-center {
    padding-top: 5px;
  }
  .tli:nth-child(even) .tl-left {
    display: none;
  }
  .tli:nth-child(odd) .tl-right {
    visibility: visible !important;
  }
}

/* ===================== CHEFS ===================== */
#chefs {
  background: #fff;
}
.chcard {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  transition: 0.4s;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
}
.chcard:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow-lg);
}
.chimg {
  position: relative;
  overflow: hidden;
  height: 268px;
  background: var(--cream2);
}
.chimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: 0.5s;
}
.chcard:hover .chimg img {
  transform: scale(1.05);
}
.chsoc {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
  transition: 0.4s;
  padding: 10px 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}
.chcard:hover .chsoc {
  bottom: 0;
}
.chsoc a {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.78rem;
  transition: 0.3s;
}
.chsoc a:hover {
  background: var(--primary);
}
.chbody {
  padding: 18px;
  text-align: center;
}
.chnm {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.chrole {
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.chexp {
  font-size: 0.76rem;
  color: #bbb;
  margin-top: 5px;
}

/* ===================== HOURS ===================== */
#hours {
  background: linear-gradient(135deg, var(--green), #1a4a35);
  position: relative;
  overflow: hidden;
}
.hrsbg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background: repeating-linear-gradient(
    45deg,
    #fff 0,
    #fff 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 28px 28px;
}
.hrscard {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 28px;
}
.hrsrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.hrsrow:last-child {
  border: none;
}
.hrsday {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 500;
}
.hrstime {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}
.hdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.hdot.on {
  background: #4ade80;
  box-shadow: 0 0 7px #4ade80;
}
.hdot.off {
  background: #ff6b6b;
}
.hrscta {
  background: var(--primary);
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 18px 48px rgba(19, 131, 79, 0.4);
}
.hrscta h4 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
}
.hrscta p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  margin: 9px 0 18px;
}
.btnw {
  background: #fff;
  color: var(--primary);
  border-radius: 50px;
  padding: 11px 28px;
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-block;
  transition: 0.3s;
}
.btnw:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  color: var(--primary);
}

/* ===================== TESTIMONIALS ===================== */
#testimonials {
  background: #fff;
}
.tescard {
  background: var(--cream);
  border-radius: 18px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: 0.4s;
}
.tescard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.tesq {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 4.5rem;
  color: rgba(19, 131, 79, 0.07);
  font-family: "Source Han Sans SC", "Noto Sans CJK SC", "Noto Sans SC", sans-serif;
  line-height: 1;
}
.tess {
  color: var(--secondary);
  font-size: 0.83rem;
  margin-bottom: 12px;
}
.testxt {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 18px;
}
.tesauth {
  display: flex;
  align-items: center;
  gap: 11px;
}
.tesauth img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}
.tesnm {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--dark);
  margin-bottom: 1px;
  font-family: "Source Han Sans SC", "Noto Sans CJK SC", "Noto Sans SC", sans-serif;
}
.tesrl {
  font-size: 0.73rem;
  color: #aaa;
}

/* ===================== RESERVATION â€” FIX 5 ===================== */
#reservation {
  background: var(--light);
}
.resico {
  width: 54px;
  height: 54px;
  border-radius: 13px;
  background: rgba(19, 131, 79, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.flbl {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 5px;
  display: block;
}
.fctrl {
  width: 100%;
  border: 2px solid #eee;
  border-radius: 9px;
  padding: 11px 15px;
  font-family: "Source Han Sans SC", "Noto Sans CJK SC", "Noto Sans SC", sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: 0.3s;
  color: var(--dark);
  background: #fff;
  appearance: auto;
}
.fctrl:focus {
  border-color: var(--primary);
}
.fcard {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
}
.sucmsg {
  display: none;
  text-align: center;
  padding: 16px;
  background: rgba(45, 106, 79, 0.07);
  border-radius: 11px;
  margin-top: 14px;
}
.sucmsg i {
  color: var(--green);
  font-size: 1.7rem;
  display: block;
  margin-bottom: 7px;
}
.sucmsg p {
  color: var(--green);
  font-weight: 600;
  margin: 0;
  font-size: 0.88rem;
}

/* ===================== BLOG ===================== */
#blog {
  background: var(--light);
}
.blcard {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}
.blcard:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}
.blimg {
  position: relative;
  height: 195px;
  overflow: hidden;
}
.blimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.blcard:hover .blimg img {
  transform: scale(1.06);
}
.bldatebdg {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: #fff;
  border-radius: 9px;
  padding: 5px 11px;
  text-align: center;
  line-height: 1.2;
}
.bldatebdg .bd {
  font-size: 1.15rem;
  font-weight: 800;
  display: block;
}
.bldatebdg .bm {
  font-size: 0.63rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.blbody {
  padding: 20px;
}
.bltag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 7px;
}
.bltit {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 9px;
  line-height: 1.4;
}
.bltit a {
  color: var(--dark);
}
.bltit a:hover {
  color: var(--primary);
}
.blmeta {
  display: flex;
  gap: 14px;
  font-size: 0.76rem;
  color: #bbb;
  margin-bottom: 13px;
}
.blmeta i {
  color: var(--primary);
  margin-right: 3px;
}
.blmore {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.blmore i {
  transition: 0.3s;
}
.blmore:hover {
  color: var(--dark);
}
.blmore:hover i {
  transform: translateX(5px);
}

/* ===================== NEWSLETTER ===================== */
#newsletter {
  background: linear-gradient(135deg, var(--primary), #8b0000);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.nlbg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='white' stroke-width='.4' opacity='.1'/%3E%3C/svg%3E");
  background-size: 75px;
}
.nlw {
  position: relative;
  z-index: 2;
}
.nlw h2 {
  color: #fff;
  font-size: 2.1rem;
}
/* Newsletter form â€” fixed layout */
.nl-form-wrap {
  display: flex;
  gap: 10px;
  max-width: 560px;
  margin: 0 auto;
  align-items: center;
}
.nlinput {
  flex: 1;
  min-width: 0;
  border: none;
  border-radius: 50px;
  padding: 14px 22px;
  font-size: 0.9rem;
  outline: none;
  font-family: "Source Han Sans SC", "Noto Sans CJK SC", "Noto Sans SC", sans-serif;
  color: #333;
}
.nlbtn {
  flex-shrink: 0;
  background: var(--secondary);
  color: var(--dark);
  border: none;
  border-radius: 50px;
  padding: 14px 26px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.3s;
  font-family: "Source Han Sans SC", "Noto Sans CJK SC", "Noto Sans SC", sans-serif;
}
.nlbtn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}
@media (max-width: 540px) {
  .nl-form-wrap {
    flex-direction: column;
    padding: 0 10px;
  }
  .nlinput {
    width: 100%;
    border-radius: 12px;
  }
  .nlbtn {
    width: 100%;
    border-radius: 12px;
  }
}

/* ===================== CONTACT â€” FIX 6 ===================== */
#contact-section {
  background: #fff;
}
.ctdark {
  background: var(--dark);
  border-radius: 18px;
  padding: 38px;
  height: 100%;
}
.ctdark h4 {
  color: #fff;
  margin-bottom: 7px;
}
.ctdark .ctsub {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  margin-bottom: 26px;
}
.ctitem {
  display: flex;
  gap: 13px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.cticon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: rgba(19, 131, 79, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.ctinfo strong {
  display: block;
  color: #aaa;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 1px;
  font-family: "Source Han Sans SC", "Noto Sans CJK SC", "Noto Sans SC", sans-serif;
}
.ctinfo span {
  color: #fff;
  font-size: 0.87rem;
}
.ctsocrow {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.ctsocrow a {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  transition: 0.3s;
}
.ctsocrow a:hover {
  background: var(--primary);
  color: #fff;
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--dark);
  padding: 68px 0 0;
}
.fnm {
  font-family: "Source Han Sans SC", "Noto Sans CJK SC", "Noto Sans SC", sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: #fff;
}
.fnm span {
  color: var(--primary);
}
.fdesc {
  color: #777;
  font-size: 0.86rem;
  line-height: 1.8;
  margin-top: 9px;
}
.fsoc {
  display: flex;
  gap: 9px;
  margin-top: 18px;
}
.fsoc a {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 0.88rem;
  transition: 0.3s;
}
.fsoc a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}
.ftit {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 9px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  font-family: "Source Han Sans SC", "Noto Sans CJK SC", "Noto Sans SC", sans-serif;
}
.flinks li {
  list-style: none;
  margin-bottom: 9px;
}
.flinks a {
  color: #777;
  font-size: 0.86rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: 0.3s;
}
.flinks a:hover {
  color: var(--secondary);
  padding-left: 5px;
}
.flinks a i {
  color: var(--primary);
  font-size: 0.68rem;
}
.fci {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 14px;
}
.fciico {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: rgba(19, 131, 79, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.82rem;
  flex-shrink: 0;
}
.fciinfo {
  color: #777;
  font-size: 0.83rem;
  line-height: 1.6;
}
.fciinfo strong {
  color: #bbb;
  display: block;
  font-size: 0.77rem;
}
.fbot {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0;
  margin-top: 46px;
}
.fbot p {
  color: #555;
  font-size: 0.8rem;
  margin: 0;
}
.fbot span {
  color: var(--primary);
}
.fbot a {
  color: #555;
  font-size: 0.8rem;
  margin-left: 18px;
}
.fbot a:hover {
  color: var(--secondary);
}

/* ===================== UTILITIES ===================== */
#btt {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9990;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--primary), #0f6840);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 6px 18px rgba(19, 131, 79, 0.38);
  opacity: 0;
  transform: translateY(18px);
  transition: 0.4s;
}
#btt.show {
  opacity: 1;
  transform: translateY(0);
}
#btt:hover {
  transform: translateY(-4px) !important;
}
.cartfl {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9990;
  background: var(--secondary);
  border-radius: 50px;
  padding: 11px 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 7px 22px rgba(49, 95, 115, 0.38);
  cursor: pointer;
  transition: 0.3s;
  color: var(--dark);
  font-weight: 700;
  font-size: 0.88rem;
}
.cartfl:hover {
  transform: translateY(-4px);
}
.cartfl .ccount {
  background: var(--primary);
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
}

/* ====================================================
   ALL POPUP / MODAL STYLES
==================================================== */

/* --- FIX 1: SEARCH POPUP --- */
#searchOv {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(5, 11, 14, 0.98);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 78px;
}
#searchOv.open {
  display: flex;
  animation: fadeov 0.28s ease;
}
@keyframes fadeov {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#searchOv .sovclose {
  position: absolute;
  top: 22px;
  right: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
  transition: 0.3s;
}
#searchOv .sovclose:hover {
  background: var(--primary);
}
.sovbox {
  width: 100%;
  max-width: 680px;
  padding: 0 18px;
}
.sovbox h4 {
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 26px;
  font-family: "Source Han Sans SC", "Noto Sans CJK SC", "Noto Sans SC", sans-serif;
}
.sovinput {
  display: flex;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 60px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}
.sovinput input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 17px 24px;
  color: #fff;
  font-size: 1.05rem;
  font-family: "Source Han Sans SC", "Noto Sans CJK SC", "Noto Sans SC", sans-serif;
  outline: none;
}
.sovinput input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}
.sovinput button {
  background: var(--primary);
  border: none;
  padding: 0 26px;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s;
}
.sovinput button:hover {
  background: #0f6840;
}
.sovcats {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: center;
  margin-top: 28px;
}
.sovcat {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50px;
  padding: 7px 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.83rem;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: "Source Han Sans SC", "Noto Sans CJK SC", "Noto Sans SC", sans-serif;
}
.sovcat img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
}
.sovcat:hover,
.sovcat.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.sovtrend {
  text-align: center;
  margin-top: 26px;
}
.sovtrend p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  margin-bottom: 9px;
}
.sovtrend .ttag {
  display: inline-block;
  margin: 3px;
  background: rgba(49, 95, 115, 0.28);
  border: 1px solid rgba(49, 95, 115, 0.44);
  color: #d8e6e1;
  border-radius: 20px;
  padding: 3px 13px;
  font-size: 0.76rem;
  cursor: pointer;
  transition: 0.3s;
}
.sovtrend .ttag:hover {
  background: var(--secondary);
  color: var(--dark);
}

/* --- FIX 4: MENU DETAIL POPUP --- */
#menuPop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  padding: 18px;
}
#menuPop.open {
  display: flex;
  animation: fadeov 0.28s ease;
}
.mpbox {
  background: #fff;
  border-radius: 22px;
  max-width: 800px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.mpbox::-webkit-scrollbar {
  width: 3px;
}
.mpbox::-webkit-scrollbar-thumb {
  background: var(--primary);
}
.mpbox .mpimg {
  width: 44%;
  background: var(--cream2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px 0 0 22px;
  overflow: hidden;
  min-height: 400px;
}
.mpbox .mpimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mpbox .mpbody {
  width: 56%;
  padding: 34px 30px;
}
.mpclose {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f2f2f2;
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  z-index: 2;
}
.mpclose:hover {
  background: var(--primary);
  color: #fff;
}
#mpCat {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1.3px;
  margin-bottom: 7px;
}
#mpTitle {
  font-size: 1.7rem;
  font-weight: 900;
  margin-bottom: 9px;
  font-family: "Source Han Sans SC", "Noto Sans CJK SC", "Noto Sans SC", sans-serif;
  color: var(--dark);
}
#mpStars {
  color: var(--secondary);
  font-size: 0.88rem;
  margin-bottom: 14px;
}
#mpDesc {
  font-size: 0.88rem;
  color: #777;
  line-height: 1.8;
  margin-bottom: 18px;
}
#mpPrice {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 14px;
  font-family: "Source Han Sans SC", "Noto Sans CJK SC", "Noto Sans SC", sans-serif;
}
#mpPrice small {
  font-size: 0.95rem;
  color: #ccc;
  text-decoration: line-through;
  margin-left: 7px;
}
.mpmeta {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.mpm {
  text-align: center;
  background: var(--light);
  border-radius: 9px;
  padding: 9px 14px;
}
.mpmv {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--dark);
}
.mpml {
  font-size: 0.68rem;
  color: #bbb;
}
.mpqty {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
}
.mpqbtn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  font-weight: 700;
}
.mpqbtn:hover {
  background: var(--primary);
  color: #fff;
}
.mpqnum {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  min-width: 30px;
  text-align: center;
}
.mptags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 20px;
}
.mptag {
  background: rgba(49, 95, 115, 0.11);
  color: var(--dark);
  border-radius: 20px;
  padding: 3px 11px;
  font-size: 0.73rem;
  font-weight: 600;
}
.mpaddcart {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), #0f6840);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 15px;
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
  font-family: "Source Han Sans SC", "Noto Sans CJK SC", "Noto Sans SC", sans-serif;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.mpaddcart:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(19, 131, 79, 0.38);
}

/* --- FIX 7: GALLERY POPUP --- */
#galPop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.96);
  align-items: center;
  justify-content: center;
  padding: 18px;
}
#galPop.open {
  display: flex;
  animation: fadeov 0.28s ease;
}
.gpbox {
  max-width: 880px;
  width: 100%;
  position: relative;
  text-align: center;
}
.gpbox img {
  width: 100%;
  max-height: 64vh;
  object-fit: contain;
  border-radius: 14px;
}
.gpclose {
  position: absolute;
  top: -46px;
  right: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  border: none;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.gpclose:hover {
  background: var(--primary);
}
.gpcap {
  color: #fff;
  margin-top: 18px;
}
.gpcap h5 {
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: #fff;
}
.gpcap p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}
.gpnav {
  display: flex;
  justify-content: center;
  gap: 11px;
  margin-top: 14px;
}
.gpnav button {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  border-radius: 50px;
  padding: 7px 20px;
  cursor: pointer;
  font-size: 0.83rem;
  font-family: "Source Han Sans SC", "Noto Sans CJK SC", "Noto Sans SC", sans-serif;
  transition: 0.3s;
}
.gpnav button:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* Magnific video override */
.mfp-bg {
  background: #000 !important;
  opacity: 0.93 !important;
}
.mfp-close {
  color: #fff !important;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991px) {
  .hcircle {
    width: 320px;
    height: 320px;
  }
  .fc1,
  .fc2,
  .fc3 {
    transform: scale(0.82);
    transform-origin: center;
  }
  .ggrid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gitem:first-child {
    grid-row: span 1;
  }
  .asm {
    display: none;
  }
  .mpbox .mpimg,
  .mpbox .mpbody {
    width: 100%;
  }
  .mpbox .mpimg {
    border-radius: 22px 22px 0 0;
    min-height: 240px;
  }
  .mpbox .mpbody {
    padding: 22px 18px;
  }
  /* Timeline mobile: collapse to single column */
  .timeline::before {
    left: 16px;
  }
  .tli {
    grid-template-columns: 32px 1fr !important;
  }
  .tl-left {
    display: none !important;
  }
  .tl-right {
    display: block !important;
    visibility: visible !important;
    padding-left: 18px !important;
    text-align: left !important;
  }
  .tl-center {
    padding-top: 5px;
  }
  .tli:nth-child(odd) .tl-right,
  .tli:nth-child(even) .tl-right {
    visibility: visible !important;
    display: block !important;
  }
}
@media (max-width: 767px) {
  section {
    padding: 55px 0;
  }
  #topbar .top-contact span:last-child {
    display: none;
  }
  .hcircle {
    width: 260px;
    height: 260px;
  }
  /* Hide only hero floating cards, NOT form cards */
  .fcard.fc1,
  .fcard.fc2,
  .fcard.fc3 {
    display: none !important;
  }
  .hstats {
    display: none !important;
  }
  .ggrid {
    grid-template-columns: 1fr 1fr;
  }
  .cdwrap {
    gap: 8px;
  }
  .cditem {
    min-width: 56px;
    padding: 9px;
  }
  .nl-form-wrap {
    flex-direction: column;
    padding: 0 8px;
  }
  .nlinput,
  .nlbtn {
    width: 100%;
    border-radius: 12px;
  }
  .fcard {
    padding: 22px 18px;
  }
}
@media (max-width: 480px) {
  .hcircle {
    width: 220px;
    height: 220px;
  }
  .htitle {
    font-size: 2.4rem;
  }
  .stitle {
    font-size: 1.8rem;
  }
}


/* Jianlan refinement overrides */
body {
  font-family: "Source Han Sans SC", "Noto Sans CJK SC", "Noto Sans SC", sans-serif;
  color: #324039;
}
h1, h2, h3, h4, h5, .bname, .stitle, .htitle {
  font-family: "Source Han Sans SC", "Noto Sans CJK SC", "Noto Sans SC", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}
.brand-logo {
  width: 172px;
  height: auto;
  display: block;
}
.navbar.scrolled .brand-logo {
  width: 150px;
}
.btn-red {
  background: linear-gradient(135deg, #146b47, #315f73);
  box-shadow: 0 8px 24px rgba(20, 107, 71, .18);
}
.btn-red:hover {
  box-shadow: 0 14px 34px rgba(49, 95, 115, .24);
}
.slbl, .hl, .stitle span, .ctinfo strong, .blmore {
  color: var(--secondary);
}
.sline {
  background: linear-gradient(90deg, var(--secondary), var(--primary));
}
#topbar, footer {
  background: #142c3a;
}
#hero {
  background: linear-gradient(135deg, #f6f8f4 0%, #eef3f4 100%);
}
.hs {
  opacity: .55;
}
.hbadge, .catcard.active, .fcard, .tescard, .blcard, .ctdark {
  border-radius: 10px;
}
.hcircle {
  background: radial-gradient(circle at 45% 35%, #fff, #e9f0ee 68%);
}
.hero-flip {
  overflow: visible;
}
.heroFlipSwiper {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.heroFlipSwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
}
.heroFlipSwiper img {
  width: 92%;
  height: 92%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 18px 45px rgba(20, 44, 58, .14);
}
.hero-page {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: rgba(20, 44, 58, .72);
}
.hero-page::after {
  font-size: 15px;
  font-weight: 800;
}
#about {
  background: #fff;
}
#category {
  background: #f7fbf9;
}
#special {
  background: linear-gradient(135deg, #142c3a, #315f73);
}
#client-logos {
  padding: 72px 0;
  background: #f7fbf9;
}
.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.client-logo-grid div {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 1px solid rgba(20, 44, 58, .09);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(20, 44, 58, .05);
}
.client-logo-grid img {
  max-height: 52px;
  width: auto;
  object-fit: contain;
  filter: saturate(.95);
}
.footer-logo {
  width: 168px;
  padding: 8px 10px;
  border-radius: 6px;
  background: #fff;
}

#nav {
  background: #fff !important;
}

#nav.scrolled {
  background: rgba(255, 255, 255, .94) !important;
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 28px rgba(7, 26, 34, .14) !important;
}

/* Jianlan home refinement overrides */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
small,
strong,
label,
button,
input,
textarea,
select,
div:not(.swiper-button-prev):not(.swiper-button-next) {
  font-family: "Source Han Sans SC", "Noto Sans CJK SC", "Noto Sans SC", sans-serif !important;
  letter-spacing: 0 !important;
}

.stitle,
.htitle,
.sptitle,
.ftit,
.ctdark h4,
.chnm {
  font-size: 36px !important;
  line-height: 1.35 !important;
  font-weight: 700 !important;
}

.slbl,
.hbadge span,
.mcat,
.mtit,
.catnm,
.bltit,
.bltit a,
.tli h5,
.fcnum,
.cdnum,
.fciinfo strong {
  font-size: 20px !important;
  line-height: 1.45 !important;
  font-weight: 650 !important;
}

body,
p,
.sdesc,
.hdesc,
.mdesc,
.spdesc,
.chrole,
.chexp,
.bltag,
.blmeta,
.fdesc,
.flinks a,
.fciinfo,
.fcsm,
.cdlbl,
.btn-red,
.btn-outline,
.filtbtn {
  font-size: 16px !important;
  line-height: 1.75 !important;
}

.brand-logo {
  width: 226px;
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
}

.navbar.scrolled .brand-logo {
  width: 204px;
  max-height: 64px;
}

.footer-logo {
  width: 226px;
  max-width: 100%;
  height: auto;
  max-height: 82px;
  object-fit: contain;
}

.container {
  max-width: 1440px;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1500px;
  }
}

.navbar-brand {
  overflow: visible;
  flex-shrink: 0;
}

.navbar .nav-link.active::after,
.navbar .nav-link:hover::after {
  border-radius: 0 !important;
  clip-path: none !important;
}

.navbar-nav .nav-link::after {
  height: 2px !important;
  bottom: 4px !important;
  border-radius: 0 !important;
  background: #146b47 !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 74px !important;
}

#topbar,
footer {
  background: #071a22 !important;
}

.fbot {
  background: #051217 !important;
  border-top-color: rgba(255, 255, 255, .08) !important;
}

footer,
footer p,
footer a,
footer .fdesc,
footer .fciinfo,
footer .flinks a,
.fbot,
.fbot p,
.fbot div {
  color: rgba(255, 255, 255, .82) !important;
}

footer .ftit {
  color: #fff !important;
}

.tech-link {
  color: #fff !important;
}

#hero {
  min-height: auto !important;
  padding: 64px 0 76px !important;
  background: #050b0e !important;
}

#hero .hero-row {
  min-height: 540px;
  position: relative;
  z-index: 2;
}

section {
  scroll-margin-top: 128px;
}

.htitle {
  max-width: 560px;
}

.hdesc {
  max-width: 560px;
}

#about {
  padding: 72px 0 !important;
}

#about .row {
  --bs-gutter-x: 4rem;
}

.aexp {
  min-width: 150px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.aexp small {
  min-width: 0;
  font-size: 28px !important;
  line-height: 1.12 !important;
  font-weight: 400 !important;
  white-space: nowrap;
}

.hero-bg-slide {
  position: absolute;
  inset: auto 0 0 0;
  height: 74%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .8s ease, transform 4s ease;
  z-index: 0;
}

.hero-bg-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 11, 14, .94) 0%, rgba(5, 11, 14, .8) 42%, rgba(5, 11, 14, .64) 100%);
}

.hero-bg-slide.is-active {
  opacity: .28;
  transform: scale(1);
}

#hero .hbadge {
  background: rgba(255, 255, 255, .88);
}

#hero .htitle,
#hero .hdesc,
#hero .btn-play {
  color: #fff !important;
}

#hero .hdesc {
  color: rgba(255, 255, 255, .82) !important;
}

#hero .hl {
  color: #70c89b !important;
}

#hero .btn-red {
  min-height: 48px;
  padding: 11px 18px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

#hero .btn-play {
  min-height: 48px;
  padding: 0 4px !important;
  gap: 10px;
}

#hero .btn-play span {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width .25s ease, opacity .2s ease;
}

#hero .btn-play:hover span {
  max-width: 110px;
  opacity: 1;
}

#hero .btn-play .pico {
  width: 48px;
  height: 48px;
}

.hs,
.hero-page,
.hcircle {
  display: none !important;
}

.hcircle {
  z-index: 2;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  width: 520px;
  height: 520px;
}

.heroFlipSwiper {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 24px 64px rgba(20, 44, 58, .16);
  background: #eef4f2;
  perspective: 1200px;
}

.heroFlipSwiper .swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  transform: none !important;
}

.heroFlipSwiper .swiper-slide {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  opacity: 0;
  transform: rotateY(88deg) scale(.97);
  transform-origin: left center;
  transition: opacity .55s ease, transform .75s cubic-bezier(.2,.7,.2,1);
  backface-visibility: hidden;
  z-index: 1;
}

.heroFlipSwiper .swiper-slide.is-active {
  opacity: 1;
  transform: rotateY(0) scale(1);
  z-index: 2;
}

.heroFlipSwiper img {
  width: 100%;
  height: 100%;
  box-shadow: none;
}

.fcard {
  z-index: 8;
}

.fc1 {
  left: -26px !important;
}

.fc2 {
  right: -18px !important;
}

.fc3 {
  right: -34px !important;
}

.hero-metrics {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  max-width: 390px;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.hero-metrics::before {
  display: none;
}

.hero-metric {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 14px 20px 14px 86px;
  background: rgba(255, 255, 255, .105);
  border: 1px solid rgba(255, 255, 255, .34);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .16);
  opacity: .9;
  cursor: pointer;
  transition: background .28s ease, opacity .28s ease, box-shadow .28s ease, transform .28s ease, border-color .28s ease;
}

.hero-metric::before {
  display: none;
}

.hero-metric::after {
  display: none;
}

.hero-metric > i {
  position: absolute;
  left: 22px;
  top: 50%;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 255, 255, .38), rgba(190, 199, 196, .22));
  font-size: 25px;
  box-shadow: none;
  transform: translateY(-50%);
  transition: transform .28s ease, background .28s ease, color .28s ease;
}

.hero-metric:hover,
.hero-metric:focus-visible,
.hero-metric.is-active {
  opacity: 1;
  background: rgba(20, 107, 71, .24);
  border-color: rgba(112, 200, 155, .86);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .24);
  transform: translateY(-3px);
  outline: none;
}

.hero-metric:hover > i,
.hero-metric:focus-visible > i,
.hero-metric.is-active > i {
  color: #063522;
  background: #fff;
  transform: translateY(-50%) scale(1.08);
}

.hero-metric .snum {
  display: inline-flex;
  align-items: baseline;
  color: #fff;
  font-size: 30px !important;
  font-weight: 700;
  line-height: 1;
  min-width: 74px;
}

.hero-metric small {
  display: inline-flex;
  align-items: center;
  margin-top: 0;
  color: rgba(255, 255, 255, .74);
  font-size: 16px !important;
  font-weight: 500;
  line-height: 1.2;
}

#about .about-more-btn {
  min-height: 38px;
  padding: 8px 18px;
  gap: 7px;
  font-size: 14px !important;
  line-height: 1.35 !important;
  box-shadow: 0 6px 18px rgba(20, 107, 71, .18);
}

#about .about-more-btn i {
  font-size: 13px;
}

#special .sptag {
  background: rgba(255, 255, 255, .92) !important;
  color: #146b47 !important;
  box-shadow: 0 10px 28px rgba(255, 255, 255, .18);
}

#special .sptag i {
  color: #d8a12a !important;
}

#special .sptitle span {
  color: #f4f8f6 !important;
}

.hstat .snum {
  font-size: 30px !important;
}

.hstat small {
  font-size: 16px !important;
}

.hstat .snum,
.aexp .anum,
.tlyear {
  font-family: "Source Han Sans SC", "Noto Sans CJK SC", "Noto Sans SC", sans-serif !important;
}

.mprice,
.mstars,
.mbdg,
.mhrt,
#mpStars,
#mpPrice,
.mpmeta,
.mpqty {
  display: none !important;
}

.mfoot {
  justify-content: flex-end;
}

.supply-points .cditem {
  min-width: 108px;
  position: relative;
  overflow: hidden;
  transition: transform .28s ease, background .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.supply-points .cditem::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 3px;
  background: #55d68c;
  transform: scaleY(.35);
  transform-origin: center;
  transition: transform .28s ease;
}

.supply-points .cditem:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .13);
  border-color: rgba(255, 255, 255, .36);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .22);
}

.supply-points .cditem:hover::before {
  transform: scaleY(1);
}

.supply-points .cdnum {
  display: block;
  color: #fff;
  transition: color .28s ease;
}

.supply-points .cdlbl {
  transition: color .28s ease;
}

.supply-points .cditem:hover .cdnum,
.supply-points .cditem:hover .cdlbl {
  color: #fff !important;
}

#special .supply-tag {
  position: relative;
  overflow: hidden;
  animation: supplyTagIn .75s ease both;
}

#special .supply-tag::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .55) 48%, transparent 100%);
  transform: translateX(-130%);
  animation: supplySheen 3.8s ease-in-out infinite;
}

#special .supply-tag i {
  position: relative;
  z-index: 1;
  animation: supplyBolt 1.7s ease-in-out infinite;
}

#special .supply-tag {
  z-index: 1;
}

.sptitle {
  max-width: 720px;
}

.sptitle br {
  display: none;
}

.sptitle span {
  display: inline !important;
}

#special {
  position: relative;
  overflow: hidden;
  background: #071a22 !important;
}

#special::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 26, 34, .96), rgba(7, 26, 34, .86)), url("../img/off-img.jpg") center/cover no-repeat;
  opacity: .78;
}

#special .container {
  position: relative;
  z-index: 1;
}

.timeline {
  display: none !important;
}

.history-stage {
  padding: 8px 0 0;
}

.history-track-wrap {
  overflow-x: auto;
  padding: 58px 0 34px;
  cursor: grab;
  scrollbar-color: var(--primary) rgba(20, 44, 58, .1);
}

.history-track {
  min-width: 1580px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 88px;
}

.history-track::before {
  content: "";
  position: absolute;
  left: 88px;
  right: 88px;
  top: 50%;
  height: 3px;
  background: #c9d5cf;
  transform: translateY(-50%);
}

.history-dot {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  border: 4px solid var(--primary);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.history-dot span {
  position: absolute;
  left: 50%;
  top: -40px;
  transform: translateX(-50%);
  color: #071a22;
  font-size: 20px !important;
  font-weight: 800;
  white-space: nowrap;
}

.history-dot.is-active {
  transform: scale(1.45);
  background: var(--primary);
  box-shadow: 0 0 0 10px rgba(20, 107, 71, .12);
}

.history-dot.is-active span {
  color: var(--primary);
}

.history-panels {
  position: relative;
  min-height: 360px;
}

.history-panel {
  display: none;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 34px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(20, 44, 58, .1);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 50px rgba(20, 44, 58, .08);
}

.history-panel.is-active {
  display: grid;
  animation: historyIn .45s ease both;
}

.history-panel.reverse img {
  order: 2;
}

.history-panel img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.history-year {
  color: #071a22;
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 16px;
}

.history-panel h5 {
  font-size: 20px !important;
  font-weight: 700 !important;
  margin-bottom: 8px;
  color: var(--dark);
}

.history-panel p {
  margin: 0;
  color: #58645f;
}

.mwrap {
  display: flex;
}

.mcard {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.mbody {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.mdesc {
  min-height: 84px;
}

.mfoot {
  margin-top: auto;
}

@keyframes historyIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chimg {
  height: auto;
  aspect-ratio: 2 / 3;
  padding: 24px 18px;
  background: #f8faf7;
  border-bottom: 1px solid rgba(20, 44, 58, .08);
}

.chimg img {
  aspect-ratio: 2 / 3;
  object-fit: contain;
  object-position: top center;
  border-radius: 4px;
  background: #fff;
}

.chcard {
  border-radius: 8px;
}

.chnm {
  font-size: 20px !important;
  font-weight: 700 !important;
}

.chrole,
.chexp {
  font-size: 16px !important;
  font-weight: 400 !important;
}

.chrole {
  color: #146b47;
}

.sline,
.client-logo-grid div::after {
  background: linear-gradient(90deg, #315f73, #146b47) !important;
}

.slbl,
.stitle span,
.hl,
.ctinfo strong {
  color: #146b47 !important;
}

.hbadge .hbi,
.catcard.active,
.fcoi.y,
.bldatebdg,
.sptag,
.sppbdg,
.ftico.y {
  background: rgba(20, 107, 71, .12) !important;
  color: #146b47 !important;
}

.client-logo-grid div:hover,
.client-logo-grid div.is-active {
  border-color: rgba(20, 107, 71, .36) !important;
  background: #f7fbf9 !important;
}

.fbot {
  font-size: 16px !important;
}

.fbot p,
.fbot div,
.fbot a {
  font-size: 16px !important;
  line-height: 1.75 !important;
}

footer .ftit {
  font-size: 20px !important;
  font-weight: 650 !important;
}

#btt {
  right: 26px !important;
  bottom: 70px !important;
}

.chsoc {
  display: none;
}

.blcard {
  cursor: pointer;
  border-radius: 8px;
}

.blmore {
  display: none !important;
}

@keyframes supplyTagIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes supplySheen {
  0%,
  46% {
    transform: translateX(-130%);
  }
  70%,
  100% {
    transform: translateX(130%);
  }
}

@keyframes supplyBolt {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.16);
  }
}

@media (max-width: 575.98px) {
  .aexp {
    gap: 10px;
    min-width: auto;
  }

  .aexp small {
    min-width: auto;
    font-size: 22px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  #special .supply-tag,
  #special .supply-tag::after,
  #special .supply-tag i,
  .supply-points .cditem,
  .supply-points .cditem::before {
    animation: none !important;
    transition: none !important;
  }
}

/* Product listing: reserve a real gutter between the filter rail and the grid. */
.product-layout {
  grid-template-columns: 246px minmax(0, 1fr) !important;
  gap: 32px !important;
}

.product-side,
.product-list,
.product-side-block,
.side-search {
  min-width: 0;
}

.product-list .row[data-product-grid] {
  --bs-gutter-x: 24px;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.product-list .row[data-product-grid] > * {
  padding-right: 12px;
  padding-left: 12px;
}

.product-filter button.active {
  padding-left: 12px;
  color: #fff !important;
  background: var(--primary) !important;
  border-bottom-color: var(--primary) !important;
}

.side-search {
  width: 100%;
}

.side-search input {
  width: 0;
}

.side-search button {
  flex: 0 0 44px;
}

.inner-subnav [data-product-tab] {
  cursor: pointer;
}

.inner-subnav [data-product-tab].active {
  color: var(--primary) !important;
  font-weight: 700;
}

.inner-subnav [data-product-tab].active::after {
  height: 2px !important;
  background: var(--primary) !important;
  transform: scaleX(1) !important;
}

#nav.scrolled .navbar-nav .nav-link.active {
  color: var(--primary) !important;
}

#nav.scrolled .navbar-nav .nav-link.active::after {
  width: calc(100% - 40px) !important;
  height: 2px !important;
  background: var(--primary) !important;
}

/* Dropdown arrows and current-page markers must not share the same pseudo-element. */
#nav .navbar-nav .nav-link.dropdown-toggle::after,
#nav .navbar-nav .nav-link.dropdown-toggle:hover::after,
#nav .navbar-nav .nav-link.dropdown-toggle.active::after {
  position: static !important;
  display: inline-block !important;
  width: 0 !important;
  height: 0 !important;
  margin-left: 6px;
  vertical-align: .12em;
  background: transparent !important;
  transform: none !important;
  border-top: .3em solid currentColor !important;
  border-right: .3em solid transparent !important;
  border-bottom: 0 !important;
  border-left: .3em solid transparent !important;
}

#nav .navbar-nav .nav-link.dropdown-toggle::before {
  position: absolute;
  right: 20px;
  bottom: 4px;
  left: 20px;
  height: 2px;
  content: "";
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}

#nav .navbar-nav .nav-link.dropdown-toggle:hover::before,
#nav .navbar-nav .nav-link.dropdown-toggle.active::before {
  transform: scaleX(1);
}

@media (min-width: 992px) {
  #nav .navbar-nav {
    gap: 14px;
  }

  #nav .navbar-nav .nav-link {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }

  #nav .navbar-nav .nav-link::before {
    right: 24px;
    left: 24px;
  }

  #nav .navbar-nav .nav-link:not(.dropdown-toggle)::after {
    width: 0 !important;
  }

  #nav .navbar-nav .nav-link:not(.dropdown-toggle):hover::after,
  #nav .navbar-nav .nav-link:not(.dropdown-toggle).active::after {
    width: calc(100% - 48px) !important;
  }
}

/* Homepage refinement: denser rhythm, clear entrances and restrained title geometry. */
#about,
#category,
#menu,
#gallery,
#chefs,
#blog,
#contact-section,
.client-logos {
  padding-top: 58px !important;
  padding-bottom: 58px !important;
}

#special {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}

.stitle {
  position: relative;
  display: inline-block;
  padding: 0 0 10px 16px;
}

.stitle::before {
  position: absolute;
  top: .18em;
  bottom: .18em;
  left: 0;
  width: 3px;
  height: auto;
  content: "";
  background: var(--primary);
}

.stitle::after { display: none; }

.text-center .stitle { padding-left: 0; }
.text-center .stitle::before { display: none; }

.stitle + .sline {
  width: 52px;
  height: 2px;
  margin: 0 auto 12px;
  background: var(--primary);
}

.text-start + .sline,
.sline.lft {
  display: none;
}

.article-main h2:not(.stitle),
.production-story h2,
.product-summary h1,
.product-detail-page h2,
.wechat-article h1 {
  position: relative;
  padding-left: 18px;
}

.article-main h2:not(.stitle)::before,
.production-story h2::before,
.product-summary h1::before,
.product-detail-page h2::before,
.wechat-article h1::before {
  position: absolute;
  top: .28em;
  bottom: .28em;
  left: 0;
  width: 3px;
  content: "";
  background: var(--primary);
}

#about .home-about-media .aexp,
#about .home-about-media .amain,
#about .home-about-media .asm,
#about .fti,
#about .about-more-btn {
  opacity: 0;
}

#about .home-about-media .aexp {
  z-index: 3;
}

#about [data-aos].aos-animate .aexp {
  animation: homeIntroFade .45s ease .06s forwards;
}

#about [data-aos].aos-animate .amain {
  animation: homeIntroRise .7s cubic-bezier(.22, .61, .36, 1) .16s forwards;
}

#about [data-aos].aos-animate .asm {
  animation: homeIntroRise .62s ease .32s forwards;
}

#about [data-aos].aos-animate .fti {
  animation: homeIntroRise .5s ease forwards;
}

#about [data-aos].aos-animate .fti:nth-child(1) { animation-delay: .12s; }
#about [data-aos].aos-animate .fti:nth-child(2) { animation-delay: .22s; }
#about [data-aos].aos-animate .fti:nth-child(3) { animation-delay: .32s; }
#about [data-aos].aos-animate .about-more-btn { animation: homeIntroRise .5s ease .42s forwards; }

@keyframes homeIntroRise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes homeIntroFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Homepage motion uses the physical sequence of a paper-production visit: reveal, enter, then settle. */
@media (prefers-reduced-motion: no-preference) {
  #about [data-aos].aos-animate .amain {
    animation: imageCurtain .78s cubic-bezier(.22, .61, .36, 1) .12s both;
  }

  #about [data-aos].aos-animate .asm {
    animation: sideTileEnter .64s cubic-bezier(.22, .61, .36, 1) .34s both;
  }

  #category [data-aos].aos-animate .catcard:nth-child(3n + 1) { animation-delay: .04s; }
  #category [data-aos].aos-animate .catcard:nth-child(3n + 2) { animation-delay: .14s; }
  #category [data-aos].aos-animate .catcard:nth-child(3n) { animation-delay: .24s; }

  #gallery [data-aos].aos-animate .gitem {
    animation: frameUnfold .72s cubic-bezier(.22, .61, .36, 1) both;
  }

  #gallery [data-aos].aos-animate .gitem:nth-child(2) { animation-delay: .08s; }
  #gallery [data-aos].aos-animate .gitem:nth-child(3) { animation-delay: .16s; }
  #gallery [data-aos].aos-animate .gitem:nth-child(4) { animation-delay: .24s; }
  #gallery [data-aos].aos-animate .gitem:nth-child(5) { animation-delay: .32s; }
  #gallery [data-aos].aos-animate .gitem:nth-child(6) { animation-delay: .40s; }

  #blog [data-aos].aos-animate .blcard {
    animation-name: newsLift;
  }
}

@keyframes imageCurtain {
  from { opacity: 0; clip-path: inset(0 100% 0 0); transform: scale(1.03); }
  to { opacity: 1; clip-path: inset(0 0 0 0); transform: scale(1); }
}

@keyframes sideTileEnter {
  from { opacity: 0; transform: translate(32px, 18px) rotate(2deg); }
  to { opacity: 1; transform: translate(0, 0) rotate(0); }
}

@keyframes frameUnfold {
  from { opacity: 0; clip-path: inset(14% 12%); transform: translateY(18px); }
  to { opacity: 1; clip-path: inset(0); transform: translateY(0); }
}

@keyframes newsLift {
  from { opacity: 0; transform: translateY(26px); box-shadow: none; }
  to { opacity: 1; transform: translateY(0); }
}

#category .catcard {
  display: block;
  color: var(--ink);
}

#category .catcard.active,
#category .catcard:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
}

#category .catcard.active .catnm,
#category .catcard.active .catct,
#category .catcard:hover .catnm,
#category .catcard:hover .catct {
  color: #fff !important;
}

#category .catcard.active .catimg,
#category .catcard:hover .catimg {
  opacity: .82;
}

#gallery .ggrid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: none !important;
  gap: 16px;
}

#gallery .gitem,
#gallery .gitem:first-child {
  grid-row: auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
}

#gallery .gitem img {
  height: 100%;
  object-fit: cover;
}

#chefs .row {
  --bs-gutter-x: 14px;
  --bs-gutter-y: 14px;
}

#chefs .chimg {
  padding: 10px !important;
}

#chefs .chbody {
  padding: 12px 8px !important;
  text-align: center;
}

#chefs .chnm {
  font-size: 17px !important;
}

#chefs .chrole,
#chefs .chexp {
  font-size: 14px !important;
}

.client-logo-grid a {
  position: relative;
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: center;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.client-logo-grid a::after {
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 2px;
  content: "";
  background: var(--primary);
  transform: scaleX(0);
  transition: transform .25s ease;
}

.client-logo-grid a:hover {
  border-color: rgba(21, 114, 79, .48);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.client-logo-grid a:hover::after {
  transform: scaleX(1);
}

.client-logo-grid a img {
  width: 100%;
  max-height: 72px;
  object-fit: contain;
}

@media (max-width: 991px) {
  #about,
  #category,
  #menu,
  #gallery,
  #chefs,
  #blog,
  #contact-section,
  .client-logos,
  #special {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

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

@media (max-width: 575px) {
  #gallery .ggrid {
    gap: 10px;
  }

  #chefs .chnm {
    font-size: 15px !important;
  }

  #chefs .chrole,
  #chefs .chexp {
    font-size: 12px !important;
  }

  .client-logo-grid a {
    min-height: 92px;
    padding: 12px;
  }
}

@media (max-width: 991px) {
  .product-layout {
    grid-template-columns: 1fr !important;
  }
}

.client-logo-grid div {
  position: relative;
  border-radius: 8px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.client-logo-grid div::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}

.client-logo-grid div:hover,
.client-logo-grid div.is-active {
  transform: translateY(-5px);
  border-color: rgba(49, 95, 115, .38);
  box-shadow: 0 18px 36px rgba(20, 44, 58, .11);
  background: #f7fbf9;
}

.client-logo-grid div:hover::after,
.client-logo-grid div.is-active::after {
  transform: scaleX(1);
}

.fsoc a {
  border-radius: 8px;
}

.fbot p {
  margin: 0;
}

.tech-link {
  color: #fff;
  margin-left: 0 !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tech-link:hover {
  color: var(--secondary);
}

.navbar-nav .dropdown-toggle::after,
.navbar-nav .dropdown-toggle:hover::after,
.navbar-nav .dropdown-toggle.active::after {
  position: static !important;
  display: inline-block !important;
  width: 0 !important;
  height: 0 !important;
  margin-left: 6px !important;
  vertical-align: 0.12em !important;
  background: transparent !important;
  transform: none !important;
  border-top-color: currentColor !important;
}

.inner-hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 96px;
  background: #071a22;
  color: #fff;
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 26, 34, .96), rgba(7, 26, 34, .74)), var(--inner-bg, url("../img/history/factory-outside.png")) center/cover no-repeat;
  opacity: .88;
}

.inner-hero .container {
  position: relative;
  z-index: 1;
}

.crumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.crumb a:hover {
  color: #fff;
}

.inner-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 760;
  line-height: 1.12;
}

.inner-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  line-height: 1.9;
}

.inner-hero-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
}

.inner-hero-card strong,
.inner-hero-card span {
  display: block;
}

.inner-hero-card strong {
  color: #fff;
  font-size: 30px;
  line-height: 1;
}

.inner-hero-card span {
  margin-top: 12px;
  color: rgba(255, 255, 255, .72);
}

.inner-subnav-wrap {
  padding: 0;
  background: #fff;
  border-bottom: 1px solid rgba(20, 44, 58, .08);
}

.inner-subnav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 14px 0;
}

.inner-subnav a {
  flex: 0 0 auto;
  padding: 9px 18px;
  border: 1px solid rgba(20, 107, 71, .14);
  border-radius: 6px;
  color: #23352f;
  background: #f7fbf9;
  font-size: 15px;
}

.inner-subnav a:hover,
.inner-subnav a.active {
  color: #fff;
  background: #146b47;
  border-color: #146b47;
}

.history-detail {
  background: #f7fbf9;
}

.history-intro {
  margin-bottom: 54px;
}

.history-intro p {
  margin: 0;
  color: #66746f;
  font-size: 17px;
  line-height: 1.95;
}

.vertical-history {
  position: relative;
  display: grid;
  gap: 30px;
}

.vertical-history::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 112px;
  width: 2px;
  background: linear-gradient(180deg, rgba(20, 107, 71, 0), rgba(20, 107, 71, .45), rgba(20, 107, 71, 0));
}

.vh-item {
  position: relative;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
}

.vh-year {
  position: sticky;
  top: 108px;
  align-self: start;
  padding-top: 26px;
  color: #071a22;
  font-size: 40px;
  font-weight: 850;
  line-height: 1;
}

.vh-year::after {
  content: "";
  position: absolute;
  right: 47px;
  top: 36px;
  width: 16px;
  height: 16px;
  border: 3px solid #146b47;
  border-radius: 50%;
  background: #f7fbf9;
  box-shadow: 0 0 0 8px rgba(20, 107, 71, .08);
}

.vh-card {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
  gap: 0;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(20, 44, 58, .08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(20, 44, 58, .08);
}

.vh-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.vh-copy {
  padding: 34px;
}

.vh-copy h3 {
  margin-bottom: 14px;
  color: #071a22;
  font-size: 28px;
  font-weight: 720;
}

.vh-copy p {
  margin-bottom: 18px;
  color: #5e6f68;
  font-size: 16px;
  line-height: 1.9;
}

.vh-copy ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vh-copy li {
  position: relative;
  padding-left: 18px;
  color: #23352f;
  font-size: 15px;
  line-height: 1.7;
}

.vh-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #146b47;
}

@media (max-width: 991px) {
  .navbar .jl-submenu {
    box-shadow: none;
  }

  .vertical-history::before {
    left: 28px;
  }

  .vh-item {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
  }

  .vh-year {
    font-size: 24px;
    writing-mode: vertical-rl;
    top: 88px;
  }

  .vh-year::after {
    right: auto;
    left: 20px;
    top: 84px;
  }

  .vh-card {
    grid-template-columns: 1fr;
  }

  .vh-card img {
    height: 240px;
    min-height: 240px;
  }
}
@media (max-width: 991px) {
  .client-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .brand-logo {
    width: 138px;
  }
  .client-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Fine tuning: certificate, news and contact layout */
#chefs .chcard {
  overflow: hidden;
}

#chefs .chimg {
  height: auto !important;
  aspect-ratio: 2 / 3;
  padding: 18px 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f8faf7;
}

#chefs .chimg img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
}

#chefs .chcard:hover .chimg img {
  transform: none !important;
}

#blog .bldatebdg {
  position: static !important;
  display: block;
  align-items: baseline;
  width: auto;
  margin: 12px 0 0;
  padding: 0;
  border-radius: 0;
  background: transparent !important;
  color: #7a8580 !important;
  line-height: 1;
  text-align: left;
}

#blog .bldatebdg .bd,
#blog .bldatebdg .bm {
  display: inline;
  letter-spacing: 0;
  text-transform: none;
}

#blog .bldatebdg .bd {
  font-size: 16px;
  font-weight: 400;
}

#blog .bldatebdg .bm {
  font-size: 16px;
  font-weight: 400;
}

.bldesc {
  margin: 10px 0 0;
  color: #66736d;
  font-size: 16px;
  line-height: 1.65;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

[data-aos].aos-animate > .stitle,
[data-aos].aos-animate .stitle {
  animation: titleReveal .72s cubic-bezier(.22, .61, .36, 1) both;
}

[data-aos].aos-animate > .sline,
[data-aos].aos-animate .sline {
  animation: lineReveal .68s ease .12s both;
}

[data-aos].aos-animate > .sdesc,
[data-aos].aos-animate .sdesc {
  animation: softReveal .68s ease .18s both;
}

[data-aos].aos-animate .catcard,
[data-aos].aos-animate .mitem,
[data-aos].aos-animate .chcard,
[data-aos].aos-animate .blcard,
[data-aos].aos-animate .ctdark,
[data-aos].aos-animate .ctform {
  animation: cardReveal .68s cubic-bezier(.22, .61, .36, 1) both;
}

@keyframes titleReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineReveal {
  from {
    opacity: 0;
    transform: scaleX(.18);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes softReveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

#contact-section {
  overflow: hidden;
}

#contact-section .row {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

#contact-section .row > * {
  min-width: 0;
}

#contact-section .ctdark,
#contact-section .fcard {
  max-width: 100%;
}

#contact-section .fcard {
  position: relative;
  left: auto;
  right: auto;
  display: block;
  overflow: hidden;
}

/* Inner page common components */
.inner-page {
  background: #f7fbf9;
}

.inner-section {
  padding: 82px 0;
}

.inner-section.white {
  background: #fff;
}

.inner-lead {
  max-width: 820px;
  color: #5d6b65;
  font-size: 17px;
  line-height: 1.9;
}

.inner-card {
  height: 100%;
  padding: 28px;
  border: 1px solid rgba(20, 44, 58, .08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(20, 44, 58, .06);
}

.inner-card h3,
.inner-card h4 {
  margin-bottom: 12px;
  color: #071a22;
  font-size: 22px;
  font-weight: 700;
}

.inner-card p,
.inner-card li {
  color: #5d6b65;
  font-size: 16px;
  line-height: 1.85;
}

.inner-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.inner-card li {
  position: relative;
  padding-left: 18px;
}

.inner-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #146b47;
}

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

.feature-tile {
  padding: 24px;
  border: 1px solid rgba(20, 107, 71, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
}

.feature-tile i {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(20, 107, 71, .1);
  color: #146b47;
  font-size: 20px;
}

.feature-tile h3 {
  margin-bottom: 8px;
  color: #071a22;
  font-size: 20px;
  font-weight: 700;
}

.feature-tile p {
  margin: 0;
  color: #5d6b65;
  font-size: 16px;
  line-height: 1.75;
}

.listing-card {
  display: block;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(20, 44, 58, .08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(20, 44, 58, .06);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.listing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 107, 71, .24);
  box-shadow: 0 24px 54px rgba(20, 44, 58, .12);
}

.listing-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.listing-card.logo-card img {
  object-fit: contain;
  padding: 34px 28px;
  background: #fff;
}

.listing-card.product-card {
  display: flex;
  flex-direction: column;
}

.listing-card.product-card .listing-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.listing-card.product-card .listing-desc {
  flex: 1;
}

.listing-body {
  padding: 24px;
}

.listing-kicker {
  margin-bottom: 10px;
  color: #146b47;
  font-size: 15px;
  font-weight: 700;
}

.listing-title {
  margin-bottom: 12px;
  color: #071a22;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
}

.listing-desc {
  margin: 0 0 14px;
  color: #66736d;
  font-size: 16px;
  line-height: 1.75;
}

.product-card .listing-desc {
  overflow: hidden;
  margin-bottom: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.listing-date {
  color: #7a8580;
  font-size: 15px;
}

.detail-wrap {
  max-width: 930px;
  margin: 0 auto;
  padding: 48px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(20, 44, 58, .08);
}

.detail-wrap h2 {
  margin: 34px 0 14px;
  color: #071a22;
  font-size: 30px;
  font-weight: 700;
}

.detail-wrap p,
.detail-wrap li {
  color: #5d6b65;
  font-size: 17px;
  line-height: 1.95;
}

.detail-wrap ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.step-list {
  display: grid;
  gap: 18px;
}

.step-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(20, 107, 71, .14);
  border-radius: 8px;
  background: #fff;
}

.step-num {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #146b47;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}

.soft-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(20, 44, 58, .08);
}

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

.soft-form label {
  display: grid;
  gap: 8px;
  color: #071a22;
  font-size: 15px;
  font-weight: 700;
}

.soft-form input,
.soft-form select,
.soft-form textarea {
  width: 100%;
  border: 1px solid #dfe6e2;
  border-radius: 8px;
  padding: 13px 14px;
  color: #23352f;
  font-size: 16px;
}

.soft-form textarea {
  min-height: 130px;
  resize: vertical;
}

.soft-note {
  margin: 0;
  color: #66736d;
  font-size: 15px;
  line-height: 1.75;
}

@media (max-width: 991px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-wrap {
    padding: 30px;
  }
}

@media (max-width: 575px) {
  .feature-grid,
  .soft-form .form-row,
  .step-item {
    grid-template-columns: 1fr;
  }
}

/* Inner page refinement round */
#nav {
  background: transparent !important;
  box-shadow: none !important;
}

#nav:not(.scrolled) {
  margin-bottom: -96px;
}

#nav:not(.scrolled) .nav-link:not(.nav-cta),
#nav:not(.scrolled) .nav-hover-search button,
#nav:not(.scrolled) .submenu-toggle {
  color: #fff !important;
}

#nav:not(.scrolled) .nav-hover-search input {
  border-color: rgba(255, 255, 255, .34);
  color: #fff;
  background: rgba(255, 255, 255, .14);
}

#nav:not(.scrolled) .nav-hover-search input::placeholder {
  color: rgba(255, 255, 255, .72);
}

#nav:not(.scrolled) .bltext,
#nav:not(.scrolled) .blsub {
  color: #fff !important;
}

#nav.scrolled {
  background: #fff !important;
  backdrop-filter: none;
  box-shadow: 0 10px 32px rgba(20, 44, 58, .10) !important;
}

#nav.scrolled .nav-link:not(.nav-cta),
#nav.scrolled .submenu-toggle {
  color: #142c3a !important;
}

#nav.scrolled .nav-link:not(.nav-cta):hover,
#nav.scrolled .submenu-toggle:hover,
#nav.scrolled .navbar-nav .nav-link.active {
  color: #146b47 !important;
}

#nav.scrolled .nav-hover-search button {
  color: #142c3a !important;
}

#nav.scrolled .bltext {
  color: #142c3a !important;
}

#nav.scrolled .blsub {
  color: #5d6b65 !important;
}

.inner-hero h1,
.history-hero h1 {
  color: #fff !important;
  text-shadow: 0 8px 28px rgba(0, 0, 0, .34);
}

.inner-hero .crumb {
  display: none;
}

.inner-navrow-wrap {
  padding: 0 !important;
  background: #fff;
  border-bottom: 1px solid rgba(20, 44, 58, .08);
}

.inner-navrow {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.inner-crumb {
  display: inline-flex;
  margin: 0;
  color: #7a8580;
  white-space: nowrap;
}

.inner-crumb a {
  color: #146b47;
}

.inner-crumb span {
  color: #5d6b65;
}

.inner-subnav {
  justify-content: flex-end;
  gap: 26px;
  padding: 0;
}

.inner-subnav a {
  padding: 18px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #324039;
  font-size: 16px;
  position: relative;
}

.inner-subnav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 2px;
  background: #146b47;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}

.inner-subnav a:hover,
.inner-subnav a.active {
  color: #146b47;
  background: transparent;
}

.inner-subnav a:hover::after,
.inner-subnav a.active::after {
  transform: scaleX(1);
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(380px, .8fr);
  gap: 54px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
}

.article-main {
  max-width: none;
}

.article-main .inner-lead {
  margin-bottom: 20px;
}

.article-aside {
  position: static;
  max-width: none;
  margin-top: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.article-aside img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.article-aside dl {
  display: none;
}

.article-aside dt {
  color: #146b47;
  font-size: 15px;
  font-weight: 800;
}

.article-aside dd {
  margin: 4px 0 0;
  color: #5d6b65;
  font-size: 16px;
  line-height: 1.75;
}

.section-text {
  max-width: 880px;
  margin: 18px auto 0;
  color: #5d6b65;
  font-size: 17px;
  line-height: 1.9;
  text-align: center;
}

.culture-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.culture-list > div {
  display: block;
  min-height: 210px;
  padding: 28px;
  margin-bottom: 0;
  border: 1px solid rgba(20, 107, 71, .14);
  border-left: 4px solid #146b47;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(20, 44, 58, .06);
}

.culture-list strong {
  color: #146b47;
  font-size: 18px;
}

.culture-list h3 {
  margin-bottom: 8px;
  color: #071a22;
  font-size: 22px;
}

.culture-list p {
  margin: 0;
  color: #5d6b65;
  font-size: 16px;
  line-height: 1.8;
}

.value-card {
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -46px;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(20, 107, 71, .16);
  border-radius: 50%;
}

.value-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.value-tags span {
  padding: 9px 14px;
  border: 1px solid rgba(20, 107, 71, .18);
  border-radius: 999px;
  background: #f6faf8;
  color: #146b47;
  font-size: 15px;
  font-weight: 700;
}

.product-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.product-side {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
}

.product-side-block {
  padding: 24px;
  border-radius: 8px;
  background: #f6faf8;
  border: 1px solid rgba(20, 107, 71, .12);
}

.product-side-block h3 {
  display: none;
}

.product-filter button {
  display: block;
  width: 100%;
  padding: 11px 0;
  border-bottom: 1px solid rgba(20, 44, 58, .08);
  border-top: 0;
  border-left: 0;
  border-right: 0;
  background: transparent;
  color: #324039;
  font-size: 16px;
  text-align: left;
}

.product-filter button:hover,
.product-filter button.active {
  color: #146b47;
}

.side-search {
  display: flex;
  border: 1px solid rgba(20, 107, 71, .16);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.side-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 12px;
  font-size: 15px;
}

.side-search button {
  width: 44px;
  border: 0;
  background: #146b47;
  color: #fff;
}

.hot-products {
  display: grid;
  gap: 12px;
}

.hot-products a {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(20, 44, 58, .08);
  border-radius: 8px;
  background: #fff;
  color: #324039;
}

.hot-products a:hover {
  color: #146b47;
}

.hot-products img {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  object-fit: cover;
}

.hot-products span {
  font-size: 16px;
  font-weight: 700;
}

.product-item.is-hidden,
.product-item.is-page-hidden {
  display: none;
}

.product-detail {
  max-width: 1180px;
  margin: 0 auto;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: start;
}

.product-gallery,
.product-summary,
.product-detail-section {
  border: 1px solid rgba(20, 44, 58, .08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(20, 44, 58, .06);
}

.product-gallery {
  padding: 18px;
}

.product-main-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  object-fit: cover;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.product-thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  object-fit: cover;
}

.product-summary {
  padding: 34px;
}

.product-summary > span {
  display: inline-block;
  margin-bottom: 14px;
  color: #146b47;
  font-size: 16px;
  font-weight: 700;
}

.product-summary h1 {
  margin-bottom: 18px;
  color: #071a22;
  font-size: 36px;
  line-height: 1.25;
}

.product-summary p,
.product-detail-section p {
  color: #5d6b65;
  font-size: 16px;
  line-height: 1.9;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn-plain {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(20, 107, 71, .20);
  border-radius: 999px;
  color: #146b47;
  font-weight: 700;
}

.product-detail-section {
  margin-top: 26px;
  padding: 30px;
}

.product-detail-section h2 {
  margin-bottom: 18px;
  color: #071a22;
  font-size: 26px;
}

.param-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(20, 44, 58, .08);
  border-left: 1px solid rgba(20, 44, 58, .08);
}

.param-grid div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  border-right: 1px solid rgba(20, 44, 58, .08);
  border-bottom: 1px solid rgba(20, 44, 58, .08);
}

.param-grid strong,
.param-grid span {
  padding: 14px 16px;
  font-size: 15px;
  line-height: 1.7;
}

.param-grid strong {
  color: #071a22;
  background: #f6faf8;
}

.param-grid span {
  color: #5d6b65;
}

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

.process-gallery article {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(20, 44, 58, .08);
}

.process-gallery img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.process-gallery div {
  padding: 22px;
}

.process-gallery h3 {
  margin-bottom: 8px;
  color: #071a22;
  font-size: 22px;
}

.process-gallery p {
  margin: 0;
  color: #5d6b65;
  font-size: 16px;
  line-height: 1.75;
}

.production-story {
  max-width: 1180px;
  margin: 0 auto;
}

.story-row {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
  gap: 44px;
  align-items: center;
  margin-bottom: 54px;
}

.story-row:last-child {
  margin-bottom: 0;
}

.story-row.reverse img {
  order: 2;
}

.story-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(20, 44, 58, .08);
}

.story-row h2 {
  margin-bottom: 16px;
  color: #071a22;
  font-size: 34px;
  line-height: 1.28;
}

.story-row h2 span {
  color: #146b47;
}

.story-row p {
  margin-bottom: 16px;
  color: #5d6b65;
  font-size: 16px;
  line-height: 1.95;
}

.pager {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
}

.pager a,
.pager span {
  min-width: 78px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(20, 107, 71, .18);
  border-radius: 6px;
  color: #324039;
  background: #fff;
  font-size: 15px;
}

.pager span,
.pager a:hover {
  color: #fff;
  background: #146b47;
  border-color: #146b47;
}

.wechat-news-list {
  display: grid;
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}

.wechat-news {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(20, 44, 58, .08);
  box-shadow: 0 14px 36px rgba(20, 44, 58, .06);
}

.wechat-news:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(20, 44, 58, .1);
}

.wechat-news img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.wechat-news span,
.article-meta {
  color: #146b47;
  font-size: 15px;
  font-weight: 700;
}

.wechat-news h2 {
  margin: 12px 0;
  color: #071a22;
  font-size: 24px;
  line-height: 1.35;
}

.wechat-news p {
  margin: 0;
  color: #5d6b65;
  font-size: 16px;
  line-height: 1.85;
}

.wechat-article {
  box-shadow: none;
  border-radius: 0;
}

.wechat-article h1 {
  margin: 14px 0 22px;
  color: #071a22;
  font-size: 36px;
}

.wechat-article img {
  width: 100%;
  margin: 24px 0;
  border-radius: 8px;
}

.franchise-wizard {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  padding: 34px;
  border-radius: 8px;
  background: #f7fbf9;
  border: 1px solid rgba(20, 107, 71, .12);
}

.wizard-steps {
  display: grid;
  gap: 12px;
}

.wizard-steps button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(20, 107, 71, .16);
  border-radius: 8px;
  background: #fff;
  color: #324039;
  text-align: left;
}

.wizard-steps button span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(20, 107, 71, .1);
  color: #146b47;
  font-weight: 800;
}

.wizard-steps button.active {
  color: #fff;
  background: #146b47;
}

.wizard-steps button.active span {
  color: #146b47;
  background: #fff;
}

.wizard-panel {
  min-height: 420px;
  padding: 34px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(20, 44, 58, .08);
}

.wizard-page {
  display: none;
}

.wizard-page.active {
  display: grid;
  gap: 18px;
}

.wizard-page h2 {
  color: #071a22;
  font-size: 30px;
}

.wizard-page p {
  color: #5d6b65;
  font-size: 16px;
  line-height: 1.8;
}

.wizard-page input,
.wizard-page select,
.wizard-page textarea {
  width: 100%;
  border: 1px solid #dfe6e2;
  border-radius: 8px;
  padding: 14px;
  color: #23352f;
  font-size: 16px;
}

.wizard-page textarea {
  min-height: 150px;
}

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

.wizard-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 12px;
}

.wizard-prev,
.wizard-next {
  border: 0;
  border-radius: 6px;
  padding: 12px 22px;
  font-size: 16px;
}

.wizard-prev {
  background: #eef4f1;
  color: #324039;
}

.wizard-next {
  background: #146b47;
  color: #fff;
}

.inner-contact-section {
  padding: 82px 0 48px;
}

.inner-map-section {
  padding: 0 0 82px;
}

.contact-map {
  width: 100%;
  height: 394px;
  overflow: hidden;
  border-radius: 10px;
}

.jl-map {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border-radius: 8px;
  background: linear-gradient(135deg, #e8f1ee, #f8fbfa);
  border: 1px solid rgba(20, 107, 71, .14);
}

.map-lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(30deg, transparent 46%, rgba(20, 107, 71, .18) 47%, rgba(20, 107, 71, .18) 49%, transparent 50%),
    linear-gradient(120deg, transparent 44%, rgba(49, 95, 115, .18) 45%, rgba(49, 95, 115, .18) 47%, transparent 48%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.54) 0 1px, transparent 1px 58px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.54) 0 1px, transparent 1px 58px);
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(440px, calc(100% - 40px));
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 20px 48px rgba(20, 44, 58, .14);
  text-align: center;
}

.map-pin i {
  color: #146b47;
  font-size: 34px;
}

.map-pin strong,
.map-pin span {
  display: block;
}

.map-pin strong {
  margin-top: 10px;
  color: #071a22;
  font-size: 22px;
}

.map-pin span {
  margin-top: 8px;
  color: #5d6b65;
  font-size: 16px;
}

@media (max-width: 991px) {
  .inner-navrow,
  .article-grid,
  .product-layout,
  .product-hero,
  .process-gallery,
  .story-row,
  .wechat-news,
  .franchise-wizard {
    grid-template-columns: 1fr;
  }

  .inner-navrow {
    align-items: flex-start;
    padding: 12px 0;
  }

  .inner-subnav {
    justify-content: flex-start;
  }

  .article-aside,
  .product-side {
    position: static;
  }

  .story-row.reverse img {
    order: 0;
  }

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

/* Refinement round: inner width, product detail, contact and news layout */
.inner-hero {
  padding-top: 224px !important;
  padding-bottom: 192px !important;
}

.ctinfo span {
  white-space: nowrap;
}

.product-layout {
  grid-template-columns: 232px minmax(0, 1fr) !important;
  gap: 24px !important;
}

.product-side-block:not(.product-filter) {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.listing-card.product-card img {
  height: 176px !important;
}

.listing-card.product-card .listing-body {
  padding: 18px !important;
}

.listing-card.product-card .listing-title {
  margin-bottom: 8px;
  font-size: 20px;
}

.product-main-img {
  transition: opacity .18s ease;
}

.product-detail {
  max-width: 1320px !important;
}

.product-hero {
  align-items: stretch !important;
}

.product-summary {
  display: flex;
  flex-direction: column;
}

.product-actions {
  margin-top: auto !important;
  padding-top: 28px;
}

.product-thumbs button {
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: transparent;
}

.product-thumbs button.active {
  border-color: #146b47;
  box-shadow: 0 10px 24px rgba(20, 107, 71, .18);
}

.product-thumbs button img {
  border-radius: 0;
  transition: transform .28s ease;
}

.product-thumbs button:hover img {
  transform: scale(1.06);
}

.product-detail-page {
  margin-top: 26px;
  padding: 30px;
  border: 1px solid rgba(20, 44, 58, .08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(20, 44, 58, .06);
}

.product-detail-page h2 {
  margin-bottom: 18px;
  color: #071a22;
  font-size: 26px;
}

.product-detail-page img {
  width: 100%;
  max-height: 520px;
  border-radius: 8px;
  object-fit: cover;
}

.product-detail-page p {
  margin: 20px 0 0;
  color: #5d6b65;
  font-size: 16px;
  line-height: 1.9;
}

.wechat-news-list {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  max-width: 1320px !important;
}

.wechat-news {
  display: block !important;
  min-height: 100%;
}

.wechat-news h2 {
  font-size: 22px;
}

@media (max-width: 991px) {
  .inner-hero {
    padding-top: 156px !important;
    padding-bottom: 128px !important;
  }

  .ctinfo span {
    white-space: normal;
  }

  .wechat-news-list {
    grid-template-columns: 1fr !important;
  }
}

/* End-of-file corrective layer: this file contains legacy responsive blocks above. */
#nav .nav-link-wrap {
  display: flex;
  align-items: stretch;
}

#nav .nav-link-wrap > .nav-link {
  flex: 1 1 auto;
}

#nav .submenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

#nav .submenu-toggle i {
  transition: transform .2s ease;
}

#nav .nav-item.dropdown.is-mobile-open .submenu-toggle i {
  transform: rotate(180deg);
}

#nav .navbar-nav .nav-link:hover::after,
#nav .navbar-nav .nav-link.active::after {
  width: 28px !important;
  left: 50% !important;
  transform: translateX(-50%);
}

.wechat-article .news-article-opening > div,
.wechat-article .news-article-row > div {
  display: block !important;
  min-height: 0 !important;
}

.wechat-article .news-article-opening p,
.wechat-article .news-article-row p {
  margin-bottom: 18px !important;
}

.wechat-article .news-article-section {
  max-width: none !important;
  margin: 0 auto !important;
  padding: 34px 0 0 !important;
  border-top: 1px solid var(--line);
}

.wechat-article .news-article-section h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 30px;
  font-weight: 650;
}

.wechat-article .news-article-section p {
  max-width: 920px;
  margin-bottom: 18px;
  color: #65736d;
  font-size: 17px;
  line-height: 1.92;
}

@media (max-width: 991px) {
  #nav,
  #nav:not(.scrolled),
  #nav.scrolled {
    position: sticky !important;
    top: 0 !important;
    min-height: 72px !important;
    background: #fff !important;
    box-shadow: 0 4px 18px rgba(16, 43, 51, .12) !important;
  }

  #nav > .container {
    min-height: 72px;
  }

  #nav .navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(16, 43, 51, .35) !important;
    border-radius: 6px;
    color: var(--ink) !important;
  }

  #nav .navbar-toggler i {
    color: var(--ink) !important;
  }

  #nav .navbar-collapse.show,
  #nav .navbar-collapse.collapsing {
    position: fixed !important;
    z-index: 1040;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    display: block !important;
    width: 100vw;
    height: calc(100dvh - 72px) !important;
    margin: 0 !important;
    padding: 18px 24px 34px !important;
    overflow-y: auto;
    border: 0 !important;
    background: #fff !important;
  }

  #nav .navbar-collapse.show .navbar-nav,
  #nav .navbar-collapse.collapsing .navbar-nav {
    width: 100%;
    margin: 0 !important;
  }

  #nav .navbar-collapse.show .nav-item,
  #nav .navbar-collapse.collapsing .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--line);
  }

  #nav .navbar-collapse.show .nav-link-wrap,
  #nav .navbar-collapse.collapsing .nav-link-wrap {
    min-height: 58px;
  }

  #nav .navbar-collapse.show .nav-link,
  #nav .navbar-collapse.collapsing .nav-link {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 12px 0 !important;
    color: var(--ink) !important;
  }

  #nav .navbar-collapse.show .submenu-toggle,
  #nav .navbar-collapse.collapsing .submenu-toggle {
    width: 58px;
    min-height: 58px;
    color: var(--ink) !important;
    font-size: 17px;
  }

  #nav .navbar-collapse.show .nav-link::after,
  #nav .navbar-collapse.collapsing .nav-link::after {
    bottom: 8px;
  }

  #nav .nav-item.dropdown .jl-submenu {
    width: 100% !important;
    margin: 0 0 12px !important;
    padding: 4px 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: var(--paper) !important;
  }

  #nav .nav-item.dropdown.is-mobile-open .jl-submenu {
    display: block !important;
  }

  #nav .nav-item.dropdown .dropdown-item {
    padding: 12px 16px 12px 22px !important;
  }

  #nav .navbar-collapse.show > .d-flex,
  #nav .navbar-collapse.collapsing > .d-flex {
    margin-top: 22px;
  }

  .product-mobile-tools [data-product-side-toggle] {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 16px !important;
  }

  .product-mobile-tools [data-product-side-toggle] i {
    flex: 0 0 auto;
    margin: 0 !important;
  }
}

/* Phone navigation actions and text-only news conclusion. */
.wechat-article .news-article-section,
.wechat-article .news-article-section h2 {
  text-align: center;
}

.wechat-article .news-article-section p {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

@media (max-width: 991px) {
  #nav .navbar-collapse.show .nav-item,
  #nav .navbar-collapse.collapsing .nav-item {
    position: relative;
  }

  #nav .navbar-collapse.show .nav-link.active::after,
  #nav .navbar-collapse.collapsing .nav-link.active::after {
    display: none;
  }

  #nav .navbar-collapse.show .nav-item:has(.nav-link.active)::after,
  #nav .navbar-collapse.collapsing .nav-item:has(.nav-link.active)::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--primary);
  }

  #nav .navbar-collapse.show > .d-flex,
  #nav .navbar-collapse.collapsing > .d-flex {
    display: flex !important;
    align-items: center !important;
    width: 100%;
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    gap: 14px !important;
  }

  #nav .navbar-collapse.show .nav-hover-search,
  #nav .navbar-collapse.collapsing .nav-hover-search {
    flex: 0 0 48px;
    width: 48px;
    margin: 0;
  }

  #nav .navbar-collapse.show .nav-hover-search input,
  #nav .navbar-collapse.collapsing .nav-hover-search input {
    display: none !important;
  }

  #nav .navbar-collapse.show .nav-hover-search button,
  #nav .navbar-collapse.collapsing .nav-hover-search button {
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 6px !important;
    background: #f3f7f5;
    color: var(--ink) !important;
  }

  #nav .navbar-collapse.show .nav-cta,
  #nav .navbar-collapse.collapsing .nav-cta {
    display: inline-flex !important;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin: 0 !important;
    padding: 0 18px !important;
    gap: 8px;
    color: #fff !important;
    background: var(--primary) !important;
    box-shadow: 0 8px 20px rgba(21, 114, 79, .2) !important;
  }

  #nav .navbar-collapse.show .nav-cta i,
  #nav .navbar-collapse.collapsing .nav-cta i {
    margin: 0 !important;
    color: #fff !important;
  }
}

/* Mobile menu is a full-page navigation layer; parent links and submenu controls stay separate. */
#nav .nav-link-wrap {
  display: flex;
  align-items: stretch;
}

#nav .nav-link-wrap > .nav-link {
  flex: 1 1 auto;
}

#nav .submenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

#nav .submenu-toggle i {
  transition: transform .2s ease;
}

#nav .nav-item.dropdown.is-mobile-open .submenu-toggle i {
  transform: rotate(180deg);
}

#nav .navbar-nav .nav-link:hover::after,
#nav .navbar-nav .nav-link.active::after {
  width: 28px !important;
  left: 50% !important;
  transform: translateX(-50%);
}

.wechat-article .news-article-opening > div,
.wechat-article .news-article-row > div {
  display: block !important;
  min-height: 0 !important;
}

.wechat-article .news-article-opening p,
.wechat-article .news-article-row p {
  margin-bottom: 18px !important;
}

.wechat-article .news-article-section {
  max-width: none !important;
  margin: 0 auto !important;
  padding: 34px 0 0 !important;
  border-top: 1px solid var(--line);
}

.wechat-article .news-article-section h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 30px;
  font-weight: 650;
}

.wechat-article .news-article-section p {
  max-width: 920px;
  margin-bottom: 18px;
  color: #65736d;
  font-size: 17px;
  line-height: 1.92;
}

@media (max-width: 991px) {
  #nav,
  #nav:not(.scrolled),
  #nav.scrolled {
    position: sticky !important;
    top: 0 !important;
    min-height: 72px !important;
    background: #fff !important;
    box-shadow: 0 4px 18px rgba(16, 43, 51, .12) !important;
  }

  #nav > .container {
    min-height: 72px;
  }

  #nav .navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(16, 43, 51, .35) !important;
    border-radius: 6px;
    color: var(--ink) !important;
  }

  #nav .navbar-toggler i {
    color: var(--ink) !important;
  }

  #nav .navbar-collapse.show,
  #nav .navbar-collapse.collapsing {
    position: fixed !important;
    z-index: 1040;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    display: block !important;
    width: 100vw;
    height: calc(100dvh - 72px) !important;
    margin: 0 !important;
    padding: 18px 24px 34px !important;
    overflow-y: auto;
    border: 0 !important;
    background: #fff !important;
  }

  #nav .navbar-collapse.show .navbar-nav,
  #nav .navbar-collapse.collapsing .navbar-nav {
    width: 100%;
    margin: 0 !important;
  }

  #nav .navbar-collapse.show .nav-item,
  #nav .navbar-collapse.collapsing .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--line);
  }

  #nav .navbar-collapse.show .nav-link-wrap,
  #nav .navbar-collapse.collapsing .nav-link-wrap {
    min-height: 58px;
  }

  #nav .navbar-collapse.show .nav-link,
  #nav .navbar-collapse.collapsing .nav-link {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 12px 0 !important;
    color: var(--ink) !important;
  }

  #nav .navbar-collapse.show .submenu-toggle,
  #nav .navbar-collapse.collapsing .submenu-toggle {
    width: 58px;
    min-height: 58px;
    color: var(--ink) !important;
    font-size: 17px;
  }

  #nav .navbar-collapse.show .nav-link::after,
  #nav .navbar-collapse.collapsing .nav-link::after {
    bottom: 8px;
  }

  #nav .nav-item.dropdown .jl-submenu {
    width: 100% !important;
    margin: 0 0 12px !important;
    padding: 4px 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: var(--paper) !important;
  }

  #nav .nav-item.dropdown.is-mobile-open .jl-submenu {
    display: block !important;
  }

  #nav .nav-item.dropdown .dropdown-item {
    padding: 12px 16px 12px 22px !important;
  }

  #nav .navbar-collapse.show > .d-flex,
  #nav .navbar-collapse.collapsing > .d-flex {
    margin-top: 22px;
  }

  .product-mobile-tools [data-product-side-toggle] {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 16px !important;
  }

  .product-mobile-tools [data-product-side-toggle] i {
    flex: 0 0 auto;
    margin: 0 !important;
  }
}

/* Final precedence: mobile navigation stays solid, and detail pages use one continuous reading width. */
#topbar {
  display: none !important;
}

.stitle.text-center {
  display: block;
  padding-left: 0 !important;
  text-align: center !important;
}

.stitle.text-center::before {
  display: none !important;
}

.stitle.text-center + .sline {
  margin-right: auto !important;
  margin-left: auto !important;
}

.listing-card.product-card img,
.product-card img {
  height: auto !important;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.case-article,
.wechat-article,
.case-article-head,
.case-story-row,
.case-article-end,
.news-article-opening,
.news-article-row {
  max-width: 1380px !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

.case-article .case-story-row,
.case-article .case-article-end,
.wechat-article .news-article-opening,
.wechat-article .news-article-row {
  min-height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.case-story-row {
  gap: 30px !important;
  margin-bottom: 36px !important;
}

.case-article-end {
  padding-top: 22px !important;
  margin-top: 0 !important;
}

.news-article-opening,
.news-article-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
  margin-bottom: 36px !important;
}

.news-article-opening > div,
.news-article-row > div {
  min-width: 0;
}

.news-article-opening img,
.news-article-row img {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 4 / 3;
  margin: 0 !important;
  border-radius: 6px !important;
  object-fit: cover;
}

.news-article-row.reverse img {
  order: 2;
}

@media (max-width: 991px) {
  #nav,
  #nav:not(.scrolled),
  #nav.scrolled {
    position: sticky !important;
    top: 0 !important;
    background: #fff !important;
    box-shadow: 0 6px 20px rgba(16, 43, 51, .09) !important;
  }

  #nav .navbar-nav .nav-link,
  #nav:not(.scrolled) .navbar-nav .nav-link,
  #nav .nav-hover-search button,
  #nav:not(.scrolled) .nav-hover-search button,
  #nav .navbar-toggler i {
    color: var(--ink) !important;
  }

  #nav .navbar-collapse {
    position: relative;
    z-index: 2;
    margin-top: 8px;
    padding: 10px 0 16px;
    border-top: 1px solid var(--line);
    background: #fff;
  }

  #hero,
  .inner-hero {
    padding-top: 92px !important;
  }

  .product-mobile-tools {
    padding: 14px 8px 10px !important;
  }

  .product-side.is-filter-open .product-filter,
  .product-side.is-search-open .product-side-block:nth-child(2) {
    padding: 14px !important;
    border: 1px solid var(--line) !important;
    border-radius: 6px;
    background: var(--paper) !important;
  }

  .product-side.is-filter-open .product-filter button {
    padding: 14px 12px !important;
  }

  .case-story-row,
  .news-article-opening,
  .news-article-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .news-article-row.reverse img {
    order: 0;
  }
}

/* Current feedback corrections: keep desktop titles centred when marked and keep article sections inside one reading canvas. */
#topbar {
  display: none !important;
}

#nav:not(.scrolled) {
  top: 0 !important;
}

.stitle.text-center {
  display: block;
  padding-left: 0 !important;
  text-align: center;
}

.stitle.text-center::before {
  display: none !important;
}

.stitle.text-center + .sline {
  margin-right: auto !important;
  margin-left: auto !important;
}

.product-card img {
  height: auto !important;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.case-article .case-story-row,
.case-article .case-article-end,
.wechat-article .news-article-opening,
.wechat-article .news-article-row {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  min-height: 0 !important;
}

.case-article-end {
  max-width: none !important;
  margin: 0 !important;
  border-top: 1px solid var(--line);
}

.news-article-opening,
.news-article-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto 38px;
}

.news-article-opening > div,
.news-article-row > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 330px;
}

.news-article-opening img,
.news-article-row img {
  width: 100% !important;
  height: 100%;
  min-height: 330px;
  margin: 0 !important;
  border-radius: 6px !important;
  object-fit: cover;
}

.news-article-row.reverse img {
  order: 2;
}

.news-article-row h2 {
  margin: 0 0 16px;
}

@media (max-width: 991px) {
  #nav,
  #nav:not(.scrolled),
  #nav.scrolled {
    position: sticky !important;
    top: 0 !important;
    background: #fff !important;
    box-shadow: 0 8px 22px rgba(16, 43, 51, .08) !important;
  }

  #nav .navbar-nav .nav-link,
  #nav:not(.scrolled) .navbar-nav .nav-link,
  #nav .nav-hover-search button,
  #nav:not(.scrolled) .nav-hover-search button,
  #nav .navbar-toggler i {
    color: var(--ink) !important;
  }

  #nav .navbar-collapse {
    position: relative;
    z-index: 2;
    margin-top: 8px;
    padding: 10px 0 16px;
    border-top: 1px solid var(--line);
    background: #fff;
  }

  .inner-hero {
    padding-top: 92px !important;
  }

  #hero {
    padding-top: 92px !important;
  }

  .product-mobile-tools {
    padding: 6px 4px 4px;
  }

  .product-side.is-filter-open .product-filter,
  .product-side.is-search-open .product-side-block:nth-child(2) {
    padding: 12px !important;
    border: 1px solid var(--line) !important;
    border-radius: 6px;
    background: var(--paper) !important;
  }

  .product-side.is-filter-open .product-filter button {
    padding: 13px 12px;
  }

  .news-article-opening,
  .news-article-row {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 30px;
  }

  .news-article-opening > div,
  .news-article-row > div,
  .news-article-opening img,
  .news-article-row img {
    min-height: 0;
  }

  .news-article-row.reverse img {
    order: 0;
  }
}

/* Final responsive navigation and inner-page refinements. */
#topbar {
  display: none !important;
}

#nav:not(.scrolled) {
  top: 0 !important;
}

.product-card img {
  height: auto !important;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.case-article,
.wechat-article,
.case-article-head,
.case-story-row,
.case-article-end,
.news-article-opening,
.news-article-row {
  max-width: 1380px !important;
  margin-right: auto;
  margin-left: auto;
}

.case-article-head {
  margin-bottom: 28px !important;
}

.case-story-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px !important;
  margin-bottom: 36px !important;
}

.case-story-row img {
  aspect-ratio: 16 / 10;
}

.case-article-end {
  margin-top: 0 !important;
}

.news-article-opening,
.news-article-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
  margin-bottom: 36px;
}

.news-article-opening > div,
.news-article-row > div {
  min-width: 0;
}

.news-article-opening p,
.news-article-row p {
  margin-bottom: 16px;
  color: #65736d;
  font-size: 17px;
  line-height: 1.92;
}

.news-article-opening img,
.news-article-row img {
  width: 100% !important;
  aspect-ratio: 4 / 3;
  margin: 0 !important;
  border-radius: 6px !important;
  object-fit: cover;
}

.news-article-row.reverse img {
  order: 2;
}

.news-article-row h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 30px;
  font-weight: 650;
}

#brands .inner-card,
#certificates .chcard {
  cursor: pointer;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background-color .28s ease;
}

#brands .inner-card:hover,
#brands .inner-card:focus-visible,
#brands .inner-card.is-selected,
#certificates .chcard:hover,
#certificates .chcard:focus-visible,
#certificates .chcard.is-selected {
  border-color: rgba(20, 107, 71, .5) !important;
  box-shadow: 0 20px 42px rgba(20, 44, 58, .12) !important;
  outline: 0;
  transform: translateY(-6px);
}

#brands .inner-card.is-selected,
#certificates .chcard.is-selected {
  background: #f7fbf9;
}

@media (prefers-reduced-motion: no-preference) {
  #brands [data-aos].aos-animate .inner-card,
  #certificates [data-aos].aos-animate .chcard {
    animation: featureCardEnter .62s cubic-bezier(.22, .61, .36, 1) both;
  }

  #brands [data-aos].aos-animate .inner-card,
  #certificates [data-aos].aos-animate .chcard {
    animation-delay: .08s;
  }
}

@keyframes featureCardEnter {
  from { opacity: 0; transform: translateY(20px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 991px) {
  #nav,
  #nav:not(.scrolled),
  #nav.scrolled {
    position: absolute !important;
    top: 0 !important;
    background: #fff !important;
    box-shadow: 0 4px 18px rgba(16, 43, 51, .08) !important;
  }

  #nav:not(.scrolled) .nav-link:not(.nav-cta),
  #nav:not(.scrolled) .nav-hover-search button,
  #nav:not(.scrolled) .submenu-toggle,
  #nav .navbar-toggler i {
    color: var(--ink) !important;
  }

  #nav .navbar-collapse {
    margin-top: 10px;
    padding: 8px 0 14px;
    border-top: 1px solid var(--line);
    background: #fff;
  }

  #nav .nav-item.dropdown .jl-submenu {
    position: static;
    display: none;
    width: auto;
    margin: 0 12px 8px;
    padding: 6px 0;
    border: 1px solid var(--line);
    border-radius: 6px;
    box-shadow: none;
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  #nav .nav-item.dropdown.is-mobile-open .jl-submenu {
    display: block;
  }

  #nav .nav-item.dropdown .dropdown-item {
    padding: 11px 16px;
  }

  .product-side.is-filter-open .product-filter {
    padding: 12px !important;
    border: 1px solid var(--line) !important;
    border-radius: 6px;
    background: var(--paper) !important;
  }

  .product-side.is-filter-open .product-filter button {
    padding-right: 12px;
    padding-left: 12px;
  }

  .case-story-row,
  .news-article-opening,
  .news-article-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .news-article-row.reverse img {
    order: 0;
  }
}

/* Detail-page correction: title treatment is specific to the reading page, not a global left-line rule. */
.article-main h2:not(.stitle),
.production-story h2,
.product-summary h1,
.product-detail-page h2,
.wechat-article h1 {
  padding-left: 0 !important;
}

.article-main h2:not(.stitle)::before,
.production-story h2::before,
.product-summary h1::before,
.product-detail-page h2::before,
.wechat-article h1::before {
  display: none !important;
}

.article-main .stitle {
  display: block;
  padding-left: 0 !important;
  text-align: center;
}

.article-main .stitle::before {
  display: none;
}

.case-detail-section,
.news-detail-section {
  padding-top: 56px !important;
  padding-bottom: 64px !important;
}

.case-article,
.wechat-article {
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

.case-article-head,
.wechat-article > h1,
.wechat-article > .article-meta {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.case-article-head {
  margin-bottom: 34px;
}

.case-article-logo {
  margin-right: auto;
  margin-left: auto;
}

.case-article h1,
.wechat-article h1 {
  font-size: clamp(30px, 3vw, 40px) !important;
}

.wechat-article > .article-meta {
  margin-bottom: 12px;
}

.case-story-row {
  gap: 34px;
  margin-bottom: 42px;
}

.case-story-row p {
  margin-bottom: 12px;
}

.case-article-end {
  padding-top: 22px;
}

.news-article-opening {
  max-width: 1180px;
  gap: 32px;
  margin: 0 auto 34px;
}

.news-article-section {
  max-width: 980px;
  margin: 0 auto 30px;
}

.product-mobile-tools {
  display: none;
}

.product-main-stage {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.product-main-stage .product-main-img {
  display: block;
  transition: none;
}

.product-main-img.slide-out-left { animation: productSlideOutLeft .18s ease forwards; }
.product-main-img.slide-out-right { animation: productSlideOutRight .18s ease forwards; }
.product-main-img.slide-in-left { animation: productSlideInLeft .21s ease both; }
.product-main-img.slide-in-right { animation: productSlideInRight .21s ease both; }

@keyframes productSlideOutLeft {
  to { opacity: .55; transform: translateX(-106%); }
}

@keyframes productSlideOutRight {
  to { opacity: .55; transform: translateX(106%); }
}

@keyframes productSlideInLeft {
  from { opacity: .55; transform: translateX(-106%); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes productSlideInRight {
  from { opacity: .55; transform: translateX(106%); }
  to { opacity: 1; transform: translateX(0); }
}

.product-param-table {
  width: 100%;
  border: 1px solid var(--line);
  border-collapse: collapse;
  background: #fff;
  font-size: 16px;
}

.product-param-table th,
.product-param-table td {
  padding: 14px 18px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
}

.product-param-table th {
  width: 20%;
  color: var(--ink);
  font-weight: 650;
  background: var(--paper);
}

.product-param-table td {
  color: #5d6b65;
}

.wechat-news > div {
  padding: 18px 18px 20px;
}

.wechat-news {
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.wechat-news:hover,
.wechat-news:focus-visible {
  border-color: rgba(20, 107, 71, .34);
  box-shadow: 0 22px 48px rgba(20, 44, 58, .12);
  outline: 0;
  transform: translateY(-6px);
}

@media (prefers-reduced-motion: no-preference) {
  .wechat-news[data-aos].aos-animate {
    animation: newsListingEnter .62s cubic-bezier(.22, .61, .36, 1) both;
  }

  .wechat-news[data-aos].aos-animate:nth-child(3n + 2) { animation-delay: .1s; }
  .wechat-news[data-aos].aos-animate:nth-child(3n) { animation-delay: .2s; }
}

@keyframes newsListingEnter {
  from { opacity: 0; transform: translateY(22px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 991px) {
  .inner-navrow {
    min-height: 64px;
    align-items: center !important;
    padding: 0 !important;
  }

  .inner-crumb {
    display: flex;
    align-items: center;
    min-height: 64px;
  }

  .inner-subnav {
    display: none !important;
  }

  .product-layout {
    display: flex !important;
    flex-wrap: wrap;
    gap: 16px !important;
  }

  .product-mobile-tools {
    display: flex;
    flex: 0 0 100%;
    align-items: center;
    justify-content: space-between;
    order: 1;
  }

  .product-mobile-tools button {
    min-height: 40px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    color: var(--ink);
    font-size: 15px;
  }

  .product-mobile-tools [data-product-side-toggle] {
    padding: 0 14px;
  }

  .product-mobile-tools [data-product-search-toggle] {
    width: 40px;
  }

  .product-side {
    display: contents;
  }

  .product-side .product-filter,
  .product-side .product-side-block:nth-child(2) {
    display: none !important;
  }

  .product-side.is-filter-open .product-filter,
  .product-side.is-search-open .product-side-block:nth-child(2) {
    display: block !important;
    flex: 0 0 100%;
    width: 100%;
    order: 2;
  }

  .product-side.is-filter-open .product-filter {
    padding: 8px 0 !important;
  }

  .product-list {
    flex: 0 0 100%;
    width: 100%;
    order: 3;
  }

  .product-side .hot-products {
    display: grid;
    flex: 0 0 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    order: 4;
    width: 100%;
    margin-top: 8px;
  }

  .case-detail-section,
  .news-detail-section {
    padding-top: 42px !important;
    padding-bottom: 50px !important;
  }
}

@media (max-width: 767px) {
  .product-grid-fixed {
    --bs-gutter-x: 10px;
    --bs-gutter-y: 10px;
  }

  .product-grid-fixed .product-item {
    flex: 0 0 50%;
    width: 50%;
  }

  .product-card img {
    height: 132px !important;
  }

  .product-card .listing-body,
  .wechat-news > div {
    padding: 12px !important;
  }

  .product-card .listing-title {
    margin-bottom: 6px;
    font-size: 16px !important;
  }

  .product-card .listing-desc {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.55;
  }

  .product-param-table {
    font-size: 14px;
  }

  .product-param-table th,
  .product-param-table td {
    padding: 10px;
  }

  .product-param-table th {
    width: 34%;
  }
}

/* Inner-page consistency: fixed desktop listing rhythm, article reading flow and interactive culture. */
footer .flinks {
  width: 100%;
  margin: 0 !important;
  padding-left: 0 !important;
  text-align: left;
}

footer .flinks li,
footer .flinks a {
  text-align: left;
  justify-content: flex-start;
}

@media (min-width: 992px) {
  .product-grid-fixed {
    min-height: 910px;
    align-content: start;
  }

  .case-listing-grid {
    min-height: 760px;
    align-content: start;
  }

  .news-listing-grid {
    min-height: 900px;
    align-content: start;
  }
}

.product-hero + .product-detail-section {
  width: 100%;
  margin-top: 42px !important;
}

.product-detail-section .param-grid em {
  display: none !important;
}

.production-story,
.production-story .story-row,
.production-story .story-row > div {
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

.case-article {
  max-width: 1180px !important;
}

.case-article-head {
  max-width: 860px;
  margin: 0 auto 54px;
}

.case-article-logo {
  display: block;
  width: 180px;
  height: 86px;
  margin: 0 0 22px;
  object-fit: contain;
  object-position: left center;
}

.case-article h1 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 650;
  line-height: 1.42;
}

.case-article-lead,
.article-lead {
  color: #74817b !important;
  font-size: 18px !important;
  line-height: 1.9 !important;
}

.case-story-row {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
  gap: 48px;
  align-items: center;
  margin: 0 0 58px;
}

.case-story-row.reverse img {
  order: 2;
}

.case-story-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
}

.case-story-row h2,
.case-article-end h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 30px;
  font-weight: 650;
}

.case-story-row p,
.case-story-row li,
.case-article-end p {
  color: #5d6b65;
  font-size: 16px;
  line-height: 1.9;
}

.case-story-row ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.case-article-end {
  max-width: 860px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.case-article-end .btn-red {
  margin-top: 12px;
}

.wechat-news p {
  color: #7a8882 !important;
}

.news-article-opening {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .92fr);
  gap: 42px;
  align-items: start;
  margin: 0 0 46px;
}

.news-article-opening p {
  color: #65736d;
  font-size: 17px;
  line-height: 1.95;
}

.news-article-opening img {
  width: 100% !important;
  aspect-ratio: 4 / 3;
  margin: 0 !important;
  border-radius: 6px !important;
  object-fit: cover;
}

.news-article-section {
  max-width: 860px;
  margin: 0 0 38px;
}

.news-article-section p {
  color: #5d6b65;
  font-size: 17px;
  line-height: 1.95;
}

.culture-choice {
  cursor: pointer;
  transition: transform .28s ease, border-color .28s ease, background-color .28s ease, box-shadow .28s ease;
}

.culture-choice:hover,
.culture-choice:focus-visible,
.culture-choice.is-selected {
  border-color: rgba(142, 226, 187, .78) !important;
  background: rgba(255, 255, 255, .18) !important;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .2);
  outline: 0;
  transform: translateY(-5px);
}

.culture-poster-values .value-tags .culture-choice.is-selected {
  color: #0d3a2a !important;
  background: #fff !important;
}

@media (prefers-reduced-motion: no-preference) {
  [data-aos].aos-animate .culture-poster-item {
    animation: culturePanelIn .64s cubic-bezier(.22, .61, .36, 1) both;
  }

  [data-aos].aos-animate .culture-poster-item:nth-child(2) {
    animation-delay: .14s;
  }

  [data-aos].aos-animate .culture-poster-values {
    animation: cultureValuesIn .68s cubic-bezier(.22, .61, .36, 1) .24s both;
  }
}

@keyframes culturePanelIn {
  from { opacity: 0; transform: translateY(26px) skewY(1deg); }
  to { opacity: 1; transform: translateY(0) skewY(0); }
}

@keyframes cultureValuesIn {
  from { opacity: 0; clip-path: inset(0 100% 0 0); }
  to { opacity: 1; clip-path: inset(0 0 0 0); }
}

@media (max-width: 991px) {
  .product-grid-fixed,
  .case-listing-grid,
  .news-listing-grid {
    min-height: 0;
  }

  .case-story-row,
  .news-article-opening {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .case-story-row.reverse img {
    order: 0;
  }
}

@media (max-width: 575px) {
  .pager {
    flex-wrap: nowrap;
    gap: 4px;
    margin-top: 28px;
  }

  .pager a,
  .pager span {
    min-width: 0;
    flex: 1 1 0;
    height: 36px;
    font-size: 13px;
    white-space: nowrap;
  }

  .case-article-head {
    margin-bottom: 36px;
  }

  .case-article-logo {
    width: 150px;
    height: 70px;
  }

  .case-story-row {
    margin-bottom: 42px;
  }

  .case-story-row h2,
  .case-article-end h2 {
    font-size: 25px;
  }

  .article-lead,
  .case-article-lead,
  .news-article-opening p,
  .news-article-section p {
    font-size: 16px !important;
  }
}

/* 2026-09-08 visual system: paper, production and long-term supply */
:root {
  --primary: #15724f;
  --secondary: #355f67;
  --dark: #102b33;
  --ink: #1e3438;
  --muted: #687873;
  --paper: #f5f7f6;
  --paper-deep: #e9efec;
  --line: #d9e3de;
  --shadow-soft: 0 18px 46px rgba(16, 43, 51, .07);
}

body {
  color: var(--ink);
  background: #fff;
  font-size: 16px;
  line-height: 1.75;
}

section {
  padding: 104px 0;
}

.inner-section {
  padding: 96px 0;
}

.stitle {
  font-size: clamp(30px, 2.5vw, 38px) !important;
  font-weight: 650 !important;
  letter-spacing: 0 !important;
  margin-bottom: 14px;
}

.sline {
  width: 42px;
  height: 3px;
  margin-bottom: 18px;
  border-radius: 0;
  background: var(--primary);
}

.sdesc,
.inner-lead,
.section-text,
.listing-desc,
.blbody p {
  color: var(--muted) !important;
  font-size: 16px !important;
  line-height: 1.9 !important;
}

.btn-red,
.nav-cta {
  border-radius: 6px !important;
  background: #15724f !important;
  box-shadow: 0 10px 24px rgba(21, 114, 79, .18) !important;
}

.btn-red:hover,
.nav-cta:hover {
  background: #0f5c40 !important;
  box-shadow: 0 14px 30px rgba(21, 114, 79, .24) !important;
  transform: translateY(-2px);
}

/* Navigation changes state without introducing a second visual layer. */
#nav,
#nav.scrolled {
  min-height: 82px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(16, 43, 51, .08) !important;
  backdrop-filter: none !important;
}

#nav:not(.scrolled) {
  background: transparent !important;
  box-shadow: none !important;
}

#nav .navbar-nav .nav-link {
  padding: 29px 20px !important;
  font-size: 16px;
  font-weight: 600;
}

#nav .navbar-nav .nav-link::after {
  height: 2px;
  width: 0;
  border-radius: 0;
}

#nav .navbar-nav .nav-link:hover::after,
#nav .navbar-nav .nav-link.active::after {
  width: calc(100% - 40px);
}

#nav.scrolled .blogo .bname,
#nav.scrolled .bltext,
#nav.scrolled .blsub,
#nav.scrolled .nav-hover-search button,
#nav.scrolled .submenu-toggle {
  color: var(--dark) !important;
}

#nav .jl-submenu {
  padding: 8px;
  border-color: rgba(16, 43, 51, .1);
  border-radius: 6px;
  box-shadow: 0 18px 36px rgba(16, 43, 51, .12);
}

#nav .jl-submenu .dropdown-item {
  padding: 10px 13px;
  border-radius: 4px;
}

/* Home page: the only heavy visual moment is the production-led hero. */
#hero {
  min-height: 720px !important;
  padding: 132px 0 92px !important;
  background: #081517 !important;
}

#hero .hero-row {
  min-height: 496px;
}

.hero-bg-slide {
  height: 100%;
  opacity: 0;
}

.hero-bg-slide::after {
  background: linear-gradient(90deg, rgba(5, 18, 20, .95) 0%, rgba(5, 18, 20, .78) 48%, rgba(5, 18, 20, .45) 100%);
}

.hero-bg-slide.is-active {
  opacity: .62;
}

#hero .hbadge {
  padding: 9px 14px;
  border-radius: 5px;
  background: rgba(255, 255, 255, .92);
  box-shadow: none;
}

#hero .htitle {
  max-width: 660px;
  font-size: clamp(38px, 3.7vw, 56px) !important;
  font-weight: 680 !important;
  line-height: 1.28;
  letter-spacing: 0 !important;
}

#hero .hdesc {
  max-width: 590px;
  font-size: 17px !important;
  line-height: 1.9;
}

#hero .btn-red,
#hero .btn-play,
#hero .btn-play .pico {
  min-height: 46px;
  height: 46px;
}

#hero .btn-red {
  padding: 10px 17px !important;
}

.hero-metrics {
  max-width: 332px;
  gap: 10px;
}

.hero-metric {
  min-height: 64px;
  padding: 11px 16px 11px 70px;
  border-color: rgba(255, 255, 255, .26);
  background: rgba(255, 255, 255, .08);
  box-shadow: none;
}

.hero-metric > i {
  left: 16px;
  width: 38px;
  height: 38px;
  border-radius: 5px;
  font-size: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .38), rgba(203, 210, 208, .24));
}

.hero-metric .snum {
  min-width: 62px;
  font-size: 25px !important;
  font-weight: 700;
}

.hero-metric small {
  font-size: 16px !important;
  color: rgba(255, 255, 255, .86);
}

.hero-metric:hover,
.hero-metric:focus-visible,
.hero-metric.is-active {
  border-color: rgba(255, 255, 255, .74);
  background: rgba(255, 255, 255, .16);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
}

#about,
#gallery,
#contact-section {
  background: #fff;
}

#category,
#chefs,
#blog,
.client-logos {
  background: var(--paper);
}

#about .row {
  --bs-gutter-x: 5.5rem;
}

.astack .amain img,
.astack .asm img,
.gitem img,
.blimg img,
.spimgw img {
  border-radius: 6px;
}

.fti {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.fti:first-child {
  border-top: 1px solid var(--line);
}

.ftico,
.ftico.r,
.ftico.g,
.ftico.y {
  border-radius: 5px !important;
  background: #e5f0eb !important;
  color: var(--primary) !important;
}

.catcard,
.mcard,
.blcard,
.chcard,
.listing-card,
.story-row,
.article-aside {
  border: 1px solid var(--line) !important;
  border-radius: 6px !important;
  box-shadow: none !important;
}

.catcard:hover,
.mcard:hover,
.blcard:hover,
.chcard:hover,
.listing-card:hover {
  border-color: rgba(21, 114, 79, .48) !important;
  box-shadow: var(--shadow-soft) !important;
}

.catcard.active,
.filtbtn.active,
.product-filter button.active {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
}

.mcard .mimg,
.blimg,
.chimg {
  border-radius: 5px 5px 0 0;
}

#special {
  background: #0d2529 !important;
}

#special::before {
  opacity: .92;
  background: linear-gradient(90deg, rgba(9, 30, 34, .95), rgba(9, 30, 34, .82)), url("../img/off-img.jpg") center/cover no-repeat;
}

#special .sptitle {
  font-size: clamp(32px, 2.9vw, 43px) !important;
  font-weight: 650;
}

.supply-points .cditem {
  border-radius: 5px;
}

.gover,
.chsoc {
  background: rgba(9, 30, 34, .78) !important;
}

.chsoc a,
.gover i {
  color: #fff !important;
}

.chimg {
  padding: 16px !important;
  background: #f9fbfa;
}

.chimg img {
  aspect-ratio: 2 / 3;
  object-fit: contain !important;
}

.blbody,
.chbody,
.listing-body {
  padding: 22px !important;
}

.bltit a,
.listing-title {
  font-weight: 650 !important;
}

.bldatebdg {
  color: #7a8984 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
}

.ctdark {
  border-radius: 6px !important;
  background: #102f3a !important;
  box-shadow: none !important;
}

.fcard {
  border: 1px solid var(--line) !important;
  border-radius: 6px !important;
  box-shadow: var(--shadow-soft) !important;
}

.fctrl {
  border-radius: 5px !important;
  border-color: var(--line) !important;
}

/* Inner pages use a quieter editorial reading rhythm. */
.inner-hero {
  padding-top: 218px !important;
  padding-bottom: 178px !important;
}

.inner-hero::before {
  opacity: .8;
}

.inner-hero h1 {
  font-size: clamp(42px, 4vw, 58px) !important;
  font-weight: 680 !important;
}

.inner-navrow {
  min-height: 72px;
  border-bottom-color: var(--line) !important;
}

.crumb,
.inner-subnav a {
  font-size: 15px;
}

.inner-subnav a {
  padding: 8px 0 !important;
}

.article-grid,
.production-story,
.detail-wrap {
  max-width: 1380px !important;
}

.article-main h2,
.production-story h2,
.story-row h2,
.wechat-article h1 {
  font-weight: 650 !important;
}

.inner-section.white:nth-of-type(even) {
  background: var(--paper);
}

.story-row {
  overflow: hidden;
  background: #fff;
}

.story-row img {
  border-radius: 0 !important;
}

.product-side-block,
.product-card,
.product-summary,
.param-grid div {
  border-radius: 6px !important;
}

.product-side-block {
  border-color: var(--line) !important;
}

.product-card,
.product-summary {
  border-color: var(--line) !important;
  box-shadow: none !important;
}

.product-card:hover {
  box-shadow: var(--shadow-soft) !important;
}

.wechat-news {
  border-color: var(--line) !important;
  border-radius: 6px !important;
  box-shadow: none !important;
}

.wechat-news:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft) !important;
}

.wechat-article {
  max-width: 1040px !important;
}

.wechat-article h1 {
  font-size: clamp(30px, 3vw, 42px) !important;
  line-height: 1.42;
}

/* Full-screen culture poster: brand promises are read as one cohesive scene. */
.culture-poster {
  position: relative;
  display: flex;
  min-height: 100vh;
  align-items: center;
  overflow: hidden;
  padding: 118px 0;
  background: linear-gradient(90deg, rgba(8, 31, 35, .9) 0%, rgba(8, 31, 35, .7) 54%, rgba(8, 31, 35, .3) 100%), var(--culture-bg) center / cover no-repeat;
  color: #fff;
}

.culture-poster::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .3));
  pointer-events: none;
}

.culture-poster .container {
  position: relative;
  z-index: 1;
}

.culture-poster-copy {
  width: min(850px, 100%);
}

.culture-poster-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 680;
}

.culture-poster-copy h2 span {
  color: #8ee2bb;
}

.culture-poster-lead {
  max-width: 720px;
  margin: 18px 0 36px;
  color: rgba(255, 255, 255, .86);
  font-size: 20px;
  line-height: 1.85;
}

.culture-poster-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 800px;
}

.culture-poster-item,
.culture-poster-values {
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 6px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(8px);
}

.culture-poster-item {
  padding: 24px;
}

.culture-poster-item > span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  margin-bottom: 17px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: #fff;
  color: var(--primary);
  font-size: 20px;
}

.culture-poster-item h3,
.culture-poster-values h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 27px;
  font-weight: 650;
  line-height: 1.45;
}

.culture-poster-item p,
.culture-poster-values p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  line-height: 1.8;
}

.culture-poster-values {
  max-width: 800px;
  margin-top: 14px;
  padding: 24px;
}

.culture-poster-values .value-tags {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  max-width: none;
  margin-top: 22px;
}

.culture-poster-values .value-tags span {
  display: inline-flex;
  min-width: 0;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 5px;
  background: rgba(255, 255, 255, .94);
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
}

footer {
  background: #0d252b !important;
}

footer .ftit::after {
  background: #66d7a3 !important;
}

footer a:hover {
  color: #85dfb5 !important;
}

@media (max-width: 991px) {
  section,
  .inner-section {
    padding: 76px 0;
  }

  #nav:not(.scrolled) {
    top: 0;
  }

  #nav,
  #nav.scrolled {
    min-height: 70px;
  }

  #hero {
    min-height: auto !important;
    padding: 148px 0 78px !important;
  }

  #hero .hero-row {
    min-height: auto;
  }

  .hero-metrics {
    max-width: none;
    margin: 16px 0 0;
  }

  .inner-hero {
    padding-top: 154px !important;
    padding-bottom: 116px !important;
  }

  .culture-poster {
    min-height: auto;
    padding: 88px 0;
  }
}

@media (max-width: 575px) {
  section,
  .inner-section {
    padding: 62px 0;
  }

  .stitle {
    font-size: 29px !important;
  }

  #hero .htitle {
    font-size: 36px !important;
  }

  .hero-bg-slide::after {
    background: rgba(5, 18, 20, .76);
  }

  .hero-metric {
    min-height: 60px;
  }

  #about .row {
    --bs-gutter-x: 1.5rem;
  }

  .inner-hero h1 {
    font-size: 37px !important;
  }

  .culture-poster {
    padding: 72px 0;
    background-position: 62% center;
  }

  .culture-poster-copy h2 {
    font-size: 34px;
  }

  .culture-poster-lead {
    font-size: 17px;
  }

  .culture-poster-grid {
    grid-template-columns: 1fr;
  }

  .culture-poster-item h3,
  .culture-poster-values h3 {
    font-size: 24px;
  }

  .culture-poster-values .value-tags {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 5px;
  }

  .culture-poster-values .value-tags span {
    min-height: 42px;
    padding: 6px 2px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* 2026-09-08 alignment and detail refinements */
#nav:not(.scrolled) {
  margin-bottom: 0 !important;
  position: absolute !important;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 1000;
}

#nav {
  width: 100%;
  transition: background-color .28s ease, box-shadow .28s ease, backdrop-filter .28s ease, color .28s ease !important;
}

#nav.scrolled {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.culture-core {
  grid-template-columns: 1fr !important;
  max-width: 900px;
  gap: 34px;
  text-align: left;
}

.culture-media {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: center;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.culture-photo img {
  width: 100%;
  min-height: 460px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 24px 64px rgba(20, 44, 58, .10);
}

.culture-copy {
  min-width: 0;
}

.culture-core > div {
  min-height: 0 !important;
  padding: 22px 24px 22px 88px !important;
  border: 1px solid rgba(20, 107, 71, .16) !important;
  border-left: 3px solid rgba(20, 107, 71, .72) !important;
  border-radius: 8px !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(246, 250, 248, .76)) !important;
  box-shadow: 0 18px 46px rgba(20, 44, 58, .06) !important;
}

.culture-item {
  position: relative;
}

.culture-icon {
  position: absolute;
  top: 22px;
  left: 24px;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #0f7c55, #2a8f7a);
  color: #fff;
  font-size: 20px;
  box-shadow: 0 12px 26px rgba(20, 107, 71, .20);
}

.culture-core h3 {
  margin: 0 0 12px !important;
  font-size: 30px !important;
  font-weight: 700;
  line-height: 1.45;
}

.culture-core p {
  max-width: 640px;
  margin: 0 !important;
}

.value-panel {
  display: block;
  max-width: none;
  margin: 42px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.value-panel .value-copy {
  padding: 24px 24px 24px 88px;
  border: 1px solid rgba(20, 107, 71, .16);
  border-left: 3px solid rgba(20, 107, 71, .72);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(246, 250, 248, .74));
  box-shadow: 0 18px 46px rgba(20, 44, 58, .06);
}

.value-panel strong {
  color: #146b47;
  font-size: 18px;
  font-weight: 800;
}

.value-panel h3 {
  margin: 8px 0 12px;
  color: #071a22;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.35;
}

.value-panel p {
  max-width: 820px;
  margin: 0;
  color: #5d6b65;
  font-size: 16px;
  line-height: 1.9;
}

.value-panel .value-tags {
  flex-wrap: nowrap;
  justify-content: flex-start;
  max-width: none;
  margin-top: 30px;
}

.value-panel .value-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 54px;
  padding: 14px 24px;
  text-align: center;
  font-size: 19px;
}

.product-layout {
  grid-template-columns: 220px minmax(0, 1fr) !important;
  gap: 22px !important;
}

.product-list,
.product-list .row {
  min-width: 0;
}

.product-side-block:nth-child(2),
.product-side-block:nth-child(3) {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.product-card {
  min-width: 0;
}

.product-card img {
  height: 190px !important;
}

.product-card .listing-body {
  padding: 18px !important;
}

.product-card .listing-title {
  font-size: 20px !important;
}

.product-detail {
  max-width: 1440px !important;
}

.product-hero {
  grid-template-columns: minmax(260px, 30%) minmax(0, 70%) !important;
  gap: 34px !important;
  align-items: stretch !important;
}

.product-gallery {
  display: flex;
  flex-direction: column;
}

.product-summary {
  min-width: 0;
}

.product-thumbs {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  margin-top: auto !important;
  padding-top: 14px;
}

.product-detail-section {
  margin-top: 24px !important;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

.param-group {
  margin-top: 20px;
}

.param-group h3 {
  margin: 0 0 10px;
  color: #146b47;
  font-size: 18px;
  font-weight: 700;
}

.param-grid div {
  min-height: 92px;
}

.param-grid em {
  display: block;
  margin-top: 6px;
  color: #7a8882;
  font-size: 14px;
  font-style: normal;
  line-height: 1.55;
}

.product-detail-page {
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0 !important;
}

.detail-image-stack {
  display: grid;
  justify-items: center;
}

.detail-image-stack img {
  display: block;
  width: 100% !important;
  max-width: 790px !important;
  max-height: none !important;
  aspect-ratio: 9 / 16;
  margin: 0 auto !important;
  border-radius: 0 !important;
  object-fit: cover;
}

.wechat-news-list {
  max-width: none !important;
  width: 100% !important;
}

.wechat-news h2 {
  font-size: 20px !important;
  font-weight: 600 !important;
  line-height: 1.45;
}

.wechat-news p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #5d6b65;
}

.detail-wrap,
.wechat-article {
  max-width: 1180px !important;
}

.wechat-article h1 {
  font-weight: 650 !important;
}

@media (max-width: 991px) {
  .culture-core,
  .product-hero {
    grid-template-columns: 1fr !important;
  }

  .culture-media {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .culture-photo img {
    min-height: 320px;
  }

  .value-panel {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .value-panel .value-tags {
    justify-content: flex-start;
  }

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

  .product-side {
    position: static;
  }
}

@media (max-width: 575px) {
  .culture-core {
    grid-template-columns: 1fr !important;
  }

  .culture-list > div,
  .value-panel {
    min-width: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .culture-list h3,
  .value-panel h3 {
    word-break: normal;
    overflow-wrap: normal;
    font-size: 23px;
  }

  .culture-core > div,
  .value-panel .value-copy {
    padding: 76px 18px 20px !important;
  }

  .culture-icon {
    top: 20px;
    left: 18px;
  }

  .culture-photo img {
    min-height: 240px;
  }

  .value-panel .value-tags {
    flex-wrap: wrap;
  }

  .value-panel .value-tags span {
    min-width: 88px;
    padding: 11px 16px;
    font-size: 17px;
  }

  #certificates .row > [class*="col-"] {
    flex: 0 0 50%;
    width: 50%;
  }

  .chbody {
    padding: 14px 10px;
  }

  .chnm {
    font-size: 17px;
  }

  .wechat-news-list {
    grid-template-columns: 1fr !important;
  }
}

/* Last responsive layer: overrides the older mobile blocks above. */
#nav .nav-link-wrap {
  display: flex;
  align-items: stretch;
}

#nav .nav-link-wrap > .nav-link {
  flex: 1 1 auto;
}

#nav .submenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

#nav .submenu-toggle i {
  transition: transform .2s ease;
}

#nav .nav-item.dropdown.is-mobile-open .submenu-toggle i {
  transform: rotate(180deg);
}

#nav .navbar-nav .nav-link:hover::after,
#nav .navbar-nav .nav-link.active::after {
  width: 28px !important;
  left: 50% !important;
  transform: translateX(-50%);
}

.wechat-article .news-article-opening > div,
.wechat-article .news-article-row > div {
  display: block !important;
  min-height: 0 !important;
}

.wechat-article .news-article-opening p,
.wechat-article .news-article-row p {
  margin-bottom: 18px !important;
}

.wechat-article .news-article-section {
  max-width: none !important;
  margin: 0 auto !important;
  padding: 34px 0 0 !important;
  border-top: 1px solid var(--line);
}

.wechat-article .news-article-section h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 30px;
  font-weight: 650;
}

.wechat-article .news-article-section p {
  max-width: 920px;
  margin-bottom: 18px;
  color: #65736d;
  font-size: 17px;
  line-height: 1.92;
}

@media (max-width: 991px) {
  #nav,
  #nav:not(.scrolled),
  #nav.scrolled {
    position: sticky !important;
    top: 0 !important;
    min-height: 72px !important;
    background: #fff !important;
    box-shadow: 0 4px 18px rgba(16, 43, 51, .12) !important;
  }

  #nav > .container {
    min-height: 72px;
  }

  #nav .navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(16, 43, 51, .35) !important;
    border-radius: 6px;
    color: var(--ink) !important;
  }

  #nav .navbar-toggler i {
    color: var(--ink) !important;
  }

  #nav .navbar-collapse.show,
  #nav .navbar-collapse.collapsing {
    position: fixed !important;
    z-index: 1040;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    display: block !important;
    width: 100vw;
    height: calc(100dvh - 72px) !important;
    margin: 0 !important;
    padding: 18px 24px 34px !important;
    overflow-y: auto;
    border: 0 !important;
    background: #fff !important;
  }

  #nav .navbar-collapse.show .navbar-nav,
  #nav .navbar-collapse.collapsing .navbar-nav {
    width: 100%;
    margin: 0 !important;
  }

  #nav .navbar-collapse.show .nav-item,
  #nav .navbar-collapse.collapsing .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--line);
  }

  #nav .navbar-collapse.show .nav-link-wrap,
  #nav .navbar-collapse.collapsing .nav-link-wrap {
    min-height: 58px;
  }

  #nav .navbar-collapse.show .nav-link,
  #nav .navbar-collapse.collapsing .nav-link {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 12px 0 !important;
    color: var(--ink) !important;
  }

  #nav .navbar-collapse.show .submenu-toggle,
  #nav .navbar-collapse.collapsing .submenu-toggle {
    width: 58px;
    min-height: 58px;
    color: var(--ink) !important;
    font-size: 17px;
  }

  #nav .navbar-collapse.show .nav-link::after,
  #nav .navbar-collapse.collapsing .nav-link::after {
    bottom: 8px;
  }

  #nav .nav-item.dropdown .jl-submenu {
    width: 100% !important;
    margin: 0 0 12px !important;
    padding: 4px 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: var(--paper) !important;
  }

  #nav .nav-item.dropdown.is-mobile-open .jl-submenu {
    display: block !important;
  }

  #nav .nav-item.dropdown .dropdown-item {
    padding: 12px 16px 12px 22px !important;
  }

  #nav .navbar-collapse.show > .d-flex,
  #nav .navbar-collapse.collapsing > .d-flex {
    margin-top: 22px;
  }

  .product-mobile-tools [data-product-side-toggle] {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 16px !important;
  }

  .product-mobile-tools [data-product-side-toggle] i {
    flex: 0 0 auto;
    margin: 0 !important;
  }
}


