/* ===== 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;
  background: #f5f6f3;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #23304a;
  background: #f5f6f3;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #49759C;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #405b3c;
  outline: none;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

/* ===== CSS CUSTOM PROPERTIES (fallbacks included) ===== */
:root {
  --color-primary: #23304a;
  --color-secondary: #ffffff;
  --color-accent: #49759C;
  --color-earth: #a8b07e;
  --color-green: #556b2f;
  --color-sand: #e7dac7;
  --color-table-bg: #f5f6f3;
  --color-btn: #6991b7;
  --color-btn-hover: #344966;
  --shadow-main: 0 4px 16px rgba(52, 73, 102, 0.10);
  --border-radius-card: 18px;
}

body {
  background: var(--color-table-bg, #f5f6f3);
}


/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #23304a;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.75rem; /* 44px */
  line-height: 1.12;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 22px;
}
h3 {
  font-size: 1.375rem; /* 22px */
  margin-bottom: 16px;
}
h4 {
  font-size: 1.13rem; /* 18px */
  margin-bottom: 12px;
}
h5, h6 {
  font-size: 1rem;
  margin-bottom: 10px;
}
p, .lead {
  font-size: 1rem;
  margin-bottom: 18px;
  color: #23304a;
}
.lead {
  font-size: 1.18rem;
  color: #405b3c;
  font-weight: 500;
}
strong, b {
  font-weight: 700;
}
.text-section ul, .text-section ol,
.feature-list, .product-categories, .product-grid, .service-list, .feature-grid, .newsletter ul {
  padding-left: 0;
  margin-bottom: 16px;
}
.text-section ul li, .feature-list li, .product-categories li, .product-grid li, .service-list li, .feature-grid li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 24px;
}
.text-section ul li:before, .feature-list li:before, .product-categories li:before, .product-grid li:before, .service-list li:before, .feature-grid li:before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #a8b07e;
  margin-right: 8px;
  position: absolute;
  left: 0;
  top: 2px;
}

/* ===== GLOBAL CONTAINER & LAYOUTS ===== */
.container {
  max-width: 1168px;
  width: 100%;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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 {
  background: #fff;
  border-radius: var(--border-radius-card, 18px);
  box-shadow: 0 3px 16px rgba(85,107,47,0.11);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  color: #23304a;
  position: relative;
  min-width: 0;
}
.testimonial-card blockquote {
  font-style: italic;
  color: #344966;
  font-size: 1.08rem;
  line-height: 1.6;
  margin-right: 22px;
}
.testimonial-details {
  font-size: 0.98rem;
  color: #405b3c;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  margin-left: auto;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===== NAVIGATION ===== */
header {
  background: #ffffffc9;
  box-shadow: 0 2px 12px rgba(52,73,102,0.05);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 22px;
}
header img {
  height: 46px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  padding: 7px 17px;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #23304a;
  transition: background .18s, color .18s;
}
.main-nav a.cta {
  background: var(--color-btn, #6991b7);
  color: #fff;
  box-shadow: var(--shadow-main);
  font-weight: 700;
}
.main-nav a:hover, .main-nav a:focus {
  background: #e7dac7;
  color: #344966;
}
.main-nav a.cta:hover, .main-nav a.cta:focus {
  background: var(--color-btn-hover, #344966);
  color: #fff;
  box-shadow: 0 2px 8px rgba(73, 117, 156, 0.21);
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: var(--color-btn, #6991b7);
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  transition: background .18s;
  z-index: 1101;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-btn-hover, #344966);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fffef6f9;
  z-index: 1150;
  transform: translateX(-100%);
  transition: transform .36s cubic-bezier(.47,.15,.44,1.35);
  display: flex;
  flex-direction: column;
  padding: 0 36px 0 28px;
  box-shadow: 0 4px 22px rgba(52,73,102,0.15);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  color: #23304a;
  background: transparent;
  border-radius: 50%;
  margin: 24px 0 12px 0;
  width: 42px;
  height: 42px;
  transition: background .15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #e7dac7;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 19px;
  align-items: flex-start;
  margin-top: 8px;
}
.mobile-nav a {
  color: #23304a;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  background: none;
  padding: 12px 0;
  border-radius: 0;
  transition: color .14s, background .14s;
  min-width: 180px;
  outline: none;
}
.mobile-nav a.cta {
  background: var(--color-btn, #6991b7);
  color: #fff;
  border-radius: 18px;
  padding: 12px 24px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #405b3c;
  background: #e7dac7;
}
.mobile-nav a.cta:hover, .mobile-nav a.cta:focus {
  background: var(--color-btn-hover, #344966);
}

@media (max-width: 990px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 991px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(120deg, #f8e9a13b 60%, #c1debc2c 105%);
  padding: 56px 0 44px 0;
  min-height: 360px;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero h1 {
  color: #344966;
  margin-bottom: 20px;
}
.hero .lead {
  margin-bottom: 26px;
  color: #405b3c;
}

/* ===== FEATURES & SERVICES ===== */
.features, .mat-features, .props-features, .clothes-features, .aroma-features, .about-features, .service-list {
  background: #f7f8f3;
  border-radius: 22px;
}
.feature-grid, .feature-list, .service-list, .product-categories, .product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 12px;
}
.feature-grid li, .feature-list li, .product-categories li, .product-grid li, .service-list li {
  background: #fff;
  border-radius: var(--border-radius-card, 18px);
  box-shadow: var(--shadow-main);
  padding: 28px 22px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  min-width: 0;
  transition: box-shadow .22s, transform .18s;
}
.feature-grid li:hover, .feature-list li:hover, .product-categories li:hover, .product-grid li:hover, .service-list li:hover {
  box-shadow: 0 8px 32px rgba(52, 73, 102, 0.13);
  transform: translateY(-3px) scale(1.015);
}
.feature-grid img, .feature-icons img {
  height: 44px;
  width: auto;
  background: #e7dac7;
  border-radius: 16px;
  padding: 8px;
}
.feature-icons {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}

/* ===== CTA BUTTONS ===== */
.cta,
button.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 30px;
  border-radius: 24px;
  background: var(--color-btn, #6991b7);
  color: #fff;
  font-weight: 600;
  font-size: 1.09rem;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 16px rgba(105,145,183,0.13);
  transition: background .19s, box-shadow .19s, transform .17s;
  border: none;
  cursor: pointer;
}
.cta.large {
  font-size: 1.19rem;
  padding: 14px 40px;
}
.cta.small {
  font-size: 0.96rem;
  padding: 8px 22px;
}
.cta:hover, 
.cta:focus {
  background: var(--color-btn-hover, #344966);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px rgba(73,117,156,0.17);
  outline: none;
}

/* ===== SERVICE/OFFER LISTS ===== */
.service-list,
.product-categories,
.product-grid {
  gap: 20px;
}
.service-list li, .product-categories li, .product-grid li {
  background: #fefcfb;
  border: 1px solid #f4ead3;
}
.price {
  color: #556b2f;
  font-weight: bold;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: #e7dac7;
  border-radius: 24px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 14px;
}
.testimonial-card {
  min-width: 280px;
  flex: 1 1 330px;
  box-shadow: 0 3px 18px rgba(105,145,120,.13);
  border-left: 8px solid #a8b07e;
  background: #fff;
  align-items: flex-start;
}

/* ===== CONTACT ===== */
.contact-section, .contact-info, .find-us {
  background: #f3f7ed;
  border-radius: 20px;
}
.contact-details, .contact-info .content-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 18px;
}
.contact-details > .text-section {
  flex: 1 1 280px;
}
.contact-details .action {
  flex: 0 0 auto;
}
.contact-section .cta {
  margin-top: 18px;
}

/* ===== FOOTER ===== */
footer {
  margin-top: 60px;
  background: #fff;
  box-shadow: 0 3px 26px rgba(105,110,125,.04);
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 32px 0 12px 0;
  min-height: 60px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 6px;
}
.footer-nav a {
  color: #49759C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 0.97rem;
  transition: color .17s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #344966;
}
.newsletter {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  min-width: 270px;
  background: #f8e9a1;
  border-radius: 11px;
  padding: 14px 18px;
  box-shadow: 0 2px 12px rgba(243,242,200,0.10);
}
.newsletter p {
  font-size: 0.99rem;
  color: #23304a;
}
.copyright {
  text-align: center;
  font-size: 0.93rem;
  color: #a8b07e;
  padding: 14px 0 14px 0;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 1450;
  background: rgba(255,255,245,0.991);
  box-shadow: 0 -2px 32px rgba(52,73,102,0.11);
  border-top: 1.5px solid #e7dac7;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: center;
  padding: 18px 16px 18px 22px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 0.98rem;
  color: #344966;
  transition: transform .36s cubic-bezier(.44,.28,.65,.99);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner .cookie-btn {
  margin-left: 7px;
  margin-right: 7px;
  padding: 7px 18px;
  border-radius: 18px;
  background: var(--color-btn, #6991b7);
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(73,117,156,0.19);
  transition: background .17s, box-shadow .17s;
  cursor: pointer;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: var(--color-btn-hover, #344966);
  box-shadow: 0 5px 22px rgba(105,145,183, 0.18);
  outline: none;
}
.cookie-banner .cookie-settings-btn {
  background: #e7dac7;
  color: #23304a;
  font-weight: bold;
  transition: background .14s;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #f8e9a1;
  color: #23304a;
}
/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 1460;
  background: rgba(38,46,33,0.27);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(0);
  transition: opacity .29s;
  opacity: 1;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-dialog {
  max-width: 410px;
  padding: 36px 28px;
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 7px 48px rgba(52,73,102,0.17);
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: stretch;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-modal-title {
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #23304a;
  font-weight: 700;
  margin-bottom: 4px;
}
.cookie-modal-category {
  margin-bottom: 11px;
  color: #23304a;
  font-size: 1.03rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 19px;
}
.cookie-toggle {
  width: 42px;
  height: 24px;
  border-radius: 12px;
  background: #e7dac7;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  transition: background .17s;
  margin-left: 7px;
}
.cookie-toggle[aria-checked="true"] {
  background: #49759C;
}
.cookie-toggle-inner {
  display: block;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 12px;
  position: absolute;
  left: 3px;
  top: 3px;
  transition: left .21s cubic-bezier(.47,1.64,.41,.8);
}
.cookie-toggle[aria-checked="true"] .cookie-toggle-inner {
  left: 21px;
}
.cookie-modal-actions {
  display: flex;
  gap: 17px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.8rem;
  color: #23304a;
  background: transparent;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  transition: background .16s;
  border: none;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #e7dac7;
}
@media (max-width: 540px) {
  .cookie-modal-dialog {
    max-width: 96vw;
    padding: 24px 10px;
  }
}

/* ===== SECTION SPACING ===== */
section {
  margin-bottom: 60px;
  padding: 40px 18px;
}
section:last-child {
  margin-bottom: 0;
}
/* Prevent element overlapping and padding for all main containers */
.content-wrapper > *:not(:last-child) { margin-bottom: 24px; }

/* ===== RESPONSIVE: MOBILE-FIRST ===== */
@media (max-width: 989px) {
  .container {
    max-width: 100vw;
    padding: 0 8px;
  }
  .feature-grid, .feature-list, .service-list, .product-categories, .product-grid {
    gap: 13px;
  }
  .footer-content {
    flex-direction: column;
    gap: 19px;
    align-items: flex-start;
  }
  .newsletter { align-items: stretch; }
  .hero {
    padding: 32px 0 32px 0;
    min-height: 220px;
  }
  .main-nav { display: none !important; }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    padding: 0 8px;
    min-height: 58px;
  }
  .footer-content { flex-direction: column; gap: 16px; align-items: flex-start; }
  .newsletter { font-size: 1rem; min-width: unset; margin-top: 8px; }
  .newsletter p { font-size: 0.99rem; }
  .feature-grid, .feature-list, .service-list, .product-categories, .product-grid, .testimonial-slider {
    flex-direction: column;
    gap: 16px;
  }
  .content-wrapper {
    gap: 18px;
  }
  section { padding: 30px 8px; }
  .hero h1 { font-size: 1.8rem; }
  .hero { padding: 20px 0 24px 0; }
  .text-image-section, .contact-details, .service-list, .footer-content, .content-grid {
    flex-direction: column !important;
    gap: 20px;
    align-items: flex-start !important;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    font-size: .95rem;
  }
  .mobile-menu {
    padding: 0 10px 0 8px;
  }
}
@media (max-width: 430px) {
  h1 { font-size: 1.2rem; }
  h2 { font-size: 1rem; }
  h3 { font-size: 0.98rem; }
  .section { padding: 18px 2px; }
  .cta, button.cta { padding: 11px 0.85em; font-size: 1rem; }
  .footer-content { padding: 18px 0 8px 0; }
}

/* ===== MISC ===== */
blockquote {
  border-left: 4px solid #a8b07e;
  padding-left: 18px;
  color: #344966;
  background: #f8e9a168;
}
::-webkit-scrollbar {
  width: 8px;
  background: #e7dac7;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #a8b07e;
  border-radius: 6px;
}

/* Organic shapes & natural accents */
.section, .features, .testimonials, .contact-section, .product-categories li, .service-list li, .aroma-features, .about-team, .newsletter {
  border-radius: 20px 28px 18px 32px / 28px 16px 32px 20px;
}

/* Subtle hover shadow for all cards */
.card, .feature-list li, .feature-grid li, .product-categories li, .service-list li, .testimonial-card {
  transition: box-shadow .17s, transform .17s;
}
.card:hover, .feature-list li:hover, .feature-grid li:hover, .product-categories li:hover, .service-list li:hover, .testimonial-card:hover {
  box-shadow: 0 8px 36px rgba(52,73,102,0.12);
  transform: translateY(-2px) scale(1.02);
}

/* ===== FORMS (newsletter, contact) ===== */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 13px;
  border-radius: 10px;
  border: 1px solid #a8b07e;
  background: #fff;
  color: #344966;
  outline: none;
  margin-bottom: 18px;
  box-shadow: none;
  transition: border-color .13s;
}
input:focus, textarea:focus, select:focus {
  border-color: #6991b7;
}

/* ===== Table (for info pages, gdpr, etc.) ===== */
table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  background: #fff;
  margin-bottom: 28px;
  box-shadow: 0 2px 8px rgba(52,73,102,0.07);
}
th, td {
  text-align: left;
  padding: 13px 11px;
  border-bottom: 1px solid #dadada;
}
th {
  background: #f8e9a1;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #23304a;
  font-weight: 600;
}

/* Util classes */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0 !important; }
.mt-30 { margin-top: 30px; }

/* OVERRIDES FOR DARK TEXT/ CONTRAST - testimonials, reviews */
.testimonial-card, .testimonial-details, .testimonial-card blockquote {
  color: #23304a !important;
  background: #fff !important;
}

/* Hide visually but keep accessible */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
