/* --- RESET & NORMALIZE --- */
html {
  box-sizing: border-box;
  font-size: 100%;
  height: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  background: #F2E7D5;
  color: #222831;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #222831;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(0.4,0,0.2,1);
}
a:focus {
  outline: 2px solid #6D9886;
  outline-offset: 2px;
}
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 0.5em;
}
li {
  margin-bottom: 0.5em;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #222831;
}
h1 { font-size: 2.5rem; letter-spacing: -1px; }
h2 { font-size: 1.75rem; letter-spacing: -0.5px; }
h3 { font-size: 1.25rem; letter-spacing: 0; }
h4 { font-size: 1.125rem; }

.subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #6D9886;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

::-webkit-input-placeholder { color: #666; opacity: 0.8; }
::-moz-placeholder { color: #666; opacity:0.8; }
:-ms-input-placeholder { color:#666; }
::placeholder { color: #666; opacity: 0.8; }

/* --- GEOMETRIC STRUCTURED LAYOUT --- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px 0 rgba(34,40,49,0.07);
  position: relative;
}

@media (max-width: 768px) {
  section {
    margin-bottom: 36px;
    padding: 28px 10px;
    border-radius: 18px;
  }
  .container {
    padding: 0 8px;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* --- FLEXBOX Grids --- */
.card-container,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border: 2px solid #6D9886;
  border-radius: 20px;
  box-shadow: 0 3px 14px 0 rgba(34,40,49,0.06);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 20px;
  transition: box-shadow 0.18s cubic-bezier(0.4,0,0.2,1), transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 28px 0 rgba(34,40,49,0.15);
  transform: translateY(-2px) scale(1.02);
  border-color: #222831;
}

.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;
    align-items: flex-start;
    gap: 18px;
  }
}

.feature-grid,
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  padding-left: 0;
}
.feature-grid li,
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F2E7D5;
  border-radius: 14px;
  padding: 18px 22px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #222831;
  box-shadow: 0 2px 8px 0 rgba(34,40,49,0.05);
  margin-bottom: 0;
  min-width: 200px;
  flex: 1 1 200px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- Section and Card Alignment --- */
.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 { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* --- CTA BUTTONS --- */
.cta-btn,
.shop-cta {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: .5px;
  border: none;
  outline: none;
  color: #fff;
  background: #222831;
  padding: 14px 36px;
  border-radius: 32px 8px 32px 8px;
  box-shadow: 0 2px 12px 0 rgba(34,40,49,0.1);
  transition: background 0.18s cubic-bezier(.42,0,.58,1), box-shadow 0.18s, transform 0.16s;
  cursor: pointer;
  display: inline-block;
}
.cta-btn:hover, .shop-cta:hover, .shop-cta:focus {
  background: #6D9886;
  color: #222831;
  box-shadow: 0 8px 24px 0 rgba(109,152,134,0.17);
  transform: scale(1.041); 
}
.cta-link {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 600;
  color: #6D9886;
  border-bottom: 2px solid #6D9886;
  transition: color 0.18s, border-color 0.18s;
}
.cta-link:hover, .cta-link:focus {
  color: #222831;
  border-bottom: 2px solid #222831;
}

/* --- TESTIMONIAL CARDS --- */
.testimonial-card {
  background: #fff;
  color: #181d20;
  border: 2px solid #6D9886;
  border-radius: 20px;
  box-shadow: 0 3px 14px 0 rgba(34,40,49,0.09);
  margin-bottom: 20px;
  padding: 32px 28px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  gap: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, border-color 0.18s;
  min-width: 0;
  max-width: 640px;
}
.testimonial-card p {
  color: #222831;
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-style: italic;
  letter-spacing: 0.2px;
}
.testimonial-card .customer {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #6D9886;
  font-size: 1rem;
  letter-spacing: 0.2px;
  margin-top: 6px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px 0 rgba(34,40,49,0.15);
  border-color: #222831;
}

/* --- HEADER --- */
header {
  background: #fff;
  border-bottom: 2px solid #F2E7D5;
  box-shadow: 0 2px 12px 0 rgba(34,40,49,0.04);
}
nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  padding: 16px 0;
  justify-content: flex-start;
}
nav > a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 14px;
  border-radius: 8px 24px 8px 24px;
  transition: background 0.17s, color 0.17s, box-shadow 0.17s;
  color: #222831;
  position: relative;
}
nav > a.cta-btn {
  margin-left: auto;
}
nav > a:hover, nav > a:focus {
  background: #F2E7D5;
  color: #6D9886;
}

header img {
  height: 34px;
  width: auto;
  margin-right: 18px;
  border-radius: 0;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 18px;
  right: 24px;
  z-index: 101;
  background: #222831;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #6D9886;
  color: #222831;
}
.mobile-menu {
  display: none;
}
@media (max-width: 968px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 968px) {
  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    z-index: 1020;
    background: #fff;
    top: 0; left: 0; right: 0; bottom: 0;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.67,0,0.33,1);
    box-shadow: 0 0 0 100vmax rgba(34,40,49,0.09) inset;
    padding: 0;
  }
  .mobile-menu.open {
    transform: translateX(0);
    display: flex;
  }
  .mobile-menu-close {
    background: #222831;
    color: #fff;
    font-size: 2rem;
    padding: 10px 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    align-self: flex-end;
    margin: 16px 24px 12px 0;
    transition: background .14s, color .14s;
  }
  .mobile-menu-close:focus, .mobile-menu-close:hover {
    background: #6D9886;
    color: #222831;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 36px 24px;
    width: 80vw;
    max-width: 320px;
    margin: 0 auto;
    font-size: 1.15rem;
  }
  .mobile-nav a {
    color: #222831;
    font-family: 'Roboto', Arial, sans-serif;
    padding: 14px 18px;
    border-radius: 10px 24px 10px 24px;
    font-weight: 500;
    letter-spacing: 1.1px;
    background: #F2E7D5;
    transition: background 0.16s, color .16s;
    text-align: left;
  }
  .mobile-nav a:focus, .mobile-nav a:hover {
    background: #6D9886;
    color: #fff;
  }
}

/* --- FOOTER --- */
footer {
  background: #222831;
  color: #fff;
  padding: 44px 0 24px 0;
  margin-top: 60px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #F2E7D5;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 12px;
  background: none;
  transition: background 0.16s, color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #6D9886;
  color: #222831;
}
.footer-brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: 1.025rem;
  letter-spacing: 0.1px;
  color: #fff;
}
.footer-brand-text img {
  height: 34px;
  margin-bottom: 4px;
}
.footer-brand-text address {
  font-style: normal;
  color: #F2E7D5;
  margin-top: 4px;
}
@media (max-width: 768px) {
  footer {
    padding: 28px 0 16px 0;
  }
  .footer-nav {
    gap: 10px;
    font-size: 0.95rem;
  }
  .footer-brand-text {
    font-size: .95rem;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 2px solid #6D9886;
  box-shadow: 0 -2px 38px 0 rgba(34,40,49,0.13);
  z-index: 2500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 22px 6vw 18px 6vw;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  transition: transform 0.3s cubic-bezier(.79,0,.49,1), opacity 0.2s;
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-text {
  color: #222831;
}
.cookie-consent-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.consent-btn {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 18px 4px 18px 4px;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.14s, color 0.14s, box-shadow 0.18s;
  box-shadow: 0 2px 4px 0 rgba(109,152,134,0.03);
  margin-bottom: 2px;
  outline: none;
}
.consent-btn.accept-all {
  background: #6D9886;
  color: #fff;
}
.consent-btn.reject-all {
  background: #222831;
  color: #fff;
}
.consent-btn.settings {
  background: #fff;
  color: #6D9886;
  border: 2px solid #6D9886;
}
.consent-btn:hover, .consent-btn:focus {
  background: #F2E7D5;
  color: #222831;
  box-shadow: 0 4px 14px 0 rgba(34,40,49,0.13);
}

@media (max-width: 540px) {
  .cookie-consent-banner {
    padding: 18px 3vw 13px 3vw;
    font-size: 0.97rem;
  }
  .cookie-consent-actions { gap: 10px; }
  .consent-btn { padding: 8px 12px; font-size: 0.97rem; }
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 4000;
  top: 0; left: 0; right: 0; bottom: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(34,40,49,0.20);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.cookie-modal-overlay.open {
  display: flex;
  animation: fadeInOverlay 0.22s cubic-bezier(.59,0,.41,1);
}
@keyframes fadeInOverlay {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 44px 0 rgba(34,40,49,0.19);
  padding: 32px 30px 28px;
  width: 96vw;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  animation: popInModal 0.32s cubic-bezier(.74,0,.26,1);
}
@keyframes popInModal {
  from { opacity: 0; transform: scale(0.95) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h3 {
  font-size: 1.32rem;
  margin-bottom: 6px;
  color: #222831;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.2px;
}
.cookie-category {
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 8px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cookie-toggle {
  width: 34px;
  height: 20px;
  border-radius: 10px;
  border: 1.5px solid #6D9886;
  background: #F2E7D5;
  position: relative;
  cursor: pointer;
  transition: background 0.16s, border-color 0.16s;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle-slider {
  position: absolute;
  left: 2px; top: 3px;
  width: 16px; height: 14px;
  border-radius: 8px;
  background: #222831;
  transition: left 0.17s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  background: #6D9886;
  left: 14px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}
.cookie-modal .consent-btn {
  font-size: 1rem;
  padding: 8px 18px;
}

/* --- VISUALS/ICONS/LINKS --- */
blockquote {
  background: #F2E7D5;
  border-left: 5px solid #6D9886;
  margin: 20px 0 20px 0;
  padding: 20px 26px;
  border-radius: 10px 24px 10px 24px;
  color: #222831;
  font-style: italic;
  font-size: 1.05rem;
  box-shadow: 0 2px 10px 0 rgba(34,40,49,0.06);
}

address {
  font-style: normal;
  color: #333;
  font-size: 0.98rem;
}

/* --- Animations / Hover / Micro-interactions --- */
button, .cta-btn, .shop-cta, .consent-btn {
  transition: background 0.15s cubic-bezier(.54,0,.58,1), color 0.15s, box-shadow 0.18s, transform 0.15s;
}
a, .cta-link, nav a, .footer-nav a, .mobile-nav a {
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}
.card, .testimonial-card, .feature-grid li, .feature-list li {
  transition: box-shadow 0.17s, border-color 0.17s, transform 0.15s;
}
.card:hover, .testimonial-card:hover, .feature-grid li:hover, .feature-list li:hover {
  box-shadow: 0 8px 32px 0 rgba(34,40,49,0.14);
  border-color: #222831;
  transform: scale(1.01);
}

/* --- TYPOGRAPHY & GEOMETRIC DETAILS --- */
h1,h2,h3 {
  font-family: 'Playfair Display', serif;
  font-variant-caps: small-caps;
  font-weight: 700;
  text-rendering: geometricPrecision;
}
section h2 {
  border-bottom: 4px solid #6D9886;
  display: inline-block;
  padding-bottom: 6px;
  margin-bottom: 18px;
  border-radius: 10px;
  background: linear-gradient(90deg, #F2E7D5 85%, #6D9886 100%);
  background-size: 100% 10px;
  background-repeat: no-repeat;
}
@media (max-width: 540px) {
  h1 { font-size: 1.48rem; }
  h2 { font-size: 1.08rem; }
}

hr {
  border: none;
  border-top: 2px solid #6D9886;
  margin: 32px 0;
}

/* --- LISTS --- */
ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 18px;
  margin-top: 0;
}
ul li, ol li {
  margin-bottom: 10px;
  padding-left: 0.3em;
}
ul li::marker, ol li::marker {
  color: #6D9886;
  font-weight: 700;
}

table { border-collapse: collapse; width: 100%; }
td, th { padding: 8px 12px; border: 1px solid #F2E7D5; }

/* --- RESPONSIVE --- */
@media (max-width: 968px) {
  .container { max-width: 100vw; }
  .card-container, .card-grid, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 660px) {
  section { padding: 18px 3px; margin-bottom: 22px; border-radius: 10px; }
  .testimonial-card { padding: 20px 8px; font-size: 1rem; border-radius: 10px; }
}

/* --- ACCESSIBILITY & FOCUS --- */
:focus {
  outline: 2px solid #6D9886;
  outline-offset: 3px;
}

/* --- UTILITY CLASSES --- */
.center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-col {
  display: flex;
  flex-direction: column;
}

/* --- VISUALLY HIDDEN (for acc. text) --- */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* --- CUSTOM GEOMETRIC EFFECTS (decorations) --- */
section::before {
  content: '';
  display: block;
  position: absolute;
  top: -14px; left: -14px;
  width: 36px; height: 36px;
  background: #6D9886;
  opacity: 0.09;
  border-radius: 6px 22px 6px 10px;
  z-index: 0;
}
section::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -14px; right: -14px;
  width: 28px; height: 28px;
  background: #222831;
  opacity: 0.07;
  border-radius: 22px 7px 11px 4px;
  z-index: 0;
}
@media (max-width:700px) {
  section::before, section::after { display:none; }
}

/* --- FORM STYLES (for contact/newsletter forms if present) --- */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #222831;
  border: 2px solid #6D9886;
  border-radius: 10px;
  padding: 10px 13px;
  margin-bottom: 14px;
  background: #fff;
  transition: border-color 0.16s;
}
input:focus, textarea:focus, select:focus {
  border-color: #222831;
}
button[type='submit'] {
  min-width: 144px;
  margin-top: 8px;
}

/* --- GEOMETRIC SOCIAL ICON LINKS --- */
.content-wrapper ul li img {
  height: 26px;
  width: auto;
  margin-right: 8px;
  vertical-align: middle;
  border-radius: 6px;
  box-shadow: 0 2px 4px 0 rgba(34,40,49,0.10);
}
.content-wrapper ul li a {
  font-weight: 600;
  color: #6D9886;
  margin-left: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.16s, border-color 0.16s;
}
.content-wrapper ul li a:hover {
  color: #222831;
  border-color: #6D9886;
}

/* --- PRINT SAFETY --- */
@media print {
  nav, .mobile-menu-toggle, .mobile-menu, .cookie-consent-banner, footer { display:none !important; }
  section, .container { box-shadow: none; background: #fff; color: #222831; }
}

/* --- END --- */
