/* ================================
   Gloss Moment Nature_Organic CSS
   ================================ */

/* 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 {
  scroll-behavior: smooth;
  background: #f5f3ef;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #2e2a23;
  line-height: 1.6;
  background: #f5f3ef;
  min-height: 100vh;
  font-size: 16px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
a {
  color: #386641;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #588157;
  outline: none;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
li + li {
  margin-top: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #14213d;
  font-weight: 700;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.3rem; margin-bottom: 11px; }
h4, h5, h6 { font-size: 1.1rem; }
p {
  margin-bottom: 16px;
}
blockquote {
  border-left: 5px solid #386641;
  background: #e9edc9;
  padding: 16px 24px;
  border-radius: 12px;
  color: #31572c;
  margin: 24px 0 18px 0;
  font-style: italic;
}
strong, b { color: #14213d; }

/* ===================
   CONTAINER & LAYOUT
   =================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #f8f7f3;
  border-radius: 32px 56px 22px 42px/28px 38px 46px 54px;
  box-shadow: 0 8px 36px 0 rgba(56, 102, 65, 0.08);
  /* Organic blob shape */
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding: 26px 10px;
    margin-bottom: 32px;
    border-radius: 24px 32px 18px 23px/18px 21px 24px 32px;
  }
}

/* CARD & CARD GRID */
.card-container,
.card-grid,
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.card {
  background: #faf9f7;
  border-radius: 32px 24px 28px 40px/32px 38px 32px 48px;
  box-shadow: 0 2px 12px 0 rgba(139, 140, 137, 0.10);
  margin-bottom: 20px;
  position: relative;
  padding: 26px;
  flex: 1 1 320px;
  min-width: 270px;
  transition: box-shadow .19s, transform .19s;
}
.card:hover {
  box-shadow: 0 6px 28px 0 rgba(56, 102, 65, .15);
  transform: translateY(-6px) scale(1.02);
}

.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;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #e9edc9;
  border-radius: 19px 34px 21px 21px;
  box-shadow: 0 2px 7px 0 rgba(85, 119, 84, 0.12);
  padding: 20px 18px;
  min-width: 230px;
  transition: background .23s, box-shadow .23s;
}
.feature-item:hover {
  background: #c4d7b2;
  box-shadow: 0 7px 18px 0 rgba(56,102,65,0.15);
}

/* ==================
   HEADER & NAVIGATION
   ================== */
header {
  width: 100%;
  background: #e9edc9;
  box-shadow: 0 2px 12px 0 rgba(119, 162, 99, 0.06);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 22px;
  border-radius: 18px;
  background: #f5f3ef;
  padding: 3px 7px;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #31572c;
  border-radius: 18px;
  padding: 7px 19px;
  transition: background .16s, color .18s;
}
nav a:hover, nav a:focus {
  background: #A7C957;
  color: #234927;
}

.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #386641;
  border: none;
  color: #fff;
  padding: 11px 26px;
  border-radius: 27px 44px 36px 29px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-left: 16px;
  box-shadow: 0 2px 10px 0 rgba(47, 92, 65, 0.09);
  transition: background .2s, box-shadow .16s, transform .12s;
  cursor: pointer;
  outline: none;
  text-align: center;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #A7C957;
  color: #234927;
  transform: translateY(-2px) scale(1.03);
}

/* ==============
   BURGER MENU
   ============== */
.mobile-menu-toggle {
  display: none;
  background: #386641;
  color: #fff;
  font-size: 2.1rem;
  border: none;
  border-radius: 18px;
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 89;
  height: 44px;
  width: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(50, 70, 40, 0.11);
  transition: background .16s, color .18s, box-shadow .2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #A7C957;
  color: #234927;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: #e9edc9;
  transform: translateX(100vw);
  transition: transform .36s cubic-bezier(.83, .13, .26, .97);
  z-index: 120;
  box-shadow: -3px 0 28px 0 rgba(47, 78, 40, 0.14);
  padding: 32px 38px 24px 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #386641;
  font-size: 2.4rem;
  align-self: flex-end;
  margin-bottom: 14px;
  cursor: pointer;
  transition: color .19s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #234927;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 14px 0 0 0;
}
.mobile-nav a {
  font-size: 1.18rem;
  color: #31572c;
  background: #f5f3ef;
  border-radius: 18px;
  padding: 11px 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: background .15s, color .18s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #A7C957;
  color: #234927;
}
@media (max-width: 991px) {
  header .container nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 600px) {
  .mobile-menu { padding: 18px 6vw 12px 4vw; }
  .mobile-menu-close { font-size: 2rem; }
  .mobile-nav a { font-size: 1rem; }
}

/* =================
   MAIN/BODY STYLES
   ================= */
main {
  margin-top: 16px;
  padding-bottom: 40px; /* for cookie banner height */
}
main section {
  margin-bottom: 60px;
}

/* Testimonial slider/cards */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 27px 32px 18px 25px;
  box-shadow: 0 4px 18px 0 rgba(22,57,22,0.08);
  min-width: 270px; max-width: 335px;
  flex: 1 1 280px;
  color: #26341e; /* dark text for contrast */
  transition: box-shadow .23s, background .19s;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #26341e;
  font-style: italic;
  margin-bottom: 8px;
}
.testimonial-card strong {
  font-size: 1rem;
  color: #31572c;
}
.testimonial-card:hover {
  background: #e9edc9;
  box-shadow: 0 8px 28px 0 rgba(47, 78, 40, 0.15);
}
@media (max-width: 768px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 13px;
  }
  .testimonial-card {
    max-width: 100%; min-width: 0;
  }
}

.social-links {
  display: flex; gap: 18px; margin: 12px 0 8px 0;
}
.social-links a {
  display: flex; justify-content: center; align-items: center;
  background: #A7C957;
  border-radius: 50%;
  height: 44px; width: 44px;
  box-shadow: 0 2px 8px 0 rgba(56, 102, 65, .08);
  transition: background .16s, box-shadow .16s;
}
.social-links a:hover, .social-links a:focus {
  background: #386641;
}
.social-links img {
  height: 28px; width: 28px;
  border-radius: 0; background: none; padding: 0;
}

/* ===================
   FOOTER
   =================== */
footer {
  background: #e9edc9;
  padding: 34px 0 22px 0;
  margin-top: 42px;
  border-radius: 41px 0 0 0;
  box-shadow: 0 -2px 19px 0 rgba(56, 102, 65, .14);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-brand img {
  height: 38px; width: auto;
  border-radius: 15px; background: #f5f3ef; padding: 4px 8px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
footer nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .97rem;
  color: #31572c;
  border-radius: 14px;
  padding: 5px 14px;
  transition: background .15s, color .14s;
}
footer nav a:hover, footer nav a:focus {
  background: #c4d7b2;
  color: #14213d;
}
.footer-contact {
  font-size: 0.96rem;
  color: #31572c;
  font-family: 'Roboto', Arial, sans-serif;
  margin-top: 8px;
  opacity: .9;
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  footer nav { gap: 10px; }
  .footer-brand img { height: 28px; }
}

/* ===============
   COOKIE CONSENT
   =============== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #31572c;
  color: #fff;
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 8vw 15px 8vw;
  box-shadow: 0 -4px 36px 0 rgba(22,57,22,0.15);
  font-size: 1rem;
  align-items: flex-start;
  transition: transform .26s cubic-bezier(.44,.13,.38,1.1), opacity .22s;
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 11px;
  margin-top: 5px;
}
.cookie-banner button, .cookie-banner .cookie-btn {
  border: none;
  border-radius: 19px 24px 22px 20px;
  background: #A7C957;
  color: #2d3a22;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 17px;
  margin: 0;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(47, 92, 65, 0.10);
  transition: background .18s, color .14s, box-shadow .14s;
  outline: none;
}
.cookie-banner button:focus, .cookie-banner button:hover,
.cookie-banner .cookie-btn:focus, .cookie-banner .cookie-btn:hover {
  background: #fca311;
  color: #14213d;
}
.cookie-banner .cookie-settings {
  background: #f5f3ef;
  color: #386641;
}
.cookie-banner .cookie-settings:focus, .cookie-banner .cookie-settings:hover {
  background: #e9edc9;
  color: #234927;
}
@media (max-width: 600px) {
  .cookie-banner {
    padding: 13px 4vw 10px 4vw;
    font-size: 0.93rem;
  }
  .cookie-banner .cookie-buttons {
    flex-direction: column;
    gap: 7px;
    width: 100%;
  }
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(28,43,15,.63);
  z-index: 170;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .18s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #f5f3ef;
  color: #31572c;
  padding: 36px 21px 24px 21px;
  border-radius: 38px 46px 31px 29px;
  box-shadow: 0 8px 48px 0 rgba(56,102,65, .15);
  min-width: 320px;
  max-width: 97vw;
  display: flex;
  flex-direction: column;
  gap: 17px;
  position: relative;
}
.cookie-modal-content h2 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #14213d;
}
.cookie-category {
  display: flex; align-items: center; gap: 13px;
  padding: 10px 0;
}
.cookie-category input[type="checkbox"] {
  accent-color: #386641;
  width: 18px; height: 18px;
}
.cookie-category label {
  font-weight: 500;
  color: #31572c;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-category[aria-disabled="true"] label {
  color: #b1b1af;
  font-style: italic;
  opacity: .73;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 13px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  background: #386641;
  color: #fff;
  padding: 9px 21px;
  font-weight: 700;
}
.cookie-modal .cookie-btn:focus,
.cookie-modal .cookie-btn:hover {
  background: #A7C957;
  color: #234927;
}
.cookie-modal-close {
  position: absolute;
  right: 21px; top: 11px;
  background: transparent;
  border: none;
  font-size: 1.85rem;
  color: #31572c;
  cursor: pointer;
  transition: color .17s;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  color: #234927;
}
@media (max-width: 480px) {
  .cookie-modal-content { min-width: 90vw; padding: 23px 8px 14px 8px; }
}

/* ===============
   ADDITIONAL UI
   ===============*/
.text-section {
  margin: 20px 0 10px 0;
  background: #faf9f7;
  padding: 20px 17px;
  border-radius: 18px 24px 17px 21px;
}
.text-section h2 { font-size: 1.18rem; margin-bottom: 10px; margin-top: 13px; }

/* Microinteractions and subtle effects */
button, .cta-btn, .cookie-btn {
  transition: background .19s, color .17s, box-shadow .14s, transform .12s;
}

/* Accessibility focus indicators */
a:focus-visible, button:focus-visible, .cta-btn:focus-visible, .cookie-btn:focus-visible {
  outline: 2px dashed #386641;
  outline-offset: 2px;
}

/* =================
   RESPONSIVE STYLES
   ================= */
@media (max-width: 991px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .card-container,
  .card-grid,
  .feature-grid,
  .content-grid {
    gap: 16px;
  }
  .section { padding: 21px 5px; }
}
@media (max-width: 640px) {
  .container {
    max-width: 100vw;
    padding: 0 2px;
  }
  .section {
    margin-bottom: 22px;
    padding: 12px 2px;
    border-radius: 14px 22px 12px 17px/12px 18px 14px 24px;
  }
  h1 { font-size: 1.53rem; }
  h2 { font-size: 1.21rem; }
  .card, .feature-item, .testimonial-card {
    padding: 15px 7px;
    min-width: unset;
    font-size: .99rem;
  }
  .cta-btn { padding: 8px 13px; font-size: 1rem; }
}

/* =================
   ORGANIC DETAILS
   ================= */
.section::before, .section::after {
  content: '';
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: .14;
  border-radius: 44% 64% 41% 23%/53% 37% 54% 51%;
}
.section::before {
  width: 110px; height: 42px;
  left: -28px; top: -22px;
  background: #A7C957;
  transform: rotate(-17deg);
  filter: blur(7px);
}
.section::after {
  width: 66px; height: 28px;
  right: -18px; bottom: -11px;
  background: #386641;
  filter: blur(6px);
  transform: rotate(23deg);
}
@media (max-width: 768px) {
  .section::before, .section::after { display: none; }
}

/* =============================
   CUSTOM SCROLLBAR (Modern Only)
   ============================= */
::-webkit-scrollbar {
  width: 11px;
}
::-webkit-scrollbar-thumb {
  background: #A7C957;
  border-radius: 5px;
}
::-webkit-scrollbar-track {
  background: #f5f3ef;
}

/* =============================
   SUPPORT CLASSES
   ============================= */
.mb-20 { margin-bottom: 20px !important; }
.mt-20 { margin-top: 20px !important; }
.gap-20 { gap: 20px !important; }
.align-center { align-items: center !important; }
.align-start { align-items: flex-start !important; }
.justify-between { justify-content: space-between !important; }
.flex-col { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }

/*
============================= 
ALL FLEXBOX – NO GRID/COL
=============================
*/
/* All layouts use only flexbox as per requirements */
