/* -------------------------
  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; }
*, *:before, *:after { box-sizing: inherit; }
body { line-height: 1.6; background: #FAF4E8; }
ull, ol { list-style: none inside; } 
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; border: 0; }
button, input, textarea { font: inherit; }

/* -------------------------
  VINTAGE RETRO BRAND COLORS
--------------------------- */
:root {
  --primary: #185331;
  --primary-medium: #26734D;
  --secondary: #FFF8E1;
  --secondary-bg: #DEEED6;
  --accent: #FFA732;
  --accent-dark: #F39328;
  --retro-blue: #6497B1;
  --retro-red: #EB6240;
  --retro-brown: #A7825F;
  --retro-bg-dark: #D7C99C;
  --retro-bg-light: #FAF0E6;
  --text: #21302C;
  --white: #FFF;
  --black: #1d1d1a;
}

/* -------------------------
  TYPOGRAPHY - RETRO VINTAGE
--------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;800&family=Open+Sans:wght@400;700&display=swap');
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: var(--retro-bg-light);
  color: var(--text);
  font-size: 16px;
  letter-spacing: 0.02em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Impact, 'Arial Black', Arial, sans-serif;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  font-weight: 800;
  text-shadow: 2px 2px 0 #FFA73244;
}
h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 1px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
}
h4, h5, h6 { font-weight: 600; }
.subheadline {
  font-size: 1.2rem;
  color: var(--retro-red);
  font-style: italic;
  margin-bottom: 24px;
}
p {
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
}

/* -------------------------
  LAYOUT & SPACING
--------------------------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--secondary-bg);
  border-radius: 24px;
  box-shadow: 0 2px 16px 0 #A7825F22, 0 1px 3px 0 #DED6C0;
}
.section:last-child, section:last-child {
  margin-bottom: 0;
}

/* Card and Flex Patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 4px 16px #DEAF7A25;
  min-width: 260px;
  flex: 1 1 260px;
  transition: box-shadow .24s cubic-bezier(.25,1.25,.5,1.08);
}
.card:hover {
  box-shadow: 0 6px 32px #FFA73233, 0 2px 8px #18533126;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 20px;
  gap: 14px;
}
.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: var(--white);
  color: var(--primary);
  border-radius: 18px;
  box-shadow: 0 2px 12px #26734D22, 0 1px 2px #FFA73222;
  margin-bottom: 20px;
  min-width: 270px;
  transition: box-shadow .22s;
}
.testimonial-card p {
  margin-bottom: 6px;
  font-style: italic;
  font-size: 1.13em;
}
.testimonial-card span {
  color: var(--retro-red);
  font-size: 0.97em;
  font-weight: 600;
  margin-left: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Grid-like patterns with Flexbox */
.features, .feature-grid, .services-grid, .pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid li, .services-grid > div {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 3px 14px #A7825F19;
  padding: 24px 18px 16px 18px;
  flex: 1 1 240px;
  min-width: 240px;
  max-width: 320px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .3s, transform .3s;
}
.feature-grid li:hover, .services-grid > div:hover {
  box-shadow: 0 6px 32px #FFA73222, 0 2px 8px #18533126;
  transform: translateY(-6px) scale(1.02);
}
.feature-grid img, .services-grid img {
  margin-bottom: 10px;
  width: 42px;
  height: 42px;
}

/* Timeline - About
------------------- */
.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  padding-left: 26px;
}
.timeline-list li {
  position: relative;
  font-size: 1em;
  padding-left: 0;
}
.timeline-list li:before {
  content: '';
  display: inline-block;
  position: absolute;
  left: -25px;
  top: 5px;
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--retro-bg-dark);
}

/* Recipe Teasers */
.recipe-teaser {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 2px 14px #FFA73218, 0 1px 2px #18533110;
  padding: 20px 24px;
  margin-bottom: 20px;
  transition: box-shadow .25s;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 8px solid var(--accent);
}
.recipe-teaser h3 {
  color: var(--retro-blue);
  font-size: 1.4rem;
  font-family: 'Montserrat';
}
.recipe-teaser span {
  font-size: 0.95em;
  color: var(--primary-medium);
}

/* Tag Styles (Filters) */
.tag {
  background: var(--retro-brown);
  color: var(--white);
  font-size: 0.95em;
  font-family: 'Montserrat';
  padding: 5px 14px;
  border-radius: 14px;
  margin-right: 6px;
  margin-bottom: 8px;
  display: inline-block;
  box-shadow: 0 1px 4px #A7825F33;
  transition: background .23s, color .23s;
}
.tag:hover {
  background: var(--accent-dark);
  color: var(--retro-brown);
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-accordion > div {
  background: var(--white);
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 1px 7px #FFA73214, 0 2px 6px #18533110;
  cursor: pointer;
  transition: box-shadow .2s;
}
.faq-accordion > div:hover {
  box-shadow: 0 4px 16px #FFA73222;
}
.faq-accordion h3 {
  font-size: 1.14em;
  margin-bottom: 7px;
  font-family: 'Montserrat', serif;
}

/* Call to Actions */
.cta {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 16px;
  box-shadow: 0 2px 8px #FFA73224;
  padding: 14px 36px;
  margin-top: 8px;
  transition: background .22s, color .22s, box-shadow .22s, transform .2s;
}
.cta.primary {
  background: var(--primary-medium);
  color: var(--secondary);
  border: 2px solid var(--accent);
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 4px 18px #26734D33;
  transform: translateY(-3px) scale(1.03);
}
.cta:hover, .cta:focus {
  background: var(--accent-dark);
  color: var(--white);
  box-shadow: 0 3px 15px #18533133, 0 2px 8px #FFA73233;
  outline: none;
}

/* Breadcrumb, if used (retro underline) */
.breadcrumb {
  font-size: .99em;
  color: var(--retro-blue);
  margin-bottom: 20px;
  border-bottom: 2px dashed var(--retro-bg-dark);
  padding-bottom: 6px;
}
.breadcrumb a {
  color: var(--retro-brown);
}
.breadcrumb a:hover {
  color: var(--accent);
}

/* Form/Notice/Map CTAs */
.notice {
  background: var(--retro-bg-dark);
  color: var(--primary-medium);
  padding: 18px 20px;
  border-radius: 15px;
  font-size: 1em;
  box-shadow: 0 2px 7px #FFA73218;
  margin: 18px 0;
}
.map-embed {
  display: flex;
  align-items: center;
  gap: 22px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 18px;
  margin-top: 16px;
  box-shadow: 0 1px 6px #26734D21;
}

/***********************
  HEADER & NAVIGATION
***********************/
header {
  width: 100%;
  background: var(--retro-bg-dark);
  padding: 18px 0 16px 0;
  border-bottom: 4px double var(--accent);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
  z-index: 100;
}
header img {
  height: 52px;
  margin-right: 32px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 24px;
}
header nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.06em;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color .18s, border-bottom .18s;
}
header nav a:hover, header nav a:focus {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}
header .cta.primary {
  margin-left: 36px;
  font-size: 1.07em;
}


/***********************
  MOBILE MENU
***********************/
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: var(--white);
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 9999;
  font-size: 2.2rem;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 10px #FFA73233;
  cursor: pointer;
  transition: background .18s, color .18s, box-shadow .2s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--primary-medium);
  color: var(--accent);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  height: 100dvh;
  width: 100vw;
  background: var(--retro-bg-light);
  box-shadow: 0 5px 50px #26734D66;
  z-index: 10000;
  transform: translateX(-100vw);
  transition: transform 0.44s cubic-bezier(.22,1.2,.36,1);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 21px;
  background: var(--accent);
  border: none;
  color: var(--white);
  font-size: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  box-shadow: 0 2px 8px #FFA73233;
  cursor: pointer;
  z-index: 101;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.67rem;
  align-items: flex-start;
  margin-top: 90px;
  margin-left: 38px;
}
.mobile-nav a {
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-size: 1.25em;
  font-weight: 700;
  padding: 12px 0 12px 0;
  width: 260px;
  border-radius: 10px;
  transition: background .17s, color .17s, transform .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--secondary-bg);
  padding-left: 16px;
  transform: translateX(6px);
}

/********
  HERO
*********/
.hero {
  background: var(--retro-bg-dark) url('../assets/patterns/retro-bg.svg') repeat top left;
  /* fallback if img missing */
  background-size: auto, cover;
  margin-bottom: 60px;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 4px 32px #A7825F22;
  padding-top: 44px;
  padding-bottom: 44px;
}
.hero h1 {
  color: var(--retro-red);
  font-family: 'Montserrat', serif;
  font-weight: 800;
  font-style: italic;
  text-shadow: 2px 2px #FFD59A33;
}
.hero .subheadline {
  color: var(--primary-medium);
  font-size: 1.20rem;
  margin-bottom: 28px;
}


/**********************
  FILTERS & SEARCH BAR
***********************/
.filters {
  background: var(--retro-bg-light);
}
.search-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}
.search-bar label {
  font-family: 'Montserrat', serif;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.05em;
}
.search-bar input[type="text"] {
  border-radius: 9px;
  border: 2px solid var(--retro-brown);
  padding: 9px 15px;
  background: var(--white);
  color: var(--primary-medium);
  font-size: 1em;
  margin-left: 10px;
  box-shadow: 0 1px 8px #26734D12;
  transition: border .18s;
}
.search-bar input[type="text"]:focus {
  border: 2px solid var(--accent);
  outline: none;
}
.diet-filters, .ingredient-filters {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.diet-filters strong, .ingredient-filters strong {
  color: var(--retro-red);
}

/***********************
  LEGAL PAGES & TEXT SECTIONS
***********************/
.legal {
  background: var(--retro-bg-light);
  color: var(--primary-medium);
  border-radius: 20px;
  margin-bottom: 48px;
  box-shadow: 0 2px 7px #A7825F14;
}
.text-section {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

/***********************
  SUBSCRIPTION (Abo)
***********************/
.subscription {
  background: var(--secondary-bg);
  margin-bottom: 60px;
}
.steps-illustration {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 25px;
}
.steps-illustration li {
  font-size: 1.08em;
  position: relative;
  padding-left: 30px;
  margin-bottom: 8px;
}
.steps-illustration li:before {
  content: '\273F';
  color: var(--accent);
  position: absolute;
  left: 0; top: 2px;
  font-size: 1.04em;
}
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 16px;
}
.pricing-table > div {
  flex: 1 1 240px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 1px 9px #FFA73222;
  padding: 19px 20px;
  font-size: 1.08em;
  margin-bottom: 14px;
  min-width: 200px;
}
.pricing-table span {
  color: var(--retro-red);
  font-weight: 700;
  font-size: 1.13em;
  display: block;
  margin-bottom: 7px;
}
.benefits-list ul, .sample-menu ul {
  margin: 9px 0 11px 2px;
}
.benefits-list li {
  list-style: square inside;
  color: var(--retro-blue);
  margin-left: 20px;
  margin-bottom: 4px;
}
.sample-menu li {
  list-style: disc inside;
  color: var(--primary);
  margin-left: 20px;
  margin-bottom: 3px;
}

/*********************
  FOOTER
**********************/
footer {
  margin-top: 72px;
  background: var(--retro-bg-dark);
  padding: 36px 0 30px 0;
  border-top: 4px double var(--accent);
  font-size: 0.99em;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
  margin: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 152px;
}
.footer-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: color .19s, padding-left .19s;
  padding-left: 0;
}
.footer-nav a:hover {
  color: var(--accent);
  padding-left: 5px;
}
.footer-contact {
  min-width: 220px;
  color: var(--primary-medium);
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 10px;
}
.footer-social a img {
  width: 32px;
  height: 32px;
  filter: grayscale(20%);
  transition: filter .2s, transform .2s;
}
.footer-social a:hover img {
  filter: grayscale(0%) brightness(1.12);
  transform: scale(1.11) rotate(-4deg);
}
footer img {
  height: 40px;
}

/*********************
 RESPONSIVE & MOBILE FIRST
**********************/

@media (max-width: 1100px) {
  .footer-container, .container {
    max-width: 98vw;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width: 900px) {
  header nav {
    gap: 10px;
  }
  .features, .feature-grid, .services-grid, .pricing-table {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .container, .footer-container {
    padding: 0 4px;
    max-width: 98vw;
  }
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    position: relative;
  }
  header nav, header .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .section, section {
    padding: 26px 5px;
    margin-bottom: 40px;
    border-radius: 12px;
  }
  .features, .feature-grid, .services-grid, .pricing-table {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .feature-grid li, .services-grid > div, .card {
    min-width: 84vw;
    max-width: 98vw;
  }
  .testimonial-card, .card {
    flex-direction: column;
    min-width: 90vw;
    padding: 13px 9px;
  }
  .content-wrapper {
    gap: 12px;
  }
  .content-grid {
    gap: 12px;
    flex-direction: column;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .hero {
    border-radius: 0 0 20px 20px;
    padding-top: 22px;
    padding-bottom: 18px;
  }
  .footer-container {
    flex-direction: column;
    gap: 14px;
  }
  .footer-social {
    margin-bottom: 12px;
  }
}

@media (max-width: 500px) {
  h1 { font-size: 1.22rem; }
  h2 { font-size: 1rem; }
  .hero, .section, section {
    padding: 11px 2px;
    border-radius: 9px;
  }
  .feature-grid li, .services-grid > div, .card {
    min-width: 99vw;
    max-width: 99vw;
  }
}

/*********************
  COOKIE CONSENT BANNER
**********************/
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 10001;
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 -2px 24px #18533122;
  padding: 19px 18px 18px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 17px;
  font-size: 1.06em;
  border-top: 5px double var(--accent);
  animation: cookie-banner-slide-in .65s cubic-bezier(.65,1.5,.5,1);
}
@keyframes cookie-banner-slide-in {
  0% { transform: translateY(90px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-text {
  flex: 1;
  min-width: 160px;
  max-width: 500px;
}
.cookie-consent-banner button {
  margin-left: 8px;
  padding: 7px 22px;
  font-size: 1em;
  border: none;
  border-radius: 11px;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-family: 'Montserrat';
  box-shadow: 0 1px 4px #FFA73222;
  cursor: pointer;
  transition: background .16s, color .16s;
}
.cookie-consent-banner button:focus {
  outline: 2px solid var(--primary);
  background: var(--accent-dark);
}
.cookie-consent-banner .btn-reject {
  background: var(--retro-red);
}
.cookie-consent-banner .btn-reject:hover {
  background: #BF341A;
}
.cookie-consent-banner .btn-cookiesettings {
  background: var(--primary-medium);
}
.cookie-consent-banner .btn-cookiesettings:hover {
  background: var(--retro-brown);
}

/* Cookie Preferences Modal */
.cookie-modal-backdrop {
  position: fixed;
  left:0; top:0; bottom:0; right:0;
  background: rgba(36,32,21,.45);
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-in .32s;
}
@keyframes fade-in {
  from { opacity:0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 6px 36px #26734D24, 0 4px 11px #FFA73216;
  padding: 38px 32px 30px 32px;
  max-width: 410px;
  min-width: 310px;
  color: var(--primary);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: modal-slide-in .35s cubic-bezier(.65,1.45,.3,1.1);
}
@keyframes modal-slide-in {
  0% { transform: scale(.92) translateY(70px); opacity:0; }
  100% { transform: scale(1) translateY(0); opacity:1; }
}
.cookie-modal-close {
  position: absolute;
  top: 11px; right: 16px;
  background: var(--accent);
  border: none;
  color: var(--white);
  border-radius: 8px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  font-size: 1.27rem;
  transition: background .18s;
}
.cookie-modal-close:hover {
  background: var(--retro-red);
}
.cookie-modal h3 {
  font-size: 1.20em;
  margin-bottom: 5px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cookie-modal .category-toggles {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-modal .toggle-switch {
  display: flex;
  align-items: center;
  position: relative;
  width: 50px;
  height: 28px;
}
.cookie-modal .toggle-switch input[type="checkbox"] {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--secondary-bg);
  border: 1.5px solid var(--accent);
  border-radius: 18px;
  transition: background .18s;
}
.cookie-modal .slider:before {
  content: '';
  position: absolute;
  height: 22px;
  width: 22px;
  left: 2.5px;
  bottom: 2.5px;
  background: var(--accent);
  transition: .2s cubic-bezier(.72,1.45,.3,1.1);
  border-radius: 32px;
}
.cookie-modal .toggle-switch input:checked + .slider {
  background: var(--accent);
}
.cookie-modal .toggle-switch input:checked + .slider:before {
  transform: translateX(22px);
  background: var(--primary-medium);
}
.cookie-modal .toggle-switch input:disabled + .slider {
  background: #CCC;
  border-color: #AAA;
}
.cookie-modal .category-label {
  font-size: 1em;
}
.cookie-modal .category-label span {
  font-size: .85em;
  color: #68503f;
  margin-left: 7px;
}
.cookie-modal-footer {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 11px;
}
.cookie-modal-footer button {
  padding: 8px 23px;
  font-size: .98em;
  border-radius: 7px;
  border: none;
  font-weight: 700;
  background: var(--primary);
  color: var(--white);
  transition: background .17s;
}
.cookie-modal-footer button.btn-reject {
  background: var(--retro-red);
}
.cookie-modal-footer button.btn-save {
  background: var(--accent);
}
.cookie-modal-footer button:focus {
  outline: 2px solid var(--accent);
}
@media (max-width: 480px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 10px;
    padding: 12px 7px;
    font-size: 1em;
  }
  .cookie-modal {
    padding: 14px 5px 15px 10px;
    min-width: 93vw;
    max-width: 98vw;
    font-size: 0.99em;
  }
}

/*********************
  ANIMATIONS & MICRO-INTERACTIONS
**********************/
.card, .feature-grid li, .services-grid > div,
.testimonial-card, .cta, .recipe-teaser {
  transition: box-shadow .21s, transform .18s, background .2s, color .19s;
}
.card:active, .feature-grid li:active, .cta:active {
  transform: translateY(2px) scale(0.97);
}
.recipe-teaser:active {
  background: var(--secondary-bg);
}

/*********************
  MISC
**********************/
::-webkit-scrollbar {
  width: 10px;
  background: var(--secondary-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 8px;
}
::-webkit-input-placeholder { color: #BCA651; }
::-moz-placeholder { color: #BCA651; }
:-ms-input-placeholder { color: #BCA651; }
::placeholder { color: #BCA651; }

/* Remove number input arrows for retro look */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}

/**** Hide mobile menu/backdrop off when not open ****/
.mobile-menu:not(.open) {
  pointer-events: none;
  opacity: 0;
  transform: translateX(-100vw);
}

/*********************
   Z-INDEX MANAGEMENT
***********************/
header, .mobile-menu-toggle { z-index: 1100; }
.mobile-menu, .mobile-menu.open { z-index: 1200; }
.cookie-consent-banner { z-index: 1201; }
.cookie-modal-backdrop { z-index: 1400; }

/*********************
  PRINT OVERRIDE - retro B&W style
***********************/
@media print {
  body, html {
    background: #FFF !important;
    color: #222 !important;
  }
  header, footer, .cookie-consent-banner, .mobile-menu { display: none !important; }
  .section, section { box-shadow: none !important; background: #fff !important; }
}
