﻿@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/inter-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }


:root {
  --green-dark: #0d3020;
  --green-mid: #134930;
  --green-light: #1a6040;
  --green-pale: #eef4ec;
  --amber: #c8922a;
  --amber-light: #faf3e8;
  --earth: #4b2718;
  --earth-light: #f7f0e8;
  --white: #ffffff;
  --cream: #f7f7f5;
  --gray-100: #f2f2f0;
  --gray-200: #e0e0dc;
  --gray-400: #8a8a84;
  --gray-700: #2e2e2a;
  --text: #1a1a16;
  --radius: 2px;
  --shadow: 0 1px 4px rgba(0,0,0,0.1);
  --shadow-lg: 0 4px 16px rgba(0,0,0,0.12);
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* â”€â”€ TOP BAR â”€â”€ */
.top-bar {
  background: var(--green-mid);
  color: rgba(255,255,255,0.88);
  font-size: 0.78rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 2rem;
  gap: 1rem;
}
.top-bar a { color: rgba(255,255,255,0.88); text-decoration: none; }
.top-bar a:hover { color: white; }
.top-bar-left, .top-bar-right { display: flex; gap: 1.5rem; align-items: center; }
.top-bar-item { display: flex; align-items: center; gap: 5px; }
.top-bar-item svg { width: 13px; height: 13px; flex-shrink: 0; }

/* â”€â”€ NAV â”€â”€ */
#nav-placeholder {
  height: 118px;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 0 var(--gray-200), 0 2px 12px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 84px;
  max-width: 1300px;
  margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--green-dark); }
.nav-logo svg { width: 32px; height: 32px; }
.nav-logo span { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.3px; font-family: 'Fraunces', Georgia, serif; }

h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; font-optical-sizing: auto; }
.nav-links { display: flex; gap: 0.2rem; list-style: none; align-items: center; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  color: var(--gray-700);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 0.5rem 0.95rem;
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
}
.nav-links > li > a:hover { color: var(--green-dark); background: var(--gray-100); }
.nav-links > li > a .chevron { width: 12px; height: 12px; opacity: 0.5; transition: transform 0.2s; }
.nav-links > li:hover > a .chevron { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  background: var(--white);
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: 0.5rem;
  padding-top: calc(0.5rem + 8px);
  margin-top: -8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s, transform 0.18s;
  transform: translateX(-50%) translateY(-6px);
  z-index: 200;
  border: 1px solid var(--gray-200);
}
.nav-links > li:hover .nav-dropdown { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.nav-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 0.6rem 0.8rem; border-radius: 2px;
  text-decoration: none; color: var(--gray-700);
  font-size: 0.86rem; font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown a:hover { background: var(--green-pale); color: var(--green-dark); }
.nav-dropdown a svg { width: 15px; height: 15px; color: var(--green-mid); flex-shrink: 0; }
.nav-dropdown-divider { height: 1px; background: var(--gray-200); margin: 0.3rem 0.5rem; }

.btn-cart {
  background: transparent; color: var(--green-dark);
  border: 2px solid var(--green-dark); border-radius: 50px;
  padding: 0.45rem 0.85rem; font-size: 0.85rem; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; gap: 6px;
  transition: filter 0.18s, transform 0.18s; text-decoration: none; position: relative;
}
.btn-cart:hover { filter: brightness(0.92); transform: scale(1.04); }
.btn-cart:hover .cart-badge { background: var(--amber); color: var(--green-dark); }
.cart-badge {
  background: var(--green-dark); color: white; border-radius: 50%;
  width: 20px; height: 20px; font-size: 0.72rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}

/* â”€â”€ CART DRAWER â”€â”€ */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.45);
  z-index: 200; opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: -420px; width: 420px; max-width: 95vw;
  height: 100vh; background: var(--white); z-index: 201;
  display: flex; flex-direction: column;
  transition: right 0.3s cubic-bezier(0.4,0,0.2,1); box-shadow: var(--shadow-lg);
}
.cart-drawer.open { right: 0; }
.cart-header {
  padding: 1.4rem 1.5rem; border-bottom: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: space-between;
}
.cart-header h3 { font-size: 1.05rem; font-weight: 700; color: var(--green-dark); }
.btn-close {
  background: none; border: none; font-size: 1.4rem; cursor: pointer;
  color: var(--gray-700); line-height: 1; padding: 4px;
}
.cart-items { flex: 1; overflow-y: auto; padding: 1.2rem 1.5rem; }
.cart-empty { text-align: center; padding: 3rem 1rem; color: var(--gray-700); }
.cart-empty svg { width: 48px; height: 48px; margin-bottom: 1rem; opacity: 0.4; }
.cart-empty p { font-size: 0.9rem; }
.cart-item {
  display: flex; align-items: center; gap: 12px;
  padding: 0.9rem 0; border-bottom: 1px solid var(--gray-200);
}
.cart-item-thumb {
  width: 56px; height: 56px; background: var(--green-pale); border-radius: 2px;
  flex-shrink: 0; overflow: hidden;
}
.cart-item-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 2px; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 0.88rem; font-weight: 700; color: var(--green-dark); }
.cart-item-sub { font-size: 0.75rem; color: var(--gray-400); }
.cart-item-qty { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 26px; height: 26px; border-radius: 2px; border: 1.5px solid var(--gray-200);
  background: var(--white); cursor: pointer; font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-700); transition: all 0.15s;
}
.qty-btn:hover { border-color: var(--green-mid); color: var(--green-mid); }
.qty-num { font-size: 0.9rem; font-weight: 700; min-width: 20px; text-align: center; }
.cart-item-price { font-size: 0.95rem; font-weight: 700; color: var(--green-dark); min-width: 56px; text-align: right; }
.cart-footer { padding: 1.2rem 1.5rem; border-top: 1px solid var(--gray-200); }
.cart-subtotal {
  display: flex; justify-content: space-between; margin-bottom: 1rem; font-weight: 600;
}
.cart-subtotal span:last-child { font-size: 1.1rem; font-weight: 800; color: var(--green-dark); }
.btn-checkout {
  width: 100%; background: var(--green-mid); color: white; border: none;
  border-radius: 50px; padding: 0.85rem; font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: filter 0.18s, transform 0.18s; margin-bottom: 0.6rem;
}
.btn-checkout:hover { filter: brightness(0.92); transform: scale(1.02); }
.btn-checkout:disabled { background: var(--gray-400); cursor: not-allowed; }
.cart-secure {
  text-align: center; font-size: 0.75rem; color: var(--gray-400);
  display: flex; align-items: center; justify-content: center; gap: 5px;
}

/* â”€â”€ CHECKOUT MODAL â”€â”€ */
.checkout-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55);
  z-index: 300; opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.checkout-overlay.open { opacity: 1; pointer-events: all; }
.checkout-modal {
  position: fixed; inset: 0; z-index: 301;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem; pointer-events: none; opacity: 0; transition: opacity 0.25s;
}
.checkout-modal.open { pointer-events: all; opacity: 1; }
.checkout-box {
  background: var(--white); border-radius: 2px; width: 100%;
  max-width: 760px; max-height: 92vh; overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  display: flex; flex-direction: column;
}
.checkout-box-header {
  padding: 1.3rem 1.6rem; border-bottom: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: space-between; flex-shrink: 0;
}
.checkout-box-header h3 { font-weight: 800; color: var(--green-dark); font-size: 1.1rem; }
.checkout-body { display: grid; grid-template-columns: 1fr 1fr; gap: 0; flex: 1; }
@media (max-width: 600px) { .checkout-body { grid-template-columns: 1fr; } }
.checkout-summary {
  padding: 1.5rem; background: var(--gray-100);
  border-right: 1px solid var(--gray-200); border-radius: 0 0 0 16px;
}
@media (max-width: 600px) {
  .checkout-summary { border-right: none; border-bottom: 1px solid var(--gray-200); border-radius: 0; }
}
.checkout-summary h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray-400); margin-bottom: 1rem; }
.checkout-order-line { display: flex; justify-content: space-between; font-size: 0.87rem; color: var(--gray-700); margin-bottom: 0.5rem; }
.checkout-order-line.total { font-weight: 800; font-size: 1rem; color: var(--green-dark); margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid var(--gray-200); }
.checkout-form-col { padding: 1.5rem; }
.checkout-form-col h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray-400); margin-bottom: 1rem; }
.checkout-field { margin-bottom: 0.9rem; }
.checkout-field label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--gray-700); margin-bottom: 0.3rem; }
.checkout-field input {
  width: 100%; box-sizing: border-box;
  border: 1.5px solid var(--gray-200); border-radius: 2px;
  padding: 0.6rem 0.75rem; font-size: 0.9rem; font-family: inherit;
  transition: border-color 0.15s; outline: none;
}
.checkout-field input:focus { border-color: var(--green-mid); }
.checkout-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
#mco-stripe-element { margin: 1rem 0; min-height: 44px; }
#mco-stripe-element.loading::before {
  content: 'Loading payment formâ€¦'; color: var(--gray-400); font-size: 0.85rem;
}
#mco-payment-error { color: #c0392b; font-size: 0.83rem; margin-bottom: 0.75rem; min-height: 1rem; }
.btn-pay {
  width: 100%; background: var(--green-mid); color: white; border: none;
  border-radius: 50px; padding: 0.85rem; font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: filter 0.18s, transform 0.18s;
}
.btn-pay:hover { filter: brightness(0.92); transform: scale(1.02); }
.btn-pay:disabled { background: var(--gray-400); cursor: not-allowed; }
.checkout-secure-note {
  text-align: center; font-size: 0.72rem; color: var(--gray-400);
  display: flex; align-items: center; justify-content: center; gap: 5px; margin-top: 0.6rem;
}

/* â”€â”€ PAGE HERO â”€â”€ */
.page-hero {
  background: rgba(13,48,32,0.72) url('images/stock/farm-background-long.avif') center/cover no-repeat;
  background-blend-mode: multiply;
  padding: 60px 2rem 70px;
  color: var(--white);
}
.page-hero-inner { max-width: 800px; margin: 0 auto; }
.breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,0.75); margin-bottom: 1rem; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }
.breadcrumb a { color: rgba(255,255,255,0.75); text-decoration: none; }
.breadcrumb a:hover { color: white; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 0.6rem; letter-spacing: -0.3px; text-shadow: 0 2px 8px rgba(0,0,0,0.4); }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.9); text-shadow: 0 1px 4px rgba(0,0,0,0.4); }

/* â”€â”€ PAGE CONTENT â”€â”€ */
.page-content { padding: 4rem 2rem; }
.page-container { max-width: 1000px; margin: 0 auto; }

.content-two-col {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

.content-section { margin-bottom: 2.5rem; }
.content-section h2 {
  font-size: 1.4rem; font-weight: 800; color: var(--green-dark);
  margin-bottom: 0.8rem; padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--green-pale);
}
.content-section p { color: var(--gray-700); margin-bottom: 0.8rem; line-height: 1.8; }
.content-section ul, .content-section ol { margin: 0.5rem 0 0.8rem 1.4rem; color: var(--gray-700); line-height: 1.8; }
.content-section li { margin-bottom: 0.3rem; }

.doc-link {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1.1rem;
  border-radius: 2px;
  border: 1.5px solid var(--gray-200);
  text-decoration: none;
  color: var(--text);
  background: var(--gray-100);
  transition: border-color 0.2s, background 0.2s;
}
.doc-link:hover { border-color: var(--green-mid); background: var(--green-pale); }
.doc-title { font-weight: 700; font-size: 0.92rem; }
.doc-sub { font-size: 0.8rem; color: var(--gray-400); margin-top: 2px; }

/* Sidebar */
.content-sidebar { display: flex; flex-direction: column; gap: 1rem; position: sticky; top: 90px; }
.sidebar-card {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 1.3rem;
  text-align: center;
  border: 1.5px solid var(--gray-200);
}
.sidebar-card-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.sidebar-card h4 { font-size: 1.1rem; font-weight: 800; color: var(--green-dark); margin-bottom: 0.3rem; }
.sidebar-card p { font-size: 0.82rem; color: var(--gray-700); }
.sidebar-cta {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: var(--radius);
  padding: 1.4rem;
  text-align: center;
  color: white;
}
.sidebar-cta h4 { font-size: 1rem; font-weight: 800; margin-bottom: 0.3rem; }
.sidebar-cta p { font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-bottom: 1rem; }
.btn-primary-sm {
  display: inline-block; background: var(--green-light); color: white;
  border-radius: 50px; padding: 0.6rem 1.25rem;
  font-size: 0.88rem; font-weight: 700; text-decoration: none;
  transition: filter 0.18s, transform 0.18s;
}
.btn-primary-sm:hover { filter: brightness(0.92); transform: scale(1.04); }

/* Global button hover + rounded edges — catches inline-styled <a> and <button> elements */
a[style*="border-radius"][style*="font-weight:700"], button[style*="border-radius"][style*="font-weight:700"],
a[style*="border-radius"][style*="font-weight:800"], button[style*="border-radius"][style*="font-weight:800"] {
  transition: filter 0.18s, transform 0.18s !important;
  border-radius: 50px !important;
  display: inline-block;
}
a[style*="border-radius"][style*="font-weight:700"]:hover, button[style*="border-radius"][style*="font-weight:700"]:hover,
a[style*="border-radius"][style*="font-weight:800"]:hover, button[style*="border-radius"][style*="font-weight:800"]:hover {
  filter: brightness(0.92) !important;
  transform: scale(1.04) !important;
  cursor: pointer;
}

/* FAQ specific */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 0; cursor: pointer; gap: 1rem;
  font-weight: 700; color: var(--green-dark); font-size: 0.97rem;
}
.faq-question:hover { color: var(--green-mid); }
.faq-chevron { flex-shrink: 0; width: 18px; height: 18px; color: var(--gray-400); transition: transform 0.2s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { display: none; padding-bottom: 1.1rem; color: var(--gray-700); line-height: 1.75; font-size: 0.92rem; }
.faq-item.open .faq-answer { display: block; }

/* â”€â”€ FOOTER â”€â”€ */
footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.65);
  padding: 3rem 2rem 1.5rem;
  font-family: 'Inter', sans-serif;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto 2.5rem;
}
.footer-brand p { font-size: 1rem; margin-top: 0.8rem; max-width: 260px; line-height: 1.6; }
.footer-col h4 {
  font-size: 0.95rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; color: var(--white); margin-bottom: 1rem;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.6);
  text-decoration: none; font-size: 1rem; margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem; text-align: center;
  font-size: 0.95rem; max-width: 1100px; margin: 0 auto;
}

@media (max-width: 900px) {
  .content-two-col { grid-template-columns: 1fr; }
  .content-sidebar { position: static; }
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: all 0.25s;
}

.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); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--green-dark);
  z-index: 99;
  flex-direction: column;
  padding: 90px 2rem 2rem;
  overflow-y: auto;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: block;
}

.mobile-menu-section {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.35);
  margin: 1.2rem 0 0.4rem;
}

.mobile-menu-ctas { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 1.5rem; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .top-bar-left { display: none; }
  .banner-full { display: none; }
  .content-two-col { grid-template-columns: 1fr; }
  .content-sidebar { position: static; }
  .page-hero { padding: 2.5rem 1.25rem; }
  .page-hero-inner h1 { font-size: 1.8rem; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand p { max-width: 100%; }
}
