:root {
  --green: #4caf2f;
  --green-dark: #215f2b;
  --green-soft: #effbe8;
  --cream: #fffdf8;
  --text: #242424;
  --muted: #667064;
  --line: #d8e5d3;
  --white: #ffffff;
  --shadow: 0 10px 28px rgba(0,0,0,.08);
  --radius: 16px;
  --max: 1280px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--green-soft);
  color: var(--text);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }

.site-header {
  background: var(--green);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.header-inner {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand img { height: 88px; width: auto; }
.brand-text { font-size: 1.15rem; font-weight: 700; }
.main-nav { display: flex; gap: 28px; align-items: center; }
.main-nav a { color: #fff; text-decoration: none; }
.main-nav a:hover,
.main-nav a[aria-current="page"] { text-decoration: underline; text-underline-offset: 6px; }
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,.6);
  color: #fff;
  border-radius: 8px;
  padding: 9px 12px;
  cursor: pointer;
}

.hero, .page-header { padding: 62px 0; }
.hero-grid, .split, .contact-grid, .product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .8rem;
  font-weight: 700;
  color: var(--green-dark);
}
h1, h2, h3 { line-height: 1.15; }
h1 { font-size: clamp(2.7rem, 6vw, 5.2rem); margin: .25em 0; }
.page-header h1 { font-size: clamp(2.5rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
.lead { font-size: 1.18rem; color: #444; max-width: 700px; }

.actions, .filter-row, .product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 25px;
}
.button, .filter-button {
  display: inline-block;
  border: 2px solid var(--green-dark);
  border-radius: 999px;
  padding: 11px 19px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.button-primary, .filter-button.active, .filter-button:hover {
  background: var(--green-dark);
  color: #fff;
}
.button-secondary, .filter-button { background: #fff; color: var(--green-dark); }

.hero-photo, .story-image, .category-image, .product-image {
  background:
    linear-gradient(135deg, rgba(76,175,47,.14), rgba(33,95,43,.06)),
    repeating-linear-gradient(45deg, #faf8f1 0 16px, #f2eee5 16px 32px);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--green-dark);
  text-align: center;
  overflow: hidden;
}
.hero-photo { min-height: 430px; box-shadow: var(--shadow); }
.story-image { min-height: 360px; }
.hero-photo img, .story-image img, .category-image img, .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section { padding: 68px 0; }
.section-white { background: var(--cream); }
.section-heading { max-width: 760px; margin-bottom: 32px; }

.cards, .product-grid, .review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card, .product-card, .review-card, .contact-card, .faq-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card-body, .product-body, .review-card, .contact-card, .faq-item { padding: 23px; }
.category-image, .product-image { aspect-ratio: 4 / 3; border-radius: 0; }
.product-image { cursor: zoom-in; }
.product-image img { transition: transform .2s; }
.product-image:hover img { transform: scale(1.02); }

.meta { color: var(--muted); font-size: .94rem; }
.price { font-weight: 700; font-size: 1.08rem; margin-top: 10px; }
.badges { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 9px; }
.badge {
  font-size: .74rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
  background: #e6f6df;
  color: var(--green-dark);
}
.badge.sold { background: #eee; color: #666; }

.catalog-tools {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 16px;
  align-items: end;
  margin-top: 25px;
}
.search-box input, .contact-card input, .contact-card textarea, .contact-card select, .sort-box select {
  width: 100%;
  border: 1px solid #cdd9c9;
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
}
.search-box label, .contact-card label, .sort-box label {
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}
.empty-state { display: none; padding: 30px; background: #fff; border-radius: var(--radius); }

form { display: grid; gap: 14px; }
.contact-card textarea { min-height: 150px; resize: vertical; }
.notice { border-left: 4px solid var(--green); padding: 14px 18px; background: #f7fff3; border-radius: 8px; }
.warning { border-left-color: #b28320; background: #fff8e6; }
.review-card .quote { font-size: 2rem; color: var(--green); line-height: 1; }

.faq-list { display: grid; gap: 18px; }
.faq-item h2 { font-size: 1.3rem; margin-top: 0; }

.product-detail-image {
  background: #fff;
  padding: 12px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.product-detail-image img { width: 100%; border-radius: 10px; }
.product-detail-meta { margin: 16px 0; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-height: 88vh; max-width: 92vw; border-radius: 10px; }
.lightbox button {
  position: absolute;
  top: 18px;
  right: 22px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2.4rem;
  cursor: pointer;
}
.lightbox-caption {
  position: absolute;
  bottom: 12px;
  color: #fff;
  background: rgba(0,0,0,.45);
  padding: 5px 10px;
  border-radius: 6px;
}

.site-footer { background: #173c1e; color: #fff; padding: 34px 0; margin-top: 58px; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-nav { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-nav a { color: #fff; text-decoration: none; }
.small { font-size: .9rem; color: #d9ead6; }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: stretch;
    background: #2e8d2b;
    padding: 10px;
    border-radius: 12px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px; }
  .hero-grid, .split, .contact-grid, .product-detail-grid { grid-template-columns: 1fr; }
  .cards, .product-grid, .review-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-tools { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .brand img { height: 68px; }
  .brand-text { display: none; }
  .cards, .product-grid, .review-grid { grid-template-columns: 1fr; }
  .hero-photo { min-height: 290px; }
  .footer-inner { flex-direction: column; }
}
.catalog-construction-notice {
  grid-column: 1 / -1;
  width: 100%;
  padding: 2.5rem 1.5rem;
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.6;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 12px;
  background: rgba(255,255,255,.7);
}

.catalog-construction-page{
  max-width:760px;
  margin:4rem auto;
  padding:3rem 2rem;
  text-align:center;
  border:1px solid rgba(0,0,0,.12);
  border-radius:14px;
  background:rgba(255,255,255,.72);
}
.catalog-construction-page h1{margin-top:0}
.catalog-construction-page p{
  font-size:1.15rem;
  line-height:1.7;
  margin:1rem 0 1.75rem;
}


.catalog-construction-banner {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.catalog-construction-banner[hidden] {
  display: none !important;
}

.catalog-construction-banner .catalog-construction-notice {
  max-width: 820px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  text-align: center;
}

.catalog-construction-banner .catalog-construction-notice h2 {
  margin-top: 0;
  margin-bottom: .75rem;
}

.catalog-construction-banner .catalog-construction-notice p {
  margin-bottom: 0;
}


.contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  margin-top: 1rem;
  min-height: 1.5em;
}


/* Center the Contact & Custom Orders form when it is the only contact card. */
.contact-grid:has(.contact-form-card) {
  display: flex;
  justify-content: center;
}

.contact-form-card {
  width: min(100%, 720px);
  margin-inline: auto;
}
