/* RESET & NORMALIZATION */
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 {
  line-height: 1.4;
  font-family: 'Roboto', Arial, sans-serif;
  color: #1E1E1E;
  background: #F0EAD6;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}
a {
  color: #336633;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #26C281;
  outline: none;
}
ul, ol {
  padding-left: 1.3em;
  margin-bottom: 1em;
}
strong {
  font-weight: 700;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.09;
}
h1 {
  font-size: 2.4rem;
  color: #268C26;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(30,82,47,0.08);
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: #336633;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: #336633;
}
p, li, span {
  font-size: 1rem;
  color: #292929;
  font-family: 'Roboto', 'Arial', sans-serif;
}

/* UTILITIES */
.text-center {
  text-align: center !important;
}
.text-right {
  text-align: right !important;
}

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1160px;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 30px rgba(51, 102, 51, 0.11);
}

/* FLEX LAYOUT CLASSES - STRICT FLEXBOX, NO GRID */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #FAFFC6;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(51,102,51,0.09);
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 210px;
  max-width: 340px;
  padding: 28px 18px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.card:hover {
  transform: translateY(-8px) scale(1.03) rotate(-2deg);
  box-shadow: 0 8px 36px rgba(38,140,38,0.12);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 0 2px 16px rgba(85,170,68,0.08);
  border-radius: 16px;
  border-left: 6px solid #26C281;
}
.testimonial-card p {
  font-size: 1.06rem;
  font-family: 'Roboto', sans-serif;
  color: #18341c;
}
.testimonial-card span {
  font-weight: bold;
  color: #22A724;
  font-size: 0.98rem;
  opacity: 0.92;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTIONS */
.hero {
  min-height: 300px;
  background: #A6C48A;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 4px 32px rgba(51,102,51,0.10);
  margin-bottom: 42px;
  position: relative;
  overflow: hidden;
}
.hero .container {
  align-items: center;
  justify-content: center;
  gap: 0;
}
.hero h1 {
  font-size: 2.6rem;
  color: #236530;
  letter-spacing: 0.5px;
  line-height: 1.11;
}
.hero p {
  font-size: 1.13rem;
  margin-bottom: 18px;
  color: #215823;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.09rem;
  transition: background 0.16s, color 0.14s, box-shadow 0.18s, transform 0.16s;
  background: #26C281;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 28px;
  outline: none;
  margin-top: 10px;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 14px rgba(51, 204, 129, 0.14);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.btn-primary:hover, .btn-primary:focus {
  background: #268C26;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px rgba(51, 204, 129, 0.20);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  background: #fff;
  color: #26C281;
  border: 2px solid #26C281;
  border-radius: 10px;
  padding: 10px 22px;
  margin: 0 8px;
  cursor: pointer;
  transition: all 0.13s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #26C281;
  color: #fff;
  box-shadow: 0 2px 12px rgba(51, 204, 129, 0.12);
}

button {
  font-family: inherit;
  font-size: 1rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

/* LIST & ICON FEATURES */
.content-wrapper > ul,
.care-steps ul,
.product-highlights ul,
.categories ul,
.usp-list,
.info-list,
.schedule-list,
.service-grid,
.product-cards {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 0;
}
.content-wrapper > ul li,
.product-highlights ul li,
.categories ul li,
.usp-list li,
.service-grid li,
.product-cards li,
.info-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #EFFFDC;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 1.07rem;
  box-shadow: 0 1px 7px rgba(38, 140, 38, 0.07);
}
.product-cards li {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  border-left: 4px solid #26C281;
}
.product-cards li strong {
  color: #336633;
  font-size: 1.08rem;
}

.product-cards li button {
  color: #fff;
  background: #26C281;
  padding: 7px 19px;
  border-radius: 8px;
  font-size: 1rem;
  box-shadow: 0 2px 10px rgba(38, 140, 38, 0.10);
  margin-top: 6px;
  transition: background 0.13s, transform 0.13s;
}
.product-cards li button:hover,
.product-cards li button:focus {
  background: #16831b;
  transform: translateY(-1px);
}

.category-filters,
.categories-filter,
.filter-sort-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  margin-bottom: 10px;
}
.category-filters button,
.filter-sort-bar button,
.categories-filter button {
  background: #25E870;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 15px;
  font-family: 'Montserrat',sans-serif;
  font-weight: 600;
  font-size: 0.99rem;
  transition: background 0.16s;
  box-shadow: 0 2px 10px rgba(37,232,112,0.12);
}
.category-filters button:hover,
.filter-sort-bar button:hover,
.categories-filter button:hover,
.category-filters button.active {
  background: #22A724;
  color: #fff;
}

/* USP STRIP */
.usp-strip {
  background: #F9FBE8;
  padding: 28px 0;
}
.usp-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.usp-list li {
  background: #fff;
  border-left: 5px solid #A6C48A;
  color: #336633;
  font-size: 1.03rem;
}

/* TEAM BIOS */
.team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.team-bios > div {
  background: #E8FFF5;
  border-radius: 13px;
  box-shadow: 0 2px 8px rgba(38, 140, 38, 0.08);
  padding: 14px 20px;
  flex: 1 1 250px;
  min-width: 220px;
}
.team-bios strong {
  color: #336633;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-list > div {
  background: #e4f8f1;
  padding: 17px 22px;
  border-radius: 10px;
  box-shadow: 0 2px 7px rgba(38,140,38,0.07);
  border-left: 4px solid #25E870;
}
.faq-list h3 {
  font-size: 1.05rem;
  color: #236530;
  margin-bottom: 5px;
}
.faq-list p {
  font-size: 0.98rem;
  color: #16371c;
}

/* ORDER SUMMARY */
.order-summary {
  background: #EFFFDC;
  padding: 20px 24px;
  margin: 22px 0;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(51,102,51,0.10);
}
.order-summary h2 {
  font-size: 1.16rem;
  color: #268C26;
}
.order-summary ul {
  margin: 10px 0 0 0;
  gap: 7px;
}

/* MAP EMBED + INFO */
.map-embed {
  border-radius: 12px;
  background: #F7FFE7 !important;
  color: #336633;
  font-size: 1rem;
  font-style: italic;
  margin: 16px 0 10px 0;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  list-style: none;
}
.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* FOOTER */
footer {
  background: #336633;
  color: #fff;
  padding: 0;
  margin-top: 64px;
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -4px 22px rgba(51,102,51,0.10);
}
footer .container {
  padding: 34px 18px 12px 18px;
  gap: 34px;
}
.footer-menu, .footer-contact, .footer-newsletter, .footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
}
.footer-menu {
  gap: 22px;
}
.footer-menu a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline 2px transparent;
  transition: text-decoration-color 0.15s;
  font-size: 0.98rem;
}
.footer-menu a:hover {
  color: #25E870;
  text-decoration-color: #25E870;
}
.footer-contact div, .footer-contact a {
  color: #F0EAD6;
  font-size: 0.99rem;
}
.footer-social {
  gap: 18px;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  opacity: 0.96;
  transition: opacity 0.14s, transform 0.14s;
}
.footer-social a:hover img {
  opacity: 1;
  transform: scale(1.08) rotate(6deg);
}
.footer-newsletter h3 {
  color: #A6C48A;
}
.copyright {
  font-size: 0.96rem;
  color: #DEF7D5;
  text-align: center;
}

/* NEWSLETTER STRIP */
.newsletter {
  background: #A6C48A;
  color: #235C15;
  border-radius: 24px;
  margin: 36px 0;
  padding: 38px 18px;
  box-shadow: 0 2px 22px rgba(166,196,138,0.14);
}
.newsletter h2 {
  color: #196B0F;
}
.newsletter p {
  color: #235C15;
}

/* RESPONSIVE FLEX (for gallery, lists, etc.) */
@media (min-width: 800px) {
  .card-container, .content-grid, .team-bios, .usp-list { flex-direction: row; }
  .card-container > * {
    flex: 1 1 220px;
    min-width: 200px;
  }
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 992px) {
  h1 { font-size: 2.2rem; }
  .hero h1 { font-size: 2.4rem; }
  .container { max-width: 96vw; }
  .card-container, .content-grid, .team-bios { flex-direction: column; }
}
@media (max-width: 768px) {
  .hero h1 { font-size: 2.0rem; }
  .section, .usp-strip, .newsletter { padding: 28px 8px; }
  .footer-newsletter, .footer-menu, .footer-contact, .footer-social { flex-direction: column; align-items: flex-start; }
  .content-wrapper, .team-bios, .usp-list, .card-container { gap: 18px; }
  .product-cards, .category-filters, .service-grid { gap: 13px; }
  .map-embed { font-size: 0.99rem; }
}
@media (max-width: 576px) {
  body { font-size: 15px; }
  .container { padding: 0 4vw; }
  .hero { border-radius: 0 0 18px 18px; }
  .footer-menu, .footer-contact, .footer-newsletter, .footer-social {
    margin-bottom: 11px;
    gap: 10px;
  }
  .order-summary { padding: 13px 8px; }
}

/* Burger Menu (Mobile) */
.mobile-menu-toggle {
  display: none;
  background: #25E870;
  color: #fff;
  font-size: 2.1rem;
  padding: 0 12px;
  height: 48px;
  border: none;
  border-radius: 12px;
  margin-left: 12px;
  z-index: 301;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #166E38;
}
@media (max-width: 980px) {
  .main-nav { display: none !important; }
  .mobile-menu-toggle { display: inline-flex; align-items:center; justify-content: center; }
}
@media (min-width: 981px) {
  .mobile-menu-toggle, .mobile-menu { display: none !important; }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #F0EAD6;
  z-index: 900;
  transform: translateX(-110vw);
  transition: transform 0.44s cubic-bezier(0.77,0,0.175,1);
  box-shadow: 2px 0 24px rgba(51,102,51,0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: #26C281;
  color: #fff;
  border-radius: 100px;
  font-size: 2.2rem;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 18px;
  right: 22px;
  box-shadow: 0 2px 12px rgba(38,140,38,0.09);
  z-index: 901;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #16831b;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1.25em;
  margin-top: 80px;
  align-items: flex-start;
  padding-left: 34px;
}
.mobile-nav a {
  font-size: 1.35rem;
  font-family: 'Montserrat', sans-serif;
  color: #25E870;
  font-weight: bold;
  padding: 8px 0;
  border-radius: 7px;
  transition: background 0.16s, color 0.16s;
  width: 90%;
  display: inline-block;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #fff;
  background: #26C281;
}

/* Main navigation styles for desktop */
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', sans-serif;
  color: #268C26;
  font-weight: 600;
  padding: 6px 12px;
  font-size: 1.06rem;
  border-radius: 7px;
  transition: background 0.13s, color 0.13s;
}
.main-nav a:hover, .main-nav a:focus, .main-nav a.active {
  background: #25E870;
  color: #fff;
}

/* HEADER / Logo/Btn container */
header {
  background: #fff;
  box-shadow: 0 6px 32px rgba(51,102,51,0.09);
  width: 100%;
  padding: 0;
  z-index: 100;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
}
header a img[alt="VerdeVie"] {
  width: 116px;
  height: auto;
  margin-right: 8px;
  vertical-align: middle;
}
@media (max-width: 800px) {
  header .container { flex-direction: row; gap: 8px; }
  header a img[alt="VerdeVie"] { width: 84px; }
}

/* CTA Section */
.cta {
  margin: 36px 0 20px 0;
  text-align: center;
  background: #25E870;
  padding: 32px 10px;
  border-radius: 20px;
  box-shadow: 0 2px 20px rgba(38,200,112,0.13);
}
.cta .btn-primary {
  background: #336633;
  color: #fff;
  font-size: 1.16rem;
  box-shadow: 0 4px 20px rgba(51, 102, 51, 0.14);
}
.cta .btn-primary:hover, .cta .btn-primary:focus {
  background: #26C281;
  color: #fff;
}
/* Decorative SVG/Icons inside li */
ul li img, .info-list li img, .footer-contact img {
  width: 26px;
  height: 26px;
  vertical-align: middle;
  margin-right: 4px;
  display: inline-block;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #18341c;
  color: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 20px 18px;
  gap: 28px;
  box-shadow: 0 -2px 24px rgba(51,102,51,0.20);
  font-size: 1rem;
  animation: appearUp 0.7s cubic-bezier(0.22,0.61,0.36,1);
}
@keyframes appearUp {
  0% { transform: translateY(60px); opacity:0; }
  60%{ transform: translateY(-6px); opacity:0.85; }
  80%{ transform: translateY(2px); opacity:0.95; }
  100%{ transform: translateY(0); opacity:1; }
}
.cookie-banner .cookie-banner-text {
  max-width: 480px;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-banner button {
  background: #25E870;
  color: #fff;
  border: none;
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  padding: 9px 19px;
  margin-right: 3px;
  box-shadow: 0 2px 10px rgba(37,232,112,0.07);
  transition: background 0.16s, color 0.12s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #16831b;
}
.cookie-banner .btn-secondary {
  background: #fff;
  color: #25E870;
  border: 2px solid #25E870;
}
.cookie-banner .btn-secondary:hover {
  background: #25E870;
  color: #fff;
}
@media (max-width: 768px) {
  .cookie-banner { flex-direction: column; gap: 14px; padding: 14px 6px; font-size: 0.97rem; }
  .cookie-banner .cookie-btn-group { gap: 7px; }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  width: 100vw; height: 100vh;
  background: rgba(30,50,38,0.58);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #215823;
  border-radius: 20px;
  padding: 32px max(7vw,30px) 28px max(7vw,30px);
  min-width: 290px;
  max-width: 430px;
  box-shadow: 0 4px 48px rgba(51, 102, 51, 0.16);
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: popupZoom 0.44s cubic-bezier(.64,-0.15,.71,1.27);
}
@keyframes popupZoom {
  0%{ transform:scale(0.85); opacity:0;}
  100%{ transform:scale(1); opacity:1;}
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: #236530;
  margin-bottom: 8px;
}
.cookie-modal label {
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 9px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #25E870;
  width: 18px; height: 18px;
}
.cookie-modal .cookie-modal-btns {
  display: flex; flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal button {
  background: #25E870;
  color: #fff;
  border: none;
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  padding: 8px 18px;
  transition: background 0.16s;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #16831b;
}
.cookie-modal .btn-secondary {
  background: #fff;
  color: #25E870;
  border: 2px solid #25E870;
}
.cookie-modal .btn-secondary:hover {
  background: #25E870;
  color: #fff;
}

/* ========== VIBRANT / ENERGETIC MICRO EFFECTS ========== */
.card, .testimonial-card, .faq-list > div, .team-bios > div, .order-summary,
.product-cards li, .newsletter,
.section, .usp-list li {
  transition: box-shadow 0.18s cubic-bezier(.4,.98,.25,1.1), transform 0.19s cubic-bezier(.91,1.19,.28,1);
}
.card:hover, .faq-list > div:hover, .team-bios > div:hover {
  box-shadow: 0 8px 32px rgba(85,160,68,0.21);
  transform: translateY(-7px) scale(1.025);
}

/* LINK, CTA & ALT STATES */
.content-wrapper a:not(.btn-primary) {
  color: #16831b;
  border-bottom: 2px dashed #22A72444;
  font-weight: 600;
  transition: color 0.16s, border 0.16s;
}
.content-wrapper a:not(.btn-primary):hover {
  color: #22A724;
  border-bottom: 2px solid #22A724;
}

/* SCROLLBAR Customization */
::-webkit-scrollbar {
  width: 12px;
  background: #A6C48A44;
}
::-webkit-scrollbar-thumb {
  background: #25E87077;
  border-radius: 6px;
}

/* ========== END OF CSS ========== */
