/* ================================================================
   Silent Realm Ernährung – Gradient Modern Theme
   Comprehensive Responsive CSS for All Pages
   Only flexbox for layouts – NO GRID. Includes mobile menu and cookie consent.
   Fonts: Montserrat, Open Sans (load via /, fallback sans-serif)
   Brand Colors: #295C44 (primary), #8FC1A9 (secondary), #F7F8F2 (accent), #ffffff, #121212
==================================================================*/

/* RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #252525;
  background: linear-gradient(135deg, #F7F8F2 0%, #8FC1A9 100%);
  min-height: 100vh;
  line-height: 1.7;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #295C44;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #20523a;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.5em;
  margin-top: 10px;
  margin-bottom: 10px;
}
li {
  margin-bottom: 8px;
}
input, button, textarea, select {
  font: inherit;
  outline: none;
  border-radius: 6px;
  border: 1px solid #ddd;
}
input[type="text"] {
  transition: border 0.2s;
  padding: 10px 14px;
  width: 100%;
  margin: 12px 0 20px 0;
  border: 1.5px solid #8FC1A9;
}
input[type="text"]:focus{
  border-color: #295C44;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #295C44;
  font-weight: 700;
  margin-bottom: 0.7em;
}
h1 {
  font-size: 2.3rem;
  line-height: 1.17;
  margin-bottom: 0.5em;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 0.5em;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4em;
}
h4, h5, h6 {
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 0.4em;
}
p, .content-wrapper > p, .content-wrapper > ul, .content-wrapper > ol, .footer-col p {
  font-size: 1rem;
  margin-bottom: 1.2em;
  color: #363636;
}
strong, b {
  color: #295C44;
  font-weight: 700;
}
.small, small {
  font-size: 0.92rem;
  color: #929292;
}
.text-section ul {
  margin-bottom: 1.2em;
}

/* FLEXBOX LAYOUTS */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0; /* content within .container manages gaps separately */
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 0;
}

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

/* STAGGERED GAPS (REQUIRED PATTERNS) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(41, 92, 68, 0.08);
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.28s, transform 0.19s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px 0 rgba(41, 92, 68, 0.15);
  transform: translateY(-3px) 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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F7F8F2;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(41, 92, 68, 0.08);
  margin-bottom: 20px;
  transition: box-shadow 0.25s, background 0.13s;
}
.testimonial-card strong {
  display: block;
  margin-top: 4px;
  color: #295C44;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO (Landing Banner) */
.hero {
  background: linear-gradient(115deg, #8FC1A9 0%, #295C44 100%);
  color: #fff;
  padding: 68px 0 54px 0;
  min-height: 280px;
  display: flex;
  align-items: center;
}
.hero h1, .hero h2, .hero h3, .hero h4 {
  color: #fff;
}
.hero p {
  color: #F7F8F2;
  font-size: 1.15rem;
}

/* MAIN NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(41, 92, 68, 0.07);
  z-index: 200;
  position: relative;
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #295C44;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #20523a;
  border-bottom: 2px solid #8FC1A9;
}

.cta.primary, .cta.secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 11px 28px;
  margin-left: 28px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(41, 92, 68, 0.12);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.14s;
  text-align: center;
}
.cta.primary {
  color: #fff;
  background: linear-gradient(90deg, #295C44 70%, #8FC1A9 100%);
  border: 2px solid #295C44;
}
.cta.primary:hover, .cta.primary:focus {
  background: linear-gradient(90deg, #234e39 70%, #7aaf98 100%);
  color: #fff;
  transform: scale(1.03);
}
.cta.secondary {
  color: #295C44;
  background: linear-gradient(90deg, #F7F8F2 70%, #8FC1A9 100%);
  border: 2px solid #8FC1A9;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #ebf2ed;
  color: #20523a;
  transform: scale(1.03);
}

/* Hamburger menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #295C44;
  cursor: pointer;
  margin-left: 18px;
  transition: color 0.2s;
  z-index: 702;
}
.mobile-menu-toggle:focus {
  color: #8FC1A9;
}

/* Mobile Navigation Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #F7F8F2;
  z-index: 700;
  transform: translateX(-110%);
  transition: transform 0.36s cubic-bezier(.68,-0.55,.27,1.55);
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #295C44;
  align-self: flex-end;
  margin: 20px 24px 0 0;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 803;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  padding: 48px 32px 0 32px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: #295C44;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 2px solid transparent;
  width: 100%;
  transition: border-color 0.15s,color 0.18s;
  border-radius: 8px;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: #e5eee8;
  color: #20523a;
  border-bottom: 2px solid #8FC1A9;
}

/* Hide main nav and show hamburger on mobile */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* SECTION LAYOUTS & FLEX GRIDS */
.features-grid, .benefits-grid, .recipe-teasers, .subscription-plans, .blog-teasers {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.features-grid > div, .benefits-grid > div, .recipe-teasers > div, .subscription-plans > div, .blog-teasers > div {
  flex: 1 1 250px;
  min-width: 220px;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(41, 92, 68, 0.09);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.19s, transform 0.13s;
}
.features-grid > div img, .benefits-grid > div img, .recipe-teasers > div img, .subscription-plans > div img {
  height: 38px;
  width: auto;
  margin-bottom: 12px;
}
.features-grid > div:hover, .benefits-grid > div:hover, .subscription-plans > div:hover, .blog-teasers > div:hover {
  box-shadow: 0 6px 18px 0 rgba(41,92,68,0.14);
  transform: translateY(-2px) scale(1.01);
}

.recipe-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 24px;
}
.recipe-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px 0 rgba(41, 92, 68, 0.08);
  padding: 18px 18px 16px 18px;
  flex: 1 1 270px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.11s;
}
.recipe-card:hover {
  box-shadow: 0 6px 21px 0 rgba(41,92,68,0.14);
  transform: scale(1.03);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 12px;
}
.faq-list > div {
  background: #f4f8f7;
  border-radius: 8px;
  padding: 14px 20px 14px 16px;
  border-left: 4px solid #8FC1A9;
  box-shadow: 0 1.5px 8px 0 rgba(41, 92, 68, 0.07);
}
.faq-list strong {
  font-weight: 700;
  margin-bottom: 0.2em;
  color: #295C44;
  display: block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* SPECIAL: "about-preview"/"recipes-preview"/values-list etc. */
.about-preview, .recipes-preview, .blog-filters, .filters, .newsletter-signup {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.values-list, .principle-list, .benefits-list, .steps-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: 0;
  list-style: none;
}
.values-list li, .principle-list li, .benefits-list li, .steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 1.06rem;
  background: #F7F8F2;
  border-radius: 8px;
  padding: 10px 12px 10px 15px;
  margin-bottom: 0;
}
.values-list img, .principle-list img, .benefits-list img, .steps-list img {
  flex-shrink: 0;
  height: 27px;
  margin-right: 10px;
}

/* Contact details flexbox */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
  align-items: flex-start;
  margin-bottom: 26px;
}
.contact-details > div {
  background: #F7F8F2;
  border-radius: 10px;
  padding: 12px 18px 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 215px;
  box-shadow: 0 1px 6px 0 rgba(41, 92, 68, 0.07);
}
.contact-details img {
  height: 24px;
  margin-right: 4px;
}
.map {
  width: 100%;
  min-height: 120px;
  background: #E0EFE6;
  border-radius: 12px;
  margin-top: 10px;
}

/* BLOG FILTERS / RECIPE FILTERS */
.blog-filters, .filters {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}
.blog-filters button, .filters button {
  appearance: none;
  border: none;
  background: #8FC1A9;
  color: #fff;
  padding: 7px 18px;
  font-size: 1rem;
  border-radius: 14px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  cursor: pointer;
  margin-right: 5px;
  font-weight: 600;
  transition: background 0.17s, color 0.13s, transform 0.12s;
  outline: none;
}
.blog-filters button:hover, .filters button:hover, .blog-filters button:focus, .filters button:focus {
  background: #295C44;
  color: #fff;
  transform: scale(1.08);
}

.newsletter-signup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

/* Accordion - FAQ */
.faq-accordion {
  margin-top: 38px;
}
.faq-accordion h3 {
  margin-bottom: 9px;
}
.faq-accordion .faq-list > div {
  border-left: 4px solid #295C44;
}

/* Testimonials flexbox row layout */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 18px;
}
@media (max-width: 900px) {
  .testimonials {
    flex-direction: column;
  }
}

/* CTA (Call to Action) Section */
.cta-section {
  background: linear-gradient(117deg, #8FC1A9 0%, #F7F8F2 85%);
  text-align: center;
  padding: 58px 0 48px 0;
  margin-bottom: 56px;
  border-radius: 16px;
  box-shadow: 0 6px 30px 0 rgba(41,92,68,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-section .content-wrapper {
  align-items: center;
  justify-content: center;
}
.cta-section h2 {
  color: #295C44;
  margin-bottom: 14px;
}

/* Footer */
footer {
  background: #295C44;
  color: #fff;
  padding: 38px 0 0 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 44px;
  padding: 0 20px;
  margin-bottom: 0;
}
.footer-col {
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.footer-col img {
  height: 34px;
  margin-bottom: 6px;
  filter: brightness(12);
}
.footer-col p {
  color: #F7F8F2;
  line-height: 1.6;
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #8FC1A9;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 2px 0;
  transition: color 0.18s;
  margin-bottom: 0;
}
.footer-nav a:focus, .footer-nav a:hover {
  color: #fff;
  text-decoration: underline;
}
.copyright {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #C5DECC;
  font-size: 0.94rem;
  margin-top: 28px;
  padding-bottom: 26px;
}
.copyright small {
  color: #C5DECC;
  font-size: 0.92rem;
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  padding: 22px 28px 22px 28px;
  background: #fff;
  box-shadow: 0 -3px 16px 0 rgba(41, 92, 68, 0.12);
  border-top: 2px solid #8FC1A9;
  z-index: 1998;
  transform: translateY(130%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s, opacity 0.26s;
}
.cookie-banner.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-banner p {
  color: #252525;
  flex: 2 1 330px;
  margin: 0 14px 0 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-radius: 16px;
  padding: 8px 22px;
  cursor: pointer;
  transition: background 0.18s, color 0.15s, transform 0.14s;
  font-weight: 700;
}
.cookie-banner .accept {
  background: #295C44;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #20523a;
  color: #fff;
  transform: scale(1.05);
}
.cookie-banner .reject {
  background: #F7F8F2;
  color: #295C44;
  border: 2px solid #8FC1A9;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #e5eee8;
  color: #20523a;
}
.cookie-banner .settings {
  background: #8FC1A9;
  color: #fff;
  border: 2px solid #8FC1A9;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #295C44;
  color: #fff;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(88,140,113, 0.12);
  z-index: 2001;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active {
  display: flex;
  animation: fadeIn 0.26s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  max-width: 420px;
  width: 90vw;
  box-shadow: 0 4px 26px 0 rgba(41,92,68, 0.13);
  padding: 36px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.cookie-modal h3 {
  font-size: 1.22rem;
  margin-bottom: 0.7em;
  color: #295C44;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 15px;
  border-radius: 10px;
  background: #F7F8F2;
}
.cookie-modal .category label {
  flex: 1;
  font-size: 1rem;
  color: #295C44;
  font-weight: 600;
}
.cookie-modal .toggle {
  width: 38px;
  height: 20px;
  background: #e0efe6;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal .toggle input {
  display: none;
}
.cookie-modal .slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 16px;
  height: 16px;
  background: #8FC1A9;
  border-radius: 50%;
  transition: left 0.18s, background 0.16s;
}
.category input:checked + .slider {
  left: 20px;
  background: #295C44;
}
.cookie-modal .dismiss, .cookie-modal .save {
  background: #295C44;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: 16px;
  border: none;
  padding: 8px 22px;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.17s, color 0.12s, transform 0.13s;
  font-weight: 600;
}
.cookie-modal .dismiss {
  background: #F7F8F2;
  color: #295C44;
  border: 2px solid #8FC1A9;
}
.cookie-modal .dismiss:hover, .cookie-modal .dismiss:focus {
  background: #e5eee8;
  color: #20523a;
}
.cookie-modal .save:hover, .cookie-modal .save:focus {
  background: #20523a;
  color: #fff;
}
.cookie-modal .close-x {
  position: absolute;
  top: 18px; right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #295C44;
  cursor: pointer;
  z-index: 5;
}

/* RESPONSIVE DESIGN (Mobile First) */
@media (max-width: 900px) {
  .container {
    max-width: 97vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  header .container, .footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .content-wrapper {
    padding: 0 3px;
    gap: 16px;
  }
  .features-grid, .benefits-grid, .recipe-teasers, .subscription-plans, .blog-teasers {
    flex-direction: column;
    gap: 20px;
  }
  .card-container, .content-grid, .testimonials, .recipe-cards {
    flex-direction: column;
    gap: 18px;
  }
  .cta-section {
    border-radius: 12px;
    padding: 32px 0 30px 0;
  }
  footer .container {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  .about-preview, .recipes-preview {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .contact-details {
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .hero {
    padding-top: 48px;
    padding-bottom: 38px;
    min-height: 175px;
  }
  .section {
    margin-bottom: 36px;
    padding: 26px 4px;
  }
  .cta-section {
    padding: 27px 5px 30px 5px;
    margin-bottom: 40px;
  }
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.19rem; }
  h3 { font-size: 1.07rem; }
  p, .footer-col p {
    font-size: 0.97rem;
  }
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .testimonials {
    flex-direction: column;
    gap: 14px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 15px;
    padding: 14px 7vw 14px 7vw;
    text-align: left;
  }
  .cookie-banner p {
    margin-bottom: 6px;
  }
  .cookie-banner .cookie-actions {
    width: 100%;
    gap: 9px;
    justify-content: flex-end;
  }
}
@media (max-width: 520px) {
  .hero {
    padding: 22px 0 18px 0;
    min-height: 105px;
  }
  .content-wrapper {
    gap: 11px;
  }
  .features-grid > div, .benefits-grid > div, .recipe-teasers > div, .subscription-plans > div, .blog-teasers > div {
    padding: 13px;
    min-width: 120px;
  }
  .card, .recipe-card, .testimonial-card {
    padding: 11px 9px;
  }
  .footer-col img {
    height: 26px;
  }
  .cookie-modal {
    padding: 14vw 8vw 9vw 8vw;
  }
}

/* MICRO-INTERACTIONS & MISC */
.button, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  cursor: pointer;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 8px 20px;
  background: #8FC1A9;
  color: #fff;
  border: none;
  font-size: 1rem;
  margin-right: 10px;
  transition: background 0.13s, color 0.11s, transform .12s;
}
.button:hover, .btn:hover, .button:focus, .btn:focus {
  background: #295C44;
  color: #fff;
  transform: scale(1.04);
}

::-webkit-scrollbar {
  width: 8px;
  background: #e5eee8;
}
::-webkit-scrollbar-thumb {
  background: #8FC1A9;
  border-radius: 4px;
}

/* Z-INDEX MANAGEMENT */
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
  z-index: 999;
}

/* Gradient Modern Personality */
.section, .card, .features-grid > div, .benefits-grid > div, .recipe-teasers > div, .subscription-plans > div, .blog-teasers > div {
  box-shadow: 0 4px 24px 0 rgba(41, 92, 68, 0.06);
  border-radius: 14px;
}

.logo-mark {
  margin-bottom: 8px;
  height: 42px;
  width: auto;
}

/* Page utility spacing */
.mb-32 { margin-bottom: 32px; }
.mb-24 { margin-bottom: 24px; }
.mt-32 { margin-top: 32px; }
.pt-28 { padding-top: 28px; }

/* Utility Alignment */
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }

/* Prevent OVERLAPPING & ENSURE SPACING */
.section > *, .card > *, .content-wrapper > *, .container > * {
  margin-bottom: 0 !important;
}

/* ENDS STYLE */
