/* =====================================================================
   JYD Activated Carbon — Modern Industrial Design System
   ----------------------------------------------------------------
   Replaces the legacy source template skin entirely.
   Palette: charcoal #1F2421 / off-white #F5F6F4 / steel #6B7280 /
            brand green #2F7D4F / leaf green #5BAE46 / deep green #1E5A38
   Responsive rules live in layout.css.
   ===================================================================== */

:root {
  --ink:      #1F2421;   /* headings / navigation */
  --ink-soft: #3F3F46;   /* body copy */
  --steel:    #6B7280;   /* secondary text */
  --bg:       #FFFFFF;
  --bg-soft:  #F5F6F4;   /* light section background */
  --line:     #E5E7EB;   /* hairline borders */
  --green:    #2F7D4F;   /* brand accent */
  --green-dark: #25613E;
  --radius:   8px;
  --shadow:   0 1px 3px rgba(31,36,33,.08), 0 10px 28px rgba(31,36,33,.07);
  --shadow-sm: 0 1px 2px rgba(31,36,33,.06);
  --font: "Segoe UI", "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
}

/* ------------------------------------------------ base ------------ */
html { overflow-x: hidden; }

body {
  overflow: visible;                 /* reset.css sets overflow:hidden (breaks sticky) */
  font-family: var(--font) !important;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--bg);
}

h1, h2, h3, h4, h5, h6 { color: var(--ink); line-height: 1.35; }

a { color: var(--green-dark); text-decoration: none; }
a:hover { color: var(--green); }

img { max-width: 100%; }
input, select, textarea, button { font-family: inherit; }

/* ------------------------------------------------ helpers --------- */
.fl { float: left; }
.fr { float: right; }
.tc { text-align: center; }
.clearfix::after { content: ""; display: table; clear: both; }
/* clearfix ::after must not become a grid item inside our grid layouts */
.ind_box1.contact .wrapper::after,
.ind_box3.index .wrapper::after,
.pro_det_t::after,
.pro_content .pro_t::after { display: none; }
.uppercase { text-transform: uppercase; }

.textOverflow { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.textOverClm { overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; }
.clm2 { -webkit-line-clamp: 2; }
.clm3 { -webkit-line-clamp: 3; }

.h15 { height: 15px; overflow: hidden; }
.h20 { height: 20px; overflow: hidden; }

/* ------------------------------------------------ container ------- */
.container, .wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ------------------------------------------------ buttons --------- */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .3px;
  border: 1px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  cursor: pointer;
}
.btn--primary { background: var(--green); color: #fff; }
.btn--primary:hover { background: var(--green-dark); color: #fff; }
.btn--ghost { border-color: rgba(91,174,70,.75); color: #fff; }
.btn--ghost:hover { background: rgba(91,174,70,.18); color: #fff; }
.btn--green { background: var(--green); color: #fff; }
.btn--green:hover { background: var(--green-dark); color: #fff; }
.btn--white { background: #fff; color: var(--green-dark); }
.btn--white:hover { background: var(--bg-soft); color: var(--green-dark); }

.more_btn1 {
  display: inline-block;
  padding: 11px 30px;
  border: 1px solid var(--green);
  color: var(--green);
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  transition: all .2s ease;
}
.more_btn1:hover { background: var(--green); color: #fff; }

/* =====================================================================
   SITE HEADER (new chrome, injected by tools/restyle.py)
   ===================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
}

.site-header__bar { background: var(--ink); color: #C9CFCB; font-size: 13px; }
.site-header__bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 36px;
}
.site-header__bar a { color: #F2F4F3; }
.site-header__bar a:hover { color: #9FD0B0; }
.site-header__bar .sep { margin: 0 10px; color: #55605A; }
.site-header__social a { margin-left: 16px; letter-spacing: .4px; font-size: 12px; }

.site-header__main-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 78px;
}
.site-logo { display: inline-flex; align-items: center; }
.site-logo img { height: 44px; width: auto; display: block; }

/* --- nav --- */
.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px 6px;
  margin-left: auto;
}
.nav-burger span { width: 24px; height: 2px; background: var(--ink); }

.site-nav { margin-left: auto; }
.site-nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav__item { position: relative; }
.site-nav__item > a {
  display: block;
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 2px solid transparent;
  transition: color .18s ease, border-color .18s ease;
}
.site-nav__item > a:hover,
.site-nav__item.is-active > a { color: var(--green); border-bottom-color: var(--green); }

.site-nav__sub {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 2px solid var(--green);
  border-radius: 0 0 6px 6px;
  box-shadow: var(--shadow);
  padding: 8px 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 30;
}
.has-sub:hover .site-nav__sub,
.has-sub:focus-within .site-nav__sub { opacity: 1; visibility: visible; transform: translateY(0); }
.site-nav__sub a { display: block; padding: 9px 18px; font-size: 14px; color: var(--ink-soft); white-space: nowrap; }
.site-nav__sub a:hover { background: var(--bg-soft); color: var(--green); }

.site-nav__item--cta { margin-left: 10px; }
.site-cta {
  display: inline-block;
  padding: 10px 22px;
  background: var(--green);
  color: #fff !important;
  border-radius: 4px;
  font-weight: 600;
  border-bottom: none !important;
}
.site-cta:hover { background: var(--green-dark); color: #fff !important; }

/* =====================================================================
   HERO (homepage)
   ===================================================================== */
.hero {
  position: relative;
  color: #fff;
  background: linear-gradient(135deg, #1F2421 0%, #28312C 55%, #2A4D3A 115%);
  padding: 92px 0 96px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(720px 340px at 85% 8%, rgba(47,125,79,.4), transparent 60%),
    radial-gradient(520px 320px at 4% 92%, rgba(91,174,70,.18), transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 600;
  color: #9FD0B0;
  margin: 0 0 18px;
}
.hero h1 {
  font-size: 44px;
  line-height: 1.18;
  letter-spacing: -.5px;
  color: #fff;
  max-width: 720px;
  margin: 0 0 18px;
}
.hero p {
  font-size: 18px;
  line-height: 1.7;
  color: #D5DBD7;
  max-width: 620px;
  margin: 0 0 34px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__actions .btn { min-width: 188px; text-align: center; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 58px;
}
.stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.stat__num { font-size: 30px; font-weight: 700; color: #fff; line-height: 1.2; }
.stat__label { font-size: 13px; color: #B9C1BC; margin-top: 4px; }

/* =====================================================================
   SECTIONS & CARDS (homepage)
   ===================================================================== */
.section { padding: 72px 0; }
.section--soft { background: var(--bg-soft); }
.section--flush { padding-top: 0; }

.section-head { text-align: center; margin-bottom: 44px; }
.section-head h2 { font-size: 32px; letter-spacing: -.3px; margin: 0 0 10px; }
.section-head p { color: var(--steel); max-width: 640px; margin: 0 auto; font-size: 15px; }
.section-head .line { width: 56px; height: 3px; background: var(--green); border-radius: 2px; margin: 16px auto 0; }

.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .22s ease, transform .22s ease;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.card > a { display: block; color: inherit; }
.card__img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg-soft); }
.card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card__body { padding: 18px 20px 22px; }
.card__title { font-size: 17px; font-weight: 600; color: var(--ink); margin: 0 0 6px; }
.card__text { font-size: 14px; color: var(--steel); margin: 0; }
.card__link { display: inline-block; margin-top: 12px; font-size: 14px; font-weight: 600; color: var(--green); }
.card:hover .card__link { color: var(--green-dark); }

.split { display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: start; }

.app-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.app-grid a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 20px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  text-align: left;
  transition: all .2s ease;
}
.app-grid a:hover { color: var(--green); border-color: var(--green); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.app-grid__icon { width: 24px; height: 24px; flex: 0 0 24px; display: flex; align-items: center; justify-content: center; }
.app-grid__icon svg { width: 22px; height: 22px; display: block; }

.news-block h3 { font-size: 24px; margin: 0 0 6px; }

.about-blurb h3 { font-size: 24px; margin: 0 0 14px; }
.about-blurb p { color: var(--ink-soft); margin: 0 0 16px; }
.about-blurb .btn { margin-top: 8px; }

.news-list { list-style: none; margin: 0; padding: 0; }
.news-list li { border-bottom: 1px solid var(--line); padding: 16px 0; }
.news-list li:first-child { padding-top: 0; }
.news-list a { display: flex; gap: 18px; align-items: flex-start; color: inherit; }
.news-list .news-date {
  flex: 0 0 auto;
  min-width: 84px;
  text-align: center;
  border-right: 2px solid var(--green);
  padding-right: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  white-space: nowrap;
}
.news-list .news-title { font-size: 15px; font-weight: 600; color: var(--ink); line-height: 1.5; }
.news-list a:hover .news-title { color: var(--green); }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--green) 0%, var(--green-dark) 100%); color: #fff; padding: 58px 0; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: 26px; margin: 0 0 6px; }
.cta-band p { color: rgba(255,255,255,.85); margin: 0; font-size: 15px; }

/* =====================================================================
   BREADCRUMBS (location_wrap)
   ===================================================================== */
.location_wrap {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  font-size: 14px;
}
.location .location_l .text { color: var(--steel); }
.location a { color: var(--steel); }
.location a:hover { color: var(--green); }
.location .icon-home3 { color: var(--green); margin-right: 5px; }

/* =====================================================================
   CONTENT SECTIONS (ind_box1/2/3 …)
   ===================================================================== */
.ind_box1, .ind_box2, .ind_box3 { padding: 64px 0; }

.title, .title1 { margin-bottom: 40px; }
.title.tc, .title1.tc { text-align: center; }
.tt { font-size: 28px; font-weight: 700; color: var(--ink); letter-spacing: -.2px; }
.tt a { color: inherit; }
.tt a:hover { color: var(--green); }
.title .text, .title1 .text { color: var(--steel); margin-top: 12px; font-size: 15px; }
.tips { font-size: 22px; font-weight: 600; color: var(--ink); margin-bottom: 18px; }

.con { font-size: 15px; line-height: 1.8; }
.text { color: var(--ink-soft); }

/* fallback styling for any legacy homepage ind_boxN that remains */
.ind_box1.index .ind_wrap,
.ind_box2.index .ind_wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.ind_box1.index .item,
.ind_box2.index .item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .22s ease, transform .22s ease; }
.ind_box1.index .item:hover,
.ind_box2.index .item:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.ind_box1.index .item .pic img,
.ind_box2.index .item .pic img { width: 100%; height: 190px; object-fit: cover; display: block; }
.ind_box1.index .item .tt { display: block; padding: 16px 18px; text-align: center; font-weight: 600; color: var(--ink); }
.ind_box1.index .item:hover .tt { color: var(--green); }
.ind_box2.index .item .con { display: block; padding: 12px 16px; text-align: center; color: var(--ink-soft); font-size: 14px; }

/* ind_box3 (about + news) generic split */
.ind_box3.index .wrapper { display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: start; }
.ind_box3.index .ind_l .tt, .ind_box3.index .ind_r .tt { font-size: 24px; margin-bottom: 18px; }
.ind_box3.index .ind_r_wrap .item { border-bottom: 1px solid var(--line); padding: 14px 0; }
.ind_box3.index .ind_r_wrap .item:first-child { padding-top: 0; }
.ind_box3.index .ind_r_wrap .item a { display: flex; gap: 16px; align-items: flex-start; color: inherit; }
.ind_box3.index .ind_r_wrap .date { flex: 0 0 58px; text-align: center; border-right: 2px solid var(--green); padding-right: 12px; }
.ind_box3.index .ind_r_wrap .date label { display: block; font-size: 22px; font-weight: 700; color: var(--green); line-height: 1.1; }
.ind_box3.index .ind_r_wrap .date span { font-size: 12px; color: var(--steel); }
.ind_box3.index .ind_r_wrap .tt { font-size: 15px; font-weight: 600; margin: 0; }
.ind_box3.index .ind_r_wrap .con { flex: 1; }
.read_more { display: inline-block; margin-top: 14px; color: var(--green); font-weight: 600; font-size: 14px; }
.read_more:hover { color: var(--green-dark); }

/* video thumbnail */
.ind_video_btn { position: relative; }
.ind_video_btn .pic { position: relative; border-radius: var(--radius); overflow: hidden; }
.ind_video_btn .pic img { width: 100%; display: block; }
.ind_video_btn .play_btn {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Ccircle cx='24' cy='24' r='22' fill='rgba(31,36,33,.45)'/%3E%3Cpath d='M19 15.5v17l14-8.5z' fill='%23fff'/%3E%3C/svg%3E") center/64px no-repeat;
}
.ind_video_btn .pic.novideo .play_btn { display: none; }

/* =====================================================================
   PRODUCT CATEGORY (ind_box1.pro)
   ===================================================================== */
.pro_list_wrap .pro_tab { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.pro_list_wrap .pro_tab a {
  display: inline-block;
  padding: 9px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  color: var(--ink-soft);
  background: #fff;
  transition: all .18s ease;
}
.pro_list_wrap .pro_tab a.hover,
.pro_list_wrap .pro_tab a.active,
.pro_list_wrap .pro_tab a:hover { background: var(--green); border-color: var(--green); color: #fff; }

.pro_content .pro_t {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.pro_content .pro_t .pic img { width: 100%; border-radius: 6px; display: block; }
.pro_content .pro_t .tt { font-size: 24px; font-weight: 700 !important; margin: 0 0 12px; }
.pro_content .pro_t .text { font-size: 15px; line-height: 1.8; }

/* product grid */
.pro_b { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.pro_b .item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .22s ease, transform .22s ease; }
.pro_b .item:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.pro_b .item a { display: block; color: inherit; }
.pro_b .item .pic { aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-soft); }
.pro_b .item .pic img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pro_b .item .con { padding: 18px 20px 22px; }
.pro_b .item .tt { font-size: 17px; font-weight: 600; margin: 0 0 8px; }
.pro_b .item .text { font-size: 14px; color: var(--steel); }
.pro_b .item .more { display: none; }

/* =====================================================================
   PRODUCT DETAIL (ind_box1.pro_det)
   ===================================================================== */
.pro_det_t { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.big_pic_show { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; }
.big_pic_show .bigpic img { width: 100%; border-radius: 4px; display: block; }
.big_pic_show .moveBox { display: none; }
.owl-carousel.pro_det_wap_scroll { display: none; }  /* desktop uses big_pic_show; owl on mobile */

.p_det_inf_tt { font-size: 28px; font-weight: 700 !important; color: var(--ink); margin: 0 0 14px; line-height: 1.3; }
.p_det_inf_text .con { font-size: 15px; line-height: 1.85; }
.p_det_contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin: 18px 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--steel);
}
.p_det_contact a { color: var(--green-dark); }
.p_det_btns { display: flex; flex-wrap: wrap; gap: 12px; margin: 18px 0; }
.p_det_btns a { display: inline-block; padding: 11px 26px; border-radius: 4px; font-weight: 600; font-size: 14px; transition: all .2s ease; }
.p_det_btns a:first-child { background: var(--green); color: #fff; }
.p_det_btns a:first-child:hover { background: var(--green-dark); color: #fff; }
.p_det_btns a:last-child { border: 1px solid var(--green); color: var(--green); }
.p_det_btns a:last-child:hover { background: var(--green); color: #fff; }
.p_det_share { color: var(--steel); font-size: 14px; }

.pro_det_b { margin-top: 52px; }
.pro_des_content .item { margin-bottom: 44px; }
.pro_des_content .item > .tt { font-size: 22px; margin-bottom: 14px; }
.pro_des_content .item_l { }
.pro_des_content .item_r { margin-top: 16px; max-width: 420px; }

/* =====================================================================
   NEWS INDEX / LIST (ind_box1.news) and ARTICLE (ind_box1.news_det)
   ===================================================================== */
.ind_box1.news .ind_wrap .item { border-bottom: 1px solid var(--line); padding: 16px 0; }
.ind_box1.news .ind_wrap .item:first-child { border-top: 1px solid var(--line); }
.ind_box1.news .ind_wrap .item a { display: flex; align-items: center; gap: 20px; color: inherit; }
.ind_box1.news .ind_wrap .item .con { flex: 1; }
.ind_box1.news .ind_wrap .item .tt { font-size: 17px; font-weight: 600; margin: 0 0 4px; }
.ind_box1.news .ind_wrap .item a:hover .tt { color: var(--green); }
.ind_box1.news .ind_wrap .item .date { flex: 0 0 84px; text-align: center; }
.ind_box1.news .ind_wrap .item .date label { display: block; font-size: 26px; font-weight: 700; color: var(--green); line-height: 1.1; }
.ind_box1.news .ind_wrap .item .date span { font-size: 13px; color: var(--steel); }

.news_det_tt { font-size: 30px; font-weight: 700 !important; color: var(--ink); margin-bottom: 10px; line-height: 1.3; }
.news_det_date_wrap { margin-bottom: 26px; }
.news_det_date { display: inline-flex; gap: 18px; color: var(--steel); font-size: 14px; align-items: center; }
.news_det_date .icon { margin-right: 2px; }

.content { font-size: 15px; line-height: 1.85; color: var(--ink-soft); }
.content p { margin: 0 0 16px; }
.content p, .pro_content .text p, .pro_des_content .con p { color: #3F3F46 !important; }
.content h1, .content h2, .content h3, .content h4 { margin: 26px 0 12px; }
.content img { max-width: 100%; height: auto; }
.content ul, .content ol { margin: 0 0 16px; padding-left: 24px; }
.content ul li, .content ol li { margin-bottom: 8px; }
.content a { text-decoration: underline; }
.content table { margin: 16px 0; }

.det_page_clm { margin-top: 34px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 14px; }
.det_page_clm a { color: var(--green-dark); }
.det_page_clm .det_page a:hover { color: var(--green); }

/* =====================================================================
   CONTACT PAGE (ind_box1.contact)
   ===================================================================== */
.ind_box1.contact .wrapper { display: grid; grid-template-columns: 1fr 1.45fr; gap: 52px; align-items: start; }
.ind_box1.contact .ind_l .tt { font-size: 24px; margin-bottom: 12px; }
.ind_box1.contact .ind_l .text { font-size: 15px; line-height: 1.8; margin-bottom: 20px; }
.contact_ways { list-style: none; margin: 0; padding: 0; }
.contact_ways li { margin-bottom: 10px; }
.contact_ways a { color: var(--ink-soft); font-size: 15px; }
.contact_ways a:hover { color: var(--green); }

/* form */
.faq_box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.faq_list { margin: 0; }
.faq_list dd { margin: 0 0 18px; }
.faq_list .tt { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.faq_inp {
  width: 100%;
  max-width: 460px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 15px;
  color: var(--ink-soft);
  background: #fff;
}
.faq_area {
  width: 100%;
  min-height: 140px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 15px;
  color: var(--ink-soft);
  resize: vertical;
}
.faq_inp:focus, .faq_area:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47,125,79,.12);
}
.faq_btn_box { margin-top: 8px; }
.faq_btn {
  display: inline-block;
  padding: 12px 36px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease;
}
.faq_btn:hover { background: var(--green-dark); }

/* =====================================================================
   FAQ ACCORDION
   ===================================================================== */
.faq_box .item { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq_tt { padding: 16px 20px; cursor: pointer; font-weight: 600; color: var(--ink); transition: color .2s ease; }
.faq_tt:hover { color: var(--green); }
.faq_text { padding: 0 20px 16px; color: var(--ink-soft); font-size: 14px; }

/* =====================================================================
   TABLES
   ===================================================================== */
.table_wrap { overflow-x: auto; }
.table_wrap table { border-collapse: collapse; width: 100%; font-size: 14px; background: #fff; }
.table_wrap table td, .table_wrap table th { border: 1px solid var(--line); padding: 10px 12px; text-align: center; }
.table_wrap table tr:nth-child(even) td { background: var(--bg-soft); }
/* neutralize source-green table headers that survive inline rgb() styles */
td[style*="rgb(51, 153, 51)"] { background-color: var(--green) !important; color: #fff !important; }
td[style*="rgb(0, 176, 80)"] { color: var(--green); }

/* =====================================================================
   PAGINATION
   ===================================================================== */
.page { margin: 42px 0 0; text-align: center; }
.page a {
  display: inline-block;
  min-width: 36px;
  padding: 7px 11px;
  margin: 0 3px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 14px;
  color: var(--ink-soft);
  transition: all .18s ease;
}
.page a:hover { border-color: var(--green); color: var(--green); }
.page a.hover, .page a.active { background: var(--green); border-color: var(--green); color: #fff; }

/* =====================================================================
   SITE FOOTER (new chrome, injected by tools/restyle.py)
   ===================================================================== */
.site-footer { background: var(--ink); color: #B7BFBA; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 44px;
  padding: 62px 20px 48px;
}
.site-footer__col--wide p { font-size: 14px; line-height: 1.8; margin: 16px 0 20px; }
.site-footer .site-logo img { height: 40px; }
.site-footer__heading {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 18px;
}
.site-footer__links { list-style: none; margin: 0; padding: 0; }
.site-footer__links li { margin-bottom: 10px; font-size: 14px; line-height: 1.6; }
.site-footer__links a { color: #B7BFBA; transition: color .18s ease; }
.site-footer__links a:hover { color: #fff; }
.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-right: 10px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  font-size: 12px;
  color: #D5DBD7;
  transition: all .18s ease;
}
.site-footer__social a:hover { color: #fff; border-color: var(--green); background: var(--green); }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; font-size: 13px; text-align: center; color: #8FA093; }
.site-footer__bottom a { color: #9FD0B0; }
.site-footer__bottom a:hover { color: #fff; }

/* =====================================================================
   FLOATING CONTACT BAR (new chrome)
   ===================================================================== */
.float-contact {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-contact__link {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: background .2s ease, transform .2s ease;
}
.float-contact__link:hover { background: var(--green-dark); color: #fff; transform: translateY(-2px); }
.float-contact__top {
  background: var(--ink);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s;
}
.float-contact__top.show { opacity: 1; visibility: visible; }

/* =====================================================================
   VIDEO MODAL (appended by main.js videoAppend)
   ===================================================================== */
.video_window_mask { position: fixed; inset: 0; background: rgba(15,18,16,.72); z-index: 200; display: none; }
.video_window {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(880px, 92vw);
  height: min(495px, 62vh);
  background: #000;
  z-index: 201;
  display: none;
  border-radius: 8px;
  overflow: hidden;
}
.video_window_ifeame { width: 100%; height: 100%; border: 0; }
.video_window_close {
  position: absolute;
  top: 6px;
  right: 14px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
  font-family: Arial, sans-serif;
}

/* =====================================================================
   MISC
   ===================================================================== */
.bg{ background: var(--bg); }
.bgf{ background: #fff; }

/* =====================================================================
   CONTENT-AREA RESTYLE (restyle.py pass_structure) — new design system
   ===================================================================== */
.page { padding: 56px 0 72px; }
.page--category { padding-top: 40px; }
.page--list { padding: 40px 0 72px; }

/* breadcrumb */
.breadcrumb { background: var(--bg-soft); border-bottom: 1px solid var(--line); padding: 13px 0; font-size: 13px; }
.breadcrumb__inner { color: var(--steel); }
.breadcrumb__box { display: inline-block; }
.breadcrumb__text .icon-home3 { color: var(--green); margin-right: 6px; }
.breadcrumb a { color: var(--steel); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb .icon { display: none; }

/* section head */
.section-head { text-align: center; margin-bottom: 40px; }
.section-head h1, .section-head h2, .section-head .tt { font-size: 28px; color: var(--ink); }
.section-head .line { width: 56px; height: 3px; background: var(--green); border-radius: 2px; margin: 14px auto 0; }

/* category tabs */
.cat-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 0 0 36px; }
.cat-tabs a, .cat-tabs button { padding: 10px 22px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft); font-weight: 600; font-size: 14px; transition: all .2s ease; }
.cat-tabs button { background: transparent; cursor: pointer; font-family: inherit; line-height: 1.4; }
.cat-tabs a:hover, .cat-tabs a.active, .cat-tabs button:hover, .cat-tabs button.active { background: var(--green); border-color: var(--green); color: #fff; }

/* product filtering on application pages */
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--5 { grid-template-columns: repeat(5, 1fr); }
.filter-empty { text-align: center; padding: 40px 20px; color: var(--steel); font-size: 15px; border: 1px dashed var(--line); border-radius: var(--radius); }
.filter-empty a { color: var(--green); font-weight: 600; }
.is-hidden { display: none !important; }

/* media split (image + content) */
.media-split { display: grid; grid-template-columns: 340px 1fr; gap: 40px; align-items: start; margin-bottom: 56px; }
.media-split .pic img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.media-split h1, .media-split h1.tt { font-size: 30px; color: var(--ink); margin: 0 0 16px; }
.media-split h3 { font-size: 20px; color: var(--ink); margin: 28px 0 12px; }
.media-split .list-paddingleft-2, .media-split ul { margin: 0 0 14px; padding-left: 22px; }
.media-split li { margin-bottom: 6px; color: var(--ink-soft); line-height: 1.7; }
.media-split p { color: var(--ink-soft); line-height: 1.75; }
.media-split .con > p:first-child { margin-top: 0; }

/* card grid */
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 48px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .25s ease, transform .25s ease; }
.card a { color: inherit; }
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.card__img, .card .pic { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-soft); }
.card__img img, .card .pic img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card__body, .card .con { padding: 18px 20px 22px; }
.card__title { font-size: 17px; font-weight: 600; color: var(--ink); margin: 0 0 8px; }
.card__text { font-size: 14px; color: var(--steel); line-height: 1.6; margin: 0 0 12px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.card__link { font-size: 14px; font-weight: 600; color: var(--green); }
.card__date { font-size: 13px; color: var(--steel); }
.card__date label { display: block; font-size: 22px; font-weight: 700; color: var(--green); line-height: 1.1; }
.card__date span { text-transform: uppercase; letter-spacing: 1px; }

/* article */
.post { padding: 48px 0 72px; }
.post-title { font-size: 30px; font-weight: 700; color: var(--ink); text-align: center; margin: 0 0 12px; line-height: 1.3; }
.post-meta { text-align: center; color: var(--steel); font-size: 14px; margin: 0 0 36px; }
.post-meta__inner { display: inline-flex; gap: 20px; align-items: center; }
.post-body { max-width: 860px; margin: 0 auto; color: var(--ink-soft); font-size: 16px; line-height: 1.8; }
.post-body h2, .post-body h3 { color: var(--ink); margin: 32px 0 14px; }
.post-body h2 { font-size: 24px; }
.post-body h3 { font-size: 20px; }
.post-body p { margin: 0 0 16px; }
.post-body ul, .post-body ol { margin: 0 0 16px; padding-left: 24px; }
.post-body img { border-radius: var(--radius); max-width: 100%; height: auto; }
.post-body table { width: 100%; border-collapse: collapse; margin: 0 0 20px; }
.post-body table td, .post-body table th { border: 1px solid var(--line); padding: 10px 14px; font-size: 14px; }
.post-body table th { background: var(--bg-soft); }
.post-nav { max-width: 860px; margin: 44px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.post-nav__item { border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; background: #fff; }
.post-nav__item .tt { font-size: 12px; text-transform: uppercase; color: var(--steel); letter-spacing: 1px; }
.post-nav__item .text a { color: var(--ink); font-weight: 600; font-size: 15px; }
.post-nav__item .text a:hover { color: var(--green); }

/* pagination */
.pagination { display: flex; justify-content: center; gap: 8px; padding: 24px 0 0; }
.pagination a { display: inline-flex; min-width: 36px; height: 36px; padding: 0 10px; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 6px; color: var(--ink-soft); font-size: 14px; }
.pagination a:hover, .pagination a.hover, .pagination a.active { border-color: var(--green); color: var(--green); }

/* inquiry section */
.inquiry-section { background: var(--bg-soft); border-top: 1px solid var(--line); padding: 52px 0; }
.inquiry-section .container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; }
.inquiry-form .tt, .inquiry-contact .tt { font-size: 22px; font-weight: 600; color: var(--ink); margin: 0 0 10px; }
.inquiry-form .text { color: var(--steel); margin-bottom: 22px; font-size: 15px; }
.inquiry-form .form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.inquiry-ways a { display: block; color: var(--ink-soft); margin-bottom: 10px; }
.inquiry-ways a:hover { color: var(--green); }
.inquiry-tip { margin-top: 22px; }
.inquiry-tip .tip_text { color: var(--steel); }
.inquiry-reply { margin-top: 12px; color: var(--green); font-weight: 600; }

/* forms */
.form__fields { margin: 0; }
.form__fields dd { margin: 0 0 16px; }
.form__fields .tt { font-size: 14px; color: var(--ink-soft); margin-bottom: 6px; }
.form__input, .form__area { width: 100%; border: 1px solid var(--line); border-radius: 6px; padding: 10px 12px; font-size: 14px; }
.form__input:focus, .form__area:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(47,125,79,.12); }
.form__area { min-height: 120px; }
.form__actions { margin-top: 8px; }
.form__btn { background: var(--green); color: #fff; border: none; border-radius: 6px; padding: 11px 34px; font-weight: 600; font-size: 15px; cursor: pointer; }
.form__btn:hover { background: var(--green-dark); }

/* product detail */
.page--product { padding-top: 40px; }
.product-top { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 40px; margin-bottom: 56px; align-items: start; }
.product-top .pro_det_wap_scroll { display: none !important; }   /* desktop hides the mobile carousel */
.gallery { min-width: 0; max-width: 100%; }
.gallery .bigpic img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.gallery .moveBox { display: flex; align-items: center; gap: 8px; margin-top: 12px; max-width: 100%; }
.gallery .moveBox .pageLeft, .gallery .moveBox .pageRight { color: var(--green); cursor: pointer; font-size: 18px; }
.gallery .move_content { flex: 1; overflow: hidden; }
.gallery .move_content .rexiaoPic ul { display: flex; gap: 8px; margin: 0; padding: 0; list-style: none; }
.gallery .moveBox img { border: 2px solid var(--line); border-radius: 6px; cursor: pointer; width: 64px; height: 64px; object-fit: cover; display: block; }
.product-info .product-title { font-size: 28px; font-weight: 600; color: var(--ink); margin: 0 0 16px; }
.product-desc .tt { font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.product-desc .con { color: var(--ink-soft); line-height: 1.75; font-size: 15px; }
.product-contact a { display: block; color: var(--ink-soft); margin-bottom: 8px; }
.product-contact a:hover { color: var(--green); }
.product-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.product-actions a:first-child { background: var(--green); color: #fff; padding: 11px 26px; border-radius: 6px; font-weight: 600; font-size: 14px; }
.product-actions a:first-child:hover { background: var(--green-dark); color: #fff; }
.product-actions a:last-child { border: 1px solid var(--green); color: var(--green); padding: 11px 26px; border-radius: 6px; font-weight: 600; font-size: 14px; }
.product-actions a:last-child:hover { background: var(--green); color: #fff; }
.product-details .detail-block { margin-bottom: 44px; }
.detail-block .tt { font-size: 22px; font-weight: 600; color: var(--ink); margin: 0 0 14px; }
.detail-block .con { color: var(--ink-soft); line-height: 1.8; font-size: 15px; }
.spec-table__scroll { overflow-x: auto; }
.spec-table__scroll table { width: 100%; border-collapse: collapse; }
.spec-table__scroll td, .spec-table__scroll th { border: 1px solid var(--line); padding: 10px 14px; font-size: 14px; }
.spec-table__scroll th { background: var(--green); color: #fff; }
.related-products { margin-top: 56px; }
.related-products .tt { font-size: 22px; font-weight: 600; color: var(--ink); margin-bottom: 20px; }
.related-products .ind_wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* static pages (about / why / service / contact) */
.page__block { padding: 52px 0; }
.page__block + .page__block { border-top: 1px solid var(--line); }
.page__block .ind_t { margin-bottom: 28px; }
.page__block h1.tt, .page__block h2.tt, .page__block .tt { font-size: 26px; font-weight: 600; color: var(--ink); margin: 0 0 12px; }
.page__block .ind_t .tips { color: var(--green); text-transform: uppercase; letter-spacing: 2px; font-size: 13px; margin-bottom: 6px; }
.page__block .text, .page__block .con { color: var(--ink-soft); line-height: 1.75; font-size: 15px; }
.page__block .ind_l, .page__block .ind_r,
.page__block .ind_l_wrap, .page__block .ind_r_wrap,
.page__block .split__l, .page__block .split__r { color: var(--ink-soft); line-height: 1.75; }
.page__block img { max-width: 100%; border-radius: var(--radius); }
.page__block .about_scroll img, .page__block .about_scroll2 img { border-radius: var(--radius); }
.page__block .prev_btn, .page__block .next_btn { color: var(--green); cursor: pointer; }
.page__block .ind_b { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.page__block .ind_b .ind_l, .page__block .ind_b .ind_r { padding: 0; }
.page__block .ind_b .ind_r .tt { font-size: 22px; margin-bottom: 14px; }
.page__block ul { padding-left: 22px; }
.page__block li { margin-bottom: 8px; }
.page__block .item .pic img { border-radius: var(--radius); }
.page__block .baguetteBox .item { display: inline-block; margin: 8px; }
.page__block .baguetteBox .item img { width: 140px; height: 140px; object-fit: cover; }

/* contact page */
.contact-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; }
.contact-layout .contact_ways li { margin-bottom: 12px; }
.contact-layout .contact_ways a { color: var(--ink-soft); }
.contact-layout .contact_ways a:hover { color: var(--green); }

/* floating WhatsApp */
.wa-float { position: fixed; right: 18px; top: 50%; transform: translateY(-50%); z-index: 90; display: flex; align-items: center; background: var(--green); color: #fff; border-radius: 999px; padding: 12px; box-shadow: 0 6px 20px rgba(37, 61, 44, .22); text-decoration: none; transition: box-shadow .25s ease; animation: wa-attract 2.2s ease-in-out infinite; }
.wa-float:hover { box-shadow: 0 8px 26px rgba(47, 125, 79, .35); animation: none; }
@keyframes wa-attract {
  0% { transform: translateY(-50%) scale(1); box-shadow: 0 6px 20px rgba(37, 61, 44, .22); }
  50% { transform: translateY(-50%) scale(1.07); box-shadow: 0 6px 22px rgba(37, 61, 44, .22), 0 0 0 12px rgba(37, 211, 102, .25); }
  100% { transform: translateY(-50%) scale(1); box-shadow: 0 6px 20px rgba(37, 61, 44, .22); }
}
.wa-float svg { width: 30px; height: 30px; display: block; }
.wa-float__label { max-width: 0; overflow: hidden; white-space: nowrap; font-size: 15px; font-weight: 600; transition: max-width .3s ease, margin .3s ease; }
.wa-float:hover .wa-float__label { max-width: 130px; margin-left: 10px; }
@media (max-width: 575px) {
  .wa-float { right: 12px; padding: 10px; }
  .wa-float__label { display: none; }
}

/* WhatsApp 弹层卡片 —— 出现在按钮左侧 */
.wa-float.is-open { animation: none; }
.wa-float.is-open .wa-float__label { max-width: 0; margin-left: 0; }
.wa-pop {
  position: fixed; right: 80px; top: 50%; width: 240px; padding: 18px 16px;
  text-align: center; background: #fff; border: 1px solid var(--line);
  border-radius: 16px; box-shadow: 0 12px 40px rgba(31, 36, 33, .18);
  z-index: 95;
  opacity: 0; visibility: hidden;
  transform: translateY(-50%) translateX(12px) scale(.92);
  transform-origin: right center;
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.wa-pop.is-open { opacity: 1; visibility: visible; transform: translateY(-50%) translateX(0) scale(1); }
.wa-pop__close { position: absolute; top: 8px; right: 10px; width: 26px; height: 26px; background: none; border: 0; font-size: 20px; line-height: 1; color: var(--steel); cursor: pointer; }
.wa-pop__close:hover { color: var(--ink); }
.wa-pop__title { margin: 0 0 4px; font-size: 16px; font-weight: 700; color: var(--ink); }
.wa-pop__sub { margin: 0 0 12px; font-size: 12px; line-height: 1.5; color: var(--steel); }
.wa-pop__qr { display: block; width: 160px; height: 160px; margin: 0 auto; border: 1px solid var(--line); border-radius: 8px; background: #fff; padding: 6px; }
.wa-pop__btn { display: block; margin: 12px auto 0; background: var(--green); color: #fff; font-size: 14px; font-weight: 600; padding: 10px 16px; border-radius: 999px; text-decoration: none; }
.wa-pop__btn:hover { background: var(--green-dark); color: #fff; }
.wa-pop__phone { margin-top: 8px; font-size: 12px; color: var(--steel); }
@media (max-width: 575px) {
  .wa-pop { display: none; }   /* 手机端点按钮直跳 WhatsApp，不显示弹层 */
}

/* product detail responsive */
@media (max-width: 991px) {
  .product-top { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .product-top .gallery { display: none; }
  .product-top .pro_det_wap_scroll { display: block !important; }
}

/* =====================================================================
   NEW SITE (preview) — fresh components, no legacy
   ===================================================================== */
/* Products mega menu */
.has-mega { position: relative; }
.mega {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  width: 780px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--green);
  border-radius: 0 0 12px 12px; box-shadow: var(--shadow); padding: 28px 30px;
  opacity: 0; visibility: hidden; transition: opacity .2s ease, visibility .2s; z-index: 50;
}
.has-mega:hover .mega, .has-mega:focus-within .mega { opacity: 1; visibility: visible; }
.mega__title { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--green); margin: 0 0 14px; }
.mega__links { list-style: none; margin: 0; padding: 0; }
.mega__links li { margin-bottom: 9px; }
.mega__links a { color: var(--ink-soft); font-size: 14px; }
.mega__links a:hover { color: var(--green); }

/* single-column mega dropdown (Applications / Products nav) */
.mega--links { width: auto; min-width: 250px; grid-template-columns: 1fr; gap: 0; padding: 22px 28px; }
.mega--links .mega__links { display: flex; flex-direction: column; }

/* page hero (inner pages) */
.page-hero { background: linear-gradient(135deg, #1F2421 0%, #28312C 55%, #2A4D3A 115%); color: #fff; padding: 64px 0; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(560px 300px at 85% 10%, rgba(47,125,79,.4), transparent 60%); pointer-events: none; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero__eyebrow { text-transform: uppercase; letter-spacing: 3px; font-size: 13px; font-weight: 600; color: #9FD0B0; margin: 0 0 12px; }
.page-hero h1 { font-size: 38px; line-height: 1.2; color: #fff; margin: 0 0 14px; max-width: 720px; }
.page-hero p { color: #D5DBD7; font-size: 17px; line-height: 1.7; max-width: 640px; margin: 0; }

/* four-dimension filter cards */
.filter-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.filter-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: box-shadow .25s ease, transform .25s ease; }
.filter-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.filter-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.filter-card__num { width: 40px; height: 40px; border-radius: 10px; background: var(--bg-soft); color: var(--green); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; }
.filter-card h3 { font-size: 18px; color: var(--ink); margin: 0; }
.filter-card__links { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
.filter-card__links a { color: var(--ink-soft); font-size: 14px; }
.filter-card__links a:hover { color: var(--green); }
.filter-card__links a:hover { color: var(--green); }

/* spec table */
.specs { width: 100%; border-collapse: collapse; margin: 0 0 24px; }
.specs th, .specs td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; font-size: 14px; }
.specs th { background: var(--green); color: #fff; font-weight: 600; }
.specs tr:nth-child(even) td { background: var(--bg-soft); }

/* product detail (fresh) */
.prod-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 48px; align-items: start; }
.prod-grid__media { position: sticky; top: 24px; }
.prod-grid__media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.prod-grid__thumbs { display: flex; gap: 10px; margin-top: 12px; }
.prod-grid__thumbs img { width: 72px; height: 72px; object-fit: cover; border: 2px solid var(--line); border-radius: 8px; cursor: pointer; }
.prod-title { font-size: 30px; color: var(--ink); margin: 0 0 14px; line-height: 1.25; }
.prod-lead { color: var(--ink-soft); line-height: 1.75; font-size: 16px; margin: 0 0 24px; }
.prod-badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 24px; }
.prod-badge { background: var(--bg-soft); border: 1px solid var(--line); color: var(--green); font-size: 13px; font-weight: 600; padding: 6px 14px; border-radius: 999px; }
.prod-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

/* blog list */
.post-card { display: flex; gap: 24px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; transition: box-shadow .25s ease; }
.post-card:hover { box-shadow: var(--shadow); }
.post-card__date { flex: 0 0 72px; text-align: center; border-right: 2px solid var(--green); padding-right: 20px; }
.post-card__date .d { display: block; font-size: 30px; font-weight: 700; color: var(--green); line-height: 1; }
.post-card__date .m { display: block; font-size: 12px; color: var(--steel); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.post-card__title { font-size: 18px; font-weight: 600; color: var(--ink); margin: 0 0 6px; }
.post-card__title a { color: inherit; }
.post-card__title a:hover { color: var(--green); }
.post-card__excerpt { color: var(--steel); font-size: 14px; line-height: 1.6; margin: 0; }

/* article */
.article { max-width: 820px; margin: 0 auto; padding: 64px 0 80px; }
.article__title { font-size: 34px; color: var(--ink); text-align: center; line-height: 1.3; margin: 0 0 10px; }
.article__meta { text-align: center; color: var(--steel); font-size: 14px; margin: 0 0 40px; }
.article__body { color: var(--ink-soft); font-size: 16px; line-height: 1.85; }
.article__body h2 { color: var(--ink); font-size: 24px; margin: 36px 0 14px; }
.article__body h3 { color: var(--ink); font-size: 20px; margin: 30px 0 12px; }
.article__body p { margin: 0 0 18px; }
.article__body ul, .article__body ol { margin: 0 0 18px; padding-left: 24px; }
.article__body img { max-width: 100%; border-radius: var(--radius); margin: 8px 0; }

/* service */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 767px) { .svc-grid--2 { grid-template-columns: 1fr; } }
.svc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; text-align: center; transition: box-shadow .25s ease, transform .25s ease; }
.svc-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.svc-card__icon { width: 60px; height: 60px; border-radius: 16px; background: var(--bg-soft); color: var(--green); display: inline-flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 16px; }
.svc-card h3 { font-size: 18px; color: var(--ink); margin: 0 0 10px; }
.svc-card p { color: var(--steel); font-size: 14px; line-height: 1.7; margin: 0; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 14px; }
.faq-item__q { font-weight: 600; color: var(--ink); font-size: 16px; margin: 0 0 8px; }
.faq-item__a { color: var(--ink-soft); font-size: 15px; line-height: 1.7; margin: 0; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; }
.contact-info__item { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-info__icon { width: 44px; height: 44px; border-radius: 10px; background: var(--bg-soft); color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 18px; flex: 0 0 44px; }
.contact-info__label { font-size: 13px; color: var(--steel); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.contact-info__value { color: var(--ink); font-weight: 600; font-size: 15px; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.form-card .form__input, .form-card .form__area { background: var(--bg-soft); }
