/* 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, main, 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; }
*, *:before, *:after { box-sizing: inherit; }
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
img { border: 0; max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; line-height: inherit; }

/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Roboto:wght@400;500;700&display=swap');

body {
  background: #FEFBF5;
  color: #354C27;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #354C27;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; font-weight: 600; }

p {
  margin-bottom: 18px;
  color: #486445;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}

strong, b { font-weight: bold; }
em, i { font-style: italic; }

.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 16px;
}

header {
  background: #FFF8F1;
  box-shadow: 0 2px 12px 0 rgba(197,154,108,0.08);
  z-index: 50;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 0 16px;
}
.logo img { height: 48px; display: block; }

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 6px;
  color: #354C27;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #f3e7db;
  color: #C49A6C;
}

.cta-button {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  outline: none;
  padding: 12px 28px;
  border-radius: 26px;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
  margin-left: 18px;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(53,76,39,0.04);
  display: inline-block;
}
.cta-button.primary {
  background: #C49A6C;
  color: #fff;
}
.cta-button.primary:hover, .cta-button.primary:focus {
  background: #af864c;
  color: #fff;
  box-shadow: 0 3px 16px 0 rgba(197,154,108,0.24);
}
.cta-button.secondary {
  background: #FFF8F1;
  color: #C49A6C;
  border: 2px solid #C49A6C;
}
.cta-button.secondary:hover, .cta-button.secondary:focus {
  background: #fbe3be;
  color: #354C27;
  border: 2px solid #af864c;
  box-shadow: 0 3px 16px 0 rgba(197,154,108,0.17);
}

.cta-link {
  color: #C49A6C;
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 1.5px dashed #f2d5a5;
  transition: color 0.19s, border-bottom-color 0.19s;
}
.cta-link:hover, .cta-link:focus {
  color: #af864c;
  border-bottom: 2px solid #C49A6C;
}

/* Burger menu for mobile */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #C49A6C;
  cursor: pointer;
  margin-left: 20px;
  display: none;
  transition: color 0.17s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #af864c;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 248, 241, 0.98);
  transform: translateX(-100vw);
  transition: transform 0.37s cubic-bezier(.80,.00,.20,1.00);
  display: flex;
  flex-direction: column;
  opacity: 1;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 0 80px 0 rgba(53,76,39,0.14);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #C49A6C;
  align-self: flex-end;
  margin: 18px 24px 0 0;
  cursor: pointer;
  transition: color 0.19s;
}
.mobile-menu-close:focus { outline: 2px solid #af864c; }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 48px;
  align-items: center;
}
.mobile-nav a {
  font-size: 1.15rem;
  color: #354C27;
  padding: 12px 22px;
  border-radius: 14px;
  font-family: 'Roboto', Arial, sans-serif;
  transition: background .18s, color .18s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #fbe3be;
  color: #C49A6C;
}

@media (max-width: 1023px) {
  .main-nav,
  .cta-button.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

main {
  margin-top: 0;
  min-height: 60vh;
  padding-bottom: 40px;
}

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

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero {
  background: linear-gradient(150deg, #FFF8F1 0%, #fbe3be 100%);
  border-radius: 0 0 52px 0;
  box-shadow: 0 2px 28px rgba(196,154,108,0.05);
  min-height: 270px;
  padding-top: 32px;
  padding-bottom: 40px;
}
.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 10px;
  color: #354C27;
  letter-spacing: 0.5px;
}
.hero p {
  font-size: 1.14rem;
  margin-bottom: 24px;
  max-width: 640px;
}
.hero .cta-button {
  margin-left: 0;
  margin-top: 10px;
}

/* FEATURES */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}
.feature {
  background: #fff;
  border-radius: 22px;
  padding: 28px 24px 24px 24px;
  box-shadow: 0 4px 24px 0 rgba(197,154,108,0.10);
  flex: 1 1 215px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 210px;
  max-width: 310px;
  transition: box-shadow .23s, transform .17s;
}
.feature img {
  height: 48px;
  margin-bottom: 12px;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 8px 40px 0 rgba(197,154,108,0.19);
  transform: translateY(-6px) scale(1.03);
}

/* GENERIC FLEX CONTAINERS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(197,154,108,0.1);
  padding: 24px;
}
.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;
  border-radius: 20px;
  background: #FFF8F1;
  box-shadow: 0 2px 13px 0 rgba(53, 76, 39, 0.08);
  min-width: 240px;
  flex: 1 1 250px;
  margin: 0 0 20px 0;
  flex-direction: column;
  font-size: 1rem;
  color: #254019;
}
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.testimonial-card p {
  font-size: 1.04rem;
  color: #354C27;
  margin-bottom: 10px;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #8b795f;
  align-self: flex-end;
  font-style: italic;
}

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

/**** BLOG CARDS/LIST ****/
.blog-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.blog-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(197,154,108,0.10);
  padding: 24px;
  flex: 1 1 270px;
  min-width: 230px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transition: box-shadow 0.22s, transform 0.17s;
}
.blog-card:hover, .blog-card:focus-within {
  box-shadow: 0 8px 44px 0 rgba(197,154,108,0.19);
  transform: translateY(-6px) scale(1.03);
}

/**** RECIPE CARDS / LIST ****/
.recipes-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.recipe-teasers {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.recipe-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px 20px 18px 20px;
  box-shadow: 0 2px 12px 0 rgba(53,76,39,0.04);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 220px;
  min-width: 180px;
  max-width: 315px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.15s;
  overflow: hidden;
}
.recipe-card:hover, .recipe-card:focus-within {
  box-shadow: 0 8px 40px 0 rgba(197,154,108,0.19);
  transform: translateY(-6px) scale(1.03);
}
.recipe-card h3 {
  font-size: 1.12rem;
  margin-bottom: 2px;
}
.recipe-card p,
.recipe-card .filter-info {
  font-size: 0.97rem;
  color: #57734F;
  margin-bottom: 6px;
}
.filter-info {
  background: #fbe3be;
  color: #90755a;
  border-radius: 8px;
  padding: 2px 8px;
  font-size: 0.90rem;
  margin-top: 2px;
}

/**** PAGINATION ****/
.pagination {
  display: flex;
  gap: 12px;
  margin: 26px 0 0 0;
  align-items: center;
}
.pagination a,
.pagination span {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 1rem;
  color: #C49A6C;
  background: #FFF9ED;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  margin-right: 6px;
  transition: background 0.2s;
}
.pagination a:hover,
.pagination a:focus {
  background: #fbe3be;
  text-decoration: underline;
}
.pagination span {
  color: #354C27;
  background: #fbe3be;
  font-weight: bold;
}

/**** FILTERS / CHIPs ****/
.filter-options {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.input-group {
  display: flex;
  align-items: center;
  gap: 9px;
}
.input-group label {
  font-weight: 500;
  color: #C49A6C;
  font-size: 1rem;
}
.input-group input[type="text"] {
  font-family: inherit;
  font-size: 1rem;
  padding: 7px 16px;
  border-radius: 7px;
  border: 1px solid #e7dec7;
  background: #FFF8F1;
  color: #354C27;
  width: 230px;
}
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.filter-chip {
  display: inline-block;
  margin-left: 7px;
  margin-right: 6px;
  margin-bottom: 6px;
  padding: 4px 15px;
  border-radius: 12px;
  background: #fde6ca;
  color: #C49A6C;
  font-size: 0.98rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  border: 1px solid #f3e7db;
  cursor: pointer;
  transition: background .17s, color .17s;
}
.filter-chip:hover, .filter-chip:focus {
  background: #fbe3be;
  color: #354C27;
  border-color: #C49A6C;
}
.categories-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

/**** VALUE / INFO LISTS ****/
.core-values-list li,
ul li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  font-size: 1.01rem;
  color: #486445;
  line-height: 1.6;
}
.core-values-list li:before,
ul li:before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0.8em;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #fbe3be;
  box-shadow: 0 0 3px 0 #e9c798;
}
ul.social-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 12px;
}
ul.social-links li img {
  width: 22px;
  vertical-align: middle;
  margin-right: 8px;
}

/**** NEWSLETTER / ABOUT / TEXT SECTIONS ****/
.text-section {
  background: #fff;
  border-radius: 16px;
  padding: 22px 18px;
  margin-bottom: 8px;
  box-shadow: 0 2px 9px 0 rgba(197,154,108,0.073);
}
.cta-section {
  background: linear-gradient(110deg, #fbe3be 0%, #FFEFD3 80%);
  border-radius: 32px;
  padding-top: 38px;
  padding-bottom: 38px;
  box-shadow: 0 2px 14px 0 rgba(197,154,108,0.12);
  text-align: center;
}
.cta-section h2 { font-size: 2.05rem; margin-bottom: 14px; }
.cta-section .cta-button {
  margin-top: 8px;
}

/**** LOCATION MAP PLACEHOLDER ****/
.location-map {
  background: #fde6ca;
  border-radius: 15px;
  padding: 28px;
  text-align: center;
  font-style: italic;
  color: #b8843d;
  margin-top: 16px;
  font-size: 0.97rem;
  box-shadow: 0 2px 6px 0 rgba(197,154,108,0.06);
}

/**** FOOTER ****/
footer {
  padding: 40px 0 30px 0;
  background: #fff;
  border-top: 1.5px solid #f0e1c8;
  position: relative;
  color: #486445;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  gap: 18px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #C49A6C;
  background: #fbe3be;
  padding: 6px 18px;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: background 0.19s, color 0.19s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #FFF8F1;
  color: #af864c;
}
.footer-contact {
  font-size: 0.99rem;
  margin-bottom: 12px;
  flex: 1;
}
.footer-contact a {
  color: #af864c;
  text-decoration: underline;
  transition: color .17s;
}
.footer-logo img {
  height: 45px;
  display: block;
  margin-top: 8px;
  opacity: 0.89;
}

/**** NEWSLETTER SECTION ****/
.newsletter-section {
  background: #F3F2F8;
  border-radius: 32px;
  box-shadow: 0 2px 16px 0 rgba(197,154,108,0.09);
  margin-bottom: 44px;
  padding-top: 32px;
  padding-bottom: 32px;
}

/**** RESPONSIVE DESIGN ****/
@media (max-width: 1023px) {
  .hero {
    font-size: 1.02em;
    padding: 28px 0 38px 0;
    border-radius: 0 0 24px 0;
  }
  .feature-grid,
  .card-container,
  .recipe-teasers,
  .testimonials,
  .recipes-list,
  .content-grid, .blog-previews {
    flex-direction: column;
    gap: 24px;
  }
  footer .container{
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.92rem; }
  h2 { font-size: 1.34rem; }
  h3 { font-size: 1.08rem; }
  .container { padding: 0 9px; max-width: 98vw; }
  section { padding: 28px 8px 0 8px; margin-bottom: 38px; }
  .content-wrapper { gap: 18px; }
  .hero { border-radius: 0 0 12px 0; padding: 20px 0 28px 0; min-height: 180px; }
  .feature, .blog-card, .recipe-card, .testimonial-card { min-width: 0; max-width: 100%; }
  .cta-section, .newsletter-section { padding-left: 6px; padding-right: 6px; }
  .footer-logo img { margin-left: 0; }
  .testimonials { gap: 16px; }
  .recipe-card, .blog-card, .testimonial-card { padding: 16px; }
  .feature-grid, .recipes-list { gap: 14px; }
  .card-container { gap: 14px; }
  .pagination { gap: 5px; }
  .location-map { padding: 14px; }
}

/**** TRANSITIONS & MICRO-INTERACTIONS ****/
input, button, a, .filter-chip, .cta-button, .main-nav a {
  transition: background 0.18s, border-color 0.18s, color 0.18s, box-shadow 0.18s, transform 0.16s;
}

/**** COOKIE CONSENT BANNER & MODAL ****/
.cookie-banner {
  position: fixed;
  z-index: 1200;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFF8F1;
  border-top: 2px solid #fbe3be;
  box-shadow: 0 -3px 24px 0 rgba(197,154,108,0.09);
  padding: 22px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cookie-banner p {
  margin-bottom: 0;
  color: #354C27;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  text-align: center;
}
.cookie-banner .button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}
.cookie-banner .cookie-btn {
  padding: 10px 24px;
  border-radius: 22px;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Roboto', Arial, sans-serif;
  cursor: pointer;
  background: #C49A6C;
  color: #fff;
  box-shadow: 0 2px 10px 0 rgba(197,154,108,0.06);
  transition: background .2s, color .15s;
}
.cookie-banner .cookie-btn.cookie-reject {
  background: #fff;
  color: #C49A6C;
  border: 2px solid #C49A6C;
}
.cookie-banner .cookie-btn.cookie-reject:hover,
.cookie-banner .cookie-btn.cookie-reject:focus {
  background: #ffe6c2;
  color: #354C27;
}
.cookie-banner .cookie-btn.cookie-settings {
  background: #fbe3be;
  color: #B38B51;
  border: 1px solid #f2d7ae;
}
.cookie-banner .cookie-btn.cookie-settings:hover,
.cookie-banner .cookie-btn.cookie-settings:focus {
  background: #fff;
  color: #C49A6C;
  border: 1.5px solid #C49A6C;
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 1300;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(53,76,39, 0.18);
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: opacity 0.25s;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 56px 0 rgba(197,154,108,0.29);
  max-width: 385px;
  width: 95%;
  padding: 32px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
  position: relative;
  animation: popin-cookie 0.3s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes popin-cookie {
  0% { opacity: 0; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal h3 { font-size: 1.28rem; margin-bottom: 8px; color: #c49a6c; }
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-modal .cookie-cat {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  padding: 11px;
  border-radius: 8px;
  background: #FFF8F1;
  font-size: 1.06rem;
}
.cookie-modal .cookie-cat input[type="checkbox"] {
  accent-color: #c49a6c;
  width: 20px; height: 20px;
  border-radius: 7px;
}
.cookie-modal .cat-essential input {
  pointer-events: none;
  opacity: 0.4;
}
.cookie-modal .cat-essential label {
  font-style: italic;
  opacity: 0.8;
}
.cookie-modal-close {
  position: absolute;
  right: 14px;
  top: 12px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #C49A6C;
  cursor: pointer;
}
.cookie-modal .cookie-action-group {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 7px;
}
.cookie-modal .cookie-action-group button {
  padding: 9px 18px;
  border-radius: 19px;
  border: none;
  font-size: 0.98rem;
  font-weight: 500;
  background: #C49A6C;
  color: #fff;
  transition: background .22s, color .19s;
}
.cookie-modal .cookie-action-group .cookie-cancel {
  background: #fff;
  color: #C49A6C;
  border: 2px solid #C49A6C;
}
.cookie-modal .cookie-action-group .cookie-cancel:hover,
.cookie-modal .cookie-action-group .cookie-cancel:focus {
  background: #ffe6c2;
  color: #354C27;
}
.cookie-modal .cookie-action-group .cookie-save {
  background: #C49A6C;
  color: #fff;
}
.cookie-modal .cookie-action-group .cookie-save:hover,
.cookie-modal .cookie-action-group .cookie-save:focus {
  background: #af864c;
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-modal {
     padding: 14px 5px 8px 8px;
     max-width: 96vw;
  }
}

/**** EXTRA BREATHING ROOM RULES ****/
.main-nav a, .footer-nav a {
  margin-bottom: 0;
}
section:not(:last-of-type) {
  margin-bottom: 60px;
}
.content-wrapper > *:not(:last-child){
  margin-bottom: 0;
}
.recipe-card, .blog-card, .feature, .testimonial-card {
  margin-bottom: 20px;
  margin-right: 0;
}
.card,
.card-container > *{
  margin-bottom: 20px !important;
}

/**** ACCESSIBILITY & CONTRAST for testimonials ****/
.testimonial-card {
  background: #FFF8F1;
  color: #254019;
}

/**** HELPER CLASSES (optional for spacing clarity) ******/
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-1 { margin-top: 8px !important; }
.mb-1 { margin-bottom: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mb-2 { margin-bottom: 16px !important; }

/**** PLACEHOLDER: To be toggled by JS for mobile menu and cookie banner ****/

.mobile-menu {
  display: flex;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  pointer-events: auto;
  opacity: 1;
}

.cookie-modal-overlay.hidden, .cookie-banner.hidden {
  display: none !important;
  opacity: 0 !important;
}

/* END of style.css */
