/* ============================================================
   EASTERN FEEDS — Main Stylesheet
   Mobile-first, CSS variables, modern layout
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  /* Emerald green — brand primary */
  --green-dark:   #1b4d1b;
  --green-mid:    #2e7d32;
  --green-light:  #43a047;
  --green-pale:   #f0fdf4;
  /* Harvest gold — vibrant accent */
  --gold-dark:    #b45309;
  --gold-mid:     #f59e0b;
  --gold-light:   #fbbf24;
  --gold-pale:    #fffbeb;
  --brown-dark:   #5c3d1e;
  --brown-mid:    #8b5e3c;
  --brown-light:  #c49a6c;
  --beige:        #fdf8f0;
  --beige-dark:   #f0e8d8;
  --white:        #ffffff;
  --gray-light:   #f4f4f4;
  --gray-mid:     #9e9e9e;
  --gray-dark:    #4a4a4a;
  --text-dark:    #1e1e1e;
  --text-body:    #3d3d3d;

  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body:    'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;

  --shadow-sm:    0 2px 8px rgba(0,0,0,.08);
  --shadow-md:    0 6px 20px rgba(0,0,0,.12);
  --shadow-lg:    0 12px 40px rgba(0,0,0,.16);

  --transition:   .3s ease;
  --max-width:    1200px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Utility ---------- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.section    { padding: 80px 0; }
.section-alt { background: var(--beige); }
.section-dark { background: var(--green-dark); color: var(--white); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header .label {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold-dark);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--green-dark);
  line-height: 1.25;
  margin-bottom: 14px;
}
.section-dark .section-header h2 { color: var(--white); }
.section-dark .section-header .label { background: rgba(255,255,255,.15); color: var(--white); }
.section-header p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--gray-dark);
  font-size: 1.05rem;
}
.section-dark .section-header p { color: rgba(255,255,255,.8); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold-mid);
  color: #1a1a1a;
  box-shadow: 0 4px 14px rgba(245,158,11,.35);
}
.btn-primary:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,158,11,.4); }
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--green-mid); transform: translateY(-2px); }
.btn-brown {
  background: var(--gold-mid);
  color: #1a1a1a;
  box-shadow: 0 4px 14px rgba(245,158,11,.3);
}
.btn-brown:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-2px); }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,.08);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo .logo-icon {
  width: 46px; height: 46px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.nav-logo .logo-icon img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.nav-logo .logo-text { line-height: 1.1; }
.nav-logo .logo-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-dark);
}
.nav-logo .logo-tagline {
  font-size: .65rem;
  color: var(--gray-mid);
  letter-spacing: .05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-dark);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--green-pale);
  color: var(--green-dark);
}
.nav-links .nav-cta {
  background: var(--gold-mid);
  color: #1a1a1a;
  padding: 8px 18px;
}
.nav-links .nav-cta:hover { background: var(--gold-dark); color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .hamburger { display: flex; z-index: 1001; position: relative; }
  .nav-links {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    border-bottom: 1px solid var(--beige-dark);
    box-shadow: var(--shadow-md);
    /* shift up by full element height PLUS the 68px top offset so bottom edge
       clears y=0 and nothing bleeds into the navbar */
    transform: translateY(calc(-100% - 68px));
    visibility: hidden;
    pointer-events: none;
    transition: transform var(--transition), visibility var(--transition);
    z-index: 999;
  }
  .nav-links.open {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }
  .nav-links a { width: 100%; text-align: center; padding: 12px; border-radius: var(--radius-sm); }
  .nav-links .nav-cta { margin-top: 8px; }
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  padding: 130px 0 70px;
  background: linear-gradient(135deg, #0f2d0f 0%, #1b4d1b 50%, #2e7d32 100%);
  color: var(--white);
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 1.1rem;
  opacity: .85;
  max-width: 560px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  font-size: .85rem;
  opacity: .75;
}
.breadcrumb a:hover { opacity: 1; text-decoration: underline; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,.8);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}
.footer-brand .footer-logo-img {
  width: 48px; height: 48px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  flex-shrink: 0;
}
.footer-brand .footer-logo-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.footer-brand .footer-logo-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
}
.footer-brand .footer-logo-tag {
  font-size: .78rem;
  color: var(--green-light);
  margin-bottom: 16px;
}
.footer-brand p { font-size: .9rem; line-height: 1.7; }

.footer h4 {
  color: var(--white);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green-mid);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--green-light); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: .9rem;
}
.footer-contact-item .icon {
  width: 32px; height: 32px;
  background: var(--green-dark);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   HOME PAGE STYLES
   ============================================================ */

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #071a07 0%, #0f2d10 30%, #1a4d1c 60%, #255c28 85%, #2e7d32 100%);
  color: var(--white);
  padding-bottom: 72px; /* room for the wave */
}

/* Subtle dot-grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 75% 45%, rgba(251,191,36,.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 5%  80%, rgba(46,125,50,.25)  0%, transparent 55%),
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Ambient light orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
}
.hero-orb-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(251,191,36,.10) 0%, transparent 70%);
  top: -120px; right: 15%;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(67,160,71,.20) 0%, transparent 70%);
  bottom: 60px; left: -80px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(251,191,36,.08) 0%, transparent 70%);
  top: 55%; right: 5%;
  animation: orbFloat 6s ease-in-out infinite;
}
@keyframes orbFloat {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-20px); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 110px 20px 60px;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 26px;
  backdrop-filter: blur(6px);
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: #fbbf24;
  border-radius: 50%;
  box-shadow: 0 0 6px #fbbf24;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; box-shadow: 0 0 6px #fbbf24; }
  50%      { opacity: .5; box-shadow: 0 0 2px #fbbf24; }
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.12;
  margin-bottom: 22px;
  letter-spacing: -.01em;
}
.hero h1 span {
  color: #fbbf24;
  text-shadow: 0 2px 20px rgba(251,191,36,.3);
}

.hero > .hero-inner > .hero-content > p {
  font-size: 1.08rem;
  opacity: .85;
  margin-bottom: 36px;
  max-width: 470px;
  line-height: 1.8;
}
.hero p {
  font-size: 1.08rem;
  opacity: .85;
  margin-bottom: 36px;
  max-width: 470px;
  line-height: 1.8;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat {
  flex: 1;
  padding-right: 24px;
  position: relative;
}
.hero-stat + .hero-stat {
  padding-left: 24px;
  padding-right: 24px;
  border-left: 1px solid rgba(255,255,255,.15);
}
.hero-stat:last-child { padding-right: 0; }
.hero-stat .num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: #fbbf24;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(251,191,36,.25);
}
.hero-stat .lbl {
  font-size: .75rem;
  opacity: .65;
  margin-top: 5px;
  letter-spacing: .02em;
}

/* Right column — hero image + features strip */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: slideIn .7s .15s ease forwards;
  opacity: 0;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.1);
  background: rgba(0,0,0,.2);
}

.hero-img-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-features {
  display: flex;
  gap: 8px;
}

.hero-feat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 10px 6px;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: var(--transition);
}

.hero-feat:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(251,191,36,.45);
}

.hf-icon {
  font-size: 1.3rem;
  line-height: 1;
}

.hf-label {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: .8;
  line-height: 1.4;
}

/* Wave divider at hero bottom */
.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
  z-index: 2;
}
.hero-wave svg {
  width: 100%;
  height: 72px;
  display: block;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
    padding-bottom: 40px;
  }
  .hero h1, .hero p { margin-left: auto; margin-right: auto; }
  .hero-btns  { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { opacity: 1; animation: none; }
  .hero-features { flex-wrap: wrap; justify-content: center; }
  .hero-feat { flex: 0 0 calc(33.33% - 6px); }
}

@media (max-width: 540px) {
  .hero-feat { flex: 0 0 calc(50% - 4px); }
}

@media (max-width: 380px) {
  .hero-features { display: none; }
}

/* ── Products Showcase section ─────────────────────────── */
.showcase-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--green-pale) 45%, var(--green-pale) 65%, var(--white) 100%);
  position: relative;
}

/* ── Carousel wrapper ───────────────────────────────────── */
.showcase-carousel {
  position: relative;
  padding: 0 68px;
  user-select: none;
}

/* Overflow + edge fades */
.car-outer {
  overflow: hidden;
  position: relative;
}
.car-outer::before,
.car-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 48px;
  z-index: 2;
  pointer-events: none;
}
.car-outer::before {
  left: 0;
  background: linear-gradient(to right, #f0fdf4, transparent);
}
.car-outer::after {
  right: 0;
  background: linear-gradient(to left, #f0fdf4, transparent);
}

/* Track */
.car-track {
  display: flex;
  gap: 20px;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

/* Cards */
.car-track .product-card {
  flex: 0 0 calc((100% - 60px) / 4);
  min-width: 0;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(27,77,27,.1);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
  position: relative;
}

/* Category top accent bar */
.car-track .product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(to right, var(--green-mid), var(--green-dark));
  z-index: 4;
}
.car-track .product-card[data-cat="pig"]::before     { background: linear-gradient(to right, #ce93d8, #8e24aa); }
.car-track .product-card[data-cat="fish"]::before    { background: linear-gradient(to right, #4fc3f7, #0277bd); }
.car-track .product-card[data-cat="cattle"]::before  { background: linear-gradient(to right, #bcaaa4, #5d4037); }
.car-track .product-card[data-cat="desi"]::before    { background: linear-gradient(to right, var(--gold-light), var(--gold-dark)); }
.car-track .product-card[data-cat="counter"]::before { background: linear-gradient(to right, var(--gold-mid), var(--brown-dark)); }

.car-track .product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(27,77,27,.18);
}

/* Image area */
.car-track .product-img {
  height: 240px;
  background: #ffffff;
  position: relative;
}

.car-track .product-img img {
  background: transparent;
}

/* Category badge */
.car-track .product-img .pc-label {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--green-dark);
  color: var(--white);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  z-index: 3;
  line-height: 1;
}

/* Bottom label */
.car-track .product-body {
  padding: 14px 18px 18px;
  border-top: 3px solid var(--gold-mid);
  background: var(--white);
  text-align: center;
}

.car-track .product-body h3 {
  font-size: .95rem;
  color: var(--green-dark);
  font-weight: 700;
  margin: 0;
}


/* ── Prev / Next buttons ────────────────────────────────── */
.car-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green-dark);
  border: 2px solid var(--green-dark);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(27,77,27,.35);
}
.car-btn:hover:not(:disabled) {
  background: var(--gold-mid);
  border-color: var(--gold-mid);
  color: #1a1a1a;
  box-shadow: 0 6px 20px rgba(245,158,11,.4);
  transform: translateY(-50%) scale(1.08);
}
.car-btn:disabled {
  opacity: .25;
  cursor: default;
  background: var(--gray-mid);
  border-color: var(--gray-mid);
  box-shadow: none;
}
.car-prev { left: 0; }
.car-next { right: 0; }

/* ── Dots ───────────────────────────────────────────────── */
.car-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-top: 32px;
}
.car-dot {
  height: 7px;
  width: 7px;
  border-radius: 4px;
  background: var(--beige-dark);
  border: none;
  cursor: pointer;
  transition: all .35s ease;
  padding: 0;
}
.car-dot.active {
  width: 28px;
  background: linear-gradient(to right, var(--gold-mid), var(--green-mid));
}
.car-dot:hover:not(.active) { background: var(--gray-mid); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .car-track .product-card { flex: 0 0 calc((100% - 40px) / 3); }
}
@media (max-width: 760px) {
  .showcase-carousel { padding: 0 52px; }
  .car-track .product-card { flex: 0 0 calc((100% - 20px) / 2); }
  .car-btn { width: 44px; height: 44px; font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .showcase-carousel { padding: 0 36px; }
  .car-btn { width: 36px; height: 36px; font-size: 1.3rem; }
  .car-track { gap: 12px; }
  .car-track .product-card { flex: 0 0 calc((100% - 12px) / 2); }
  .car-track .product-img { height: 160px; }
}

/* Products Showcase — static grid (products page) */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--beige-dark);
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.product-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  font-size: 3rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
/* real product image — show the whole bag */
.product-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  z-index: 0;
  background: #fff;
}
.product-img::after {
  content: '';
  position: absolute;
  inset: 0;
  /* only show the overlay when there is no real image (emoji placeholder cards) */
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,.35));
  z-index: 1;
  pointer-events: none;
}
/* suppress overlay on cards that have a real image */
.product-img:has(img)::after { background: none; }
.product-img span   { position: relative; z-index: 2; }
.product-img .prod-label {
  position: relative;
  z-index: 2;
}
.product-img.chicken { background: linear-gradient(135deg, #f9a825, #fb8c00); }
.product-img.pig     { background: linear-gradient(135deg, #e91e8c, #c2185b); }
.product-img.desi    { background: linear-gradient(135deg, #795548, #5d4037); }
.product-img.fish    { background: linear-gradient(135deg, #0288d1, #0277bd); }
.product-img.cattle  { background: linear-gradient(135deg, #558b2f, #33691e); }

.product-img span   { position: relative; z-index: 1; }
.product-img .prod-label {
  position: relative;
  z-index: 1;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .9;
}

.product-body { padding: 14px 18px 16px; text-align: center; }
.product-body h3 { font-size: .95rem; color: var(--text-dark); font-weight: 700; margin-bottom: 0; }
.product-body p  { font-size: .82rem; color: var(--gray-mid); line-height: 1.55; }

/* Sustainability */
.sustain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}
.sustain-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--green-mid);
  transition: var(--transition);
}
.sustain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.sustain-card .s-icon {
  font-size: 3rem;
  margin-bottom: 14px;
  display: block;
}
.sustain-card h3 { font-size: 1.05rem; color: var(--green-dark); margin-bottom: 8px; }
.sustain-card p  { font-size: .85rem; color: var(--gray-dark); line-height: 1.5; }

/* Quality Assurance */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.quality-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.quality-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); background: var(--green-dark); color: var(--white); }
.quality-card:hover .q-icon { background: rgba(255,255,255,.2); }
.quality-card:hover h3 { color: var(--white); }
.quality-card:hover p  { color: rgba(255,255,255,.8); }
.q-icon {
  width: 64px; height: 64px;
  background: var(--green-pale);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 18px;
  transition: var(--transition);
}
.quality-card h3 { font-size: 1rem; color: var(--text-dark); margin-bottom: 8px; transition: var(--transition); }
.quality-card p  { font-size: .83rem; color: var(--gray-mid); transition: var(--transition); }

/* Trust Strip */
.trust-strip {
  background: linear-gradient(135deg, #0a1f0a 0%, #1b4d1b 50%, #2a6e2a 100%);
  color: var(--white);
  padding: 64px 0;
}
.trust-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: center;
}
.trust-item .t-icon { font-size: 2.5rem; margin-bottom: 12px; }
.trust-item h3 { font-size: 1rem; margin-bottom: 6px; }
.trust-item p  { font-size: .83rem; opacity: .8; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-intro-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-dark), var(--green-light));
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--white);
  font-size: 4rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-intro-img p { font-size: .85rem; opacity: .75; }
.about-intro-text .label {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.about-intro-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--green-dark);
  margin-bottom: 18px;
  line-height: 1.3;
}
.about-intro-text p {
  margin-bottom: 14px;
  font-size: .95rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--beige-dark);
  display: flex;
  gap: 18px;
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-light); }
.why-card .w-icon {
  font-size: 1.8rem;
  width: 52px; height: 52px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-card h3 { font-size: 1rem; color: var(--green-dark); margin-bottom: 6px; }
.why-card p  { font-size: .85rem; color: var(--gray-dark); }

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.mv-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--green-mid);
}
.mv-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--green-dark);
  margin-bottom: 16px;
}
.mv-card p { font-size: .95rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.value-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.value-card:hover { background: var(--green-dark); color: var(--white); transform: translateY(-4px); }
.value-card:hover h3 { color: var(--white); }
.value-card:hover p  { color: rgba(255,255,255,.8); }
.value-card .v-icon { font-size: 2.4rem; margin-bottom: 14px; }
.value-card h3 { font-size: 1rem; color: var(--text-dark); margin-bottom: 8px; transition: var(--transition); }
.value-card p  { font-size: .82rem; color: var(--gray-mid); transition: var(--transition); }

@media (max-width: 768px) {
  .about-intro { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.products-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 2px solid var(--beige-dark);
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-dark);
  background: var(--white);
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}

.prod-catalog {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.prod-item {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--beige-dark);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.prod-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.prod-thumb {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
/* real product image — show the whole bag */
.prod-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  z-index: 0;
  background: #fff;
}
.prod-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,.2));
  z-index: 1;
  pointer-events: none;
}
.prod-thumb:has(img)::after { background: none; }
.prod-thumb .prod-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255,255,255,.9);
  border-radius: 50px;
  padding: 3px 10px;
  font-size: .7rem;
  font-weight: 700;
  z-index: 2;
  color: var(--green-dark);
}
.prod-info { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.prod-info h3 { font-size: 1.05rem; color: var(--text-dark); margin-bottom: 6px; }
.prod-info .prod-desc {
  font-size: .85rem;
  color: var(--gray-dark);
  margin-bottom: 12px;
  flex: 1;
}
.benefit-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.benefit-tag {
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid rgba(46,125,50,.2);
  white-space: nowrap;
}
.prod-info .btn { align-self: flex-start; padding: 9px 20px; font-size: .85rem; }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--beige-dark);
  cursor: pointer;
  position: relative;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gray-mid);
  font-size: 2.5rem;
  width: 100%;
  height: 100%;
}
.gallery-placeholder p { font-size: .82rem; text-align: center; padding: 0 12px; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45,90,39,.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--white);
  font-size: 1.8rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.9);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--text-dark);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  color: var(--white);
  text-align: center;
  min-width: 320px;
}
.lightbox-close {
  position: absolute;
  top: 14px; right: 16px;
  font-size: 1.6rem;
  color: var(--white);
  cursor: pointer;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--green-dark);
  margin-bottom: 24px;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-item .ci-icon {
  width: 46px; height: 46px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--green-dark);
}
.contact-item h4 { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-mid); margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: .92rem; color: var(--text-body); }
.contact-item a:hover { color: var(--green-dark); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--green-dark);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label {
  display: block;
  font-size: .83rem;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--beige-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--beige);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(74,124,63,.15);
}
.form-group input.error,
.form-group textarea.error { border-color: #e53935; }
.form-group .err-msg {
  font-size: .78rem;
  color: #e53935;
  margin-top: 5px;
  display: none;
}
.form-group .err-msg.show { display: block; }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: none;
  background: var(--green-pale);
  border: 1px solid var(--green-light);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-top: 20px;
  text-align: center;
  color: var(--green-dark);
  font-weight: 600;
}
.form-success.show { display: block; }
.form-success .s-icon { font-size: 2rem; margin-bottom: 8px; }

.map-placeholder {
  margin-top: 60px;
  background: var(--beige-dark);
  border-radius: var(--radius-lg);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--gray-mid);
  font-size: 3rem;
  border: 2px dashed var(--gray-mid);
}
.map-placeholder p { font-size: .9rem; text-align: center; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: .1s; }
.fade-up-delay-2 { transition-delay: .2s; }
.fade-up-delay-3 { transition-delay: .3s; }


/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 88px; /* above the 72px wave */
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 3;
  animation: bobble 2s ease infinite;
}
@keyframes bobble {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* Responsive utility */
@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 36px; }
}

/* ============================================================
   FAQ ACCORDION (index.html)
   ============================================================ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  border: 1px solid var(--beige-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--transition);
}
.faq-item[open] { box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.faq-item[open] .faq-q { color: var(--green-dark); }

.faq-q {
  list-style: none;
  cursor: pointer;
  padding: 18px 24px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color var(--transition), background var(--transition);
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold-mid);
  flex-shrink: 0;
  transition: transform .25s ease;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-q:hover { background: var(--green-pale); }

.faq-a {
  padding: 0 24px 20px;
  color: var(--text-body);
  font-size: .95rem;
  line-height: 1.7;
  border-top: 1px solid var(--beige-dark);
}
.faq-a p { margin: 12px 0 0; }
.faq-a ul { margin: 8px 0 0 20px; }
.faq-a li { margin-bottom: 4px; }
.faq-a a { color: var(--green-mid); }

/* ============================================================
   MOBILE BOTTOM NAVIGATION
   ============================================================ */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1.5px solid var(--beige-dark);
  box-shadow: 0 -4px 24px rgba(0,0,0,.12);
  z-index: 1001;
  /* iPhone safe-area (home indicator) support */
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.mbn-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 10px 2px;
  color: var(--gray-mid);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}

.mbn-item:hover { color: var(--green-dark); }

.mbn-item.active {
  color: var(--green-dark);
}

/* Gold indicator bar at the top of the active item */
.mbn-item.active::before {
  content: '';
  position: absolute;
  top: 0; left: 18%; right: 18%;
  height: 3px;
  background: var(--gold-mid);
  border-radius: 0 0 4px 4px;
}

/* Contact stands out */
.mbn-item.mbn-contact { color: var(--green-mid); }
.mbn-item.mbn-contact.active { color: var(--green-dark); }

.mbn-icon {
  font-size: 1.3rem;
  line-height: 1;
  display: block;
}

.mbn-label {
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: block;
}

@media (max-width: 768px) {
  .mobile-bottom-nav { display: flex; }

  /* Bottom nav replaces the hamburger on phones */
  .hamburger { display: none; }

  /* Add space so page content isn't hidden behind the bottom nav */
  body { padding-bottom: calc(60px + env(safe-area-inset-bottom, 0)); }
}

/* ── Directors Section ───────────────────────────────────── */
.directors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 760px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .directors-grid { grid-template-columns: 1fr; max-width: 400px; }
}

.director-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(27,77,27,.11);
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.director-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(27,77,27,.18);
}

/* Full-width banner area replaces the small circle */
.director-banner {
  height: 340px;
  background: linear-gradient(150deg, #1b4d1b 0%, #2e7d32 55%, #4caf50 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.director-banner::before {
  content: '';
  position: absolute;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  top: -90px; right: -60px;
}
.director-banner::after {
  content: '';
  position: absolute;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  bottom: -55px; left: -30px;
}
.director-banner-initials {
  font-family: var(--font-heading);
  font-size: 5.5rem;
  font-weight: 800;
  color: rgba(255,255,255,.82);
  letter-spacing: -.02em;
  line-height: 1;
  position: relative;
  z-index: 1;
  text-shadow: 0 6px 28px rgba(0,0,0,.28);
}
/* Real photo fills banner once uploaded */
.director-banner img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  z-index: 2;
}

.director-info {
  padding: 22px 24px 26px;
  text-align: center;
}
.director-name {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  color: var(--green-dark);
  font-weight: 700;
  margin: 0 0 4px;
}
.director-title {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--green-mid);
  margin-bottom: 13px;
}
.director-bio {
  font-size: .875rem;
  color: var(--gray-dark);
  line-height: 1.65;
  margin: 0 0 18px;
}
.director-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--green-dark);
  text-decoration: none;
  border: 1.5px solid var(--green-mid);
  padding: 8px 18px;
  border-radius: 50px;
  transition: background .2s, color .2s, border-color .2s;
}
.director-wa:hover {
  background: var(--green-dark);
  color: #fff;
  border-color: var(--green-dark);
}

/* ── Certifications Section ──────────────────────────────── */
.certs-strip {
  padding: 72px 0;
  background: linear-gradient(160deg, #f0f7f0 0%, #e8f5e9 50%, #f5f9f5 100%);
  border-top: 1px solid rgba(27,77,27,.1);
  border-bottom: 1px solid rgba(27,77,27,.1);
}
.certs-heading-block { text-align: center; margin-bottom: 48px; }
.certs-heading-block .label { display: inline-block; background: rgba(46,125,50,.12); color: var(--green-dark); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; padding: 6px 16px; border-radius: 50px; margin-bottom: 14px; }
.certs-heading-block h2 { font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2rem); color: var(--green-dark); margin: 0 0 10px; }
.certs-heading-block p { color: var(--gray-dark); font-size: .95rem; max-width: 460px; margin: 0 auto; }
.certs-row { display: flex; align-items: stretch; justify-content: center; gap: 36px; flex-wrap: wrap; }
.cert-item {
  display: flex; flex-direction: column; align-items: center; gap: 0;
  background: #ffffff;
  border: 1.5px solid rgba(27,77,27,.14);
  border-radius: 20px;
  padding: 36px 44px 28px;
  box-shadow: 0 6px 32px rgba(27,77,27,.09);
  transition: transform .28s ease, box-shadow .28s ease;
  min-width: 220px;
}
.cert-item:hover { transform: translateY(-6px); box-shadow: 0 18px 52px rgba(27,77,27,.17); }
.cert-img-wrap { display: flex; align-items: center; justify-content: center; height: 130px; margin-bottom: 22px; }
.cert-img-wrap img { height: 120px; width: auto; max-width: 180px; object-fit: contain; display: block; }
.cert-name { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--green-dark); text-align: center; margin-bottom: 6px; }
.cert-sub { font-size: .78rem; color: var(--green-mid); text-align: center; font-weight: 500; letter-spacing: .04em; }
@media (max-width: 520px) {
  .cert-item { min-width: 160px; padding: 28px 28px 22px; }
  .cert-img-wrap { height: 100px; margin-bottom: 16px; }
  .cert-img-wrap img { height: 90px; }
}

/* ── Preloader ───────────────────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  animation: preloader-pulse 1.1s ease-in-out infinite;
}
@keyframes preloader-pulse {
  0%, 100% { transform: scale(1);    opacity: 1; }
  50%       { transform: scale(1.2); opacity: .85; }
}

/* ── WhatsApp Floating Button ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
@media (max-width: 768px) {
  .wa-float { bottom: 80px; }
}
.wa-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.5);
  transition: transform .2s, box-shadow .2s;
  flex-shrink: 0;
}
.wa-toggle:hover { transform: scale(1.08); box-shadow: 0 6px 22px rgba(37,211,102,.6); }
.wa-toggle svg { width: 28px; height: 28px; fill: #fff; }
.wa-numbers {
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px) scale(.97);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.wa-float.open .wa-numbers {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.wa-num {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  padding: 10px 16px;
  text-decoration: none;
  box-shadow: 0 2px 14px rgba(0,0,0,.13);
  min-width: 175px;
  border-left: 4px solid #25D366;
  transition: box-shadow .15s;
}
.wa-num:hover { box-shadow: 0 4px 18px rgba(0,0,0,.2); }
.wa-num-name {
  font-size: .88rem;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 1px;
}
.wa-num-label {
  font-size: .68rem;
  color: #25D366;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.wa-num-tel {
  font-size: .92rem;
  color: #1a1a1a;
  font-weight: 600;
  margin-top: 2px;
}
