/* RESET & NORMALIZE */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  min-height: 100vh;
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F5F5F5;
  color: #2E3A46;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  border-style: none;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #3E7346;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #234a31;
  outline: none;
}
button {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

/* TYPOGRAPHY */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #254634;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #254634;
  margin-bottom: 20px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #345C36;
  margin-bottom: 12px;
}
p, li, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
  color: #39443a;
}
blockquote {
  font-size: 1.15rem;
  font-style: italic;
  color: #2E3A46;
  border-left: 4px solid #B9C6B0;
  padding-left: 16px;
  margin-bottom: 10px;
  background: #F8FBF7;
}
strong {
  font-weight: 600;
  color: #234a31;
}

/* CONTAINER / LAYOUTS / SPACING */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 rgba(83, 102, 52, 0.05);
}

/* FLEXBOX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 16px 0 rgba(94, 133, 80, 0.10);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 28px 22px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 24px 0 rgba(82, 121, 72, 0.18);
  transform: translateY(-2px) scale(1.012);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F8FBF7;
  border-radius: 20px;
  border: 1px solid #CFE3C7;
  box-shadow: 0 2px 10px 0 rgba(136, 167, 110, 0.08);
  padding: 20px;
  margin-bottom: 24px;
  color: #243024;
  transition: box-shadow 0.15s, border-color 0.15s;
}
.testimonial-card:hover {
  border-color: #B9C6B0;
  box-shadow: 0 8px 24px 0 rgba(132, 168, 120, 0.13);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* Feature grid for icon groups */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid > div {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 16px;
  background: #F7F8F7;
  border-radius: 16px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
  box-shadow: 0 2px 8px 0 rgba(129, 170, 107, 0.04);
}
.feature-grid > div:hover {
  box-shadow: 0 8px 26px 0 rgba(102, 160, 80, 0.14);
  transform: translateY(-1px) scale(1.013);
}
.feature-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  border-radius: 12px;
  background: #DEE9DE;
  padding: 8px;
}

/* MAIN NAV & HEADER */
header {
  background: #e6ede5;
  border-bottom: 1.5px solid #C9DACC;
  box-shadow: 0 2px 8px 0 rgba(81, 90, 61, 0.04);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: flex-start;
  padding: 18px 0;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #234a31;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a.button-primary {
  background: #3E7346;
  color: #fff !important;
  box-shadow: 0 4px 16px 0 rgba(72,114,66,0.09);
  font-weight: 700;
}
.main-nav a.button-primary:hover,
.main-nav a.button-primary:focus {
  background: #2E3A46;
  color: #e6ede5 !important;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #dee9de;
  color: #1a301f;
}
.main-nav img {
  height: 38px;
  width: auto;
  margin-right: 12px;
  border-radius: 6px;
}

/* Burger / Mobile nav */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 2.2rem;
  color: #2E3A46;
  background: #D6E8D4;
  border-radius: 10px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  z-index: 101;
  box-shadow: 0 2px 10px 0 rgba(82, 107, 63, 0.09);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover,.mobile-menu-toggle:focus {
  background: #b7d6b3;
  color: #254634;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(44, 67, 36, 0.97);
  z-index: 2000;
  transform: translateX(-120%);
  transition: transform 0.34s cubic-bezier(.7,.2,.2,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  margin: 30px 0 15px 30px;
  color: #F5F5F5;
  background: none;
  border: none;
  align-self: flex-start;
  transition: color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #B9C6B0;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  align-items: flex-start;
  padding: 0 38px;
  margin-top: 24px;
}
.mobile-nav a {
  color: #F8FBF7;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  width: 100%;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #507246;
  color: #B9C6B0;
}

/* Hide main nav for mobile */
@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 981px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(108deg, #F2F7F3 80%, #E6F0EA 100%);
  border-radius: 0 0 48px 48px;
  box-shadow: 0 8px 32px 0 rgba(70,115,72,0.07);
  padding: 60px 0 38px 0;
  margin-bottom: 46px;
}
.hero h1 {
  color: #307c44;
  margin-bottom: 18px;
  font-weight: 800;
  font-size: 2.7rem;
}
.hero p {
  color: #497158;
  font-size: 1.15rem;
  margin-bottom: 22px;
}

/* BUTTONS */
.button-primary, a.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #3E7346;
  color: #fff !important;
  border-radius: 14px;
  font-size: 1.09rem;
  font-weight: 700;
  padding: 12px 32px;
  min-width: 128px;
  border: none;
  box-shadow: 0 4px 24px 0 rgba(57,123,66,0.11);
  transition: background 0.19s, transform 0.14s, box-shadow 0.19s;
  letter-spacing: 0.02em;
}
.button-primary:hover,
.button-primary:focus, a.button-primary:hover, a.button-primary:focus {
  background: #234a31;
  color: #f1f9f7 !important;
  transform: translateY(-2px) scale(1.018);
  box-shadow: 0 8px 32px 0 rgba(44,89,38,0.15);
}
.button-secondary {
  background: #DBEED7;
  color: #32492f;
  border-radius: 12px;
  font-weight: 600;
  padding: 10px 24px;
  box-shadow: 0 2px 12px 0 rgba(146,188,128,0.09);
  transition: background 0.15s, color 0.15s;
  letter-spacing: 0.01em;
}
.button-secondary:hover,
.button-secondary:focus {
  background: #b7d6b3;
}

/* Product subnav, category filter, footer nav */
.product-subnav, .category-filter, .footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}
.product-subnav a, .category-filter a, .footer-nav a {
  font-size: 1rem;
  color: #467A36;
  background: #F1F9F5;
  padding: 7px 18px;
  border-radius: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: background 0.14s, color 0.14s;
}
.product-subnav a:hover,
.product-subnav a:focus,
.category-filter a:hover,
.category-filter a:focus,
.footer-nav a:hover,
.footer-nav a:focus {
  color: #395E2A;
  background: #d3ead1;
}

/* Footer */
footer {
  background: #e6ede5;
  border-top: 1.5px solid #B9C6B0;
  margin-top: 60px;
  padding: 36px 0 12px 0;
  font-family: 'Roboto', Arial, sans-serif;
}
.footer-nav {
  justify-content: center;
  margin-bottom: 14px;
  gap: 16px;
}
footer .text-section {
  text-align: center;
  color: #2E3A46;
  font-size: 0.99rem;
  margin-bottom: 6px;
}
footer p {
  margin-bottom: 8px;
  color: #4D6757;
}

/* Sectional & Card Spacing */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1rem;
}
.text-section ul,
.text-section ol {
  margin-left: 0;
  padding-left: 20px;
  list-style: disc;
  gap: 9px;
  display: flex;
  flex-direction: column;
}
.text-section li {
  margin-bottom: 6px;
  color: #3c4e3a;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 9px;
}
.text-section img {
  width: 24px;
  height: 24px;
}

/* Animations & Microinteractions */
.button-primary, .button-secondary, .main-nav a, .feature-grid > div, .card {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
}

/* FORM CONTROLS - for future-proofing */
input, textarea, select {
  border: 1.5px solid #CED8C8;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  box-shadow: 0 2px 8px 0 rgba(116, 146, 92, 0.04);
  transition: border-color 0.13s, box-shadow 0.13s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #468052;
  box-shadow: 0 4px 22px 0 rgba(62, 132, 66, 0.13);
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4000;
  background: #e6ede5;
  color: #234a31;
  box-shadow: 0 -8px 32px 0 rgba(46,58,70,0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 26px 18px 18px 18px;
  font-size: 1rem;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  transition: transform 0.32s cubic-bezier(.7,.2,.2,1);
}
.cookie-banner.hide {
  transform: translateY(180px);
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 9px;
}
.cookie-banner .button-primary {
  font-size: 1rem;
  padding: 10px 22px;
  border-radius: 10px;
}
.cookie-banner .button-secondary {
  font-size: 1rem;
  padding: 10px 18px;
  border-radius: 10px;
  background: #F5F5F5;
  color: #3E7346;
  border: 1.2px solid #b9c6b0;
}
.cookie-banner .button-secondary:hover,
.cookie-banner .button-secondary:focus {
  background: #b9c6b0;
  color: #fff;
}

/* Cookie Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 4100;
  background: rgba(44,67,36,0.35);
  align-items: center;
  justify-content: center;
  transition: background 0.13s;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #f8fbf7;
  padding: 42px 28px 28px 28px;
  border-radius: 24px;
  box-shadow: 0 12px 44px 0 rgba(58, 86, 61, 0.15);
  max-width: 410px;
  width: 98vw;
  color: #254634;
  font-size: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.32rem;
  margin-bottom: 7px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 10px;
}
.cookie-switch {
  position: relative;
  width: 38px;
  height: 20px;
  background: #dbeed7;
  border-radius: 20px;
  cursor: pointer;
  flex-shrink: 0;
}
.cookie-switch input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch .switch-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  height: 16px;
  width: 16px;
  background: #3e7346;
  border-radius: 50%;
  transition: left 0.17s, background 0.17s;
}
.cookie-switch input[type="checkbox"]:checked + .switch-slider {
  left: 20px;
  background: #254634;
}
.cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 17px;
  font-size: 2.1rem;
  background: none;
  border: none;
  color: #3E7346;
  cursor: pointer;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: #254634;
}

/* Responsive Layouts */
@media (max-width: 1200px) {
  .container {
    max-width: 980px;
  }
}
@media (max-width: 980px) {
  .container {
    max-width: 99vw;
  }
  .content-wrapper {
    gap: 16px;
  }
  .feature-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.55rem;
  }
  .card, .feature-grid > div {
    padding: 16px 10px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 1rem;
    padding: 14px 8px;
  }
  .section {
    padding: 26px 6px;
    margin-bottom: 36px;
    border-radius: 9px;
  }
  .hero {
    padding: 38px 0 24px 0;
    border-radius: 0 0 25px 25px;
    margin-bottom: 28px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .content-grid {
    flex-direction: column;
    gap: 15px;
  }
  .product-subnav, .category-filter, .footer-nav {
    gap: 9px;
    font-size: 0.98rem;
  }
}
@media (max-width: 480px) {
  html, body {
    font-size: 14px;
  }
  .container {
    padding: 0 4px;
  }
  .button-primary, .button-secondary {
    width: 100%;
    min-width: unset;
    justify-content: center;
    padding: 13px 8px;
    font-size: 1rem;
  }
  .cookie-modal {
    padding: 28px 6px 18px 6px;
    border-radius: 18px;
  }
}

/* Organic Nature Elements */
.card, .feature-grid > div, .section {
  /* Subtle organic shadow and rounded corners */
  border-radius: 18px;
  box-shadow: 0 6px 24px 0 rgba(92,123,85,0.07);
}

/* Organic shapes for accent backgrounds using clip-paths */
.hero {
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  z-index: 0;
  right: -12vw;
  bottom: -70px;
  width: 400px;
  height: 260px;
  background: #b9c6b07a;
  opacity: 0.26;
  border-radius: 120px 120px 174px 80px/100px 120px 96px 155px;
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero::after {
    width: 250px;
    height: 110px;
    right: -20vw;
    bottom: -44px;
  }
}

/* Organic divider for testimonial section */
.testimonial-card + .testimonial-card {
  margin-top: 18px;
}

/* Smooth transitions for interactions */
.button-primary, .button-secondary, .feature-grid > div,
.card, .testimonial-card, .main-nav a, .footer-nav a, .mobile-nav a {
  transition: background 0.18s, color 0.18s, box-shadow 0.13s, transform 0.15s;
}

/* Hide visually but keep accessible (for toggles etc.) */
.sr-only {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* END */
