@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --green-950: #052b17;
  --green-900: #0d3d22;
  --green-800: #1d7f3c;
  --green-700: #259445;
  --green-100: #dff4e6;
  --green-50: #f3faf5;
  --yellow: #f5df18;
  --cream: #fbfaf1;
  --paper: #ffffff;
  --text: #243128;
  --muted: #65746a;
  --line: rgba(37, 148, 69, 0.14);
  --shadow: 0 16px 42px rgba(13, 61, 34, 0.07);
  --shadow-strong: 0 28px 80px rgba(13, 61, 34, 0.14);
  --container: 1360px;
  --radius: 24px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Barlow Semi Condensed", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 20px;
  color: var(--text);
  background:
    radial-gradient(circle at 0 8%, rgba(37,148,69,.055), transparent 28%),
    radial-gradient(circle at 100% 20%, rgba(245,223,24,.07), transparent 24%),
    var(--cream);
  line-height: 1.4;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { border: 0; cursor: pointer; }

:focus-visible {
  outline: 3px solid rgba(245,223,24,.9);
  outline-offset: 3px;
  border-radius: 10px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

h1, h2, h3 { color: var(--green-800); line-height: 1.12; letter-spacing: -0.03em; }
h1 { font-size: clamp(42px, 4.8vw, 64px); font-weight: 900; }
h2 { font-size: clamp(30px, 3.25vw, 40px); font-weight: 800; }
h3 { font-size: 21px; font-weight: 700; }
p { color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn-green { background: var(--green-700); color: #fff; box-shadow: 0 12px 26px rgba(37,148,69,.18); }
.btn-green:hover { background: var(--green-800); }
.btn-yellow { background: var(--yellow); color: var(--green-900); box-shadow: 0 12px 26px rgba(245,223,24,.18); }
.btn-line { border: 1px solid var(--line); color: var(--green-900); background: rgba(255,255,255,.62); }
.btn-line:hover { border-color: rgba(37,148,69,.28); background: #fff; }
.btn-light { border: 1px solid rgba(255,255,255,.28); color: #fff; background: rgba(255,255,255,.08); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
  color: var(--green-700);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
}

.section { padding: 94px 0; }
.section-paper { background: rgba(255,255,255,.86); }
.section-cream { background: transparent; }

.section-head {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}

.section-head.center,
.section-intro {
  display: block;
  max-width: 840px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-head p,
.section-intro p {
  font-size: 20px;
  margin-top: 16px;
  line-height: 1.5;
}

.section-head .btn{
  margin-top: 15px;
}

.section-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

/* Top bar */
.topbar { background: var(--green-700); color: #fff; font-size: 16px; }

.topbar-inner,
.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar-inner { justify-content: space-between; padding: 8px 0; }
.topbar span { white-space: nowrap; }

.topbar-search { position: relative; width: 210px; }

.topbar-search input {
  width: 100%;
  height: 30px;
  padding: 0 34px 0 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 12px;
  outline: 0;
  transition: background .2s ease, border-color .2s ease;
}

.topbar-search input::placeholder { color: rgba(255,255,255,.58); }
.topbar-search input:focus { background: rgba(255,255,255,.16); border-color: rgba(245,223,24,.58); }

.topbar-search button {
  position: absolute;
  top: 50%;
  right: 4px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--green-900);
  font-size: 12px;
  transform: translateY(-50%);
}

.topbar-social { display: flex; gap: 7px; }

.topbar-social a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.topbar-social a:hover { transform: translateY(-1px); background: var(--yellow); color: var(--green-900); }

/* Header & navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,250,241,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(37,148,69,.1);
  box-shadow: 0 8px 26px rgba(13,61,34,.035);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-logo {
  display: block;
  width: 150px;
  height: auto;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-900);
  color: #fff;
  font-size: 21px;
  font-weight: 900;
  font-style: italic;
  outline: 3px solid var(--yellow);
}

.brand-name {
  display: block;
  color: var(--green-700);
  font-size: 27px;
  line-height: 1;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.04em;
}

.brand-tagline {
  display: block;
  margin-top: 4px;
  color: rgba(13,61,34,.68);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #328D3E;
  font-size: 15.5px;
  font-weight: 800;
}

.main-nav a,
.nav-trigger {
  color: inherit;
  transition: color .2s ease;
}

.main-nav a:hover,
.nav-item:hover .nav-trigger,
.nav-item:focus-within .nav-trigger { color: var(--green-900); }

.nav-item { position: relative; }
.nav-item::after { content: ""; position: absolute; left: -12px; right: -12px; top: 100%; height: 16px; }

.nav-trigger,
.nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 0;
  background: transparent;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-trigger::after {
  font-family: "Font Awesome 6 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  content: "\f107";
  font-size: 12px;
  opacity: .7;
}

.nav-dropdown,
.mega-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown {
  min-width: 290px;
  padding: 12px;
  border: 1px solid rgba(37,148,69,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 24px 70px rgba(13,61,34,.12);
}

.nav-dropdown a {
  display: block;
  padding: 11px 13px;
  border-radius: 12px;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-dropdown a:hover,
.mega-menu-grid a:hover { background: var(--green-50); color: var(--green-700); }

.mega-menu {
  left: 50%;
  width: min(1040px, calc(100vw - 48px));
  padding: 24px;
  border: 1px solid rgba(37,148,69,.12);
  border-radius: 26px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 28px 84px rgba(13,61,34,.14);
  transform: translate(-50%, 8px);
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu { transform: translate(-50%, 0); }

.mega-menu-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(37,148,69,.1);
}

.mega-menu-head strong {
  display: block;
  color: var(--green-900);
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.mega-menu-head span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
}

.mega-menu-badge {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--green-900);
  font-size: 12px;
  font-weight: 900;
}

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

.mega-menu-grid a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 11px;
  border-radius: 12px;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
}

.header-actions { display: flex; align-items: center; gap: 12px; }

.mobile-menu-button {
  display: none;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--green-900);
  font-weight: 800;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: #fff;
  color: var(--text);
  border-bottom: 1px solid rgba(37,148,69,.08);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before { left: -120px; top: -120px; width: 320px; height: 320px; background: rgba(37,148,69,.06); }
.hero::after { right: -120px; bottom: -140px; width: 360px; height: 360px; background: rgba(245,223,24,.09); }

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 74px;
  align-items: center;
  padding: 88px 0 84px;
}

.hero h1 {
  max-width: 720px;
  color: #2b3933;
  font-size: clamp(42px, 4.8vw, 50px);
  line-height: 1.16;
  font-weight: 800;
}

.hero-lead {
  max-width: 640px;
  margin-top: 28px;
  color: #1f2d25;
  font-size: clamp(18px, 1.65vw, 22px);
  line-height: 1.62;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 36px; }
.hero .btn { min-width: 190px; padding: 13px 24px; }
.hero .btn-line { background: #f3f4f2; border-color: rgba(13,61,34,.12); color: #111; }

.hero-cert-list { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 54px; }

.hero-cert-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 16px;
  border-radius: 999px;
  background: #eef2ee;
  color: #111;
  font-size: 14px;
  font-weight: 760;
}

.hero-video-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: #d9d9d9;
  box-shadow: 0 20px 52px rgba(13,61,34,.08);
  aspect-ratio: 16 / 9;
}

.hero-video-card img,
.hero-video-card iframe {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border: 0;
}

.hero-video-card iframe { position: absolute; inset: 0; }

.hero-video-button {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.28));
  color: #fff;
}

.hero-video-play {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--green-700);
  font-size: 34px;
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
}

.hero-video-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
  pointer-events: none;
}

.hero-video-caption strong { display: block; color: #fff; font-size: 16px; }
.hero-video-caption span { display: block; margin-top: 3px; color: rgba(255,255,255,.78); font-size: 13px; }
.hero-video-fallback { position: absolute; right: 12px; bottom: 12px; z-index: 4; padding: 6px 10px; border-radius: 999px; background: rgba(0,0,0,.56); color: #fff; font-size: 12px; }

/* Intro */
.intro-band { padding: 36px 0 20px; background: linear-gradient(180deg, var(--paper), rgba(251,250,241,.78)); }

.intro-grid {
  display: grid;
  grid-template-columns: .92fr 1.6fr;
  gap: 30px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(37,148,69,.12);
  border-radius: 28px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 44px rgba(13,61,34,.055);
}

.intro-grid p {
  max-width: 420px;
  color: var(--green-900);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 760;
}

.intro-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.intro-point {
  padding: 18px 20px;
  border-left: 3px solid var(--green-700);
  border-radius: 18px;
  background: var(--green-50);
}

.intro-point strong { display: block; color: var(--green-900); font-size: 15px; line-height: 1.2; }
.intro-point span { display: block; color: var(--muted); font-size: 12px; line-height: 1.45; margin-top: 5px; }

/* Cards and content sections */
.service-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.service-card,
.hot-product-card,
.cert-slide,
.stat-card,
.export-stat,
.export-case {
  border: 1px solid rgba(37,148,69,.12);
  background: rgba(255,255,255,.94);
  box-shadow: 0 12px 32px rgba(13,61,34,.055);
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover{
  background: linear-gradient(135deg, #e8f7eb, #fff8b8);
}

.service-image { position: relative; height: 168px; overflow: hidden;  }
.service-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.service-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(13,61,34,.26)); }

.service-icon {
  position: absolute;
  left: 18px;
  top: 128px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(37,148,69,.18);
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  color: var(--green-700);
  font-size: 18px;
  box-shadow: 0 12px 28px rgba(13,61,34,.12);
}

.service-body { padding: 34px 20px 22px; }
.service-card small { display: block; margin-bottom: 7px; color: var(--green-700); font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.service-card h3 { font-size: 20px; line-height: 1.2; }
.service-card p { margin-top: 13px; font-size: 18px; line-height: 1.4; }

.product-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 52px; align-items: start; }
.product-layout p{margin: 10px 0}
.product-layout .btn{margin-top: 10px}
.category-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.category-item {
  position: relative;
  min-height: 162px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 14px 32px rgba(13,61,34,.07);
  isolation: isolate;
}

.category-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--category-bg, linear-gradient(135deg, #e8f7eb, #fff8b8));
  background-size: cover;
  background-position: center;
  transition: transform .35s ease;
}

.category-item:nth-child(1)::before{
  background-image: url(https://wanabeverage.com/wp-content/uploads/2025/03/268042185_2053724154778279_1922088339061168119_n.jpg);
}

.category-item:nth-child(2)::before{
  background-image: url(https://wanabeverage.com/wp-content/uploads/2025/03/297192046_2233055330178493_5388825539047632140_n.jpg);
}

.category-item:nth-child(3)::before{
  background-image: url(https://wanabeverage.com/wp-content/uploads/2025/03/5.SPARKLING-DRINKS.jpg);
}

.category-item:nth-child(4)::before{
  background-image: url(https://wanabeverage.com/wp-content/uploads/2025/03/281577662_2170639349753425_8520267875310200077_n.jpg);
}

.category-item:nth-child(5)::before{
  background-image: url(https://wanabeverage.com/wp-content/uploads/2025/03/f5551a5cb251760f2f40.jpg);
}

.category-item:nth-child(6)::before{
  background-image: url(https://wanabeverage.com/wp-content/uploads/2025/03/12.-COLLAGEN-DRINKS.jpg);
}

.category-item:nth-child(7)::before{
  background-image: url(https://wanabeverage.com/wp-content/uploads/2025/03/c4e53296999b5dc5048a.jpg);
}

.category-item:nth-child(8)::before{
  background-image: url(https://wanabeverage.com/wp-content/uploads/2025/03/ezgif-1a9399c92143b0.png);
}

.category-item:nth-child(9)::before{
  background-image: url(https://wanabeverage.com/wp-content/uploads/2025/03/ezgif-1e82556749c4c5.png);
}

.category-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(13,61,34,.68));
}

.category-item:hover::before { transform: scale(1.06); }
.category-item span:first-child { color: #fff; font-size: 18px; font-weight: 880; line-height: 1.2; text-shadow: 0 2px 14px rgba(0,0,0,.22); }
.category-item span:last-child { display: grid; place-items: center; width: 34px; height: 34px; flex: 0 0 auto; border-radius: 50%; background: rgba(255,255,255,.86); color: var(--green-900); font-size: 12px; font-weight: 900; }

.cat-juice { --category-bg: linear-gradient(135deg, #ffcf8a, #f97316); }
.cat-coconut { --category-bg: linear-gradient(135deg, rgba(8,96,48,.16), rgba(245,223,24,.2)), url('https://wanabeverage.com/wp-content/uploads/2025/06/Sparkling-Coconut-Water-with-Calamansi.jpg'); }
.cat-sparkling { --category-bg: linear-gradient(135deg, #b7f7e3, #22c55e); }
.cat-tea { --category-bg: linear-gradient(135deg, #d1fae5, #0f766e); }
.cat-coffee { --category-bg: linear-gradient(135deg, rgba(90,46,24,.15), rgba(245,223,24,.16)), url('https://wanabeverage.com/wp-content/uploads/2025/06/Private-Label-Mocha-Coffee-Drink-in-330ml-Short-Canned.jpg'); }
.cat-functional { --category-bg: linear-gradient(135deg, #dcfce7, #16a34a); }
.cat-energy { --category-bg: linear-gradient(135deg, #fde68a, #f97316); }
.cat-protein { --category-bg: linear-gradient(135deg, #fee2e2, #f59e0b); }
.cat-boba { --category-bg: linear-gradient(135deg, #fae8ff, #a855f7); }

.product-feature { overflow: visible; background: transparent; }
.product-feature-body { display: block; max-width: 860px; margin: 0 auto 30px; text-align: center; }
.product-feature-body {margin-top: 15px}
.product-feature-body .btn { margin-top: 22px; }
.product-feature-body p{margin-top: 15px}

.product-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 16px; }
.product-tags span { padding: 6px 10px; border-radius: 999px; background: var(--green-50); color: var(--green-800); font-size: 12px; font-weight: 820; }

.product-slider-panel { background: transparent; }

.product-slider-top,
.cert-showcase-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.product-slider-top { max-width: 1220px; margin: 0 auto 20px; }
.product-slider-top strong, .cert-showcase-head strong { color: var(--green-900); font-size: 18px; }
.slider-controls { display: flex; gap: 8px; }

.slider-btn {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  color: var(--green-900);
  font-size: 22px;
  line-height: 1;
  transition: background .2s ease, transform .2s ease;
}

.slider-btn:hover { transform: translateY(-1px); background: #fff; }

.hot-product-slider,
.cert-slider {
  display: grid;
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 2px 2px 8px;
}

.hot-product-slider { max-width: 1220px; margin-inline: auto; grid-auto-columns: calc((100% - 72px) / 5); }
.cert-slider { grid-auto-columns: calc((100% - 48px) / 4); }
.hot-product-slider::-webkit-scrollbar, .cert-slider::-webkit-scrollbar { display: none; }

.hot-product-card,
.cert-slide { scroll-snap-align: start; overflow: hidden; border-radius: 24px; }

.hot-product-image,
.cert-image {
  position: relative;
  min-height: 178px;
  background: radial-gradient(circle at 72% 26%, rgba(245,223,24,.58), transparent 24%), linear-gradient(135deg, #dff4df, #fff 46%, #b7e4c0);
}

.hot-product-image img,
.cert-image img { width: 100%; height: auto; object-fit: cover; object-position: center; }
.cert-image img { object-fit: contain; padding: 18px; background: #fff; }

.image-fallback::before {
  content: "Wana";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--green-900);
  font-size: 20px;
  font-weight: 900;
  font-style: italic;
}

.hot-product-body,
.cert-slide-body { padding: 18px; }
.hot-product-body small,
.cert-slide-body small { display: block; margin-bottom: 7px; color: var(--green-700); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.hot-product-body h3 { font-size: 19px; }
.hot-product-body p, .cert-slide-body p { margin-top: 8px; font-size: 14px; line-height: 1.6; }

.why-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; max-width: 1180px; margin-inline: auto; }

.why-item {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  padding: 28px;
  border-radius: 26px;
  isolation: isolate;
  border: 1px solid rgba(37,148,69,.12);
  background: #fff;
  background-image: var(--why-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: 0 12px 32px rgba(13,61,34,.055);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  color: #fff;
}

.why-item:hover {
  transform: translateY(-3px);
  border-color: rgba(37,148,69,.26);
  box-shadow: 0 18px 44px rgba(13,61,34,.085);
}

.why-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(0deg, #000000ba, #ffffff00);
  background-size: cover;
  background-position: center;
  opacity: .95;
  transition: transform .35s ease, opacity .35s ease;
}

.why-item:hover::before {
  transform: scale(1.05);
  opacity: 1;
}

.why-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  height: 4px;
  background: linear-gradient(90deg, var(--green-700), var(--yellow));
}

.why-item {
  --why-bg: url("https://wanabeverage.com/wp-content/uploads/2025/03/3.png");
}

.why-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  border: 1px solid rgba(37,148,69,.16);
  border-radius: 18px;
  background: var(--green-50);
  color: var(--green-700);
  font-size: 22px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.82);
}

.why-item .num {
  position: absolute;
  right: 20px;
  top: 24px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 46px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eed600;
  color: var(--green-700);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .08em;
}

.why-item h3, .why-item p { position: relative; color: #fff; z-index: 1; }
.why-item h3 { font-size: 21px; }
.why-item p { margin-top: 11px; font-size: 15px; line-height: 1.65; }

.cert-showcase { margin-top: 60px; }
.cert-showcase-head { max-width: 860px; margin: 0 auto 28px; display: block; text-align: center; }
.cert-showcase-head strong { display: block; max-width: 720px; margin: 0 auto; color: var(--green-900); font-size: clamp(24px, 2.6vw, 34px); line-height: 1.18; letter-spacing: -0.035em; }
.cert-showcase-head .slider-controls { justify-content: center; margin-top: 20px; }
.cert-showcase .cert-slider { max-width: 1120px; margin-inline: auto; grid-auto-columns: calc((100% - 84px) / 5); gap: 21px; }
.cert-showcase .cert-slide { border-radius: 22px; }
.cert-showcase .cert-image { min-height: 168px; display: grid; place-items: center; background: linear-gradient(135deg, #fff, #f5faf1); }
.cert-showcase .cert-image img { height: 168px; padding: 24px; object-fit: contain; background: transparent; }
.cert-showcase .cert-slide-body { padding: 20px; border-top: 1px solid rgba(37,148,69,.08); }
.cert-showcase .cert-slide-body h3 { font-size: 22px; }
.cert-showcase .cert-slide-body p { min-height: 44px; }

.process-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  padding: 12px 0 4px;
}

.process-step {
  position: relative;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 22px 18px;
  border: 1px solid rgba(37,148,69,.12);
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 28px rgba(13,61,34,.045);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.process-step:hover { transform: translateY(-3px); border-color: rgba(37,148,69,.26); box-shadow: 0 18px 42px rgba(13,61,34,.08); }
.process-step::after { content: ""; position: absolute; top: 50%; right: -18px; width: 18px; height: 2px; background: linear-gradient(90deg, rgba(37,148,69,.3), rgba(245,223,24,.65)); transform: translateY(-50%); z-index: 2; }
.process-step::before { content: ""; position: absolute; top: 50%; right: -22px; width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); transform: translateY(-50%); z-index: 3; }
.process-step:last-child::after, .process-step:last-child::before { display: none; }

.process-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  border: 1px solid rgba(37,148,69,.18);
  border-radius: 18px;
  background: var(--green-50);
  color: var(--green-700);
  font-size: 22px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.8);
}

.process-step span { display: inline-flex; width: fit-content; margin-bottom: 10px; padding: 5px 9px; border-radius: 999px; background: rgba(37,148,69,.09); color: var(--green-700); font-size: 11px; font-weight: 900; letter-spacing: .13em; }
.process-step h3 { font-size: 18px; line-height: 1.25; }
.process-step p { margin-top: 10px; font-size: 13px; line-height: 1.55; }

.factory-layout { display: grid; gap: 34px; }
.factory-heading { max-width: 900px; }
.factory-layout p{margin-top: 15px}
.factory-showcase { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 34px; align-items: stretch; }

.factory-photo {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,.12), transparent 50%), linear-gradient(135deg, #0d5e31, #a9dfb5);
  box-shadow: var(--shadow);
}

.factory-photo img { width: 100%; height: 100%; min-height: 400px; object-fit: cover; object-position: center; }
.factory-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,61,34,.03), rgba(13,61,34,.58)); pointer-events: none; }

.factory-photo-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  background: rgba(255,255,255,.14);
  color: #fff;
  backdrop-filter: blur(12px);
}

.factory-photo-caption strong { display: block; color: #fff; font-size: 22px; line-height: 1.15; }
.factory-photo-caption span { display: block; margin-top: 6px; color: rgba(255,255,255,.76); font-size: 13px; }

.factory-photo-badge {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--green-900);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

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

.stat-card {
  display: block;
  min-height: 222px;
  padding: 26px;
  border-radius: 22px;
}

.stat-card strong { display: block; margin-bottom: 18px; color: var(--green-700); font-size: 46px; line-height: 1; letter-spacing: -0.05em; }
.stat-card h3 { font-size: 24px; }
.stat-card p { margin-top: 10px; font-size: 18px; line-height: 1.5; }

.export-copy { max-width: 880px; margin: 0 auto 34px; text-align: center; }
.export-copy p { margin-top: 18px; font-size: 20px; line-height: 1.5; }

.export-flags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 26px; }

.export-flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(37,148,69,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  color: var(--text);
  font-size: 13px;
  font-weight: 820;
  box-shadow: 0 6px 18px rgba(13,61,34,.04);
}

.export-flag .flag { font-size: 18px; line-height: 1; }

.export-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1120px; margin: 0 auto 18px; }
.export-stat { padding: 26px; border-radius: 22px; text-align: center; }
.export-stat strong { display: block; color: var(--green-700); font-size: 34px; line-height: 1; }
.export-stat span { display: block; margin-top: 9px; color: var(--text); font-size: 18px; font-weight: 500;}

.export-cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1120px; margin: 30px auto 0; }
.export-case { padding: 28px; border-radius: 24px; }
.export-case small { display: block; margin-bottom: 9px; color: var(--green-700); font-size: 14px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.export-case h3 { font-size: 24px; }
.export-case p { margin-top: 10px; font-size: 20px; line-height: 1.4; }

.trade-show-head { max-width: 820px; margin: 0 auto 42px; text-align: center; }
.trade-show-head p { margin-top: 16px; font-size: 22px; line-height: 1.5; }
.trade-show-layout { display: grid; grid-template-columns: 1.7fr 1fr; gap: 22px; align-items: stretch; }

.trade-video-card,
.trade-event-card,
.trade-mini-card,
.trade-more-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #d9ded7;
  box-shadow: 0 16px 38px rgba(13,61,34,.08);
  isolation: isolate;
}

.trade-video-card::before,
.trade-event-card::before,
.trade-mini-card::before,
.trade-more-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--trade-bg, linear-gradient(135deg, #d7e8d8, #f7f2b8));
  background-size: cover;
  background-position: center;
  transition: transform .35s ease;
}

.trade-video-card::after,
.trade-event-card::after,
.trade-mini-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(13,61,34,.72));
}

.trade-video-card:hover::before,
.trade-event-card:hover::before,
.trade-mini-card:hover::before { transform: scale(1.04); }

.trade-video-card{
  min-height:420px;
  display:grid;
  place-items:center;
  padding:34px;
  background:#d9ded7;
}

.trade-video-thumb{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:-2;
}

.trade-video-button{
  position:relative;
  z-index:2;
  display:grid;
  place-items:center;
  color:#fff;
}
.trade-video-card iframe {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  border: 0;
}
.trade-play { position: relative; z-index: 2; display: grid; place-items: center; width: 96px; height: 96px; border-radius: 50%; background: rgba(255,255,255,.26); color: #fff; font-size: 38px; backdrop-filter: blur(10px); }
.trade-video-title { position: absolute; left: 34px; right: 34px; bottom: 34px; z-index: 2; color: #fff; font-size: clamp(28px, 3vw, 40px); font-weight: 900; line-height: 1.12; letter-spacing: -0.035em; }

.trade-side-list { display: grid; gap: 22px; }
.trade-event-card { min-height: 199px; padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; }
.trade-event-card:nth-child(1) { --trade-bg: linear-gradient(135deg, #d9f99d, #16a34a); }
.trade-event-card:nth-child(2) { --trade-bg: linear-gradient(135deg, #e0f2fe, #0f766e); }

.trade-event-thumb {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.trade-event-content {
  position: relative;
  z-index: 2;
}

.trade-event-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(13,61,34,.68));
}

.trade-event-card small,
.trade-mini-card small {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--green-900);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.trade-event-card h3,
.trade-mini-card h3 { color: #fff; font-size: 25px; }
.trade-event-card p,
.trade-mini-card p { margin-top: 8px; color: rgba(255,255,255,.78); font-size: 18px; }

.trade-mini-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 22px; }
.trade-mini-card, .trade-more-card { min-height: 174px; padding: 22px; display: flex; flex-direction: column; justify-content: flex-end; }
.trade-mini-card:nth-child(1) { --trade-bg: linear-gradient(135deg, #fde68a, #f97316); }
.trade-mini-card:nth-child(2) { --trade-bg: linear-gradient(135deg, #d1fae5, #0f766e); }
.trade-mini-card:nth-child(3) { --trade-bg: linear-gradient(135deg, #fae8ff, #a855f7); }

.trade-more-card { align-items: center; justify-content: center; text-align: center; background: linear-gradient(135deg, #eef5ec, #dfe8dc); color: var(--green-900); }
.trade-more-card strong { display: block; font-size: 38px; line-height: 1; letter-spacing: -0.05em; }
.trade-more-card span { display: block; margin-top: 8px; color: var(--muted); font-weight: 800; }

.trade-mini-thumb {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.trade-mini-content {
  position: relative;
  z-index: 2;
}

.csr-section { margin-top: 70px; }
.csr-head { max-width: 900px; margin: 0 auto 34px; text-align: center; }
.csr-head p { margin-top: 14px; font-size: 20px; line-height: 1.75; }
.csr-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.csr-card {
  position: relative;
  min-height: 200px;
  overflow: hidden;
  padding: 22px;
  border-radius: 20px;
  background: #d9ded7;
  box-shadow: 0 12px 30px rgba(13,61,34,.07);
  isolation: isolate;
}

.csr-card::before { content: ""; position: absolute; inset: 0; z-index: -2; background: var(--csr-bg, linear-gradient(135deg, #e8f7eb, #fff8b8)); background-size: cover; background-position: center; transition: transform .35s ease; }
.csr-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(13,61,34,.72)); }
.csr-card:hover::before { transform: scale(1.05); }
.csr-card-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; }
.csr-card small { display: inline-flex; width: fit-content; margin-bottom: 8px; padding: 5px 9px; border-radius: 999px; background: rgba(245,223,24,.92); color: var(--green-900); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.csr-card h3 { color: #fff; font-size: 20px; text-shadow: 0 2px 12px rgba(0,0,0,.18); }
.csr-card p { margin-top: 7px; color: rgba(255,255,255,.78); font-size: 13px; line-height: 1.5; }

.csr-card:nth-child(1) { --csr-bg: linear-gradient(135deg, #d9f99d, #16a34a); }
.csr-card:nth-child(2) { --csr-bg: linear-gradient(135deg, #bfdbfe, #0f766e); }
.csr-card:nth-child(3) { --csr-bg: linear-gradient(135deg, #fde68a, #f97316); }
.csr-card:nth-child(4) { --csr-bg: linear-gradient(135deg, #dcfce7, #65a30d); }
.csr-card:nth-child(5) { --csr-bg: linear-gradient(135deg, #fae8ff, #a855f7); }
.csr-card:nth-child(6) { --csr-bg: linear-gradient(135deg, #e0f2fe, #0284c7); }
.csr-card:nth-child(7) { --csr-bg: linear-gradient(135deg, #fef3c7, #ca8a04); }
.csr-card:nth-child(8) { --csr-bg: linear-gradient(135deg, #ccfbf1, #059669); }

.csr-thumb {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.final-cta {
  padding: 78px 0;
  background: radial-gradient(circle at 10% 20%, rgba(245,223,24,.14), transparent 24%), linear-gradient(135deg, var(--green-950), var(--green-700));
  color: #fff;
}

.final-cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; }
.final-cta h2 { color: #fff; }
.final-cta p { max-width: 720px; margin-top: 14px; color: rgba(255,255,255,.7); }
.final-cta-actions { display: flex; gap: 12px; }

/* Footer */
.site-footer {
  background: #031f10;
  color: #fff;
}
.footer-main { padding: 64px 0 42px; background: radial-gradient(circle at 8% 20%, rgba(245,223,24,.08), transparent 24%), linear-gradient(135deg, #031f10, #08381f 72%, #0d3d22); }
.footer-grid { display: grid; grid-template-columns: 1.15fr .75fr 1.35fr .95fr; gap: 25px; align-items: start; }
.footer-brand-block { max-width: 420px; }
.footer-logo-row { display: flex; align-items: center; flex-wrap: wrap; margin-bottom: 18px; }
.footer-brand { color: #fff201; font-size: 42px; font-weight: 920; font-style: italic; line-height: 1; letter-spacing: -0.04em; }
.footer-tagline { display: block; margin-top: 5px; color: rgba(255,255,255,.58); font-size: 14px; font-weight: 800; font-style: italic; letter-spacing: .2em; text-transform: uppercase; }
.footer-summary { max-width: 390px; color: rgba(255,255,255,.68); font-size: 18px; line-height: 1.5; }
.footer-social { display: flex; gap: 8px; margin-top: 22px; }

.footer-social a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.footer-social a:hover { transform: translateY(-1px); background: var(--yellow); color: var(--green-900); }
.footer-col h3 { margin-bottom: 16px; color: #fff; font-size: 15px; letter-spacing: .08em; text-transform: uppercase; }
.footer-col ul { display: grid; gap: 10px; list-style: none; }
.footer-col a, .footer-col li, .footer-contact-item { color: rgba(255,255,255,.66); font-size: 18px; }
.footer-col a:hover { color: #fff; }
.footer-contact-list, .footer-link-list { display: grid; gap: 13px; }
.footer-contact-item strong { display: block; margin-bottom: 2px; color: #fff; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; }
.footer-ext { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 7px; color: rgba(255,255,255,.56); font-size: 13px; }
.footer-ext span{
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .09);
  color: rgba(255, 255, 255, .66);
  font-size: 14px;
  line-height: 1.2;
}
.footer-link-card {
  display: grid;
  grid-template-columns: 1fr 34px;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.07);
  color: #fff;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}

.footer-link-card:hover { transform: translateY(-1px); border-color: rgba(245,223,24,.32); background: rgba(255,255,255,.11); }
.footer-link-title { display: block; color: #fff; font-size: 14px; font-weight: 850; }
.footer-link-desc { display: block; margin-top: 2px; color: rgba(255,255,255,.56); font-size: 12px; line-height: 1.45; }
.footer-link-icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--yellow); color: var(--green-900); font-size: 13px; font-weight: 900; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); background: #02170c; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 0; color: rgba(255,255,255,.56); font-size: 13px; }
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 14px; }
.footer-bottom-links a:hover { color: #fff; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  .main-nav,
  .header-actions .btn { display: none; }
  .topbar-left span:first-child { display: none; }
  .topbar-search { width: 190px; }
  .mobile-menu-button { display: inline-flex; }

  .main-nav.is-open {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: block;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 12px 24px 20px;
    border-bottom: 1px solid rgba(37,148,69,.12);
    background: rgba(251,250,241,.98);
    box-shadow: 0 22px 54px rgba(13,61,34,.12);
  }

  .main-nav.is-open > a,
  .main-nav.is-open .nav-item > a {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(13,61,34,.08);
    color: var(--green-700);
    font-size: 15px;
    text-align: left;
  }

  .main-nav.is-open .nav-item { width: 100%; position: relative; }
  .main-nav.is-open .nav-item::after { display: none; }
  .main-nav.is-open .nav-trigger::after { content: "+"; font-size: 20px; opacity: .75; }
  .main-nav.is-open .nav-item.is-submenu-open > .nav-trigger::after { content: "−"; }

  .main-nav.is-open .nav-dropdown,
  .main-nav.is-open .mega-menu {
    display: block !important;
    position: static !important;
    width: 100% !important;
    min-width: 0 !important;
    max-height: 0;
    overflow: hidden;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
    margin: 0 !important;
    padding: 0 0 0 14px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transition: max-height .3s ease;
  }

  .main-nav.is-open .mega-menu-head { display: none !important; }

  .main-nav.is-open .nav-dropdown a,
  .main-nav.is-open .mega-menu-grid a {
    min-height: auto;
    padding: 10px;
    border-bottom: 0;
    color: rgba(36,49,40,.78);
    font-size: 14px;
  }

  .main-nav.is-open .nav-dropdown a:hover,
  .main-nav.is-open .mega-menu-grid a:hover{
    color: var(--green-700);
  }

  .main-nav.is-open .mega-menu-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 16px; }

  .hero-inner,
  .intro-grid,
  .section-head,
  .product-layout,
  .factory-showcase,
  .trade-show-layout,
  .final-cta-inner { grid-template-columns: 1fr; }

  .intro-points,
  .service-list,
  .why-grid,
  .trade-mini-grid,
  .csr-grid,
  .footer-grid { grid-template-columns: repeat(2, 1fr); }

  .category-list,
  .process-strip { grid-template-columns: repeat(3, 1fr); }
  .process-step:nth-child(3n)::after,
  .process-step:nth-child(3n)::before { display: none; }
  .factory-info,
  .export-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .export-cases { grid-template-columns: 1fr; }
  .hot-product-slider, .cert-slider { grid-auto-columns: calc((100% - 18px) / 2); }
  .cert-showcase .cert-slider { grid-auto-columns: calc((100% - 21px) / 2); }
  .final-cta-actions { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .brand-logo { width: 148px; }
  .container { width: min(100% - 28px, var(--container)); }
  .topbar-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .topbar-left { flex-direction: column; align-items: flex-start; gap: 2px; }
  .topbar-right { display: none;}
  .topbar-search { width: min(100%, 260px); }
  .section { padding: 68px 0; }
  .hero-inner { padding: 68px 0 58px; }
  .hero-cert-list{
    gap: 10px 8px;
  }
  .hero-actions, .final-cta-actions, .section-cta { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .main-nav.is-open { padding-inline: 14px; }
  .main-nav.is-open .mega-menu-grid { grid-template-columns: 1fr; }
  .intro-points, .service-list, .category-list, .why-grid, .footer-grid, .export-stats, .export-cases, .trade-mini-grid, .csr-grid { grid-template-columns: 1fr; }
  .process-strip{ grid-template-columns: repeat(2, 1fr); gap: 18px 15px;}
  .process-step::after, .process-step::before { display: none; }
  .product-feature-body { text-align: left; }
  .product-tags { justify-content: flex-start; }
  .product-slider-top, .cert-showcase-head { align-items: flex-start; }
  .hot-product-slider, .cert-slider, .cert-showcase .cert-slider { grid-auto-columns: 88%; }
  .factory-info { grid-template-columns: 1fr; }
  .stat-card { min-height: auto; }
  .factory-photo-caption { display: block; }
  .factory-photo-badge { display: inline-flex; margin-top: 12px; }
  .export-copy { text-align: left; }
  .export-flags { justify-content: flex-start; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  #services,
  #products,
  #hot-products,
  #why,
  #process,
  #factory,
  #export,
  #trade-shows,
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
  }
}