/* CSS 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;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #F9F7F1;
  color: #3A3D36;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #7B2D5C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #497C4A;
  outline: none;
}
ul, ol {
  margin-left: 1.25em;
}
hr {
  border: none;
  border-bottom: 1px solid #E1DFD8;
  margin: 24px 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #2E3723;
  letter-spacing: -0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  line-height: 1.25;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
p, li, span, em, strong {
  font-size: 1rem;
  color: #3A3D36;
}
strong {
  color: #497C4A;
}
em {
  color: #7B6E57;
  font-style: italic;
}


/* Container & Layouts */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  padding: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FCFAF7;
  border-radius: 28px;
  box-shadow: 0 3px 14px rgba(60, 60, 50, 0.07);
}

/* Card and Flexbox Utility Layouts */
.card-container, .content-grid, .product-grid, .service-details-grid, .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card-container {
  gap: 24px;
}
.card {
  background: #FFF;
  margin-bottom: 20px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(50, 90, 70, 0.07), 0 1.5px 6px rgba(80, 86, 70, 0.10);
  position: relative;
  min-width: 220px;
  max-width: 100%;
  padding: 24px;
}
.content-grid {
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF;
  border-radius: 18px 50px 22px 18px;
  box-shadow: 0 2px 14px rgba(61, 85, 53, 0.10);
  margin-bottom: 20px;
  position: relative;
}
.newsletter-signup, .community-highlights, .trend-highlights {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #F2EADC;
  border-radius: 20px;
  padding: 26px 32px;
  margin-bottom: 24px;
  box-shadow: 0 1.5px 8px rgba(160, 145, 100, 0.07);
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
  list-style: disc;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.filter-bar button {
  background: #ECE2CA;
  color: #497C4A;
  border: none;
  border-radius: 14px;
  padding: 8px 20px;
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.filter-bar button:hover, .filter-bar button:focus {
  background: #497C4A;
  color: #FFF;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.product-card {
  flex: 1 1 300px;
  background: #FFF;
  border-radius: 20px 33px 14px 20px;
  padding: 22px 20px;
  box-shadow: 0 2px 12px rgba(51,72,53,0.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.19s, transform 0.15s;
  margin-bottom: 20px;
  min-width: 200px;
  max-width: 340px;
}
.product-card:hover, .product-card:focus {
  box-shadow: 0 6px 32px rgba(87, 117, 80, 0.15);
  transform: translateY(-4px) scale(1.03);
  z-index: 2;
}
.product-card img {
  margin-bottom: 18px;
  height: 48px;
  width: 48px;
}
.product-card h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
  color: #497C4A;
}

.service-details-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.service-details-grid > div {
  flex: 1 1 280px;
  background: #FFF;
  border-radius: 16px 36px 12px 20px;
  padding: 20px 14px 18px 22px;
  margin-bottom: 0;
  box-shadow: 0 2px 12px rgba(106, 105, 73, 0.09);
  min-width: 200px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
}

.opening-hours, .map-embed {
  margin: 16px 0;
  padding: 16px 18px;
  background: #F0FFE7;
  border-radius: 10px 14px 10px 22px;
  font-size: 1.05rem;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}
.text-section {
  margin-bottom: 18px;
  padding: 14px 22px;
  background: #F6F5EF;
  border-radius: 12px;
}

.usp-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: disc inside;
  margin-bottom: 16px;
}

/* Organic Decorative Elements (buttons, shapes) */
.cta-button {
  background: #497C4A;
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 28px 40px 20px 28px;
  padding: 12px 36px;
  font-size: 1.12rem;
  box-shadow: 0 3px 10px rgba(106, 133, 84, 0.09);
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s, transform 0.14s;
  display: inline-block;
  margin: 11px 0;
}
.cta-button.secondary {
  background: #ECE2CA;
  color: #497C4A;
}
.cta-button:hover, .cta-button:focus {
  background: #7B2D5C;
  color: #FFF;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 32px rgba(80, 117, 68, 0.16);
}
.cta-button.secondary:hover, .cta-button.secondary:focus {
  background: #497C4A;
  color: #FFF;
}

button, input[type="button"], input[type="submit"] {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 16px 0 12px 0;
  box-shadow: 0 1.5px 14px rgba(127, 100, 57, 0.08);
  position: relative;
  z-index: 10;
}
header > a img {
  width: 54px;
  margin-right: 20px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 28px 0 0;
}
header nav a {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  color: #497C4A;
  padding: 6px 14px;
  border-radius: 14px 28px 12px 16px;
  transition: background 0.17s, color 0.17s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  background: #F1E1CB;
  color: #7B2D5C;
}
header .cta-button {
  margin-left: auto;
  margin-right: 18px;
}
header .mobile-menu-toggle {
  background: #F1E1CB;
  color: #497C4A;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 1.65rem;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: background 0.15s, color 0.15s;
}
header .mobile-menu-toggle:hover, header .mobile-menu-toggle:focus {
  background: #497C4A;
  color: #FFF;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #ECEAD1;
  box-shadow: 0 6px 40px rgba(65,90,50,0.07);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.37s cubic-bezier(.68,-0.55,.27,1.55), opacity 0.22s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: #497C4A;
  color: #FFF;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
  align-self: flex-end;
  margin: 26px 28px 16px 0;
  cursor: pointer;
  z-index: 1003;
  transition: background 0.17s, color 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #7B2D5C;
  color: #FFF6F2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 28px 0 0 0;
}
.mobile-nav a {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.18rem;
  color: #497C4A;
  padding: 16px 0;
  border-radius: 18px 30px 12px 20px;
  width: 74vw;
  text-align: center;
  background: none;
  transition: background 0.16s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F2EADC;
  color: #7B2D5C;
}

/* HIDE NAV ON MOBILE */
@media (max-width: 980px) {
  header nav, header .cta-button {
    display: none !important;
  }
  header .mobile-menu-toggle {
    display: flex;
    margin-left: auto;
  }
  .mobile-menu {
    display: flex;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #ECE2CA;
  color: #3A3D36;
  box-shadow: 0 -2px 20px rgba(110,90,40,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 12px 18px 12px;
  z-index: 2000;
  transition: transform 0.28s cubic-bezier(.68,-0.55,.27,1.55), opacity 0.17s;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  font-size: 1.08rem;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner p {
  flex: 1;
  margin-right: 24px;
  color: #3A3D36;
}
.cookie-banner .cookie-btn {
  background: #497C4A;
  color: #FFF;
  border: none;
  border-radius: 14px 24px 14px 24px;
  padding: 8px 20px;
  margin: 0 7px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s, color 0.12s;
  box-shadow: 0 1.5px 7px rgba(80, 117, 68, 0.10);
}
.cookie-banner .cookie-btn.secondary {
  background: #ECE2CA;
  color: #497C4A;
  border: 1px solid #497C4A;
}
.cookie-banner .cookie-btn:hover, 
.cookie-banner .cookie-btn:focus {
  background: #7B2D5C;
  color: #FFF;
}
.cookie-banner .cookie-btn.secondary:hover, 
.cookie-banner .cookie-btn.secondary:focus {
  background: #497C4A;
  color: #FFF;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(51,42,32,0.19);
  backdrop-filter: blur(2.7px);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #FCFAF7;
  color: #3A3D36;
  border-radius: 24px 40px 24px 24px;
  box-shadow: 0 6px 44px rgba(93, 110, 78, 0.13);
  padding: 34px 32px 28px 32px;
  max-width: 420px;
  min-width: 260px;
  width: 90vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal h3 {
  color: #497C4A;
  margin-bottom: 8px;
  font-size: 1.25rem;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 18px;
  background: #7B2D5C;
  color: #FFF;
  border: none;
  border-radius: 49%;
  width: 34px;
  height: 34px;
  font-size: 1.18rem;
  cursor: pointer;
  transition: background 0.13s, color 0.11s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #497C4A;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.cookie-category .toggle {
  width: 36px;
  height: 22px;
  border-radius: 20px;
  background: #C0D9B2;
  position: relative;
  cursor: pointer;
  border: none;
  transition: background 0.16s;
  outline: none;
}
.cookie-category .toggle[aria-checked='true'] {
  background: #497C4A;
}
.cookie-category .toggle:before {
  content: "";
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  background: #FFF;
  border-radius: 50%;
  transition: left 0.15s;
}
.cookie-category .toggle[aria-checked='true']:before {
  left: 16px;
}
.cookie-category label {
  font-size: 1rem;
  color: #497C4A;
}

/* FOOTER */
footer {
  background: #F1E1CB;
  padding: 30px 0 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
  border-radius: 34px 34px 0 0;
  box-shadow: 0 -3px 12px rgba(136,115,100, 0.04);
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
  justify-content: center;
}
footer nav a {
  color: #497C4A;
  font-size: 1rem;
  padding: 7px 11px;
  border-radius: 12px;
  transition: color 0.17s, background 0.17s;
}
footer nav a:hover, footer nav a:focus {
  color: #7B2D5C;
  background: #FFF;
}
.footer-logo {
  margin-bottom: 12px;
}
footer p {
  color: #7B2D5C;
  font-size: 0.95rem;
}

/* LISTS & FORMS (secondary) */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
  list-style: disc inside;
}
ol {
  margin-left: 1.4em;
}

/* Table & Opening Hours */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
td, th {
  border: 1px solid #E4E1D1;
  padding: 8px 12px;
}

/* Responsive - Mobile First Breakpoints */
@media (max-width: 768px) {
  .container {
    padding: 0 7px;
  }
  .card-container, .content-grid, .product-grid, .service-details-grid, .cta-buttons, .category-list, .testimonial-card, .feature-item {
    flex-direction: column !important;
    gap: 18px !important;
    align-items: stretch !important;
  }
  .section {
    padding: 28px 5px;
    margin-bottom: 38px;
  }
  header {
    padding: 10px 0 7px 0;
  }
  .footer-logo img {
    width: 32px;
  }
  .product-card, .service-details-grid > div {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    padding: 17px 10px;
  }
  .testimonial-card {
    padding: 15px 8px;
    border-radius: 16px 35px 16px 16px;
  }
  .newsletter-signup, .community-highlights, .trend-highlights {
    padding: 18px 10px;
    border-radius: 14px;
  }
}

/* Further Small Device Tidy */
@media (max-width: 480px) {
  h1 {
    font-size: 1.55rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  .product-card h3 {font-size: 1.13rem;}
}

/* Accessibility & Focus Outline */
a:focus-visible, button:focus-visible, .cta-button:focus-visible {
  outline: 2.5px solid #7B2D5C;
  outline-offset: 2.5px;
}

/* Organic/Nature Flourishes */
.section, .card, .testimonial-card, .product-card, .service-details-grid > div {
  background-image:
    repeating-radial-gradient(circle at 88% 13%, #D9F3CA 0px, transparent 20px),
    repeating-radial-gradient(circle at 2% 88%, #F6E6C2 0px, transparent 30px);
  background-size: 160px 140px, 320px 210px;
  background-repeat: no-repeat;
  background-blend-mode: lighten;
}

/* Organic divider for some lists (ex. in testimonials/news blocks) */
.testimonial-card:after, .news-list li:not(:last-child):after {
  content: "";
  display: block;
  height: 1px;
  width: 65%;
  background: #E1DFD8;
  margin: 16px auto 0 0;
  border-radius: 1.5px;
}
.news-list li:last-child:after {
  display: none;
}

/* Additional micro-interactions */
.cta-button,
.filter-bar button,
.cookie-btn {
  will-change: transform, box-shadow;
}

/* Hide cookie modal/overlay by default */
.cookie-modal-overlay, .cookie-banner {
  display: flex;
}

/* Hide visually when closed via classes set in JS */
.cookie-modal-overlay:not(.open) {
  display: none;
}

/* End of CSS */
