/* --- 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;
  box-sizing: border-box;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Georgia', 'Times New Roman', serif;
  background: #FAFAF8;
  color: #22422D;
  min-height: 100vh;
}
a {
  color: #25653A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #A7862B;
}
ul, ol {
  list-style: disc inside;
  margin-left: 1em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}

/* --- BRAND TYPOGRAPHY & SCALE --- */
h1 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 28px;
  line-height: 1.17;
  color: #22422D;
  letter-spacing: 0.02em;
}
h2 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.18;
  color: #25653A;
}
h3 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin: 12px 0 10px 0;
  color: #33654C;
}
p, li, .text-section {
  font-family: 'Roboto', 'Georgia', serif;
  font-size: 1.06rem;
  color: #3B4B39;
  margin-bottom: 12px;
  line-height: 1.7;
}
strong {
  font-weight: 600;
  color: #25653A;
}
.text-section ul {
  margin-bottom: 12px;
}

/* --- CONTAINERS & LAYOUT --- */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

@media (max-width: 768px) {
  .section {
    padding: 28px 10px;
    margin-bottom: 38px;
  }
  .container {
    padding: 0 10px;
  }
}

/* --- HEADER --- */
header {
  background: #fff;
  border-bottom: 1px solid #E3E0D7;
  padding: 0;
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  padding: 14px 20px 12px 20px;
}
header img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.05rem;
  color: #25653A;
  padding: 6px 0;
  transition: color 0.2s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: #A7862B;
}
.btn-primary {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.02rem;
  color: #fff;
  background: #25653A;
  padding: 11px 32px;
  border-radius: 28px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(37,101,58,0.09);
  border: none;
  outline: none;
  cursor: pointer;
  letter-spacing: 0.05em;
  margin-left: 12px;
  transition: background 0.18s, box-shadow 0.18s, color 0.22s;
  position: relative;
  z-index: 2;
}
.btn-primary:hover, .btn-primary:focus {
  background: #33654C;
  color: #F7E0A2;
  box-shadow: 0 4px 16px rgba(37,101,58,0.19);
}

/* Hide burger initially */
.mobile-menu-toggle {
  display: none;
}

/* --- HERO --- */
.hero {
  background: #F8F6F1;
  border-radius: 0 0 56px 56px;
  box-shadow: 0 7px 26px rgba(176,199,174,0.17);
  margin-bottom: 60px;
}
.hero .container {
  padding-top: 50px;
  padding-bottom: 60px;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 650px;
  gap: 18px;
}
.hero h1 {
  color: #25653A;
  margin-bottom: 18px;
}
.hero p {
  margin-bottom: 27px;
  color: #3B4B39;
}

/* --- FLEXBOX SPACING LAYOUTS --- */
.features-grid,
.tips-grid,
.service-grid,
.service-list,
.product-list,
.usp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .features-grid,
  .tips-grid,
  .service-grid,
  .service-list,
  .product-list,
  .usp-list {
    gap: 16px;
  }
}

.features-grid > *,
.tips-grid > *,
.service-grid > *,
.service-list > *,
.product-list > *,
.usp-list > * {
  flex: 1 1 200px;
  min-width: 220px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 1px 8px rgba(37,101,58,0.05);
  padding: 26px 22px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.features-grid > *:hover,
.tips-grid > *:hover,
.service-grid > *:hover,
.service-list > *:hover,
.product-list > *:hover {
  box-shadow: 0 6px 24px rgba(37,101,58,0.14);
  transform: translateY(-4px) scale(1.015);
}

@media (max-width: 950px) {
  .features-grid > *, .tips-grid > *, .service-grid > *, .service-list > *, .product-list > *, .usp-list > * {
    min-width: 45vw;
  }
}
@media (max-width: 600px) {
  .features-grid, .tips-grid, .service-grid, .service-list, .product-list, .usp-list {
    flex-direction: column;
    gap: 12px;
  }
  .features-grid > *, .tips-grid > *, .service-grid > *, .service-list > *, .product-list > *, .usp-list > * {
    min-width: 0;
    width: 100%;
    margin-bottom: 16px;
    padding: 18px 12px;
  }
}

/* --- TESTIMONIALS --- */
.testimonials-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.testimonial-card {
  background: #F9FBF7;
  border-radius: 18px;
  box-shadow: 0 1px 8px rgba(37,101,58,0.08);
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  min-width: 240px;
  max-width: 340px;
  margin-bottom: 20px;
  border-left: 4px solid #25653A;
  color: #22422D;
  font-size: 1.08rem;
}
.testimonial-card p {
  color: #22422D;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.11rem;
  margin-bottom: 8px;
  font-style: italic;
}
.testimonial-card span {
  font-family: 'Roboto','Georgia',serif;
  color: #647963;
  font-size: 1rem;
  align-self: flex-end;
}

@media (max-width: 900px) {
  .testimonials-slider, .testimonial-list {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
    padding: 15px 12px;
  }
}

.star-ratings {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.12rem;
  color: #25653A;
  margin-bottom: 18px;
}
.summary-stats ul {
  margin-left: 1em;
  line-height: 1.5;
}

/* --- USP & ICON ROWS --- */
.usp-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  color: #25653A;
  font-size: 1.04rem;
}
.usp-icons img {
  height: 34px;
  margin-right: 6px;
}
.usp-icons span {
  margin-right: 24px;
}
@media (max-width:600px){
  .usp-icons{
    flex-direction: column;
    gap: 5px;
    margin-top: 13px;
    align-items: flex-start;
  }
  .usp-icons img, .usp-icons span {
    margin:0 0 2px 0;
  }
}

.shipping-info,
.eco-guarantee {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0 0 0;
  font-size: 1.01rem;
  color: #33654C;
}

.shipping-info {
  background: #F7E0A2;
  border-radius: 16px;
  padding: 10px 18px;
  box-shadow: 0 1px 8px rgba(185, 160, 41, 0.04);
}
.eco-guarantee {
  background: #DFF3E7;
  border-radius: 16px;
  padding: 10px 18px;
  box-shadow: 0 1px 8px rgba(37,101,58, 0.07);
  margin-top: 12px;
}

/* --- BUTTONS, MICRO-INTERACTIONS --- */
.btn-primary,
button.btn-primary {
  box-shadow: 0 2px 8px rgba(37,101,58,0.09);
  border-radius: 28px;
  background: #25653A;
  color: #fff;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 600;
  padding: 10px 32px;
  border: none;
  cursor: pointer;
  transition: background 0.19s, box-shadow 0.16s, color 0.18s, transform 0.2s;
  margin-top: 10px;
  letter-spacing: 0.01em;
}
.btn-primary:hover, .btn-primary:focus {
  background: #3A8A5B;
  color: #F7E0A2;
  box-shadow: 0 4px 14px rgba(56, 111, 62, 0.13);
  transform: translateY(-2px) scale(1.03);
}

/* --- CARDS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 2px 12px rgba(37, 101, 58, 0.09);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(37, 101, 58, 0.15);
  transform: translateY(-2px) scale(1.015);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 19px 18px;
}

/* --- SHOP FILTERS --- */
.product-filters {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 14px 0 16px 0;
}
.product-filters ul {
  display: flex;
  gap: 12px;
  list-style: none;
}
.product-filters li {
  font-size: 1rem;
  font-family: 'Roboto', 'Georgia', serif;
  padding: 5px 14px;
  border-radius: 16px;
  background: #EFEDE2;
  color: #22422D;
  cursor: pointer;
  transition: background 0.17s, color 0.16s;
}
.product-filters li:hover {
  background: #B8E6C1;
  color: #25653A;
}

/* --- FOOTER --- */
footer {
  background: #F7F6F4;
  border-top: 1px solid #ECEBE1;
  margin-top: 42px;
  padding: 36px 0 16px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 20px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.footer-nav a {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: #25653A;
  font-size: 1.01rem;
  padding: 3px 0;
}
.contact-info {
  font-size: 0.97rem;
  color: #22553C;
  font-family: 'Roboto', 'Georgia', serif;
}
.contact-info img {
  display: inline-block;
  vertical-align: middle;
  height: 15px;
  margin-right: 6px;
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 0 5px;
  }
}

/* --- FLEX PATTERNS --- */
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .content-grid {
    flex-direction: column;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- SOCIAL LINKS & SHARING --- */
.social-links,
.social-sharing {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 15px;
}
.social-links li, .social-sharing li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1.01rem;
  transition: color 0.2s;
  cursor: pointer;
}
.social-links li:hover, .social-sharing li:hover {
  color: #25653A;
}
.social-links img, .social-sharing img {
  height: 21px;
  width: 21px;
}

/* --- PAGE TEXT BLOCKS --- */
.text-section {
  font-family: 'Roboto','Georgia',serif;
  font-size: 1.08rem;
  color: #384137;
  margin-bottom: 18px;
}

.price {
  color: #3A8A5B;
  font-weight: bold;
  font-size: 1.12rem;
}

/* --- ADDRESS & CONTACT BLOCKS --- */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  margin-top: 16px;
}
.address-block, .phone-email-block, .opening-hours {
  background: #F9FBF7;
  border-radius: 14px;
  padding: 18px 22px;
  min-width: 190px;
  flex: 1 1 200px;
}
.contact-section h2 {
  font-size: 1.13rem;
  color: #25653A;
  margin-bottom: 9px;
}
@media (max-width: 700px) {
  .contact-section {
    flex-direction: column;
    gap: 10px;
  }
}

/* --- MOBILE FIRST NAVIGATION --- */
@media (max-width: 1024px) {
  .main-nav, .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 22px;
    top: 21px;
    z-index: 1202;
    background: #fff;
    border-radius: 50%;
    width: 41px;
    height: 41px;
    font-size: 2rem;
    line-height: 1;
    color: #25653A;
    border: 1.2px solid #DFF3E7;
    box-shadow: 0 2px 8px rgba(37,101,58,0.06);
    cursor: pointer;
    transition: box-shadow 0.15s, background 0.13s;
  }
  .mobile-menu-toggle:active, .mobile-menu-toggle:hover {
    background: #B8E6C1;
    color: #184624;
  }
}
/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 1200;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(250,250,248,0.97);
  box-shadow: 0 2px 32px rgba(37,101,58,0.18);
  transition: transform 0.37s cubic-bezier(0.86, 0, 0.07, 1);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 20px 16px 32px;
  transform: translateX(100%);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0%);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #25653A;
  align-self: flex-end;
  margin-bottom: 28px;
  z-index: 1203;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover {
  color: #8B710B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.mobile-nav a {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.28rem;
  color: #22422D;
  padding: 11px 0 11px 4px;
  border-radius: 6px;
  transition: background 0.19s, color 0.18s;
  min-width: 130px;
  margin-right: 8px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #B8E6C1;
  color: #25653A;
}

@media (max-width: 500px) {
  .mobile-menu {
    padding: 24px 10px 10px 10px;
  }
  .mobile-nav a {
    font-size: 1.09rem;
    padding: 8px 2px;
  }
  .mobile-menu-close {
    font-size: 1.3rem;
  }
}

/* --- ANIMATIONS --- */
@keyframes menu-slide-in {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
@keyframes menu-slide-out {
  from { transform: translateX(0); }
  to { transform: translateX(100%); }
}

.mobile-menu.open {
  animation: menu-slide-in 0.35s cubic-bezier(0.86, 0, 0.07, 1);
}
.mobile-menu.closing {
  animation: menu-slide-out 0.25s cubic-bezier(0.86, 0, 0.07, 1);
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #FFFFFC;
  color: #22422D;
  border-top: 1px solid #EFEDE2;
  box-shadow: 0 -2px 20px rgba(50, 61, 41, 0.09);
  padding: 24px 15px 18px 15px;
  display: flex;
  align-items: flex-start;
  gap: 42px;
  justify-content: space-between;
  z-index: 20000;
  font-family: 'Roboto','Georgia',serif;
  font-size: 1.03rem;
  transition: transform 0.28s;
}
.cookie-consent-banner.hide {
  display: none;
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}
.cookie-consent-banner button {
  font-family: 'Georgia', 'Times New Roman', serif;
  border-radius: 22px;
  border: none;
  font-size: 0.98rem;
  padding: 8px 23px;
  cursor: pointer;
  margin: 0 2px;
  transition: background 0.17s, color 0.21s, box-shadow 0.15s;
}
.cookie-consent-banner .accept {
  background: #25653A;
  color: #fff;
  font-weight: 600;
}
.cookie-consent-banner .accept:hover,.cookie-consent-banner .accept:focus {
  background: #3A8A5B;
  color: #ECEBE1;
}
.cookie-consent-banner .reject {
  background: #E7CE7E;
  color: #584910;
}
.cookie-consent-banner .reject:hover,.cookie-consent-banner .reject:focus {
  background: #C2A025;
  color: #fff;
}
.cookie-consent-banner .settings {
  background: #F7E0A2;
  color: #7D6532;
}
.cookie-consent-banner .settings:hover, .cookie-consent-banner .settings:focus {
  background: #ECEBE1;
  color: #25653A;
}
@media (max-width: 680px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .cookie-consent-banner .cookie-buttons {
    gap: 10px;
    flex-wrap: wrap;
  }
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 21000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(37,101,58,0.27);
  justify-content: center;
  align-items: center;
  animation: modalfade 0.18s;
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes modalfade {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 36px rgba(37,101,58,0.19);
  padding: 32px 22px 22px 22px;
  max-width: 430px;
  min-width: 260px;
  color: #22422D;
  position: relative;
  font-family: 'Georgia','Times New Roman',serif;
  animation: modalfade 0.17s;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal h2 {
  font-size: 1.31rem;
  margin-bottom: 10px;
  color: #25653A;
}
.cookie-modal .modal-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #25653A;
  position: absolute;
  right: 14px;
  top: 11px;
  cursor: pointer;
  z-index: 11;
}
.cookie-modal .modal-close:hover {
  color: #A7862B;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F7F6F4;
  border-radius: 13px;
  padding: 10px 15px 9px 15px;
  font-size: 1rem;
}
.cookie-category .toggle {
  margin-left: 10px;
  min-width: 45px;
  height: 24px;
  appearance: none;
  background: #e7e7e1;
  border-radius: 13px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.17s;
  border: 1.2px solid #ECEBE1;
}
.cookie-category .toggle:checked {
  background: #B8E6C1;
}

.cookie-category .toggle::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.16s;
}
.cookie-category .toggle:checked::before {
  transform: translateX(19px);
}
.cookie-category.is-essential .toggle {
  opacity: 0.68;
  pointer-events: none;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal button {
  border-radius: 18px;
  font-size: 1.02rem;
  padding: 8px 21px;
  border: none;
  cursor: pointer;
  transition: background 0.16s, color 0.14s;
}
.cookie-modal .confirm {
  background: #25653A;
  color: #fff;
}
.cookie-modal .confirm:hover {
  background: #33654C;
  color: #F7E0A2;
}
.cookie-modal .cancel {
  background: #EFEDE2;
  color: #25653A;
}
.cookie-modal .cancel:hover {
  background: #B8E6C1;
  color: #22422D;
}

@media (max-width:500px){
  .cookie-modal {
    padding: 21px 6px 12px 6px;
    max-width: 96vw;
    min-width: 0;
  }
}

/* --- MISCELLANEOUS --- */
::-webkit-input-placeholder { color: #7F8E7C; }
:-moz-placeholder { color: #7F8E7C; }
::-moz-placeholder { color: #7F8E7C; }
:-ms-input-placeholder { color: #7F8E7C; }

hr {
  height: 1px;
  background: #EFEDE2;
  border: none;
  margin: 24px 0;
}

/* Set minimal focus outlines for accessibility */
:focus {
  outline: 2px dashed #B8E6C1;
  outline-offset: 2px;
}

/* Hide scroll for overlays */
.body-modal-open {
  overflow: hidden;
}

/* --- Elegant classic micro-details --- */
.section {
  background: #FFF;
  border-radius: 36px;
  box-shadow: 0 2px 12px rgba(153,123,55,0.03);
  position: relative;
}
@media (max-width:500px){
  .section {
    border-radius: 16px;
  }
}

/* Decorative - only for special accents */
[data-decorative] {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* --- Print adjustment --- */
@media print {
  header,.mobile-menu,.cookie-consent-banner,.cookie-modal-overlay,footer {display: none !important;}
  body {background: #fff; color: #333;}
}
