/* Prism Wagon Reset & Variables */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #29524A;
  background: #F5F7DF;
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.2px;
  -webkit-font-smoothing: antialiased;
  background-attachment: fixed;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #29524A;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover,
a:focus {
  color: #8FCB9B;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.2em;
  margin-bottom: 24px;
}
strong {
  font-weight: 700;
  color: #29524A;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #29524A;
  line-height: 1.1;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.35rem; margin-bottom: 10px; }
h4 { font-size: 1.15rem; margin-bottom: 8px; }
p, li, address { font-size: 1rem; margin-bottom: 12px; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.15rem; }
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Spacing for sections and cards */
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(41, 82, 74, 0.08);
  padding: 30px 22px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.22s, transform 0.17s;
  min-width: 260px;
  max-width: 320px;
  flex: 1 1 260px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px rgba(41, 82, 74, 0.13);
  transform: translateY(-3px) scale(1.02);
}

.content-grid, .features-grid, .product-list-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonials, .testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(41,82,74,0.09);
  padding: 20px 24px;
  min-width: 200px;
  max-width: 340px;
  margin-bottom: 20px;
  color: #29524A;
  font-size: 1rem;
  transition: box-shadow 0.22s, transform 0.18s;
}
.testimonial-card strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #29524A;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(41, 82, 74, 0.16);
  transform: translateY(-2px) scale(1.017);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(41,82,74,0.06);
  padding: 22px 20px;
  min-width: 200px;
  max-width: 320px;
}

.features-grid > div, .features-grid .feature-item {
  flex: 1 1 220px;
  min-width: 220px;
  background: #fff;
  border-radius: 18px;
  padding: 22px 18px; 
  margin-bottom: 20px;
  box-shadow: 0 1px 8px rgba(41, 82, 74, 0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.features-grid img {
  width: 40px;
  margin-bottom: 12px;
}

.text-section ul {
  margin-bottom: 16px;
  padding-left: 22px;
}
.text-section li {
  margin-bottom: 9px;
}
.eco-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

/* Cards (Products, Shop, Blog) */
.product-list-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}
.product-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(41,82,74,0.08);
  padding: 22px 16px;
  min-width: 200px;
  max-width: 280px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.15s;
  flex: 1 1 200px;
  color: #29524A;
}
.product-card:hover {
  box-shadow: 0 6px 22px rgba(41,82,74,0.13);
  transform: scale(1.017);
}

.blog-article {
  background: #FFF;
  padding: 22px 18px;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(41,82,74,0.07);
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.blog-article:hover {
  box-shadow: 0 6px 24px rgba(41,82,74,0.13);
  transform: translateY(-2px);
}

/* Navigation */
header {
  background: #fff;
  border-bottom: 1px solid #E8EFDF;
  padding: 0;
  position: relative;
  z-index: 100;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 16px 0;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.075rem;
}
.main-nav > a img {
  height: 42px;
  width: auto;
  margin-right: 8px;
}
.main-nav > a {
  padding: 8px 18px;
  border-radius: 8px;
  margin-right: 2px;
  transition: background 0.18s, color 0.15s;
  white-space: nowrap;
}
.main-nav > a:hover:not(.btn-primary),
.main-nav > a:focus:not(.btn-primary) {
  background: #F5F7DF;
  color: #29524A;
}
.btn-primary {
  background: #8FCB9B;
  color: #29524A;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  padding: 10px 28px;
  box-shadow: 0 3px 12px rgba(143,203,155,0.07);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  cursor: pointer;
  font-size: 1.12rem;
  transition: background 0.16s, color 0.13s, box-shadow 0.19s;
  margin-left: 12px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #29524A;
  color: #fff;
  box-shadow: 0 5px 18px rgba(41,82,74,0.23);
}

/* Hamburger & Mobile Navigation */
.mobile-menu-toggle {
  display: none;
  background: #8FCB9B;
  color: #29524A;
  font-size: 2rem;
  border: none;
  border-radius: 10px;
  padding: 7px 16px 9px 16px;
  cursor: pointer;
  margin-left: auto;
  transition: background 0.12s, box-shadow 0.15s;
  box-shadow: 0 2px 8px rgba(41,82,74,0.09);
  z-index: 210;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #29524A;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  transform: translateX(-105%);
  transition: transform 0.35s cubic-bezier(.8,.04,.45,1), box-shadow 0.2s;
  z-index: 2500;
  box-shadow: 0 0 0 transparent;
  display: flex;
  flex-direction: column;
  padding: 0 0 0 0;
  width: 82vw;
  max-width: 340px;
  min-width: 240px;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 0 32px 8px rgba(41,82,74,0.13);
}
.mobile-menu-close {
  background: #fff;
  color: #29524A;
  border: none;
  font-size: 2rem;
  margin: 20px 0 10px 24px;
  cursor: pointer;
  align-self: flex-start;
  border-radius: 6px;
  transition: background .14s, color 0.14s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #F5F7DF;
  color: #8FCB9B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.mobile-nav a {
  font-size: 1.13rem;
  color: #29524A;
  padding: 12px 0;
  border-radius: 12px;
  font-weight: 600;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E8EFDF;
  color: #8FCB9B;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 16px;
    font-size: 1rem;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 12px;
    font-size: 0.97rem;
  }
}
@media (max-width: 880px) {
  .main-nav {
    gap: 4px;
  }
}
@media (max-width: 820px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
    position: absolute;
    top: 20px;
    right: 22px;
  }
}
@media (min-width: 821px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* Footer */
footer {
  background: #8FCB9B;
  color: #29524A;
  padding: 36px 0 24px 0;
  border-top: 1px solid #E8EFDF;
  font-size: 1rem;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.footer-nav a {
  color: #29524A;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 10px;
  background: transparent;
  transition: background 0.13s, color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #F5F7DF;
  color: #29524A;
}
.contact-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 200px;
  max-width: 330px;
  font-style: normal;
  font-size: 1rem;
}
.contact-section img:first-child {
  width: 36px;
  margin-bottom: 9px;
}
.contact-section address {
  margin-bottom: 5px;
  color: #29524A;
}
.brand-credits {
  margin-top: 14px;
  color: #29524A;
  opacity: 0.8;
  font-size: 0.93rem;
}

@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}

/* Utility & Special Classes */
.text-section { max-width: 700px; }
.team-section { display: flex; flex-wrap: wrap; gap: 24px; }
.shop-filters ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin-bottom: 8px;
}
.shop-filters li {
  background: #E8EFDF;
  border-radius: 10px;
  padding: 6px 16px;
  font-size: 1rem;
  color: #29524A;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
}
.shop-sort {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.shop-sort label {
  font-weight: 500;
}
.shop-sort select {
  padding: 7px 18px 7px 9px;
  border-radius: 7px;
  border: 1px solid #8FCB9B;
  background: #fff;
  font-family: inherit;
  font-size: 1rem;
  color: #29524A;
  transition: border 0.14s;
}
.shop-sort select:focus {
  outline: none;
  border: 1.5px solid #29524A;
}
.guide-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  list-style: none; padding-left: 0;
}
.guide-categories a {
  background: #8FCB9B;
  color: #29524A;
  padding: 8px 17px;
  border-radius: 10px;
  font-weight: 600;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  transition: background 0.15s, color 0.15s;
}
.guide-categories a:hover, .guide-categories a:focus {
  background: #29524A;
  color: #fff;
}
.highlight-articles h3 {
  color: #29524A;
  font-size: 1.2rem;
  margin-top: 12px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-details div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.08rem;
}
.contact-details img {
  width: 22px;
}

.blog-archive {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  background: #E8EFDF;
  border-radius: 8px;
  padding: 7px 13px;
}
.blog-categories {
  margin-bottom: 8px;
  background: #F5F7DF;
  border-radius: 8px;
  padding: 8px 14px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

/* Buttons (general) */
button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: #8FCB9B;
  color: #29524A;
  font-size: 1rem;
  border: none;
  border-radius: 999px;
  padding: 9px 26px;
  margin: 0;
  cursor: pointer;
  transition: background 0.17s, box-shadow 0.14s, color 0.13s;
  box-shadow: 0 0 0 transparent;
}
button:hover, button:focus {
  background: #29524A;
  color: #fff;
  box-shadow: 0 2px 12px rgba(41,82,74,0.11);
}

@media (max-width: 768px) {
  .container { padding: 0 7px; }
  section { padding: 26px 0 0 0; }
  .features-grid, .content-grid, .product-list-grid {
    flex-direction: column;
    gap: 14px;
  }
  .footer-nav { gap: 7px; }
  footer .content-wrapper {
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .card, .features-grid > div, .feature-item, .testimonial-card, .product-card {
    max-width: 100%;
    min-width: 0;
  }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: #fffbe6;
  color: #29524A;
  border-top: 2px solid #8FCB9B;
  box-shadow: 0 -2px 22px rgba(41,82,74,0.11);
  z-index: 6000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 26px 16px 18px 16px;
  gap: 35px;
  font-size: 1rem;
  animation: cookie-slide-in 0.42s cubic-bezier(.56,0,.38,1.06);
}
@keyframes cookie-slide-in {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  max-width: 600px;
  margin: 0 32px 0 0;
}
.cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  min-width: 130px;
  padding: 9px 0;
  border-radius: 999px;
  font-size: 1rem;
  box-shadow: 0 1px 4px rgba(143,203,155,0.10);
  font-weight: 600;
  border: none;
}
.cookie-banner .accept {
  background: #8FCB9B;
  color: #29524A;
  border: 1.5px solid #29524A;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #29524A;
  color: #fff;
  border-color: #8FCB9B;
}
.cookie-banner .reject {
  background: #fff;
  color: #8FCB9B;
  border: 1.5px solid #8FCB9B;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #8FCB9B;
  color: #fff;
}
.cookie-banner .settings {
  background: #F5F7DF;
  color: #29524A;
  border: 1.5px solid #E8EFDF;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #29524A;
  color: #fff;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px 9px 14px 9px;
  }
  .cookie-banner p {
    margin: 0 0 10px 0;
    font-size: 0.97rem;
  }
  .cookie-actions { gap: 8px; }
}

/* Cookie Consent Modal */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right:0; bottom:0;
  background: rgba(41,82,74, 0.34);
  z-index: 6100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.21s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 22px;
  padding: 38px 32px 30px 32px;
  box-shadow: 0 7px 38px rgba(41,82,74,0.17);
  min-width: 320px;
  max-width: 94vw;
  color: #29524A;
  display: flex; flex-direction: column; gap: 22px;
  animation: modal-fade-in 0.33s cubic-bezier(.67,.01,.62,1.04);
  position: relative;
}
@keyframes modal-fade-in {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.cookie-modal-content h2 {
  font-size: 1.4rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin-bottom: 0;
}
.cookie-pref-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  background: #F5F7DF;
  padding: 11px 17px;
  border-radius: 12px;
}
.cookie-category .toggle {
  margin-left: auto;
}
.toggle {
  width: 45px;
  height: 26px;
  border-radius: 14px;
  background: #E8EFDF;
  position: relative;
  cursor: pointer;
  transition: background 0.17s;
  display: inline-block;
}
.toggle input[type='checkbox'] {
  display: none;
}
.toggle-slider {
  position: absolute;
  left: 4px; top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #8FCB9B;
  transition: left 0.19s, background 0.16s;
}
.toggle input[type='checkbox']:checked + .toggle-slider {
  left: 23px;
  background: #29524A;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-close {
  background: transparent;
  color: #29524A;
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 2rem;
  padding: 6px 10px;
  border: none;
  cursor: pointer;
  transition: color 0.13s, background 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { color: #8FCB9B; background: #F5F7DF; }
@media (max-width: 480px) {
  .cookie-modal-content {
    padding: 19px 7px 17px 7px;
    min-width: 0;
  }
}

/* Micro-interactions */
a, .btn-primary, button, .product-card, .testimonial-card, .feature-item, .card {
  transition: box-shadow 0.20s, background 0.14s, color 0.16s, transform 0.13s;
}

/* Responsive Utilities */
@media (max-width: 1100px) {
  .features-grid, .content-grid, .product-list-grid {
    gap: 14px;
  }
}
@media (max-width: 700px) {
  .testimonials, .testimonial-cards {
    flex-direction: column;
    gap: 14px;
  }
  .footer-nav { gap: 4px; }
}

/* Avoid overlapping in all flex containers */
.content-wrapper, .card-container, .content-grid, .features-grid, .testimonials, .testimonial-cards, .team-section, .product-list-grid {
  gap: 20px;
}

/* Remove list style from footer and guides */
.footer-nav, .guide-categories {
  list-style: none;
  padding-left: 0;
}

/* Hide cookie modal by default */
.cookie-modal {
  display: flex;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}

/* Hide cookie banner when accepted */
.cookie-banner.hidden {
  display: none !important;
}

/* Support for visually impaired: Focus indicators */
a:focus, button:focus, .btn-primary:focus {
  outline: 2.5px dashed #8FCB9B;
  outline-offset: 2px;
}

/* Accentuate the warm/friendly aesthetic */
.card, .testimonial-card, .feature-item, .product-card {
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(143,203,155,0.08);
  background: #fff;
}
/* Soft shadow for elevated look */
.card:hover, .product-card:hover, .testimonial-card:hover, .feature-item:hover {
  box-shadow: 0 8px 32px rgba(143,203,155,0.13), 0 0.5px 1.5px rgba(41,82,74,0.06);
}

/* End of CSS */
