

/* =====================================================
   1. CSS VARIABLES
   ===================================================== */
:root {
  --mm-green:        #0f2e1f;
  --mm-green-2:      #164c3d;
  --mm-green-3:      #1b6b48;
  --mm-green-light:  #238457;
  --mm-gold:         #d4af37;
  --mm-gold-soft:    rgba(212,175,55,.15);
  --mm-white:        #ffffff;
  --mm-off-white:    #faf9f6;
  --mm-ink:          #1a1c1e;
  --mm-muted:        rgba(26,28,30,.65);
  --mm-border:       rgba(26,28,30,.12);
  --mm-shadow:       0 14px 40px rgba(15,46,31,.12);
  --mm-radius:       16px;
  --mm-nav-h:        60px;
  --mm-font:         "Inter", "Poppins", Arial, sans-serif;
}

/* =====================================================
   2. BASE RESET (supplements premium.css)
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0;
  font-family: var(--mm-font);
  background: var(--mm-off-white);
  color: var(--mm-ink);
  overflow-x: hidden;
}

/* =====================================================
   3. SITE HEADER  (sticky bar that wraps the nav)
   ===================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 5000;
  width: 100%;
  padding: 10px clamp(12px, 2vw, 24px) 0;
  background: transparent;
  pointer-events: none;           /* let clicks pass through the gap */
}

/* =====================================================
   4. NAVBAR  — THE ONE TRUE LAYOUT
   ===================================================== */
.site-navbar,
nav.navbar.site-navbar {
  pointer-events: auto;           /* re-enable on the pill itself */
  width: min(1320px, 100%);
  height: var(--mm-nav-h);
  margin: 0 auto;
  padding: 0 clamp(16px, 2vw, 32px);
  box-sizing: border-box;

  /* ---- FLEXBOX: logo | links | tools — never overlaps ---- */
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: clamp(12px, 1.8vw, 32px);

  background: rgba(255,255,255,.96);
  border: 1px solid rgba(9,73,45,.14);
  border-radius: var(--mm-radius);
  box-shadow: var(--mm-shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: visible;
  transition: background .3s, box-shadow .3s;
}

/* Scrolled state (JS adds .scrolled to .site-header) */
.site-header.scrolled .site-navbar {
  background: rgba(255,255,255,.98);
  box-shadow: 0 8px 28px rgba(15,46,31,.16);
}

/* =====================================================
   4a. LOGO / BRAND NAME
   ===================================================== */
.site-navbar .logo,
.site-navbar .brand-name {
  flex: 0 0 auto;
  white-space: nowrap;
  font-family: var(--mm-font);
  font-size: clamp(.95rem, 1.1vw, 1.18rem);
  font-weight: 800;
  color: var(--mm-green) !important;
  -webkit-text-fill-color: var(--mm-green) !important;
  text-decoration: none;
  letter-spacing: -.01em;
  line-height: 1;
}

.logo-image {
  height: clamp(32px, 4.5vw, 40px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  vertical-align: middle;
  transition: transform 0.25s ease;
}

.logo:hover .logo-image,
.mobile-drawer-logo:hover .logo-image {
  transform: scale(1.03);
}

.mobile-drawer-logo .logo-image {
  height: 40px;
}

.footer-logo .logo-image {
  height: clamp(45px, 5vw, 55px);
  margin-bottom: 12px;
}

/* =====================================================
   4b. NAV LINKS CONTAINER (desktop)
   ===================================================== */
.site-navbar .nav-links {
  flex: 1 1 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: clamp(2px, .9vw, 14px);
  padding: 0 clamp(6px, 1vw, 16px);
  height: 100%;
  /* desktop: always visible, no positioning tricks */
  position: static;
  width: auto;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

/* Hide the mobile-only drawer header on desktop */
.site-navbar .mobile-drawer-header { display: none; }

/* Nav links — individual items */
.site-navbar .nav-links > a,
.site-navbar .mega-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 10px;
  white-space: nowrap;
  font-size: clamp(.78rem, .82vw, .9rem);
  font-weight: 700;
  color: var(--mm-green-2) !important;
  -webkit-text-fill-color: var(--mm-green-2) !important;
  text-decoration: none;
  border-radius: 8px;
  transition: background .2s, color .2s;
}

.site-navbar .nav-links > a:hover,
.site-navbar .mega-link:hover,
.site-navbar .mega-menu-container.active .mega-link {
  background: rgba(15,46,31,.07);
  color: var(--mm-green-3) !important;
  -webkit-text-fill-color: var(--mm-green-3) !important;
}

.site-navbar .nav-links > a.active {
  color: var(--mm-green-light) !important;
  -webkit-text-fill-color: var(--mm-green-light) !important;
  background: rgba(35,132,87,.1);
}

/* Underline accent */
.site-navbar .nav-links > a::after,
.site-navbar .mega-link::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 10px;
  right: 10px;
  height: 2px;
  border-radius: 99px;
  background: var(--mm-green-light);
  transform: scaleX(0);
  opacity: 0;
  transition: transform .2s, opacity .2s;
}

.site-navbar .nav-links > a:hover::after,
.site-navbar .mega-link:hover::after,
.site-navbar .mega-menu-container.active .mega-link::after {
  transform: scaleX(1);
  opacity: 1;
}

/* =====================================================
   4c. NAVBAR TOOLS (right side)
   ===================================================== */
.site-navbar .navbar-tools {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Brochure / CTA button */
.site-navbar .nav-brochure {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  height: 40px;
  border: 1px solid var(--mm-green-light);
  border-radius: 9px;
  background: var(--mm-green-light);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, border-color .2s;
}
.site-navbar .nav-brochure:hover {
  background: var(--mm-green-2);
  border-color: var(--mm-green-2);
}

/* Hamburger toggle — hidden on desktop */
.site-navbar .menu-toggle { display: none; }

/* =====================================================
   4d. MEGA-MENU DROPDOWN
   ===================================================== */
.site-navbar .mega-menu-container { position: relative; }

.site-navbar .mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translate(-50%, 8px);
  width: max-content;
  min-width: 280px;
  max-width: min(900px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  padding: 14px;
  background: rgba(255,255,255,.99);
  border: 1px solid rgba(9,73,45,.12);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(15,46,31,.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s, transform .18s, visibility .18s;
}

.site-navbar .mega-menu-container.active .mega-menu,
.site-navbar .mega-menu-container:hover .mega-menu,
.site-navbar .mega-menu-container:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

/* Utilities dropdown — single column */
.site-navbar .utilities-menu {
  grid-template-columns: 1fr;
  min-width: 240px;
}

.site-navbar .mega-column {
  padding: 10px;
  border: 1px solid rgba(9,73,45,.08);
  border-radius: 10px;
  background: #f7fbf8;
}

.site-navbar .mega-column h4 {
  margin: 0 0 8px;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--mm-green);
  -webkit-text-fill-color: var(--mm-green);
}

.site-navbar .mega-column a {
  display: flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 8px;
  border-radius: 7px;
  font-size: .83rem;
  font-weight: 600;
  color: var(--mm-green-2) !important;
  -webkit-text-fill-color: var(--mm-green-2) !important;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.site-navbar .mega-column a:hover {
  background: #e4f5eb;
  color: var(--mm-green-3) !important;
  -webkit-text-fill-color: var(--mm-green-3) !important;
}

/* =====================================================
   4e. MOBILE BACKDROP
   ===================================================== */
.mobile-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 4990;
  background: rgba(8,28,19,.4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s, visibility .2s;
  border: 0;
}
.mobile-nav-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* =====================================================
   5. MOBILE NAVBAR  (≤ 1040px)
   ===================================================== */
@media (max-width: 1040px) {

  .site-header { padding: 8px 10px 0; }

  .site-navbar,
  nav.navbar.site-navbar {
    height: 62px;
    min-height: 62px;
    max-height: 62px;
    padding: 0 12px;
    border-radius: 12px;
    /* flex stays: logo left | hamburger right */
    justify-content: space-between;
    gap: 10px;
  }

  /* Hide desktop-only elements */
  /* Enable language translator on mobile header bar */
  .site-navbar .language-translator {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    min-height: 38px !important;
    height: 38px !important;
    padding: 0 10px !important;
    margin-right: 6px !important;
    border-radius: 999px !important;
    background: rgba(15, 46, 31, 0.06) !important;
    border: 1px solid rgba(15, 46, 31, 0.18) !important;
    color: #0f2e1f !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Show hamburger */
  .site-navbar .menu-toggle {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(9,73,45,.18);
    border-radius: 9px;
    background: #f5fbf7;
    color: var(--mm-green);
    font-size: 1rem;
    cursor: pointer;
    flex-shrink: 0;
  }

  /* Mobile drawer backdrop */
  .mobile-nav-backdrop { display: block; }

  /* Nav-links become a full-screen luxury mobile overlay */
  .site-navbar .nav-links {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100svh !important;
    max-height: 100svh !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    padding: 0 0 40px 0 !important;
    margin: 0 !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    background: linear-gradient(165deg, #071f14 0%, #0c3323 45%, #05170e 100%) !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-100%) !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.4s ease !important;
    z-index: 99999 !important;
  }

  .site-navbar .nav-links.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  /* Show the mobile drawer header — white background with crisp brand logo */
  .site-navbar .mobile-drawer-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    box-sizing: border-box !important;
    min-height: 76px !important;
    padding: 16px 24px !important;
    margin: 0 0 20px 0 !important;
    background: #ffffff !important;
    border-bottom: 2px solid #d4af37 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 10 !important;
  }

  .site-navbar .mobile-drawer-logo {
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
  }

  .site-navbar .mobile-drawer-logo .logo-image {
    max-height: 48px !important;
    width: auto !important;
    object-fit: contain !important;
    filter: none !important;
  }

  .site-navbar .mobile-nav-close {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(15, 46, 31, 0.16) !important;
    border-radius: 50% !important;
    background: #f2f7f4 !important;
    color: #0f2e1f !important;
    -webkit-text-fill-color: #0f2e1f !important;
    font-size: 1.2rem !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
  }

  .site-navbar .mobile-nav-close:hover {
    background: #0f2e1f !important;
    color: #ffd700 !important;
    -webkit-text-fill-color: #ffd700 !important;
  }

  .site-navbar .mega-menu-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 4px 0 !important;
    padding: 0 !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  /* Mobile nav links — full-width rows with left alignment */
  .site-navbar .nav-links > a,
  .site-navbar .mega-link {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    min-height: 52px !important;
    padding: 14px 20px !important;
    margin: 4px 0 !important;
    border-radius: 14px !important;
    font-family: 'Poppins', 'Inter', sans-serif !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.8px !important;
    text-transform: uppercase !important;
    color: #0f2e1f !important;
    -webkit-text-fill-color: #0f2e1f !important;
    background: #ffffff !important;
    border: 1px solid rgba(15, 46, 31, 0.12) !important;
    text-align: left !important;
  }

  /* Mobile mega-menu — accordion */
  .site-navbar .mega-menu {
    position: static;
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    gap: 6px;
    margin: 4px 0 6px;
    padding: 10px;
    border-radius: 10px;
    background: #f8fcfa;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .site-navbar .mega-menu-container.active .mega-menu { display: grid; }
}

/* =====================================================
   6. PROGRESS BAR
   ===================================================== */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 9999;
  background: transparent;
}
.progress-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--mm-green-light), var(--mm-gold));
  transition: width .1s linear;
}

/* =====================================================
   7. BUTTONS (shared across pages)
   ===================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--mm-green-light);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  border: 2px solid var(--mm-green-light);
  border-radius: 10px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .18s;
}
.btn-primary:hover {
  background: var(--mm-green-2);
  border-color: var(--mm-green-2);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--mm-green) !important;
  -webkit-text-fill-color: var(--mm-green) !important;
  border: 2px solid var(--mm-green-light);
  border-radius: 10px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, color .2s, transform .18s;
}
.btn-outline:hover {
  background: var(--mm-green-light);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  transform: translateY(-2px);
}

/* =====================================================
   8. FOOTER (shared)
   ===================================================== */
footer.footer,
.site-footer {
  background: var(--mm-green);
  color: rgba(255,255,255,.85);
  padding: 60px clamp(20px, 5vw, 80px) 32px;
}

footer.footer a,
.site-footer a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color .2s;
}
footer.footer a:hover,
.site-footer a:hover { color: var(--mm-gold); }

.footer-logo.brand-name {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-size: 1.2rem;
  font-weight: 800;
}

/* =====================================================
   9. LANGUAGE TRANSLATOR WIDGET
   ===================================================== */
.language-translator {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 10px;
  border: 1px solid var(--mm-border);
  border-radius: 9px;
  background: rgba(255,255,255,.7);
  overflow: hidden;
}
.language-translator .goog-te-gadget,
.language-translator .goog-te-combo {
  width: 100px;
  font-size: .78rem;
  font-family: var(--mm-font);
  border: 0;
  background: transparent;
  color: var(--mm-ink);
}

@media (max-width: 1040px) {
  .language-translator { display: none; }
}

/* =====================================================
   10. SCROLL-HIDE HEADER
   ===================================================== */
.site-header { transition: transform .3s; }
.site-header.hide { transform: translateY(-120%); }

/* =====================================================
   11. BODY LOCK WHEN MOBILE MENU OPEN
   ===================================================== */
body.mobile-nav-open { overflow: hidden; }

/* =====================================================
   12. HOMEPAGE HERO (body.home-page)
   ===================================================== */
body.home-page .hero,
body.home-page .luxury-hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #062315 0%, #0f3d27 50%, #1a6040 100%);
  color: #fff;
  padding: clamp(100px, 14vw, 160px) clamp(20px, 5vw, 80px) clamp(60px, 8vw, 100px);
}

.hero-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hero-left { max-width: 620px; }

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(212,175,55,.2);
  border: 1px solid rgba(212,175,55,.4);
  border-radius: 99px;
  color: var(--mm-gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-left h1 {
  font-size: clamp(1.9rem, 3.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 18px;
}

.hero-left p {
  font-size: clamp(.9rem, 1.1vw, 1.05rem);
  line-height: 1.7;
  color: rgba(255,255,255,.78);
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  gap: clamp(20px, 3vw, 44px);
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.hero-stats div { display: flex; flex-direction: column; gap: 4px; }
.hero-stats strong { font-size: 1.5rem; font-weight: 800; color: var(--mm-gold); }
.hero-stats span { font-size: .78rem; color: rgba(255,255,255,.65); }

.hero-right { position: relative; }

.ship-showcase {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
  position: relative;
}
.ship-showcase img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 480px;
}
.map-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .3;
}
.map-overlay path {
  fill: none;
  stroke: var(--mm-gold);
  stroke-width: 2;
  stroke-dasharray: 6 4;
}
.map-overlay circle { fill: var(--mm-gold); }

@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; }
  .hero-right { display: none; }
}

/* =====================================================
   13. PRODUCTS SECTION (home-page)
   ===================================================== */
.products-section {
  background-color: #F8F7F4 !important; /* Warm Ivory Background */
  padding: clamp(5rem, 8vw, 8rem) 0;
  position: relative;
}

/* Subtle grain texture overlay */
.products-section::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.018;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  z-index: 1;
}

.products-section .container {
  position: relative;
  z-index: 2;
}

/* Heading section styling */
.products-section .section-heading {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.products-section .section-heading .section-subtitle {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #D4AF37 !important; /* Accent Gold */
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.products-section .section-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: #102A1F !important; /* Dark Green Text */
  font-weight: 700;
  margin: 0;
  line-height: 1.25;
}

/* Responsive 2x2 Grid spacing 32px */
.product-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1440px;
  margin: 0 auto;
}

/* Card Design: No white cards. Large photographic cards ~700x420px */
.product-category-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 420px;
  background-color: #0E2418; /* Dark green fallback */
  transition: transform 0.45s cubic-bezier(.22,.61,.36,1), box-shadow 0.45s cubic-bezier(.22,.61,.36,1), border-color 0.45s cubic-bezier(.22,.61,.36,1);
  box-shadow: 0 10px 30px rgba(16, 42, 31, 0.08);
  border: 1px solid transparent;
}

/* Fully clickable wrapper */
.card-link-wrapper {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
  color: #fff;
}

/* Image cover */
.product-card-image-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.product-card-image-wrapper .category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(.22,.61,.36,1);
}

/* Luxury emerald gradient overlay over every image */
.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(14,36,24,.35) 50%, rgba(14,36,24,.92) 100%);
  transition: opacity 0.45s cubic-bezier(.22,.61,.36,1);
  z-index: 2;
}

/* Top Left circular floating icon */
.card-icon-floating {
  position: absolute;
  right: 24px;
  left: auto;
  width: 64px;
  height: 64px;
  background-color: #0E2418; /* Dark Emerald */
  border: 1px solid rgba(212, 175, 55, 0.4); /* Thin Gold Border */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: border-color 0.45s cubic-bezier(.22,.61,.36,1), background-color 0.45s cubic-bezier(.22,.61,.36,1);
}

.card-icon-floating .card-emoji {
  font-size: 1.6rem;
  display: flex;
}

/* Info: Bottom Left alignment inside the image */
.product-info-inside {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 32px;
  box-sizing: border-box;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* Small label above heading: Gold, letter spacing 2px */
.product-card-subtitle-gold {
  font-size: 0.78rem;
  font-weight: 700;
  color: #D4AF37 !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

/* Large heading: Playfair Display, 52px, White */
.product-card-title-white {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  color: #FFFFFF !important;
  font-weight: 700;
  margin: 0 0 10px 0;
  line-height: 1.1;
  display: block;
}

/* Description: max 2 lines, White, opacity 85% */
.product-card-description-white {
  font-size: 0.95rem;
  color: #FFFFFF !important;
  opacity: 0.85;
  margin: 0 0 24px 0;
  line-height: 1.5;
  max-width: 90%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Footer bottom area */
.product-card-footer-luxury {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: auto;
}

/* Outlined product count */
.product-card-count-outlined {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #D4AF37 !important; /* Gold */
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 6px 14px;
  border-radius: 100px;
  background-color: rgba(14, 36, 24, 0.3);
  transition: all 0.45s cubic-bezier(.22,.61,.36,1);
}

/* Explore link: White, arrow slides on hover */
.product-explore-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF !important;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.45s cubic-bezier(.22,.61,.36,1);
}

.product-explore-link .arrow-slide {
  display: inline-block;
  transition: transform 0.45s cubic-bezier(.22,.61,.36,1);
}

/* --------------------------------------------------------
   HOVER EFFECTS
   -------------------------------------------------------- */
.product-category-card:hover {
  transform: translateY(-12px); /* Card lifts */
  border-color: rgba(212, 175, 55, 0.6); /* Gold border appears */
  box-shadow: 
    0 20px 40px rgba(14, 36, 24, 0.3),
    0 0 25px rgba(212, 175, 55, 0.15); /* Soft gold glow */
}

.product-category-card:hover .category-image {
  transform: scale(1.08); /* Image zoom */
}

.product-category-card:hover .product-card-overlay {
  background: linear-gradient(to bottom, rgba(14,36,24,0.1) 0%, rgba(14,36,24,.5) 50%, rgba(14,36,24,.95) 100%); /* Overlay becomes slightly darker */
}

.product-category-card:hover .card-icon-floating {
  border-color: #D4AF37;
  background-color: #143D26; /* Dark emerald background becomes lighter */
}

.product-category-card:hover .product-card-count-outlined {
  border-color: #D4AF37;
  background-color: rgba(20, 61, 38, 0.6);
}

.product-category-card:hover .product-explore-link {
  color: #D4AF37 !important; /* Text becomes gold */
}

.product-category-card:hover .arrow-slide {
  transform: translateX(8px); /* Arrow moves right */
}

/* --------------------------------------------------------
   SCROLL REVEAL STAGGER ANIMATIONS
   -------------------------------------------------------- */
.products-section [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.products-section.products-in-view [data-reveal] {
  opacity: 1;
  transform: translateY(0);
}

/* Delay each card 100ms */
.products-section.products-in-view [data-reveal]:nth-child(1) {
  transition-delay: 100ms;
}
.products-section.products-in-view [data-reveal]:nth-child(2) {
  transition-delay: 200ms;
}
.products-section.products-in-view [data-reveal]:nth-child(3) {
  transition-delay: 300ms;
}
.products-section.products-in-view [data-reveal]:nth-child(4) {
  transition-delay: 400ms;
}

/* --------------------------------------------------------
   GRID RESPONSIVENESS OVERRIDES
   -------------------------------------------------------- */
@media (max-width: 1200px) {
  .product-card-title-white {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  /* Tablet layout: 2 Columns */
  .product-category-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }
  
  .product-category-card {
    height: 380px !important;
  }
  
  .product-card-title-white {
    font-size: 38px !important;
  }
}

@media (max-width: 575px) {
  /* Mobile layout: 1 Column */
  .product-category-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  
  .product-category-card {
    height: 360px !important;
    max-width: 100% !important;
  }
  
  .product-card-title-white {
    font-size: 34px !important;
  }
  
  .product-info-inside {
    padding: 24px !important;
  }
  
  .card-icon-floating {
    width: 54px !important;
    height: 54px !important;
    top: 16px !important;
    right: 16px !important;
    left: auto !important;
  }
  
  .card-icon-floating .card-emoji {
    font-size: 1.3rem !important;
  }
}

/* =====================================================
   14. SECTION HEADINGS (shared utility)
   ===================================================== */
.section-title {
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  font-weight: 800;
  color: var(--mm-green);
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: clamp(.78rem, .9vw, .9rem);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mm-green-light);
  margin-bottom: 10px;
  display: block;
}

/* =====================================================
   15. CONTAINER HELPER
   ===================================================== */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 48px);
}

/* =====================================================
   16. FOOTER LAYOUT
   ===================================================== */
footer.footer,
.site-footer {
  background: var(--mm-green);
  color: rgba(255,255,255,.82);
  padding: 60px clamp(20px, 5vw, 80px) 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(24px, 4vw, 52px);
  padding-bottom: 48px;
}

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

.footer-col h4 {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mm-gold);
  margin-bottom: 14px;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: .86rem;
  color: rgba(255,255,255,.68);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color .2s;
  line-height: 1.5;
}

.footer-col i {
  margin-right: 8px;
  color: var(--mm-gold);
  opacity: .8;
}

.footer-col a:hover { color: var(--mm-gold); }

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.social-icons a {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.75) !important;
  font-size: .88rem;
  transition: background .2s, color .2s;
  margin: 0;
}
.social-icons a:hover {
  background: var(--mm-gold);
  color: var(--mm-green) !important;
}

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

/* =====================================================
   17. BACK TO TOP BUTTON
   ===================================================== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 4000;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--mm-green-light);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity .25s, visibility .25s, transform .25s, background .2s;
  box-shadow: 0 6px 24px rgba(15,46,31,.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover { background: var(--mm-green-2); }

/* =====================================================
   18. HOMEPAGE SECTIONS (stats, about, why-us, cta)
   ===================================================== */

/* Stats strip */
.stats-section,
.luxury-stats {
  padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 80px);
  background: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(20px, 3vw, 40px);
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.stat-card {
  padding: 28px 20px;
  border: 1px solid var(--mm-border);
  border-radius: 14px;
  background: var(--mm-off-white);
  transition: transform .25s, box-shadow .25s;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15,46,31,.1);
}

.counter {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--mm-green-light);
  line-height: 1;
  margin-bottom: 6px;
}

/* About section */
.about-section,
.home-about {
  padding: clamp(60px, 8vw, 110px) clamp(20px, 5vw, 80px);
  background: var(--mm-off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

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

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-images img {
  border-radius: 12px;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.about-points {
  margin: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--mm-green-light);
  font-weight: 700;
  text-decoration: none;
  font-size: .9rem;
  transition: gap .2s;
}
.text-link:hover { gap: 10px; }

/* Why us section */
.why-us { padding: clamp(60px, 8vw, 110px) clamp(20px, 5vw, 80px); background: #fff; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
  margin-top: 40px;
}

.why-card {
  padding: 28px 24px;
  border: 1px solid var(--mm-border);
  border-radius: 14px;
  background: var(--mm-off-white);
  transition: transform .25s, box-shadow .25s;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(15,46,31,.12);
}

/* CTA section */
.cta,
.luxury-cta {
  padding: clamp(60px, 8vw, 110px) clamp(20px, 5vw, 80px);
  background: linear-gradient(135deg, var(--mm-green) 0%, var(--mm-green-2) 100%);
  text-align: center;
  color: #fff;
}

.cta-content h2 { font-size: clamp(1.6rem, 3vw, 2.8rem); font-weight: 800; margin-bottom: 14px; color: #fff; }
.cta-content p  { font-size: clamp(.9rem, 1.1vw, 1.05rem); color: rgba(255,255,255,.78); margin-bottom: 28px; }

.cta-buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* Section heading wrapper */
.section-heading { margin-bottom: clamp(28px, 4vw, 50px); }
.section-heading .section-title { margin-bottom: 10px; }

/* =====================================================
   19. SCROLL REVEAL (.show class added by JS)
   ===================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
[data-reveal].reveal {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   20. PROCESS PAGE STYLES
   ===================================================== */
body.process-page {
  background: var(--mm-off-white);
}

/* Hero Section */
.process-hero {
  padding: 140px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.process-hero-content {
  max-width: 650px;
}

.process-eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--mm-gold);
  font-weight: 700;
  margin-bottom: 12px;
  display: inline-block;
}

#processHeroTitle {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--mm-green);
  margin-bottom: 16px;
}

.process-hero-content p {
  font-size: 1.1rem;
  color: var(--mm-muted);
  margin-bottom: 30px;
  line-height: 1.6;
}

.process-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.process-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(15, 46, 31, 0.05);
  border: 1px solid rgba(15, 46, 31, 0.08);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--mm-green-2);
}

.process-badges i {
  color: var(--mm-gold);
}

.process-hero-glass {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(15, 46, 31, 0.08);
  width: 100%;
  max-width: 290px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.process-hero-glass strong {
  font-size: 4.8rem;
  font-weight: 800;
  color: var(--mm-green);
  line-height: 1;
  display: block;
}

.process-hero-glass span {
  font-size: 0.8rem;
  color: var(--mm-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 8px 0 16px;
  line-height: 1.3;
}

.process-hero-mini {
  display: flex;
  gap: 12px;
  font-size: 1.3rem;
  color: var(--mm-green-light);
}

/* Process Journey & Path timeline */
.process-journey {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.process-section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.process-section-heading h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--mm-green);
  margin-top: 6px;
}

.process-section-heading p {
  color: var(--mm-muted);
  max-width: 600px;
  margin: 12px auto 0;
  font-size: 1.05rem;
}

.process-path {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 20px 0;
}

.process-path::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--mm-green-light) 0%, var(--mm-gold) 100%);
  opacity: 0.18;
  transform: translateX(-50%);
}

.process-path-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

.process-step-node {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--mm-green);
  border: 4px solid #fff;
  box-shadow: 0 4px 15px rgba(15, 46, 31, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s;
}

.process-step-node i {
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 1px;
}

.process-step-node span {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--mm-gold);
}

.process-step-media {
  width: 44%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  aspect-ratio: 16/10;
}

.process-step-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.process-path-step:hover .process-step-media img {
  transform: scale(1.05);
}

.process-step-copy {
  width: 44%;
  padding: 30px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--mm-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.process-path-step:hover .process-step-copy {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(15, 46, 31, 0.06);
  border-color: rgba(212, 175, 55, 0.3);
}

.process-step-copy > span {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--mm-gold);
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 6px;
}

.process-step-copy h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--mm-green);
  margin-bottom: 10px;
}

.process-step-copy p {
  color: var(--mm-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Alternating path steps */
.process-path-step:nth-child(odd) {
  flex-direction: row;
}

.process-path-step:nth-child(even) {
  flex-direction: row-reverse;
}

/* Animation triggers */
.process-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.process-reveal.process-in-view {
  opacity: 1;
  transform: translateY(0);
}

.process-path-step {
  opacity: 0.38;
  transform: translateY(15px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.process-path-step.process-step-active {
  opacity: 1;
  transform: translateY(0);
}

.process-path-step.process-step-active .process-step-node {
  background: var(--mm-green-light);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Step 01 details (Farm split) */
.process-farm {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.process-split-media {
  flex: 1.1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  aspect-ratio: 16/11;
}

.process-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.process-split-copy {
  flex: 1;
}

.process-split-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--mm-green);
  margin-top: 6px;
}

.process-check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 24px 0 32px;
}

.process-check-grid span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--mm-green-2);
}

.process-check-grid i {
  color: var(--mm-green-light);
  font-size: 1.1rem;
}

.process-counters {
  display: flex;
  gap: 36px;
  border-top: 1px solid var(--mm-border);
  padding-top: 24px;
}

.process-counters article {
  display: flex;
  flex-direction: column;
}

.process-counters strong {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--mm-green);
  line-height: 1.1;
}

.process-counters span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--mm-muted);
  font-weight: 700;
  margin-top: 4px;
}

/* Step 02 Details (Conveyor belt styling) */
.process-conveyor {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.conveyor-belt {
  background: #fff;
  border: 1px solid var(--mm-border);
  border-radius: 16px;
  padding: 35px 24px;
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 15px;
  overflow-x: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.conveyor-track {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 57px;
  height: 2px;
  background: rgba(15, 46, 31, 0.08);
  z-index: 1;
}

.conveyor-belt article {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  flex: 1;
  min-width: 100px;
  position: relative;
  z-index: 2;
}

.conveyor-belt article i {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(15, 46, 31, 0.04);
  color: var(--mm-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.conveyor-belt article:hover i {
  background: var(--mm-green);
  color: #fff;
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 6px 15px rgba(15, 46, 31, 0.2);
}

.conveyor-belt article span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--mm-green-2);
}

/* Step 03 Details (Lab Grid) */
.process-lab {
  padding: 80px 24px;
  margin: 40px auto;
}

.lab-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.lab-card {
  background: #fff;
  border: 1px solid var(--mm-border);
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.lab-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 46, 31, 0.06);
  border-color: rgba(212, 175, 55, 0.25);
}

.lab-card i {
  font-size: 1.8rem;
  color: var(--mm-gold);
  margin-bottom: 14px;
  display: block;
}

.lab-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--mm-green);
  line-height: 1.35;
}

/* Step 04 Details (Packing flow & grid) */
.process-packing {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.packing-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  background: rgba(15, 46, 31, 0.03);
  padding: 16px 24px;
  border-radius: 50px;
  border: 1px solid rgba(15, 46, 31, 0.05);
  margin-bottom: 40px;
}

.packing-flow span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--mm-green);
  display: flex;
  align-items: center;
}

.packing-flow span:not(:last-child)::after {
  content: "\f0da";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 16px;
  color: var(--mm-gold);
  font-size: 0.9rem;
}

.packing-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.packing-card {
  background: #fff;
  border: 1px solid var(--mm-border);
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.packing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 46, 31, 0.06);
  border-color: rgba(212, 175, 55, 0.25);
}

.packing-card i {
  font-size: 1.8rem;
  color: var(--mm-green);
  margin-bottom: 14px;
  display: block;
}

.packing-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--mm-green);
  line-height: 1.35;
}

/* Step 05 Details (Dispatch split & ports) */
.process-dispatch {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.process-dispatch-copy {
  flex: 1;
}

.process-dispatch-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--mm-green);
  margin-top: 6px;
}

.inspection-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.inspection-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--mm-green-2);
}

.inspection-list i {
  color: var(--mm-green-light);
  font-size: 1.1rem;
}

.port-panel {
  flex: 1.25;
  display: flex;
  gap: 16px;
}

.port-panel article {
  flex: 1;
  position: relative;
  height: 310px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
}

.port-panel article:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(15, 46, 31, 0.14);
}

.port-panel article img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.port-panel article:hover img {
  transform: scale(1.06);
}

.port-panel article::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.75) 100%);
  z-index: 1;
}

.port-panel article i {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 1.1rem;
  color: var(--mm-gold);
  z-index: 2;
}

.port-panel article span {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  z-index: 2;
}

/* Certificate Wall Section */
.certificate-wall {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.certificate-card {
  background: #fff;
  border: 1px solid var(--mm-border);
  border-radius: 14px;
  padding: 24px 15px;
  text-align: center;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
}

.certificate-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(15, 46, 31, 0.05);
  border-color: rgba(212, 175, 55, 0.3);
}

.certificate-card i {
  font-size: 1.6rem;
  color: var(--mm-green);
  margin-bottom: 10px;
  display: block;
}

.certificate-card span {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--mm-green-2);
}

/* Export Map & Globe Stage section */
.export-map {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.globe-stage {
  display: flex;
  align-items: center;
  gap: 60px;
}

.globe-copy {
  flex: 1;
}

.globe-copy h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--mm-green);
  margin: 6px 0 12px;
  line-height: 1.25;
}

.globe-copy p {
  color: var(--mm-muted);
  line-height: 1.55;
}

.globe-route-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.globe-route-list span {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(15, 46, 31, 0.04);
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--mm-green);
}

.route-globe {
  flex: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 330px;
}

.globe-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(15, 46, 31, 0.15);
}

.orbit-one {
  width: 300px;
  height: 300px;
  animation: spinOrbit 25s linear infinite;
}

.orbit-two {
  width: 210px;
  height: 210px;
  animation: spinOrbitReverse 30s linear infinite;
}

@keyframes spinOrbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spinOrbitReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

.document-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 5;
  background: #fff;
  padding: 24px 20px;
  border-radius: 16px;
  border: 1px solid var(--mm-border);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  width: 250px;
}

.document-stack article {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--mm-green-2);
  font-size: 0.9rem;
}

.document-stack article i {
  color: var(--mm-gold);
  font-size: 1.05rem;
}

/* =====================================================
   21. RESPONSIVENESS OVERRIDES
   ===================================================== */
@media (max-width: 991px) {
  .process-hero {
    flex-direction: column;
    padding-top: 110px;
    gap: 30px;
    text-align: center;
  }
  
  .process-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .process-badges {
    justify-content: center;
  }

  .process-farm {
    flex-direction: column;
    gap: 40px;
  }
  
  .process-dispatch {
    flex-direction: column;
    gap: 40px;
  }
  
  .port-panel {
    width: 100%;
  }

  .globe-stage {
    flex-direction: column;
    gap: 45px;
    text-align: center;
  }
  
  .globe-route-list {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .process-path::before {
    left: 20px;
    transform: none;
  }
  
  .process-path-step {
    flex-direction: column !important;
    align-items: flex-start;
    padding-left: 50px;
    gap: 16px;
  }
  
  .process-step-node {
    left: 20px;
    top: 0;
    transform: translate(-50%, 0) scale(0.9);
  }
  
  .process-path-step.process-step-active .process-step-node {
    transform: translate(-50%, 0) scale(1);
  }
  
  .process-step-media,
  .process-step-copy {
    width: 100%;
  }
  
  .process-step-copy {
    padding: 20px;
  }

  .port-panel {
    flex-direction: column;
  }
  
  .port-panel article {
    height: 220px;
  }
}

/* =====================================================
   22. CATALOG PAGE STYLES
   ===================================================== */
.catalog-main {
  min-height: calc(100vh - var(--mm-nav-h) - 400px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px;
}

.catalog-coming-soon {
  max-width: 800px;
  width: 100%;
  text-align: center;
  background: #fff;
  border: 1px solid var(--mm-border);
  border-radius: 20px;
  padding: 65px 45px;
  box-shadow: var(--mm-shadow);
}

.coming-soon-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  color: var(--mm-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  margin: 0 auto 24px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.catalog-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--mm-green-light);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 12px;
}

.catalog-coming-soon h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--mm-green);
  line-height: 1.25;
  margin-bottom: 18px;
}

.gradient-gold-text {
  background: linear-gradient(135deg, #d4af37 0%, #b89728 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.catalog-coming-soon p {
  color: var(--mm-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 40px;
}

.catalog-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.preview-item {
  background: var(--mm-off-white);
  border: 1px solid var(--mm-border);
  border-radius: 12px;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.preview-item:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 61, 38, 0.15);
  box-shadow: 0 8px 20px rgba(15, 46, 31, 0.04);
}

.preview-item i {
  font-size: 1.6rem;
  color: var(--mm-green);
}

.preview-item span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--mm-green-2);
}

.notify-form {
  max-width: 500px;
  margin: 0 auto;
}

.notify-input-group {
  display: flex;
  gap: 10px;
}

.notify-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 10px;
  border: 1px solid var(--mm-border);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--mm-off-white);
  outline: none;
  transition: border-color 0.3s;
}

.notify-form input:focus {
  border-color: var(--mm-green-light);
  background: #fff;
}

.notify-btn {
  padding: 14px 28px;
  background: var(--mm-green);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.notify-btn:hover {
  background: var(--mm-green-2);
}

.notify-btn:active {
  transform: scale(0.98);
}

.notify-status {
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 20px;
}

.notify-status.success {
  color: #059669;
}

.notify-status.error {
  color: #dc2626;
}

@media (max-width: 767px) {
  .catalog-coming-soon {
    padding: 40px 20px;
  }
  
  .catalog-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .notify-input-group {
    flex-direction: column;
  }
}

/* =====================================================
   23. CONTACT PAGE STYLES
   ===================================================== */
.contact-hero {
  padding: 130px 24px 70px;
  background: linear-gradient(135deg, var(--mm-green) 0%, var(--mm-green-2) 100%);
  text-align: center;
  color: #fff;
  position: relative;
}

.contact-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.contact-hero-content span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--mm-gold);
  font-weight: 700;
  margin-bottom: 12px;
  display: inline-block;
}

.contact-hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 15px;
}

.contact-hero-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Contact Grid */
.contact-section {
  padding: 80px 24px;
}

.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form-box {
  background: #fff;
  border: 1px solid var(--mm-border);
  border-radius: 20px;
  padding: 45px 40px;
  box-shadow: var(--mm-shadow);
}

.contact-form-box h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--mm-green);
  margin-bottom: 25px;
}

#contactForm {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

#contactForm input,
#contactForm select,
#contactForm textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid var(--mm-border);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--mm-off-white);
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus {
  border-color: var(--mm-green-light);
  background: #fff;
  box-shadow: 0 4px 12px rgba(15, 46, 31, 0.03);
}

#contactForm select {
  cursor: pointer;
  color: var(--mm-muted);
}

#contactForm select option {
  color: var(--mm-ink);
}

#contactForm textarea {
  min-height: 125px;
  resize: vertical;
}

#contactForm button[type="submit"] {
  padding: 16px;
  background: var(--mm-green);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

#contactForm button[type="submit"]:hover {
  background: var(--mm-green-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(15, 46, 31, 0.16);
}

#contactForm button[type="submit"]:active {
  transform: translateY(0);
}

/* Contact Info Box & Cards */
.contact-info-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-box .contact-card {
  background: #fff;
  border: 1px solid var(--mm-border);
  border-radius: 18px;
  padding: 24px 28px;
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  transition: all 0.3s ease;
}

.contact-info-box .contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: var(--mm-shadow);
}

.contact-info-box .contact-card i {
  font-size: 1.8rem;
  color: var(--mm-gold);
  flex-shrink: 0;
}

.contact-info-box .contact-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--mm-green);
  margin: 0 0 4px 0;
}

.contact-info-box .contact-card p {
  color: var(--mm-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* WhatsApp Contact Button */
.whatsapp-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 20px;
  background: #25D366;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.25);
  text-align: center;
}

.whatsapp-contact:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}

.whatsapp-contact i {
  font-size: 1.4rem;
}

/* Google Map styling */
.map-section {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 24px;
}

.map-section iframe {
  width: 100%;
  height: 450px;
  border: 1px solid var(--mm-border);
  border-radius: 18px;
  box-shadow: var(--mm-shadow);
  display: block;
}

/* Responsive styles */
@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .contact-hero {
    padding-top: 110px;
  }
  
  .contact-form-box {
    padding: 30px 20px;
  }
  
  .map-section iframe {
    height: 320px;
  }
}

/* =====================================================
   24. HOME NETWORK SOURCING HUB
   ===================================================== */
.global-sourcing-hub {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
  text-align: left;
}

.sourcing-card {
  display: flex;
  gap: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 20px;
  transition: all 0.3s ease;
  align-items: flex-start;
}

.sourcing-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--mm-gold);
  transform: translateY(-2px);
}

.sourcing-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--mm-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.sourcing-card:first-child .sourcing-icon {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  border-color: rgba(37, 211, 102, 0.2);
}

.sourcing-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sourcing-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.sourcing-info p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7) !important;
  line-height: 1.4;
  margin: 0 !important;
}

.sourcing-link-btn {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--mm-gold) !important;
  text-decoration: none;
  margin-top: 8px;
  display: inline-block;
  transition: color 0.2s;
}

.sourcing-link-btn:hover {
  color: #fff !important;
}

/* ==========================================
   SITE FOOTER SHARED STYLES (FROM STYLE.CSS)
   ========================================== */
.site-footer {
  padding: 56px clamp(20px, 6.6vw, 126px) 24px;
  background: #143D26; /* var(--green-dark / --mm-green) */
  color: rgba(255, 255, 255, 0.78);
  font-family: 'Poppins', sans-serif;
}

.site-footer .footer-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.site-footer img {
  width: 240px;
  max-width: 100%;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.site-footer h3 {
  margin: 0 0 16px;
  color: #FFFFFF; /* var(--white) */
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 10px;
  line-height: 1.6;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.site-footer a:hover {
  color: #D4AF37; /* var(--gold-soft / --mm-gold) */
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.site-footer .footer-social-links a {
  width: 40px;
  height: 40px;
  margin: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.site-footer .footer-social-links a:hover {
  transform: translateY(-2px);
  background: #D4AF37; /* var(--gold) */
  color: #143D26; /* var(--green-dark) */
}

.footer-bottom {
  width: min(1180px, 100%);
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

@media (max-width: 991px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
  }
}

@media (max-width: 575px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}






