/* ==========================================================================
   WE GLOBALL — "The Manifest" design system
   A visual language borrowed from bills of lading, customs stamps and
   shipping ledgers: numbered line-items, rubber-stamp seals, HS-code style
   mono labels, dotted trade-route rules. Built for an agri-export brand.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root{
  /* color — brand palette */
  --ink:        #254a3f;   /* Headings / brand navy (also dark-section bg) */
  --ink-deep:   #002850;   /* Deeper navy for footer / mobile nav overlay */
  --accent:   #e5e6c6;   /* Accent — seals, highlights, on-dark emphasis */
  --accent-d: #1F5C94;   /* Deeper accent — borders, underlines on light bg */
  --olive:      #55694a;
  --paper:      #FAFBFC;   /* Background */
  --paper-2:    #F5F8FC;   /* Alternate Section */
  --white:      #FFFFFF;   /* White Cards */
  --text:       #1A1A1A;   /* Body Text */
  --text-soft:  #5C6675;   /* Secondary Text */
  --line:       #E6EAF0;   /* Borders */
  --line-dark:  rgba(255,255,255,0.14);

  /* type */
  --f-display: 'Fraunces', ui-serif, Georgia, serif;
  --f-body:    'Inter', system-ui, -apple-system, sans-serif;
  --f-mono:    'IBM Plex Mono', ui-monospace, monospace;

  /* rhythm */
  --gap: clamp(1.25rem, 2vw, 2rem);
  --radius: 3px;
  --radius-btn: 10px;   /* rounded corners for all button-style elements */
  --shadow: 0 12px 28px -14px rgba(0,56,112,0.22);
  --shadow-btn: 0 6px 16px -6px rgba(0,56,112,0.28);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; max-width: 100%; overflow-x: hidden; }
body{ max-width: 100%; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body{
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4{ font-family: var(--f-display); margin: 0; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
p{ margin: 0; }

:focus-visible{
  outline: 2px solid var(--accent-d);
  outline-offset: 3px;
}

.wrap{
  width: min(1180px, 92%);
  margin-inline: auto;
}

/* ---------- eyebrow / manifest labels ---------- */
.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #254a3f;
}
.eyebrow::before{
  content: '';
  width: 26px;
  height: 1px;
  background: var(--accent-d);
  display: inline-block;
}
.eyebrow.on-dark{ color: var(--accent); }
.eyebrow.on-dark::before{ background: var(--accent); }

/* ---------- header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--line-dark);
}
.site-header .bar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 0;
}
.brand{
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
}
.brand img{ height: 50px; width: auto; border-radius: 2px; transition: transform .18s ease; }
.brand:hover img{ transform: scale(1.04); }
.brand-word{
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
}
.brand-word span{ color: var(--accent); }

.main-nav{ display: flex; align-items: center; gap: 2rem; }
.main-nav > ul{ display: flex; align-items: center; gap: 1.9rem; }
.main-nav a{
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.02em;
  transition: color .18s ease;
  position: relative;
  padding: 0.3rem 0;
}
.main-nav a:hover, .main-nav a:focus-visible, .main-nav a[aria-current="page"]{ color: var(--white); }
.main-nav a[aria-current="page"]::after{
  content:'';
  position: absolute; left:0; right:0; bottom:-4px;
  height: 2px; background: var(--accent);
}
/* .has-dropdown gets an invisible padding "bridge" so the hover state survives
   the visual gap between the nav link and the menu below it — this is the
   fix for the flyout being fiddly/closing before the mouse reaches it. */
.has-dropdown{ position: relative; padding-bottom: 0.9rem; margin-bottom: -0.9rem; }
.dropdown{
  position: absolute;
  top: 100%;
  left: -1rem;
  background: var(--white);
  min-width: 250px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity .16s ease, transform .16s ease, visibility 0s linear .16s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown{
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity .16s ease, transform .16s ease, visibility 0s linear 0s;
}
.dropdown a{
  display: block;
  color: var(--text);
  padding: 0.7rem 0.85rem;
  font-size: 0.85rem;
  border-radius: 7px;
}
.dropdown a:hover{ background: var(--paper-2); color: var(--ink); }

/* ---------- nested flyout (product sub-types) ---------- */
/* Same bridge technique, this time as a horizontal gap on the right edge. */
.dropdown-item{ position: relative; padding-right: 0.6rem; margin-right: -0.6rem; }
.dropdown-item > a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}
.dropdown-item > a::after{
  content: '›';
  font-size: 1rem;
  color: var(--text-soft);
}
.flyout{
  position: absolute;
  top: -0.5rem;
  left: 100%;
  min-width: 260px;
  max-height: 340px;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(4px);
  transition: opacity .16s ease, transform .16s ease, visibility 0s linear .16s;
  z-index: 5;
}
.dropdown-item:hover .flyout,
.dropdown-item:focus-within .flyout{
  opacity: 1; visibility: visible; transform: translateX(0);
  transition: opacity .16s ease, transform .16s ease, visibility 0s linear 0s;
}
.flyout a{
  display: block;
  color: var(--text);
  padding: 0.65rem 0.8rem;
  font-size: 0.82rem;
  border-radius: 7px;
  white-space: nowrap;
}
.flyout a:hover{ background: var(--paper-2); color: var(--ink); }

@media (max-width: 1240px){
  .flyout{ left: auto; right: 100%; }
  .dropdown-item{ padding-right: 0; margin-right: 0; padding-left: 0.6rem; margin-left: -0.6rem; }
}

.header-cta{
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  background: #e5e6c6;
  padding: 0.65rem 1.3rem;
  border-radius: var(--radius-btn);
  border: 1px solid var(--white);
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.header-cta:hover{ background: var(--paper-2); transform: translateY(-2px); box-shadow: var(--shadow-btn); }
.header-cta:active{ transform: translateY(0); box-shadow: none; }

.nav-toggle{
  display: none;
  background: none; border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-btn);
  width: 42px; height: 38px;
  color: #254a3f;
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease;
  align-items: center; justify-content: center;
}
.nav-toggle:hover{ background: rgba(255,255,255,0.1); border-color: var(--white); }

/* ---------- hero ---------- */
.hero{
  position: relative;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  padding-block: clamp(3.5rem, 8vw, 6.5rem) clamp(2.5rem, 6vw, 4rem);
}
.hero::before{
  /* dotted trade-route arcs, purely abstract, no real map traced */
  content:'';
  position: absolute; inset: -10% -5% auto auto;
  width: 640px; height: 640px;
  background-image:
    radial-gradient(circle, rgba(31,92,148,0.35) 1.5px, transparent 1.6px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(circle at 70% 30%, black 0%, transparent 62%);
          mask-image: radial-gradient(circle at 70% 30%, black 0%, transparent 62%);
  opacity: 0.5;
  pointer-events: none;
}
.hero-grid{
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.hero h1{
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  line-height: 1.04;
  margin-top: 0.9rem;
}
.hero h1 em{
  font-style: italic;
  color: var(--accent);
}
.hero-sub{
  margin-top: 1.4rem;
  max-width: 46ch;
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
}
.hero-actions{
  display: flex;
  gap: 1rem;
  margin-top: 2.1rem;
  flex-wrap: wrap;
}
.btn{
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 1.1rem;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .16s ease, background .16s ease, border-color .16s ease, box-shadow .16s ease, color .16s ease;
}
.btn:active{ transform: translateY(0); box-shadow: none; }
.btn-primary{ background: #e5e6c6; color: #254a3f; border-color: var(--accent); }
.btn-primary:hover{ transform: translateY(-2px); background: #e5e6c6; border-color: var(--accent-d); box-shadow: var(--shadow-btn); }
.btn-ghost{ color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover{ border-color: var(--white); background: rgba(255,255,255,0.08); transform: translateY(-2px); box-shadow: var(--shadow-btn); }

/* stamp seal — signature element */
.seal{
  --sz: 132px;
  width: var(--sz); height: var(--sz);
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  transform: rotate(-9deg);
  position: relative;
  flex-shrink: 0;
}
.seal::before{
  content:'';
  position: absolute; inset: 6px;
  border: 1px dashed rgba(31,92,148,0.6);
  border-radius: 50%;
}
.seal-text{
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1.5;
}

.hero-panel{
  position: relative;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 2.2vw, 2rem);
}
.hero-photos{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0.8rem;
}
.hero-photos img{
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.15);
}
.hero-photos .tall{ grid-row: span 2; aspect-ratio: 3/4; }
.hero-photos .wide{ aspect-ratio: 16/10; }

.manifest-strip{
  margin-top: clamp(2.4rem, 5vw, 3.6rem);
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.manifest-strip .item dt{
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.35rem;
}
.manifest-strip .item dd{
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.86);
}

/* ---------- socials rail ---------- */
.social-rail{
  display: flex; gap: 0.75rem;
}
.social-rail a{
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.85);
  transition: border-color .16s ease, color .16s ease, transform .16s ease;
}
.social-rail a:hover{ border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.social-rail svg{ width: 16px; height: 16px; }

/* ---------- section shells ---------- */
.section{ padding-block: clamp(3.5rem, 7vw, 6rem); }
.section-head{
  max-width: 62ch;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.section-head h2{
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-top: 0.7rem;
}
.section-head p{
  margin-top: 1rem;
  color: var(--text-soft);
  font-size: 1.02rem;
}
.section.alt{ background: var(--paper-2); }
.section.dark{ background: var(--ink); color: var(--white); }
.section.dark .section-head p{ color: rgba(255,255,255,0.75); }

/* ---------- about / mission copy blocks ---------- */
.prose{ max-width: 74ch; font-size: 1.03rem; color: var(--text-soft); }
.prose p + p{ margin-top: 1.1rem; }
.founder-line{
  margin-top: 1.6rem;
  font-family: var(--f-mono);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  border-left: 2px solid var(--accent);
  padding-left: 0.9rem;
}

.split{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split img{
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* mission / vision cards */
.mv-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}
.mv-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 2.6vw, 2.3rem);
  position: relative;
}
.mv-card .tag{
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-d);
}
.mv-card h3{ font-size: 1.3rem; margin-top: 0.5rem; }
.mv-card p{ margin-top: 0.8rem; color: var(--text-soft); }

/* ---------- product line-items (home listing) ---------- */
.manifest-list{ display: flex; flex-direction: column; }
.manifest-row{
  display: grid;
  grid-template-columns: 90px 1.1fr 1.4fr auto;
  gap: var(--gap);
  align-items: center;
  padding: clamp(1.4rem, 2.4vw, 2rem) 0;
  border-top: 1px solid var(--line);
}
.manifest-row:last-child{ border-bottom: 1px solid var(--line); }
.manifest-row .no{
  font-family: var(--f-mono);
  font-size: 0.85rem;
  color: var(--accent-d);
}
.manifest-row .thumb{
  width: 100%; aspect-ratio: 4/3; overflow: hidden; border-radius: 2px;
  border: 1px solid var(--line);
}
.manifest-row .thumb img{ width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.manifest-row:hover .thumb img{ transform: scale(1.05); }
.manifest-row h3{ font-size: 1.35rem; }
.manifest-row p{ margin-top: 0.5rem; color: var(--text-soft); font-size: 0.96rem; }
.manifest-row .go{
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--accent-d);
  padding-bottom: 2px;
  white-space: nowrap;
}

/* ---------- product page: spec feature cards ---------- */
.feature-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--gap);
}
.feature-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: 0.9rem;
}
.feature-card .thumb{
  width: 100%; aspect-ratio: 4/3; overflow: hidden; border-radius: 2px;
}
.feature-card .thumb img{ width: 100%; height: 100%; object-fit: cover; }
.feature-card h4{ font-size: 1.02rem; font-weight: 600; }

.gallery-strip{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.gallery-strip img{
  width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius);
  border: 1px solid var(--line);
}

.product-hero{
  background: var(--ink);
  color: var(--white);
  padding-block: clamp(2.6rem, 6vw, 4rem);
}
.product-hero .code{
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.product-hero h1{ color: var(--white); margin-top: 0.6rem; font-size: clamp(2.1rem,4vw,3.1rem); }
.product-hero .lede{ margin-top: 1rem; max-width: 60ch; color: rgba(255,255,255,0.8); }
.crumbs{
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: #e5e6c6;
  text-transform: uppercase;
}
.crumbs a{ color: #e5e6c6; }
.crumbs a:hover{ color: var(--accent); }

/* ---------- why choose us ---------- */
.why-list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.8rem, 3vw, 2.6rem) var(--gap);
}
.why-item{
  border-top: 2px solid var(--accent);
  padding-top: 1.3rem;
}
.why-item .no{
  font-family: var(--f-mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  display: block;
}
.why-item h4{ font-size: 1.18rem; margin-top: 0.7rem; color: var(--white); line-height: 1.3; }
.why-item p{ margin-top: 0.7rem; color: rgba(255,255,255,0.72); font-size: 0.96rem; line-height: 1.6; max-width: 32ch; }

@media (max-width: 960px){
  .why-list{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .why-list{ grid-template-columns: 1fr; }
}

/* ---------- contact ---------- */
.contact-grid{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow);
}
.field{ margin-bottom: 1.1rem; display: flex; flex-direction: column; gap: 0.4rem; }
.field label{
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.field input, .field textarea{
  font-family: var(--f-body);
  font-size: 0.98rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--paper);
  color: var(--text);
  resize: vertical;
}
.field input:focus, .field textarea:focus{
  outline: none;
  border-color: var(--accent-d);
  background: var(--white);
}
.form-note{ font-size: 0.82rem; color: var(--text-soft); margin-top: 0.6rem; }

.contact-info{ display: flex; flex-direction: column; gap: 1.4rem; }
.info-row{
  display: flex; gap: 1rem; align-items: flex-start;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.3rem;
}
.info-row .ico{
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--accent-d);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-d);
}
.info-row .ico svg{ width: 18px; height: 18px; }
.info-row h4{
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 500;
}
.info-row p{ margin-top: 0.3rem; font-size: 1rem; }
.info-row a:hover{ color: var(--accent-d); }

/* ---------- footer ---------- */
.site-footer{
  background: #254a3f;
  color: rgba(255,255,255,0.75);
  padding-block: clamp(2.6rem, 5vw, 3.6rem) 1.6rem;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: var(--gap);
  padding-bottom: 2.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-grid h5{
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.footer-brand p{ margin-top: 0.9rem; max-width: 34ch; font-size: 0.92rem; color: rgba(255,255,255,0.65); }
.footer-grid ul li + li{ margin-top: 0.6rem; }
.footer-grid a{ font-size: 0.92rem; }
.footer-grid a:hover{ color: var(--accent); }
.footer-bottom{
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  padding-top: 1.4rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ---------- toast (form feedback) ---------- */
.toast{
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--accent);
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  box-shadow: var(--shadow);
  transform: translateY(120%);
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
  z-index: 200;
  max-width: 320px;
}
.toast.show{ transform: translateY(0); opacity: 1; }

/* ---------- reveal-on-scroll ---------- */
[data-reveal]{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].is-visible{ opacity: 1; transform: translateY(0); }

/* ---------- data table (quality / varieties) ---------- */
.table-scroll{
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.data-table{
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 0.94rem;
}
.data-table caption{ caption-side: top; text-align: left; padding: 1rem 1.2rem 0; }
.data-table thead th{
  text-align: left;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper-2);
  padding: 0.9rem 1.1rem;
  border-bottom: 2px solid var(--accent-d);
  white-space: nowrap;
}
.data-table tbody td{
  padding: 0.95rem 1.1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  color: var(--text-soft);
}
.data-table tbody tr:last-child td{ border-bottom: none; }
.data-table tbody tr:nth-child(even){ background: rgba(31,92,148,0.06); }
.data-table td.variety{
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--ink);
  font-size: 1rem;
  white-space: nowrap;
}
.data-table td.variety a{
  color: inherit;
  border-bottom: 1px solid var(--accent);
  transition: color .16s ease;
}
.data-table td.variety a:hover{ color: var(--accent-d); }
.data-table td.no{
  font-family: var(--f-mono);
  color: var(--accent-d);
  font-size: 0.78rem;
}
.data-table .pass{
  color: var(--olive);
  font-weight: 600;
}

/* ---------- certification badges ---------- */
.cert-row{
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2rem;
}
.cert-badge{
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--f-mono);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--accent-d);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
}
.cert-badge .dot{
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-d);
  flex-shrink: 0;
}

/* ---------- plain info card (no thumb) ---------- */
.info-card-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--gap);
}
.info-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  border-top: 3px solid var(--accent-d);
}
.info-card .no{
  font-family: var(--f-mono);
  font-size: 0.75rem;
  color: var(--accent-d);
}
.info-card h4{ font-size: 1.05rem; margin-top: 0.6rem; }
.info-card p{ margin-top: 0.6rem; color: var(--text-soft); font-size: 0.93rem; }

/* ---------- product range cards (feed lines, honey grades, etc.) ---------- */
.product-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--gap);
}
.product-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem;
  position: relative;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  scroll-margin-top: 6.5rem;
}
.product-card .cap{
  align-self: flex-start;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-d);
  background: rgba(31,92,148,0.12);
  border: 1px solid rgba(196,138,34,0.35);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
}
.product-card h4{ font-size: 1.15rem; }
.product-card p{ color: var(--text-soft); font-size: 0.93rem; flex-grow: 1; }
.product-card .stats{
  display: flex;
  gap: 1.2rem;
  padding-top: 0.9rem;
  border-top: 1px dashed var(--line);
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--text-soft);
}
.product-card .stats b{ display: block; color: var(--ink); font-size: 0.98rem; font-family: var(--f-display); }

.product-card:target{
  border-color: var(--accent-d);
  box-shadow: 0 0 0 3px rgba(31,92,148,0.25), var(--shadow);
}
.feed-steps{
  display: grid;
  gap: 1.1rem;
  counter-reset: step;
  margin: 0;
  padding: 0;
  list-style: none;
}
.feed-steps li{
  list-style: none;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  align-items: start;
}
.feed-steps li::before{
  counter-increment: step;
  content: counter(step);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--accent);
  font-family: var(--f-mono);
  font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feed-steps p{ color: #ffffff; padding-top: 0.5rem; }

.dose-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--gap);
}
.dose-card{
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem;
  border-left: 3px solid var(--accent);
}
.dose-card h4{ color: var(--accent); font-size: 1.05rem; }
.dose-card ul{ margin-top: 1rem; display: flex; flex-direction: column; gap: 0.7rem; }
.dose-card li{ font-size: 0.94rem; color: rgba(255,255,255,0.82); padding-left: 1rem; position: relative; }
.dose-card li::before{ content:'\2022'; position:absolute; left:0; color: var(--accent); }
.dose-card li b{ color: var(--white); font-family: var(--f-display); font-size: 1.02rem; display: block; }

/* ---------- floating actions (whatsapp + back-to-top) ---------- */
.float-actions{
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  z-index: 210;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: flex-end;
}
.float-btn{
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}
.float-btn:hover{ transform: translateY(-3px); box-shadow: var(--shadow-btn); }
.float-btn:active{ transform: translateY(-1px); }
.float-btn svg{ width: 24px; height: 24px; }
.whatsapp-btn{ background: #25D366; color: #fff; border-color: #1ebe57; }
.top-btn{
  background: var(--ink);
  color: var(--accent);
  border-color: var(--accent);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
}
.top-btn.show{ opacity: 1; visibility: visible; transform: translateY(0); }

@media (max-width: 560px){
  .cert-row{ gap: 0.6rem; }
  .float-actions{ right: 1rem; bottom: 1rem; }
  .float-btn{ width: 46px; height: 46px; }
}

@media (max-width: 900px){
  .main-nav{ display: none; }
  .nav-toggle{ display: inline-flex; }
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-panel{ order: -1; }
  .manifest-strip{ grid-template-columns: repeat(2, 1fr); }
  .split{ grid-template-columns: 1fr; }
  .mv-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .manifest-row{ grid-template-columns: 70px 1fr; grid-template-areas: "no thumb" "title title" "desc desc" "go go"; row-gap: 0.6rem; }
  .manifest-row .no{ grid-area: no; }
  .manifest-row .thumb{ grid-area: thumb; }
  .manifest-row h3{ grid-area: title; }
  .manifest-row p{ grid-area: desc; }
  .manifest-row .go{ grid-area: go; }
  .gallery-strip{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .manifest-strip{ grid-template-columns: 1fr 1fr; }
  .gallery-strip{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .hero-photos{ grid-template-columns: 1fr 1fr; }
}

/* mobile nav panel */
.mobile-nav{
  display: none;
  position: fixed; inset: 0;
  background: #254a3f;
  z-index: 150;
  padding: 1.5rem;
  overflow-y: auto;
}
.mobile-nav.open{ display: block; }
.mobile-nav .close-btn{
  background: none; border: 1px solid rgba(255,255,255,0.3);
  color: var(--white); width: 40px; height: 40px; border-radius: var(--radius-btn);
  float: right; cursor: pointer;
  transition: background .16s ease, border-color .16s ease;
}
.mobile-nav .close-btn:hover{ background: rgba(255,255,255,0.1); border-color: var(--white); }
.mobile-nav ul{ margin-top: 4rem; display: flex; flex-direction: column; gap: 1.6rem; }
.mobile-nav a{ font-family: var(--f-display); font-size: 1.6rem; color: var(--white); }
.mobile-nav .sub{ margin-top: 1rem; padding-left: 1rem; display: flex; flex-direction: column; gap: 1rem; }
.mobile-nav .sub a{ font-family: var(--f-body); font-size: 1rem; color: rgba(255,255,255,0.7); }

.mobile-nav .sub-group{ display: flex; flex-direction: column; }
.sub-row{ display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; }
.sub-row > a{ flex: 1; }
.sub-toggle{
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-btn);
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.85);
  flex-shrink: 0;
  transition: background .16s ease, border-color .16s ease;
}
.sub-toggle:hover{ background: rgba(255,255,255,0.1); border-color: var(--white); }
.sub-toggle .chev{
  width: 16px; height: 16px;
  transition: transform .18s ease;
}
.sub-toggle[aria-expanded="true"] .chev{ transform: rotate(90deg); }
/* ---------- mobile product submenus ---------- */

.mobile-nav .sub-flyout {
  display: block;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-nav .sub-flyout.open {
  max-height: 600px;
}

.mobile-nav .sub-flyout ul {
  margin: 0;
  padding: 0.7rem 0 0.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  list-style: none;
}

.mobile-nav .sub-flyout li {
  margin: 0;
  padding: 0;
}

.mobile-nav .sub-flyout a {
  display: block;
  font-family: var(--f-body);
  font-size: 0.92rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.62);
  white-space: normal;
}
@media (max-width: 767px) {
  .manifest-row {
    display: grid !important;
    grid-template-columns: 35px 120px 1fr !important;
    gap: 12px !important;
    align-items: start !important;
  }

  .manifest-row .no {
    width: auto !important;
  }

  .manifest-row .thumb {
    width: 120px !important;
  }

  .manifest-row .thumb img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .manifest-row > div:not(.thumb) {
    width: auto !important;
    min-width: 0 !important;
  }

  .manifest-row h3 {
    white-space: normal !important;
    word-break: normal !important;
  }

  .manifest-row p {
    width: 100% !important;
    margin: 8px 0 !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    line-height: 1.5 !important;
  }

  .manifest-row .go {
    grid-column: 2 / 4;
  }
}
@media (max-width: 900px) {
  .header-cta {
    white-space: nowrap !important;
    width: auto !important;
    min-width: 110px !important;
    flex-shrink: 0 !important;
    padding: 0.65rem 0.9rem !important;
    font-size: 0.68rem !important;
    text-align: center;
  }
}
p {
    text-align: justify;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.feature-card {
    grid-column: span 2;
}

/* 4th and 5th box - bottom row */
.feature-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.feature-card:nth-child(5) {
    grid-column: 4 / span 2;
}
@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .feature-card:nth-child(4),
    .feature-card:nth-child(5) {
        grid-column: auto;
    }
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    width: 100%;
}
@media (max-width: 991px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}
.info-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 991px) {
    .info-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .info-card-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   WHY CHOOSE US — VIDEO STYLE HORIZONTAL CARD SLIDER
   ========================================================= */

.why-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding-top: clamp(4rem, 7vw, 6.5rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}


/* Heading */

.why-heading {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.why-heading .eyebrow {
  justify-content: center;
}

.why-heading h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
}

.why-heading p {
  max-width: 620px;
  margin: 1rem auto 0;
}


/* Slider viewport */

.why-slider-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: clamp(2rem, 4vw, 3rem);
}


/* Soft fade on both sides */

.why-slider-wrap::before,
.why-slider-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 12%;
  z-index: 5;
  pointer-events: none;
}

.why-slider-wrap::before {
  left: 0;
  background: linear-gradient(
    to right,
    #ffffff 0%,
    rgba(255,255,255,0) 100%
  );
}

.why-slider-wrap::after {
  right: 0;
  background: linear-gradient(
    to left,
    #ffffff 0%,
    rgba(255,255,255,0) 100%
  );
}


/* Track */

.why-slider {
  width: 100%;
  overflow: hidden;
}

.why-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: whyInfiniteSlider 32s linear infinite;
  will-change: transform;
}


/* Pause on desktop hover */

.why-slider:hover .why-track {
  animation-play-state: paused;
}


/* Individual card */

.why-card {
  width: 310px;
  min-width: 310px;
  min-height: 390px;

  background: #ffffff;

  border: 1px solid #edf0ec;
  border-radius: 8px;

  padding: 2rem 1.7rem;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  box-shadow:
    0 12px 40px rgba(37, 74, 63, 0.08);

  position: relative;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}


/* Card hover */

.why-card:hover {
  transform: translateY(-8px);

  border-color: rgba(37, 74, 63, 0.22);

  box-shadow:
    0 20px 50px rgba(37, 74, 63, 0.14);
}


/* Circular icon */

.why-icon {
  width: 155px;
  height: 155px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 1.5rem;

  position: relative;
}


/* Outer rotating ring */

.why-icon::before {
  content: "";

  position: absolute;
  inset: 0;

  border-radius: 50%;

  border: 11px solid rgba(37, 74, 63, 0.10);

  border-top-color: #254a3f;
  border-right-color: #254a3f;

  transform: rotate(-25deg);

  transition: transform 0.4s ease;
}


/* Small arrow effect */

.why-icon::after {
  content: "›";

  position: absolute;

  right: 5px;
  top: 18px;

  width: 28px;
  height: 28px;

  border-radius: 50%;

  background: #e5e6c6;

  color: #254a3f;

  font-size: 25px;
  line-height: 25px;

  font-family: Arial, sans-serif;

  transform: rotate(-20deg);
}


/* Rotate ring on hover */

.why-card:hover .why-icon::before {
  transform: rotate(35deg);
}


/* SVG */

.why-icon svg {
  width: 72px;
  height: 72px;

  fill: none;

  stroke: #254a3f;
  stroke-width: 2.4;

  stroke-linecap: round;
  stroke-linejoin: round;

  position: relative;
  z-index: 2;
}


/* Number */

.why-number {
  font-family: var(--f-mono);

  font-size: 0.68rem;

  letter-spacing: 0.14em;

  color: var(--accent-d);

  margin-bottom: 0.55rem;
}


/* Heading */

.why-card h3 {
  font-size: 1.35rem;

  line-height: 1.25;

  color: #254a3f;

  max-width: 260px;
}


/* Description */

.why-card p {
  margin-top: 0.75rem;

  color: #5c6675;

  font-size: 0.92rem;

  line-height: 1.6;

  max-width: 260px;
}


/* Infinite animation */

@keyframes whyInfiniteSlider {

  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(
      calc(-50% - 9px)
    );
  }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .why-card {
    width: 285px;
    min-width: 285px;
    min-height: 370px;

    padding: 1.7rem 1.4rem;
  }

  .why-icon {
    width: 140px;
    height: 140px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .why-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }


  .why-heading {
    padding-inline: 0.4rem;
  }


  .why-heading h2 {
    font-size: 2rem;
    line-height: 1.12;
  }


  .why-heading p {
    font-size: 0.9rem;
    line-height: 1.55;
  }


  .why-slider-wrap {
    margin-top: 2rem;
  }


  .why-slider-wrap::before,
  .why-slider-wrap::after {
    width: 8%;
  }


  .why-track {
    gap: 12px;

    animation-duration: 27s;
  }


  .why-card {

    /* Mobile me almost full card */

    width: 78vw;
    min-width: 78vw;

    min-height: 360px;

    padding:
      1.5rem
      1.2rem
      1.7rem;

    border-radius: 8px;

  }


  .why-icon {

    width: 135px;
    height: 135px;

    margin-bottom: 1.2rem;

  }


  .why-icon::before {

    border-width: 9px;

  }


  .why-icon::after {

    width: 25px;
    height: 25px;

    font-size: 22px;
    line-height: 23px;

    top: 15px;
    right: 3px;

  }


  .why-icon svg {

    width: 62px;
    height: 62px;

  }


  .why-card h3 {

    font-size: 1.2rem;

    max-width: 90%;

  }


  .why-card p {

    font-size: 0.88rem;

    max-width: 92%;

    line-height: 1.55;

  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

  .why-card {

    width: 82vw;
    min-width: 82vw;

    min-height: 350px;

  }

  .why-icon {

    width: 125px;
    height: 125px;

  }

  .why-card h3 {

    font-size: 1.12rem;

  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .why-track {
    animation: none;
  }

  .why-card {
    transition: none;
  }

}
/* =========================================================
   GLOBAL FONT — SANS SERIF ONLY
   ========================================================= */

/* Remove Google font dependency */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --f-display: Arial, Helvetica, sans-serif;
  --f-body: Arial, Helvetica, sans-serif;
  --f-mono: Arial, Helvetica, sans-serif;
}

/* Apply Sans Serif to entire website */
html,
body,
body * {
  font-family: Arial, Helvetica, sans-serif !important;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Arial, Helvetica, sans-serif !important;
}

/* Paragraphs */
p {
  font-family: Arial, Helvetica, sans-serif !important;
}

/* Navigation */
.main-nav a,
.mobile-nav a,
.brand-word,
.header-cta {
  font-family: Arial, Helvetica, sans-serif !important;
}

/* Buttons */
.btn,
button,
input,
textarea,
select {
  font-family: Arial, Helvetica, sans-serif !important;
}

/* Labels / small text */
.eyebrow,
.tag,
.no,
.why-number,
.go,
.code,
.crumbs,
.cert-badge,
.form-note {
  font-family: Arial, Helvetica, sans-serif !important;
}

/* Footer */
.site-footer,
.site-footer * {
  font-family: Arial, Helvetica, sans-serif !important;
}
/* =========================================================
   WE GLOBALL
   HERO IMAGE SLIDER
   2 IMAGES / AUTOMATIC
   ========================================================= */


/* =========================================================
   HERO PANEL
   ========================================================= */

.hero-panel {
  position: relative;

  width: 100%;
  min-width: 0;

  border: 1px solid rgba(255, 255, 255, 0.18);

  background: rgba(255, 255, 255, 0.04);

  border-radius: 3px;

  padding: clamp(1.4rem, 2.2vw, 2rem);

  overflow: hidden;
}


/* =========================================================
   SLIDER CONTAINER
   ========================================================= */

.hero-image-slider {
  position: relative;

  width: 100%;

  height: 455px;

  overflow: hidden;

  border-radius: 2px;
}


/* =========================================================
   SLIDES
   ========================================================= */

.hero-image-slide {
  position: absolute;

  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 100%;

  opacity: 0;

  z-index: 1;

  animation-name: weGloballHeroSlider !important;
  animation-duration: 10s !important;
  animation-timing-function: ease-in-out !important;
  animation-iteration-count: infinite !important;
  animation-fill-mode: both !important;
}


/* =========================================================
   FIRST IMAGE
   ========================================================= */

.hero-slide-1 {
  animation-delay: 0s !important;
}


/* =========================================================
   SECOND IMAGE
   ========================================================= */

.hero-slide-2 {
  animation-delay: -5s !important;
}


/* =========================================================
   IMAGES
   ========================================================= */

.hero-image-slide img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  object-position: center;

  border-radius: 2px;
}


/* =========================================================
   AUTO SLIDE ANIMATION
   ========================================================= */

@keyframes weGloballHeroSlider {

  /* Start hidden */
  0% {
    opacity: 0;
  }

  /* Fade in */
  5% {
    opacity: 1;
  }

  /* Stay visible */
  45% {
    opacity: 1;
  }

  /* Fade out */
  50% {
    opacity: 0;
  }

  /* Stay hidden */
  100% {
    opacity: 0;
  }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 960px) {

  .hero-image-slider {
    height: 430px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

  .hero-panel {
    padding: 1rem;
  }

  .hero-image-slider {
    height: 360px;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

  .hero-panel {
    padding: 0.8rem;
  }

  .hero-image-slider {
    height: 300px;
  }

}
/* About Section */
.about-section {
  padding: 80px 0;
}

.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* Left Content */
.about-content {
  width: 100%;
}

.about-content p {
  margin-bottom: 22px;
  line-height: 1.8;
}

/* Right Image */
.about-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  overflow: hidden;
  border-radius: 18px;
}

.about-image img {
  width: 55%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.04);
}


/* Tablet */
@media (max-width: 991px) {

  .about-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .about-section {
    padding: 60px 0;
  }

  .about-image,
  .about-image img {
    min-height: 360px;
  }

}


/* Mobile */
@media (max-width: 767px) {

  .about-section {
    padding: 50px 0;
  }

  .about-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-content {
    order: 1;
  }

  .about-image {
    order: 2;
    min-height: 280px;
    border-radius: 14px;
  }

  .about-image img {
    min-height: 280px;
  }

  .about-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
  }

}


/* Small Mobile */
@media (max-width: 480px) {

  .about-section {
    padding: 40px 0;
  }

  .about-image,
  .about-image img {
    min-height: 240px;
  }

}
.about-section {
  padding: 80px 0;
}

.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* Left Content */
.about-content {
  width: 100%;
}

.about-content p {
  margin-bottom: 22px;
  line-height: 1.8;
}

/* Right Image */
.about-image {
  width: 100%;
  min-height: 480px;
  overflow: hidden;
  border-radius: 18px;
}

.about-image img {
  width: 100%;
  height: 480px;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.04);
}


/* Tablet */
@media (max-width: 991px) {
  .about-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .about-section {
    padding: 60px 0;
  }

  .about-image {
    min-height: 400px;
  }

  .about-image img {
    height: 400px;
  }
}


/* Mobile */
@media (max-width: 767px) {
  .about-section {
    padding: 50px 0;
  }

  .about-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-content {
    order: 1;
  }

  .about-image {
    order: 2;
    min-height: 280px;
    border-radius: 14px;
  }

  .about-image img {
    height: 280px;
  }

  .about-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
  }
}


/* Small Mobile */
@media (max-width: 480px) {
  .about-image {
    min-height: 240px;
  }

  .about-image img {
    height: 240px;
  }
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  width: 100%;
}

/* All cards */
.feature-card {
  background: #fff;
  border: 1px solid #dfe5e3;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* First 3 cards */
.feature-card:nth-child(1),
.feature-card:nth-child(2),
.feature-card:nth-child(3) {
  grid-column: span 2;
}

/* Last 2 cards - centered */
.feature-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.feature-card:nth-child(5) {
  grid-column: 4 / span 2;
}


/* Image area */
.feature-card .thumb {
  width: 100%;
  height: 280px;
  padding: 20px;
  background: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  box-sizing: border-box;
  overflow: hidden;
}

/* Keep complete image visible */
.feature-card .thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

/* Card heading */
.feature-card h4 {
  margin: 0;
  padding: 18px 28px 24px;
  font-size: 18px;
  line-height: 1.45;
  color: #123f32;
  min-height: 70px;
  box-sizing: border-box;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .feature-card:nth-child(1),
  .feature-card:nth-child(2),
  .feature-card:nth-child(3),
  .feature-card:nth-child(4),
  .feature-card:nth-child(5) {
    grid-column: auto;
  }

  .feature-card .thumb {
    height: 260px;
  }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card:nth-child(1),
  .feature-card:nth-child(2),
  .feature-card:nth-child(3),
  .feature-card:nth-child(4),
  .feature-card:nth-child(5) {
    grid-column: auto;
  }

  .feature-card .thumb {
    height: 280px;
    padding: 20px;
  }

  .feature-card h4 {
    font-size: 17px;
    padding: 16px 20px 20px;
  }
}
/* =========================
   MAIN NAV BUTTON STYLE
========================= */

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav > ul > li > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 20px;

  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 12px;

  color: #254a3f;
  text-decoration: none;

  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.2px;

  background: transparent;

  transition: all 0.3s ease;
}


/* Hover */
.main-nav > ul > li > a:hover {
  background: #ffffff;
  color: #204f43;
  border-color: #ffffff;
}


/* Active / Current Menu */
.main-nav > ul > li.active > a {
  background: #ffffff;
  color: #204f43;
  border-color: #ffffff;
}


/* =========================
   DROPDOWN
========================= */

.main-nav .dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;

  min-width: 240px;

  background: #ffffff;
  border-radius: 10px;

  padding: 8px;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);

  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);

  transition: all 0.25s ease;

  z-index: 999;
}


/* Show Dropdown */
.main-nav .has-dropdown {
  position: relative;
}

.main-nav .has-dropdown:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/* Dropdown Links */
.main-nav .dropdown > a,
.main-nav .dropdown-item > a {
  display: block;

  padding: 11px 14px;

  color: #204f43;
  background: transparent;

  text-decoration: none;

  font-size: 14px;
  border-radius: 7px;

  transition: all 0.25s ease;
}

.main-nav .dropdown > a:hover,
.main-nav .dropdown-item > a:hover {
  background: #eef5f2;
  color: #204f43;
}
.main-nav > ul > li > a {
  border: 1px solid #254a3f;
  color: #254a3f;
  background: transparent;
  transition: all 0.3s ease;
}

.main-nav > ul > li > a:hover {
  background: #254a3f;
  border-color: #e5e6c6;
  color: #ffffff;
}
.about-image {
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  border-radius: 18px;
}

.about-image img {
  width: 100%;
  height: 420px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
}
.manifest-row .go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 13px 24px;

  background: #245447;
  color: #ffffff;

  border: 1px solid #245447;
  border-radius: 8px;

  text-decoration: none;

  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;

  transition: all 0.3s ease;
}

.manifest-row .go:hover {
  background: transparent;
  color: #245447;
  border-color: #245447;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}


@media (max-width: 991px) {
  .product-card:last-child {
    grid-column: auto;
  }
}

@media (max-width: 767px) {
  .product-card:last-child {
    grid-column: auto;
  }
}
@media (max-width: 767px) {
  .product-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .product-card {
    grid-column: auto !important;
    width: 100%;
  }
}
/* ---------- Other Honey Varieties - 3 Cards in One Row ---------- */

.product-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px;
    width: 100%;
}

.product-grid .product-card {
    width: 100% !important;
    grid-column: auto !important;
}

/* Mobile */
@media (max-width: 767px) {
    .product-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .product-grid .product-card {
        grid-column: auto !important;
    }
}